From c3ab24be1ca4456253bf1bfd969e57add35188eb Mon Sep 17 00:00:00 2001 From: Fabian Braun Date: Tue, 19 Sep 2023 12:46:48 +0200 Subject: [PATCH 1/3] fix: Unique url names for file icon (#1423) * Fix #1377 * Fix: Ensure uniqueness of admin url names --- CHANGELOG.rst | 5 +++++ filer/admin/fileadmin.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 9a2fc5327..3d6d268a0 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,11 @@ CHANGELOG ========= +unreleased +========== + +* fix: ensure uniqueness of icon admin url names + 3.0.6 (2023-09-08) ================== diff --git a/filer/admin/fileadmin.py b/filer/admin/fileadmin.py index 1af66d6f8..82af78caf 100644 --- a/filer/admin/fileadmin.py +++ b/filer/admin/fileadmin.py @@ -167,7 +167,7 @@ def get_urls(self): return super().get_urls() + [ path("icon//", self.admin_site.admin_view(self.icon_view), - name="filer_file_fileicon") + name=f"filer_{self.model._meta.model_name}_fileicon") ] def icon_view(self, request, file_id: int, size: int) -> HttpResponse: From 69893eb0738f61237c1c49403551e2899d9117d1 Mon Sep 17 00:00:00 2001 From: Fabian Braun Date: Fri, 22 Sep 2023 10:30:30 +0200 Subject: [PATCH 2/3] feat: Add django 5.0 support (#1424) * Fix #1377 * feat: Django 5.0 compat * fix github codecov action * Add tests for action forms. * Update test * Remove legacy code, update language files * Update *.mo * Update comment * get_storage_class removed in Django 5 --- .github/workflows/test.yml | 6 + filer/admin/clipboardadmin.py | 1 - filer/admin/folderadmin.py | 1 - filer/admin/forms.py | 52 ++-- filer/locale/ar/LC_MESSAGES/django.po | 137 +++++----- filer/locale/bg/LC_MESSAGES/django.po | 134 ++++----- filer/locale/ca/LC_MESSAGES/django.mo | Bin 16835 -> 16627 bytes filer/locale/ca/LC_MESSAGES/django.po | 202 ++++++-------- filer/locale/cs/LC_MESSAGES/django.mo | Bin 16655 -> 16442 bytes filer/locale/cs/LC_MESSAGES/django.po | 189 ++++++------- filer/locale/de/LC_MESSAGES/django.mo | Bin 20130 -> 20574 bytes filer/locale/de/LC_MESSAGES/django.po | 104 ++++--- filer/locale/en/LC_MESSAGES/django.mo | Bin 15886 -> 15724 bytes filer/locale/en/LC_MESSAGES/django.po | 104 ++++--- filer/locale/es/LC_MESSAGES/django.mo | Bin 20626 -> 20427 bytes filer/locale/es/LC_MESSAGES/django.po | 104 ++++--- filer/locale/et/LC_MESSAGES/django.po | 134 ++++----- filer/locale/eu/LC_MESSAGES/django.mo | Bin 11255 -> 11064 bytes filer/locale/eu/LC_MESSAGES/django.po | 166 ++++++----- filer/locale/fa/LC_MESSAGES/django.po | 138 +++++----- filer/locale/fi/LC_MESSAGES/django.mo | Bin 16872 -> 16713 bytes filer/locale/fi/LC_MESSAGES/django.po | 197 ++++++-------- filer/locale/fr/LC_MESSAGES/django.mo | Bin 21153 -> 20952 bytes filer/locale/fr/LC_MESSAGES/django.po | 235 +++++++--------- filer/locale/gl/LC_MESSAGES/django.po | 134 ++++----- filer/locale/he/LC_MESSAGES/django.mo | Bin 14531 -> 14347 bytes filer/locale/he/LC_MESSAGES/django.po | 163 ++++++----- filer/locale/hr/LC_MESSAGES/django.mo | Bin 13564 -> 13374 bytes filer/locale/hr/LC_MESSAGES/django.po | 202 ++++++-------- filer/locale/hu/LC_MESSAGES/django.mo | Bin 17033 -> 16819 bytes filer/locale/hu/LC_MESSAGES/django.po | 199 ++++++-------- filer/locale/it/LC_MESSAGES/django.mo | Bin 17406 -> 17229 bytes filer/locale/it/LC_MESSAGES/django.po | 211 +++++++------- filer/locale/ja/LC_MESSAGES/django.po | 134 ++++----- filer/locale/ja_JP/LC_MESSAGES/django.po | 134 ++++----- filer/locale/lt/LC_MESSAGES/django.mo | Bin 17519 -> 17336 bytes filer/locale/lt/LC_MESSAGES/django.po | 208 +++++++------- filer/locale/lt_LT/LC_MESSAGES/django.po | 138 +++++----- filer/locale/nb/LC_MESSAGES/django.mo | Bin 12883 -> 12700 bytes filer/locale/nb/LC_MESSAGES/django.po | 195 ++++++------- filer/locale/nl_NL/LC_MESSAGES/django.mo | Bin 20353 -> 20192 bytes filer/locale/nl_NL/LC_MESSAGES/django.po | 222 +++++++-------- filer/locale/nn/LC_MESSAGES/django.mo | Bin 12775 -> 12594 bytes filer/locale/nn/LC_MESSAGES/django.po | 185 ++++++------- filer/locale/pl/LC_MESSAGES/django.mo | Bin 17333 -> 17155 bytes filer/locale/pl/LC_MESSAGES/django.po | 205 ++++++-------- filer/locale/pt/LC_MESSAGES/django.po | 137 +++++----- filer/locale/pt_BR/LC_MESSAGES/django.mo | Bin 17705 -> 17504 bytes filer/locale/pt_BR/LC_MESSAGES/django.po | 214 +++++++-------- filer/locale/ru/LC_MESSAGES/django.mo | Bin 21392 -> 21137 bytes filer/locale/ru/LC_MESSAGES/django.po | 178 ++++++------ filer/locale/sk/LC_MESSAGES/django.po | 137 +++++----- filer/locale/tr/LC_MESSAGES/django.mo | Bin 7475 -> 7360 bytes filer/locale/tr/LC_MESSAGES/django.po | 140 +++++----- filer/locale/vi_VN/LC_MESSAGES/django.mo | Bin 18287 -> 18089 bytes filer/locale/vi_VN/LC_MESSAGES/django.po | 196 ++++++------- filer/locale/zh-Hans/LC_MESSAGES/django.mo | Bin 15401 -> 15264 bytes filer/locale/zh-Hans/LC_MESSAGES/django.po | 257 +++++++++--------- filer/locale/zh/LC_MESSAGES/django.po | 134 ++++----- filer/locale/zh_CN/LC_MESSAGES/django.po | 134 ++++----- filer/locale/zh_TW/LC_MESSAGES/django.po | 134 ++++----- filer/settings.py | 2 +- .../filer/folder/choose_copy_destination.html | 2 +- .../folder/choose_images_resize_options.html | 10 +- .../filer/folder/choose_move_destination.html | 2 +- .../filer/folder/choose_rename_format.html | 2 +- setup.py | 2 +- tests/requirements/django-5.0.txt | 4 + tests/test_admin.py | 48 +++- tox.ini | 2 + 70 files changed, 2900 insertions(+), 3069 deletions(-) create mode 100644 tests/requirements/django-5.0.txt diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8acb93ca0..a81258e7e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,7 +14,13 @@ jobs: django-4.0.txt, django-4.1.txt, django-4.2.txt, + django-5.0.txt, ] + exclude: + - requirements-file: django-5.0.txt + python-version: 3.8 + - requirements-file: django-5.0.txt + python-version: 3.9 os: [ ubuntu-20.04, ] diff --git a/filer/admin/clipboardadmin.py b/filer/admin/clipboardadmin.py index d9e64f21c..b09beb4be 100644 --- a/filer/admin/clipboardadmin.py +++ b/filer/admin/clipboardadmin.py @@ -31,7 +31,6 @@ class ClipboardItemInline(admin.TabularInline): class ClipboardAdmin(admin.ModelAdmin): model = Clipboard inlines = [ClipboardItemInline] - filter_horizontal = ('files',) raw_id_fields = ('user',) verbose_name = "DEBUG Clipboard" verbose_name_plural = "DEBUG Clipboards" diff --git a/filer/admin/folderadmin.py b/filer/admin/folderadmin.py index e132a9bec..203674b55 100644 --- a/filer/admin/folderadmin.py +++ b/filer/admin/folderadmin.py @@ -1288,7 +1288,6 @@ def resize_images(self, request, files_queryset, folders_queryset): "breadcrumbs_action": _("Resize images"), "to_resize": to_resize, "resize_form": form, - "cmsplugin_enabled": 'cmsplugin_filer_image' in django_settings.INSTALLED_APPS, "files_queryset": files_queryset, "folders_queryset": folders_queryset, "perms_lacking": perms_needed, diff --git a/filer/admin/forms.py b/filer/admin/forms.py index 02f6ae417..1a35e4125 100644 --- a/filer/admin/forms.py +++ b/filer/admin/forms.py @@ -1,6 +1,6 @@ from django import forms -from django.conf import settings from django.contrib.admin import widgets +from django.contrib.admin.helpers import AdminForm from django.core.exceptions import ValidationError from django.db import models from django.utils.translation import gettext as _ @@ -9,18 +9,18 @@ from ..utils.files import get_valid_filename -class AsPWithHelpMixin: - def as_p_with_help(self): - "Returns this form rendered as HTML

s with help text formated for admin." - return self._html_output( - normal_row='%(label)s %(field)s

%(help_text)s', - error_row='%s', - row_ender='

', - help_text_html='

%s

', - errors_on_separate_row=True) +class WithFieldsetMixin: + def get_fieldsets(self): + return getattr(self, "fieldsets", [ + (None, {"fields": [field for field in self.fields]}) + ]) + def admin_form(self): + "Returns a class contains the Admin fieldset to show form as admin form" + return AdminForm(self, self.get_fieldsets(), {}) -class CopyFilesAndFoldersForm(forms.Form, AsPWithHelpMixin): + +class CopyFilesAndFoldersForm(forms.Form): suffix = forms.CharField(required=False, help_text=_("Suffix which will be appended to filenames of copied files.")) # TODO: We have to find a way to overwrite files with different storage backends first. # overwrite_files = forms.BooleanField(required=False, help_text=_("Overwrite a file if there already exists a file with the same filename?")) @@ -32,7 +32,7 @@ def clean_suffix(self): return self.cleaned_data['suffix'] -class RenameFilesForm(forms.Form, AsPWithHelpMixin): +class RenameFilesForm(WithFieldsetMixin, forms.Form): rename_format = forms.CharField(required=True) def clean_rename_format(self): @@ -55,15 +55,20 @@ def clean_rename_format(self): return self.cleaned_data['rename_format'] -class ResizeImagesForm(forms.Form, AsPWithHelpMixin): - if 'cmsplugin_filer_image' in settings.INSTALLED_APPS: - thumbnail_option = models.ForeignKey( - ThumbnailOption, - null=True, - blank=True, - verbose_name=_("thumbnail option"), - on_delete=models.CASCADE, - ).formfield() +class ResizeImagesForm(WithFieldsetMixin, forms.Form): + fieldsets = ((None, {"fields": ( + "thumbnail_option", + ("width", "height"), + ("crop", "upscale"))}),) + + thumbnail_option = models.ForeignKey( + ThumbnailOption, + null=True, + blank=True, + verbose_name=_("thumbnail option"), + on_delete=models.CASCADE, + ).formfield() + width = models.PositiveIntegerField(_("width"), null=True, blank=True).formfield(widget=widgets.AdminIntegerFieldWidget) height = models.PositiveIntegerField(_("height"), null=True, blank=True).formfield(widget=widgets.AdminIntegerFieldWidget) crop = models.BooleanField(_("crop"), default=True).formfield() @@ -71,8 +76,5 @@ class ResizeImagesForm(forms.Form, AsPWithHelpMixin): def clean(self): if not (self.cleaned_data.get('thumbnail_option') or ((self.cleaned_data.get('width') or 0) + (self.cleaned_data.get('height') or 0))): - if 'cmsplugin_filer_image' in settings.INSTALLED_APPS: - raise ValidationError(_('Thumbnail option or resize parameters must be choosen.')) - else: - raise ValidationError(_('Resize parameters must be choosen.')) + raise ValidationError(_('Thumbnail option or resize parameters must be choosen.')) return self.cleaned_data diff --git a/filer/locale/ar/LC_MESSAGES/django.po b/filer/locale/ar/LC_MESSAGES/django.po index 3b72f6a6c..b34041683 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,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+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: ar\n" +"Language-Team: Arabic (http://app.transifex.com/divio/django-filer/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -30,24 +30,25 @@ 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." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." msgstr "" -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" @@ -58,175 +59,171 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "" -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "" -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "" -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "" -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "" -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "" -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." msgstr "" -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "" -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "" -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "" -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "" - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "" @@ -465,6 +462,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -483,6 +481,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -495,6 +494,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -549,6 +549,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -677,8 +678,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 @@ -733,28 +734,24 @@ msgstr "" msgid "The following images will be resized:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" 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 @@ -953,11 +950,13 @@ msgstr "" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "" @@ -1019,10 +1018,12 @@ 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 "" @@ -1092,6 +1093,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1147,6 +1149,7 @@ msgid "Choose File" msgstr "" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1172,6 +1175,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/bg/LC_MESSAGES/django.po b/filer/locale/bg/LC_MESSAGES/django.po index b4408c723..06db4c1cc 100644 --- a/filer/locale/bg/LC_MESSAGES/django.po +++ b/filer/locale/bg/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,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+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/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://app.transifex.com/divio/django-filer/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -29,199 +30,196 @@ 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." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." msgstr "" -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" msgstr[0] "" msgstr[1] "" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "" -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "" -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "" -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "" -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "" -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "" -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." msgstr "" -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "" -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "" -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "" -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "" - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "" @@ -460,6 +458,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -478,6 +477,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -490,6 +490,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -544,6 +545,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -672,8 +674,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 @@ -728,28 +730,24 @@ msgstr "" msgid "The following images will be resized:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" 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 @@ -940,11 +938,13 @@ msgstr "" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "" @@ -1006,10 +1006,12 @@ 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 "" @@ -1075,6 +1077,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1130,6 +1133,7 @@ msgid "Choose File" msgstr "" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1155,6 +1159,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/ca/LC_MESSAGES/django.mo b/filer/locale/ca/LC_MESSAGES/django.mo index 923ae25db2c7a72c30d436348d7d1fe700791775..4e6fa24da2701462ec9a6f4489b5f7eb2d0d2356 100644 GIT binary patch delta 4399 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 delta 4501 zcmYkQ-zb zEia9xndL2@Hq+XsG>O%jhuqBLJUgD#c23L7GTS-%&)oC%`+nTvb9nt8pU?Mq`CPxh zpWfIQ(z7Wf@b~!89Y**()%#uRPE=K99S$>?^Xe_`itiVECi%Hmtyv2HPDE=Aw zvvWM$fnQ(?UdL!$6YqUq3-Z2z9i)=M6J4kdKE-sriRvIZ!7L9aVk9oXVqA_XcmTuj z6vp63n2YDJ07Dba!f`6zvoVGKZ9Wyv(2try3u;EKn2Ims80^Lscpl%tQbtD~ zb{VVi7HR@j!&x=lh$FEJBd{Mez>7E*uV6U+TYR!NvNTl3qfs**k9uJtYGBojb zxEJ-o`!N$ck+IodQ7iK$(uak9$J^Re)aMkTR-gm}qo|Zok+rCiZ*d;S2WVeLEnO*} zs+F3Hcj8LafcK;J_AqMCPoO&Z5VeAR$e;a_2fhCm`f&6J)?Y6y9pTNS9JQp2F&1l4 z9j`_Wa06V5@5M@-g0JILynuxm#|dAEa{^SfIj%%FlIF9zmn2k430}7{mX;#R?OQnklWXQ#z^3Fpx+;-t>U zO~|EyouM*}3tyw|(~vRVo=4(f+Ht6XB%ubDhB{;uom1WO#i%`>?W{n3-lM3`Ux^y{ zT8zMLLD~OyDxq9>%{{Rn)lnzv4W}>^KSdq7&rk#S9CbTgL3Q*EhT?x+docTc+eA zebkic92okd|bX3)PC zQc2)KB}QN!s^cc~;VY;WIgaYM2dCqCjKKt^5sR6qC7yy>fl`ddCCEPwYz1HIvvPvnMeF>#-G&pnm+dheuI+dJ#3VFhiwrs6AkoH8Aas`YJ}HOdw&!4!aGX5 z>oKSSC8O?+Ow`hsqi(AwP%~@5k+>GqaVHMPW2lLoLA~w*GJt@6PDQ8sU#OW}LoJhn7>1Xq!t>i*YgCJ+^k^aXN2 z4T?^)X1h%dSDNufSAPuExyn=IrC^QOV}Yv+oqkQKm*|$QCHqJO{RhkYJn9zABOTH7E~~YO;eAlUYP}K^ti$TZqaNWFd(ryU8i~w~vX+VUPbm z@~vvi$pZ40yBdZY$SY(I`4bsf>RqGK`2**B176fg{Y^5PsDG=_1Lb#Q30bKIIB)Q}&O zXGs!KneGw%;u%IghUAk!kPpe@, 2013-2014,2016\n" -"Language-Team: Catalan (http://app.transifex.com/divio/django-filer/language/" -"ca/)\n" -"Language: ca\n" +"Language-Team: Catalan (http://app.transifex.com/divio/django-filer/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -30,205 +31,196 @@ 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." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "Avançat" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "URL canònica" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." -msgstr "" -"Cal seleccionar els elements en ordre per tal de realitzar accions sobre " -"ells. No s'ha modificat cap element." +msgstr "Cal seleccionar els elements en ordre per tal de realitzar accions sobre ells. No s'ha modificat cap element." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" msgstr[0] "%(total_count)s seleccionat" msgstr[1] "Tots %(total_count)s seleccionats" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "0 de %(cnt)s seleccionats" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "No s'ha seleccionat cap acció." -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "S'han mogut %(count)d fitxers al portapapers." -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "Moure els fitxers seleccionats al portapapers." -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "S'han desactivat els permisos de %(count)d fitxers." -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "S'han activat els permisos de %(count)d fitxers." -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "Activar els permisos dels fitxers seleccionats" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "Desactivaer els permisos dels fitxers seleccionats" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "S'han esborrat %(count)d fitxers i/o carpetes." -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "No es poden esborrar els fitxers i/o carpetes" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "Esteu segur?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "Esborrar fitxers i/o carpetes" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "Esborrar els fitxers i/o carpetes seleccionats" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "Ja existeixen carpetes amb els noms %s a la destinació seleccionada" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"S'han mogut %(count)d fitxers i/o carpetes a la carpeta '%(destination)s'" +msgstr "S'han mogut %(count)d fitxers i/o carpetes a la carpeta '%(destination)s'" -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "Moure fitxers i/o carpetes" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "Moure els fitxers i/o carpetes seleccionats" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "S'ha canviat el nom de %(count)d fitxers." -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "Canviar el nom a fitxers" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"S'han copiat %(count)d fitxeres i/o carpetes a la carpeta '%(destination)s'." +msgstr "S'han copiat %(count)d fitxeres i/o carpetes a la carpeta '%(destination)s'." -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "Copiar fitxers i/o carpetes" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "Copiar els fitxers i/o carpetes seleccionats" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "S'han redimensionat %(count)d imatges." -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "Redimensionar imatges" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "Redimensionar les imatges seleccionades" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "Sufix que serà afegit als noms de fitxer dels fitxers copiats" -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." -msgstr "" -"El sufix ha de ser una part de nom de fitxer vàlida, simple i en minúscules, " -"com ara \"%(valid)s\"." +msgstr "El sufix ha de ser una part de nom de fitxer vàlida, simple i en minúscules, com ara \"%(valid)s\"." -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "Format de renombrat amb valor de clau \"%(key)s\" desconegut." -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "Format de renombrat no vàlid: %(error)s" -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "opció de miniatures" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "ample" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "alçada" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "retallar" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "ampliar" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "Heu de triar una opció de miniatura o paràmetres de redimensionat." -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "Heu de triar paràmetres de redimensionat." - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "Lloc del subjecte." @@ -374,9 +366,7 @@ msgstr "Permisos desactivats" msgid "" "Disable any permission checking for this file. File will be publicly " "accessible to anyone." -msgstr "" -"Desactiveu tots els permisos d'aquest fitxer. Aquest serà accessible de " -"forma pública per a tothom." +msgstr "Desactiveu tots els permisos d'aquest fitxer. Aquest serà accessible de forma pública per a tothom." #: models/foldermodels.py:94 msgid "parent" @@ -469,6 +459,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -487,6 +478,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -499,6 +491,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -553,6 +546,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -568,8 +562,7 @@ msgstr "Anar" #: templates/admin/filer/folder/directory_table_list.html:232 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 msgid "Click here to select the objects across all pages" -msgstr "" -"Cliqueu aquí per seleccionar els objectes a través de totes les pàgines" +msgstr "Cliqueu aquí per seleccionar els objectes a través de totes les pàgines" #: templates/admin/filer/actions.html:14 #, python-format @@ -621,26 +614,19 @@ msgid "" "Deleting the selected files and/or folders would result in deleting related " "objects, but your account doesn't have permission to delete the following " "types of objects:" -msgstr "" -"Esborrar els fitxers seleccionats provocarà l'esborrar d'objectes " -"relacionats, però el teu compte no té permisos per esborrar els següents " -"tipus d'objectes:" +msgstr "Esborrar els fitxers seleccionats provocarà l'esborrar d'objectes relacionats, però el teu compte no té permisos per esborrar els següents tipus d'objectes:" #: templates/admin/filer/delete_selected_files_confirmation.html:19 msgid "" "Deleting the selected files and/or folders would require deleting the " "following protected related objects:" -msgstr "" -"Esborrer els fitxers i/o carpetes seleccionades provocarà l'esborrat dels " -"següents objectes protegits relacionats:" +msgstr "Esborrer els fitxers i/o carpetes seleccionades provocarà l'esborrat dels següents objectes protegits relacionats:" #: templates/admin/filer/delete_selected_files_confirmation.html:27 msgid "" "Are you sure you want to delete the selected files and/or folders? All of " "the following objects and their related items will be deleted:" -msgstr "" -"Segur que voleu esborrar els fitxers i/o carpetes seleccionades? Els " -"següents objectes i els seus elements relacionats seran esborrats:" +msgstr "Segur que voleu esborrar els fitxers i/o carpetes seleccionades? Els següents objectes i els seus elements relacionats seran esborrats:" #: templates/admin/filer/delete_selected_files_confirmation.html:46 #: templates/admin/filer/folder/choose_copy_destination.html:64 @@ -689,8 +675,8 @@ msgstr "Icona de la carpeta" #: 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 "Sense permisos per copiar tots els fitxers i/o carpetes seleccionats." #: templates/admin/filer/folder/choose_copy_destination.html:25 @@ -715,9 +701,7 @@ msgstr "No hi ha fitxers i/o carpetes disponibles." msgid "" "The following files and/or folders will be copied to a destination folder " "(retaining their tree structure):" -msgstr "" -"Els següents fitxers i/o carpetes seran copiats a una carpeta de destí " -"(mantenint la seva estructura d'arbre):" +msgstr "Els següents fitxers i/o carpetes seran copiats a una carpeta de destí (mantenint la seva estructura d'arbre):" #: templates/admin/filer/folder/choose_copy_destination.html:54 #: templates/admin/filer/folder/choose_move_destination.html:64 @@ -737,9 +721,7 @@ msgstr "No està permès copiar fitxers a la mateixa carpeta" #: templates/admin/filer/folder/choose_images_resize_options.html:15 msgid "" "Your account doesn't have permissions to resize all of the selected images." -msgstr "" -"El vostre compte no té permisos per redimensionar totes les imatges " -"seleccionades." +msgstr "El vostre compte no té permisos per redimensionar totes les imatges seleccionades." #: templates/admin/filer/folder/choose_images_resize_options.html:18 msgid "There are no images available to resize." @@ -749,36 +731,25 @@ msgstr "No hi ha imatges disponibles per redimensionar." msgid "The following images will be resized:" msgstr "Les següents imatges seran redimensionades:" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" -msgstr "" -"Trieu una opció de miniatura existent o especifiqueu paràmetres de " -"redimensionat:" - -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "Trieu els paràmetres de redimensionat:" +msgstr "Trieu una opció de miniatura existent o especifiqueu paràmetres de redimensionat:" -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." -msgstr "" -"Avís: les imatges seran redimensionades al mateix lloc i les originals es " -"perdran. Considereu realitzar abans una còpia d'aquestes per mantenir els " -"originals." +msgstr "Avís: les imatges seran redimensionades al mateix lloc i les originals es perdran. Considereu realitzar abans una còpia d'aquestes per mantenir els originals." -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "Redimensionar" #: 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." -msgstr "" -"El vostre compte no té permisos per moure tots els fitxers i/o carpetes " -"seleccionats." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." +msgstr "El vostre compte no té permisos per moure tots els fitxers i/o carpetes seleccionats." #: templates/admin/filer/folder/choose_move_destination.html:47 msgid "There are no files and/or folders available to move." @@ -788,9 +759,7 @@ msgstr "No hi ha fitxers i/o carpetes disponibles per moure." msgid "" "The following files and/or folders will be moved to a destination folder " "(retaining their tree structure):" -msgstr "" -"Els següents fitxers i/o carpetes seran moguts a una carpeta de destí " -"(mantenint la seva estructura d'arbre):" +msgstr "Els següents fitxers i/o carpetes seran moguts a una carpeta de destí (mantenint la seva estructura d'arbre):" #: templates/admin/filer/folder/choose_move_destination.html:73 #: templates/admin/filer/folder/choose_move_destination.html:76 @@ -805,9 +774,7 @@ msgstr "No està permès moure fitxers a la mateixa carpeta" #: templates/admin/filer/folder/choose_rename_format.html:15 msgid "" "Your account doesn't have permissions to rename all of the selected files." -msgstr "" -"El vostre compte no té permisos per canviar el nom de tots els fitxers " -"seleccionats." +msgstr "El vostre compte no té permisos per canviar el nom de tots els fitxers seleccionats." #: templates/admin/filer/folder/choose_rename_format.html:18 msgid "There are no files available to rename." @@ -817,10 +784,7 @@ msgstr "No hi ha fitxers per canviar el nom disponibles." msgid "" "The following files will be renamed (they will stay in their folders and " "keep original filename, only displayed filename will be changed):" -msgstr "" -"En canviarà el nom dels següents fitxers (seguiran estant a les seves " -"carpetes i mantindran el seu nom de fitxers original, només serà modificat " -"el nom que es mostrarà):" +msgstr "En canviarà el nom dels següents fitxers (seguiran estant a les seves carpetes i mantindran el seu nom de fitxers original, només serà modificat el nom que es mostrarà):" #: templates/admin/filer/folder/choose_rename_format.html:59 msgid "Rename" @@ -975,11 +939,13 @@ msgstr "activat" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "" @@ -1041,10 +1007,12 @@ msgstr "Seleccionar tots/es %(total_count)s" #: 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 "" @@ -1110,6 +1078,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1165,6 +1134,7 @@ msgid "Choose File" msgstr "Escollir Fitxer" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1190,6 +1160,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/cs/LC_MESSAGES/django.mo b/filer/locale/cs/LC_MESSAGES/django.mo index 8264299e87f604fc805c1c7b4e6bce3e2371e207..5d0d245d7c37aa41b3d2f160dd9e1b2ab67e4f0b 100644 GIT binary patch delta 4399 zcmX}v2~bs40LJlyY(fG7iYO4IvZ*L2u_%ZlE+|QbxuqsnxLao8g7w@X7hJ-u+RgRm3EU>X);09K&RTZ%ro0^8sk zREKt=2Ji{`@qBZZN)!h!Vh3!($r#hpnAfoiIb>4lT|5@xD4dLpz??z`XRf0jbQ@DK zGQt^oAqLW(i0b%E)O{9X0M9pXQc;gToV<%?nU_;Q`bG9zxCRIOLz1&xfwxfN^-R4fC%Pzu|zU=n`tGe?j(}xs7^oNL#0a ztxzM(M9olCY0LaGXw$#}b>xyg@hbAq{K`jH z^kW$6PzLI}0k&O)9chojVywb+{2DVbh#6;S+F$ojmoDLPE2Cxj(an}ke8d)7` z${J7){uFimTMWVLsN?_O(-^>p(XOvV?VZhhXs^^;!&&G-w5Q-;tV6ARGj?h)#v`w* z%cN7$8uvnPEI@T+AgTk!s7*D_I>~Gx#ji?#;%H4Ju zbAgH;bQN{MpY{ab4$dYEM0Fqn_4>r39+Zeam}c7iW*8`{trLFcf{U z3^kys=<=a5i;A3wy3mEXa1H7$cpWvRC+zp1qi%Qwb=^(WQv8MLpnrlhQ{kxZqtF-Q zP&1r>pLww%6Ig%kLVvcXPV9!7;!NaM)a0RV_#l>IDeA!|u>+n(&BQI#b6dCP&3vaxwjdOTFNTa{Wqg#=q(JwT1-UOar?zJ)YRNSjj$8L*NN$<8|EV~hMA81 zGwb-!5}ZJm-TZ{QE-2M`a0D_2lZcw3q1YYEtvfMO@BepHG*uC4&J@L|)r zaS3V()}y9=JE~(lQ4ctWT7o7_!uH+l5}*cBf;z7hb-%?J!1GNF6^&#YYN}6S3;Z7S zx8XO`4gBbSFt$W}-yZeHC>3?XeyAlHhMJKX$lous5jFLDQ3E}Q>c}z7())jfN;pQb zpc-*k)Pu4x83$kq&cGgc3j3h`vgAQNj>JXC;LSzU3wnhH3sQ zs6#-L$p zJ-8aZa06=Oo3J%*%VGZ2!#WP!fhSQHoI%~-JgQ^YP@C@-hM`ZcV{6p$j;KwUZp}ko zKM137v~ABtE%6FeM`~PDbm12J#jB_e>_%;tI#dS^+vA_2HtRXt{u^7;_GTJnBpiHBe1Y1O7wq>xqn6H(9TCQp##q=@MG?&+CDbqi6?o*~*~he$tCPgJ%#xIZ`XsbzSGa0_>N zm`}Ye`v@`>Ebs@GN~Y*@)VU9Jq>))))yf&|9{y}Z37ui zs>xJRPU6XGqVg&kKvogGwkk`BHmK_q9}Q#yd5=sdDksRxq=pq$CkMP?F}<)k}_CC`!0q$5%Jkmxs|H}RAl zDjP{2d4L=wYseJhDKAmEpG+nXlBbEDZ?=@!@;?Yty4vh1CAgF(sh3e|lq!{{T}o Bp&|eP delta 4529 zcmYk=3s6^80>|+K{83OI3M7gY|5il7L|KpoG^hwmh%!y7GzG;#Mf8tJ(Bmqa8MaA2 z@=@96H~DRd*iQ|i#?-_8Gz$37)vn{AHZQ) zi)q-5p?Dhgxv$WJ=TX=H8`UvSj0WNuGlYtIHUbA?CMM!tI0tKSC!R&FHI4LgFmAWz-Uf^>^=+jE<%zjmou{X)QtZyxzJCr_lZa zHKiHcRa2OaSvU>V;SH#@--_B3yHWSwkDA#7$dCCuzjXbj0nERbN_3q2!3@+$vQSf< zkA1KN_25cWN2^gId>Mzp?Gh_WW;g%)ffli|%QPh9k3N z@=-mXin>85a*e6L5x5N1u@=yMz`hV!Tg_w~9K;1Jpm<4|lyb;#+U zq7ei!uj+XSYGmoCk>{fxTxgG%pmuMiJzj^8(q4hQ^2Wn-QZ@ZhduFt?3CGj^1`9Er zol4a)4wVQFY)8EXdr@nB5QFe2sw2lx9qT}Ct~1sP_WXZPYyOkfljzBSpgQm|I>A)VQPGJ0g}U&2>lM_6zo9M+PjcUaMAVe#qRtniZa5uv{X*1IEJk&3 zIclbw?D>rtOnXZb>#r$p=D?`{UMJKhT+SBNjb1}t_y+PVYu-WK@DnV>FHsN9OSWIx zsF|omUAM^|--g%GK8|{ge?TosL<;ktMJ0u&s>idi2z|&tGDk2J&!IZni6iiLybXsB zbI;de2<@fV3mZ`#S&w|wwA$lmu?Ou=)KdNEP+`y}itasxS-2nfp+;6Q-2LNGkN4Bw zg#4JF`K22qrMe@^$6IMnN4@tip*nsBHFFn{N15MIOP0(ibblwCil(Xv!*LQ0!7_Wi z5j8_=P$TR>eeN{shUZW-6*lN`_te1?&D7WIC9j{`6w$DPWd_$uuz)Qv8pX6jqa z!|*Zg$cvF5)5NbE@FZ#vg^hKWG9CNUo-mgA*MnzrAOPp0MqY)nScB@|D(sCLQJ>#| zy1{PL8XrdOnZIHb{?q!MJ^nw`<_x7bG6r>hfrow8 zhT1EuP#sufk2j+>?JnCsg)y}MVeLfSKah=~`#8O+#8HX12U1a+Efe*@@z#l`5l+Rc zaW?Yz+blR^Iv0g+S|1auuzo3@7iae$FU(>8ztfCJ*PF_-jqFt>~ zu2RF6CHSEr>jgY@M2{_+mLXA-_m&7a9e zGJ~kJyO`~`m+&_F|3>h3nLT7T=_;92ipWhwv(-$xik5k6R|6Lj=Q?|!tlJ5#TPk^r zj3$2~Dg#|ifpsnF^;0=PR{CrFBNgwp^;YX$c)zVL#WzW=)?Z&N^+db;HZqtjCR2!t zHd|NufXXt$CN`T1ueHA%=l2m?*V~}-sEav>j}RZ}PwpXIB}D75QcUzmV;UJrW|1dI z5cvzqAkUImqSAvjkZaVSl#u(#dXh(OCVH*cktXsaQJGKfAo?zOp1h~$e?(OD&DOnS z)2JY~lUMACKzxjBB3sCZqDpMNo^+(-(^8sZ^G$s7_&ZY9UaGbEC< zkbI)@0@+2TlQuG_rL)h#z~GAN>YDPFAEMfOuASqJZ+Sg#U1U&MxvynVN^xlVou$6g zs`5p?I`0BswYR>i{ki#d-o@qfD(6<$EUNTYJy_HBs<*7|&?4{Rx-wtew)u6bEep~= G4EsOWhRhiN diff --git a/filer/locale/cs/LC_MESSAGES/django.po b/filer/locale/cs/LC_MESSAGES/django.po index 948960e99..873cfdde5 100644 --- a/filer/locale/cs/LC_MESSAGES/django.po +++ b/filer/locale/cs/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: @@ -11,19 +11,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+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/" -"cs/)\n" -"Language: cs\n" +"Language-Team: Czech (http://app.transifex.com/divio/django-filer/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " -"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -32,24 +32,25 @@ 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." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "Pokročilé" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "kanonický odkaz" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." msgstr "Nejdříve vyberte položku, která má být změněna." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" @@ -58,182 +59,170 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "Výpis složky %(folder_name)s" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "žádná položka z %(cnt)s není vybrána" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "Nebyla vybrána žádná operace." -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "Soubory (%(count)d) byly přesunuty do schránky." -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "Přesunout vybrané soubory do schránky" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "Pro vybrané soubory (%(count)d) byla deaktivována oprávnění." -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "Pro vybrané soubory (%(count)d) byla aktivována oprávnění." -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "Aktivovat oprávnění pro vybrané soubory" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "Deaktivovat oprávnění pro vybrané soubory" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "Vybrané soubory a/nebo složky (%(count)d) byly smazány." -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "Nemohu smazat soubory a/nebo složky" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "Opravdu provést?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "Smazat soubory a/nebo složky" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "Smazat vybrané soubory a/nebo složky" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "Složky pojmenované %s již v cílové složce existují" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"Vybrané soubory a/nebo složky (%(count)d) byly přesunuty do složky " -"'%(destination)s'." +msgstr "Vybrané soubory a/nebo složky (%(count)d) byly přesunuty do složky '%(destination)s'." -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "Přesunout soubory a/nebo složky" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "Přesunout vybrané soubory a/nebo složky" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "Soubory (%(count)d) vyly přejmenovány." -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "Přejmenovat soubory" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"Soubory a/nebo složky (%(count)d) byly zkopírovány do složky " -"'%(destination)s'." +msgstr "Soubory a/nebo složky (%(count)d) byly zkopírovány do složky '%(destination)s'." -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "Kopírovat soubory a/nebo složky" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "Kopírovat vybrané soubory a/nebo složky" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "Velikost obrázků (%(count)d) byla změněna." -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "Změnit velikost obrázků" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "Změnit velikost vybraných obrázků" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "Koncovka, která bude přidána ke jménům kopírovaných souborů." -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." -msgstr "" -"Koncovka by měla být jednoduchá součást názvu souboru malými písmeny, " -"například \"%(valid)s\"." +msgstr "Koncovka by měla být jednoduchá součást názvu souboru malými písmeny, například \"%(valid)s\"." -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "Neznámý formát klíče pro přejmenování \"%(key)s\"." -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "Špatný formát přejmenování: %(error)s." -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "volby náhledu" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "šířka" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "výška" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "oříznout" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "zvětšit" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." -msgstr "" -"Musíte vybrat předdefinované volby náhledu nebo nastavit jednotlivé " -"parametry." - -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "Parametry pro změny velikosti musí být vybrány." +msgstr "Musíte vybrat předdefinované volby náhledu nebo nastavit jednotlivé parametry." #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" @@ -380,9 +369,7 @@ msgstr "Oprávnění neaktivní" msgid "" "Disable any permission checking for this file. File will be publicly " "accessible to anyone." -msgstr "" -"Deaktivovat veškerá oprávnění pro tento soubor. Soubor bude komukoli veřejně " -"dostupný." +msgstr "Deaktivovat veškerá oprávnění pro tento soubor. Soubor bude komukoli veřejně dostupný." #: models/foldermodels.py:94 msgid "parent" @@ -475,6 +462,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -493,6 +481,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -505,6 +494,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -559,6 +549,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -626,26 +617,19 @@ msgid "" "Deleting the selected files and/or folders would result in deleting related " "objects, but your account doesn't have permission to delete the following " "types of objects:" -msgstr "" -"Smazání vybraných souborů a/nebo složek bude mít za následek smazání všech " -"přidružených objektů, nicméně ke smazání následujících objektů nemáte " -"oprávnění:" +msgstr "Smazání vybraných souborů a/nebo složek bude mít za následek smazání všech přidružených objektů, nicméně ke smazání následujících objektů nemáte oprávnění:" #: templates/admin/filer/delete_selected_files_confirmation.html:19 msgid "" "Deleting the selected files and/or folders would require deleting the " "following protected related objects:" -msgstr "" -"Smazání vybraných souborů a/nebo složek bude mít za následek smazání " -"následujících přidružených objektů:" +msgstr "Smazání vybraných souborů a/nebo složek bude mít za následek smazání následujících přidružených objektů:" #: templates/admin/filer/delete_selected_files_confirmation.html:27 msgid "" "Are you sure you want to delete the selected files and/or folders? All of " "the following objects and their related items will be deleted:" -msgstr "" -"Opravdu chcete smazat vybrané soubory a složky? Všechny následující objekty " -"budou smazány:" +msgstr "Opravdu chcete smazat vybrané soubory a složky? Všechny následující objekty budou smazány:" #: templates/admin/filer/delete_selected_files_confirmation.html:46 #: templates/admin/filer/folder/choose_copy_destination.html:64 @@ -694,8 +678,8 @@ msgstr "Ikona složky" #: 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 "Nemáte oprávnění kopírovat vybrané soubory a/nebo složky." #: templates/admin/filer/folder/choose_copy_destination.html:25 @@ -720,9 +704,7 @@ msgstr "Žádné soubory ani složky není možno kopírovat." msgid "" "The following files and/or folders will be copied to a destination folder " "(retaining their tree structure):" -msgstr "" -"Následující soubory a/nebo složky budou zkopírovány do cílové slžoky (jejich " -"stromová struktura bude zachována):" +msgstr "Následující soubory a/nebo složky budou zkopírovány do cílové slžoky (jejich stromová struktura bude zachována):" #: templates/admin/filer/folder/choose_copy_destination.html:54 #: templates/admin/filer/folder/choose_move_destination.html:64 @@ -752,32 +734,24 @@ msgstr "Žádné obrázky ke změně velikosti." msgid "The following images will be resized:" msgstr "Následujícím obrázkům bude změněna velikost:" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" -msgstr "" -"Vyberte existující volby náhledu nebo zadejte parametry změny velikosti:" - -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "Vyberte parametry změny velikosti:" +msgstr "Vyberte existující volby náhledu nebo zadejte parametry změny velikosti:" -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." -msgstr "" -"Varování: Bude změněna velikost obrázků a původní obrázky budou přepsány. " -"Pokud chcete zachovat obrázky v původní velikosti, nejdříve vytvořte jejich " -"kopie." +msgstr "Varování: Bude změněna velikost obrázků a původní obrázky budou přepsány. Pokud chcete zachovat obrázky v původní velikosti, nejdříve vytvořte jejich kopie." -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "Změnit velikost" #: 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 "Nemáte oprávnění k přesunu vybraných souborů nebo složek." #: templates/admin/filer/folder/choose_move_destination.html:47 @@ -788,9 +762,7 @@ msgstr "Žádné soubory k přesunutí." msgid "" "The following files and/or folders will be moved to a destination folder " "(retaining their tree structure):" -msgstr "" -"Následující soubory a/nebo složky budou přesunyty do cílové složky (jejich " -"stromová struktura bude zachována)" +msgstr "Následující soubory a/nebo složky budou přesunyty do cílové složky (jejich stromová struktura bude zachována)" #: templates/admin/filer/folder/choose_move_destination.html:73 #: templates/admin/filer/folder/choose_move_destination.html:76 @@ -815,8 +787,7 @@ msgstr "Žádné soubory k přejmenování." msgid "" "The following files will be renamed (they will stay in their folders and " "keep original filename, only displayed filename will be changed):" -msgstr "" -"Následující soubory budou přejmenovány (změněno bude pouze zobrazované jméno)" +msgstr "Následující soubory budou přejmenovány (změněno bude pouze zobrazované jméno)" #: templates/admin/filer/folder/choose_rename_format.html:59 msgid "Rename" @@ -975,11 +946,13 @@ msgstr "aktivní" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "Kanonický odkaz '%(item_label)s'" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "Stáhnout '%(item_label)s'" @@ -1041,10 +1014,12 @@ msgstr "Vybrat všechny (%(total_count)s)" #: 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 "" @@ -1112,6 +1087,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1167,6 +1143,7 @@ msgid "Choose File" msgstr "Vybrat soubor" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1192,6 +1169,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/de/LC_MESSAGES/django.mo b/filer/locale/de/LC_MESSAGES/django.mo index ccbfd5b60b1c994b4ff18e1c9eabe83a681dee01..dd957229b501dcc632d4bf1c638bf875aeb3cc2c 100644 GIT binary patch delta 5795 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 diff --git a/filer/locale/de/LC_MESSAGES/django.po b/filer/locale/de/LC_MESSAGES/django.po index 10d1bc769..e33b93c9f 100644 --- a/filer/locale/de/LC_MESSAGES/django.po +++ b/filer/locale/de/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-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Fabian Braun , 2023\n" "Language-Team: German (http://app.transifex.com/divio/django-filer/language/de/)\n" @@ -41,196 +41,192 @@ msgid "" "Can't use this folder, Permission Denied. Please select another folder." msgstr "Zugriff auf diesen Ordner verweigert. Bitte wähle einen anderen Ordner." -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "Fortgeschritten" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "Kanonische URL" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." msgstr "Einträge müssen ausgewählt werden, um Aktionen darauf auszuführen. Keine Einträge wurden geändert." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" msgstr[0] "%(total_count)s ausgewählt" msgstr[1] "Alle %(total_count)s ausgewählt" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "Verzeichnis Auflistung für %(folder_name)s" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "0 von %(cnt)s ausgewählt" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "Keine Aktion ausgewählt." -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "%(count)d Dateien wurden erfolgreich in die Zwischenablage gelegt." -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "Ausgewählte Dateien in die Zwischenablage legen" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "Berechtigungen für %(count)d Dateien erfolgreich deaktiviert." -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "Berechtigungen für %(count)d Dateien erfolgreich aktiviert." -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "Berechtigungen für ausgewählte Dateien aktivieren" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "Berechtigungen für ausgewählte Dateien deaktivieren" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "%(count)d Dateien und/oder Ordner wurden erfolgreich gelöscht." -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "Dateien und/oder Ordner können nicht gelöscht werden" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "Bist Du sicher?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "Lösche Dateien und/oder Ordner" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "Lösche ausgewählte Dateien und/oder Ordner" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "Die Ordner mit den Namen %s existieren bereits am ausgewählten Zielort" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "%(count)d Dateien und/oder Ordner wurden erfolgreich in den Ordner '%(destination)s' verschoben." -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "Verschiebe Dateien und/oder Ordner" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "Ausgewählte Dateien und/oder Ordner verschieben" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "%(count)d Dateien wurden erfolgreich umbenannt." -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "Dateien umbenennen" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "%(count)d Dateien und/oder Ordner wurden erfolgreich in den Ordner '%(destination)s' kopiert." -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "Kopiere Dateien und/oder Ordner" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "Ausgewählte Dateien und/oder Ordner kopieren" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "Die Bildgrösse von %(count)d Bildern wurde erfolgreich geändert." -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "Bildgrössen verändern" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "Die Bildgrössen der ausgewählten Bilder verändern" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "Die Dateiendung, welche an die Dateinamen der kopierten Dateien angehängt wird." -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." msgstr "Die Dateiendung sollte ein gültiger, einfacher und kleingeschriebener Teil eines Dateinamens sein, wie zum Beispiel \"%(valid)s\"." -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "Unbekannter Schlüssel für das Umbenennungs-Format: %(key)s." -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "Ungültiges Umbenennungs-Format: %(error)s." -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "Vorschaubild Optionen" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "Breite" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "Höhe" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "Beschneiden" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "Vergrössern" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "Vorschaubild Optionen oder Parameter zur Grössenänderung müssen ausgewählt werden." -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "Parameter zur Grössenänderung müssen ausgewählt werden." - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "Ort des Hauptinhalts" @@ -741,21 +737,17 @@ msgstr "Es gibt keine Bilder auf denen die Größenänderung anwendbar ist." msgid "The following images will be resized:" msgstr "Die Grösse der folgenden Bilder wird verändert:" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" msgstr "Wähle eine vorhandene Vorschaubild Option aus oder gib die Parameter für die Bildgrössenänderung an:" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "Wähle die Parameter für die Bildgrössenänderung:" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." msgstr "Warnung: Die Bilder werden in-place verändert. Die Originale gehen dabei verloren. Lege bei Bedarf eine Kopie der Originale an." -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "Bildgrösse verändern" @@ -1174,6 +1166,12 @@ msgid "" "vulnerability" msgstr "Datei \"{file_name}\": Zurückgewiesen, da eine \"Cross Site Scripting\"-Attacke nicht ausgeschlossen werden kann." +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/en/LC_MESSAGES/django.mo b/filer/locale/en/LC_MESSAGES/django.mo index 7f122d3b0d8b50d9e63473e4718c3d80d9e18f39..4f8792c0612b0ca8ac1345f94ed252f54afddbad 100644 GIT binary patch delta 4386 zcmYk;2~bs49LMnkJW#<6LPT(1AVC4m6a)h^Q^Y;jL@RPBaEpu-l_w-nwq9)T4PRXre?N{l}kNd#I~4pLDQFnY7y)mJ&bK)dyL%$DFlgUEe z**s)dvl{hC%TVX}5;X$nu@zoIw;I(nRC$X~$H6#~em-jGE}-VX6-+>HuA+jIP|vs* z>css~BR2&3XQuE+$1T8?xC6CcC2C~OHeviVl$Th+{4#%{E@;A>3jI)b_8@9xdf0v{ zrqCZ}*RMxSuAQjD_MztQA=^J~x1U3e%n!&to4a9*zbXo(Y#kVaY%|R;7UNNcJ%`$F zmhI3ls4Ks&ZduP!lLSj2ezY6_k&dJ^&l){STp` z10vCd-B6P)2~|K})ax?@b)nJd!e?#&In<=hMy7$8iMo+xsF7NOe7npp)P9Go$1sHJ zn^QD&z;)D}|7Lfnvg^Hg;3}v#YRH3;X=1vf3x`=pqmCbkn&s0_1r(t#u0-8X3F^45 z=vJeYh7K%49e5b^7F<9L=^eY>C&D>lFzUDn)T4+-6_|h;sor+`0Q99l6g9%5aE=#m z6KYP}h-Ca}o7zlOy)LoHSJX^EKb(y^VFBt+im^7X#f7*9RX|L8=Y&b9(@_;?U^Hf9CoI7_cowzaMbt=KMZR6;2I|gg zP=&YVU=OIX;!`B7Pgs{9VdVR%R9N2Ndd)6YT`n1ehW zQ-mt46jj(qs0;7M06c=)?+mK2zfm{ruBPElqX*-m6Q>|=ib+F#dZ(f8Y(8pklpr55 zvj=seuTdj#5j8olSiNGM!rNGfp}rG^r~)q|Bjq;NX(X`1kK0tmDX3@M2X*4XsG%E< zD&z&!5Wj{k@jcXjXHYkA4mFZjup$11x}b~arvm*^H`W0I^#1p>D+XW+8!|i_jM;?s z=)aFDtOE5VJZk%2+3nw=M&>8fk4iPFphlgY`$xX0BaPfKl|9 z;vhVL`nK19$oYo%LcJxqI1qOuH)m>4&o+*oHD^Ykj-QMAO*xG!ybcFvVF+eo0lJH6 z{7yqBnAz2t?Ip-D=A^X-Bk6bP=KQFnBdbgy>Q48g3jYjsXE#wJR*kx_E8bZjhz;ns zMy>B0&-m*{C7Bh0Sb=&*XK*Cmwx%*c`qAHjX?PPg2jaUsAE+^?*`JAe)-%utb5Vul zp$aQR&8-#I_1zhN?XZm%o@Z^XK%KA>>*F`5%6~+Eyko6FjetMnto0307Yak|AC20c zhqY4>i9g8|a2I|Bwq6#QRU3e|(jy9r>+iBg6I&Kf@ zxMLWGmr*17kF(uvYV~kV7>YVU6zWmLqK2#oYN%4}_93VXk3bD^I(nf_s^j_-?XTrH znMMu~%^xjI$qcfJgzEjDOCyEsBae|!h?dn3p1*JNw;g$sG`CquceQJ`2e?&ZRA0cOLTqD@*;oN+qQVYw)2r2{BQY))^ak2yg@W#FOdlHCegB) z^d_&93Zi8`d4L=x$B3?5E~oHE%V#8v@GUV1iI!cY7tyP>pXhnsTl5>TfJ`9zR*WWE z%E)9gTOF1R66I+*A1^g0+5Wq#kjJ$8xzl;aS4)QEXC!TQ_>uE6Ku_M`S`>)_o;!75iNHU!4Bu|r6vWCoW8qjY+nigO*nbpL@@%xCEm~d!prY5=4^Ku}dPZAdis2WG`7n zGKrQf@(vk9o+nR`Ipp5Lht;!quHVFVj#vw^J1HUlcHN^GV%y#DV^W9skuQjrSTd6I zCBbAdDJGjp8W~7Bk)@<1X`%7oK;u2Kjx;BY$S|TM&cV#X*KB*1btg*0EKOOP6&;Q+j0hNQM1ONa4 delta 4437 zcmZYB2~gEV0LSs=cq%A|sEFJmLIENksHrI)rD1|XW|$!z8ev9xW|+?-O`z~VEpM=t z)KnDHGCVO$(P=8HDNWO+n#t0dY%&|O?~nh|)U@O8eRluvf9&pm_u-GvmCbUW5At4N zDD@CSo;q!E@+? z{;i$!LeQIbB(~%ErUMm?@J`eS@=znn$1p6!SS-Z?ti~z~qj%if)ZrNX95sNh!N#Ou z4n|@L`r;N;2lrq{Jcd3z-~2#DBe;fo@D0>RJ=!`a`k^}34K?yU=!r$B8_&iLSd8?| zY)8$^QRG(U9O~8nin>o=h%*Br=x)z}2r9Bas^e!#Cb?ixR)DA#>AB^fyY#8&eDH_57X2;~BdNv((K@oBfGY>oC zI#dTwqs}{T+uvXU?Q58cQOtLDEW{r8I;P@T%)pkcaLsg{n~E00QjEiWs2iNeKA6l3 z(g+H0BF?}9{02)fBg(n{3)HH=g?eyev|}E|(_VqM;Q>^KzC#Vb9l`vn=P{^}4M&YU z7xm!r_V{Gf>YZiBAHLBCIz)-vaDM%owg?{bQlgt4w+Txul-+3Mfuq{`rZfiP6MrxsQV=$4=_DY9lr~Gag;R=y|w=*+5=Cc z9#n+7;H8EWj9H6Xbd{(MY)5UQy{HErL~s1Swoju5@;R~`%vY$6{(+h)y>EWgOc1(w zzUin6CZZN&7t{qqQ60)e7v|aH6HpzRgqrf1$Z|1j&>P>e9zR0l4j3vZ%Z zBl3!KE^J|KiMlWtbzwYe7xY6-X^#CqA9cf-s0Wv#Ud0kr2iK!!YODQzH|oLrP&0fW zj`^SE!FJ++7DYNsl&YD8+AhnHUsZDwo8Z@|8-9;^@KtPv9=AJxWPDK_C`a9|5_R1% zWMi0m)cr4`W-KUy`PTzd*aFFTH>&5;us_a4{em4q_53WV=NB;%f59#oLBj_#QRn5L zW@H@d`o~ZmnvEJjC8}dv+*Gtks*&|!PGJH5f>k&+$@yjU?&SQD2|fmq4>oqP$rH&<{I+luha35@r?txTvVg{;bQ&A(Ig`QZ8y73`o=b4kJpW-X1 zk$H7?)<^{M<7T>}?lTfK139Qgnroed>i9-SxA}yMelWZ_sveF-P1PfK2QEPM_z>z{ zA4lEzL)6TjL3QM3)OEhRk7(?KIxhn?fNa#C>s$=P$>`GlpHD?SEJlrN8)|9}+x96; zqkYjHkLl_xvSd`p`l5a*2if)r`~7HChsL9J(IV8}m<_0o?ZYNK-_%mk_NqfB!<38xM_nJq$!`6TDWswi zY{QB8HWpwkcP+uis2ha#bXI*Dau4&QwG!iLe}?Qx^B1Z^@x7b@OsF~Z) zi}}}sH`_02Fo5h1iIDML;Dm*|f-QM;f8 zqtzMS}RfS`c2#3 zg?dgc>ipB1f1U6ZYSCRnb>IqW8~u)Y&@I$?K7F0GKWZc)7>1Fkj`l{))Bp^^Y}9!Z ztWRPv?a8R~-NjVYqb2r)O8Z3>szW{Kk5djP_N=6R0l7hX6my2{#Vq4ucM~; zFZ946M2mY4d50_@d$s>ZQrSoJGpYygA&-!I$a|!KJV>4;?-G?U^T&*95t5>bgJapY~Xh&(_Vi{9%-+tAd%Mpl!dq>$W8 zSS}6abv~yMZPynYj<9X9Gr60%ALHX;qQXp>-VHTlmf@SWJ_=v4_3?O+#FJt6SPoW` z6tbS&PbQEpq=c}0&09oe5ECj&@V(pa9R5\n" "Language-Team: English (http://www.transifex.com/divio/django-filer/language/" @@ -35,15 +35,15 @@ msgstr "" msgid "Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "Advanced" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "canonical URL" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." @@ -51,81 +51,81 @@ msgstr "" "Items must be selected in order to perform actions on them. No items have " "been changed." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" msgstr[0] "%(total_count)s selected" msgstr[1] "All %(total_count)s selected" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "0 of %(cnt)s selected" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "No action selected." -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "Successfully moved %(count)d files to clipboard." -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "Move selected files to clipboard" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "Successfully disabled permissions for %(count)d files." -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "Successfully enabled permissions for %(count)d files." -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "Enable permissions for selected files" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "Disable permissions for selected files" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "Successfully deleted %(count)d files and/or folders." -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "Cannot delete files and/or folders" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "Are you sure?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "Delete files and/or folders" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "Delete selected files and/or folders" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "Folders with names %s already exist at the selected destination" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " @@ -134,25 +134,25 @@ msgstr "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "Move files and/or folders" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "Move selected files and/or folders" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "Successfully renamed %(count)d files." -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "Rename files" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " @@ -161,32 +161,32 @@ msgstr "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "Copy files and/or folders" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "Copy selected files and/or folders" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "Successfully resized %(count)d images." -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "Resize images" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "Resize selected images" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "Suffix which will be appended to filenames of copied files." -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " @@ -195,44 +195,40 @@ msgstr "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "Unknown rename format value key \"%(key)s\"." -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "Invalid rename format: %(error)s." -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "thumbnail option" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "width" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "height" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "crop" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "upscale" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "Thumbnail option or resize parameters must be choosen." -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "Resize parameters must be choosen." - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "Subject location" @@ -761,15 +757,11 @@ msgstr "There are no images available to resize." msgid "The following images will be resized:" msgstr "The following images will be resized:" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" msgstr "Choose an existing thumbnail option or enter resize parameters:" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "Choose resize parameters:" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." @@ -777,7 +769,7 @@ msgstr "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "Resize" @@ -1207,6 +1199,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/es/LC_MESSAGES/django.mo b/filer/locale/es/LC_MESSAGES/django.mo index 58062ee4509426435c1c7b52ea45cf0a62e8d7f1..996721d51b4920225994f4e879419acad87ac833 100644 GIT binary patch delta 5249 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 delta 5320 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 diff --git a/filer/locale/eu/LC_MESSAGES/django.po b/filer/locale/eu/LC_MESSAGES/django.po index 56e3b41fe..bcac68606 100644 --- a/filer/locale/eu/LC_MESSAGES/django.po +++ b/filer/locale/eu/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: @@ -10,18 +10,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+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/" -"eu/)\n" -"Language: eu\n" +"Language-Team: Basque (http://app.transifex.com/divio/django-filer/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -30,205 +31,195 @@ 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." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "Aurreratua" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." -msgstr "" -"Elementuak hautatu behar dira beraiekin zeozer egiteko. Ez da elementurik " -"aldatu." +msgstr "Elementuak hautatu behar dira beraiekin zeozer egiteko. Ez da elementurik aldatu." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" msgstr[0] "bat haututa" msgstr[1] "%(total_count)s hautatuta" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "%(cnt)s-(e)tik 0 hautatuta" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "Ez da ekintzarik hautatu" -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "%(count)d fitxategi arbelera mugituta." -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "Hautatutako fitxategiak arbelara mugitu" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "%(count)d fitxategientzako baimenak ezgaituta." -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "%(count)d fitxategientzako baimenak gaituta." -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "Hautatutako fitxategientzako baimenak gaitu" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "Hautatutako fitxategientzako baimenak ezgaitu" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "%(count)d fitxategi eta/edo karpeta ezabatuta." -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "Ezin dira fitxategia eta/edo karpetak ezabatu" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "Ziur zaude?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "Ezabatu fitxategi eta/edo karpetak" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "Ezabatu hautatutako fitxategi eta/edo karpetak" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"%(count)d fitxategi eta/edo karpeta '%(destination)s' karpetara mugituta." +msgstr "%(count)d fitxategi eta/edo karpeta '%(destination)s' karpetara mugituta." -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "Fitxategi eta/edo karpetak mugitu" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "Hautatutako fitxategi eta/edo karpetak mugitu" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "%(count)d fitxategi berrizendatuta." -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "Fitxategiak berrizendatu" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"%(count)d fitxategi eta/edo karpeta %(destination)s karpetara kopiatuta." +msgstr "%(count)d fitxategi eta/edo karpeta %(destination)s karpetara kopiatuta." -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "Fitxategi eta/edo karpetak kopiatu" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "Hautatutako fitxategi eta/edo karpetak kopiatu" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "%(count)d irudien tamaina aldatuta." -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "Irudien tamaina aldatu" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "Hautatutako irudien tamaina aldatu" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "Kopiatutako fitxategiei gehituko zaien atzizkia." -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." -msgstr "" -"Atzizkia baliozko, sinple eta letra xehetan dagoen fitxategi izen zatia izan " -"beharko luke, \"%(valid)s\" bezala." +msgstr "Atzizkia baliozko, sinple eta letra xehetan dagoen fitxategi izen zatia izan beharko luke, \"%(valid)s\" bezala." -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "Berrizendatze formatuko gako balio ezezaguna \"%(key)s\"." -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "Berrizendatze formatu okerra: %(error)s." -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "argazkitxoaren aukerak" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "zabalera" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "altuera" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "moztu" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "handitu" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." -msgstr "" -"Argazkitxo aukerak edo tamaina aldatzeko parametroak zehaztu behar dira." - -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "Tamaina aldatzeko parametroak zehaztu behar dira." +msgstr "Argazkitxo aukerak edo tamaina aldatzeko parametroak zehaztu behar dira." #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" @@ -468,6 +459,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -486,6 +478,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -498,6 +491,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -552,6 +546,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -631,9 +626,7 @@ msgstr "" msgid "" "Are you sure you want to delete the selected files and/or folders? All of " "the following objects and their related items will be deleted:" -msgstr "" -"Ziur hautatutako fitxategi eta/edo karpetak ezabatu nahi dituzula? Ondoko " -"objektu eta erlazionatutako elementu guztiak ezabatuko lirateke:" +msgstr "Ziur hautatutako fitxategi eta/edo karpetak ezabatu nahi dituzula? Ondoko objektu eta erlazionatutako elementu guztiak ezabatuko lirateke:" #: templates/admin/filer/delete_selected_files_confirmation.html:46 #: templates/admin/filer/folder/choose_copy_destination.html:64 @@ -682,8 +675,8 @@ msgstr "Karpeta ikonoa" #: 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 @@ -738,34 +731,25 @@ msgstr "Ez dago tamaina aldatu dezakeen irudirik." msgid "The following images will be resized:" msgstr "Ondoko irudien tamaina aldatuko da:" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" -msgstr "" -"Argazkitxo aukera bat hautatu edo tamaina aldatzeko parametroak ezarri:" - -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "Tamaina aldatzeko parametroak aukeratu:" +msgstr "Argazkitxo aukera bat hautatu edo tamaina aldatzeko parametroak ezarri:" -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." -msgstr "" -"Kontuz: Irudien tamaina aldatzean jatorrizkoak galduko dira. Lehenbizi " -"jatorrizkoen kopia egin zenezake." +msgstr "Kontuz: Irudien tamaina aldatzean jatorrizkoak galduko dira. Lehenbizi jatorrizkoen kopia egin zenezake." -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "Tamaina aldatu" #: 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." -msgstr "" -"Zure kontuak ez du hautatutako fitxategi eta/edo karpeta guztiak mugitzeko " -"baimenik." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." +msgstr "Zure kontuak ez du hautatutako fitxategi eta/edo karpeta guztiak mugitzeko baimenik." #: templates/admin/filer/folder/choose_move_destination.html:47 msgid "There are no files and/or folders available to move." @@ -955,11 +939,13 @@ msgstr "gaituta" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "" @@ -1021,10 +1007,12 @@ 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 "" @@ -1090,6 +1078,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1145,6 +1134,7 @@ msgid "Choose File" msgstr "" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1170,6 +1160,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/fa/LC_MESSAGES/django.po b/filer/locale/fa/LC_MESSAGES/django.po index 0900b6fc9..95e21bf26 100644 --- a/filer/locale/fa/LC_MESSAGES/django.po +++ b/filer/locale/fa/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: @@ -10,18 +10,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+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/" -"fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://app.transifex.com/divio/django-filer/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -30,201 +31,196 @@ 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." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "پیشرفته" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "آدرس کانونی" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." -msgstr "" -"برای اینکه بتوانید روی آیتم ها اقداماتی انجام دهید ابتدا باید آیتم ها را " -"انتخاب کنید. هیچ آیتمی تغییر نکرد." +msgstr "برای اینکه بتوانید روی آیتم ها اقداماتی انجام دهید ابتدا باید آیتم ها را انتخاب کنید. هیچ آیتمی تغییر نکرد." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" msgstr[0] "" msgstr[1] "" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "هیچ اقدامی انتخاب نشده است." -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "" -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "انتقال فایل های انتخاب شده به کلیپ برد" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "" -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "آیا مطمئن هستید؟" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "پاک کردن فایل ها و/یا پوشه ها" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "پاک کردن فایل ها و/یا پوشه های انتخاب شده" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "" -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "" -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "" -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." msgstr "" -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "" -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "" -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "" -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "" - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "" @@ -463,6 +459,7 @@ 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,6 +478,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -493,6 +491,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -547,6 +546,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -675,8 +675,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 @@ -731,28 +731,24 @@ msgstr "" msgid "The following images will be resized:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" 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 @@ -943,11 +939,13 @@ msgstr "" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "" @@ -1009,10 +1007,12 @@ 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 "" @@ -1078,6 +1078,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1133,6 +1134,7 @@ msgid "Choose File" msgstr "" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1158,6 +1160,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/fi/LC_MESSAGES/django.mo b/filer/locale/fi/LC_MESSAGES/django.mo index 2687344adf9e5cb92077991f1d1cc4ed288091f8..0da4c3f99c2d95ef394796ede2e6c86203deab06 100644 GIT binary patch delta 4511 zcmYk;4RlX+9LMqR#!QSEhCQ)nvj>c68?u;IEE!2{d5BocJVi1p=~k*SR9X+1qEwqw z%33iKJt@UH)amKeDo$~Bj_5&;bb5dO_ow4`eD?a?`@jGD``+LE-TQZZSF$~3@kbm|&e_CVfj%Ld- z0^8ww)cI<#yP0Pn(a{N-u?PN)8YrTZSsV^R4OEEfI0xHe6%NB{48daoAXP*=VQb=+1|!G}>Z z@f8MRbT>|nao7`6keY2Ys*q_&4YmY5-SbE2=tSF4Q}YI1hz-srROR}%%)la?jw-Mo zHG_L`Fdjt}92f21^F-8I7=Swe5Y)`(Ml=5$Ym?cb6D-1bT;~p~M_tJt)Kq_n9k2;C z@JUpmr%_kfm9uJw`k=N4VJ;T9{SRVb5uysLiDCY=(6_lA4eo$TEs$7qV zz8HdxX<^t8lTn2gp^htc+jB9E?YnR+Zoy3a3$roZV~Oi=D#0;Wg_`1K)IE-2rS!t# zs1uap5Zr+({5PD9K|TD%ITtI~{sQ&=;&}gQSb-Y2&e@E~YQ5pZ3S$QcOdw{u<;Et4FPwubr8!%u#y&SJAnW4?age zv!01&?QsO^DYzDOucu-QEI}1A6IIxJ)Z)6wS>Zmf#K66F)}YS!I_ms;FEA4{%yccS*^+pvi5cL%0q6W%G9e1_cF2WGDryx8N)uV1Khc9AbU;m1O)BPC= z$I0x!81;U50`+G71a+%UU>>&Y=dZDR)P;DH=x8eE;2^vk!*D06;(e%!4`6%z1QYQH zhGJ-c{{<6{+8%;BaURCwHK^~Eq1MWMsPQ%;1$tIXNB8g`>I9!5|E!5WNf^$2>J6EN z7vXFij~h{I=U3EJ{)yZz>o&mOpNG2V`Ka?3qRu}Rb^aL`ujhX)9o?&)$U3njs1t`V zT3d`jO=TQvDhHxYI0p526*T=A-S;#W5TGSdjg5Je+ zx@VhRffG;%Y(_l|hf!1e7tY0~f&TA%IjYdN@H+eyr($2K*?_B2uky6P{!A30#+iqg z;0ws4*zv*4KgC-tpAN%usKvGhS?IPF>tz=hH)9%jztyJ7uR5}+dhoC zfFE!QhUEB#-iU>4znkOn8l)3LS-NL4F#=bjR_&9hr(i1v<95^{s>4pW8+Gdrq22@E zxX+KFo}!c34bQmk$f5rC5-^he*&ZD&iqWWnCZcBG2GkYKKoztYb)_p%1*}IM_l(=W z1yxAB+rJOBW)7kX`3zOyQH;V9sPB8B%zGC)?NOB`p#~U=I$#895f!-o3sAS>4%A|M z2vzu_r~%g_zvQ+VQ}BJ%ai`qpr%^NgFUINlkI(gA3`0>Tn1HHuI_ku8P$yV`nt{cr zf|nyFu#Ko0+U@)pRp9ri3-}#%tInb>EMmAnP87D)^PfOR2d1MA%)%g?M;;_9svl9) zz~$rxZO~Zwf!SFd*z*6}3lF>PQdBW&i-{Je+ES89QW@V~B_oNZe?Q@|w3+02(uSzL zNlHitd4{Yf(}~(XAA1%xQ#@Vv24T_LE97NzuJL3B{-1dnYSz5x&V7QhWYc-ui|D7j z?HkYAA49)CsV6*%_7G9i?NH12vBywrLG2?_5$N&ri`V;o&vv?<*WeAVzYKQ}?u6Y= z?j(9jt|ZCiHZqZ@_3*Je{E*yFa>)k5A`i3=`1_XY>lUkN<^z9s!(C({i6)cDxu!>| zkz7Ukx}5{?CbEKP-BgoovXGO2s^Sr{lBmrm<4Ak* z6nU2%Bx>7y{{NdpZx$I#wz|C`csHpc8_5B3e!InOT<7$zb)8-39aT&JMRJAPSLED_ zQ_0P4`*o+-PL{jvVCO1lAtsPsqz{=v)Fx>D$J2R$+(GsbwF^lKxrdaIb>vCXmGmZC z$Y!EeOl~Dh$mK-s5}&}YWjOr~7LXA{?P>B7nMU3tNyL&;iszNxys%_J>aFp$OCweW*Cup66ta-aRJYooIo!~O$<7q|Za delta 4552 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 diff --git a/filer/locale/fi/LC_MESSAGES/django.po b/filer/locale/fi/LC_MESSAGES/django.po index 808350553..332da3021 100644 --- a/filer/locale/fi/LC_MESSAGES/django.po +++ b/filer/locale/fi/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: @@ -11,18 +11,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+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/" -"fi/)\n" -"Language: fi\n" +"Language-Team: Finnish (http://app.transifex.com/divio/django-filer/language/fi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -31,205 +32,196 @@ 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." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "Edistyneet asetukset" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "sääntöjenmukainen URL" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." -msgstr "" -"Toiminnon suorittamiseksi pitää valita kohteita. Yhtäänkohdetta ei ole " -"valittu." +msgstr "Toiminnon suorittamiseksi pitää valita kohteita. Yhtäänkohdetta ei ole valittu." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" msgstr[0] "%(total_count)s valittu" msgstr[1] "Kaikki %(total_count)s valittu" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "Hakemistolistaus kansiolle %(folder_name)s" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "0 / %(cnt)s valittu" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "Toimintoa ei ole valittu." -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "%(count)d tiedostoa siirretty leikepöydälle." -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "Siirrä valitut tiedostot leikepöydälle" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "%(count)d tiedoston käyttöoikeudet poistettu käytöstä." -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "Käyttöoikeudet otettu käyttöön %(count)d tiedostolle." -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "Ota käyttöoikeudet käyttöön valituille tiedostoille" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "Poista käyttöoikeudet käytöstä valituista tiedostoista" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "%(count)d tiedostoa ja/tai kansiota poistettu." -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "Kansioita ja/tai tiedostoja ei voida poistaa" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "Oletko varma?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "Poista tiedostot ja/tai kansiot" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "Poista valitut tiedostot ja/tai kansiot" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "%s niminen kansio on jo valitussa kohteessa" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"%(count)d tiedostoa ja/tai kansiota siirretty kansioon '%(destination)s'." +msgstr "%(count)d tiedostoa ja/tai kansiota siirretty kansioon '%(destination)s'." -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "Siirrä tiedostot ja/tai kansiot" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "Siirrä valitut tiedostot ja/tai kansiot" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "%(count)d tiedostoa nimetty uudelleen." -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "Nimeä tiedostot uudelleen" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"%(count)d tiedostoa ja/tai kansiota kopioitu kansioon '%(destination)s'." +msgstr "%(count)d tiedostoa ja/tai kansiota kopioitu kansioon '%(destination)s'." -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "Kopioi tiedostot ja/tai kansiot" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "Kopioi valitut tiedostot ja/tai kansiot" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "%(count)d kuvan kokoa muutettu." -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "Muuta kuvien kokoa" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "Muuta valittujen kuvien kokoa" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "Pääte, joka lisätään kopioitujen tiedostojen nimiin." -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." -msgstr "" -"Päätteen tulee olla käypä, yksinkertainen ja pienellä kirjoitettu osa " -"tiedostonimeä, esim. \"%(valid)s\"." +msgstr "Päätteen tulee olla käypä, yksinkertainen ja pienellä kirjoitettu osa tiedostonimeä, esim. \"%(valid)s\"." -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "Tuntematon uudelleennimeämisarvo \"%(key)s\"." -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "Virheellinen uudelleennimeämismuoto: %(error)s." -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "pikkukuvan asetus" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "leveys" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "korkeus" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "rajaus" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "suurenna" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "Pikkukuvan asetus tai koon muuttamisen parametrit tulee valita." -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "Koon muuttamisen parametrit tulee valita." - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "Kohteen sijainti" @@ -375,9 +367,7 @@ msgstr "Käyttöoikeudet pois käytöstä" msgid "" "Disable any permission checking for this file. File will be publicly " "accessible to anyone." -msgstr "" -"Poista käyttöoikeuksien tarkistus tältä tiedostolta. Tiedosto näkyy " -"julkisena kaikille." +msgstr "Poista käyttöoikeuksien tarkistus tältä tiedostolta. Tiedosto näkyy julkisena kaikille." #: models/foldermodels.py:94 msgid "parent" @@ -470,6 +460,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -488,6 +479,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -500,6 +492,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -554,6 +547,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -621,26 +615,19 @@ msgid "" "Deleting the selected files and/or folders would result in deleting related " "objects, but your account doesn't have permission to delete the following " "types of objects:" -msgstr "" -"Valittujen tiedostojen ja/tai kansioiden poistaminen vaatii liittyvien " -"objektien poistamista, mutta käyttöoikeutesi eivät riitäseuraavien " -"objektityyppien poistamiseen:" +msgstr "Valittujen tiedostojen ja/tai kansioiden poistaminen vaatii liittyvien objektien poistamista, mutta käyttöoikeutesi eivät riitäseuraavien objektityyppien poistamiseen:" #: templates/admin/filer/delete_selected_files_confirmation.html:19 msgid "" "Deleting the selected files and/or folders would require deleting the " "following protected related objects:" -msgstr "" -"Valittujen tiedostojen ja/tai kansioiden poistaminen vaatisi seuraavien " -"suojattujen liittyvien objektien poistamista:" +msgstr "Valittujen tiedostojen ja/tai kansioiden poistaminen vaatisi seuraavien suojattujen liittyvien objektien poistamista:" #: templates/admin/filer/delete_selected_files_confirmation.html:27 msgid "" "Are you sure you want to delete the selected files and/or folders? All of " "the following objects and their related items will be deleted:" -msgstr "" -"Oletko varma, että haluat poistaa valitut tiedostot ja/tai kansiot? Kaikki " -"seuraavat objektit ja niihin liittyvät kohteet poistetaan:" +msgstr "Oletko varma, että haluat poistaa valitut tiedostot ja/tai kansiot? Kaikki seuraavat objektit ja niihin liittyvät kohteet poistetaan:" #: templates/admin/filer/delete_selected_files_confirmation.html:46 #: templates/admin/filer/folder/choose_copy_destination.html:64 @@ -689,11 +676,9 @@ msgstr "Kansion kuvake" #: 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." -msgstr "" -"Käyttöoikeutesi eivät riitä kaikkien valittujen tiedostojen ja/tai " -"kansioidenkopioimiseen." +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." +msgstr "Käyttöoikeutesi eivät riitä kaikkien valittujen tiedostojen ja/tai kansioidenkopioimiseen." #: templates/admin/filer/folder/choose_copy_destination.html:25 #: templates/admin/filer/folder/choose_copy_destination.html:31 @@ -717,9 +702,7 @@ msgstr "Kopioitavia tiedostoja ja/tai kansioita ei ole saatavilla." msgid "" "The following files and/or folders will be copied to a destination folder " "(retaining their tree structure):" -msgstr "" -"Seuraavat tiedostot ja/tai kansiot kopioidaan kohdekansioon (säilyttäen " -"puurakenteen):" +msgstr "Seuraavat tiedostot ja/tai kansiot kopioidaan kohdekansioon (säilyttäen puurakenteen):" #: templates/admin/filer/folder/choose_copy_destination.html:54 #: templates/admin/filer/folder/choose_move_destination.html:64 @@ -739,8 +722,7 @@ msgstr "Tiedostojen kopiointi samaan kansioon ei ole sallittu" #: templates/admin/filer/folder/choose_images_resize_options.html:15 msgid "" "Your account doesn't have permissions to resize all of the selected images." -msgstr "" -"Käyttöoikeutesi eivät riitä kaikkien valittujen kuvien koon muuttamiseen." +msgstr "Käyttöoikeutesi eivät riitä kaikkien valittujen kuvien koon muuttamiseen." #: templates/admin/filer/folder/choose_images_resize_options.html:18 msgid "There are no images available to resize." @@ -750,33 +732,25 @@ msgstr "Kuvia, joiden kokoa voisi muuttaa ei ole saatavilla." msgid "The following images will be resized:" msgstr "Seuraavien kuvien kokoa muutetaan:" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" msgstr "Valitse olemassaolevat pikkukuvan asetukset tai syötä kokoparametrit:" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "Valitse kokoparametrit:" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." -msgstr "" -"Varoitus: Kuvien kokoa muuttaessa alkuperäiset versiot menetetään. On hyvä " -"idea tehdä kuvista ensin kopiot alkuperäisten säilyttämiseksi." +msgstr "Varoitus: Kuvien kokoa muuttaessa alkuperäiset versiot menetetään. On hyvä idea tehdä kuvista ensin kopiot alkuperäisten säilyttämiseksi." -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "Muuta kokoa" #: 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." -msgstr "" -"Käyttöoikeutesi eivät riitä kaikkien valittujen tiedostojen ja/tai " -"kansioidensiirtämiseen." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." +msgstr "Käyttöoikeutesi eivät riitä kaikkien valittujen tiedostojen ja/tai kansioidensiirtämiseen." #: templates/admin/filer/folder/choose_move_destination.html:47 msgid "There are no files and/or folders available to move." @@ -786,9 +760,7 @@ msgstr "Siirrettäviä tiedostoja ja/tai kansioita ei ole saatavilla." msgid "" "The following files and/or folders will be moved to a destination folder " "(retaining their tree structure):" -msgstr "" -"Seuraavat tiedostot ja/tai kansiot siirretään kohdekansioon (säilyttäen " -"niiden puurakenne):" +msgstr "Seuraavat tiedostot ja/tai kansiot siirretään kohdekansioon (säilyttäen niiden puurakenne):" #: templates/admin/filer/folder/choose_move_destination.html:73 #: templates/admin/filer/folder/choose_move_destination.html:76 @@ -803,9 +775,7 @@ msgstr "Tiedostojen siirto samaan kansioon ei ole sallittua" #: templates/admin/filer/folder/choose_rename_format.html:15 msgid "" "Your account doesn't have permissions to rename all of the selected files." -msgstr "" -"Käyttöoikeutesi eivät riitä kaikkien valittujen tiedostojen " -"uudelleennimeämiseen." +msgstr "Käyttöoikeutesi eivät riitä kaikkien valittujen tiedostojen uudelleennimeämiseen." #: templates/admin/filer/folder/choose_rename_format.html:18 msgid "There are no files available to rename." @@ -815,10 +785,7 @@ msgstr "Uudelleennimettäviä tiedostoja ei ole saatavilla." msgid "" "The following files will be renamed (they will stay in their folders and " "keep original filename, only displayed filename will be changed):" -msgstr "" -"Seuraavat tiedostot uudelleennimetään (ne pysyvät kansioissaan ja " -"alkuperäiset tiedostonimet säilytetään, vain näytettävä tiedostonimi " -"muutetaan):" +msgstr "Seuraavat tiedostot uudelleennimetään (ne pysyvät kansioissaan ja alkuperäiset tiedostonimet säilytetään, vain näytettävä tiedostonimi muutetaan):" #: templates/admin/filer/folder/choose_rename_format.html:59 msgid "Rename" @@ -973,11 +940,13 @@ msgstr "käytössä" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "Canonical-osoite '%(item_label)s'" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "Lataa '%(item_label)s'" @@ -1039,10 +1008,12 @@ msgstr "Valitse kaikki %(total_count)s" #: 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 "" @@ -1108,6 +1079,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1163,6 +1135,7 @@ msgid "Choose File" msgstr "Valitse tiedosto" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1188,6 +1161,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/fr/LC_MESSAGES/django.mo b/filer/locale/fr/LC_MESSAGES/django.mo index f00475990ff12d5f41a3920c31c351e1a2f1ff90..d02eb51bc84b61725839589faf68387bb49b1e92 100644 GIT binary patch delta 5245 zcmY+{2~<~A0>|+S2#6qpfTFmuD2s@K0%9n*p`xOsrl~cPjwWDk)3{{zBsG^QtU*o7 z%rv)3EipwKmoXhH%iMA;ZJ9K4p`*vCn5_B!{_oPUd;Iaa_x<1hy}P~lKfbok>+D)D z=VJX@OAV!pG$Bj;jp^%UOi(=?HKt>@F)^5ht#Bl!;~b2@UFe6OVi2B2E@8gGP`rk< z@h%3UA75I4^|7uoj(M3%4hJ@27GA|(7~8)Rb*S-LMkd;R)1C_;8mx z7=!9q8`Ns0p)TAFHGpxbj!nTXI0FY_C1zm&>+STU(w&Mfun_gd6{sm%Yu$vp&{oux z?m%_u0A}KC)QwxS4w{id)Kou+-natQ;guMR8<6c_jx=TdHNr1B!19@DVln7BkhUNm~S1A>PVS&9}cDc18M-ho4ZR@fEw{+)FyosHK5Aoj=MSbaX?f43F=0t zky$bqP#ydcwdSEMjNzZ@z#pAA1U0hZsI?t~AvgoofkmheKaU#mHq;Crw(XM+m0S*d zhq_=QXX}I%)UNG>>S=FO&j;A{Nc;I{)XYsr_N`ffy3T6U_tv30_!hE#%uZ~JCr}-A zycw3(J`6R2SkwhFQ72?$686UdI2}9S2bh6(F&#UwumxC*?Qj=rPkfK9FeJ|XekR^W zdpTu zqaW@>&E#Isafe+*$OBMcwch)ChDpjmRHsW27}2^?4F% z@1$CDP}l2^y8ckqfXAX!hssncvJ^GKXKnih)Qwi6zOdPTz6S$oA3$~BDEi|W)Qv8o zu5;D4Z=weB6Y8n@71hzk$*jMoFglqZ1Z}eW3`|p-J}hQhR(pssm*h zh|5q*u?Bgin1iSeeQmvhy3X}v=3h6s%K>#Hyp7v|R;U{$qej>sb%AVaSJVaaP~RVl zdb}o}rg)+Kd^zg6n^50>59{K7R7a0GRMhkH=;Ar@T;izz14}RC56N0W^0|KhMEj>>-RpI^>wAspx}6sFAJ4 zUU&gDm9bo1BTKVpp`Mmpq_1YQJ-!sR`Bq{}T#sDBe2kBx7cYk+ScK|OI=@_r+}{*X znZ|+Xs44ydLoubJyH>fV5fxw|PQVo0k9umVP%~1E4bg{R8vWQr@uw~hL47_Nhv9hC zOdrBQ+}|WHY#n$Kb%9H$4*ZDP3jw^9JX4NLnTbSw-U16S4F_W>Cg5q*`M+U4*3Ndn zHwc4hkH91xhYr7#rksk_Y8y7fZ!rpg!w`&OS~SvRR0lGVN7&?GJeFV=EXS^R0!uKQ zgIc=T*b3)kcie(n+FMUdnwm(N4%Z`Q#r67^%!O{jBw1h7NR;f79(&XY6SC8 zGqwa1aSKM{S=0@xQ8VY)&3zn0QJ=>llVI{3Dv?y?p>DVen_~rP>Q36@=aEO&RN+W$ z!921(%q(OQOeM11<|iD59eVJCg)gGk`aJT=Fupz6fS8Uv7{*ycMK?N&nt@9=10Tqv zGk6TO+b8yNH`glE5*$VbXMVv{?9!XJBu>J?_&RDPe?~3guc$qh+Q;35{gIh-%y24= z`QUNuVw_C-4b+S@$#*wlDz2s74Rztm=!4f#PeT=EqE}ycb7tWL+G9}HJB5#6UO)GJ zun|4ae@K7#3!N~T6UJf;mSY(1zySORz3~)k#?D{^yof<~2X&rzf%}vMp#~6+bukfx zF%vZtdDw*gXGYl%9MlEMP&ZhPy1=WbUA^75kE1{B%NU3^t=0Cp-vD=pf>Gy%p=Kxw zYhxQs!VGkD!Xs3)tBX)0a!?&vhU&;_OvDYS^N(YFJcqt`9d+I<)D3<{bv!Y5G|Ja5~VQG4J9YKCs1_K<&}J5w>J z>*S!8a471$64du*qXsaqkom7iWjP1b^Npw*y@TrE9(&>;^rEezO{8+n#q(>HNBskG zmZ&3oGE`n8dW!BX|DiF7>>*pU{%c4HNg+px%6!t-Q)B&68)h}pM*EzUlWjyrkKI!8 zXEKevP4pzFXxVDYm$ot(8IPwpE#VdN7t)+;Cl3>qzmffw4F)#~gEp3XiUNlT0Sp$XDdvQe_*$zwl-9hNsQ^kDxNh)A-|`b2RmiF0+SAaV9xMhLZcqC*%b(j=V?G z$R)CoEF}LXDv!GS;cqCdx46G&qv;bivFCq2s;d;ZnDh7{@gsUFVo6QuPvw2v(6z>r zedGw4LgLAF@&xHYib+k$qT(#$&wXSr$tHb>$`BGv4v|^pAW_*xwt8yr4~!nKn({rB zVI+b0*n{cTD;P)qN$QhYgyNWI-HJJh6Uoygl|&L>qLNFRk&dLMbf7YZ=#{L}*2VJz z`;)C7$1g~0@;sSCRAR{A$-CU&Y@#xpJVjJ)kPGBFa+RnoCeh?YQjhSX4n}p-=e}LR4mu4J3)IAQeQV9~n(%lV0R&vV=@0HD#2oJceyZ iXYx_Sknp)a6}KDi3#j-kx=vU{XnJzpifP@FLjDiHJRXMt delta 5304 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 diff --git a/filer/locale/fr/LC_MESSAGES/django.po b/filer/locale/fr/LC_MESSAGES/django.po index 58080e380..6ddf2786c 100644 --- a/filer/locale/fr/LC_MESSAGES/django.po +++ b/filer/locale/fr/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: @@ -16,19 +16,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+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/" -"fr/)\n" -"Language: fr\n" +"Language-Team: French (http://app.transifex.com/divio/django-filer/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % " -"1000000 == 0 ? 1 : 2;\n" +"Language: fr\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "Vous n'avez pas la permission d'héberger des fichiers." @@ -37,28 +37,25 @@ msgid "Can't find folder to upload. Please refresh and try again" msgstr "Dossier d'hébergement introuvable, rafraîchissez la page et réessayez." #: admin/clipboardadmin.py:19 -msgid "Can't use this folder, Permission Denied. Please select another folder." -msgstr "" -"Utilisation du dossier impossible : Permissions insuffisantes. Sélectionnez " -"un autre dossier." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." +msgstr "Utilisation du dossier impossible : Permissions insuffisantes. Sélectionnez un autre dossier." -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "Avancé" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "URL canonique" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." -msgstr "" -"Des éléments doivent être sélectionnés pour effectuer les actions. Aucun " -"élément n'a été modifié." +msgstr "Des éléments doivent être sélectionnés pour effectuer les actions. Aucun élément n'a été modifié." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" @@ -66,182 +63,170 @@ msgstr[0] "%(total_count)s sélectionné" msgstr[1] "Tous les %(total_count)s sélectionnés" msgstr[2] "Tous les %(total_count)s sélectionnés" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "Liste du répertoire pour %(folder_name)s" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "0 sur %(cnt)s sélectionné" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "Pas d'action sélectionnée." -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "%(count)d fichiers déplacés avec succès vers le presse-papiers." -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "Déplacer les fichiers sélectionnés vers le presse-papiers" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "Permissions désactivées avec succès pour %(count)d fichiers." -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "Permissions activées avec succès pour %(count)d fichiers." -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "Activer les permissions pour les fichiers sélectionnés." -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "Désactiver les permissions pour les fichiers sélectionnés." -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "%(count)d fichiers et/ou dossiers supprimés avec succès." -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "Impossible de supprimer les fichiers et/ou dossiers." -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "Êtes-vous sûr(e) ?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "Supprimer les fichiers et/ou dossiers" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "Supprimer les fichiers et/ou dossiers sélectionnés" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "Des dossiers nommés %s existent déjà dans la destination sélectionnée" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"%(count)d fichiers et/ou dossiers déplacés avec succès vers le dossier " -"« %(destination)s »." +msgstr "%(count)d fichiers et/ou dossiers déplacés avec succès vers le dossier « %(destination)s »." -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "Déplacer les fichiers et/ou dossiers" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "Déplacer les fichiers et/ou dossiers sélectionnés" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "%(count)d fichiers renommés avec succès." -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "Renommer les fichiers" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"%(count)d fichiers et/dossiers copiés avec succès dans le dossier " -"« %(destination)s »." +msgstr "%(count)d fichiers et/dossiers copiés avec succès dans le dossier « %(destination)s »." -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "Copier les fichiers et/ou dossiers" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "Copier les fichiers et/ou dossiers sélectionnés" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "%(count)d images redimensionnées avec succès." -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "Redimensionner les images" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "Redimensionner les images sélectionnées" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "Suffixe qui sera ajouté au nom des fichiers copiés." -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." -msgstr "" -"Le suffixe doit être une partie de nom de fichier valide, simple et en " -"minuscules, comme « %(valid)s »." +msgstr "Le suffixe doit être une partie de nom de fichier valide, simple et en minuscules, comme « %(valid)s »." -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "La clé de formatage « %(key)s » est inconnue." -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "Format de renommage non valide : %(error)s." -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "option de miniature" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "largeur" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "hauteur" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "rogner" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "agrandir" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." -msgstr "" -"Une option de miniature ou des paramètres de dimensionnement doivent être " -"choisis." - -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "Des paramètres de dimensionnement doivent être choisis." +msgstr "Une option de miniature ou des paramètres de dimensionnement doivent être choisis." #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" @@ -388,9 +373,7 @@ msgstr "Permissions désactivées" msgid "" "Disable any permission checking for this file. File will be publicly " "accessible to anyone." -msgstr "" -"Désactiver la vérification des permissions pour ce fichier. Le fichier sera " -"publiquement accessible à tout le monde." +msgstr "Désactiver la vérification des permissions pour ce fichier. Le fichier sera publiquement accessible à tout le monde." #: models/foldermodels.py:94 msgid "parent" @@ -483,6 +466,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "Au moins une option parmi un utilisateur, un groupe, ou \"tout le monde\" doit être sélectionnée." #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "Tous les dossiers" @@ -501,6 +485,7 @@ msgid "Group: {group}" msgstr "Groupe : {group}" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "Tout le monde" @@ -513,6 +498,7 @@ msgid "Read" msgstr "Lire" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "Ajouter un sous-dossier" @@ -567,6 +553,7 @@ msgid "Show table view" msgstr "Voir la vue en liste" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "Voir la vue avec des miniatures" @@ -634,26 +621,19 @@ msgid "" "Deleting the selected files and/or folders would result in deleting related " "objects, but your account doesn't have permission to delete the following " "types of objects:" -msgstr "" -"Supprimer les fichiers et/ou dossiers sélectionnés devrait provoquer la " -"suppression des objets liés, mais votre compte n'a pas les permissions " -"nécessaires pour supprimer les types d'objets suivants :" +msgstr "Supprimer les fichiers et/ou dossiers sélectionnés devrait provoquer la suppression des objets liés, mais votre compte n'a pas les permissions nécessaires pour supprimer les types d'objets suivants :" #: templates/admin/filer/delete_selected_files_confirmation.html:19 msgid "" "Deleting the selected files and/or folders would require deleting the " "following protected related objects:" -msgstr "" -"Supprimer les fichiers et/ou dossiers provoquera la suppression des objets " -"liés protégés suivants :" +msgstr "Supprimer les fichiers et/ou dossiers provoquera la suppression des objets liés protégés suivants :" #: templates/admin/filer/delete_selected_files_confirmation.html:27 msgid "" "Are you sure you want to delete the selected files and/or folders? All of " "the following objects and their related items will be deleted:" -msgstr "" -"Voulez-vous vraiment supprimer les fichiers et/ou dossiers sélectionnés ? " -"Tous les objets suivants et leurs éléments liés seront supprimés :" +msgstr "Voulez-vous vraiment supprimer les fichiers et/ou dossiers sélectionnés ? Tous les objets suivants et leurs éléments liés seront supprimés :" #: templates/admin/filer/delete_selected_files_confirmation.html:46 #: templates/admin/filer/folder/choose_copy_destination.html:64 @@ -702,11 +682,9 @@ msgstr "Icône du dossier" #: 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." -msgstr "" -"Votre compte n'a pas les permissions nécessaires pour copier tous les " -"fichiers et/ou dossiers sélectionnés." +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." +msgstr "Votre compte n'a pas les permissions nécessaires pour copier tous les fichiers et/ou dossiers sélectionnés." #: templates/admin/filer/folder/choose_copy_destination.html:25 #: templates/admin/filer/folder/choose_copy_destination.html:31 @@ -730,9 +708,7 @@ msgstr "Aucun fichier ou dossier n'est disponible à copier." msgid "" "The following files and/or folders will be copied to a destination folder " "(retaining their tree structure):" -msgstr "" -"Les fichiers et/ou dossiers suivants seront copiés vers un dossier de " -"destination (en conservant leur arborescence) :" +msgstr "Les fichiers et/ou dossiers suivants seront copiés vers un dossier de destination (en conservant leur arborescence) :" #: templates/admin/filer/folder/choose_copy_destination.html:54 #: templates/admin/filer/folder/choose_move_destination.html:64 @@ -752,9 +728,7 @@ msgstr "Il est impossible de copier des fichiers dans le même dossier" #: templates/admin/filer/folder/choose_images_resize_options.html:15 msgid "" "Your account doesn't have permissions to resize all of the selected images." -msgstr "" -"Votre compte na pas les permissions nécessaires pour redimensionner toutes " -"les images sélectionnées." +msgstr "Votre compte na pas les permissions nécessaires pour redimensionner toutes les images sélectionnées." #: templates/admin/filer/folder/choose_images_resize_options.html:18 msgid "There are no images available to resize." @@ -764,36 +738,25 @@ msgstr "Il n'y a aucune image disponible à redimensionner." msgid "The following images will be resized:" msgstr "Les images suivantes seront redimensionnées :" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" -msgstr "" -"Choisissez une option de miniature existante ou entrez des paramètres de " -"redimensionnement :" +msgstr "Choisissez une option de miniature existante ou entrez des paramètres de redimensionnement :" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "Choisissez des paramètres de redimensionnement :" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." -msgstr "" -"Avertissement : Les images seront redimensionnées en place et les originales " -"seront perdues. Faites-en éventuellement une copie préalable afin de les " -"conserver." +msgstr "Avertissement : Les images seront redimensionnées en place et les originales seront perdues. Faites-en éventuellement une copie préalable afin de les conserver." -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "Redimensionner" #: 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." -msgstr "" -"Votre compte n'a pas les permissions nécessaires pour déplacer tous les " -"fichiers et/ou dossiers sélectionnés." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." +msgstr "Votre compte n'a pas les permissions nécessaires pour déplacer tous les fichiers et/ou dossiers sélectionnés." #: templates/admin/filer/folder/choose_move_destination.html:47 msgid "There are no files and/or folders available to move." @@ -803,9 +766,7 @@ msgstr "Il n'y a pas de fichiers et/ou dossiers disponibles à déplacer." msgid "" "The following files and/or folders will be moved to a destination folder " "(retaining their tree structure):" -msgstr "" -"Les fichiers et/ou dossiers suivants seront déplacés vers un dossier de " -"destination (en conservant leur arborescence) :" +msgstr "Les fichiers et/ou dossiers suivants seront déplacés vers un dossier de destination (en conservant leur arborescence) :" #: templates/admin/filer/folder/choose_move_destination.html:73 #: templates/admin/filer/folder/choose_move_destination.html:76 @@ -820,9 +781,7 @@ msgstr "Il est impossible de déplacer des fichiers dans le même dossier" #: templates/admin/filer/folder/choose_rename_format.html:15 msgid "" "Your account doesn't have permissions to rename all of the selected files." -msgstr "" -"Votre compte n'a pas les permissions nécessaires pour renommer tous les " -"fichiers sélectionnés." +msgstr "Votre compte n'a pas les permissions nécessaires pour renommer tous les fichiers sélectionnés." #: templates/admin/filer/folder/choose_rename_format.html:18 msgid "There are no files available to rename." @@ -832,10 +791,7 @@ msgstr "Il n'y a pas de fichiers disponibles à renommer." msgid "" "The following files will be renamed (they will stay in their folders and " "keep original filename, only displayed filename will be changed):" -msgstr "" -"Les fichiers suivants seront renommés (ils resteront dans leurs dossiers et " -"conserveront leur nom de fichier d'origine ; seul le nom affiché sera " -"changé) :" +msgstr "Les fichiers suivants seront renommés (ils resteront dans leurs dossiers et conserveront leur nom de fichier d'origine ; seul le nom affiché sera changé) :" #: templates/admin/filer/folder/choose_rename_format.html:59 msgid "Rename" @@ -992,11 +948,13 @@ msgstr "activé" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "url canonique '%(item_label)s' " #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "Télécharger '%(item_label)s' " @@ -1007,8 +965,7 @@ msgstr "Supprimer le fichier" #: templates/admin/filer/folder/directory_table_list.html:160 #: 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 »" +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_thumbnail_list.html:153 @@ -1059,10 +1016,12 @@ msgstr "Sélectionner les %(total_count)s" #: 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 "Tout sélectionner" #: templates/admin/filer/folder/directory_thumbnail_list.html:77 +#| msgid "Filer" msgid "Files" msgstr "Fichiers" @@ -1129,6 +1088,7 @@ msgstr "Agrandir" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "Le fichier est manquant" @@ -1184,38 +1144,37 @@ msgid "Choose File" msgstr "Sélectionner un fichier" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "Choisissez un dossier" #: validation.py:19 #, python-brace-format msgid "File \"{file_name}\": Upload denied by site security policy" -msgstr "" -"Fichier \"{file_name}\" : Hébergement refusé par la politique de sécurité du " -"site" +msgstr "Fichier \"{file_name}\" : Hébergement refusé par la politique de sécurité du site" #: validation.py:22 #, python-brace-format msgid "File \"{file_name}\": {file_type} upload denied by site security policy" -msgstr "" -"Fichier \"{file_name}\" : hébergement de {file_type} refusé par la politique " -"de sécurité du site" +msgstr "Fichier \"{file_name}\" : hébergement de {file_type} refusé par la politique de sécurité du site" #: validation.py:33 #, python-brace-format msgid "File \"{file_name}\": HTML upload denied by site security policy" -msgstr "" -"Fichier \"{file_name}\" : hébergement HTML refusé par la politique de " -"sécurité du site" +msgstr "Fichier \"{file_name}\" : hébergement HTML refusé par la politique de sécurité du site" #: validation.py:71 #, python-brace-format msgid "" "File \"{file_name}\": Rejected due to potential cross site scripting " "vulnerability" -msgstr "" -"Fichier \"{file_name}\" : Rejeté à cause d'une potentielle vulnérabilité de " -"cross-site scripting" +msgstr "Fichier \"{file_name}\" : Rejeté à cause d'une potentielle vulnérabilité de cross-site scripting" + +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/gl/LC_MESSAGES/django.po b/filer/locale/gl/LC_MESSAGES/django.po index a81d1a3a8..4cbd2447c 100644 --- a/filer/locale/gl/LC_MESSAGES/django.po +++ b/filer/locale/gl/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: @@ -11,18 +11,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+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/" -"language/gl/)\n" -"Language: gl\n" +"Language-Team: Galician (http://app.transifex.com/divio/django-filer/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -31,199 +32,196 @@ 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." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "Avanzado" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." msgstr "" -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" msgstr[0] "%(total_count)s seleccionados" msgstr[1] "Os %(total_count)s seleccionados" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "0 de %(cnt)s seleccionados" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "Ningunha acción seleccionada." -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "Movéronse correctamente %(count)d arquivos ao portapapeis." -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "Mover arquivos seleccionados ao portapapeis." -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "" -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "Non se poden borrar arquivos e/ou carpetas" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "Estás seguro?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "Borrar arquivos e/ou carpetas" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "Mover alquivos e/ou carpetas" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "Mover arquivos e/ou carpetas seleccionados" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "" -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "Copiar arquivos e/ou carpetas" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "Copiar arquivos e/ou carpetas seleccionados" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "" -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "Cambiar o tamaño das imaxes" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "Cambiar o tamaño das imaxes seleccionadas" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "" -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." msgstr "" -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "" -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "Formato para o cambio de nome non válido: %(error)s." -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "opción da miniatura" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "ancho" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "alto" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "recortar" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "ampliar" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "" -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "" - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "" @@ -462,6 +460,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -480,6 +479,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -492,6 +492,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -546,6 +547,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -674,8 +676,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 @@ -730,28 +732,24 @@ msgstr "" msgid "The following images will be resized:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" 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 @@ -942,11 +940,13 @@ msgstr "" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "" @@ -1008,10 +1008,12 @@ 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 "" @@ -1077,6 +1079,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1132,6 +1135,7 @@ msgid "Choose File" msgstr "" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1157,6 +1161,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/he/LC_MESSAGES/django.mo b/filer/locale/he/LC_MESSAGES/django.mo index 850c59e4bf3fae168327507781852a7a3bd06784..a3f72b63eed70f8b4ac54d2016fca9d1b26e5a79 100644 GIT binary patch delta 3385 zcmYk-d2mf<7{~D^wk#5{MWk*kWD&81G_(;KN@zn9Eupc-(p06fgcJ=BtSjz!oCCt?K7#?`nG`B+#Bv(6Zc%`g)? zVm78?F+ObOSv8ehPVB&@cmZSaD)z>|QDaHvBxAE)n1Fpy9TcKEsK5@m2$QiEXX59$ z2UA*_wZU&t1GtPS^luSNLml@--6#v2V-BX^Fw~68u@P2c6fVRhT!C$I4{BhCu^pa4 zt>~Yq>!Vr+C(s%@(T>Nl^l#Zz)bU35gDt3;Y)9Sj5Nf6kn27(PRwAD1XdnU9%(`&U zL~>9A8ibn27}uVP18FZn^;eHxG?g#hiIb>j*MOSAWsJxFP#w19uDUP|GcbUxqK$A) z#6sG$Fbj`hU%ZXVp>z_c086kJ?vG>rwZxY=k&4aeRX6B?Ik*JN@DS=*rZAedxB+!t zhxTUOa1g4)a_27WLi;SH;eG6jX)I?tPDV{+Z364B71+p$CAb5}V&I{m^D&?HNgR&x zJQwoOrlFFu0vqFE)D5dqE3yi;E4DayqE_}J)OGc!`yBPCkf8QGM&V`Wb<~pIaqYXP z8;6ro`h9!UvrR*Fl!Z#N0jLi0P}di__GnaYOhRsD(@_KVs;Q8mwhGBB+lu<(C(Z-N z>RUbPf>ZAN8Q1<9HIOT)tiFltYiq?p1ITb@p(c=x>MtMZ$Fm7kG=r(A3(A~xP#099 z2Cx!&3bq}!boK80kuLE3yxjY@cB-Jnz~q*t4ay`=Wlg9X0daScC_4p8hSG zw}@7t4W?lL`(PgG!YWL~<@hLmh@0>{Ucrjw;C>&I5*%0=_T&6+Y>F3A6Zr+Too``R zjNqpJ{?DYMj&f1EVJK=wqmVwV%C+A^25rYN5&u9vqUQX#83s_>ED2}eI8?{SP!s$X zHNmq^8lFGXuAJ3~CZnF^8swd0>rqR-3w5I-$j44_&_Mq}&FDVv$9Qg{XMY@(D-EdK zas$aryN7(NLwfN2k(bW;M{uHy6Y5|-4n+@nY1!APftcoUz*QQgc2<7UjmpHSZ? zb~k$rYcLlN;{d#irP!~B*$~``HTbLNDrG&*zU0I$R1zJ?2+s5h4x$~+Nm+o(feo0A zU*QzIhxu62J2;V#k(Ztw#82@QzJ$v%gI+_u=)5BCHj&C+)Dku4J*pX}p`K}f)Cvv8 zL>%G1FLy4(R-CUz{eBN>$@jVQM=*-^cNmT5T>E$At?$`wD&&JjlJeSiy-^p8bdE<| zSc-bK^H2lwP#v#E{eBy=c=my7pT;=a7g0I#59+!YGE~2Bhe_K1ov7%GJoiNbs>5Pu zDYCjY5Bb<`4ocE4?*@9oAqf zzKiPMC~77rP;b7As2koub#%wI8}U{Oqx}l;I-$g5tNZtygtG`e;&5UDq2g&~Do+sH z$DSeP5WFpI0imMABfsU%kVHMSMLOr#U+K>r^v3C9qd36-}9{U3}XrVuLH uQN#T8qtc$(M#K^-bBXx6PB9n4>Jnljo7UyEJ=mfyIcaHl-Rbn3G5-Tm6*p1< delta 3460 zcmYk;3rv<(9LMp4a+8~iq9}$S7rB^dUI+!nOXUr(s8JXiq67(Ez{E>$n0QY`RJ@Rx zZK2D?jOI$Ca^}{wa;Y0pW;$)HT5YL0)6~Ad=Q%Xb{6C*_&ig#ixj(pR;i*NQ%c0&o z4XKXkLHz4&%muvEjteOv*qA|>h+&wAeprqjaTWUGR$Py}k$)yS#F$=~g1$Hvdtwg8 zV+B5DjK>@xGn|S~u^T=>9}I7A4F60dm;Trn)u-7=A59VJ{!&y!8&C}$!3b=`SUiVC zcnj+>uY)n2(2w57)4quy6Gz2JRKta+7nNWjmfPPeQ6sO%HrRjx_yNXX6L!X{sE*yn zF4!T|o!Q=~=SQOkFae`!-%KGh6PKVGK5K6{j~Yoc>V-E^BMqkeQP>alqA943%s~E` zIb1Z5a#V*_pa!zdmg_K+@=^4t!5d_P@E=s!m#4Ib!Kel!P$LNE}J&}!S`eFbM zvyMegdA2R*pk6!|b$>Z(jjK=%RiifBUex;!qMkou%STar#B+iSoiQiT=`pf#&2?nI zncJuv+i_TBdt?<%80!8$wtj#ur=dEMiP1O#`DaSFr~{j=)yM!mW)~SXSdVJpW7G&f zLp|`N^=s6K&!akU4OtCy7d3NXk?!xYsOJWurg#XdLt{`gl5Ky_MIW92Ib>SAjG2!s zxM4(;+v6tG)c%0{WPV32NdUt-fMKYaJBCl z&VLMF56wUlPRDfAi?*X?Vh`$pgQ#P3*8c7l>z)#S96)^v?!bJ!hIf#YXD-FL9sCQ2 zP)>?>XSx7A8c{JBPLNrOiMR!I3O+(#JZ;Ngp+?q%^uc&hP&tkZgE3hcg$q$jRgHT7 zAnLds#zMS;YIke`^RE$RGdzuOmUS&^qz$MJ{fyq&o&w(}(-}4O38)v1Ms6{aP#s@} z8c-EB;G3vDkd@@_nH<#8mL)O&Y;d!NivIXEa<937%$B*2{uq<&Hq-~7rkskJ+E-B> zs=<7$$B`J=$Cyz#5ud{CsNcWCR7`)|{i9drA(KJHhd2*!;AqV0OQ&$ZH7124O8F3K zQx$R1i1*dH(Id}}mVfYj7K=P4~qVbfFIZ9?7zJzH!E#E!#o1tZCShau(|TJk-?BbL%~3DVYE&)?*OX*zy4k zqx>GSU(89=G5i&Ezdt)lc0xTDiGi4m>QE}G;Y`$hQ<2Fuvut@Y>hF)KC8N#qKI*~K z_J(gzyS&BL-?#O?ET9_fXpKZINiuSa$wh6}8q|n)qc-bXs3|{z>d-~0^ZyeWHT)au z!JDWlyn~vmAigd=u?Kd+bd1Mos0Nm!W~vhPC9Flg?_E?w4Yqt7y(ljuwh+${9=)h5 zF`HOO@HKTllP{nW`^HJbx$?a8=Xfz{DJlph?Q}M_NhfLuogB84liuK(OXyT6?Iog! zcEk*Q|A&%M+Ca1+)~P_+L#%Rg?q$Iv`PQs9G1Sj2+d?lXEX?;8h~~k-8%C+Gx9M-C8WP`OP?t$RtV$zHiPK z^flb>j-MQ^tuz{h!+W^SBUja&ixvekWVI3 z2_GVsc$V1Ry8Cueh#*D~`Gk^=+E^#&{`b3%ds9F&vZwiQRC8UkYIi#Iu{949BN|haE(ZSx2E\n" -"Language-Team: Hebrew (http://app.transifex.com/divio/django-filer/language/" -"he/)\n" -"Language: he\n" +"Language-Team: Hebrew (http://app.transifex.com/divio/django-filer/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % " -"1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" +"Language: he\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -30,24 +30,25 @@ 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." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "מתקדם" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." msgstr "יש לבחור פריטים על מנת לבצע עליהם פעולות. לא בוצעו פעולות." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" @@ -56,175 +57,171 @@ msgstr[1] "כל ה-%(total_count)s נבחרו" msgstr[2] "כל ה-%(total_count)s נבחרו" msgstr[3] "כל ה-%(total_count)s נבחרו" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "0 מתוך %(cnt)s נבחרו" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "לא נבחרה פעולה." -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "הועברו בהצלחה %(count)d קבצים ללוח" -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "העבר קבצים שנבחרו ללוח" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "בוטלו בהצלחה הרשאות עבור %(count)d קבצים." -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "אופשרו בהצלחה הרשאות עבור %(count)d קבצים." -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "אופשרו הרשאות עבור קבצים בחורים" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "בוטלו הרשאות עבור קבצים בחורים" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "נמחקו בהצלחה %(count)d קבצים ו/או תיקיות." -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "לא ניתן למחוק קבצים ו/או תיקיות" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "האם את/ה בטוח/ה?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "מחק קבצים ו/או תיקיות" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "מחק קבצים ו/או תיקיות בחורים" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "הועברו בהצלחה %(count)d קבצים ו/או תיקיות לתיקיה '%(destination)s'." -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "העבר קבצים ו/או תיקיות" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "העבר קבצים ו/או תיקיות בחורים" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "שונו בהצלחה שמותיהם של %(count)d קבצים." -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "שנה שמות קבצים" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "הועתקו בהצלחה %(count)d קבצים ו/או תיקיות לתיקיה '%(destination)s'." -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "העתק קבצים ו/או תיקיות" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "העתק קבצים ו/או תיקיות בחורים" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "שונה בהצלחה גודלם של %(count)d תמונות." -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "שנה גודל תמונות" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "שנה גודל תמונות בחורות" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "סיומת אשר תתווסף לשמות קבצים שהועתקו." -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." msgstr "על הסיומת להיות תקינה, פשוטה ובאותיות קטנות, כגון \"%(valid)s\"." -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "ערך מפתח תבנית שינוי השם \"%(key)s\". אינו חוקי." -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "תבנית שינוי שם לא תקינה: %(error)s." -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "אפשרות תמונה ממוזערת" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "רוחב" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "גובה" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "חיתוך" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "הגדל" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "עליך לבחור אפשרות תמונה ממוזערת או פרמטרי שינוי גודל." -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "יש לבחור פרמטרי שינוי גודל." - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "מיקום נושא" @@ -463,6 +460,7 @@ 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,6 +479,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -493,6 +492,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -547,6 +547,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -614,25 +615,19 @@ msgid "" "Deleting the selected files and/or folders would result in deleting related " "objects, but your account doesn't have permission to delete the following " "types of objects:" -msgstr "" -"עבור מחיקת הקבצים ו/או התיקיות הבחורים יש צורך למחוק אובייקטים מקושרים, אך " -"לחשבונך אין הרשאות למחוק אובייקטים מהסוגים הבאים:" +msgstr "עבור מחיקת הקבצים ו/או התיקיות הבחורים יש צורך למחוק אובייקטים מקושרים, אך לחשבונך אין הרשאות למחוק אובייקטים מהסוגים הבאים:" #: templates/admin/filer/delete_selected_files_confirmation.html:19 msgid "" "Deleting the selected files and/or folders would require deleting the " "following protected related objects:" -msgstr "" -"עבור מחיקת הקבצים ו/או התיקיות הבחורים יש צורך למחוק את האובייקטים המוגנים " -"הבאים:" +msgstr "עבור מחיקת הקבצים ו/או התיקיות הבחורים יש צורך למחוק את האובייקטים המוגנים הבאים:" #: templates/admin/filer/delete_selected_files_confirmation.html:27 msgid "" "Are you sure you want to delete the selected files and/or folders? All of " "the following objects and their related items will be deleted:" -msgstr "" -"האם את/ה בטוח/ה שברצונך למחוק את הקבצים ו/או התיקיות הבחורים? כל הפריטים " -"המקושרים יימחקו:" +msgstr "האם את/ה בטוח/ה שברצונך למחוק את הקבצים ו/או התיקיות הבחורים? כל הפריטים המקושרים יימחקו:" #: templates/admin/filer/delete_selected_files_confirmation.html:46 #: templates/admin/filer/folder/choose_copy_destination.html:64 @@ -681,8 +676,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 @@ -707,8 +702,7 @@ msgstr "אין קבצים ו/או תיקיות זמינים להעתקה." msgid "" "The following files and/or folders will be copied to a destination folder " "(retaining their tree structure):" -msgstr "" -"הקבצים ו/או התיקיות הבאים יועתקו לתיקיית יעד (תוך שמירה על מבנה העץ שלהם):" +msgstr "הקבצים ו/או התיקיות הבאים יועתקו לתיקיית יעד (תוך שמירה על מבנה העץ שלהם):" #: templates/admin/filer/folder/choose_copy_destination.html:54 #: templates/admin/filer/folder/choose_move_destination.html:64 @@ -738,30 +732,24 @@ msgstr "אין תמונות זמינות לשינוי גודלן." msgid "The following images will be resized:" msgstr "התמונות הבאות ישונה גודלן:" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" msgstr "בחר אפשרות תמונה ממוזערת קיימת או הזן פרמטרי שינוי גודל:" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "בחר פרמטרי שינוי גודל:" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." -msgstr "" -"הזהרה: התמונות ישונה גודלן במקום והמקוריות יאבדו. אולי ראשית עשה/י העתק שלהם " -"כדי לשמור על המקויות." +msgstr "הזהרה: התמונות ישונה גודלן במקום והמקוריות יאבדו. אולי ראשית עשה/י העתק שלהם כדי לשמור על המקויות." -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" 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 @@ -772,8 +760,7 @@ msgstr "אין קבצים ו/או תיקיות זמינים להעברה." msgid "" "The following files and/or folders will be moved to a destination folder " "(retaining their tree structure):" -msgstr "" -"הקבצים ו/או התיקיות הבאים יועברו לתיקיית יעד (תוך שמירה על מבנה העץ שלהם):" +msgstr "הקבצים ו/או התיקיות הבאים יועברו לתיקיית יעד (תוך שמירה על מבנה העץ שלהם):" #: templates/admin/filer/folder/choose_move_destination.html:73 #: templates/admin/filer/folder/choose_move_destination.html:76 @@ -798,9 +785,7 @@ msgstr "אין קבצים זמינים לשינוי שמם." msgid "" "The following files will be renamed (they will stay in their folders and " "keep original filename, only displayed filename will be changed):" -msgstr "" -"הקבצים הבאים ישונו שמותיהם (הם יישארו בתיקיות הנוכחיות שלהם ושמם המקורי " -"יישאר - רק שמות התצוגה שלהם ישונו):" +msgstr "הקבצים הבאים ישונו שמותיהם (הם יישארו בתיקיות הנוכחיות שלהם ושמם המקורי יישאר - רק שמות התצוגה שלהם ישונו):" #: templates/admin/filer/folder/choose_rename_format.html:59 msgid "Rename" @@ -959,11 +944,13 @@ msgstr "מאופשר" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "" @@ -1025,10 +1012,12 @@ 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 "" @@ -1096,6 +1085,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1151,6 +1141,7 @@ msgid "Choose File" msgstr "" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1176,6 +1167,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/hr/LC_MESSAGES/django.mo b/filer/locale/hr/LC_MESSAGES/django.mo index 3c97247999922964c323d4038b86726ae91ae7e4..317a0772680201b79ada8b19844f86e4b20b784f 100644 GIT binary patch delta 3401 zcmYk;3rv<(9LMn^aS;%d7ZAaUi+~^^D1s&mWL{82h4PZ7l8Py6-b(XAuQwD474gz5 zwl!yVbJ^;h+C^EHO#^MwV!D@`c<=7p)SdaC{pNWbzCIu5Q7)N6w zPQY|rf{*Z;X(Ch1jguIJ?bs7LaWDo_P+JO+wwV%)$FZmi=AkOsihXexrs8p|!LRWx z%!V@F`4>JIhh%_0#)$^`@lt1k1nA;*n#SCDBVcHfv69aqZ(3){Fymi z)R9%F2CYMNq|ugrSVH+d^s2&kGClAPsvN*un!`|358^Nm2caq)hkC9IbFdN_O|#Xy zAE!`$1BYTK7GNd|NNcGIC*z@5#y^+LZ`{xn^rp6S9EtkC0xU#7F2xSioX(~-4R{{) zUPT{cvTz-$!eiDe*q?F)!LPkUuVk=sI_qbsnU2`$T%%V7OXjktTXd1>cMN) z8_4LJcGUAhY+n7|16B5*8WNAmn1=kB@m$n^YHJOu11pgFyk;{QeW)4L10U*zqt-W3 zFPuO%;4Cs5<`Qb;+U@WEqTY*q)E(kzRD+UHBa)5!Js(xy2=sSj{!7Scv2`Z8C)}7M zcM4{qDy&8|Y!mLrI@Cx-)6HB=Lk;zGOv5T1gga1+?-W*G8|phb>|ssaaLm*GFD1jy zGn-H?Z9@Kxk4qMQYVZGU?|0by9!{Or{9c4D_yMw!%%oKJ1e}j*z)n=d-beNPGHQ+e zgkJUJI+=95iyE>-p4Mv4Lao*u%)n8|^qWPlfuj(Xub@@Habz8X@98nR+k52s)VR-@L!a$BxP&KlE%)p#6L zQ8=yFqK>s@AUoU?W-$JYnwiE8op9?h824FyIGpn9s1IL3jo2;J`EcLz@sUvrk76XggZjWn$nkBy!$AB4 zRY5zdL4TvxM(_}~qA=7PN855bvhGX{>iKEt!75b4*Esi?|D9yiqh{3V_Mz6mDSQ8{ z^$S!3zCxzeT(;gvH6)XXS4G*V4h*+WMRjm7s^=?F&uzd!?f*J5QP_amRJ!w^ zesBE+RncwK$lSqjjATW5Fab5>*{BK&P*b*!*iDQhw5#;(dBh6Bs|xk-972gvby6`` zEhw#tRRo8md5KUOO|Tx#NTQk0Ff#~FYUHYw|F~N;hcSsz&!-U@VWoN^KQ2_+W3^B+;=pP+sxY1n4DS?A!0 zCZ9oQ9Vjg%UM4imFA|kR1)+7o#`!-n;?8#7h@0)*Jvg0MY0HbToX|F3Z|iq{TI5`f zc^b7PAEXAG(LvSU<`1B@)icB>qKZ)JOKc(X3I3UI{$V?W+CfS&F3wI<*82jNF~m%j zNKM34C+A+aK`rrQmwQXdYXu*)_v-LDn|}q1h!Wy?g7e6XCDhS<#Dlb*%n03{NT!9* z%HBmNEpRbgaS{<>%X=}Gh$kix&k{;&iJeZ)J${#y&mx8q+S;ka4B}NnNhf9k@sysL wuREkzqSVQ`+v^BeM4W$c#MN&8%$_+x{*5tFk^VC&{e%56nK#1!1A(hBYybcN delta 3454 zcmYk;X;76_9LMp4+{+q^EV8(v0$mnSN&!X1#2o^$M6<|5QBe~T#U=GBx#E_Rnp@W7 zj3$;gcP4C%#?jPXIE|SzSu^U4)mW*On)b$N`u^^7Y&>)S&*z+TpXZ+SIq>DIN44H- zF|Hkkw4dlgxZK8khqptykP0G<>5l_29_ug|*I-B7j3Iac*W+R2V{#*n>4`-cgw@y` zYcU-+U{_fnhGVP!z6~`4SFr>Bf?@b8_QLxZ zhY2xG2eYvg<&mfvu0lP(6kW7$n#lCPbvO|}LNy#fH#O1_)QBQbBhEmLxEND#2I{_b zsE%wxK4upe4Wt#-p-)i*IcLk4&^wfhn`G3Whr6D_KB)2_)LIs!8mvH#WC14NMpVNe zqV7M8eef7E%jUZEFD$1Vzy|7v6_|%>ko{{OqBg0Ug$~3h)bGWjW+WN)wq#lRdC6#s2csS=LH*DKWaFCY z7={b1x?fY?Y|C3wKfDKZe=BN@Pof$+kJ@Y(QNMo$_52N6_TD6;O>!6My!i+HJ?7

8P6)Db%_W^1N+E5LiMs@55+>AF+9j|AYeX$8O)jmwacFe(_P@6A?SE&LAVy52z zO=R?gZKyRoh0o$eoz#f?>{kxoO6Xdb5HO4QUH!a($)rnC(`cox|<<_~0*OgIlQSd)P%Sb`eh zTP+7lFB$fa>uW)C2R7Tg^UHN6w&T>^yRGnC~$d@1XX? z16z)!mz+T+5o@qFs+|@O^RL~#p9*;#IReZX)WLKWnMD(u;hcE+7(}_;T8Raet56N> zM9o|)>bz*T-^XVWU%H2=3^K;ZU7F$LR^OG=m{KycX23s3;Q@zwhXnqSL0{67d3+MZ0T3=2$o?e z>r#S~Fa-}{7@oxdyoheRgxb7UFbZ#@{5rbU3du9z)@6(K1c15uP_9^#u)t8mVZY7-~T&g^gt{NqZ_)RdY+4_ zAAuUtIMgn$MD2kFTffx064imV$g-OjYdfkVH&MTL3pId;Qty8x3#bvMqeh;Cy0HK? zvSRFrqfxKdWYkhEMosNj>j6|l$51ol!*INS8rT)oOx!}X_cwaAW=n{z#ArgBNWGg% zyg_gnI@6CzOqM?l<*E%fj%Xmd6WW+c!wJ2vgNb(ty|N6}pSEzVB8r`&*X$+JgV4w) z5*ndWGtq%quL4OY*$RKoxy-Zq9Z%F%ljlV-@7lW8aiPr%Ezdwgv!OIb|NlKtW-g(l zRf&ynQj{T$aPUvtD>gq9;|Q&>_JPt2VkHqvEFxYcULZ0FUY!4v&Xjy&InktAt^eD^ zBw{|HG@B?VmJx3fkJBuh(ZTWB<4W9Q^Qq{u`JJdeqgQtbQAsFi1HVP&5xod+1()rF zHkwkrga1`iwviY~Ojd!kni%iTIhQq{K}>j}ZVq{E;9a(E9oE|XW-KC}BkJ{N4w+HJ zDx!sWoYs=j$yG}1BLazygi?)zfA^P>kFe!!m`fxRCB!sBX)&?EpL0&jI`Y{>f$q|~ zokqMw>?V{35uJ%)#B@Tb6EW7GbN)u`Cm(Ig3oy~wG2&W)dsbatLyhmp$l>mmB}rX; e32}*$LFLn@R@cn;h4m~AY8jo=-#5YYTljzQg*u`D diff --git a/filer/locale/hr/LC_MESSAGES/django.po b/filer/locale/hr/LC_MESSAGES/django.po index e9804dd94..dd0bc2692 100644 --- a/filer/locale/hr/LC_MESSAGES/django.po +++ b/filer/locale/hr/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: @@ -11,19 +11,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+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/" -"language/hr/)\n" -"Language: hr\n" +"Language-Team: Croatian (http://app.transifex.com/divio/django-filer/language/hr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -32,26 +32,25 @@ 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." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "Napredno" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." -msgstr "" -"Stavke moraju biti odabrane kako bi se obavila akcija. Nijedna stavka nije " -"promijenjena." +msgstr "Stavke moraju biti odabrane kako bi se obavila akcija. Nijedna stavka nije promijenjena." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" @@ -59,180 +58,170 @@ msgstr[0] "%(total_count)s odabrana" msgstr[1] "%(total_count)s odabrano" msgstr[2] "Svih %(total_count)s odabrano" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "Popis direktorija za %(folder_name)s" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "0 od %(cnt)s odabrano" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "Nije izabrana akcija." -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "Uspješno premješteno %(count)d datoteka u spremnik." -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "Premjesti odabrane datoteke u spremnik" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "Uspješno onemogućene ovlasti za %(count)d datoteka." -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "Uspješno omogućene ovlasti za %(count)d datoteka." -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "Omogući ovlasti za odabrane datoteke" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "Onemogući ovlasti za odabrane datoteke" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "Uspješno obrisano %(count)d datoteka i/ili direktorija." -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "Nije moguće obrisati datoteke i/ili direktorije" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "Jeste li sigurni?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "Obriši datoteke i/ili direktorije" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "Obriši odabrane datoteke i/ili direktorije" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"Uspješno premješteno %(count)d datoteka i/ili direktorija u direktorij " -"'%(destination)s'." +msgstr "Uspješno premješteno %(count)d datoteka i/ili direktorija u direktorij '%(destination)s'." -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "Premjesti datoteke i/ili direktorije" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "Premjesti odabrane datoteke i/ili direktorije" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "Uspješno preimenovano %(count)d datoteka." -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "Preimenuj datoteke" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"Uspješno kopirano %(count)d datoteka i/ili direktorija u direktorij " -"'%(destination)s'." +msgstr "Uspješno kopirano %(count)d datoteka i/ili direktorija u direktorij '%(destination)s'." -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "Kopiraj datoteke i/ili direktorije" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "Kopiraj odabrane datoteke i/ili direktorije" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "Uspješno promijenjena veličina za %(count)d slika." -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "Promijeni veličinu slika" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "Promijeni veličinu odabranih slika" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "Sufiks koji će biti dodan imenima kopiranih datoteka." -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." -msgstr "" -"Sufiks treba biti jednostavan i upisan malim slovima poput \"%(valid)s\"." +msgstr "Sufiks treba biti jednostavan i upisan malim slovima poput \"%(valid)s\"." -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "Nepoznata vrijednost formata ključa za preimenovanje \"%(key)s\"." -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "Neispravan format za premenovanje: %(error)s." -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "opcija sličica" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "širina" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "visina" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "obreži" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "povećaj veličinu" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." -msgstr "" -"Opcija sličica ili parametri za promjenu veličine moraju biti izabrani." - -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "Parametri za promjenu veličine moraju biti izabrani." +msgstr "Opcija sličica ili parametri za promjenu veličine moraju biti izabrani." #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" @@ -472,6 +461,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -490,6 +480,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -502,6 +493,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -556,6 +548,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -623,25 +616,19 @@ msgid "" "Deleting the selected files and/or folders would result in deleting related " "objects, but your account doesn't have permission to delete the following " "types of objects:" -msgstr "" -"Brisanje odabranih objekata bi rezultiralo brisanjem povezanih objekata, ali " -"Vaš korisnički račun nema ovlasti za brisanje slijedećih tipova objekata:" +msgstr "Brisanje odabranih objekata bi rezultiralo brisanjem povezanih objekata, ali Vaš korisnički račun nema ovlasti za brisanje slijedećih tipova objekata:" #: templates/admin/filer/delete_selected_files_confirmation.html:19 msgid "" "Deleting the selected files and/or folders would require deleting the " "following protected related objects:" -msgstr "" -"Brisanje odabranih datoteka i/ili direktorija bi zahtijevalo brisanje " -"slijedećih zaštičenih povezanih objekata:" +msgstr "Brisanje odabranih datoteka i/ili direktorija bi zahtijevalo brisanje slijedećih zaštičenih povezanih objekata:" #: templates/admin/filer/delete_selected_files_confirmation.html:27 msgid "" "Are you sure you want to delete the selected files and/or folders? All of " "the following objects and their related items will be deleted:" -msgstr "" -"Jeste li sigurni kako želite obrisati odabrane datoteke i/ili direktorije? " -"Svi navedeni objekti i s njima povezane stavke biti će obrisani:" +msgstr "Jeste li sigurni kako želite obrisati odabrane datoteke i/ili direktorije? Svi navedeni objekti i s njima povezane stavke biti će obrisani:" #: templates/admin/filer/delete_selected_files_confirmation.html:46 #: templates/admin/filer/folder/choose_copy_destination.html:64 @@ -690,11 +677,9 @@ msgstr "Ikona direktorija" #: 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." -msgstr "" -"Vaš korisnički račun nema ovlasti za kopiranje odabranih datoteka i/ili " -"direktorija." +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." +msgstr "Vaš korisnički račun nema ovlasti za kopiranje odabranih datoteka i/ili direktorija." #: templates/admin/filer/folder/choose_copy_destination.html:25 #: templates/admin/filer/folder/choose_copy_destination.html:31 @@ -718,9 +703,7 @@ msgstr "Nema dostupnih datoteka i/ili direktorija za kopiranje." msgid "" "The following files and/or folders will be copied to a destination folder " "(retaining their tree structure):" -msgstr "" -"Slijedeće datoteke i/ili direktoriji biti će kopirani u odredišni direktorij " -"(zadržavajući postojeću strukturu):" +msgstr "Slijedeće datoteke i/ili direktoriji biti će kopirani u odredišni direktorij (zadržavajući postojeću strukturu):" #: templates/admin/filer/folder/choose_copy_destination.html:54 #: templates/admin/filer/folder/choose_move_destination.html:64 @@ -740,8 +723,7 @@ msgstr "" #: templates/admin/filer/folder/choose_images_resize_options.html:15 msgid "" "Your account doesn't have permissions to resize all of the selected images." -msgstr "" -"Vaš korisnički račun nema ovlasti za promjenu veličina odabranih slika." +msgstr "Vaš korisnički račun nema ovlasti za promjenu veličina odabranih slika." #: templates/admin/filer/folder/choose_images_resize_options.html:18 msgid "There are no images available to resize." @@ -751,36 +733,25 @@ msgstr "Nema dostupnih slika kojima bi se promijenila veličina." msgid "The following images will be resized:" msgstr "Slijedećim slikama biti će promijenjena veličina:" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" -msgstr "" -"Izaberite postojeću opciju sličica ili unesite parametre za promjenu " -"veličine:" - -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "Odaberite parametre za promjenu veličine:" +msgstr "Izaberite postojeću opciju sličica ili unesite parametre za promjenu veličine:" -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." -msgstr "" -"Pažnja: Slikama će biti promijenjena veličina, a originali će biti prepisani " -"sa slikama s novom veličinom. Preporuča se prvo kopirati originalne slike " -"prije promjene veličine." +msgstr "Pažnja: Slikama će biti promijenjena veličina, a originali će biti prepisani sa slikama s novom veličinom. Preporuča se prvo kopirati originalne slike prije promjene veličine." -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "Promjeni veličinu" #: 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." -msgstr "" -"Vaš korisnički račun nema ovlasti za premještaj svih odabranih datoteka i/" -"ili direktorija." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." +msgstr "Vaš korisnički račun nema ovlasti za premještaj svih odabranih datoteka i/ili direktorija." #: templates/admin/filer/folder/choose_move_destination.html:47 msgid "There are no files and/or folders available to move." @@ -790,9 +761,7 @@ msgstr "Nema dostupnih datoteka i/ili direktorija za premještaj." msgid "" "The following files and/or folders will be moved to a destination folder " "(retaining their tree structure):" -msgstr "" -"Slijedeće datoteke i/ili direktoriji biti će premješteni u odredišni " -"direktorij (zadržavajući postojeću strukturu):" +msgstr "Slijedeće datoteke i/ili direktoriji biti će premješteni u odredišni direktorij (zadržavajući postojeću strukturu):" #: templates/admin/filer/folder/choose_move_destination.html:73 #: templates/admin/filer/folder/choose_move_destination.html:76 @@ -807,8 +776,7 @@ msgstr "" #: templates/admin/filer/folder/choose_rename_format.html:15 msgid "" "Your account doesn't have permissions to rename all of the selected files." -msgstr "" -"Vaš korisnički račun nema ovlasti za preimenovanje svih odabranih datoteka." +msgstr "Vaš korisnički račun nema ovlasti za preimenovanje svih odabranih datoteka." #: templates/admin/filer/folder/choose_rename_format.html:18 msgid "There are no files available to rename." @@ -818,9 +786,7 @@ msgstr "Nema dostupnih datoteka i/ili direktorija za preimenovanje." msgid "" "The following files will be renamed (they will stay in their folders and " "keep original filename, only displayed filename will be changed):" -msgstr "" -"Slijedeće datoteke če biti preimenovane (ostati će u svojim direktorijima i " -"zadržati ime datoteke, samo će prikazano ime biti promijenjeno):" +msgstr "Slijedeće datoteke če biti preimenovane (ostati će u svojim direktorijima i zadržati ime datoteke, samo će prikazano ime biti promijenjeno):" #: templates/admin/filer/folder/choose_rename_format.html:59 msgid "Rename" @@ -977,11 +943,13 @@ msgstr "omogućeno" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "" @@ -1043,10 +1011,12 @@ 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 "" @@ -1113,6 +1083,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1168,6 +1139,7 @@ msgid "Choose File" msgstr "" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1193,6 +1165,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/hu/LC_MESSAGES/django.mo b/filer/locale/hu/LC_MESSAGES/django.mo index 6dca5114dad3923446c6a63959113337597b0eef..2fc4ccde717b6c1ede80df0a6bc0168ef0f8986b 100644 GIT binary patch delta 4427 zcmY+`3v|w90LSrX?47+BGqZ~g!)zFu%P?VYEYe#;8grS#T#FJyF0Y!)Hn*0jxsz;D zHZ@5ha?8@;tPY){PCDuwmrms5Qqtx7d;ibQ(R2L%pXd3%@BjHf|L6Za@8mBDsK^cQ z{SX$o)=*B9STZxnnEC<6d{tLxjR|gGObc{l0=B~x9Dd1=G-jE?k85aVaL@I_!u? z(T%rI-}?sxF)-YiXmn!>?r&OB(a8Iuo+JZfFcaf(I!?iLSd0OTioQ%Kj=)2xfk#C+ z9j9S3?cvxI3$Qkpq6WGbTj6nZbANMnz8HcUU}w~mKa4eS9;)Mo z*b?)RF`C_|Cp?ODWxhwf+TT(Aghn|t5rw|yoM=KtrlCeY#`*>hqkRlDz!-YfT4;`` zn2s9oLe#rmf_mp`P*c4THIv(rf94PeUH>h{;k{_)Utf%A>^w;vYHE`(6w^>Q9)ud; zP}CF7LCw%g+b%*6?J|4*25LZmp$6z?6k5-rsCE<7=kYPjzow`YCzu^G05za7_KOpc zKFm~n2=h<_+mHHQrEQlp2Q5ikD6((kEO1~Fdq|eJF0_9 zd>EryK^l1`K8Isbi}4H=U}`hFm{6<#8tTRoagJV0q`e4RV+m?NRj3E>1v9T2c?jys zx}&CO0P4nr?D=fe>YZlKFT@43mm^!-xOuTuO$=(y^s=tS$7%nHUhK|FrD_&qJ?;Nu zD%z*}Q1AK(*2I&jfqaP?SQTnH!#gn15d`<=&^b+Q2T$V zJuwn>qY0=BX8XTj%rewsTY(zD+o)}{4K?sm48#iC-j8~aqsVeFr%(^_Gis)OL4MQB z-{|80CX@xB3nEa9F&1?}XVidtpbNeB{9x38vQSf=gDe-b6a#UGwG?%I8LHpIr~#Zu z7hXZ1p6EIiU3k}eA9Z0sf^%UQY8SLYO=&vn^C74Xb5Pg6jCvLGPy@_I&D2`^`6hJH z-j15#k_6_zAb{<}30|M+%Mz6n(SyrTPxuuE;dQKuw^2{@C;ETU+VERII|?;`o!ANY zq8l%x`n`!-?2S0EfsCgu^UuSYXE>3DOHe;BC-8Z^fWg>5$(iCo$SE@oyI~RP234p5 zerLUey5Uvqh#~Eq8A(I+=SA&;r+rkCsm#V{Sb|j;+1|O}DvqOl8+F6s9h~3tLd>9D zhWefO8};O=4>?oYANBoVSO-^QUEF|r1tnM;ePvYQsCRL4_M1Db=n!D39rRj2{&L%J{*kjXT4=|qb&74`kzs8{?L*46&crlO9g zpcdOK)Z%yx>)}4s>OX;A{1N$+Z`$z~vJYxNS*VV4P}j{xEz&%U$1SJ<9!Jge6%5w? z|BZ^K_D|HiY{6fOa2$v+`Xg{Yaij9TRNSrBTc z;3&*SUk@suQqhfW<0QOq9p9ZjO#2M#m1Lzl?|L!n#+#94V!p;WtU+g5)h%&2_Cxi% z74`jMY=+;VX6&yX%)g$r7LOf`v8Z-ej6^T4!*TZWd&pl-6W)^rh#jrDm`?i~_QS@# zoF^TFjcMnjZn(p`2el>+_G13^EYq?+;wI|z`=|j0_IA$4q83vk>Rorl zQ1qZ~G#JA$8+HAQ*Z}9C)G24$fkIyn{_J=n-eC;!y)j z#|ZSIt{aPb1v61ImW!I9LTrSaFaRGT&yhvs6S9Qt)Bb;oii&Qgj`otVOd+Gl z9CCoDj3nA(8qhAHQbJA>4^b&5Z;}tyc%U?;ewchrqPV|*nqI+`WGYcuKUk-;c{wn`xL$;>ByutB( zTOW#V+4^|=jObN8Vb6`gJ%pclvzZJd6G$m3ApCrokBCZNlHsrU4|;y*cV7K{(W23B!3uJeq?41RF{v)<6wGQMWn4y*ZW^hV=!4x){r4Y2CkS|Ft*-Byv>(9S)z+YbE7)!M4qMhgWpEsi&{&&<$ zS7}eSk++GLRF^(frjeIPqCHuLTgU?27On^C$EhD7+Lpe24j+)+WD`;8Pv(&d@;d2C zc9L!+o>Z4tsSG4F$cE~Z7;Njua3N_+v{g@$Z1O2lIjH>~Lgi61NoOdt$wcxwSxXj^ zL!>6@OjKr)`J^XlP3n*|vXmr|b|i(Uyhm2~YtG>d=tttnxav8ZMWYQ-X-PKvYtDZp l{MCwH4d&OV_@?3hS`}q6^+GEyCuO^_;vZ$coib&vw8j>ujxZ_qBxskhw5|UaJJ~N*SE{Wul<(gZm zZDeX1S>}>TqEne+He-uUI%QdtWmf<1-DBgOzV|!lzIX3g?l~8$c+P8)+skz^#CxUT zs3K8hp06=sUdCLjqqD}O2OHB2Gq4qo!%nyu!|+4o5_1my@FMb``GJpn@g^=ruMlGb zu@rT`HOO@?bAUoLCq6~H+JiLP2aVW#54RZ@0#h`F!0C}j6 zm0>&FiB0eV2H-7JM|~rVX-WGgoPv7z0IG+Xs1Ec;jd&=w#L=h@x=}N*6l-A>>c-XB z9BYt1ntxFp32i_dn237BJyG`=gDy=)9)+e@U@b%Syu$h&4x=8%-PFOUs2MB5WL$;n za5d@~pF=(S?@{;v2{n^9kpE0jBj@_KM$CT7pNQ5 zAZ?gS*cNZ2I+(z`>UXKAdUtGt58*&`VG^Fk&gjhw*DgwNQOKfDh???4sAv5Pw!#Qj zj&6{ODYy(Zf)h9e&tV>Rk7jG(>!|CKW1L+u8rAS(>miJ#{yVltS7YW=J<3Flpaj+P zxu}usMvc4@)$kE}{w!)0e{0X*z!K`3M(zLE$SJcNwRYaN2Czc=QXhl;wEuTg;5+jt z*2Sn6&TfcDJ@Za@52m0xl7{M7CTfulv*z0GC!-$e`p zQ;*(!anjbSQ4Q6gF1Uu?_%~{Cc`?uGKp<*6g`*m3g8E%+TTehA>RpiKV!ELQl7qpt zZ*nQ{(lgW12i?}isKr=@x?l&YLvPsc583laQ5~v6P5F6b`IuX%jx=oL*aUTbbJTs4 z(4}Y9kAe@5M2%=H>cV_$A?m`Js0$aMcENholu&j?mM9k^H157^1)6rdyrW(pJ5vQg?iC+jb}D+AacqaM9tJ?)Kp)$=j-0b zbEck*YN!y^(Wk9*Q4KFb{c+muqEMT{H>ew4MeT;)upLGuFe>bgXK*j-_lpu4J+4GG z_$TsiG40zr?~^Rl`(hnx2F_y;UPk@?57d2JZE2+rg%s4I=#2rGg)x|en$lwIh;vcD zdlz+sgUHh{$1wtbL5x;h4l|?hVRR#7Fg2)|3*y1c6x8<< z(WNPRpMqBX_o#a9``IGc5xe4Y)G9uSlkluHC7FdteGBTwiTqg4{83cHPax~e?7$fO z5m-cz0L#9Vrz=4IG>FAz8a(OM;wfP z-5hhU2lbtpiPupB?UKs;H=-~))oHNUIv@3hT7h~Lt5FSXKuz_2)Y>>^zdwr+)W5Rl ze?_gS+o)&mm*%`d!%+i^#SrZ1qM!ycF&MK@Yath-(T$p+t*EuI%en{EkxE-Xh1!;% zqZ+6|-S;xa;LrB^dg)HX;i#E)#Zl0WQ&AW6LXBh~Y6KIpJ{F>8#Et4uDQW~|7>8Ss z9ceyA{mv`H>4+~jpdNy)Fdj9~A;=86%s2{axB%6WS*RP#L5Ky-wY`Q%kqIM{if z$Fsy!b3UGh=WTr=YPNLDB+ES|W1d0H&Yhzt1-p=LOZJj9@+5hh#E?Ej&wLhn zgy@KNFz?_eWFBFcnU@IL-g6w|^N>^YEK(I`+xkH)Aw@+0|Ka(6H~XDuVN_AcBJpGt z;jfe#PZknivW+B>)kNrIb;M`Mbb%k(uAxeWu%noDA4!^l0dSK944oT zj@KRj|KzP{CX)eVr#s#j*=B5m=uy8M8`(5i{z4zNy`eK;Ad+2Oe!cS8efrLzsj%tT1-?$hsdyc0ojK) i, 2016-2017\n" -"Language-Team: Hungarian (http://app.transifex.com/divio/django-filer/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://app.transifex.com/divio/django-filer/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -30,207 +31,195 @@ 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." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "Haladó" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "egyedi URL" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." -msgstr "" -"Az akciók végrehajtásához egy vagy több elemet ki kell választani. Egyetlen " -"elem sem változott." +msgstr "Az akciók végrehajtásához egy vagy több elemet ki kell választani. Egyetlen elem sem változott." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" msgstr[0] "%(total_count)s kiválasztva" msgstr[1] "Mind (%(total_count)s) kiválasztva" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "0 kiválasztva a %(cnt)s elemből" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "Nincs akció megadva" -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "%(count)d fájl a vágólapra mozgatva." -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "Kiválasztott fájlok vágólapra mozgatása" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "%(count)d fájl jogosultságai kikapcsolva." -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "%(count)d fájl jogosultságai bekapcsolva." -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "Jogosultságok bekapcsolása a kiválasztott fájlokhoz" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "Jogosultságok kikapcsolása a kiválasztott fájlokhoz" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "%(count)d fájl és/vagy mappa sikeresen törölve." -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "Nem lehet a mappákat és/vagy fájlokat törölni" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "Biztos benne?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "Fájlok és/vagy mappák törlése" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "Kiválasztott fájlok és/vagy mappák törlése" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "A kiválasztott helyen már létezik %s nevű mappa" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"%(count)d fájl és/vagy mappa sikeresen átmozgatva ebbe a mappába: " -"%(destination)s" +msgstr "%(count)d fájl és/vagy mappa sikeresen átmozgatva ebbe a mappába: %(destination)s" -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "Fájlok és/vagy mappák mozgatása" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "Kiválasztott fájlok és/vagy mappák mozgatása" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "%(count)d fájl sikeresen átnevezve." -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "Fájlok átnevezése" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"%(count)d fájl és/vagy mappa sikeresen átmásolva ebbe a mappába: " -"%(destination)s" +msgstr "%(count)d fájl és/vagy mappa sikeresen átmásolva ebbe a mappába: %(destination)s" -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "Fájlok és/vagy mappák másolása" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "Kiválasztott fájlok és/vagy mappák másolása" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "%(count)d kép sikeresen átméretezve." -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "Képek átméretezése" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "Kiválasztott képek átméretezése" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "Utótag, amely a másolt fájlok nevéhez lesz hozzáadva." -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." -msgstr "" -"Az utótag lehetőleg egyszerű, kisbetűs fájlnév részlet legyen, például " -"\"%(valid)s\"." +msgstr "Az utótag lehetőleg egyszerű, kisbetűs fájlnév részlet legyen, például \"%(valid)s\"." -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "Ismeretlen átnevezés formázási szó: \"%(key)s\" " -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "Érvénytelen átnevezési formátum: %(error)s." -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "előnézeti kép beállítás" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "szélesség" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "magasság" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "vágás" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "felméretezés" -#: admin/forms.py:75 +#: admin/forms.py:80 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/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "Átméretezési paramétert kötelező kiválasztani." +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 msgid "Subject location" @@ -377,9 +366,7 @@ msgstr "Jogosultságok kikapcsolva" msgid "" "Disable any permission checking for this file. File will be publicly " "accessible to anyone." -msgstr "" -"Jogosultságok ellenőrzésének kikapcsolása ennél a fájlnál. Ezt a fájlt bárki " -"letöltheti." +msgstr "Jogosultságok ellenőrzésének kikapcsolása ennél a fájlnál. Ezt a fájlt bárki letöltheti." #: models/foldermodels.py:94 msgid "parent" @@ -472,6 +459,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -490,6 +478,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -502,6 +491,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -556,6 +546,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -623,26 +614,19 @@ msgid "" "Deleting the selected files and/or folders would result in deleting related " "objects, but your account doesn't have permission to delete the following " "types of objects:" -msgstr "" -"A kiválasztott fájlok és mappák törlése csatlakozó elemek törlésével is " -"járna, viszont a jelenlegi fiók nem rendelkezik a megfelelő jogosultságokkal " -"a következő objektum típusok törléséhez:" +msgstr "A kiválasztott fájlok és mappák törlése csatlakozó elemek törlésével is járna, viszont a jelenlegi fiók nem rendelkezik a megfelelő jogosultságokkal a következő objektum típusok törléséhez:" #: templates/admin/filer/delete_selected_files_confirmation.html:19 msgid "" "Deleting the selected files and/or folders would require deleting the " "following protected related objects:" -msgstr "" -"A kiválasztott fájlok és mappák törlése azzal járna, hogy a következő " -"kapcsolt elemek is törlődnek:" +msgstr "A kiválasztott fájlok és mappák törlése azzal járna, hogy a következő kapcsolt elemek is törlődnek:" #: templates/admin/filer/delete_selected_files_confirmation.html:27 msgid "" "Are you sure you want to delete the selected files and/or folders? All of " "the following objects and their related items will be deleted:" -msgstr "" -"Biztosan törli a kiválasztott fájlokat és/vagy mappákat? A következő " -"objektumok, és a hozzájuk kapcsolt elemek is törlődni fognak:" +msgstr "Biztosan törli a kiválasztott fájlokat és/vagy mappákat? A következő objektumok, és a hozzájuk kapcsolt elemek is törlődni fognak:" #: templates/admin/filer/delete_selected_files_confirmation.html:46 #: templates/admin/filer/folder/choose_copy_destination.html:64 @@ -691,10 +675,9 @@ msgstr "Mappa Ikon" #: 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." -msgstr "" -"Nincs jogosultsága az összes kiválasztott fájl és/vagy mappa másolásához." +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." +msgstr "Nincs jogosultsága az összes kiválasztott fájl és/vagy mappa másolásához." #: templates/admin/filer/folder/choose_copy_destination.html:25 #: templates/admin/filer/folder/choose_copy_destination.html:31 @@ -718,9 +701,7 @@ msgstr "Nincsenek másolható fájlok és/vagy könyvtárak" msgid "" "The following files and/or folders will be copied to a destination folder " "(retaining their tree structure):" -msgstr "" -"A következő fájlok és/vagy mappák lesznek a célkönyvtárba másolva (megtartva " -"a szerkezetüket):" +msgstr "A következő fájlok és/vagy mappák lesznek a célkönyvtárba másolva (megtartva a szerkezetüket):" #: templates/admin/filer/folder/choose_copy_destination.html:54 #: templates/admin/filer/folder/choose_move_destination.html:64 @@ -750,34 +731,25 @@ msgstr "Nincsenek átméretezhető képek." msgid "The following images will be resized:" msgstr "A következő képek lesznek átméretezve:" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" -msgstr "" -"Válasszon ki egy meglévő előnézeti kép beállítást, vagy írja be az " -"átméretezési paramétereket:" - -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "Válasszon átméretezési paramétereket:" +msgstr "Válasszon ki egy meglévő előnézeti kép beállítást, vagy írja be az átméretezési paramétereket:" -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." -msgstr "" -"Figyelem: a képek helyben lesznek átméretezve, felülírva az eredetieket. Ha " -"meg szeretné őrizni az eredeti képeket, előbb másolja át őket." +msgstr "Figyelem: a képek helyben lesznek átméretezve, felülírva az eredetieket. Ha meg szeretné őrizni az eredeti képeket, előbb másolja át őket." -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "Átméretezés" #: 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." -msgstr "" -"Nincs jogosultsága az összes kiválasztott fájl és/vagy mappa mozgatásához." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." +msgstr "Nincs jogosultsága az összes kiválasztott fájl és/vagy mappa mozgatásához." #: templates/admin/filer/folder/choose_move_destination.html:47 msgid "There are no files and/or folders available to move." @@ -787,9 +759,7 @@ msgstr "Nincsenek mozgatható fájlok és/vagy mappák." msgid "" "The following files and/or folders will be moved to a destination folder " "(retaining their tree structure):" -msgstr "" -"A következő fájlok és/vagy mappák lesznek átmozgatva a cél mappába " -"(megtartva a szerkezetüket):" +msgstr "A következő fájlok és/vagy mappák lesznek átmozgatva a cél mappába (megtartva a szerkezetüket):" #: templates/admin/filer/folder/choose_move_destination.html:73 #: templates/admin/filer/folder/choose_move_destination.html:76 @@ -814,9 +784,7 @@ msgstr "Nincsenek átnevezhető fájlok." msgid "" "The following files will be renamed (they will stay in their folders and " "keep original filename, only displayed filename will be changed):" -msgstr "" -"A következő fájlok lesznek átnevezve (a mappában maradnak, és az eredeti " -"fájlnév megmarad, csak a megjelenített név változik):" +msgstr "A következő fájlok lesznek átnevezve (a mappában maradnak, és az eredeti fájlnév megmarad, csak a megjelenített név változik):" #: templates/admin/filer/folder/choose_rename_format.html:59 msgid "Rename" @@ -971,11 +939,13 @@ msgstr "engedélyezve" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "'%(item_label)s' letöltése" @@ -986,8 +956,7 @@ msgstr "Fájl eltávolítása" #: templates/admin/filer/folder/directory_table_list.html:160 #: 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" +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_thumbnail_list.html:153 @@ -1038,10 +1007,12 @@ msgstr "Összes (%(total_count)s) kiválasztása" #: 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 "" @@ -1107,6 +1078,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1162,6 +1134,7 @@ msgid "Choose File" msgstr "Fájl kiválasztása" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1187,6 +1160,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/it/LC_MESSAGES/django.mo b/filer/locale/it/LC_MESSAGES/django.mo index 4030926dd0afe7470472c0c9fd7fb5fe906bab54..355fda5d42ffd9d7d9c250c0427a9d31079221a1 100644 GIT binary patch delta 4519 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 diff --git a/filer/locale/it/LC_MESSAGES/django.po b/filer/locale/it/LC_MESSAGES/django.po index 464b71cf2..5dbf26ba5 100644 --- a/filer/locale/it/LC_MESSAGES/django.po +++ b/filer/locale/it/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: @@ -13,19 +13,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+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/" -"it/)\n" -"Language: it\n" +"Language-Team: Italian (http://app.transifex.com/divio/django-filer/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? " -"1 : 2;\n" +"Language: it\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -34,26 +34,25 @@ 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." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "Avanzato" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "URL standard" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." -msgstr "" -"Gli elementi devono essere selezionati in modo da eseguire azioni su di " -"essi. Nessun elemento è stato modificato." +msgstr "Gli elementi devono essere selezionati in modo da eseguire azioni su di essi. Nessun elemento è stato modificato." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" @@ -61,182 +60,170 @@ msgstr[0] " %(total_count)s elemento selezionato" msgstr[1] "Tutti e %(total_count)s selezionati" msgstr[2] "Tutti e %(total_count)s selezionati" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "%(folder_name)sLista file per " -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "0 su %(cnt)s selezionati" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "Nessuna azione selezionata." -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "%(count)d file spostati con successo negli appunti." -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "Sposta i file selezionati negli Appunti" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "Permessi per %(count)d file disabilitati con successo." -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "Permessi per %(count)d file abilitati con successo." -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "Attiva i permessi per i file selezionati" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "Disabilita i permessi per i file selezionati" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "%(count)d file e/o cartelle cancellati con successo." -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "Non è possibile cancellare i file e/o le cartelle" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "Sei sicuro?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "Elimina i file e/o le cartelle" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "Elimina i file e/o le cartelle selezionati" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "Esistono altre cartelle chiamate %s nella destinazione selezionata" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"%(count)d file e/o le cartelle spostati con successo nella cartella " -"'%(destination)s'." +msgstr "%(count)d file e/o le cartelle spostati con successo nella cartella '%(destination)s'." -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "Sposta i file e/o le cartelle" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "Sposta i file e/o le cartelle selezionati" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "%(count)d file rinominati con successo." -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "Rinomina file" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"%(count)d file e/o cartelle copiati con successo nella cartella " -"'%(destination)s '." +msgstr "%(count)d file e/o cartelle copiati con successo nella cartella '%(destination)s '." -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "Copia i file e/o le cartelle" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "Copia i file e/o le cartelle selezionati" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "%(count)d immagini ridimensionate con successo." -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "Ridimensiona le immagini" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "Ridimensiona le immagini selezionate" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "Suffisso che sarà aggiunto al nome dei file copiati." -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." -msgstr "" -"Il suffisso deve essere una sezione del nome del file valida, semplice e " -"minuscola, come \"%(valid)s\"." +msgstr "Il suffisso deve essere una sezione del nome del file valida, semplice e minuscola, come \"%(valid)s\"." -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "Valore del formato di rinomina non valido \"%(key)s\"." -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "Formato di rinomina non valido: %(error)s." -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "opzione anteprima immagine" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "larghezza" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "altezza" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "ritaglia" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "ingrandisci" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." -msgstr "" -"Devi selezionare l'opzione anteprima immagine o i parametri di " -"ridimensionamento." - -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "Seleziona le opzioni di ridimensionamento." +msgstr "Devi selezionare l'opzione anteprima immagine o i parametri di ridimensionamento." #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" @@ -383,9 +370,7 @@ msgstr "Permessi disabilitati" msgid "" "Disable any permission checking for this file. File will be publicly " "accessible to anyone." -msgstr "" -"Disabilita ogni controllo dei permessi per questo file. Il file sarà " -"accessibile da chiunque" +msgstr "Disabilita ogni controllo dei permessi per questo file. Il file sarà accessibile da chiunque" #: models/foldermodels.py:94 msgid "parent" @@ -478,6 +463,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -496,6 +482,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -508,6 +495,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -562,6 +550,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -629,26 +618,19 @@ msgid "" "Deleting the selected files and/or folders would result in deleting related " "objects, but your account doesn't have permission to delete the following " "types of objects:" -msgstr "" -"Cancellare i file selezionati e/o cartelle comporta l'eliminazione degli " -"oggetti correlati, ma il tuo account non dispone dell'autorizzazione per " -"eliminare i seguenti tipi di oggetti:" +msgstr "Cancellare i file selezionati e/o cartelle comporta l'eliminazione degli oggetti correlati, ma il tuo account non dispone dell'autorizzazione per eliminare i seguenti tipi di oggetti:" #: templates/admin/filer/delete_selected_files_confirmation.html:19 msgid "" "Deleting the selected files and/or folders would require deleting the " "following protected related objects:" -msgstr "" -"Cancellare i file selezionati e/o cartelle richiede eliminazione dei " -"seguenti oggetti protetti correlati:" +msgstr "Cancellare i file selezionati e/o cartelle richiede eliminazione dei seguenti oggetti protetti correlati:" #: templates/admin/filer/delete_selected_files_confirmation.html:27 msgid "" "Are you sure you want to delete the selected files and/or folders? All of " "the following objects and their related items will be deleted:" -msgstr "" -"Sei sicuro di voler cancellare i file selezionati e/o le cartelle? Tutti gli " -"oggetti seguenti e quelli correlati verranno cancellati:" +msgstr "Sei sicuro di voler cancellare i file selezionati e/o le cartelle? Tutti gli oggetti seguenti e quelli correlati verranno cancellati:" #: templates/admin/filer/delete_selected_files_confirmation.html:46 #: templates/admin/filer/folder/choose_copy_destination.html:64 @@ -697,11 +679,9 @@ msgstr "Icona della cartella" #: 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." -msgstr "" -"Il tuo account non dispone delle autorizzazioni per copiare tutti i file e/o " -"cartelle selezionati." +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." +msgstr "Il tuo account non dispone delle autorizzazioni per copiare tutti i file e/o cartelle selezionati." #: templates/admin/filer/folder/choose_copy_destination.html:25 #: templates/admin/filer/folder/choose_copy_destination.html:31 @@ -725,9 +705,7 @@ msgstr "Non ci sono file e/o le cartelle disponibili per la copia." msgid "" "The following files and/or folders will be copied to a destination folder " "(retaining their tree structure):" -msgstr "" -"I seguenti file e/o cartelle verranno copiati in una cartella di " -"destinazione (mantenendo la loro struttura ad albero):" +msgstr "I seguenti file e/o cartelle verranno copiati in una cartella di destinazione (mantenendo la loro struttura ad albero):" #: templates/admin/filer/folder/choose_copy_destination.html:54 #: templates/admin/filer/folder/choose_move_destination.html:64 @@ -747,9 +725,7 @@ msgstr "Non è autorizzato a copiare file nella stessa cartella" #: templates/admin/filer/folder/choose_images_resize_options.html:15 msgid "" "Your account doesn't have permissions to resize all of the selected images." -msgstr "" -"Il tuo account non dispone delle autorizzazioni per ridimensionare tutte le " -"immagini selezionate." +msgstr "Il tuo account non dispone delle autorizzazioni per ridimensionare tutte le immagini selezionate." #: templates/admin/filer/folder/choose_images_resize_options.html:18 msgid "There are no images available to resize." @@ -759,35 +735,25 @@ msgstr "Non ci sono immagini disponibili da ridimensionare." msgid "The following images will be resized:" msgstr "Le seguenti immagini verranno ridimensionate:" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" -msgstr "" -"Scegli un'opzione miniatura esistente o immetti i parametri di " -"ridimensionamento:" - -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "Scegli i parametri di ridimensionamento:" +msgstr "Scegli un'opzione miniatura esistente o immetti i parametri di ridimensionamento:" -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." -msgstr "" -"Attenzione: Le immagini verranno ridimensionate ora e le immagini originali " -"andranno perse. Forse è meglio fare una copia per mantenere i file originali." +msgstr "Attenzione: Le immagini verranno ridimensionate ora e le immagini originali andranno perse. Forse è meglio fare una copia per mantenere i file originali." -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "Ridimensiona" #: 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." -msgstr "" -"Il tuo account non dispone delle autorizzazioni per spostare tutti i file e/" -"o cartelle selezionati." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." +msgstr "Il tuo account non dispone delle autorizzazioni per spostare tutti i file e/o cartelle selezionati." #: templates/admin/filer/folder/choose_move_destination.html:47 msgid "There are no files and/or folders available to move." @@ -797,9 +763,7 @@ msgstr "Non ci sono file e/o cartelle a disponibili per lo spostamento." msgid "" "The following files and/or folders will be moved to a destination folder " "(retaining their tree structure):" -msgstr "" -"I seguenti file e/o cartelle verranno spostati in una cartella di " -"destinazione (mantenendo la loro struttura ad albero):" +msgstr "I seguenti file e/o cartelle verranno spostati in una cartella di destinazione (mantenendo la loro struttura ad albero):" #: templates/admin/filer/folder/choose_move_destination.html:73 #: templates/admin/filer/folder/choose_move_destination.html:76 @@ -814,9 +778,7 @@ msgstr "Non è autorizzato a spostare file nella stessa cartella" #: templates/admin/filer/folder/choose_rename_format.html:15 msgid "" "Your account doesn't have permissions to rename all of the selected files." -msgstr "" -"Il tuo account non dispone delle autorizzazioni per rinominare tutti i file " -"selezionati." +msgstr "Il tuo account non dispone delle autorizzazioni per rinominare tutti i file selezionati." #: templates/admin/filer/folder/choose_rename_format.html:18 msgid "There are no files available to rename." @@ -826,10 +788,7 @@ msgstr "Non ci sono file disponibili da rinominare." msgid "" "The following files will be renamed (they will stay in their folders and " "keep original filename, only displayed filename will be changed):" -msgstr "" -"I file seguenti saranno rinominati (rimarranno nelle rispettive cartelle e " -"manterranno il nome del file originario, solo il nome visualizzato sarà " -"modificato):" +msgstr "I file seguenti saranno rinominati (rimarranno nelle rispettive cartelle e manterranno il nome del file originario, solo il nome visualizzato sarà modificato):" #: templates/admin/filer/folder/choose_rename_format.html:59 msgid "Rename" @@ -986,11 +945,13 @@ msgstr "abilitato" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "URL canonico '%(item_label)s'" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "Download '%(item_label)s'" @@ -1052,10 +1013,12 @@ msgstr "Seleziona tutti %(total_count)s" #: 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 "" @@ -1122,6 +1085,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1177,6 +1141,7 @@ msgid "Choose File" msgstr "Seleziona file" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1202,6 +1167,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/ja/LC_MESSAGES/django.po b/filer/locale/ja/LC_MESSAGES/django.po index 84aff4ffe..b591575be 100644 --- a/filer/locale/ja/LC_MESSAGES/django.po +++ b/filer/locale/ja/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,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+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/" -"language/ja/)\n" -"Language: ja\n" +"Language-Team: Japanese (http://app.transifex.com/divio/django-filer/language/ja/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -29,198 +30,195 @@ 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." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." msgstr "" -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" msgstr[0] "" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "" -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "" -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "" -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "" -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "" -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "" -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." msgstr "" -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "" -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "" -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "" -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "" - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "" @@ -459,6 +457,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -477,6 +476,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -489,6 +489,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -543,6 +544,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -671,8 +673,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 @@ -727,28 +729,24 @@ msgstr "" msgid "The following images will be resized:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" 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 @@ -937,11 +935,13 @@ msgstr "" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "" @@ -1003,10 +1003,12 @@ 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 "" @@ -1071,6 +1073,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1126,6 +1129,7 @@ msgid "Choose File" msgstr "" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1151,6 +1155,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/ja_JP/LC_MESSAGES/django.po b/filer/locale/ja_JP/LC_MESSAGES/django.po index 06e53afe6..1b843bfbd 100644 --- a/filer/locale/ja_JP/LC_MESSAGES/django.po +++ b/filer/locale/ja_JP/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,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+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/" -"language/ja_JP/)\n" -"Language: ja_JP\n" +"Language-Team: Japanese (Japan) (http://app.transifex.com/divio/django-filer/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -29,198 +30,195 @@ 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." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." msgstr "" -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" msgstr[0] "" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "" -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "" -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "" -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "" -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "" -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "" -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." msgstr "" -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "" -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "" -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "" -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "" - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "" @@ -459,6 +457,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -477,6 +476,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -489,6 +489,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -543,6 +544,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -671,8 +673,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 @@ -727,28 +729,24 @@ msgstr "" msgid "The following images will be resized:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" 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 @@ -937,11 +935,13 @@ msgstr "" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "" @@ -1003,10 +1003,12 @@ 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 "" @@ -1071,6 +1073,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1126,6 +1129,7 @@ msgid "Choose File" msgstr "" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1151,6 +1155,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/lt/LC_MESSAGES/django.mo b/filer/locale/lt/LC_MESSAGES/django.mo index 13b52080f71018f54b3b9f672c3c923b996d44d0..6eb04aa82dab5cfe87438d3aa14458f15d361d52 100644 GIT binary patch delta 4511 zcmYk;2~bs49LMoL=o2$UKoJGeCxU|Df}!M=s3oMi;6{O!W{3qE0k&$-Hc>PxP0Mg= zF|afm=LqS!*$kdT9jEL=3!r~#GzP=F?blc#g1SY{)qgu-}q>c?W4_BVib17 z`%%xU$DU>Zdy9%5(2BkA1gfE^&SnXCHmaf7I1o$mOsvH*Scg75f}QXOOv8UL15>-0 zoq>g@>x!@~mSA_qk6mw)#G)j4sAq@d>iVzov04KkD7_k zFcjmu@nB5AKA3{^*)BkJWFFE7yAcC==WD6xLAy~?^9=UJea;qC&vm!VzbiyQcoFvJ_$Hi+J1`SZ;xHT-V2Nux72y=DMNM%l>K(_kQu^Xp z)B_gcNNhrN{1+_2kY3*6T!hsee}cMyzTevot56L$I$N*pBw? zRw|mRYUIbyHlYu9I~!4p@j2AU-$!-mQ}=zVJAWM2q2Ezc-iC$4GO}b;N5(sIQTI>A zfF67a6?I?<`mhQ$qB~GGZgAG3Zrp~tZx3o0yn&k1uif`Qp`O=<6{h=RP_H5m)xi`D z!_0onzb+WX2{k+xHN`pDK9mK66F8om%C95VVF~_){3cm3D^wj_j=FCZYP)VkeZL16 z;6c>yK}MRl8zvwd$I8=~|8`XF<^(&&?nBzNCe##ui5h8WI-SGrs2M24*;tBt*9TD7 zy^X{08$1W&2Y4ecKwY=MS%!N44FM|rvrT+xBnPnret_ByEjSQE_$bA}xB)k#ei1VV zc_YfjLXImj1>Zy6e-gC@dJOh{nn$3HD^cwP)>6@**UhMrH{hB0IjTcPoX1g%^CU7j z3(xSrAC8ka9*26BHK_a7Ab`GL9q2kFXuvY5sG;f3LS)wMa!kUzkbl<5 z2lv`hEWx<5yhXGEdA(MHy6#!jyZ;`e(Z|o8roJ1hokU~|mWF=q|2b6Dvt_6UJ&GE^ zhu8_fLVm981nPki{9bG7dZR{|j#@i2Pz_X|u3L&*@lK4yK`e~Un2mb=OpK;|n@c4E zE6|U(pgQyrs^Rxg4gP>?;1Bd;NEUzLFcG_AA!-+uqn>vi@>5_{n2)=Vf9B&R&A@03 zus&=tm6^B&8KnJ;DVV|^a~H3bAv@Go^Owqxji?4c zLbVq*%3BjzqnLkERSLj68y*r5=HdIcR&Q{EXh6a7)w z4@WJw9MrqcL!B=|z4HoG#{aCXnI1hj2Gw96 z)cFCZZ8!|o@sX(KjC03RP>XgJ>iWP^Dw?X>of}ZEpbqtbUDy+!Lf!BIYO0%29XNrS zfq&ii5#zjHwpdg{!%-cWi+XM;cE@szrF~mNMeq1w)GB`o)$kzRl56{#WWgjTJJ-gy;y zR0kAoC;dp>p#xWL!Mj|2A*!<~*OI$~HSd2&nbcEh-}aCk(v7@HhLS7DBSbw_d4Uv> z4Duk+D!+`VyyjsKqh^ZTY0nULn>|4uC#MQKJGj%%#V8Wke(D?4YuI+$@io*3y5q}F zJ0DMdFxg8+5bb%D1P{w~uE##E{uWld`gFY5s|V~^cXB4qb@f}ZiLj>Zda{&gu}vcV z$aSQEsAvtSG?Ihlc9Kmt5w>}-yus&7uC8sVqL~kVJ`XpMN)kurkW)n~_Z>2g3~(oh z-~zIWXx-G2VdOrdm93&Jc^mN)l|pg}xtEM12S`t{LA_W@Ruh#nl1C!Q7V-*to2cye z`2TYhwJXU~veTXQ;c`+-wvt2S^m4U3xX>Ax0bLrO?Ji6KuBmGNXUxrc-il~NK;CX(05 zIucFF$poVE0NF+6kylAFvE-EbS1nmwSyY}{;cr+LwK}vRvCHwWhM_&ai)_dp@Z}i| J1z9m2{{z9ixS{|6 delta 4581 zcmYk;3shBA0><$T@e&c?0z!&NInr9q%>TP*(`qlj``i26bI;yqpS=(6s}A_3 zCcyc|6SUe;J|Kx?U5GJp0n}URs4>%`jp>Bbu`8~^zIXuR@G|lf6Y3!ti5xO*Fbq?% z1~XBYd;@j86WGBR$NWr17YL6rrXxn9I?BZMI0n_xY)r@H*b)!mKs=5&VrZ-}!I*@t zF$KG0HfG{@Y=Ns$=WWCw`ZwFC=mI-XBRht=lk=#7{etcA8YZKM(M-Z@+>V=(F_^(^ zjOl_!I2IS9ZsZJVMndA^wQ;kXbr@)f8Htw)XcC~Cxwr~#cu&A=C^ z^Uk3L9FgG8NGt}@EW0^%!{E$bDth*(P#3y@L3kOH@R~J&Uuoq1 ztrb{EdmUCa<%(fYXx`PK$=a(X5Gd|3~#i#-9L7mrN+b6Lb?JsdShBz$oK2%0y7B0iS zcm(gp>!>NuXRqj4&&95|0d;`}{0qi)bZ=k;R?sfONq7>MVqdTO`@^VRaSqk5<6+)Z z$;T9Y1XFPZlZT{tWy5BGjU*K@DIPYB#M%4SXBw zIy-H94+hh}si(p^GsjSOauzjJ=aHAAX~JNP;K54|YB46D&d)#%C=2y{zCAt+HJ}32 zloun*$t*+-WD`27Y@?zJ>_A=k0BQgqp)U9X>W+Rwo&Rs^b=2>ENBu661*Bcj1vR62 zsPBiPu2+oueHH3a%t>MXHNwX^5Q;193D2QA-hi6otr!-_cEUSoznNyty%@xbtiUnI zJIWkG4fJc&@6MsN>oxm*WOv>Pv{Nt^pX|>3Q#V`qU?-XPF$6CnJIDNr^l9RHxKlU) zb*B&FEjSx>hx>3ezJog7dz1Uj??jzH60^{Uxwr{i;u(jE7RS%lUs2EMf5<bDvs*u{(e4cEjZ6p(YyMPJe zC_dBuv)c)EM>nHJT#TCH$<|q@MLHk3d9%_Uug4*@kE5P>OfUEM3CMCW$;gd3W(XDi za4KpbzXk8kvqBT#Ekv zzn+RZ+K$}3*@a&G7B#Ry-p9I725JVzVr!g$yvEIJ)CFr%Gxq}O4qrvBq0dm)zm7UD zfQ7ITV=;>LXZBEu!3It$%E2^WN=*4|_Gk%V3 z&_hGJDh+kr40O6s$)!?=WyrbaAZjMABJ0LPvDb88OI-%Dk3j@#i1REPDbRelk5r_lr4zlOP}J6M6YU@a!% zC#YwB1zX{77>8l(wP@^svDg#;j)O1?&*n1!UMiP4Fd97r-8=DNKJ7y|21E1QT~Lf( z+BK+-UP8SuUdKSJM?HeKP*Z*qH51>W&cB4(?*BzS@-TH!d5pciHg>V%3UtzZ@SN9+i1k) zwtg=b+4=$NC@i)0$MFrq(lLJ}^NAMQP?AdKk#R)D>;Ghn;we&1SnFm38R(y9DksTN zqN07N@|cS`gbT=Q(vCbpnu`|h2V?|ECncmenMjrqt(%ufHqncxEm6^yTtbrcoK@~8 z50d8y3)KI=oR0V`Sw&V5l`1llXr*r=Z8NtKNz#Z@TzD_wxBN8ElW~4XJX36q9L0WuJ@xa}S?OZ9CBVq`S`DKR%r~ zm_lwMK6}DgEFd-H5%LyM=|s}VA~J`pB^yZs=|TQMwh@(bGK)M)^h#FAbul;S`M0JK zMf#9qq&ul3_2kcG7>ztKh3p`4Ubv^ zPmYtWb;F|91_n>8tejC^cRD6Gtae#aV%>-Bu0)02Q!>L><(pc!xko^FKtb){oY+Kf l*~4WG^}b4PMY(ULZ%U, 2015-2018\n" -"Language-Team: Lithuanian (http://app.transifex.com/divio/django-filer/" -"language/lt/)\n" -"Language: lt\n" +"Language-Team: Lithuanian (http://app.transifex.com/divio/django-filer/language/lt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < " -"11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? " -"1 : n % 1 != 0 ? 2: 3);\n" +"Language: lt\n" +"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -32,26 +31,25 @@ 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." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "Išplėstinės funkcijos" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "kanoninis URL" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." -msgstr "" -"Objektai turi būti pasirinkti, kad su jais būtų galima atlikti veiksmus. " -"Jokie objektai nebuvo pakeisti." +msgstr "Objektai turi būti pasirinkti, kad su jais būtų galima atlikti veiksmus. Jokie objektai nebuvo pakeisti." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" @@ -60,182 +58,170 @@ msgstr[1] "pasirinkta %(total_count)s" msgstr[2] "pasirinkta %(total_count)s" msgstr[3] "pasirinkta %(total_count)s" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "%(folder_name)svidinių aplankų sąrašas " -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "0 iš %(cnt)s pasirinkta" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "Nepasirinktas joks veiksmas." -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "Sėkmingai perkelta %(count)d failai į iškarpinę." -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "Perkelti pažymėtus failus į iškarpinę" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "Sėkmingai išjungti leidimai %(count)d failams." -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "Sėkmingai įjungti leidimai %(count)d failams." -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "Įjungti leidimus pasirinktiems failams" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "Išjungti leidimus pasirinktiems failams" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "Sėkmingai pašalino %(count)d failus ir / ar aplankus." -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "Negalima pašalinti failų ir / ar aplankų" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "Ar jūs esate tikri?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "Pašalinti failus ir / ar aplankus" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "Pašalinti pasirinktus failus ir / ar aplankus" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" -msgstr "" -"Aplankai su %s pavadinimais jau egzistuoja pasirinktoje paskirties vietoje." +msgstr "Aplankai su %s pavadinimais jau egzistuoja pasirinktoje paskirties vietoje." -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"Sėkmingai perkelti %(count)d failai ir / ar aplankai į aplanką " -"'%(destination)s'." +msgstr "Sėkmingai perkelti %(count)d failai ir / ar aplankai į aplanką '%(destination)s'." -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "Perkelti failus ir / ar aplankus" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "Perkelti pasirinktus failus ir / ar aplankus" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "Sėkmingai pervardinti %(count)d failai." -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "Pervardinti failus" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"Sėkmingai nukopijuoti %(count)d failai ir / ar aplankai į aplanką " -"'%(destination)s'." +msgstr "Sėkmingai nukopijuoti %(count)d failai ir / ar aplankai į aplanką '%(destination)s'." -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "Kopijuoti failus ir / ar aplankus" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "Kopijuoti pasirinktus failus ir / ar aplankus" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "Sėkmingai pakeistas %(count)d paveikslėlių dydis." -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "Pakeisti paveikslėlių dydžius" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "Pakeisti pasirinktų paveikslėlių dydžius" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "Priesaga kuri bus pridėta prie nukopijuotų failų pavadinimų." -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." -msgstr "" -"Priesaga turi būti paprasta ir taisyklinga bylos pavadinimo dalis pvz. " -"\"%(valid)s\"." +msgstr "Priesaga turi būti paprasta ir taisyklinga bylos pavadinimo dalis pvz. \"%(valid)s\"." -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "Nežinomas pervardinimo formato reikšmės raktažodis \"%(key)s\"." -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "Negalimas pervardinimo formatas: %(error)s." -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "miniatiūros nustatymas" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "plotis" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "aukštis" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "apkirpti" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "išdidinti" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." -msgstr "" -"Miniatiūros nustatymas arba dydžio keitimo parametrai turi būti pasirinkti." - -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "Turi būti pasirinkti dydžio keitimo parametrai." +msgstr "Miniatiūros nustatymas arba dydžio keitimo parametrai turi būti pasirinkti." #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" @@ -382,9 +368,7 @@ msgstr "Leidimai išjungti" msgid "" "Disable any permission checking for this file. File will be publicly " "accessible to anyone." -msgstr "" -"Įšjungti bet kokius leidimų tikrinimus šiai bylai. Byla bus viešai " -"pasiekiama bet kam." +msgstr "Įšjungti bet kokius leidimų tikrinimus šiai bylai. Byla bus viešai pasiekiama bet kam." #: models/foldermodels.py:94 msgid "parent" @@ -477,6 +461,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -495,6 +480,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -507,6 +493,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -561,6 +548,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -628,25 +616,19 @@ msgid "" "Deleting the selected files and/or folders would result in deleting related " "objects, but your account doesn't have permission to delete the following " "types of objects:" -msgstr "" -"Pasirintų failų ir / ar aplankų šalinimas pašalintų susijusius objektus, " -"tačiau jūsų vartotojas neturi leidimo šalinti šių objektų tipų:" +msgstr "Pasirintų failų ir / ar aplankų šalinimas pašalintų susijusius objektus, tačiau jūsų vartotojas neturi leidimo šalinti šių objektų tipų:" #: templates/admin/filer/delete_selected_files_confirmation.html:19 msgid "" "Deleting the selected files and/or folders would require deleting the " "following protected related objects:" -msgstr "" -"Pasirinktų failų ir / ar aplankų šalinimas reikalautų pašalinti šiuos " -"apsaugotus susijusius objektus:" +msgstr "Pasirinktų failų ir / ar aplankų šalinimas reikalautų pašalinti šiuos apsaugotus susijusius objektus:" #: templates/admin/filer/delete_selected_files_confirmation.html:27 msgid "" "Are you sure you want to delete the selected files and/or folders? All of " "the following objects and their related items will be deleted:" -msgstr "" -"Ar tikrai norite pašalinti pasirinktus failus ir / ar aplankus? Visi susiję " -"objektai bus pašalinti:" +msgstr "Ar tikrai norite pašalinti pasirinktus failus ir / ar aplankus? Visi susiję objektai bus pašalinti:" #: templates/admin/filer/delete_selected_files_confirmation.html:46 #: templates/admin/filer/folder/choose_copy_destination.html:64 @@ -695,11 +677,9 @@ msgstr "Aplanko piktograma" #: 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." -msgstr "" -"Jūsų vartotojas neturi leidimų kopijuoti visus pasirinktus failus ir / ar " -"aplankus." +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." +msgstr "Jūsų vartotojas neturi leidimų kopijuoti visus pasirinktus failus ir / ar aplankus." #: templates/admin/filer/folder/choose_copy_destination.html:25 #: templates/admin/filer/folder/choose_copy_destination.html:31 @@ -723,9 +703,7 @@ msgstr "Nėra jokiu failų ir / ar aplankų kopijavimui." msgid "" "The following files and/or folders will be copied to a destination folder " "(retaining their tree structure):" -msgstr "" -"Šie failai ir / ar aplankai bus nukopijuoti į paskirtą aplanką (išlaikant jų " -"medžio struktūrą):" +msgstr "Šie failai ir / ar aplankai bus nukopijuoti į paskirtą aplanką (išlaikant jų medžio struktūrą):" #: templates/admin/filer/folder/choose_copy_destination.html:54 #: templates/admin/filer/folder/choose_move_destination.html:64 @@ -745,9 +723,7 @@ msgstr "Neleidžiama kopijuoti bylų į tą patį aplanką" #: templates/admin/filer/folder/choose_images_resize_options.html:15 msgid "" "Your account doesn't have permissions to resize all of the selected images." -msgstr "" -"Jūsų vartotojas neturi leidimų keisti dydžius visiems pasirinktiems " -"paveikslėliams." +msgstr "Jūsų vartotojas neturi leidimų keisti dydžius visiems pasirinktiems paveikslėliams." #: templates/admin/filer/folder/choose_images_resize_options.html:18 msgid "There are no images available to resize." @@ -757,35 +733,25 @@ msgstr "Nėra jokiu paveikslėlių dydžio keitimui." msgid "The following images will be resized:" msgstr "Šių paveikslėlių dydis bus pakeistas:" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" -msgstr "" -"Pasirinkite esamą miniatiūros nustatymą, arba įveskite dydžio keitimo " -"parametrus:" +msgstr "Pasirinkite esamą miniatiūros nustatymą, arba įveskite dydžio keitimo parametrus:" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "Pasirinkite dydžio keitimo parametrus:" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." -msgstr "" -"Įspėjimas: Paveikslėlių dydžiai bus pakeisti vietoje, ir originalas bus " -"pašalintas. Patartina atsikopijuoti paveikslėlį, kad nedingtų originalas." +msgstr "Įspėjimas: Paveikslėlių dydžiai bus pakeisti vietoje, ir originalas bus pašalintas. Patartina atsikopijuoti paveikslėlį, kad nedingtų originalas." -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "Pakeisti dydį" #: 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." -msgstr "" -"Jūsų vartotojas neturi leidimų perkelti visus pasirinktus failus ir / ar " -"aplankus." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." +msgstr "Jūsų vartotojas neturi leidimų perkelti visus pasirinktus failus ir / ar aplankus." #: templates/admin/filer/folder/choose_move_destination.html:47 msgid "There are no files and/or folders available to move." @@ -795,9 +761,7 @@ msgstr "Nėra jokiu failų ir / ar aplankų perkelimui." msgid "" "The following files and/or folders will be moved to a destination folder " "(retaining their tree structure):" -msgstr "" -"Šie failai ir / ar aplankai bus perkelti į paskirtą aplanką (išlaikant jų " -"medžio struktūrą):" +msgstr "Šie failai ir / ar aplankai bus perkelti į paskirtą aplanką (išlaikant jų medžio struktūrą):" #: templates/admin/filer/folder/choose_move_destination.html:73 #: templates/admin/filer/folder/choose_move_destination.html:76 @@ -822,9 +786,7 @@ msgstr "Nėra jokių failų pervardinimui." msgid "" "The following files will be renamed (they will stay in their folders and " "keep original filename, only displayed filename will be changed):" -msgstr "" -"Šie failai bus pervardinti (jie liks savo aplankuose ir pasiliks savo " -"originalius pavadinimus, pasikeis tik atvaizduojamas failo pavadinimas):" +msgstr "Šie failai bus pervardinti (jie liks savo aplankuose ir pasiliks savo originalius pavadinimus, pasikeis tik atvaizduojamas failo pavadinimas):" #: templates/admin/filer/folder/choose_rename_format.html:59 msgid "Rename" @@ -983,11 +945,13 @@ msgstr "įjungta" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "Kanoninis url '%(item_label)s'" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "Parsisiųsti '%(item_label)s'" @@ -1049,10 +1013,12 @@ msgstr "Pasirinkti visus %(total_count)s" #: 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 "" @@ -1120,6 +1086,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1175,6 +1142,7 @@ msgid "Choose File" msgstr "Pasirinkti bylą" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1200,6 +1168,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/lt_LT/LC_MESSAGES/django.po b/filer/locale/lt_LT/LC_MESSAGES/django.po index d0fef1ec1..e7f2a6b9c 100644 --- a/filer/locale/lt_LT/LC_MESSAGES/django.po +++ b/filer/locale/lt_LT/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,20 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+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-" -"filer/language/lt_LT/)\n" -"Language: lt_LT\n" +"Language-Team: Lithuanian (Lithuania) (http://app.transifex.com/divio/django-filer/language/lt_LT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < " -"11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? " -"1 : n % 1 != 0 ? 2: 3);\n" +"Language: lt_LT\n" +"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -31,24 +30,25 @@ 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." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." msgstr "" -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" @@ -57,175 +57,171 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "" -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "" -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "" -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "" -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "" -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "" -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." msgstr "" -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "" -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "" -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "" -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "" - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "" @@ -464,6 +460,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -482,6 +479,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -494,6 +492,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -548,6 +547,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -676,8 +676,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 @@ -732,28 +732,24 @@ msgstr "" msgid "The following images will be resized:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" 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 @@ -948,11 +944,13 @@ msgstr "" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "" @@ -1014,10 +1012,12 @@ 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 "" @@ -1085,6 +1085,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1140,6 +1141,7 @@ msgid "Choose File" msgstr "" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1165,6 +1167,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/nb/LC_MESSAGES/django.mo b/filer/locale/nb/LC_MESSAGES/django.mo index 867da3970e9dfdfc4d6c1f08c3e81720323f6174..a5bc3650f470796df4ec831c985764a85586a82b 100644 GIT binary patch delta 3385 zcmYkPilwIy{NG(hiKnzfmjU;&L>R7}S-e z@SzLIK}{$Rbs=+XyBw#`UV|F11)V`uzO@J1Q1`9_bp>7M!n>#e!|7EgMq)a~AggGm zTg$MR_HxX`Z*T(siP}S{Y@nIA2s7|_BG7|5vVAPsY{7Ax^2>Ru)>o9(y@ zb>8qOV@6{hYQSaIPcVh{1$5(moPchYGZh!2E@XQ&>#r5q&4F4xjB_z&n9o&MNV^S- z(8YaWKbpm;O<9Hgu?E#)9co4DQBTDI>&K{-ZAP8fg6ikALxl}$&S404S+Ap({Elt^ zi|Tj)J4(NgLfu<8YM@NiCYyvBARl#pv2B;2_QnFFD^r1*uv15c4QlF3s=_dpwJbKOKeuESZ5Qk;yM;6YUXM=%SIVW>l; zn~Ik94`lVsT~vpW^r8W>QTHqt)p02wOL09m<2BUY*~dxx{s_{AIgL91s`WS2-nfZl z@g6!FcvPZq0vV{ym4$9BK%Pvq68SS*`QQOD$1o0mK&{ZP=#M>^hPQDZj%1nieGO_N zTTqYX4%7vC^#0Y1+d06Wxy6S%ic0pKI07|+WYqDAs6CK}TFUvT2`#~F+=yCK-P~!zN3$65+6xKh0$}|pWfMQI?64Z&CQBOr9K8>HFR;I@qMT0&~9_Hf` z9F1RM9R7s-)ck{5k%UpcH(@Oe-sDd zY1BaNI1n$Qes>jhOKzc-d=OVN7~QDNmxcO$9x|R|W>DevY|4>;XH2#I!A=aJ{Q+vA z&rrAMIQGY{Q3JN1Zs8f!J#Dk?Yp4tALG2;`4BsXnW{pReo`1JJFa_07fo;#QmY_CG zDaPS?)I^S;e*Yh zY1R;xJfaEakliGaFqXIM;PXW?#oOXvJd7o}*V=GT5S4nO{j^05TdH;cdrM_+yB>>eomdQAs1b>b+&ERr^Vgqj&rY(8fz4T22)`o3%vu zX%%^nJWJe!jonusqc)zrO?ofoJ?gW`3Zn8VnNHS`wWPPatcp&0ft0CX%R5$WI=x&} z_L6W?N+yzpL`9ES9myo|WF~1O+BYhC0#x(}s=P^_By-iEI6L_$_Evo#8=;0g|G=>& z)V1;U*<+jW6#>s_>R8Y&w|5eZd;(m>Kl zGp8TOFLOt;#R|I&zOW7OpKe{k4kpKVy delta 3442 zcmYk;X;76_9LMp4+zYZ?7Zj6F;U=;uiXymxA!(WmC@Mnaf`ll6il``LbW>B&Od-@< zm~xs%$Hu0VX&N)la;9-~(otVjRywAQuhOPPZL_|==Q+%H=Ki10InQ?X2inT7EDT(W z^6WCCHlh#lkH?rR_?;U45?{9TNB0@E-AXJQ4BlNK9TxOESUkE7>BC367`~G7=d;6`Z`q44`C<#0K@SZ_Q#Xh6K|jz zb`N`DwoKE>XW?(D}Xap9Z*3{-`#(x@_lbjfek<_B8coGw_9QA^&n2lGl8hgCtM6^hAbbl|;W_Jnm_#{)VNAxkI084uF#ZF{e98&+qJ2!{sPb9yiu^`barp_(BW zjycxJs39-3)A3N^&_$Sjxu>cwrSicX`Z?n~rne&kSvUT%61m!sBDY=V0|5vkKm zMm=AR0cC2*XpyYJA-E1z@rTxrQH$&pCgTNU$C~@d&-ezoAEQLI(cPa>s2*jZdQ^nmYZ_25dK>lPcTo*^-=05%S_@}UBY6|qx#lj8 z#xOR&Mq)hjEi%(kYpFbm@mGbbIFW|UsESXchWsX~f$Fvz5Q4fd0`-Dy)Go=xiCBvK z%t7l#qz&c)PQW-Oeh^k*JhlYLP=`5&8k(z^i5UZF9adQ{;CjmGJgo+Ngc_NjP*WC> z>JD)h>U<^gGut^lgC|h;1v3wwF&(w*0@-BtlF7$Hyp6MP40lh#X3WR$P(znO?OiYj zJ7GThumCj$^Dz<|P!(;$2;70XZ$D~k4kIHUFlWfO~K2*)z<&KLWL8qA(saQ4J|V-9HDrVi|VFTGaIo7^?l>L`E%cwikAy7S&!gr>Sk^Pf#dX$zqR zwOIv{7G`z`ppk@^NFbgi_H?YiofKk; zr-*VwsTVQX$+=&wHuBwUc_sF45At0L@>bT=tgL81*QKAgb$m>p_8UEp`#ePzOBT1r XrY5xS@z;8T3R?T7rnQG9wTAx>0h2RS diff --git a/filer/locale/nb/LC_MESSAGES/django.po b/filer/locale/nb/LC_MESSAGES/django.po index c6649f961..93eea7dcc 100644 --- a/filer/locale/nb/LC_MESSAGES/django.po +++ b/filer/locale/nb/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: @@ -10,18 +10,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+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/" -"language/nb/)\n" -"Language: nb\n" +"Language-Team: Norwegian Bokmål (http://app.transifex.com/divio/django-filer/language/nb/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -30,205 +31,196 @@ 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." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "Avansert" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." -msgstr "" -"Du må velge noen elementer for å utføre handlinger på dem. Ingen elementer " -"er endret." +msgstr "Du må velge noen elementer for å utføre handlinger på dem. Ingen elementer er endret." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" msgstr[0] "%(total_count)s valgt" msgstr[1] "Alle %(total_count)s valgt" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "0 av %(cnt)s valgt" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "Ingen handling valgt." -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "Flyttet %(count)d filer til utklippstavlen." -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "Flytt valgte filer til utklippstavlen" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "Fjernet tillatelser for %(count)d filer." -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "Satte tillatelser for %(count)d filer." -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "Sett tillatelser for valgte filer" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "Fjern tillatelser for valgte filer" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "Slettet %(count)d filer og/eller mapper." -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "Kan ikke slette filer og/eller mapper" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "Er du sikker?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "Slett filer og/eller mapper" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "Slett valgte filer og/eller mapper" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"Flyttet %(count)d filer og/eller mapper til mappen \"%(destination)s\"." +msgstr "Flyttet %(count)d filer og/eller mapper til mappen \"%(destination)s\"." -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "Flytt filer og/eller mapper" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "Flytt valgte filer og/eller mapper" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "Endret navn på %(count)d filer." -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "Endre navn på filer" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"Kopierte %(count)d filer og/eller mapper til mappen \"%(destination)s\"." +msgstr "Kopierte %(count)d filer og/eller mapper til mappen \"%(destination)s\"." -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "Kopier filer og/eller mapper" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "Kopier valgte filer og/eller mapper" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "Endret størrelse på %(count)d bilder." -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "Endre størrelse på bilder" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "Endre størrelse på valgte bilder" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "Endelse som vil tilføyes filnavn på kopierte filer." -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." -msgstr "" -"Endelse bør være en gyldig, enkel del av filnavnet med små bokstaver, som " -"\"%(valid)s\"." +msgstr "Endelse bør være en gyldig, enkel del av filnavnet med små bokstaver, som \"%(valid)s\"." -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "Ugyldig nøkkel \"%(key)s\" for endring av navn." -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "Ugyldig format for endring av navn: %(error)s" -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "miniatyrbildevalg" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "bredde" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "høyde" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "beskjæring" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "oppskalering" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "Miniatyrbildevalg eller parametre for endring av størrelse må velges." -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "Parametre for endring av størrelse må velges." - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "Fokuseringsområde" @@ -467,6 +459,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -485,6 +478,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -497,6 +491,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -551,6 +546,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -618,26 +614,19 @@ msgid "" "Deleting the selected files and/or folders would result in deleting related " "objects, but your account doesn't have permission to delete the following " "types of objects:" -msgstr "" -"Å slette de valgte filene og/eller mappene ville resultere i sletting av " -"relaterte objekter, men din konto har ikke tillatelse til å slette objekter " -"av følgende typer:" +msgstr "Å slette de valgte filene og/eller mappene ville resultere i sletting av relaterte objekter, men din konto har ikke tillatelse til å slette objekter av følgende typer:" #: templates/admin/filer/delete_selected_files_confirmation.html:19 msgid "" "Deleting the selected files and/or folders would require deleting the " "following protected related objects:" -msgstr "" -"Å slette de valgte filene og/eller mappene ville kreve å slette følgende " -"beskyttede relaterte objekter:" +msgstr "Å slette de valgte filene og/eller mappene ville kreve å slette følgende beskyttede relaterte objekter:" #: templates/admin/filer/delete_selected_files_confirmation.html:27 msgid "" "Are you sure you want to delete the selected files and/or folders? All of " "the following objects and their related items will be deleted:" -msgstr "" -"Er du sikker på at du vil slette de valgte filene og/eller mappene? Alle de " -"følgende objektene og deres relaterte elementer vil bli slettet:" +msgstr "Er du sikker på at du vil slette de valgte filene og/eller mappene? Alle de følgende objektene og deres relaterte elementer vil bli slettet:" #: templates/admin/filer/delete_selected_files_confirmation.html:46 #: templates/admin/filer/folder/choose_copy_destination.html:64 @@ -686,11 +675,9 @@ msgstr "Mappeikon" #: 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." -msgstr "" -"Din konto har ikke tillatelse til å kopiere alle de valgte filene og/eller " -"mappene." +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." +msgstr "Din konto har ikke tillatelse til å kopiere alle de valgte filene og/eller mappene." #: templates/admin/filer/folder/choose_copy_destination.html:25 #: templates/admin/filer/folder/choose_copy_destination.html:31 @@ -714,9 +701,7 @@ msgstr "Det er ingen filer og/eller mapper å kopiere." msgid "" "The following files and/or folders will be copied to a destination folder " "(retaining their tree structure):" -msgstr "" -"De følgende filene og/eller mappene vil bli kopiert til en målmappe " -"(mappestruktur vil beholdes):" +msgstr "De følgende filene og/eller mappene vil bli kopiert til en målmappe (mappestruktur vil beholdes):" #: templates/admin/filer/folder/choose_copy_destination.html:54 #: templates/admin/filer/folder/choose_move_destination.html:64 @@ -736,8 +721,7 @@ msgstr "" #: templates/admin/filer/folder/choose_images_resize_options.html:15 msgid "" "Your account doesn't have permissions to resize all of the selected images." -msgstr "" -"Din konto har ikke tillatelse til å endre størrelse på alle valgte bilder." +msgstr "Din konto har ikke tillatelse til å endre størrelse på alle valgte bilder." #: templates/admin/filer/folder/choose_images_resize_options.html:18 msgid "There are no images available to resize." @@ -747,35 +731,25 @@ msgstr "Det er ingen bilder å endre størrelse på." msgid "The following images will be resized:" msgstr "De følgende bildene vil få endret størrelse:" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" -msgstr "" -"Velg et eksisterende miniatyrbildevalg eller skriv inn parametre for endring " -"av størrelse:" - -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "Velg parametre for endring av størrelse:" +msgstr "Velg et eksisterende miniatyrbildevalg eller skriv inn parametre for endring av størrelse:" -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." -msgstr "" -"Advarsel: Bilder vil få sin størrelse endret, og originalene vil gå tapt. " -"Det kan være ønskelig å først gjøre en kopi for å beholde originalene." +msgstr "Advarsel: Bilder vil få sin størrelse endret, og originalene vil gå tapt. Det kan være ønskelig å først gjøre en kopi for å beholde originalene." -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "Endre størrelse" #: 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." -msgstr "" -"Din konto har ikke tillatelse til å flytte alle de valgte filene og/eller " -"mappene." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." +msgstr "Din konto har ikke tillatelse til å flytte alle de valgte filene og/eller mappene." #: templates/admin/filer/folder/choose_move_destination.html:47 msgid "There are no files and/or folders available to move." @@ -785,9 +759,7 @@ msgstr "Det er ingen filer og/eller mapper å flytte." msgid "" "The following files and/or folders will be moved to a destination folder " "(retaining their tree structure):" -msgstr "" -"De følgende filene og/eller mappene vil bli flyttet til en målmappe " -"(mappestruktur vil beholdes):" +msgstr "De følgende filene og/eller mappene vil bli flyttet til en målmappe (mappestruktur vil beholdes):" #: templates/admin/filer/folder/choose_move_destination.html:73 #: templates/admin/filer/folder/choose_move_destination.html:76 @@ -802,8 +774,7 @@ msgstr "" #: templates/admin/filer/folder/choose_rename_format.html:15 msgid "" "Your account doesn't have permissions to rename all of the selected files." -msgstr "" -"Din konto har ikke tillatelse til å endre navn på alle de valgte filene." +msgstr "Din konto har ikke tillatelse til å endre navn på alle de valgte filene." #: templates/admin/filer/folder/choose_rename_format.html:18 msgid "There are no files available to rename." @@ -813,9 +784,7 @@ msgstr "Det er ingen filer å endre navn på." msgid "" "The following files will be renamed (they will stay in their folders and " "keep original filename, only displayed filename will be changed):" -msgstr "" -"De følgende filene vil få endret navn (de vil forbli på samme sted og " -"beholde originalt filnavn, bare visningsnavn vil endres):" +msgstr "De følgende filene vil få endret navn (de vil forbli på samme sted og beholde originalt filnavn, bare visningsnavn vil endres):" #: templates/admin/filer/folder/choose_rename_format.html:59 msgid "Rename" @@ -970,11 +939,13 @@ msgstr "aktivert" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "" @@ -1036,10 +1007,12 @@ 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 "" @@ -1105,6 +1078,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1160,6 +1134,7 @@ msgid "Choose File" msgstr "" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1185,6 +1160,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/nl_NL/LC_MESSAGES/django.mo b/filer/locale/nl_NL/LC_MESSAGES/django.mo index 63a2fb59a47649b60061d117eec196d03e61e0a4..86d9b74d87293cafcd9ed88ae72628a4303b07d7 100644 GIT binary patch delta 5249 zcmY+`30zfG0>|;Ah=`z~qN1jN-~u8dB8q_E0*GrlDvDH;%OsM6O}UlbRC3Q{5_i+l zF^1Ai(G)8+m(ntHToad!7I*FQ@zab`W1so`-#yIK`S^d|b1v_m?Vk6ZGdEPbw!WHk zwLy&{L%B~LBg=h^>0iwl|9ZM=Ot(N|T44gV!5r*@v#}ADVNE=V{&*hg!hDPM@ix}N zN9cz&xoI9Yz&ge_W-XNzE|g#b-oy+HYwQj@0b9~uj2dVg2IDT&gwA3M`~|tyG;Lx` zGBTt~VdL&lI)u;)t!!RsHj)VE41^cfRUgH9f&-{$^W$Lrcx)_b> zFd4PdGz`Ul)_l}N7F!Qs7VRHV3+Nl{KB_^e6;DDP(sxk{+8gY+hvNVjwB=u-20D-I zlDUMM;J;AMyncu={4;U9=zYUbE6YYb+p!pc(@+ywfST}9)QWeacJMRXKI2eH<-!eA zhY`G6Z-_>n+U}^C_C?Knux;nqzmG=k+$7}Ont7;xHlps^f|}q~{h9r!{fjAhaVjLdBczlFiFpdX12=g!o%TQi8gf;ZfAb^*CyRmylgGJ`wIAjIhqc zeq6tZ{V|+bu~t(c8Q&C9VHeFl)TzIMzIX?{@t>#x|AShAM$?LXuoebcLs5T^M4g>Z z))Z8K15y2Fp%y$2o!V3;Q;{=KD_msT%TNQYL*1~={{3V0qkRZ9fpYZ03#fsGwUZDD8>KM2?v^~QAT0MzLog1TWmYC;9}?=$W7xu^*&Mn7DE zdK8N8P!3OwI`~BbkzM>sE^k~ z)E3XTe_w^_w*+q9$7IP|?gQ&@)5S4qQiV`CVL7jR_*>$E@n;o|Qw`gZB5R zfx~0m`%+LlnTDF+2;}$2j7JSP%eoj>(stHR(G9VkjLF0_9EeM>4_-li>{`XT181Rj zWIDFS*{F$?U^t#ZzAVi{)C7Y%yPu*g)O}-6*Plmr*fCqFXr-l?iic63;~I>r8xm1F z)CYCA24G7ZjyyH<66)}7LalHchF}>+V+GDdU%sV2$7QJTau}o~g9mz+ndKk02LycwfifxClM>qb68^VR!=_ z{oMNVwI?I6DW;=Vn2Vag9Q4N`)FIu3J+T-g@Fw=chDq)Y4aa`8*P;gg0oC7+n2e2i z(W4rg%>HZZa=8$I<54$Ew{Iv!eKRh_5G+MK)3eAiFTpiMCb$l@!@GL0|1GE-;exiZ61}k*`>96}g6b$1HL+BCy&neB&aqBHO=u3PzkR4f z`xWX@TthAJI<~}zs9(({POAIA)`8fN3!_mpoPz3L2{yu&$nKeKI2>;wyKZ{&9P}t= z@WLf?0QGl054E#UpORI`nC2)BLT?U6COSi@Xr*sq0ltr~U?@j@jjkh?OhTIbD>nmE zX_p{9?d(bNAn$~;!V^-A~W1al8SuF9Fs{!E6+hqqyXvD%tCG1 zG1MWvh{x~-df^U6lev++8P!(N=wR{H#xcq+!6z!3g$ zA2nb=fA>%YV=dZ|SRFfKO^nA-Oh$b=oDeyn{9h5)@6LNk4kMk zZvSxBwky$_>vvIy?E&i4)*9dr5QG{y6g5D!Z6~27kcmDx1a)6FYJz##7GFe1Teyyj z2H1#=aW|@i6Q~KC!*INWTDg88^k{rg6Awav3_}eNW82+PpN0$!!Lg__F$dNE!h!6+ zzHpY?H@t_B(LQP4a0fMkpHKt;Vy{={2&*GM)D{Pz7SIMY(L~gWbFBra3BQKAZyDCb z6@%D+&3p?NH1nO-k5F6pDe6#`V>MKH#>JenK8fk%82O4cBRz@AU&&jZ+W%j^qgp^d zChzI_Zz2;&G$|)4a|w^zQ#SD0oNOeT>}B#M*-2FN@hc*^WD0qo=*vtc!o~A?&DMwF z6SnTOrm~)lA;Dx9d5WmKL=KX@B#Nk{5PdJ`G3_INA^O7VOWr0b=Ux8yI@s1e!*6YU zGP2{2xj=A=618l1HkFzNVcO zyd;uBl0-6z$}m!w93?Zz5u#E?wtH&!H{aI9Ei!_%BVI(Mi;KCA;p8LIfYcxq$1HLy z<_!Lc%p#pg5b-7|sYE}U-AGl5qcWE0D_NzZi{}gMX|+al1L=6CPIk3gxC^mk;axFf~2ISw4z#uXOARJFs<+!OD&nAwqmHU zR4WYC#0YCrch7RqeJ`$V_9@)r z6KA#$ygsN#elAn23Rmj2VdiQ5_dybKHyS=sZSY8EQcP!bofy?hGgq zJJ8NRbvO^{$SgzkvmTpZIr`DRsiLCE{)}-L(Ab#H*cAhDBKlzt`r<6q1?HdzxE3|z zgQx)>#in=~TjF(`iUEA+UChIV*fheJSo${|sbt~^)QsLoE!}0*(%nLJScRQ1n5%0= zdSh*T0X48msEJI+SS&zIU>j;+d$13d;L})zoZJP{(f6iWH%id^OgVjxF$7Bx_9J5d8UV||Fv(QX&zOkh6hRxLqIcsFXZ-iY!zGpgc%HpxTOlGk!M z9o0it$%LT>*co-9bmX6z!HWj80yVQWsC&Bw>tP9M1y7;|d=@p~yQmfP@o-cJLNFO) zP!}AJdc$PY!17T`KOZ&nrMA7!p5Kfb*lyGcUO@J@Fop35ZO+~6H28c zm5!(pzl7QYIjEVuhPuESdwv79qg{*{_!)M^SZ-){%*1Z^CJx2Zs9V#hrL#8%Vk_EN z$mcy~4V9i8s6@@o#SWT=?Qtq@z-8#mr>L407>5T?9bdCHYHbYvOgb-ZFb_4LP3Vi4 zPy;VVO|&L&^4IepN<|$vMV)AaT7g8=zy{m%i>#|~F2}c^E*#mGi(w4vv2BGK;FHLz zn+d4R_`0P#rx)y}x$6b3OutXh)$25Qnv} zE2^VjsOzNKb~-u+aKHu0wC4>W!sFB8@MxJ2bkc1jQ3TnyIaH9_cMD~$+ z(9zi|QJtLc_I{|23sIljgj&gMSPu^%zena2sz1*+wsHsG;=q4UA6U_u)xd2y1n*)B z_UPg~b{^CwEk&)!WsJqEsDb%E;cV(o$d{@afqif$24gAmIgdGJPn<=KJdlT4OWhJR z<2X#lo~Y-!0M%g$YNd{#HrYw!Yu{WzZnOCwwV5OMHquOE(S@Cn#WTZjv7Y}zDrY$m z$ko+h8R|lnn2R+Nc$RS{Ho(280USg9CY(jBOeJas+VW;~oPl~@Ch8WCN8Vy`?eSe0 zsOSF!D$n8(9EJ7yiORrfI2sRQeGKp646rTMp`D1D`5@Hy!7$q%iRx%9CgFN)iRGx3 zeT4ndmv1+Z_X1Qj!eQ6~$D)3I7h1Ps6WSl5W>}6Iz^|x#8Pdzy%@Np_b`)w4jKh9d zgj%5sn1&5|I|F~QH|wtpPUZmr%yM3IuRcL7T{+gnYp8)%+4H}kHeUcc%7t;Ld-@cz zjm#YM#eJw-QHqW6Bh*C8QP;oOhxOOe+~+_zhO%DT1MwJ%y--V;iGH{Wbt~4RE>w&f z*g<>zIEKIf!9+4;!K{>#Kn_ zMqQv2>im<)>YAZA5{r<#W4=ZHndaPwWE_h+zty%qKU2};lE{u=kY*wd#ho}9AE0KO z#0|{BXRrW|<3=4H;B2NZF^+cgRHvgfT$b`n)xHtKenS8DGUSxD;#RFh(y&qOO~X+9NsW!Yw#K&;L;> zzu`bETQd`v;6%KRF_@O_n1wFdD^VTp$J%%l1MnQyz%um5%NUInsHem{S!i>DjvdPvl&u~T@jrw30tb+-tk*A_YKHNG6wQ`eCn=%`HP(^!5y{VGSnl5tVWWy=wl>|3>A<C1*0a6Re*%?%lFRnQ3EWKf*!BzftgS!JS2U8yN_%ht&Ly9d=gDyLDOpXX zkiQar6J8_5q==kx=Fcx6jmOI|8roQUi8h+bGvs&Pn)AY*^Omo9JxBBegb?lU>cU1h zf3uB3oJ5+D^CXXW+VFCZ6p#UA8mTTlsH`Ww$m^sxNh2yFiJp+tM3Xp0R1TB<-kS5f z(9qV!T{4QaCHh{Wc)WkpsdkIRk`GA(qQ_8Wxr6x(bI3x{g)}C9M5Ql@B8h5HW|MAY zBB?=CIyrd1z{cA8B@O)>8u4TmS!7SNz&FUB$!;>5yhc>+lPhEexkFUmBr#+IsY{xW z+a!xrmwYOVs~ec2x|XiGgi#5yjn0@!qDfEk4!KHHPLgFLl}sfUh{{p2guF{s%E%Ao zJ2fbwWTv;~{Ee}Xy0`xldvKmr)Fy|>MN*Hb%pto-9Qi#tKvag131mJQL@LQT@+zq= z<85UIb|8JoC;Szk5IVo6-{kDw&}6uKx_f-S+x@a@+{7$* s{*)P$^0IUCr?~SCWV%4OiHc$e_~-XhyVZp diff --git a/filer/locale/nl_NL/LC_MESSAGES/django.po b/filer/locale/nl_NL/LC_MESSAGES/django.po index fd7ea6206..976b53e97 100644 --- a/filer/locale/nl_NL/LC_MESSAGES/django.po +++ b/filer/locale/nl_NL/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: @@ -17,226 +17,217 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+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" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "Je hebt geen rechten om bestanden te uploaden." #: admin/clipboardadmin.py:17 msgid "Can't find folder to upload. Please refresh and try again" -msgstr "" -"Kan map niet vinden om te uploaden. Herlaad de pagina en probeer het opnieuw." +msgstr "Kan map niet vinden om te uploaden. Herlaad de pagina en probeer het opnieuw." #: admin/clipboardadmin.py:19 -msgid "Can't use this folder, Permission Denied. Please select another folder." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "Kan deze map niet gebruiken, rechten geweigerd. Kies een andere map." -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "Geavanceerd" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "canonieke URL" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." -msgstr "" -"De actie kan niet worden uitgevoerd omdat er zijn geen items geselecteerd." +msgstr "De actie kan niet worden uitgevoerd omdat er zijn geen items geselecteerd." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" msgstr[0] "%(total_count)s geselecteerd" msgstr[1] "Alle %(total_count)s geselecteerd" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "Inhoud van map %(folder_name)s" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "0 van %(cnt)s geselecteerd" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "Geen actie geselecteerd." -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "%(count)d bestanden zijn succesvol verplaatst naar het klembord." -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "Verplaats geselecteerde bestanden naar het klembord" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "Toegangsrechten succesvol uitgeschakeld voor %(count)d bestanden." -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "Toegangsrechten succesvol ingeschakeld voor %(count)d bestanden." -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "Schakel toegangsrechten in voor geselecteerde bestanden" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "Schakel toegangsrechten uit voor geselecteerde bestanden" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "%(count)d bestanden en/of mappen zijn succesvol verwijderd." -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "Bestanden en/of mappen kunnen niet worden verwijderd" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "Weet je het zeker?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "Verwijder bestanden en/of mappen" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "Verwijder geselecteerde bestanden en/of mappen" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "Er bestaan al mappen met de namen %s op de geselecteerde bestemming" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"%(count)d bestanden en of mappen zijn succesvol verplaatst naar map " -"'%(destination)s'." +msgstr "%(count)d bestanden en of mappen zijn succesvol verplaatst naar map '%(destination)s'." -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "Verplaats bestanden en/of mappen" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "Verplaats geselecteerde bestanden en/of mappen" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "%(count)d bestanden zijn succesvol hernoemd." -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "Hernoem bestanden" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"%(count)d bestanden en/of mappen zijn succesvol gekopieerd naar map " -"'%(destination)s'." +msgstr "%(count)d bestanden en/of mappen zijn succesvol gekopieerd naar map '%(destination)s'." -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "Kopieer bestanden en/of mappen" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "Kopieer geselecteerde bestanden en/of mappen" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "Afmetingen van %(count)d afbeeldingen zijn succesvol aangepast." -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "Afmetingen aanpassen" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "Afmetingen aanpassen van geselecteerde afbeeldingen" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." -msgstr "" -"Achtervoegsel wordt toegevoegd aan bestandsnaam van gekopieerde bestanden" +msgstr "Achtervoegsel wordt toegevoegd aan bestandsnaam van gekopieerde bestanden" -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." -msgstr "" -"Achtervoegsel moet een geldige waarde zijn in kleine letters, bv. " -"\"%(valid)s\"." +msgstr "Achtervoegsel moet een geldige waarde zijn in kleine letters, bv. \"%(valid)s\"." -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "Type \"%(key)s\" voor het hernoemen van bestandsnamen is ongeldig." -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "Ongeldige waarde voor het hernoemen van bestandsnamen: %(error)s." -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "thumbnail optie" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "breedte" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "hoogte" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "uitsnijden" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "opschalen" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "Thumbnail optie of afmetingsopties moet zijn geselecteerd" -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "Afmetingsopties moeten zijn geselecteerd" - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "Locatie van onderwerp" @@ -382,9 +373,7 @@ msgstr "Toegangsrechten uitgeschakeld" msgid "" "Disable any permission checking for this file. File will be publicly " "accessible to anyone." -msgstr "" -"Schakel controle op toegangsrechten uit voor dit bestand. Het bestand zal " -"publiek toegankelijk zijn voor iedereen" +msgstr "Schakel controle op toegangsrechten uit voor dit bestand. Het bestand zal publiek toegankelijk zijn voor iedereen" #: models/foldermodels.py:94 msgid "parent" @@ -477,6 +466,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "Ten minste één gebruiker, groep of \"iedereen\" moet worden geselecteerd." #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "Alle Mappen" @@ -495,6 +485,7 @@ msgid "Group: {group}" msgstr "Groep: {group}" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "Iedereen" @@ -507,6 +498,7 @@ msgid "Read" msgstr "Lezen" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "Toevoegen kinderen" @@ -561,6 +553,7 @@ msgid "Show table view" msgstr "Toon tabel weergave" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "Toon thumbnail weergave" @@ -628,27 +621,19 @@ msgid "" "Deleting the selected files and/or folders would result in deleting related " "objects, but your account doesn't have permission to delete the following " "types of objects:" -msgstr "" -"Het verwijderen van de geselecteerde bestanden en/of mappen resulteert in " -"het verwijderen van gerelateerde objecten. Je hebt echter geen " -"toegangsrechten voor het verwijderen van de volgende objecttypes:" +msgstr "Het verwijderen van de geselecteerde bestanden en/of mappen resulteert in het verwijderen van gerelateerde objecten. Je hebt echter geen toegangsrechten voor het verwijderen van de volgende objecttypes:" #: templates/admin/filer/delete_selected_files_confirmation.html:19 msgid "" "Deleting the selected files and/or folders would require deleting the " "following protected related objects:" -msgstr "" -"Het verwijderen van de geselecteerde bestanden en/of mappen leidt tot het " -"verwijderen van de volgende beschermde gerelateerde objecten:" +msgstr "Het verwijderen van de geselecteerde bestanden en/of mappen leidt tot het verwijderen van de volgende beschermde gerelateerde objecten:" #: templates/admin/filer/delete_selected_files_confirmation.html:27 msgid "" "Are you sure you want to delete the selected files and/or folders? All of " "the following objects and their related items will be deleted:" -msgstr "" -"Weet je zeker dat je de geselecteerde bestanden en/of folders wilt " -"verwijderen? Alle volgende objecten en gerelateerde items zullen worden " -"verwijderd: " +msgstr "Weet je zeker dat je de geselecteerde bestanden en/of folders wilt verwijderen? Alle volgende objecten en gerelateerde items zullen worden verwijderd: " #: templates/admin/filer/delete_selected_files_confirmation.html:46 #: templates/admin/filer/folder/choose_copy_destination.html:64 @@ -697,11 +682,9 @@ msgstr "Map icoon" #: 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." -msgstr "" -"Je account heeft geen toegangsrechten voor het kopiëren van de geselecteerde " -"bestanden en/of mappen" +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." +msgstr "Je account heeft geen toegangsrechten voor het kopiëren van de geselecteerde bestanden en/of mappen" #: templates/admin/filer/folder/choose_copy_destination.html:25 #: templates/admin/filer/folder/choose_copy_destination.html:31 @@ -725,9 +708,7 @@ msgstr "Er zijn geen bestanden en/of mappen beschikbaar om te kopiëren." msgid "" "The following files and/or folders will be copied to a destination folder " "(retaining their tree structure):" -msgstr "" -"De volgende bestanden en/of mappen zullen worden gekopieerd naar een " -"bestemmingsmap (structuur blijft behouden):" +msgstr "De volgende bestanden en/of mappen zullen worden gekopieerd naar een bestemmingsmap (structuur blijft behouden):" #: templates/admin/filer/folder/choose_copy_destination.html:54 #: templates/admin/filer/folder/choose_move_destination.html:64 @@ -747,47 +728,35 @@ msgstr "Het is niet toegestaan om bestanden naar dezelfde map te kopiëren" #: templates/admin/filer/folder/choose_images_resize_options.html:15 msgid "" "Your account doesn't have permissions to resize all of the selected images." -msgstr "" -"Je account heeft geen toegangsrechten om afmetingen van alle geselecteerde " -"afbeeldingen aan te passen." +msgstr "Je account heeft geen toegangsrechten om afmetingen van alle geselecteerde afbeeldingen aan te passen." #: templates/admin/filer/folder/choose_images_resize_options.html:18 msgid "There are no images available to resize." -msgstr "" -"Er zijn geen afbeeldingen beschikbaar voor het aanpassen van afmetingen." +msgstr "Er zijn geen afbeeldingen beschikbaar voor het aanpassen van afmetingen." #: templates/admin/filer/folder/choose_images_resize_options.html:20 msgid "The following images will be resized:" msgstr "De afmetingen van de volgende afbeeldingen zullen worden aangepast:" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" msgstr "Kies een bestaande thumbnail optie of voer afmetingsopties in:" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "Selecteer afmetingsopties:" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." -msgstr "" -"Waarschuwing: bestaande afmetingen van afbeeldingen zullen worden aangepast. " -"Oorspronkelijke bestanden zullen verloren gaan. Maak eventueel eerst een " -"kopie om de oorspronkelijke bestanden te behouden." +msgstr "Waarschuwing: bestaande afmetingen van afbeeldingen zullen worden aangepast. Oorspronkelijke bestanden zullen verloren gaan. Maak eventueel eerst een kopie om de oorspronkelijke bestanden te behouden." -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "Afmetingen aanpassen" #: 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." -msgstr "" -"Je account heeft geen toegangsrechten om alle geselecteerde bestanden en/of " -"mappen te verplaatsen." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." +msgstr "Je account heeft geen toegangsrechten om alle geselecteerde bestanden en/of mappen te verplaatsen." #: templates/admin/filer/folder/choose_move_destination.html:47 msgid "There are no files and/or folders available to move." @@ -797,9 +766,7 @@ msgstr "Er zijn geen bestanden en/of mappen beschikbaar om te verplaatsen." msgid "" "The following files and/or folders will be moved to a destination folder " "(retaining their tree structure):" -msgstr "" -"De volgende bestanden en/of mappen zullen worden verplaatst naar een " -"bestemmingsmap (huidige mapstructuur blijft behouden): " +msgstr "De volgende bestanden en/of mappen zullen worden verplaatst naar een bestemmingsmap (huidige mapstructuur blijft behouden): " #: templates/admin/filer/folder/choose_move_destination.html:73 #: templates/admin/filer/folder/choose_move_destination.html:76 @@ -814,9 +781,7 @@ msgstr "Het is niet toegestaan om bestanden naar dezelfde map te verplaatsen" #: templates/admin/filer/folder/choose_rename_format.html:15 msgid "" "Your account doesn't have permissions to rename all of the selected files." -msgstr "" -"Je account heeft onvoldoende toegangsrechten om alle geselecteerde bestanden " -"te hernoemen." +msgstr "Je account heeft onvoldoende toegangsrechten om alle geselecteerde bestanden te hernoemen." #: templates/admin/filer/folder/choose_rename_format.html:18 msgid "There are no files available to rename." @@ -826,10 +791,7 @@ msgstr "Er zijn geen bestanden beschikbaar om te hernoemen." msgid "" "The following files will be renamed (they will stay in their folders and " "keep original filename, only displayed filename will be changed):" -msgstr "" -"De volgende bestanden zullen worden hernoemd (de oorspronkelijke " -"mapstructuur en bestandsnamen blijven behouden, alleen de weergave zal " -"worden gewijzigd):" +msgstr "De volgende bestanden zullen worden hernoemd (de oorspronkelijke mapstructuur en bestandsnamen blijven behouden, alleen de weergave zal worden gewijzigd):" #: templates/admin/filer/folder/choose_rename_format.html:59 msgid "Rename" @@ -984,11 +946,13 @@ msgstr "ingeschakeld" #: templates/admin/filer/folder/directory_table_list.html:144 #, 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 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "Download '%(item_label)s'" @@ -1050,10 +1014,12 @@ msgstr "Selecteer alle %(total_count)s" #: 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 "Alles selecteren" #: templates/admin/filer/folder/directory_thumbnail_list.html:77 +#| msgid "Filer" msgid "Files" msgstr "Bestanden" @@ -1119,6 +1085,7 @@ msgstr "Uitvouwen" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "Bestand ontbreekt" @@ -1174,38 +1141,37 @@ msgid "Choose File" msgstr "Kies bestand" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "Kies Map" #: validation.py:19 #, python-brace-format msgid "File \"{file_name}\": Upload denied by site security policy" -msgstr "" -"Bestand \"{file_name}\": Upload geweigerd door het beveiligingsbeleid van de " -"site" +msgstr "Bestand \"{file_name}\": Upload geweigerd door het beveiligingsbeleid van de site" #: validation.py:22 #, python-brace-format msgid "File \"{file_name}\": {file_type} upload denied by site security policy" -msgstr "" -"Bestand \"{file_name}\": {file_type} upload geweigerd door het " -"beveiligingsbeleid van de site" +msgstr "Bestand \"{file_name}\": {file_type} upload geweigerd door het beveiligingsbeleid van de site" #: validation.py:33 #, python-brace-format msgid "File \"{file_name}\": HTML upload denied by site security policy" -msgstr "" -"Bestand \"{file_name}\": HTML upload geweigerd door het beveiligingsbeleid " -"van de site" +msgstr "Bestand \"{file_name}\": HTML upload geweigerd door het beveiligingsbeleid van de site" #: validation.py:71 #, python-brace-format msgid "" "File \"{file_name}\": Rejected due to potential cross site scripting " "vulnerability" -msgstr "" -"Bestand \"{file_name}\": Afgewezen wegens mogelijke kwetsbaarheid voor cross-" -"site scripting" +msgstr "Bestand \"{file_name}\": Afgewezen wegens mogelijke kwetsbaarheid voor cross-site scripting" + +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/nn/LC_MESSAGES/django.mo b/filer/locale/nn/LC_MESSAGES/django.mo index 9c240da45da10c76bca64f5d6277803183fea9cc..b71b810a3b4e579666be14ba589351441ec052fc 100644 GIT binary patch delta 3385 zcmYk;e@s?Y9LMp40`kKL5TOSY6;ysGDX2gq31SlYBOk>dXeuIF7={{YXh|2fL{Usq z3TfJGI%hvtlm5Wwa#@YGv{IY8`D0qH)}&$OG*=tFKhJYup7Fh}bMAfaJ?DJyxkrCn ze!R@N9_im?C@n-B(cy2*1w0wdffD30CKH1(8uPFZ&clAV1cPu5ZpRJCpYaPbW+;YZ zAdbZ$n2kxe5C<9Km|7}%oH&R9cpby>7LLKYsIeq*lCha|jKxe;2Od-hRX7kg;&5!j z3j7?8Vq%0b{qZbn05>s_{!I|mP{*TD56Zw$%)vw~M9sJod*ONv!3{VJw_+3?MGfpE zK7tof8T|uwe@LWn0+EG5=9Fj#d z!@2}Lv{z#Wet}u|H);)yWC6{@QcTBBqRGEfe1j877)Y;rz$nbY8eD}ZQ13F4(bVG} z)O`bEj7i0OREL$;_c59FB}~CC%)%7XITDwmCQ=_u{*{47PSoH*EXKG2KG)$i+GlV& zx_K|GN3$HYD66nHZbCh<7L}1Y)K}4LJ%q~a2dMknP|rE-P+@_Za~Og*tsSV8-?#1m zP!I0Iiqh|6Q13Pc)lmj&kxfK(P=LDMW7~64Yoi2tlv#lquv1Hg1#0S$b!GOWe)y5~ zIFfzShPvSgd;X$rUqub%7u2fmM80d&kAnt~X3aoNARE=+G^8KLET*Cvl%Z}|WnGK9 zVLfU9+mN?l4xm!kX0NxS?z@ai@io+dZlf}C-(K%RP0W8V8nNZ?V3Mdf;i)KJYDSadn_RS2yW+1}C5f*o1n;EtrW%(B)9M zLPe?l9m$@#gL;6AgE~k@y|XOjk}1M+T!)A8D(bUsv|;Z#&6cG&a#P;2EF z@@1Pg)WFZ9*3w@|7U<}zvm|KbxkD21%y zGE_%9kz|+;aRL5_+NehGqm@|VP${R*%VHoZ2QNO=t{T2DF9n(og?=+AlsR0bZ5FBUCMcp_R^@@tHHx{Eh zUW9su<*3zPY1{Rv{bP^ykUf7K13BM@Zhil!?1fAA!ZqtHd;T`+UH^&k7?tiDNG7V| z2^fZxP$~D=^UF{jm7@l{8a06`)S9ZsDEc?`RCq1sJ=EuR2KAtyQ8(O0W#$0}qic-s z6}eFz47aADAMKZkT|@z)wW8g#gjh`|Lw$(Fgo?v6y(O39W5m!w$WNbn@R#PlV~EeZd9Utco(RuFA>_P^q(9R=S>bCZ`F6$0-K1Uht92}u1|8G zJ@-03XY2Jik;o$|2`%I)#B0PJqPuLRl1)q{_7nOdws$A3jE2f)VmjecgR-08tMhIs zPhlycvYy!Ht+7$z3&cnwiwGcw5%Y<+36-}9?e}wtWrRvJQRvMd6>UH*L^z@HBH?aL da9#InjSUYDXf25P*ws2<=){25y5!Q3{{injDwY5M delta 3437 zcmYk;dra0<9LMp4@_-jW&>#`=0p%(PnqsLTs9B;Y7ZJ25K_&18reKnnCp7Y20x90+ zthtz*vy}S7%rgHn&0N?ro4H(WG?&%9mF2AW=l45oo;}~^b=Bkn>zCN{*FL70vKScqPn zjR{zfPZ;Af2gqbm@i|7~L-b((KF07d1Nj<`X{bJxA$>FpQPmbeFE*9C^GR>Oh7eUg?dmm_QpE3$3jLp`Vf)sbT4 zW6Jr`KPYvE86NL9sBex>gS^N_HEGxj z$60ewQ(k1tvr!M8kGj4NwZ@I8hMG{DZ4c`C@1yQNY|BScd&GBw44pAwqSIq!{m~hnfskVNEEssWZBpYKf7x|cKzSM!O)+S^CKC_dI8f-%~a2z#) zFHkp}v7SebxC7OJUy#)>|Da|re4zV#9O}Ld)D(|Fb!akbMvCn3rRdT5FDJ9n&zMR~ zH6!1nM*16a!c1tq`;JdW%~THhV<8U3 z5-h|<`}+^^%)f_*ucM}NMT+~z zJBaGgSycUfTc4QfZoX;wJoPJ)k2%Fx54?#wb-sIKc9H49-39m_=HYGBjT3pg+=Bdh zFc&chJFy$y!C?FgHIp8uQNMdp4W(jl%s^c?9(7%wtIsST6GFv$)D6wny{L135Vf`^ zP#yRVwU)nHZ=>#eh+3k+VeTt92-R>XY6+uJr)ZEZXJM$$|0E~F?zcZwqBhYIklvnze087hW-5y)Bx|IrrdwH+o1>ypnVffraKNs-I$2lRH>-l znuV;ADMB5)1`NYi)b)o@Gjjxc;%U?pe2p5&W$VxAM|majHlbzpaWb4ymf=!@x2f}* zd>NIv$4OayKTYHj%LrbUrk+sJ&Q=GXAzFxd;z>ej8&OJ3P=U0Eh#}O`V!i*zl2O`3 zXhUsKfwY@grPH*pAZ8GS1gF+{kARbOlt&S(i3X>J|CCYxQ@pCO932TX>N9q=m*OA<5>)ygDo8OA#h-{*U7)m@xyg@X(<0nUI zB*qX^iM@nQ#AZTizKiq9okl*`mbW9P%6U~!!MV2nHQZ?PBe0rCA)X>UL>w`T*wwZB z-lY&lj3?$1N)beklXKr#`^bmd@^b9o?iYO3&r?-Xv%I4HY{)=Q%f!g&_G|q<4(?uD XvABI{>|Bpue#@1V^!AQ~vR?lKb?G-! diff --git a/filer/locale/nn/LC_MESSAGES/django.po b/filer/locale/nn/LC_MESSAGES/django.po index add59b2a5..a8bfd944f 100644 --- a/filer/locale/nn/LC_MESSAGES/django.po +++ b/filer/locale/nn/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: @@ -11,18 +11,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+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-" -"filer/language/nn/)\n" -"Language: nn\n" +"Language-Team: Norwegian Nynorsk (http://app.transifex.com/divio/django-filer/language/nn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -31,204 +32,196 @@ 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." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "Avansert" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." -msgstr "" -"Element må vere vald for å utføre handlingar på dei. Ingen element vart " -"endra." +msgstr "Element må vere vald for å utføre handlingar på dei. Ingen element vart endra." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" msgstr[0] "%(total_count)s vald" msgstr[1] "Alle %(total_count)s vald" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "0 av %(cnt)s vald" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "Ingen handling vald." -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "Flytta %(count)d filer til utklippstavla." -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "Flytt valde filer til utklippstavla" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "Fjerna løyve for %(count)d filer." -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "Satte løyve for %(count)d filer." -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "Sett løyve for valde filer" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "Fjern løyve for valde filer" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "Sletta %(count)d filer og/eller mapper." -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "Kan ikkje slette filer og/eller mapper" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "Er du sikker?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "Slett filer og/eller mapper" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "Slett valde filer og/eller mapper" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "Flytta %(count)d filer og/eller mapper til mappa \"%(destination)s\"." -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "Flytt filer og/eller mapper" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "Flytt valde filer og/eller mapper" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "Endra namn på %(count)d filer." -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "Endre namn på filer" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"Kopierte %(count)d filer og/eller mapper til mappa \"%(destination)s\"." +msgstr "Kopierte %(count)d filer og/eller mapper til mappa \"%(destination)s\"." -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "Kopier filer og/eller mapper" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "Kopier valde filer og/eller mapper" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "Endra storleik på %(count)d bilete." -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "Endre storleik på bilete" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "Endre storleik på valde bilete" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "Ending som vert tilføyd filnamn på kopierte filer." -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." -msgstr "" -"Ending bør vere ein gyldig, enkel del av filnamnet med små bokstavar, som " -"\"%(valid)s\"." +msgstr "Ending bør vere ein gyldig, enkel del av filnamnet med små bokstavar, som \"%(valid)s\"." -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "Ugyldig nykel \"%(key)s\" for endring av namn." -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "Ugyldig format for endring av namn: %(error)s" -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "miniatyrbileteval" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "breidd" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "høgd" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "skjering" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "oppskalering" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "Miniatyrbileteval eller parametrar for endring av storleik må veljast." -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "Parametrar for endring av storleik må veljast." - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "Fokuseringsområde" @@ -467,6 +460,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -485,6 +479,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -497,6 +492,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -551,6 +547,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -618,26 +615,19 @@ msgid "" "Deleting the selected files and/or folders would result in deleting related " "objects, but your account doesn't have permission to delete the following " "types of objects:" -msgstr "" -"Å slette dei valde filene og/eller mappene ville resultere i sletting av " -"relaterte objekt, men din konto har ikkje løyve til å slette objekt av " -"følgjande typer:" +msgstr "Å slette dei valde filene og/eller mappene ville resultere i sletting av relaterte objekt, men din konto har ikkje løyve til å slette objekt av følgjande typer:" #: templates/admin/filer/delete_selected_files_confirmation.html:19 msgid "" "Deleting the selected files and/or folders would require deleting the " "following protected related objects:" -msgstr "" -"Å slette dei valde filene og/eller mappene ville kreve å slette følgjande " -"beskytta relaterte objekt:" +msgstr "Å slette dei valde filene og/eller mappene ville kreve å slette følgjande beskytta relaterte objekt:" #: templates/admin/filer/delete_selected_files_confirmation.html:27 msgid "" "Are you sure you want to delete the selected files and/or folders? All of " "the following objects and their related items will be deleted:" -msgstr "" -"Er du sikker på at du vil slette dei valde filene og/eller mappene? Alle dei " -"følgjande objekta og deira relaterte element vil verte sletta:" +msgstr "Er du sikker på at du vil slette dei valde filene og/eller mappene? Alle dei følgjande objekta og deira relaterte element vil verte sletta:" #: templates/admin/filer/delete_selected_files_confirmation.html:46 #: templates/admin/filer/folder/choose_copy_destination.html:64 @@ -686,11 +676,9 @@ msgstr "Mappeikon" #: 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." -msgstr "" -"Din konto har ikkje løyve til å kopiere alle dei valde filene og/eller " -"mappene." +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." +msgstr "Din konto har ikkje løyve til å kopiere alle dei valde filene og/eller mappene." #: templates/admin/filer/folder/choose_copy_destination.html:25 #: templates/admin/filer/folder/choose_copy_destination.html:31 @@ -714,9 +702,7 @@ msgstr "Det er ingen filer og/eller mapper å kopiere." msgid "" "The following files and/or folders will be copied to a destination folder " "(retaining their tree structure):" -msgstr "" -"Dei følgjande filene og/eller mappene vil verte kopiert til ein målmappe " -"(mappestruktur vil behaldes):" +msgstr "Dei følgjande filene og/eller mappene vil verte kopiert til ein målmappe (mappestruktur vil behaldes):" #: templates/admin/filer/folder/choose_copy_destination.html:54 #: templates/admin/filer/folder/choose_move_destination.html:64 @@ -746,34 +732,25 @@ msgstr "Det er ingen bilete å endre storleik på." msgid "The following images will be resized:" msgstr "Dei følgjande bileta vil få endra storleik:" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" -msgstr "" -"Vel eit eksisterande miniatyrbileteval eller skriv inn parametrar for " -"endring av storleik:" +msgstr "Vel eit eksisterande miniatyrbileteval eller skriv inn parametrar for endring av storleik:" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "Vel parametrar for endring av storleik:" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." -msgstr "" -"Åtvaring: Bileta vil få sin storleik endra, og originalane vil gå tapt. Det " -"kan være ønskjeleg å først gjere ein kopi for å behalde originalane." +msgstr "Åtvaring: Bileta vil få sin storleik endra, og originalane vil gå tapt. Det kan være ønskjeleg å først gjere ein kopi for å behalde originalane." -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "Endre storleik" #: 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." -msgstr "" -"Din konto har ikke løyve til å flytte alle dei valde filene og/eller mappene." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." +msgstr "Din konto har ikke løyve til å flytte alle dei valde filene og/eller mappene." #: templates/admin/filer/folder/choose_move_destination.html:47 msgid "There are no files and/or folders available to move." @@ -783,9 +760,7 @@ msgstr "Det er ingen filer og/eller mapper å flytte." msgid "" "The following files and/or folders will be moved to a destination folder " "(retaining their tree structure):" -msgstr "" -"Dei følgjande filene og/eller mappene vil verte flytta til ein målmappe " -"(mappestruktur vil behaldes):" +msgstr "Dei følgjande filene og/eller mappene vil verte flytta til ein målmappe (mappestruktur vil behaldes):" #: templates/admin/filer/folder/choose_move_destination.html:73 #: templates/admin/filer/folder/choose_move_destination.html:76 @@ -810,9 +785,7 @@ msgstr "Det er ingen filer å endre namn på." msgid "" "The following files will be renamed (they will stay in their folders and " "keep original filename, only displayed filename will be changed):" -msgstr "" -"Dei følgjande filene vil få endra namn (dei vil framleis vere på samme stad " -"og behalde originalt filnamn, berre visningsnamn vil verte endra):" +msgstr "Dei følgjande filene vil få endra namn (dei vil framleis vere på samme stad og behalde originalt filnamn, berre visningsnamn vil verte endra):" #: templates/admin/filer/folder/choose_rename_format.html:59 msgid "Rename" @@ -967,11 +940,13 @@ msgstr "aktivert" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "" @@ -1033,10 +1008,12 @@ 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 "" @@ -1102,6 +1079,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1157,6 +1135,7 @@ msgid "Choose File" msgstr "" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1182,6 +1161,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/pl/LC_MESSAGES/django.mo b/filer/locale/pl/LC_MESSAGES/django.mo index 968f62b88c8e9fb59081dfe026d200e24bfcaea1..cf95cba53aa33914ace2b8cfd70844cb2188ae33 100644 GIT binary patch delta 4463 zcmYk1xpvvANb-X>!RW z3QNi;DU>W-bmiy>aiVi*9n{Gm<&@r^-}BYkb9{cU@Ar9r&-eCxpWlu>ResM_`Z+&E zdR7{aqvSR+H_(_UKVwdZ>Z~z6y~cFJRE)<0?1N8X6uyJpVvb-l{2KXZPVjLnUc|-t zJBDFJq}$$NY;TNX>L{pzFEAFrLv{2!w!`QaZb#{uOno?p;8U1|RTzLrusME(Nq7cR zF{mZMOw{*s(1XLU4gH&Z3Yy_`)C^Xj2DB1ma4mMmy*M4u;2W6B^y$M~#rx3H${qMb zY(u>gd*TLUrsg{g#;d4-UdJx z8EU`{sAqf>_3VE{wSOM9k{6MG#?#ilzkOTQKaLaGoX{6bQ8Sr}TH4tdft9F^Yf%GT zhnnF*)CwK9^>a9o`Zaq#onAGdL8t-dqxN;7txt(z{q=o4yE3k9XbphYnr5$OqVHK-^HJ>;quMV+4g3iV#wwpY{~8J& zPOP&RHlaG&fx6)Udhl!1W;=!&z**F5bP?6jRrKKBwtfROkszK6+r%_SO(Y4mQfU}T z|7Hk<04%f?p*G`W)D0D=0nNA9YwY<|r~$1{IO-YRgZiB)LT%EAu?n9?4InVd znC{pTc|lAz24V^FCYrJ&T4z8L$Z>`+jHWvHbsM-6BRK8`!_eT+|bm-rl(Q~v{*q$x>p zS7tf(r@jR>)1Oft`1f@03q=;uw8t>aMfK~9p`ejYz;K*`8sQ_TJ+TJUaWm@KoslU`y)bQ7bzOb)SQsu~v2ZHy={at~_o% zg?gWVMlHREj|j{}J*wf@3JZ|2n;Dpg>#;9h#(tQ<4pzMc^KmuOq-jL9kLkcghsS5~ zDLjGmaUlMMTH*{^nTdn39N)$*7@OfX)PP#*>!=Pp@d~KnBGi&EN1m#A7w^Q2sGsx{ zcB&@Wt3T_n*J3m$v;wnHOE?FkunM(=>(Gn4P)mLo^}WIY?k2k*i>WWdNq7P8#hg3% zjlfq>9sY*V7@plZ`=LFF{?OhFXbo z)WGLrEG|HOZxd<-w_6XQ+BuH;zH^pB9ED#{7Xq{0&E-XXArUp>WYi4$U;<`gB2Gnp zui9RJ8QW0bfSTAoY=u9d-m1%}cCI5UNM<#IjCn}hFY=;>k`yv zT7_}A)}G&w8t_rn${n+w#n#jt(GMRa%jw_uJbF;kp#dx+TUFuE>!NpcnJV^p2A{L# z2T;qa<1zBQuf%^&FwK^CVh+*9J3{ozP9>X3F#Y?E5BZ!-Qpg6ficBIp4!f95=pnqm zW)IOT_ZE4R+&t1L3@1#|w`#B5ynuQfuQsVaO4;ddPn0&f5JNec>?M843ZkQ(i|<`l z@kP?fp8FgZ+p>Oa#@q6HR=tMBwmcu-C0Tm@`r)Y{+QoO1c=9+IOLS;A>!>H6k!K07 zu~|*}6CIzDgT9jcTB{iaB$-8q5FP7D l9hpczAzkW6c-Q#X`?uWNto}@lzqj7MM^sS#-RU#K{sS6*trY+O delta 4539 zcmYk<3sl$T9mnx6Bv%mxL=;qzP`M~*ibg7;hEq|zbg`K>=cRc;NCcbO`jsYLA{EWd z8=}jsDOzD>TFKU2F2fzqmaTGbdfc(Iqp`Ni(+<``# z#SjeYU>1X6n2m|p4@Y7IR-vx*uno_*RTNagI#kPELG|P#RKxy&$#@>q@n1L}6KU0c zT!B2>vO1bg#R60ZwxQ~6!oK(g(qn6zXcmcC7{l`|k3tVDLbY%Ks)bdk1}sPQcm?XZ z^{56OL5;wB7>uo`if`fF7}?2;wptFVAtRAC*mTsZu0&52)lz7K+ps&WHjwMss|yAo34*Uo@ud|i@i||oQAq?q1&&(EcRF81U!TT@Fot#{vK02kHUN` z!Ftq?x1ip2Dl?`hjzU$i5C`M?s2==)3otarpOh82j{U!&?w_0LuY&cc2OoE~U@!K) zbjC4*!Z=ims!%;Rh-&$psGeOw_53>O!QZ;$K@3+6`*En_Y4{7wMSTYvkW1|(YVKTe z<}*XbYW>$zDCWck_3i7Co9EJo^NX?Xs9+IA3xiJA$Y`j95or6P(A+))u4;+e2Y8&9jZaCs38w$ z;xLUY3)PU(&he=GC!?o|XHifCmSG6ipn9|kb>j|aJ?h4NsQZqhRzWjrNWXIDZ=mW6 zXNKwiB-E=&K{c=shGBj$#$Oi<=YSqO3N^&zFgBRwgiI1E%jEly@1jPmJu{PUl5IrY z_c})6Vbu5HIBGJU#nt#FssXdIS*o}QSs+%IO>LnRKHvaL(oP|xXP2=LhI6$(C+-}3mA=8P!0SyYHlR=^S>AAs8{$Xs^S@_p3g^p<7-hPbO1FO&!QS~4XMYosC)by z6OfOYr68ke1=t@KpuUj1aW;O6YT$jG%)mk{!g;8M9mY63hEaG1)v!OKI&c~FoJc;0 znVLU1S^L+a!1>JZH85K($=>J1w4C;6pYLZqvUqG$z7m@$$C_nA-I_j0(#EuxsjHR>I z6-#gu-i!5^kDsHb1M&P!#BoR)Y!@=G?2pLnwqUM)68mEz9zYHCH7v#NP?K-weS916 z9IBotnfe;?2ILa^6jg5wGg5P|U z)KE^qSe%U-`X#9AA`1M;mWYqBKL}^wOZWiZC}8|2Qz#zhKd=rvvEPK6M4zLE^cn`? zx2QStJ!%fLqCQwDh5q%qs8=-t<8cf|<8)L#rKsyGQLpSdkAhBYLCw-#sG;4Dy73Lv z2%JPU=mP5c7Syu4ftsAHsL2*S+&>?WI-iUhiBwd>b1(%5pz84+q@W?3=3IoTs2X)c zEvDjDcl;P?a(#$8{{^bYe?xWPD)z!}P|LIP2>-efsPm(-GfqZ2=2m9!yBk~pES}RvEI(Xco)aVVk(xn+};LJ7*FV<|NY;0 z`wVs^^>^$qq1?yq&%WchCM17f>^RZ7-axc<^RXW}w_v&}pTTvmJPD`yWiRkoOl7Ud z87i=?B*#c0SxTNFn#E&@CfCo&kBPR_z^~cc_%T^UhLN3QDA9JB{5nwbm!*mt`M~e{ z@HD9;$>dRTd(+Z7OD2%sR{InrG_Y*Wc}vXu-c_mdRz zl3KBeJWsSeK_-%DQb&GEnu)fo>r}v;M zoVeqvM#=}sXm{*kXA?d~%G~}@r+AC3ar?o}8s|fJw<~Ak&s_NtjsIkJs>w2P(w#`d z4Du|gBHPF=(urh|*U2x5wpnB`Sx!0pzBadvXu?4ap=6$$RAXEC>{f`7Iy| z$ZI5l93k39ka6Ti5=K5Gr6h`sAs>;=B#u;&BBE^%X&^r(r$|p?Ju+sMSCv)HsmNTM z+Bh`!`QVVb<>ia#G&aUJhi&fPy-VZL, 2017\n" -"Language-Team: Polish (http://app.transifex.com/divio/django-filer/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://app.transifex.com/divio/django-filer/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && " -"(n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && " -"n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -35,26 +34,25 @@ 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." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "Zaawansowane" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "kanoniczny URL" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." -msgstr "" -"Należy zaznaczyć elementy aby wykonań na nich jakąś akcję. Nie zaznaczono " -"żadnych elementów." +msgstr "Należy zaznaczyć elementy aby wykonań na nich jakąś akcję. Nie zaznaczono żadnych elementów." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" @@ -63,179 +61,171 @@ msgstr[1] "zaznaczono %(total_count)s" msgstr[2] "Zaznaczono wszystkie %(total_count)s" msgstr[3] "Zaznaczono wszystkie %(total_count)s" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "0 z %(cnt)s zaznaczonych" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "Nie zaznaczono akcji." -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "Pomyślnie przeniesiono %(count)d plików do schowka." -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "Przenieś zaznaczone pliki do schowka" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "Pomyślnie wyłączono uprawnienia dla %(count)d plików." -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "Pomyślnie włączono uprawnienia dla %(count)d plików." -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "Włącz uprawnienia dla wybranych plików" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "Wyłącz uprawnienia dla wybranych plików" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "Pomyślnie usunięto %(count)d plików i/lub katalogów." -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "Nie można usunąć plików i/lub katalogów" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "Czy na pewno?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "Usuń pliki i/lub katalogi" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "Usuń zaznaczone pliki i/lub katalogi" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "Katalogi z nazwami %s już istnieją w podanej lokacji" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"Pomyślnie przeniesiono %(count)d plików i/lub katalogów do '%(destination)s'." +msgstr "Pomyślnie przeniesiono %(count)d plików i/lub katalogów do '%(destination)s'." -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "Przenieś pliki i/lub katalogi" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "Przenieś zaznaczone pliki i/lub katalogi" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "Pomyślnie zmieniono nazwę %(count)d plików." -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "Zmień nazwy plików" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"Pomyślnie skopiowano %(count)d plików i/lub katalogów di '%(destination)s'." +msgstr "Pomyślnie skopiowano %(count)d plików i/lub katalogów di '%(destination)s'." -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "Skopiuj pliki i/lub katalogi" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "Skopiuj zaznaczone pliki i/lub katalogi" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "Pomyślnie zmieniono rozmiar %(count)d obrazów." -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "Zmień rozmiar obrazów" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "Zmień rozmiar zaznaczonych obrazów" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "Przyrostek, który zostanie dodany do nazw skopiowanych plików." -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." -msgstr "" -"Przyrostek powinien być poprawną, prostą, składającą się z małych liter " -"częścią nazwy pliku, np. \"%(valid)s\"" +msgstr "Przyrostek powinien być poprawną, prostą, składającą się z małych liter częścią nazwy pliku, np. \"%(valid)s\"" -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "Nieznany format klucza \"%(key)s\"." -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "Niepoprawny format: %(error)s." -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "opcje miniatur" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "szerokość" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "wysokość" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "przytnij" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "skaluj" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "Opcja miniatury albo parametry zmiany rozmiaru muszą być określone." -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "Parametry zmiany rozmiaru muszą być określone." - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "Współrzędne obiektu" @@ -381,9 +371,7 @@ msgstr "Uprawnienia wyłączone" msgid "" "Disable any permission checking for this file. File will be publicly " "accessible to anyone." -msgstr "" -"Wyłącz jakiekolwiek sprawdzanie uprawnień dla tego pliku. Plik będzie " -"dostępny publicznie dla wszystkich." +msgstr "Wyłącz jakiekolwiek sprawdzanie uprawnień dla tego pliku. Plik będzie dostępny publicznie dla wszystkich." #: models/foldermodels.py:94 msgid "parent" @@ -476,6 +464,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -494,6 +483,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -506,6 +496,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -560,6 +551,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -627,26 +619,19 @@ msgid "" "Deleting the selected files and/or folders would result in deleting related " "objects, but your account doesn't have permission to delete the following " "types of objects:" -msgstr "" -"Usunięcie zaznaczonych plików i/lub katalogów spowoduje usunięcie " -"powiązanych obiektów, niestety Twoje konto nie posiada uprawnień do " -"usunięcia następujących typów obiektów:" +msgstr "Usunięcie zaznaczonych plików i/lub katalogów spowoduje usunięcie powiązanych obiektów, niestety Twoje konto nie posiada uprawnień do usunięcia następujących typów obiektów:" #: templates/admin/filer/delete_selected_files_confirmation.html:19 msgid "" "Deleting the selected files and/or folders would require deleting the " "following protected related objects:" -msgstr "" -"Usunięcie zaznaczonych plików i/lub katalogów wymaga usunięcia następujących " -"chronionych obiektów powiązanych:" +msgstr "Usunięcie zaznaczonych plików i/lub katalogów wymaga usunięcia następujących chronionych obiektów powiązanych:" #: templates/admin/filer/delete_selected_files_confirmation.html:27 msgid "" "Are you sure you want to delete the selected files and/or folders? All of " "the following objects and their related items will be deleted:" -msgstr "" -"Czy na pewno chcesz usunąć zaznaczone pliki i/lub katalogi? Następujące " -"obiekty oraz powiązane z nimi elementy zostaną usunięte:" +msgstr "Czy na pewno chcesz usunąć zaznaczone pliki i/lub katalogi? Następujące obiekty oraz powiązane z nimi elementy zostaną usunięte:" #: templates/admin/filer/delete_selected_files_confirmation.html:46 #: templates/admin/filer/folder/choose_copy_destination.html:64 @@ -695,11 +680,9 @@ msgstr "Ikona katalogu" #: 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." -msgstr "" -"Twoje konto nie ma uprawnień do skopiowania wszystkich zaznaczonych plików i/" -"lub katalogów." +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." +msgstr "Twoje konto nie ma uprawnień do skopiowania wszystkich zaznaczonych plików i/lub katalogów." #: templates/admin/filer/folder/choose_copy_destination.html:25 #: templates/admin/filer/folder/choose_copy_destination.html:31 @@ -723,9 +706,7 @@ msgstr "Brak dostępnych plików i/lub katalogów do skopiowania." msgid "" "The following files and/or folders will be copied to a destination folder " "(retaining their tree structure):" -msgstr "" -"Następujące pliki i/lub katalogi zostaną skopiowane do katalogu docelowego " -"(z zachowaniem ich struktury):" +msgstr "Następujące pliki i/lub katalogi zostaną skopiowane do katalogu docelowego (z zachowaniem ich struktury):" #: templates/admin/filer/folder/choose_copy_destination.html:54 #: templates/admin/filer/folder/choose_move_destination.html:64 @@ -745,9 +726,7 @@ msgstr "Nie można kopiować plików to tego samego folderu" #: templates/admin/filer/folder/choose_images_resize_options.html:15 msgid "" "Your account doesn't have permissions to resize all of the selected images." -msgstr "" -"Twoje konto nie ma uprawnień do zmiany rozmiaru wszystkich zaznaczonych " -"obrazów." +msgstr "Twoje konto nie ma uprawnień do zmiany rozmiaru wszystkich zaznaczonych obrazów." #: templates/admin/filer/folder/choose_images_resize_options.html:18 msgid "There are no images available to resize." @@ -757,34 +736,25 @@ msgstr "Brak dostępnych obrazów do zmiany ich rozmiaru." msgid "The following images will be resized:" msgstr "Następujące obrazy będą miały zmieniony rozmiar:" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" -msgstr "" -"Wybierz istniejącą opcje miniatury albo wprowadź parametry zmiany rozmiaru:" - -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "Wybierz parametry zmiany rozmiaru:" +msgstr "Wybierz istniejącą opcje miniatury albo wprowadź parametry zmiany rozmiaru:" -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." -msgstr "" -"Uwaga: Rozmiary obrazów zostanie zmienione w miejscu a oryginały zostaną " -"utracone. W celu zachowania oryginałów, najpierw wykonaj ich kopię." +msgstr "Uwaga: Rozmiary obrazów zostanie zmienione w miejscu a oryginały zostaną utracone. W celu zachowania oryginałów, najpierw wykonaj ich kopię." -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "Zmień rozmiar" #: 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." -msgstr "" -"Twoje konto nie ma uprawnień do przeniesienia wszystkich zaznaczonych plików " -"i/lub katalogów." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." +msgstr "Twoje konto nie ma uprawnień do przeniesienia wszystkich zaznaczonych plików i/lub katalogów." #: templates/admin/filer/folder/choose_move_destination.html:47 msgid "There are no files and/or folders available to move." @@ -794,9 +764,7 @@ msgstr "Brak plików i/lub folderów do przeniesienia." msgid "" "The following files and/or folders will be moved to a destination folder " "(retaining their tree structure):" -msgstr "" -"Następujące pliki i/lub katalogi zostaną przeniesione do katalogu docelowego " -"(z zachowaniem ich struktury):" +msgstr "Następujące pliki i/lub katalogi zostaną przeniesione do katalogu docelowego (z zachowaniem ich struktury):" #: templates/admin/filer/folder/choose_move_destination.html:73 #: templates/admin/filer/folder/choose_move_destination.html:76 @@ -811,9 +779,7 @@ msgstr "Nie można przenieść plików do tego samego folderu" #: templates/admin/filer/folder/choose_rename_format.html:15 msgid "" "Your account doesn't have permissions to rename all of the selected files." -msgstr "" -"Twoje konto nie posiada uprawnień do zmiany nazwy wszystkich zaznaczonych " -"plików." +msgstr "Twoje konto nie posiada uprawnień do zmiany nazwy wszystkich zaznaczonych plików." #: templates/admin/filer/folder/choose_rename_format.html:18 msgid "There are no files available to rename." @@ -823,10 +789,7 @@ msgstr "Brak dostępnych plików do zmiany nazwy." msgid "" "The following files will be renamed (they will stay in their folders and " "keep original filename, only displayed filename will be changed):" -msgstr "" -"Następujące pliki będą miały zmienioną nazwę (pliki pozostaną w swoich " -"katalogach i zachowają oryginalne nazwy, zmieni się jedynie ich wyświetlana " -"nazwa):" +msgstr "Następujące pliki będą miały zmienioną nazwę (pliki pozostaną w swoich katalogach i zachowają oryginalne nazwy, zmieni się jedynie ich wyświetlana nazwa):" #: templates/admin/filer/folder/choose_rename_format.html:59 msgid "Rename" @@ -985,11 +948,13 @@ msgstr "włączony" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "Kanoniczny url '%(item_label)s'" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "Pobierz '%(item_label)s'" @@ -1051,10 +1016,12 @@ msgstr "Wybierz wszystkie %(total_count)s" #: 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 "" @@ -1122,6 +1089,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1177,6 +1145,7 @@ msgid "Choose File" msgstr "Wybierz plik" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1202,6 +1171,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/pt/LC_MESSAGES/django.po b/filer/locale/pt/LC_MESSAGES/django.po index 3b81472eb..76f5d041d 100644 --- a/filer/locale/pt/LC_MESSAGES/django.po +++ b/filer/locale/pt/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,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+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/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://app.transifex.com/divio/django-filer/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % " -"1000000 == 0 ? 1 : 2;\n" +"Language: pt\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -30,24 +30,25 @@ 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." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." msgstr "" -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" @@ -55,175 +56,171 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "" -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "" -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "" -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "" -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "" -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "" -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." msgstr "" -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "" -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "" -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "" -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "" - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "" @@ -462,6 +459,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -480,6 +478,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -492,6 +491,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -546,6 +546,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -674,8 +675,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 @@ -730,28 +731,24 @@ msgstr "" msgid "The following images will be resized:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" 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 @@ -944,11 +941,13 @@ msgstr "" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "" @@ -1010,10 +1009,12 @@ 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 "" @@ -1080,6 +1081,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1135,6 +1137,7 @@ msgid "Choose File" msgstr "" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1160,6 +1163,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/pt_BR/LC_MESSAGES/django.mo b/filer/locale/pt_BR/LC_MESSAGES/django.mo index 23c9c984646ba8af2c65599967e2fa82330d25d9..7dc37a6c12fe6179bea8e6d52945f2836db016e2 100644 GIT binary patch delta 4511 zcmYk<3v`cV0LSrX>~9%%VKdw8g3WGjW290WGBf6qShaE=n({uvAKunUJt4 zS~YVSWwk=ChvOWTLKj_jPSHiWIj8UMeIFg~@%w+C=Y8M*`##q{HkbOHTkPkYY3*NT zIF6F`WN9;F!u^c-x24V+GcweejyMWCV+r=g3Jk~N$XCqw7=S+`f6O0zT!+`SHfAw~ zVk=yQdR`UA8snHl6!d^bjKg10FA8mAObqr#y=W|U!lj zCCr%SI39Ih0s7+%jO6{Mn1WhVit52uRD)_U8uwrVeu~ra3RYqvt>PUfq^&WDn1JIj z7uA7{sF65~k$47s;Gam(O-h6@fxO@3P*BT9qaHK`)#4?n7B5FNs2tVvb*THcpc;Gv zH4>j=6O3xdgE0m>VKUNYGYr*`$w(W_W9VqkU!tG~RilPx2X??c)-$M<>)SFN^YI>3 z1M5&DSdTa0H>d{3M0sRDmw>Q?Ida@Ta)CVyH z&!Ap>0oBk;s2)b}REt0Ypn7%+)$<=vFTP;U|BG6@t(ZTZkHLAEidy|u$StN0wPwDsX0S4Iwf~n=7|MlH z$Tia`!I&V-M(u(zsJXrin_>Z~A=6L|D@HA@1=dn~eL1>wZLLB*Z#(Mw^%$)Ee~dyP zC(c?M(VzMyTmKvNA|KUZNZHp5U>sv6J^wOy02IcDOE zI0QAar?DsgjBFg!A&v15ppcd3ZHFA}O1&7h7}ua)^npEp8r8t&UHG}iNK^xgP%kLK zZny}wO}C>O^egJVKpyTk7}=qwokM|ZrmwwFfNIc8jK>n>k16A$2pg~((|L=A_$$=* z{S8a8eRrOPm8dB?hibrOyb*(Ycz-A4Vjy*A7KL~Uk76HOh3d(1)RcT{ZNy;e7m=On z{@tpcB&2)4`Dv&%Q-CdS7AD|a)L-9gQ5~&C{gi)=G|(}BP|#epVq(C{~XK*WCM9uXYwm=FV zLOtga-h#bpHM4F?`Z4}=)@D{;jyMQ41%>D~ z$kykhUbG0+(-%;4`zrRpW2h-LEHpL1hnmtLjMn~7p`Z~MgnGav)QvMyUz}r|i+ZtE zY$7hh7~GDbcoN&qaV&D&lBC;o#@aD z7Lhkp;b7yqzX8v=HSgm|SZ3>ms8QANFnQ4}dH+JErT z+4^>?c$X};^(NM(*0I=;bS7QMRHEZfjsIv0&ycxfFVWF~B$EYX4k;(Ek_eJUHj~$h zjw$3p@)#LJblmLW{(m8uatP@~J|wB6i0mO(SAkm`#%Cs(L8?eN*+z5>Bzfdz5i_@% delta 4582 zcmYk<2~<^e0>|HB;4Z-;x%kI(;q-+lM~*ZcH~)t>!p zJC?S?15F7h9|KDUPr!S0>cT0BBx9w24PQJ zjVY*God5D)5ebNLpA(IJs6U9EdA`Y~5R5BOE#H8;Q4Ola@1a`UfND@9Y6Sj; zy6#(4gF~X-5sAQ7)F-0uI~luT9?}Q%JgUPx(V=nXEee|Z4^TI{hJJV*d4mCovZM_WBsjsrtH!|8L1J#2WsO$5PwwXdq#!6HJkE5;8|2dE}$CLfLdgqS)1(VKcMFP zXRANM*;@O*Jq10W6RPD&7>on0ndnD-ysb}0Jtz-#eYyR7C2G;FMm3-cwVP^C4X;Dp z=di6GM}MAgPE%l=nRBR~e1RIOCgkO4ZlOPhF!3@RwHTvO*C(SI)ED)6rahm9YS2W~ zkk3SxlUadk$R2c5sH31896;UpB&q@bK;7^gRFD3Hy8cJ&P1N`9puQK%0@5z%jvCQ) z)aTi#`^`jszYH}MixU`sweUGk1mZ?}!FJSxccF&37B70(PB@7AvP53Lcmi{=8TI~{ z$O;X>5>x{gqPA-#Y6_}xBko0wZ2w-2|AQ1p_4551nP)MOdJXa{Q-=>=1G0e4ZPbH0 zC%NbQqZ&9HC*UGX#>=RN{DOLrhnw`q2-J2Rf@+xKP|$^2t-FvdYwD2in)CL2Gpb>? z(2E}KM$yFMJRFOM@ic0vOK63*@p4>?`>{W!_Hn0b9{L(kN#S8Ws77|4xr)Jf8@(8i z;=TtGP(8^(P0a%9Vhp2Rf%^UiRELhDegob{t(|6UgSW981~TmYa5^T5f_nNG>fK(7 zT1+cZbG8H3^IBx|&6`Lk&Bv%0SKveLkPk$yg<@0#u3#K~glfposQabxr3ickgSG$1 zQc#bkVPDKe-l}FB>VbbkExNB!t2d7Kvqq=~YTKru8k~jq;w)4T%TQ}&E2`&5ZT(%G zLH#O*Y5%A3RDCf6HB=L@9Zt9BORxj=WvIpTGHNkiLG9=3s2+#0CDg-6)Ee^QKupId ztU!(AW^9W!=rGOZ5Cyg9a~zC=SSiD>0*Bx^oQ^?^<8UlMM&BGlUH>I6!8jHYmzo`@ z2Q*?4euIUWP3sThJE$ptavPDyWQT#u$PRt<2ol!ESn1ywyDfrRWZ(_rsMXzs z8u~WBb6+sMQByVuJva=tmWHDqFb4JDS*YvgTc5`E)K@qZH1}ID3Tv?oo%ZAf_m_9?2c2h6FR8fRD+Rt*m?nd|Nj4!f`;xZ)DShJ z9&pDRkm2?q40WR@^xy*W64ABv#CK>4*N`{es&6-_F)!M>s3b4jdXYmx!>Z$HvdLG{ zxVS6-eyk_M$$jLngzfJ8H{R>02J1LOo+R3qwWONNB04U)n7!yn*p22L!X`7$G5#DO zcaH%SvI(8^^>*Lg4^YGTYKyw|e6p?2ZgE~)PIG*Uu+@D(x!`-N$`Sg*u~q%-=9WzZ zuD9h0m}AQ)t-r@STYe5t5Z0i1hCEBOxJHwnWGR_Oba;J#d5z--WEEjEnO$VCZ=5My zChrj)TJ1Xi;9~xa%gG`VOJ-Gk8)d?YMo?#x5Y(oQ9ejU+H+H^XK^N(Z|iSc#c{IM)>~O$aM!u}pUAG9Odt=C zLVLmEIFYO-%gA4dj(CztR+7bJC)rJ+NfLR3)Day8WFe^_+W$Iu{rir4H2+}~+mcjr zj`Sj>*+K%zc~U|`$SCqY*-XO8QzVn{t)X$&* diff --git a/filer/locale/pt_BR/LC_MESSAGES/django.po b/filer/locale/pt_BR/LC_MESSAGES/django.po index 05d5c0009..dc98e6c5c 100644 --- a/filer/locale/pt_BR/LC_MESSAGES/django.po +++ b/filer/locale/pt_BR/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: @@ -12,19 +12,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+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-" -"filer/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://app.transifex.com/divio/django-filer/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % " -"1000000 == 0 ? 1 : 2;\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -33,26 +33,25 @@ 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." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "Avançado" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "URL canônico" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." -msgstr "" -"itens precisam ser selecionar para que a ação seja executada. Nenhuma " -"alteração foi efetuada." +msgstr "itens precisam ser selecionar para que a ação seja executada. Nenhuma alteração foi efetuada." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" @@ -60,183 +59,170 @@ msgstr[0] "%(total_count)s selecionado" msgstr[1] "Todos %(total_count)s selecionados" msgstr[2] "Todos %(total_count)s selecionados" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "Listando diretório para %(folder_name)s" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "0 de %(cnt)s selecionados" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "Nenhuma ação selecionada." -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "%(count)d arquivo(s) movidos para a área de transferência com sucesso." -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "Mover os arquivos selecionados para a área de transferência" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "%(count)d arquivo(s) tiveram suas permissões desativadas com sucesso." -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "%(count)d arquivo(s) tiveram suas permissões ativadas com sucesso." -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "Habilitar as permissões para os arquivos selecionados" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "Desabilitar as permissões para os arquivos selecionados" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "%(count)d arquivo(s) e/ou pasta(s) foram removidos com sucesso." -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "Não é possível remover arquivo(s) e/ou pasta(s)" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "Você tem certeza?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "Remover arquivo(s) e/ou pasta(s)" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "Remover arquivo(s) e/ou pasta(s) selecionados" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "Pastas com os nomes %s s já existem no local selecionado" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"%(count)d arquivo(s) e/ou pasta(s) foram movidos para a pasta " -"'%(destination)s' com sucesso." +msgstr "%(count)d arquivo(s) e/ou pasta(s) foram movidos para a pasta '%(destination)s' com sucesso." -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "Mover arquivo(s) e/ou pasta(s)" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "Mover arquivo(s) e/ou pasta(s) selecionados" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "%(count)d arquivo(s) foram renomeados com sucesso." -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "Renomear arquivos" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"%(count)d arquivo(s) e/ou pasta(s) foram copiados para o pasta " -"'%(destination)s' com sucesso." +msgstr "%(count)d arquivo(s) e/ou pasta(s) foram copiados para o pasta '%(destination)s' com sucesso." -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "Copiar arquivo(s) e/ou pasta(s)" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "Copiar arquivo(s) e/ou pasta(s) selecionados" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "%(count)d imagem(ens) tiveram seu tamanho alterado com sucesso." -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "Redimensionar imagens" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "Redimensionar imagens selecionadas" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "Sufixo que será anexado aos nomes dos arquivos copiados" -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." -msgstr "" -"O sufixo precisa ser válido, simples e com letras minúsculas para o nome de " -"um arquivo, como por exemplo: \"%(valid)s\"." +msgstr "O sufixo precisa ser válido, simples e com letras minúsculas para o nome de um arquivo, como por exemplo: \"%(valid)s\"." -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." -msgstr "" -"A chave de valor \"%(key)s\" utilizada para renomear o arquivo é " -"desconhecida." +msgstr "A chave de valor \"%(key)s\" utilizada para renomear o arquivo é desconhecida." -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "Formato inválido para renomear: %(error)s." -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "opções de miniaturas" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "largura" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "altura" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "recortar" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "aumentar" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." -msgstr "" -"Escolher entre as opções de miniaturas ou parâmetros de redimensionamento." - -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "Os parâmetros de redimensionamento precisam ser escolhidos" +msgstr "Escolher entre as opções de miniaturas ou parâmetros de redimensionamento." #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" @@ -383,9 +369,7 @@ msgstr "Permissões desabilitadas" msgid "" "Disable any permission checking for this file. File will be publicly " "accessible to anyone." -msgstr "" -"Desative qualquer verificação de permissão para este arquivo. O arquivo " -"estará acessível ao público para que qualquer possa acessar." +msgstr "Desative qualquer verificação de permissão para este arquivo. O arquivo estará acessível ao público para que qualquer possa acessar." #: models/foldermodels.py:94 msgid "parent" @@ -478,6 +462,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -496,6 +481,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -508,6 +494,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -562,6 +549,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -629,27 +617,19 @@ msgid "" "Deleting the selected files and/or folders would result in deleting related " "objects, but your account doesn't have permission to delete the following " "types of objects:" -msgstr "" -"Remover os arquivo(s) e/ou pasta(s) selecionados resultará na remoção de " -"objetos relacionados, mas sua conta não tem permissão para remover os " -"seguintes tipos de objetos:" +msgstr "Remover os arquivo(s) e/ou pasta(s) selecionados resultará na remoção de objetos relacionados, mas sua conta não tem permissão para remover os seguintes tipos de objetos:" #: templates/admin/filer/delete_selected_files_confirmation.html:19 msgid "" "Deleting the selected files and/or folders would require deleting the " "following protected related objects:" -msgstr "" -"Remover os arquivo(s) e/ou pasta(s) selecionados, requer remover os seguites " -"objetos protegidos relacionados:" +msgstr "Remover os arquivo(s) e/ou pasta(s) selecionados, requer remover os seguites objetos protegidos relacionados:" #: templates/admin/filer/delete_selected_files_confirmation.html:27 msgid "" "Are you sure you want to delete the selected files and/or folders? All of " "the following objects and their related items will be deleted:" -msgstr "" -"Você tem certeza que deseja remover os arquivo(s) e/ou pasta(s) " -"selecionados? Todos os seguintes objetos e itens relacionados serão " -"removidos: " +msgstr "Você tem certeza que deseja remover os arquivo(s) e/ou pasta(s) selecionados? Todos os seguintes objetos e itens relacionados serão removidos: " #: templates/admin/filer/delete_selected_files_confirmation.html:46 #: templates/admin/filer/folder/choose_copy_destination.html:64 @@ -698,11 +678,9 @@ msgstr "Ícone da Pasta" #: 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." -msgstr "" -"Sua conta não possui permissão para copiar todos os arquivo(s) e/ou pasta(s) " -"selecionados." +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." +msgstr "Sua conta não possui permissão para copiar todos os arquivo(s) e/ou pasta(s) selecionados." #: templates/admin/filer/folder/choose_copy_destination.html:25 #: templates/admin/filer/folder/choose_copy_destination.html:31 @@ -726,9 +704,7 @@ msgstr "Não existem arquivo(s) e/ou pasta(s) disponíveis para copiar." msgid "" "The following files and/or folders will be copied to a destination folder " "(retaining their tree structure):" -msgstr "" -"Os arquivo(s) e/ou pasta(s) serão copiados para a pasta de destino (mantendo " -"a estrutura de diretórios):" +msgstr "Os arquivo(s) e/ou pasta(s) serão copiados para a pasta de destino (mantendo a estrutura de diretórios):" #: templates/admin/filer/folder/choose_copy_destination.html:54 #: templates/admin/filer/folder/choose_move_destination.html:64 @@ -748,9 +724,7 @@ msgstr "Não é permitido copiar arquivos para a mesma pasta" #: templates/admin/filer/folder/choose_images_resize_options.html:15 msgid "" "Your account doesn't have permissions to resize all of the selected images." -msgstr "" -"Sua conta não possui permissão para redimensionar todas as imagens " -"selecionadas." +msgstr "Sua conta não possui permissão para redimensionar todas as imagens selecionadas." #: templates/admin/filer/folder/choose_images_resize_options.html:18 msgid "There are no images available to resize." @@ -760,35 +734,25 @@ msgstr "Não existem imagens disponíveis para redimensionar." msgid "The following images will be resized:" msgstr "As seguintes imagens serão redimensionadas:" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" -msgstr "" -"Selecionar uma opção de miniatura ou digitar os parâmetros de " -"redimensionamento:" - -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "Selecionar os parâmetros de redimensionamento:" +msgstr "Selecionar uma opção de miniatura ou digitar os parâmetros de redimensionamento:" -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." -msgstr "" -"Cuidado: as imagens serão redimensionadas no mesmo local e os originais " -"serão perdidos. Uma sugestão seria fazer uma cópia para guardar os originais." +msgstr "Cuidado: as imagens serão redimensionadas no mesmo local e os originais serão perdidos. Uma sugestão seria fazer uma cópia para guardar os originais." -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "Redimensionar" #: 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." -msgstr "" -"Sua conta não possui permissão para mover todos os arquivo(s) e/ou pasta(s) " -"selecionados." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." +msgstr "Sua conta não possui permissão para mover todos os arquivo(s) e/ou pasta(s) selecionados." #: templates/admin/filer/folder/choose_move_destination.html:47 msgid "There are no files and/or folders available to move." @@ -798,9 +762,7 @@ msgstr "Não existem arquivo(s) e/ou pasta(s) disponíveis para mover." msgid "" "The following files and/or folders will be moved to a destination folder " "(retaining their tree structure):" -msgstr "" -"Os arquivo(s) e/ou pasta(s) serão movidos para a pasta de destino (mantendo " -"a estrutura de diretórios):" +msgstr "Os arquivo(s) e/ou pasta(s) serão movidos para a pasta de destino (mantendo a estrutura de diretórios):" #: templates/admin/filer/folder/choose_move_destination.html:73 #: templates/admin/filer/folder/choose_move_destination.html:76 @@ -815,8 +777,7 @@ msgstr "Não é permitido mover arquivos na mesma pasta" #: templates/admin/filer/folder/choose_rename_format.html:15 msgid "" "Your account doesn't have permissions to rename all of the selected files." -msgstr "" -"Sua conta não possui permissão para renomear todos os arquivos selecionados." +msgstr "Sua conta não possui permissão para renomear todos os arquivos selecionados." #: templates/admin/filer/folder/choose_rename_format.html:18 msgid "There are no files available to rename." @@ -826,10 +787,7 @@ msgstr "Não existem arquivos disponíveis para renomear." msgid "" "The following files will be renamed (they will stay in their folders and " "keep original filename, only displayed filename will be changed):" -msgstr "" -"Os seguintes arquivos serão renomeados (estes arquivos serão mantidos em " -"suas pastas e os nomes originais serão mantidos, apenas o nome de " -"apresentação será alterado):" +msgstr "Os seguintes arquivos serão renomeados (estes arquivos serão mantidos em suas pastas e os nomes originais serão mantidos, apenas o nome de apresentação será alterado):" #: templates/admin/filer/folder/choose_rename_format.html:59 msgid "Rename" @@ -986,11 +944,13 @@ msgstr "habilitado" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "URL Canônico '%(item_label)s'" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "Baixar '%(item_label)s'" @@ -1052,10 +1012,12 @@ msgstr "Selecione todos %(total_count)s" #: 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 "" @@ -1122,6 +1084,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1177,6 +1140,7 @@ msgid "Choose File" msgstr "Alterar Arquivo" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1202,6 +1166,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/ru/LC_MESSAGES/django.mo b/filer/locale/ru/LC_MESSAGES/django.mo index d6cfde2c9b1dce39964afa27cf9f54646ddc1633..6bd36094c78af8939e8c99d22d944b72c381b89f 100644 GIT binary patch delta 4515 zcmYk<3sl$T9mnx62xx}f0)amwC?KGOKzLc|z|0FMi8aLxGenFql@+?~|8AQJS|*lL z+@_|1&9WjdLrSNuX{KGy9JI6Jc8>1oVW-f!%5`#Q@6Z4DxZ`v9{9n)W`~NP_^ZcIQ z@2~4xgI?YlEWq3D~;l5s5RLUS+|AH*B61&gp1 zL-9OD;#W8VuVOxC$C}-M_n`Kx!4O=6iCo|6si;Sds1dx0>d;iKz=Qtq7&^wP0fBBf}PGY zsGjR+nU58?5Y@pB)C?ZRAK_V4hm(EYJx@oig#y(1$DwAn*vI^{uT`=^Cs>K8xXJC< zff~sn)Kq_rQFsP*;a*fnzd?;Kp0jF(a!~EDSd3+E`->P@gs2X-B{Bb6=zH9TPPfBR z)D(S=%&J{L^<0mL4h%)EY2i2$Gf^F@K7|}j{h5%U{H#;IG180?QYcZ)v4aouo`vYz0MxYr0q{( z{<5e{MfIp2HG)=D&v&Cn)`c4R1=NLm-S!_)i+2F`Pur96NgR$^{cXrD)`40xe{~kJ zGE4RRuc0!XFS?NLEG^wE0;iy!g4w8hy#V`Q4XPs#pgLBMT3pXK8{PNK7`WHYHq`m{ zq0WC8BlY}$N~J#={^sn#5Zd3k_V=g@g)*NS=|I%?!%&ND1gZmLP)|`Y>O#{{``zi< z6&Omp3RzBeKZbFAdya~xsu6kl*%l1NJMlI$`sE+wY@Fd_U)cYVJ$9qAg;mx$?=P>^|K@%Htaf{pG1ab}wWiP6hhjVd0 z>V2>epTJY7d0)=dF%XCil}VFaO}beJcsFc8OLBk z9*-iHHrlZT-h1SI97{X=7VlSeGA^fGgC%$xwbuM8ycKkz0-S*r zs2=Y?-I7l1k4N10lQ@y~Kiu|A-d>fo3s5I~3FB}((g!<$jKThi^Dt?&_p`hb8Mxot zsA$9&P#5|Rr(iI{mL+&Mu590$_w#@n$M zbM*Wd-s;_gDxAp|+b|3-p+<5Ad7>YHFWH&Co_vhqfcT+A&PUup(~_ zWuiJzh>NijYw;)+V-6p)aVh#$IZ8!4CURrv;M2&Tb@8D!k$9U~J1)jY(KpHaQQCmb zv=8D2oXNai#&cMT-IKimrEwp%7UrTl+=NVu9iPJdYw?6JTt8N07@kG`tcMRxaltfi z1{Pv6?G-o_n^9B054DJU@H32LiR;$=9eFV9Tf7gm=+y(b8g<>vrCfCdmGbG{lzoH@ z(!R!c%xCzT`VtJrO4Kb_fLaT6s9UiKwf`Xu$1Y67b2te9i~2sP%zHuIg2QQ7`l)Eg zRj32Ep%&L$Zu=q3r2VDa9(0G-p%~PD8LmCrwM$SlI1l?_73#uusE$92ECXBX+WwPN zQrOV#yn+$56L=KVp-jxdLf5XsA+(pF9;bEAR#b;RK;61ek#%YDjJr(!nNqVD~A)Y{nZJdK)(%kKN{Q5{IR z)9ZKvCTP`_P|<}JqDHnHgCu#8Xc|Wn6^(cmc|#4#7@~`>Rl}8MahqPfVgg3?aPOY(L@sV{enU z$hD&11nzL)4H%97o!7oWt<@!@cx7}L{#d@ED}L}O+F+iiOL?2|9_6BR!3%%-EM0rK22K4 zZ^$R)`tnoPnClF@|5ZQeHVD1ze@jZ#pj3F+VO&6#x%NJ%c$d83+QH5>&N(=g3?n(@ zexh=>=Kn4#zaWp1Lquf=$s*4Xy`DFbUy*n+g6tx%5tVB4FnOFzCMpv=0{>r#q#i}| zJ8^^zCre2uxwZ-d)fs#iktL*!#F6)i$|O=oHjutVXfR>YJn62NpdR`#;hI B(kK7` delta 4563 zcmYk<3s9A19>?(qO9Y^dmchjfo1NeTViM^H?uq2H+x0!Y!DKEf|GAAzv{e;RM5w zU8Xm7#T2Z?Ow=ixQRh30vBr4KKWXR$-6D*M!(ONhWnzDvin`Dfn2sB;JGS6xJcE5O zB+?icCSVUt##9`NnK%nWaVzS$-5A96O(PAR;1H^^Q>c+#MHTiV_QmU%h~ZQ-ABW-r zd>N_16!bP`AeQ5FT#FjWSEv~Yj&`o&!3_FY7|Zp|EE?T#HLCKBs1xl(ReTav@dZ>t zmryhCSJZJ=PzAd^&WuE2ApI$*^OoS9Sc#0mtV0cWJ9;V39HXIoe;#$B4h+JdFafVy zJ$y@*-(y{XCG>Zo3cQAz!C!G0_K$H2E5H=Y5%fP3hO{aAOCm zf88E%6ID=mrbjcCj?A_hiyFZU)bW)_ZDt-0#NTX;+z3Y!UgopaXy~II?RoCzW)L0sknl= zt~Z={QzH+Pu?ACcAF7}Ws1XD)4XQj8HL@Jk$j72)uF&qEhFZk)?fw<`6#ez6r@+NZ zsoMHkmMCup$F%qi4J{*IcetH{gIbfOF0+;|y|T8tjl@qPLP~W?W`d%0dNKe5) z)QpZneLewoz6#X$7o%>)vSj986+Xj`5Nxmqyo9>&F4Pq7Lw6vL6V9Oj;UHs5F^(0v z9#^79)+N=sU;=7Jvrvn<7**IZyo{SM5*MT~|9VrcN;BqeY(`c59j0R^>hlynnzM^qttDNKZZ_%K$XzW14zMi`CnQ5AKfE)bUCyvv89 zoBm4FakZF;FW^u-j<4Z0Y{$Ks&PbPMImh|%Ap76JVw{<6%x~~8@@g>N4jR=oLU{@N z4xdCVx|662wPPXv7gcdSZztWF3e;0F2ep3@-iy!L{hweN{dUy(vWGZ7G+iZ?L~Ycv+3M!W%aq3x)t-EaK?r_s-0IPy6>gx_H#`nYey@gVB+Z&BwP zb&oUhA`H{>Uqz!gAJpLe=tJFt%cw$JoMi%z#bDfuQMdyK;t@>8%h(e`MmWC#9%OP& zKB}M^Wc`{38DPx27|r#~KSnygew`RYKVp<~;&hCoKLwe6vlOS}tC)vDRL7*5Levzm zLCw@QRAGCOQ<^gvkFGJ!T1r9{l8xRuG)igA#a85>N##a9fD5gysN+2M@k51PWS412 ztqsp_jcLN!_$2mW8k5k6K5WJQ=mnI{pN@u^s#1H(nb3 zXxy|1#1uPktSr2X{iUb_*P*_+2ersvxBE|^3cGCgYo%%?dZCU>wEbM$&qvMRH0+Ar z3L2_x9;))Ek@aFW*#3EpqyL5V28Pj(o@f^nrqR!~{R&K=Uxj+AHd*&$Px|knZr!KI zI`*30lbnhkKviCbdJ3vB1M5&T(Ska`71ZN&12rS=$=hI2sd@14ps(L+BUb)lK4kv)n5xQIMYG>s}$n`ZJ^@|rqqyo>zz zf0MuG{8Jvu%$*t9>FXyi?Vh3;PmpP-)k1>_*nEz|Y^d4yzi^9?aO(rq^u2sre>v^Jwm;{#{aVnO z_jG8ZKoQZbl1>9iU%&;l9?G~$ENR_tz3^o%ziYv(<$Q`7Rq>vS) zlxU0h|25`qJWtk>d&w>`+CR@U&XJQuTZDso+WJ1OB2SRMWCpplb*FKWuonH#`%KIx zb4fkXqxLEpO8!VQU5Pp9KJ~O>fA`QEhdwR9>G22Bk~ub z?M;XO{~bwdA(=@2Z1=iwHQ7n_67Q${xqVw=JJYOs-)no%!TI8dG>(mIEB=b8uB60Hh>HwYsfOPo$Mwal1BbS z8i}^qM6d9th+atAMmd-+y8k`s^dvdt6iFr3, 2020\n" -"Language-Team: Russian (http://app.transifex.com/divio/django-filer/language/" -"ru/)\n" -"Language: ru\n" +"Language-Team: Russian (http://app.transifex.com/divio/django-filer/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || " -"(n%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -36,26 +35,25 @@ 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." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "Дополнительно" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "канонический URL" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." -msgstr "" -"Для выполнения действий нужно выбрать хотя бы один объект. Не произведено " -"никаких изменений." +msgstr "Для выполнения действий нужно выбрать хотя бы один объект. Не произведено никаких изменений." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" @@ -64,177 +62,171 @@ msgstr[1] "%(total_count)s выбрано" msgstr[2] "Все %(total_count)s выбраны" msgstr[3] "Все %(total_count)s выбраны" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "Содержимое %(folder_name)s" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "0 из %(cnt)s выбрано" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "Действие не выбрано." -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "Успешно перемещено %(count)d файлов в буфер обмена." -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "Переместить выбранные файлы в буфер обмена" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "Разрешения успешно отключены для %(count)d файлов." -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "Разрешения успешно применены для %(count)d файлов." -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "Включить разрешения для выбранных файлов" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "Отключить разрешения для выбранных файлов" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "Успешно удалено %(count)d файлов/папок." -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "Невозможно удалить файлы/папки" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "Вы уверены?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "Удалить файлы/папки" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "Удалить выбранные файлы/папки" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "Папки с именами %s уже существуют в указанном месте" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "Успешно перемещено %(count)d файлов/папок в папку '%(destination)s'." -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "Переместить файлы/папки" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "Переместить выбранные файлы/папки" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "Успешно переименовано %(count)d файлов." -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "Переименовать файлы" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "Успешно скопировано %(count)d файлов/папок в папку '%(destination)s'." -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "Скопировать файлы/папки" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "Скопировать выбранные файлы/папки" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "Успешно изменен размер %(count)d изображений." -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "Изменить размер изображений" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "Изменить размер выбранных изображений" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "Окончание, которое будет добавлено к именам скопированных файлов." -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." -msgstr "" -"Окончание должно быть правильной, простой и в нижнем регистре частью имени " -"файла, например \"%(valid)s\"." +msgstr "Окончание должно быть правильной, простой и в нижнем регистре частью имени файла, например \"%(valid)s\"." -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "Неизвестный ключ форматирования \"%(key)s\"." -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "Неверный формат переименования: %(error)s." -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "опция миниатюры" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "ширина" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "высота" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "обрезать" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "увеличивать" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "Опция миниатюры или параметры изменения размера должны быть указаны." -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "Параметры изменения размеры должны быть указаны." - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "Расположение объекта" @@ -380,9 +372,7 @@ msgstr "Разрешения отключены" msgid "" "Disable any permission checking for this file. File will be publicly " "accessible to anyone." -msgstr "" -"Отменить все проверки разрешений для этого файла. Файл будет доступен " -"публично для каждого." +msgstr "Отменить все проверки разрешений для этого файла. Файл будет доступен публично для каждого." #: models/foldermodels.py:94 msgid "parent" @@ -475,6 +465,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -493,6 +484,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -505,6 +497,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -559,6 +552,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -626,25 +620,19 @@ msgid "" "Deleting the selected files and/or folders would result in deleting related " "objects, but your account doesn't have permission to delete the following " "types of objects:" -msgstr "" -"Удаление выбранных файлов/папок приведет к удалению связанных объектов, но у " -"вас нет прав удалять следующие объекты:" +msgstr "Удаление выбранных файлов/папок приведет к удалению связанных объектов, но у вас нет прав удалять следующие объекты:" #: templates/admin/filer/delete_selected_files_confirmation.html:19 msgid "" "Deleting the selected files and/or folders would require deleting the " "following protected related objects:" -msgstr "" -"Удаление выбранных файлов/папок потребует удаления следующих защищенных " -"связанных объектов:" +msgstr "Удаление выбранных файлов/папок потребует удаления следующих защищенных связанных объектов:" #: templates/admin/filer/delete_selected_files_confirmation.html:27 msgid "" "Are you sure you want to delete the selected files and/or folders? All of " "the following objects and their related items will be deleted:" -msgstr "" -"Вы уверены, что хотите удалить выбранные файлы/папки? Следующие объекты " -"вместе со связанными объектами будут удалены:" +msgstr "Вы уверены, что хотите удалить выбранные файлы/папки? Следующие объекты вместе со связанными объектами будут удалены:" #: templates/admin/filer/delete_selected_files_confirmation.html:46 #: templates/admin/filer/folder/choose_copy_destination.html:64 @@ -693,8 +681,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 @@ -719,9 +707,7 @@ msgstr "Нет файлов для копирования." msgid "" "The following files and/or folders will be copied to a destination folder " "(retaining their tree structure):" -msgstr "" -"Эти файлы/папки будут скопированы в целевую папку (с сохранением " -"иерархичности):" +msgstr "Эти файлы/папки будут скопированы в целевую папку (с сохранением иерархичности):" #: templates/admin/filer/folder/choose_copy_destination.html:54 #: templates/admin/filer/folder/choose_move_destination.html:64 @@ -751,30 +737,24 @@ msgstr "Нет доступных изображений для изменени msgid "The following images will be resized:" msgstr "У этих изображений будет изменен размер:" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" msgstr "Выберите опцию миниатюры или введите параметры изменения размеров:" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "Выбрите параметры изменения размеров:" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." -msgstr "" -"Внимание: изображения будут изменены в размерах с заменой оригиналов. " -"Возможно, лучше будет сперва сделать копии." +msgstr "Внимание: изображения будут изменены в размерах с заменой оригиналов. Возможно, лучше будет сперва сделать копии." -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" 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 @@ -785,9 +765,7 @@ msgstr "Нет файлов/папок для перемещения." msgid "" "The following files and/or folders will be moved to a destination folder " "(retaining their tree structure):" -msgstr "" -"Следующие файлы/папки будут перемещены в целевую папку (сохраняя " -"иерархичность):" +msgstr "Следующие файлы/папки будут перемещены в целевую папку (сохраняя иерархичность):" #: templates/admin/filer/folder/choose_move_destination.html:73 #: templates/admin/filer/folder/choose_move_destination.html:76 @@ -812,9 +790,7 @@ msgstr "Нет файлов для переименовывания." msgid "" "The following files will be renamed (they will stay in their folders and " "keep original filename, only displayed filename will be changed):" -msgstr "" -"Эти файлы будут переименованы (они остануться в их папках и сохранят имена " -"оригинальных файлов, только отображаемое имя измениться):" +msgstr "Эти файлы будут переименованы (они остануться в их папках и сохранят имена оригинальных файлов, только отображаемое имя измениться):" #: templates/admin/filer/folder/choose_rename_format.html:59 msgid "Rename" @@ -973,11 +949,13 @@ msgstr "включены" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "Канонический URL '%(item_label)s'" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "Скачать '%(item_label)s'" @@ -1039,10 +1017,12 @@ msgstr "Выбрать все %(total_count)s" #: 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 "" @@ -1110,6 +1090,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1165,6 +1146,7 @@ msgid "Choose File" msgstr "Выбрать файл" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1190,6 +1172,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/sk/LC_MESSAGES/django.po b/filer/locale/sk/LC_MESSAGES/django.po index 5b67deb34..4bf0b696a 100644 --- a/filer/locale/sk/LC_MESSAGES/django.po +++ b/filer/locale/sk/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,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+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/" -"sk/)\n" -"Language: sk\n" +"Language-Team: Slovak (http://app.transifex.com/divio/django-filer/language/sk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n " -">= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" +"Language: sk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -30,24 +30,25 @@ 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." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." msgstr "" -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" @@ -56,175 +57,171 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "" -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "" -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "" -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "" -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "" -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "" -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." msgstr "" -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "" -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "" -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "" -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "" - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "" @@ -463,6 +460,7 @@ 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,6 +479,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -493,6 +492,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -547,6 +547,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -675,8 +676,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 @@ -731,28 +732,24 @@ msgstr "" msgid "The following images will be resized:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" 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 @@ -947,11 +944,13 @@ msgstr "" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "" @@ -1013,10 +1012,12 @@ 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 "" @@ -1084,6 +1085,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1139,6 +1141,7 @@ msgid "Choose File" msgstr "" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1164,6 +1167,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/tr/LC_MESSAGES/django.mo b/filer/locale/tr/LC_MESSAGES/django.mo index 2051dc892acf31caec5764d7446cb1c28f3c63dc..3bd970c095288ad76a3031dedc023d6f4494dbf7 100644 GIT binary patch delta 2476 zcmZA1YfP6_9Ki7dB8mtiMX6|Da6Q2%%b}IAq|;6BeUSvI3oGHM*d!@&0Zsru`vi;P=QH!fCt)hmj`=qc|Hc z;kB4gT9_-8qwT8LUWqx(A2v|&3EPnW37y`+=lQt~U%>0}ZFJ&(Ol1UT&>qA*JQwf( ziR)-z!bP|&H-yF5jn()muEk$5Y3eG;m#Jz)Q@RhG=yP{-=bSpQbTebszz&Dby!+U53j-V3`#Op)oz~AAkX&g43M!S_0=M!&7 zpLiE?E9^ltb_m_F_i--v;Z1lJD{&kru^5xpRQ!i#biggK-HE+e{BS$r%Sum($UH~K(F(fb3jeF1s9lHo5Zt}L7UIB+%2!vy+|9q2$^I177Y z`wMho=g|zM^NP5@iRhLVpx5W33tWhEunFCwZk+D>-$TW{JcOq3SV z!A^9-9(18EqOV~ulKt=znxSvd!*vdQ(ulTv>ol=g`SxmXuo8zUG1xe~Yf{40?S8 zeT^=l6O5w$F30O>?2r92(FNwBdtZz$uqxh9pySj<>(LA~&Lsb2BW&V=d)AGndJl3g z!vXa5dKaDeli2-qe=usgZzCMrJ$LL!iMxr12q&*5CcFRc-6CQ$v6SGP zh1JAegzxSa;z`1VSymD4M4b)FLc;7kLo6fK5T1h#glWE)SV0sMcM|gm%O=9_PwGiq zyh14=d|iCn#Y7X)K|Ds>Ok63gR2qo~2)AGx@i1|vJVC`n>>FX~mk^dVg567f#MmmI zKZM(fN@5-HG-0`q;6(^qiDtrb5AjH<7Q!9qS*al!h+5)VVl83un_}rCmZxfCKaa31*x5WDF=>I9>g0I+|c%%NR4);^%*rbYQYQ8nT1z{sm cZiB+-IaS8@AIr+j=pWAMnbf~)+VPD40Q4}xCIA2c delta 2584 zcmZA3e@xVM9LMobauA$R2u6e$r~Fn?kRK&t66KFleyBv6TAcb-4(~X+JO5y@9U1zE z&YAt#TEDH0wz?J$+p;-j$>wy!)>2o0L@ir6mu^H`Kb+9>b$)EF&v@VC^Z97k+(?nC-8hjatq;X@OPVJ3cs_u((72~42A zmvFZ++33bJEI{3_#wJ{hmAD_PaR{sMPmDHFDJ5S@VGk;0pP*9v4XUGmPyXlu?V!Vzen9t5E$7mxJ50zfj7Y?I3 zjM?^4)Ui5=g*b}pFp1vr9Q(73%nd9xigW#mK0tQIx1 zR#eBmI2Zd+UmQSnbR1{mPqwWip@|iuGSq;Y;5yVRZL`*7jBE4&c~u5lu@rY>Ee@atxQZHZ3^n1uP{+~DuNQC0WTP^*0JX;&P@8fSPC*Bw zWYM%!(HEnrJ#Y{;(>GA5e-D+?n7w}tHQ+F6vtC3!|1)auTtW5oyS;wHnm`&g;S|*K zX*uLy9cOYuGs{DDFb_3wC2C@I_IfkwIITwwuo?ASyS*MkeZLzu!52__;1$$>{q}wg z)z8r!@~_GfYio^K-m4~VMi7I3W37 zB_1QZL_VRSlVIxfL8&H62!0#lKPq{sjmW-=|8voVD$fz?h=ppX4DLxua?R-ShP(kM z;)KGUz^-t_v&HdjZ4U;+PUrl=7gP7Ti|T{jyCQyX=eFS^p@7$8pAR{HC*<>lol_tB O`~k=B8%)mn-1RTN^yA3@ diff --git a/filer/locale/tr/LC_MESSAGES/django.po b/filer/locale/tr/LC_MESSAGES/django.po index a144dd00e..e1c96e0a4 100644 --- a/filer/locale/tr/LC_MESSAGES/django.po +++ b/filer/locale/tr/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: @@ -11,18 +11,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+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/" -"tr/)\n" -"Language: tr\n" +"Language-Team: Turkish (http://app.transifex.com/divio/django-filer/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -31,201 +32,196 @@ 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." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "Gelişmiş" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "standart URL" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." msgstr "" -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" msgstr[0] "" msgstr[1] "" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "%(cnt)s 0 adet seçildi" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "İşlem seçilmedi" -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "%(count)d adet dosya arabelleğe taşındı" -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "Seçili dosyalar ara belleğe alındı" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "%(count)d adet dosyanın yetkilendirmesi pasif hale getirildi." -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "%(count)d adet dosyanın yetkilendirmesi pasif hale getirildi." -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "Seçili dosyalar için yetkilendirmeyi aktif yap" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "Seçili dosyalar için yetkilendirmeyi pasif yap" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "%(count)d dosya veya klasörler başarıyla silindi" -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "Seçili dosya veya klasörler silinemedi" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "Eminmisiniz?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "Dosya veya klasörleri sil" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "Seçili dosya veya klasörleri sil" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "%s isimli klasörler seçili hedefte var." -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"%(count)d adet dosya/klasör başarıyla '%(destination)s' klasörüne taşındı" +msgstr "%(count)d adet dosya/klasör başarıyla '%(destination)s' klasörüne taşındı" -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "Dosya veya klasörleri taşı" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "Seçili dosya veya klasörleri taşı" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "%(count)d adet dosya yeniden adlandırıldı." -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "Dosyaları yeniden adlandır" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"%(count)d adet dosya veya klasör '%(destination)s' klasörüne kopyalandı" +msgstr "%(count)d adet dosya veya klasör '%(destination)s' klasörüne kopyalandı" -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "Dosya veya klasörleri kopyala" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "Seçili dosya veya klasörleri kopyala" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "%(count)d adet resim başarıyla yeniden boyutlandırıldı." -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "Resimleri yeniden boyutlandır" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "Seçili resimleri yeniden boyutlandır" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "" -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." msgstr "" -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "" -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "" -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "genişlil" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "yükseklik" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "kırp" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "" -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "Boyutlandırma parametreleri seçilmeli" - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "" @@ -464,6 +460,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -482,6 +479,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -494,6 +492,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -548,6 +547,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -676,8 +676,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 @@ -732,28 +732,24 @@ msgstr "" msgid "The following images will be resized:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" 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 @@ -944,11 +940,13 @@ msgstr "aktif" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "" @@ -1010,10 +1008,12 @@ msgstr "%(total_count)s Tümünü seç" #: 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 "" @@ -1079,6 +1079,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1134,6 +1135,7 @@ msgid "Choose File" msgstr "Dosya Seç" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1159,6 +1161,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/vi_VN/LC_MESSAGES/django.mo b/filer/locale/vi_VN/LC_MESSAGES/django.mo index 80a7bf570f98bd65fbcdafbce3d145d3a0c6fdae..af2d28fda2739ed635dd82c9d7e6581a2cdcd687 100644 GIT binary patch delta 4515 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 delta 4581 zcmYk<3wV!J0LSq&?QRXb+Zulxa~rc7L(CLyCP^-H$#QQd)`)WJFZVE|nG!=oqLTVs zslOz5%aoRSqNmb@M?DX^$t68~fB*OB@jm_bIp_Vq?|IKT?>TR^wbbw8azFRC5&q?d z<1=yxSsQ3fv>)Z$b=H{28yJ&>C76OMu|0Y*8h=A>F+mXo!;w=a27|E$F2;0JlOLek zJA#djahqQ$sDaQ(V;W-v)PvG75eK6lG!5J0GOUYU?1qQ2AqGVm6M#*y9yZ6;n2G5) z8bh!gb=`XO=lNzc1vRh@)w2Vrk(@(y>>?)MWo(KO^ri?iaSK)=eK2`3#x%nM9E$T% z1Nja$BZ0BbbK71#epm%=^)zEqL$KS9CUbe<@mwMjWIsx;kuSIq6 zPt*)v!%mnO?{qjH_3jH$YvM6f`%~kYe@*QSPH>M|g=%02y0F$>_$O*4S5Z^#&rS6) z4)x%csE($gM%WKEL*s0HGGWX~T#b?A!(=3i6#11G}pJgR=#UT_1|p}I_uW~wbR z+omUK1jA9+k3#xp#$y`JM|E%~>birrUX87&pT@oz=w^v$P#AZ+s`bN}lcn9^)cjIli57m)FsE*a37TLGfbN2U3sCWLiHGt_1(f*I5 zpa&$PdY+1**u|QI{?s3`^?cNWMxm~sVt=29T6Bw19axFlO%9utec>!1?Sf{g8O=uh-WS#02-N+P zQLp03=FGo(xPTKuxWZnr8uj3Hs43orWqxcYR71Hfod*s@Ey@yPBbc?QhP|kEk0LwG zoWv0P9XH}XsE%%E#r$Vd@X`tk)ck?EF{U-&XH3E@9Ekd&twjDY$NAG8uc20dmsDdW zVK3D0yHF$j3G3o{ybu4v!PupZb6>feLLet9Q9ay>&CrAC_%&)V)@|!F7=s#d0_r<) zA8LEe!u@y+wPyCD@m0hVSc2D4+k9d>=Sy3OdS&k26tXGQqHc)dshavMj_Sa5%*Ak~QQI^hb^S1Gf#Z-@<~Gk!V31}z>Ro+Z0y)bYVy8si;>r)>>iDpTrW*hcnDDoP!#1DS!IoK2&=#Oq+IF5=LnMXHn1({m?g3 zWSyB()B~&R`3tCb+NguGs*_P8$v|zZ;TVZCQLpeh)PSlm2tT*=Q`ngL-x#X>AIos+ zVG^n%cVYv~Le0d3=)wuu1(#uKJc?@QFI2~(>8MZD z`H;d`yo6fqgIMZX?dANTljc(#ih-S-^COXUX4aq{P>mBYn12)Xz-g!lcyT74z^Abf zyAua2o!L8u8S7oT=S}de9-%w*3mV z%Fm!y`Om1ea0z43|6b?%1k~@Ts8^EdwuN4(RXfbq3o(NF42;53)B`I~@7jZEU>7E1 zHOAuw)O8`e2Ys^RQTHdKuJ4EqF%PxP-DB(pMR>bTpl|h~dRm3*$X?U~YEg^q0;+*) zsMT(IIx~@i8gV<+bvdY+=#P38kD_+j9Biijzk`B5C%#18a2j2B4z<04`EF`N>8OV8 zL3MNx2H+Uf{Y9unSB$!D0Vd&U)cw2d?=_f6{YMPs`Nl8DxgZ$TKtt3!O+#&$PN-Lt zi<-KD=!Yfbd7^1X=a`Wg!p)XtHp{%T97lih@^Z&nZ;jT}rb>x&v^Q(LLQWwzWO3vAhI z9f+fBc>#Vv*j>I4%+shfaX)E6W{_b-hs*buy^qJpBEoJq>qs}>JX5G9`-u)M9v#m( zn2&G{(RV-}mEq*(p#}RH=|}W^7)kCTg=8rSBwI-)d6~o$9a>)tNfW(i9S@U7$ZEnC z_Wj2~V|)8#3NrFcb%n z#bg%wnCM6%Ey+CcBw0h&lQ@z}UMHK0jGndu-59rF)AOHXW diff --git a/filer/locale/vi_VN/LC_MESSAGES/django.po b/filer/locale/vi_VN/LC_MESSAGES/django.po index b33029a37..89e1c8542 100644 --- a/filer/locale/vi_VN/LC_MESSAGES/django.po +++ b/filer/locale/vi_VN/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: @@ -10,18 +10,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+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-" -"filer/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://app.transifex.com/divio/django-filer/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -30,205 +31,195 @@ 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." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "Nâng Cao" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "URL hợp chuẩn" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." -msgstr "" -"Những item được chọn để thực hiện hành động trên đó. Không có item nào bị " -"thay đổi." +msgstr "Những item được chọn để thực hiện hành động trên đó. Không có item nào bị thay đổi." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" msgstr[0] "Tất cả %(total_count)s được chọn" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "Thư mục liệt kê cho %(folder_name)s" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "0 trên %(cnt)sđược chọn" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "Không có hành động được chọn" -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "Di chuyển %(count)dtệp vào bảng tạm thành công" -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "Di chuyển tệp đã chọn vào bảng tạm" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "Vô hiệu hóa quyền của %(count)dtệp thành công" -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "Kích hoạt quyền của %(count)dtệp thành công" -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "Kích hoạt quyền cho các tệp đã chọn" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "Vô hiệu hóa quyền của các tệp đã chọn" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "Đã xóa %(count)d tệp và/hoặc thư mục thành công. " -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "Không thể xóa các tệp và/hoặc các thư mục" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "Bạn chắc chắn chứ?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "Xóa các tệp và/hoặc các thư mục" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "Xóa các tệp và/hoặc các thư mục dã chọn" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "Các thư mục với tên %s đã tồn tại ở vị trí đã chọn" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"Đã di chuyển %(count)d tệp và/hoặc thư mục tới thư mục '%(destination)s'." +msgstr "Đã di chuyển %(count)d tệp và/hoặc thư mục tới thư mục '%(destination)s'." -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "Di chuyển tệp và/hoặc thư mục" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "Đã di chuyển tệp và/hoặc thư mục đã chọn" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "Đã thành công đổi tên %(count)d tệp." -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "Đổi tên tệp" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"Đã thành công sao chép %(count)d tệp và/hoặc thư mục tới thư mục " -"'%(destination)s'." +msgstr "Đã thành công sao chép %(count)d tệp và/hoặc thư mục tới thư mục '%(destination)s'." -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "Sao chép tệp và/hoặc thư mục" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "Sao chép tệp và/hoặc thư mục đã chọn" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "Đã thành công thay đổi kích thước %(count)d ảnh." -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "Thay đổi kích thước ảnh" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "Thay dổi kích thước ảnh đã chọn" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "Hậu tố sẽ được nối vào tên của tệp đã sao chép." -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." -msgstr "" -"Hậu tố phải là một phần tên tệp hợp lệ, đơn giản và chữ thường, như " -"\"%(valid)s\"." +msgstr "Hậu tố phải là một phần tên tệp hợp lệ, đơn giản và chữ thường, như \"%(valid)s\"." -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "Không biết định dạng đổi tên của khóa giá trị \"%(key)s\"." -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "Định dạng đổi tên không hợp lệ: %(error)s." -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "tùy chọn thumbnail" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "Độ rộng" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "Độ cao" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "Xén" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "cao cấp" -#: admin/forms.py:75 +#: admin/forms.py:80 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/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "Tham số thay đổi kích thước phải được chọn." - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "Vị trí chủ đề" @@ -374,9 +365,7 @@ msgstr "Quyền bị vô hiệu hóa" msgid "" "Disable any permission checking for this file. File will be publicly " "accessible to anyone." -msgstr "" -"Vô hiệu hóa bất kỳ quyền kiểm tra cho tệp này. Tệp sẽ truy cập được bởi bất " -"kỳ ai." +msgstr "Vô hiệu hóa bất kỳ quyền kiểm tra cho tệp này. Tệp sẽ truy cập được bởi bất kỳ ai." #: models/foldermodels.py:94 msgid "parent" @@ -469,6 +458,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -487,6 +477,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -499,6 +490,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -553,6 +545,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -620,25 +613,19 @@ msgid "" "Deleting the selected files and/or folders would result in deleting related " "objects, but your account doesn't have permission to delete the following " "types of objects:" -msgstr "" -"Xóa tệp và/hoặc thưc mục đã chọn sẽ dẫn đến xóa đối tượng liên quan, nhưng " -"tài khoản của bạn không có quyền xóa những loại của các đối tượng:" +msgstr "Xóa tệp và/hoặc thưc mục đã chọn sẽ dẫn đến xóa đối tượng liên quan, nhưng tài khoản của bạn không có quyền xóa những loại của các đối tượng:" #: templates/admin/filer/delete_selected_files_confirmation.html:19 msgid "" "Deleting the selected files and/or folders would require deleting the " "following protected related objects:" -msgstr "" -"Xóa tệp và/hoặc thư mục đã chọn sẽ yêu cầu xóa những đối tượng liên quan " -"được bảo vệ sau:" +msgstr "Xóa tệp và/hoặc thư mục đã chọn sẽ yêu cầu xóa những đối tượng liên quan được bảo vệ sau:" #: templates/admin/filer/delete_selected_files_confirmation.html:27 msgid "" "Are you sure you want to delete the selected files and/or folders? All of " "the following objects and their related items will be deleted:" -msgstr "" -"Bạn có chắc muốn xóa tệp và/hoặc thư mục đã chọn? Tất cả những đối tượng và " -"những thứ liên quan đến chúng sẽ bị xóa:" +msgstr "Bạn có chắc muốn xóa tệp và/hoặc thư mục đã chọn? Tất cả những đối tượng và những thứ liên quan đến chúng sẽ bị xóa:" #: templates/admin/filer/delete_selected_files_confirmation.html:46 #: templates/admin/filer/folder/choose_copy_destination.html:64 @@ -687,10 +674,9 @@ msgstr "Biểu tượng thư mục" #: 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." -msgstr "" -"Tài khoản của bạn không có quyền để sao chép tất cả tệp và thư mục được chọn." +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." +msgstr "Tài khoản của bạn không có quyền để sao chép tất cả tệp và thư mục được chọn." #: templates/admin/filer/folder/choose_copy_destination.html:25 #: templates/admin/filer/folder/choose_copy_destination.html:31 @@ -714,9 +700,7 @@ msgstr "Không có tệp và/hoặc thư mục để sao chép." msgid "" "The following files and/or folders will be copied to a destination folder " "(retaining their tree structure):" -msgstr "" -"Những tệp và thư mục sau sẽ được sao chép tới một thư mục đích (giữ cấu trúc " -"cây thư mục):" +msgstr "Những tệp và thư mục sau sẽ được sao chép tới một thư mục đích (giữ cấu trúc cây thư mục):" #: templates/admin/filer/folder/choose_copy_destination.html:54 #: templates/admin/filer/folder/choose_move_destination.html:64 @@ -736,9 +720,7 @@ msgstr "Không cho phép sao chép tệp tới cùng thư mục" #: templates/admin/filer/folder/choose_images_resize_options.html:15 msgid "" "Your account doesn't have permissions to resize all of the selected images." -msgstr "" -"Tài khoản của bạn không có quyền để thay đổi kích thước của tất cả hình ảnh " -"đã chọn." +msgstr "Tài khoản của bạn không có quyền để thay đổi kích thước của tất cả hình ảnh đã chọn." #: templates/admin/filer/folder/choose_images_resize_options.html:18 msgid "There are no images available to resize." @@ -748,35 +730,25 @@ msgstr "Không có hình ảnh để thay dổi kích thước" msgid "The following images will be resized:" msgstr "Hình ảnh dưới đay sẽ bị thay đổi kích thước:" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" -msgstr "" -"Chọn một tùy chọn của thumbnail đang tồn tại hoặc nhập tham số thay đổi kích " -"thước:" - -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "Chọn tham số thay dổi kích thước:" +msgstr "Chọn một tùy chọn của thumbnail đang tồn tại hoặc nhập tham số thay đổi kích thước:" -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." -msgstr "" -"Cảnh bảo: Hình ảnh sẽ bị thay đổi tại chỗ và ảnh gốc sẽ bị mất. Có thể tạo " -"một sao chép của chúng để giữ lại hình ảnh gốc." +msgstr "Cảnh bảo: Hình ảnh sẽ bị thay đổi tại chỗ và ảnh gốc sẽ bị mất. Có thể tạo một sao chép của chúng để giữ lại hình ảnh gốc." -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "Thay đổi kích thước" #: 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." -msgstr "" -"Tài khoản của bạn không có quyền để di chuyển tất cả các tệp và thư mục đã " -"chọn." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." +msgstr "Tài khoản của bạn không có quyền để di chuyển tất cả các tệp và thư mục đã chọn." #: templates/admin/filer/folder/choose_move_destination.html:47 msgid "There are no files and/or folders available to move." @@ -786,9 +758,7 @@ msgstr "Không có tệp và/hoặc thư mục để di chuyển." msgid "" "The following files and/or folders will be moved to a destination folder " "(retaining their tree structure):" -msgstr "" -"Tệp và thư mục dưới đây sẽ được chuyển tới thư mục đích (giữ nguyên cấu trúc " -"cây thư mục):" +msgstr "Tệp và thư mục dưới đây sẽ được chuyển tới thư mục đích (giữ nguyên cấu trúc cây thư mục):" #: templates/admin/filer/folder/choose_move_destination.html:73 #: templates/admin/filer/folder/choose_move_destination.html:76 @@ -813,9 +783,7 @@ msgstr "Không có tệp để đổi tên." msgid "" "The following files will be renamed (they will stay in their folders and " "keep original filename, only displayed filename will be changed):" -msgstr "" -"Tệp dưới đây sẽ bị đổi tên (chúng vẫn ở trong thư mục của chúng và giữ tên " -"gốc, chỉ tên hiển thị sẽ bị thay đổi):" +msgstr "Tệp dưới đây sẽ bị đổi tên (chúng vẫn ở trong thư mục của chúng và giữ tên gốc, chỉ tên hiển thị sẽ bị thay đổi):" #: templates/admin/filer/folder/choose_rename_format.html:59 msgid "Rename" @@ -968,11 +936,13 @@ msgstr "đã kích hoạt" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "Url hợp chuẩn '%(item_label)s'" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "Tải '%(item_label)s'" @@ -1034,10 +1004,12 @@ msgstr "Chọn tất cả %(total_count)s" #: 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 "" @@ -1102,6 +1074,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1157,6 +1130,7 @@ msgid "Choose File" msgstr "Chọn tệp" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1182,6 +1156,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/zh-Hans/LC_MESSAGES/django.mo b/filer/locale/zh-Hans/LC_MESSAGES/django.mo index d4d88d87f9f58b945e71632b408a50d4e6890964..3ca7065160c39756f1ba99ddfe104f9fba7780fd 100644 GIT binary patch delta 4509 zcmYk;3s9C-9>?)N3WACvBwirY6c7ZjX_3}~nMs(DTZozKHB2)NOU*Xz)y-8Tv68e5 zGqYT;y*RDdfk_@+$^o z63ogl9^2uwsP<~Gn_0*XQBVWT*d4z|brgS@SqkQ$IvR)l@Lp_-RhWy_7=`MPuN4X8Wcj5=>S zYQRTPGx1Msfk|Cx7*ntpW*}p>n^6Oqij2V?#*m)*S_*1tCu(Zmz$>u9J%$>&u9gF_ z7^k5ISdW^)eRvIii5hT9Qt-@EQEOoks{LW8naxXL{yEnsvO^6l#2&c8Ppn7X$-Ahj z{s=qZF;vIjp$2*eb%&j4RWp>0s^?%Hj`96#FuVv+1FT7A{_hz#EW~X%7=Oa6uwRHJuGgsqZ^0_m6gQ)u zaWX3<9fzYDn2E#iP1L}Dz}XnlJy@J`u$+1m>iX$Dg12E6s^dDh8GBO?b!YxED2zgl zs1$Vv)u@qgN8Q;cs5?K2>i9d~e;&1X+wuIgKLwXyAJpovK~AxH)SCIs9n8us(EGod z!e|bBf*iA6sb=l*M$}tSgnHJKu_czE1~LmZuu|0GTIQDf@k$IoYqti~-s`CL_hFpg z|BorOVaIW|86&Bm@%qoGj-r@P-DxM(@pRN;%R&v{YSdelhw3OFb>45iUW`%Hry|SA z?#5R1Z;w*YRFxwiKih~=xYMmeEylM|cYYK#piljHv+qBR8qklZDR0TbVHsH(Y9J%r zeAM-0FrcY*a>vp5wf)7zs`lTQLFRHzktT0`lhW}yQO|b^Q8PHs>$C87 z>ZPc~c>p!_N0D!uoyuhX)j%{$T~pQ`>C*Y4vFXENB3w8ZhzW+a{ z^Ut9=YMT|Th2E(12D&+@8_Eq)P{T#2hUfbU%lw2gKfVb^b9^r@$JW`wOszp(zX^4x zdr>!#&^P#E4n=iz3+na03pKzh)PO>-QqYvwp)NdtvG}d;{~2{+n|{Imcub|<4Yhv+ zGA1kV`a*0?eF^dnvX!Wrs77_XAJyMK0z>vM3To)AdjWaO7TG_zurF$0HzBiX^Kc|? zL|yjcS?}9enNeh=D=F z?NI~jf;v6|b=_ptl+W<}i&5=7<8DO_Y!Ali{coV43lIAVe?v9!xqH@+#|{e4yA1Uf zBq0mgaxej>q1su1>Toe?QLn-q@D6j2zC705CB7}K!@e=+zfTPEh? z7-SM`J*uOFzP}OGLFXa-6N3{`GqMX4@Gxp1$K424qK@~viuu=Tmdg&-nTz~goudBuGTsLaYfc}L{vOrv|4`31 zeps--FRJ08ZUJh56a4s8)BxxD@kQa|JpVEZdbW?FI;g}5ypOCQF{D4y)`_enFRQ}F zItqUcE5fzl*B{^sug}DeUVadt^s@d#;-xYD{juF-6w$Q(h47ZxEb=GPhG=_-ln_1z zwuL-PrV(u)1lUWcnc@lB8-)9?UF21AabsPE|IgIx8c#x7FCIbuDYea))E83bYaHJ0 zaz!%Hcc7l|6zp-LO&=v~`c`OLNAwzNJ4DLECH^DA-v#B6z2!S^$0=TZ6yGHJC_O|L zlXgUZ0rj_F5t%@=bq}yQ{D}OKZq(!@K;eq&3yRxUU-DeCrM-?xwy5Z z&`542`ao$LL}rjxL<_8%=o|73=}NR|p)Dsph_*Y)B=R)5p6n;x$a;-pEqRP+D4OG4wFl_d0rXshKjuK_9bW4QhtTpDcLon(`{iMBg5|N4Wmg8ZJmOSD}T{94CR?m(_2?~y)a4rw44S3$UVGrx1mY*IrK$!kR02r`B| zMWTtedr2%QAO}e$Ng(%=8;Q0T$PO}<93W}L(lVysw_xu4lKV3s=ux{Q{;?LdJv*L` Vt{rlDY+UWwtn;mEXARod`u`X)u-yOv delta 4564 zcmYk;2~bv57{>9V@qsK#d62Y0CvGisDb8VKYS9Su@;BpM|crNbZ{VILff z18^EfVg>5BwHU_uu8M*>*n*nbe$NkWJV;*u1ZVBpwSE0w`+ztx5_eW42HDMV3irw+7naEk1`B1X}L)2HJ zCU^$5f`8!Pr4ZEp-?t zU5JUOfm2ZvO-Ehfc+?8rZS}c0f_ka7A3{y&SQ6{6CH{ zA*=01p|0Q#)bV-9+}un|#}d>8x1)|bVD-b8M*SNci{T!RcqWC3I0(ydAnwJR@DJ3I zXYsD+UN69&Sc&T30A7Ld$^He5#{%lPn2(2X84m2`pZ_81t!PAz>jhai6|%4wK8(F_ z18PEbs4EC#88q`q)RkqTu6z_~TTGDy63y_0^Ez5$U)S^>QE0^gL%sK|AM;b=ga`h8L9Wb zJp~QW1vT@&7=^>kEDWPQ!RjH@KzXR+=h^we;yc+I-~P7*q#$p_Z%w8PhGd{X0+{9z_j!9MzHDsmq`(YQk5e z`WcVfKM8f-bkukYFcQl>3OcaTtU_JkR@4A{Q5_t&{Xg0M-)(<%U;k}M!xE00kD9>W zsPm&Q^{+S$bs-+=3%Ut4j#o=T@A>Db8Mf)?Pbdl1Q4iFK85o0;t^FR<#EY!`QB0v; zX6@C;9NpViKY_a9)5tf;ok3Q@a~;zCf%~Hd9BJN+8ep24kNPmpK`r4*)WmiocfmE_ zD2(jypEnk@0uzxRS7_}UQ4@I`WAy&NZ9Dd(PWS}1G^eeu{~pwyjGE9@sFfInn#csJ z-;e6}A=HEx+x}|Qc}GzF)?0fM#_0VIWcVEhQ5_^>ET*DP9Af)Npa#rFbu`oTP{&o6 zt5I*odQ8PV7{nh@$Nh`CfB;Xdr>8tf;abc@o*VZd4#tgU171x%fj<n34OEJME5 zZW~^YUm}a4|Pimt=%)1p!!*^1|6`{+<=<-8|H3nKWcu38t{8m z2TiDf&RRWksJ}nK>|&;veNf|NSlt^&K^={>hH;okJ!JLSw!g?ML3OYKb;YYN9@koZ z2dck!Q4>9A)}hWjhU&ionYic9*#S{k_y@$HRv-!W4D_*j7OI1gIn^w{Fxm@I1206a zNGT@aN^9SV>UW=6kKua%PuKycQ3IT_16mF9uOJR}rHQBkI%6xGL!Ke}%c!SbTSxK) z*{TW~k4^KxZBIAX{9h&Ttkv`N{&%p-gZP}4)y`Ye{2{49y+#+2Plz7K0`e+}BHBJA z_mB*-fvhHX5p9Qj+(y(&vEc4q!gV-r8^5Z_`HknO`5#MtO5@0;^E*%O z`rR$sJ5%Q4=5`Sl)2$%d^cB^1gO7Vb_dmrdb@-%}^^wT6a;|$zDKSh50OVn zTXG}mO%{^dh_-IczxmAL5mHL@F{>oQb^o;;Ci|L8{+~w`AG7)gxQNUrN#qW4ev78? z85vLbgXX4^%g78;M)U@3CVX$)O45mF({r|jbhq){?Nsh0FOiYtI+9FYB;{l|(KeS% zAnnLHa*%vVw7uo?|L-d)-Al%iH>@>)#bgb6nRrL})pDC>m0Qh;=KC!U+ClksGTPcE znR{^xnQirVOtGCTvwCauDcyfwy95{R~|e0Z%HUmt}FNhaA(`jA;Ns&!z-tXcD>*VMNUw0W+qd*_{s+g=!5aVo diff --git a/filer/locale/zh-Hans/LC_MESSAGES/django.po b/filer/locale/zh-Hans/LC_MESSAGES/django.po index 6d48fb57a..20e70e4d0 100644 --- a/filer/locale/zh-Hans/LC_MESSAGES/django.po +++ b/filer/locale/zh-Hans/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-06-28 19:25+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: node uuz , 2019\n" "Language-Team: Chinese Simplified (http://app.transifex.com/divio/django-filer/language/zh-Hans/)\n" @@ -36,195 +36,191 @@ msgid "" "Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:45 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "高级" -#: admin/fileadmin.py:160 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "权威URL" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." msgstr "要对执行此操作,必须选择项目。没有项目被更改。" -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" msgstr[0] "选择了 %(total_count)s 个" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "%(folder_name)s文件夹列表" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "选择了 %(cnt)s 中的 0 个" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "没有选择任何动作。" -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "成功将 %(count)d 个文件移动到剪贴板。" -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "移动所选文件到剪贴板" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "成功禁用了权限设置(%(count)d 个文件)。" -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "成功启用了权限设置(%(count)d 个文件)。" -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "对于所选文件,启用权限设置" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "对于所选文件,禁用权限设置" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "成功删除了 %(count)d 个文件或目录" -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "目录或文件删除失败" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "确定吗?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "删除文件或目录" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "删除所选的文件或目录" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "所选的位置已存在名为 %s 的目录" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "成功移动 %(count)d 个文件或目录到 '%(destination)s'。" -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "移动目录或文件" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "移动所选的目录或文件" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "成功重命名 %(count)d 个文件。" -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "重命名文件" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "成功将 %(count)d 个文件或目录复制到 '%(destination)s'。" -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "复制文件或目录" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "复制所选的文件或目录" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "成功缩放 %(count)d 个图片。" -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "缩放图片" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "缩放所选的图片" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "所复制文件的文件名将会加上后缀。" -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." msgstr "后缀应该类似 \"%(valid)s\",是简单、小写的部分文件名称" -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "未知重命名格式: \"%(key)s\"." -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "无效的重命名格式:%(error)s 。" -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "缩略图选项" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "宽" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "高" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "裁剪" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "修改分辨率" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "必须选择缩略图选项或缩放参数。" -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "必须选择缩放参数。" - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "主题位置" @@ -246,11 +242,11 @@ msgstr "主题位置超出了图片范围" msgid "Your input: \"{subject_location}\". " msgstr "你输入的:\"{subject_location}\"。" -#: admin/permissionadmin.py:10 models/foldermodels.py:379 +#: admin/permissionadmin.py:10 models/foldermodels.py:380 msgid "Who" msgstr "" -#: admin/permissionadmin.py:11 models/foldermodels.py:400 +#: admin/permissionadmin.py:11 models/foldermodels.py:401 msgid "What" msgstr "" @@ -258,7 +254,7 @@ msgstr "" msgid "Folder with this name already exists." msgstr "这个名称的目录已经存在。" -#: apps.py:9 templates/admin/filer/breadcrumbs.html:5 +#: apps.py:11 templates/admin/filer/breadcrumbs.html:5 #: templates/admin/filer/folder/change_form.html:7 #: templates/admin/filer/folder/directory_listing.html:33 msgid "Filer" @@ -288,7 +284,7 @@ msgstr "图片" msgid "images" msgstr "图片" -#: models/clipboardmodels.py:11 models/foldermodels.py:288 +#: models/clipboardmodels.py:11 models/foldermodels.py:289 msgid "user" msgstr "用户" @@ -318,7 +314,7 @@ msgid "clipboard items" msgstr "剪贴板对象" #: models/filemodels.py:66 templates/admin/filer/folder/change_form.html:8 -#: templates/admin/filer/folder/directory_listing.html:104 +#: templates/admin/filer/folder/directory_listing.html:102 #: templates/admin/filer/folder/new_folder_form.html:4 #: templates/admin/filer/folder/new_folder_form.html:7 #: templates/admin/filer/tools/clipboard/clipboard.html:27 @@ -341,7 +337,7 @@ msgstr "存在强制性数据" msgid "original filename" msgstr "原始文件名" -#: models/filemodels.py:110 models/foldermodels.py:101 +#: models/filemodels.py:110 models/foldermodels.py:102 #: models/thumbnailoptionmodels.py:10 msgid "name" msgstr "名称" @@ -350,15 +346,15 @@ msgstr "名称" msgid "description" msgstr "描述" -#: models/filemodels.py:125 models/foldermodels.py:107 +#: models/filemodels.py:125 models/foldermodels.py:108 msgid "owner" msgstr "所有者" -#: models/filemodels.py:129 models/foldermodels.py:115 +#: models/filemodels.py:129 models/foldermodels.py:116 msgid "uploaded at" msgstr "上传于" -#: models/filemodels.py:134 models/foldermodels.py:125 +#: models/filemodels.py:134 models/foldermodels.py:126 msgid "modified at" msgstr "修改于" @@ -372,112 +368,129 @@ msgid "" "accessible to anyone." msgstr "对此文件禁用所有权限设置。此文件将可以被任何人公开访问。" -#: models/foldermodels.py:93 +#: models/foldermodels.py:94 msgid "parent" msgstr "" -#: models/foldermodels.py:120 +#: models/foldermodels.py:121 msgid "created at" msgstr "创建于" -#: models/foldermodels.py:135 +#: models/foldermodels.py:136 templates/admin/filer/breadcrumbs.html:6 +#: templates/admin/filer/folder/directory_listing.html:35 msgid "Folder" msgstr "目录" -#: models/foldermodels.py:136 +#: models/foldermodels.py:137 #: templates/admin/filer/folder/directory_thumbnail_list.html:12 msgid "Folders" msgstr "目录" -#: models/foldermodels.py:259 +#: models/foldermodels.py:260 msgid "all items" msgstr "所有项目" -#: models/foldermodels.py:260 +#: models/foldermodels.py:261 msgid "this item only" msgstr "仅此项目" -#: models/foldermodels.py:261 +#: models/foldermodels.py:262 msgid "this item and all children" msgstr "此项目和所有子项目" -#: models/foldermodels.py:265 +#: models/foldermodels.py:266 msgid "inherit" msgstr "" -#: models/foldermodels.py:266 +#: models/foldermodels.py:267 msgid "allow" msgstr "允许" -#: models/foldermodels.py:267 +#: models/foldermodels.py:268 msgid "deny" msgstr "拒绝" -#: models/foldermodels.py:279 +#: models/foldermodels.py:280 msgid "type" msgstr "类型" -#: models/foldermodels.py:296 +#: models/foldermodels.py:297 msgid "group" msgstr "组" -#: models/foldermodels.py:303 +#: models/foldermodels.py:304 msgid "everybody" msgstr "所有人" -#: models/foldermodels.py:308 +#: models/foldermodels.py:309 msgid "can read" msgstr "可读" -#: models/foldermodels.py:316 +#: models/foldermodels.py:317 msgid "can edit" msgstr "可编辑" -#: models/foldermodels.py:324 +#: models/foldermodels.py:325 msgid "can add children" msgstr "可增加子项目" -#: models/foldermodels.py:332 +#: models/foldermodels.py:333 msgid "folder permission" msgstr "目录权限" -#: models/foldermodels.py:333 +#: models/foldermodels.py:334 msgid "folder permissions" msgstr "目录权限" -#: models/foldermodels.py:359 +#: models/foldermodels.py:348 +msgid "Folder cannot be selected with type \"all items\"." +msgstr "" + +#: models/foldermodels.py:350 +msgid "Folder has to be selected when type is not \"all items\"." +msgstr "" + +#: models/foldermodels.py:352 +msgid "User or group cannot be selected together with \"everybody\"." +msgstr "" + +#: models/foldermodels.py:354 +msgid "At least one of user, group, or \"everybody\" has to be selected." +msgstr "" + +#: models/foldermodels.py:360 #| msgid "Folders" msgid "All Folders" msgstr "" -#: models/foldermodels.py:361 +#: models/foldermodels.py:362 msgid "Logical Path" msgstr "" -#: models/foldermodels.py:370 +#: models/foldermodels.py:371 #, python-brace-format msgid "User: {user}" msgstr "" -#: models/foldermodels.py:372 +#: models/foldermodels.py:373 #, python-brace-format msgid "Group: {group}" msgstr "" -#: models/foldermodels.py:374 +#: models/foldermodels.py:375 #| msgid "everybody" msgid "Everybody" msgstr "" -#: models/foldermodels.py:387 templates/admin/filer/widgets/admin_file.html:45 +#: models/foldermodels.py:388 templates/admin/filer/widgets/admin_file.html:45 msgid "Edit" msgstr "" -#: models/foldermodels.py:388 +#: models/foldermodels.py:389 msgid "Read" msgstr "" -#: models/foldermodels.py:389 +#: models/foldermodels.py:390 #| msgid "can add children" msgid "Add children" msgstr "" @@ -523,10 +536,8 @@ msgstr "未分类的上传" msgid "files with missing metadata" msgstr "确实元数据的文件" -#: models/virtualitems.py:87 templates/admin/filer/breadcrumbs.html:7 -#: templates/admin/filer/folder/change_form.html:8 -#: templates/admin/filer/folder/directory_listing.html:37 -#: templates/admin/filer/folder/directory_listing.html:104 +#: models/virtualitems.py:87 templates/admin/filer/folder/change_form.html:8 +#: templates/admin/filer/folder/directory_listing.html:102 msgid "root" msgstr "根目录" @@ -580,16 +591,16 @@ msgstr "首页" msgid "Go back to Filer app" msgstr "回到文件管理器首页" -#: templates/admin/filer/breadcrumbs.html:7 -#: templates/admin/filer/folder/directory_listing.html:37 +#: templates/admin/filer/breadcrumbs.html:6 +#: templates/admin/filer/folder/directory_listing.html:35 msgid "Go back to root folder" msgstr "回到根目录" -#: templates/admin/filer/breadcrumbs.html:10 -#: templates/admin/filer/breadcrumbs.html:20 +#: templates/admin/filer/breadcrumbs.html:8 +#: templates/admin/filer/breadcrumbs.html:18 #: templates/admin/filer/folder/change_form.html:10 -#: templates/admin/filer/folder/directory_listing.html:42 -#: templates/admin/filer/folder/directory_listing.html:49 +#: templates/admin/filer/folder/directory_listing.html:39 +#: templates/admin/filer/folder/directory_listing.html:47 #, python-format msgid "Go back to '%(folder_name)s' folder" msgstr "回到 '%(folder_name)s' 目录" @@ -642,7 +653,7 @@ msgstr "查看站点" #: templates/admin/filer/folder/change_form.html:6 #: templates/admin/filer/folder/change_form.html:7 #: templates/admin/filer/folder/change_form.html:8 -#: templates/admin/filer/folder/directory_listing.html:104 +#: templates/admin/filer/folder/directory_listing.html:102 msgid "Go back to" msgstr "后退到" @@ -651,8 +662,8 @@ msgid "admin homepage" msgstr "管理首页" #: templates/admin/filer/folder/change_form.html:37 -#: templates/admin/filer/folder/directory_listing.html:97 -#: templates/admin/filer/folder/directory_listing.html:105 +#: templates/admin/filer/folder/directory_listing.html:95 +#: 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 @@ -699,7 +710,7 @@ msgstr "目标目录:" #: templates/admin/filer/folder/choose_copy_destination.html:65 #: templates/admin/filer/folder/choose_copy_destination.html:68 -#: templates/admin/filer/folder/directory_listing.html:180 +#: templates/admin/filer/folder/directory_listing.html:178 msgid "Copy" msgstr "复制" @@ -720,21 +731,17 @@ msgstr "没有图片可缩放。" msgid "The following images will be resized:" msgstr "以下图片将被缩放:" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" msgstr "选择一个缩略图选项或输入缩放参数:" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "缩放参数:" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." msgstr "警告:图片将被缩放,并且源文件将被覆盖。你应该先将它们做个备份。" -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "缩放" @@ -756,7 +763,7 @@ msgstr "以下的文件将移动到目标目录(包含它们的树结构):" #: templates/admin/filer/folder/choose_move_destination.html:73 #: templates/admin/filer/folder/choose_move_destination.html:76 -#: templates/admin/filer/folder/directory_listing.html:183 +#: templates/admin/filer/folder/directory_listing.html:181 msgid "Move" msgstr "移动" @@ -783,63 +790,63 @@ msgstr "以下文件将被重命名(源文件不变,只是显示名称被修 msgid "Rename" msgstr "重命名" -#: templates/admin/filer/folder/directory_listing.html:96 +#: templates/admin/filer/folder/directory_listing.html:94 msgid "Go back to the parent folder" msgstr "回到父目录" -#: templates/admin/filer/folder/directory_listing.html:133 +#: templates/admin/filer/folder/directory_listing.html:131 msgid "Change current folder details" msgstr "修改当前目录属性" -#: templates/admin/filer/folder/directory_listing.html:133 +#: templates/admin/filer/folder/directory_listing.html:131 msgid "Change" msgstr "修改" -#: templates/admin/filer/folder/directory_listing.html:143 +#: templates/admin/filer/folder/directory_listing.html:141 msgid "Click here to run search for entered phrase" msgstr "点击开始搜索" -#: templates/admin/filer/folder/directory_listing.html:146 +#: templates/admin/filer/folder/directory_listing.html:144 msgid "Search" msgstr "搜索" -#: templates/admin/filer/folder/directory_listing.html:153 +#: templates/admin/filer/folder/directory_listing.html:151 msgid "Close" msgstr "关闭" -#: templates/admin/filer/folder/directory_listing.html:155 +#: templates/admin/filer/folder/directory_listing.html:153 msgid "Limit" msgstr "限定" -#: templates/admin/filer/folder/directory_listing.html:160 +#: templates/admin/filer/folder/directory_listing.html:158 msgid "Check it to limit the search to current folder" msgstr "将搜索限定在当前目录" -#: templates/admin/filer/folder/directory_listing.html:161 +#: templates/admin/filer/folder/directory_listing.html:159 msgid "Limit the search to current folder" msgstr "将搜索限定在当前目录" -#: templates/admin/filer/folder/directory_listing.html:177 +#: templates/admin/filer/folder/directory_listing.html:175 msgid "Delete" msgstr "删除" -#: templates/admin/filer/folder/directory_listing.html:205 +#: templates/admin/filer/folder/directory_listing.html:203 msgid "Adds a new Folder" msgstr "新增一个目录" -#: templates/admin/filer/folder/directory_listing.html:208 +#: templates/admin/filer/folder/directory_listing.html:206 msgid "New Folder" msgstr "新增目录" -#: templates/admin/filer/folder/directory_listing.html:213 -#: templates/admin/filer/folder/directory_listing.html:220 -#: templates/admin/filer/folder/directory_listing.html:223 -#: templates/admin/filer/folder/directory_listing.html:230 -#: templates/admin/filer/folder/directory_listing.html:237 +#: templates/admin/filer/folder/directory_listing.html:211 +#: templates/admin/filer/folder/directory_listing.html:218 +#: templates/admin/filer/folder/directory_listing.html:221 +#: templates/admin/filer/folder/directory_listing.html:228 +#: templates/admin/filer/folder/directory_listing.html:235 msgid "Upload Files" msgstr "上传文件" -#: templates/admin/filer/folder/directory_listing.html:235 +#: templates/admin/filer/folder/directory_listing.html:233 msgid "You have to select a folder first" msgstr "必须先选择一个目录" @@ -1067,7 +1074,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 -#: templatetags/filer_admin_tags.py:101 +#: templatetags/filer_admin_tags.py:107 #| msgid "file missing" msgid "File is missing" msgstr "" @@ -1150,6 +1157,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/zh/LC_MESSAGES/django.po b/filer/locale/zh/LC_MESSAGES/django.po index 05bbbbae8..de027e97a 100644 --- a/filer/locale/zh/LC_MESSAGES/django.po +++ b/filer/locale/zh/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,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+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/" -"zh/)\n" -"Language: zh\n" +"Language-Team: Chinese (http://app.transifex.com/divio/django-filer/language/zh/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -29,198 +30,195 @@ 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." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." msgstr "" -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" msgstr[0] "" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "" -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "" -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "" -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "" -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "" -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "" -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." msgstr "" -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "" -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "" -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "" -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "" - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "" @@ -459,6 +457,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -477,6 +476,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -489,6 +489,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -543,6 +544,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -671,8 +673,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 @@ -727,28 +729,24 @@ msgstr "" msgid "The following images will be resized:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" 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 @@ -937,11 +935,13 @@ msgstr "" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "" @@ -1003,10 +1003,12 @@ 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 "" @@ -1071,6 +1073,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1126,6 +1129,7 @@ msgid "Choose File" msgstr "" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1151,6 +1155,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/zh_CN/LC_MESSAGES/django.po b/filer/locale/zh_CN/LC_MESSAGES/django.po index 5dc7b4114..6b02d8c3f 100644 --- a/filer/locale/zh_CN/LC_MESSAGES/django.po +++ b/filer/locale/zh_CN/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,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+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/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://app.transifex.com/divio/django-filer/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -29,198 +30,195 @@ 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." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." msgstr "" -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" msgstr[0] "" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "" -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "" -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "" -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "" -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "" -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "" -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." msgstr "" -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "" -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "" -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "" -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "" - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "" @@ -459,6 +457,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -477,6 +476,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -489,6 +489,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -543,6 +544,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -671,8 +673,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 @@ -727,28 +729,24 @@ msgstr "" msgid "The following images will be resized:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" 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 @@ -937,11 +935,13 @@ msgstr "" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "" @@ -1003,10 +1003,12 @@ 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 "" @@ -1071,6 +1073,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1126,6 +1129,7 @@ msgid "Choose File" msgstr "" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1151,6 +1155,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/zh_TW/LC_MESSAGES/django.po b/filer/locale/zh_TW/LC_MESSAGES/django.po index 29f4d8c5e..15f3a53c2 100644 --- a/filer/locale/zh_TW/LC_MESSAGES/django.po +++ b/filer/locale/zh_TW/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,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+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/" -"language/zh_TW/)\n" -"Language: zh_TW\n" +"Language-Team: Chinese (Taiwan) (http://app.transifex.com/divio/django-filer/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -29,198 +30,195 @@ 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." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." msgstr "" -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" msgstr[0] "" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "" -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "" -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "" -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "" -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "" -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "" -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." msgstr "" -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "" -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "" -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "" -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "" - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "" @@ -459,6 +457,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -477,6 +476,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -489,6 +489,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -543,6 +544,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -671,8 +673,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 @@ -727,28 +729,24 @@ msgstr "" msgid "The following images will be resized:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" 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 @@ -937,11 +935,13 @@ msgstr "" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "" @@ -1003,10 +1003,12 @@ 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 "" @@ -1071,6 +1073,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1126,6 +1129,7 @@ msgid "Choose File" msgstr "" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1151,6 +1155,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/settings.py b/filer/settings.py index 26b5d18b1..bf1391540 100644 --- a/filer/settings.py +++ b/filer/settings.py @@ -3,7 +3,7 @@ from django.conf import settings from django.core.exceptions import ImproperlyConfigured -from django.core.files.storage import get_storage_class +from django.utils.module_loading import import_string as get_storage_class from django.utils.translation import gettext_lazy as _ from .utils.loader import load_object diff --git a/filer/templates/admin/filer/folder/choose_copy_destination.html b/filer/templates/admin/filer/folder/choose_copy_destination.html index 566912686..6981a6062 100644 --- a/filer/templates/admin/filer/folder/choose_copy_destination.html +++ b/filer/templates/admin/filer/folder/choose_copy_destination.html @@ -58,7 +58,7 @@ {% endfor %}

- {{ copy_form.as_p_with_help }} + {{ copy_form.as_p }}
{% translate "No, take me back" %} diff --git a/filer/templates/admin/filer/folder/choose_images_resize_options.html b/filer/templates/admin/filer/folder/choose_images_resize_options.html index 2aebe8d8c..a47df078a 100644 --- a/filer/templates/admin/filer/folder/choose_images_resize_options.html +++ b/filer/templates/admin/filer/folder/choose_images_resize_options.html @@ -29,12 +29,10 @@ {% endfor %} - {% if cmsplugin_enabled %} -

{% blocktrans %}Choose an existing thumbnail option or enter resize parameters:{% endblocktrans %}

- {% else %} -

{% blocktrans %}Choose resize parameters:{% endblocktrans %}

- {% endif %} - {{ resize_form.as_p_with_help }} +

{% blocktrans %}Choose an existing thumbnail option or enter resize parameters:{% endblocktrans %}

+ {% for fieldset in resize_form.admin_form %} + {% include "admin/includes/fieldset.html" %} + {% endfor %}

{% blocktrans %}Warning: Images will be resized in-place and originals will be lost. Maybe first make a copy of them to retain the originals.{% endblocktrans %}

diff --git a/filer/templates/admin/filer/folder/choose_move_destination.html b/filer/templates/admin/filer/folder/choose_move_destination.html index cfc8269f6..7d93fa9b2 100644 --- a/filer/templates/admin/filer/folder/choose_move_destination.html +++ b/filer/templates/admin/filer/folder/choose_move_destination.html @@ -69,7 +69,7 @@

- {% translate "No, take me back" %} + {% translate "No, take me back" %} diff --git a/filer/templates/admin/filer/folder/choose_rename_format.html b/filer/templates/admin/filer/folder/choose_rename_format.html index e45db94a2..fae8ea1b7 100644 --- a/filer/templates/admin/filer/folder/choose_rename_format.html +++ b/filer/templates/admin/filer/folder/choose_rename_format.html @@ -30,7 +30,7 @@ {% endfor %} - {{ rename_form.as_p_with_help }} + {{ rename_form.as_p }}

Rename format is in Python % operator format using dictionary of possible values:

diff --git a/setup.py b/setup.py index ea32fa866..69deb6952 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ REQUIREMENTS = [ - 'django>=3.2,<5', + 'django>=3.2,<5.1', 'django-polymorphic', 'easy-thumbnails[svg]', ] diff --git a/tests/requirements/django-5.0.txt b/tests/requirements/django-5.0.txt new file mode 100644 index 000000000..574910cbc --- /dev/null +++ b/tests/requirements/django-5.0.txt @@ -0,0 +1,4 @@ +-r base.txt + +django>=5.0a1,<5.1 +django_polymorphic>=3.1 diff --git a/tests/test_admin.py b/tests/test_admin.py index c4d22bfab..017c9fc89 100644 --- a/tests/test_admin.py +++ b/tests/test_admin.py @@ -325,7 +325,7 @@ def test_detail_view_missing_file(self): image._height = 200 image.save() - url = reverse('admin:filer_image_change', kwargs={ + url = reverse(f'admin:{image.__class__._meta.app_label}_image_change', kwargs={ 'object_id': image.pk, }) @@ -1794,3 +1794,49 @@ def test_file_icon_with_size(self): height, width, context = get_aspect_ratio_and_download_url(context=context, detail=True, file=file, height=40, width=40) self.assertNotIn('sidebar_image_ratio', context.keys()) self.assertIn('download_url', context.keys()) + + +class AdditionalAdminFormsTests(TestCase): + def setUp(self): + self.superuser = create_superuser() + self.client.login(username='admin', password='secret') + self.img = create_image() + self.image_name = 'test_file.jpg' + self.filename = os.path.join(settings.FILE_UPLOAD_TEMP_DIR, self.image_name) + self.img.save(self.filename, 'JPEG') + with open(self.filename, 'rb') as upload: + self.file_object = Image.objects.create(file=django.core.files.File(upload, name=self.image_name)) + self.payload = { + 'select_across': ['0'], 'index': ['0'], + '_selected_action': [f'file-{self.file_object.pk}',] + } + self.url = reverse("admin:filer-directory_listing-unfiled_images") + + def tearDown(self): + self.client.logout() + os.remove(self.filename) + + def test_copy_form(self): + response = self.client.post(self.url, {"action": ["copy_files_and_folders"], **self.payload}) + self.assertContains(response, '

There are no destination folders available.

') + + folder = Folder.objects.create(name="My Image Folder") + response = self.client.post(self.url, {"action": ["copy_files_and_folders"], **self.payload}) + self.assertContains(response, ' ') + + folder.delete() + + def test_move_form(self): + response = self.client.post(self.url, {"action": ["move_files_and_folders"], **self.payload}) + self.assertContains(response, '

There are no destination folders available.

') + + folder = Folder.objects.create(name="My Image Folder") + response = self.client.post(self.url, {"action": ["copy_files_and_folders"], **self.payload}) + self.assertContains(response, ' ') + + folder.delete() + + def test_resize_form(self): + response = self.client.post(self.url, {"action": ["resize_images"], **self.payload}) + self.assertContains(response, 'Warning: Images will be resized in-place and originals will be lost.') + self.assertContains(response, '
') diff --git a/tox.ini b/tox.ini index 1d7d7e714..f81e1db80 100644 --- a/tox.ini +++ b/tox.ini @@ -6,6 +6,7 @@ envlist = frontend py{38,39,310}-dj32-{swap,noswap} py{38,39,310,311}-{dj40,dj41,dj42}-{swap,noswap} + py{310,311}-{dj50}-{swap,noswap} [gh-actions] python = @@ -22,6 +23,7 @@ deps = dj40: -r tests/requirements/django-4.0.txt dj41: -r tests/requirements/django-4.1.txt dj42: -r tests/requirements/django-4.2.txt + dj50: -r tests/requirements/django-5.0.txt commands = {envpython} --version {env:COMMAND:coverage} erase From 72e2d41040b0f61774b9fe0c49f23c8e69afd20a Mon Sep 17 00:00:00 2001 From: Cornut Matthieu Date: Tue, 26 Sep 2023 09:12:48 +0200 Subject: [PATCH 3/3] fix: URL action in data table list template (#1428) --- filer/templates/admin/filer/folder/directory_table_list.html | 1 - 1 file changed, 1 deletion(-) diff --git a/filer/templates/admin/filer/folder/directory_table_list.html b/filer/templates/admin/filer/folder/directory_table_list.html index 8c9ce2edc..138d28937 100644 --- a/filer/templates/admin/filer/folder/directory_table_list.html +++ b/filer/templates/admin/filer/folder/directory_table_list.html @@ -140,7 +140,6 @@ {% if file.canonical_url %} {% endif %}