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 806359e2d..96cc2d4d9 100644 --- a/filer/admin/forms.py +++ b/filer/admin/forms.py @@ -1,5 +1,4 @@ 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 @@ -58,23 +57,17 @@ def clean_rename_format(self): class ResizeImagesForm(WithFieldsetMixin, forms.Form): fieldsets = ((None, {"fields": ( + "thumbnail_option", ("width", "height"), ("crop", "upscale"))}),) - 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() - - def get_fieldsets(self): - """Updates the static fieldset by prepending thumbnail options""" - fieldsets = super().get_fieldsets() - fieldsets[0][1]["fields"] = ("thumbnail_option") + fieldsets[0][1]["fields"] - return fieldsets + 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) @@ -83,8 +76,5 @@ def get_fieldsets(self): 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..62915c1d1 100644 --- a/filer/locale/ar/LC_MESSAGES/django.po +++ b/filer/locale/ar/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-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/" @@ -33,21 +33,21 @@ 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 "" -#: 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 +58,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 "" @@ -733,21 +729,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 "" diff --git a/filer/locale/bg/LC_MESSAGES/django.po b/filer/locale/bg/LC_MESSAGES/django.po index b4408c723..e85006c69 100644 --- a/filer/locale/bg/LC_MESSAGES/django.po +++ b/filer/locale/bg/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-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/" @@ -32,196 +32,192 @@ 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 "" -#: 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 "" @@ -728,21 +724,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 "" diff --git a/filer/locale/ca/LC_MESSAGES/django.po b/filer/locale/ca/LC_MESSAGES/django.po index 73a7894d7..be3af22e1 100644 --- a/filer/locale/ca/LC_MESSAGES/django.po +++ b/filer/locale/ca/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-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: Roger Pons , 2013-2014,2016\n" "Language-Team: Catalan (http://app.transifex.com/divio/django-filer/language/" @@ -33,15 +33,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 "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." @@ -49,81 +49,81 @@ 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 " @@ -131,25 +131,25 @@ msgid "" 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 " @@ -157,32 +157,32 @@ msgid "" 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 " @@ -191,44 +191,40 @@ 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." @@ -749,17 +745,13 @@ 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:" - -#: 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." @@ -768,7 +760,7 @@ msgstr "" "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" @@ -1190,6 +1182,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Heu de triar paràmetres de redimensionat." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Trieu els paràmetres de redimensionat:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/cs/LC_MESSAGES/django.po b/filer/locale/cs/LC_MESSAGES/django.po index 948960e99..6d3c70d93 100644 --- a/filer/locale/cs/LC_MESSAGES/django.po +++ b/filer/locale/cs/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-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/" @@ -35,21 +35,21 @@ 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 "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,74 +58,74 @@ 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 " @@ -134,25 +134,25 @@ 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 " @@ -161,32 +161,32 @@ 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 " @@ -195,46 +195,42 @@ 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." - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "Pozice objektu" @@ -752,16 +748,12 @@ 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:" - -#: 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." @@ -770,7 +762,7 @@ msgstr "" "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" @@ -1192,6 +1184,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Parametry pro změny velikosti musí být vybrány." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Vyberte parametry změny velikosti:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/de/LC_MESSAGES/django.po b/filer/locale/de/LC_MESSAGES/django.po index 10d1bc769..c240aa009 100644 --- a/filer/locale/de/LC_MESSAGES/django.po +++ b/filer/locale/de/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,220 +16,229 @@ 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" +"Language-Team: German (http://app.transifex.com/divio/django-filer/language/" +"de/)\n" +"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de\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 "Du hast keine Berechtigungen, um Dateien hochzuladen." #: admin/clipboardadmin.py:17 msgid "Can't find folder to upload. Please refresh and try again" -msgstr "Ich kann den Zielordner nicht finden. Bitter lade die Seite neu und versuche es noch einmal." +msgstr "" +"Ich kann den Zielordner nicht finden. Bitter lade die Seite neu und versuche " +"es noch einmal." #: admin/clipboardadmin.py:19 -msgid "" -"Can't use this folder, Permission Denied. Please select another folder." -msgstr "Zugriff auf diesen Ordner verweigert. Bitte wähle einen anderen Ordner." +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." +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." +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." +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." +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\"." +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." +msgstr "" +"Vorschaubild Optionen oder Parameter zur Grössenänderung müssen ausgewählt " +"werden." #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" @@ -376,7 +385,9 @@ msgstr "Berechtigungen deaktiviert" msgid "" "Disable any permission checking for this file. File will be publicly " "accessible to anyone." -msgstr "Zugriffskontrolle für diese Datei deaktivieren. Die Datei wird für jeden öffentlich zugreifbar sein." +msgstr "" +"Zugriffskontrolle für diese Datei deaktivieren. Die Datei wird für jeden " +"öffentlich zugreifbar sein." #: models/foldermodels.py:94 msgid "parent" @@ -458,18 +469,21 @@ msgstr "Für den Typ \"Alle Einträge\" kann kein Ordner ausgewählt werden. " #: models/foldermodels.py:350 msgid "Folder has to be selected when type is not \"all items\"." -msgstr "Für alle Typen außer \"Alle Einträge\" muss ein Ordner ausgewählt werden." +msgstr "" +"Für alle Typen außer \"Alle Einträge\" muss ein Ordner ausgewählt werden." #: models/foldermodels.py:352 msgid "User or group cannot be selected together with \"everybody\"." -msgstr "Zusammen mit \"Jeder\" kann kein Benutzer oder eine Gruppe ausgewählt werden." +msgstr "" +"Zusammen mit \"Jeder\" kann kein Benutzer oder eine Gruppe ausgewählt werden." #: models/foldermodels.py:354 msgid "At least one of user, group, or \"everybody\" has to be selected." -msgstr "Mindestens ein Eintrag muss gewählt werden: \"Benutzer\", \"Gruppe\" oder \"Jeder\"." +msgstr "" +"Mindestens ein Eintrag muss gewählt werden: \"Benutzer\", \"Gruppe\" oder " +"\"Jeder\"." #: models/foldermodels.py:360 -#| msgid "Folders" msgid "All Folders" msgstr "Alle Ordner" @@ -488,7 +502,6 @@ msgid "Group: {group}" msgstr "Gruppe: {group}" #: models/foldermodels.py:375 -#| msgid "everybody" msgid "Everybody" msgstr "Jede(r)" @@ -501,7 +514,6 @@ msgid "Read" msgstr "Lesen" #: models/foldermodels.py:390 -#| msgid "can add children" msgid "Add children" msgstr "Unterordner hinzufügen" @@ -556,7 +568,6 @@ msgid "Show table view" msgstr "Tabellenansicht" #: settings.py:278 -#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "Vorschauansicht" @@ -624,19 +635,27 @@ 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 "Beim Löschen der ausgewählten Dateien und/oder Ordner, würden verbundene Objekte mitgelöscht. Dein Benutzerkonto hat jedoch nicht die erforderlichen Berechtigungen, um die folgenden Objekttypen zu löschen:" +msgstr "" +"Beim Löschen der ausgewählten Dateien und/oder Ordner, würden verbundene " +"Objekte mitgelöscht. Dein Benutzerkonto hat jedoch nicht die erforderlichen " +"Berechtigungen, um die folgenden Objekttypen zu löschen:" #: 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 "Das Löschen der folgenden ausgewählten Dateien und/oder Ordner würde das Löschen der folgenden geschützten verknüpften Objekte erfordern:" +msgstr "" +"Das Löschen der folgenden ausgewählten Dateien und/oder Ordner würde das " +"Löschen der folgenden geschützten verknüpften Objekte erfordern:" #: 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 "Bist Du sicher, dass Du die ausgewählten Dateien und/oder Ordner löschen willst? Alle der folgenden Objekte und ihre verbundenen Einträge werden gelöscht:" +msgstr "" +"Bist Du sicher, dass Du die ausgewählten Dateien und/oder Ordner löschen " +"willst? Alle der folgenden Objekte und ihre verbundenen Einträge werden " +"gelöscht:" #: templates/admin/filer/delete_selected_files_confirmation.html:46 #: templates/admin/filer/folder/choose_copy_destination.html:64 @@ -685,9 +704,11 @@ msgstr "Ordner Icon" #: 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 "Dein Benutzerkonto hat nicht die Berechtigungen, um alle der ausgewählten Dateien und/oder Ordner zu kopieren." +"Your account doesn't have permissions to copy all of the selected files and/" +"or folders." +msgstr "" +"Dein Benutzerkonto hat nicht die Berechtigungen, um alle der ausgewählten " +"Dateien und/oder Ordner zu kopieren." #: templates/admin/filer/folder/choose_copy_destination.html:25 #: templates/admin/filer/folder/choose_copy_destination.html:31 @@ -711,7 +732,9 @@ msgstr "Es gibt keine Dateien und/oder Ordner zum Kopieren." msgid "" "The following files and/or folders will be copied to a destination folder " "(retaining their tree structure):" -msgstr "Die folgenden Dateien und/oder Ordner werden in einen Zielordner kopiert (unter Beibehaltung ihrer Ordnerstruktur):" +msgstr "" +"Die folgenden Dateien und/oder Ordner werden in einen Zielordner kopiert " +"(unter Beibehaltung ihrer Ordnerstruktur):" #: templates/admin/filer/folder/choose_copy_destination.html:54 #: templates/admin/filer/folder/choose_move_destination.html:64 @@ -731,7 +754,9 @@ msgstr "Es ist nicht erlaubt Dateien in den selben Ordner zu kopieren" #: 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 "Dein Benutzerkonto hat nicht die erforderlichen Berechtigungen, um die Grösse jedes der ausgewählten Bilder zu verändern." +msgstr "" +"Dein Benutzerkonto hat nicht die erforderlichen Berechtigungen, um die " +"Grösse jedes der ausgewählten Bilder zu verändern." #: templates/admin/filer/folder/choose_images_resize_options.html:18 msgid "There are no images available to resize." @@ -741,29 +766,31 @@ 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:" +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: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." +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" #: 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 "Dein Benutzerkonto hat nicht die erforderlichen Berechtigungen, um alle ausgewählten Dateien und/oder Ordner zu verschieben." +"Your account doesn't have permissions to move all of the selected files and/" +"or folders." +msgstr "" +"Dein Benutzerkonto hat nicht die erforderlichen Berechtigungen, um alle " +"ausgewählten Dateien und/oder Ordner zu verschieben." #: templates/admin/filer/folder/choose_move_destination.html:47 msgid "There are no files and/or folders available to move." @@ -773,7 +800,9 @@ msgstr "Es gibt keine verschiebbaren Dateien und/oder Ordner." msgid "" "The following files and/or folders will be moved to a destination folder " "(retaining their tree structure):" -msgstr "Die folgenden Dateien und/oder Ordner werden in ein Zielordner verschoben (unter Beibehaltung ihrer Ordnerstruktur):" +msgstr "" +"Die folgenden Dateien und/oder Ordner werden in ein Zielordner verschoben " +"(unter Beibehaltung ihrer Ordnerstruktur):" #: templates/admin/filer/folder/choose_move_destination.html:73 #: templates/admin/filer/folder/choose_move_destination.html:76 @@ -788,7 +817,9 @@ msgstr "Es ist nicht erlaubt Dateien in den selben Ordner zu verschieben" #: templates/admin/filer/folder/choose_rename_format.html:15 msgid "" "Your account doesn't have permissions to rename all of the selected files." -msgstr "Dein Benutzerkonto hat nicht die erforderlichen Berechtigungen, um alle ausgewählten Dateien umzubenennen." +msgstr "" +"Dein Benutzerkonto hat nicht die erforderlichen Berechtigungen, um alle " +"ausgewählten Dateien umzubenennen." #: templates/admin/filer/folder/choose_rename_format.html:18 msgid "There are no files available to rename." @@ -798,7 +829,10 @@ msgstr "Es sind keine Dateien, die umbenannt werden können." msgid "" "The following files will be renamed (they will stay in their folders and " "keep original filename, only displayed filename will be changed):" -msgstr "Die folgenden Dateien werden umbenannt (sie bleiben in ihren Ordnern und behalten ihren originalen Dateinamen, nur dier angezeigte Dateiname wird geändert):" +msgstr "" +"Die folgenden Dateien werden umbenannt (sie bleiben in ihren Ordnern und " +"behalten ihren originalen Dateinamen, nur dier angezeigte Dateiname wird " +"geändert):" #: templates/admin/filer/folder/choose_rename_format.html:59 msgid "Rename" @@ -953,13 +987,11 @@ msgstr "aktiviert" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format -#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "Kanonische URL '%(item_label)s'" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format -#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "'%(item_label)s' herunterladen" @@ -1021,12 +1053,10 @@ msgstr "Alle %(total_count)s auswählen" #: 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 "Alle auswählen" #: templates/admin/filer/folder/directory_thumbnail_list.html:77 -#| msgid "Filer" msgid "Files" msgstr "Dateien" @@ -1092,7 +1122,6 @@ msgstr "Vergrößern" #: 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 "Datei fehlt" @@ -1148,31 +1177,43 @@ msgid "Choose File" msgstr "Datei auswählen" #: templates/admin/filer/widgets/admin_folder.html:16 -#| msgid "Choose File" msgid "Choose Folder" msgstr "Ordner auswählen" #: validation.py:19 #, python-brace-format msgid "File \"{file_name}\": Upload denied by site security policy" -msgstr "Datei \"{file_name}\": Die Sicherheitseinstellung der Seite haben die Datei zurückgewiesen." +msgstr "" +"Datei \"{file_name}\": Die Sicherheitseinstellung der Seite haben die Datei " +"zurückgewiesen." #: validation.py:22 #, python-brace-format msgid "File \"{file_name}\": {file_type} upload denied by site security policy" -msgstr "Datei \"{file_name}\": Die Sicherheitseinstellung weisen {file_type}-Dateien zurück." +msgstr "" +"Datei \"{file_name}\": Die Sicherheitseinstellung weisen {file_type}-Dateien " +"zurück." #: validation.py:33 #, python-brace-format msgid "File \"{file_name}\": HTML upload denied by site security policy" -msgstr "Datei \"{file_name}\": Die Sicherheitseinstellung weisen HTML-Dateien zurück." +msgstr "" +"Datei \"{file_name}\": Die Sicherheitseinstellung weisen HTML-Dateien zurück." #: validation.py:71 #, python-brace-format msgid "" "File \"{file_name}\": Rejected due to potential cross site scripting " "vulnerability" -msgstr "Datei \"{file_name}\": Zurückgewiesen, da eine \"Cross Site Scripting\"-Attacke nicht ausgeschlossen werden kann." +msgstr "" +"Datei \"{file_name}\": Zurückgewiesen, da eine \"Cross Site Scripting\"-" +"Attacke nicht ausgeschlossen werden kann." + +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Parameter zur Grössenänderung müssen ausgewählt werden." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Wähle die Parameter für die Bildgrössenänderung:" #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/en/LC_MESSAGES/django.po b/filer/locale/en/LC_MESSAGES/django.po index 12a8e904c..cccba170b 100644 --- a/filer/locale/en/LC_MESSAGES/django.po +++ b/filer/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+0200\n" "PO-Revision-Date: 2016-06-17 14:16+0000\n" "Last-Translator: Angelo Dini \n" "Language-Team: English (http://www.transifex.com/divio/django-filer/language/" @@ -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.po b/filer/locale/es/LC_MESSAGES/django.po index 3adb0ec9b..a78865275 100644 --- a/filer/locale/es/LC_MESSAGES/django.po +++ b/filer/locale/es/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: @@ -18,46 +18,51 @@ 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: Biel Frontera, 2023\n" -"Language-Team: Spanish (http://app.transifex.com/divio/django-filer/language/es/)\n" +"Language-Team: Spanish (http://app.transifex.com/divio/django-filer/language/" +"es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\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 "No tienes autorización para subir ficheros. " #: admin/clipboardadmin.py:17 msgid "Can't find folder to upload. Please refresh and try again" -msgstr "No se ha encontrado la carpeta donde guardar el fichero. Por favor, refresca la página y vuelve a probar." +msgstr "" +"No se ha encontrado la carpeta donde guardar el fichero. Por favor, refresca " +"la página y vuelve a probar." #: admin/clipboardadmin.py:19 -msgid "" -"Can't use this folder, Permission Denied. Please select another folder." -msgstr "No se puede utilizar esta carpeta: permiso denegado. Por favor, selecciona otra carpeta." +msgid "Can't use this folder, Permission Denied. Please select another folder." +msgstr "" +"No se puede utilizar esta carpeta: permiso denegado. Por favor, selecciona " +"otra carpeta." -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "Avanzado" -#: 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 "Los elementos deben estar seleccionados para efectuar acciones sobre ellos. Ningún elemento ha sido modificado." +msgstr "" +"Los elementos deben estar seleccionados para efectuar acciones sobre ellos. " +"Ningún elemento ha sido modificado." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" @@ -65,174 +70,180 @@ msgstr[0] " %(total_count)s seleccionado" msgstr[1] "Todos los %(total_count)s seleccionados" msgstr[2] "Todos los %(total_count)s seleccionados" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "Listado de directorio 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 seleccionados" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "Ninguna acción seleccionada." -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "%(count)d archivos movidos con éxito al clipboard." -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "Mover archivos selecionados al clipboard." -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "Permisos para %(count)d ficheros deshabilitados con éxito." -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "Permisos para %(count)d ficheros habilitados con éxito." -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "Habilitar permisos para los archivos seleccionados." -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "Deshabilitar permisos para los archivos seleccionados." -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "Eliminados %(count)d ficheros y/o directorios con éxito." -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "No es posible eliminar ficheros y/o directorios" -#: 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 "Eliminar ficheros y/o directorios" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "Eliminar ficheros y/o directorios seleccionados" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "Las carpetas con los nombres %s ya existen en el destino seleccionado" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "Movidos con éxito %(count)d ficheros y/o directorios al directorio '%(destination)s'." +msgstr "" +"Movidos con éxito %(count)d ficheros y/o directorios al directorio " +"'%(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 "Mover ficheros y/o directorios" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "Mover ficheros y/o directorios seleccionados" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "Cambiado el nombre de %(count)d archivos con éxito." -#: 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 "Cambiar el nombre de los archivos" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "Copiados con éxito %(count)d ficheros y/o directorios al directorio '%(destination)s'." +msgstr "" +"Copiados con éxito %(count)d ficheros y/o directorios al directorio " +"'%(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 ficheros y/o directorios" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "Copiar ficheros y/o directorios seleccionados" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "Cambiado correctamente el tamaño de %(count)d imágenes." -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "Cambiar el tamaño de imágenes." -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "Cambiar el tamaño de imágenes seleccionadas." -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." -msgstr "Sufijo que se añadirá al nombre de los archivos de los archivos copiados." +msgstr "" +"Sufijo que se añadirá al nombre de los archivos de los archivos 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 "El sufijo debe ser una parte válida de un nombre de fichero, simple y en minúsculas, como \"%(valid)s\"." +msgstr "" +"El sufijo debe ser una parte válida de un nombre de fichero, simple y en " +"minúsculas, como \"%(valid)s\"." -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." -msgstr "Formato de cambio de nombre con valor de clave \"%(key)s\" desconocido." +msgstr "" +"Formato de cambio de nombre con valor de clave \"%(key)s\" desconocido." -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "Formato de cambio de nombre no 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 de 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 "Se debe elegir una opción de miniatura o unos parámetros para el cambio de tamaño." - -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "Se deben elegir unos parámetros para el cambio de tamaño." +msgstr "" +"Se debe elegir una opción de miniatura o unos parámetros para el cambio de " +"tamaño." #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" @@ -379,7 +390,9 @@ msgstr "Permisos desactivados" msgid "" "Disable any permission checking for this file. File will be publicly " "accessible to anyone." -msgstr "Desactiva cualquier comprobación de permiso para este archivo. El archivo será accesible públicamente para todos." +msgstr "" +"Desactiva cualquier comprobación de permiso para este archivo. El archivo " +"será accesible públicamente para todos." #: models/foldermodels.py:94 msgid "parent" @@ -457,11 +470,14 @@ msgstr "permisos de la carpeta" #: models/foldermodels.py:348 msgid "Folder cannot be selected with type \"all items\"." -msgstr "La carpeta no se puede seleccionar con el tipo \"todos los elementos\"." +msgstr "" +"La carpeta no se puede seleccionar con el tipo \"todos los elementos\"." #: models/foldermodels.py:350 msgid "Folder has to be selected when type is not \"all items\"." -msgstr "La carpeta se tiene que seleccionar cuando el tipo no es \"todos los elementos\"." +msgstr "" +"La carpeta se tiene que seleccionar cuando el tipo no es \"todos los " +"elementos\"." #: models/foldermodels.py:352 msgid "User or group cannot be selected together with \"everybody\"." @@ -472,7 +488,6 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "Al menos se debe seleccionar un usuario, un grupo o \"todos\"." #: models/foldermodels.py:360 -#| msgid "Folders" msgid "All Folders" msgstr "Todas las carpetas" @@ -491,7 +506,6 @@ msgid "Group: {group}" msgstr "Grupo: {group}" #: models/foldermodels.py:375 -#| msgid "everybody" msgid "Everybody" msgstr "Todos" @@ -504,7 +518,6 @@ msgid "Read" msgstr "Leer" #: models/foldermodels.py:390 -#| msgid "can add children" msgid "Add children" msgstr "Añadir hijos" @@ -559,7 +572,6 @@ msgid "Show table view" msgstr "Muestra la vista de tabla" #: settings.py:278 -#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "Muestra la vista de miniaturas" @@ -575,7 +587,8 @@ msgstr "Continuar" #: 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 "Haz clic aquí para seleccionar los objetos a través de todas las páginas" +msgstr "" +"Haz clic aquí para seleccionar los objetos a través de todas las páginas" #: templates/admin/filer/actions.html:14 #, python-format @@ -627,19 +640,26 @@ 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 "Borrar los archivos y/o carpetas seleccionados borraría los objetos seleccionados, pero tu cuenta no tiene permiso para borrar los siguientes tipos de objetos:" +msgstr "" +"Borrar los archivos y/o carpetas seleccionados borraría los objetos " +"seleccionados, pero tu cuenta no tiene permiso para borrar los siguientes " +"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 "Borrar los archivos y/o carpetas requeriría borrar los siguientes objetos relacionados protegidos:" +msgstr "" +"Borrar los archivos y/o carpetas requeriría borrar los siguientes objetos " +"relacionados protegidos:" #: 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 "¿Estás seguro de que quieres borrar los archivos y/o carpetas seleccionados? Los siguientes objetos y sus elementos relacionados serán borrados:" +msgstr "" +"¿Estás seguro de que quieres borrar los archivos y/o carpetas seleccionados? " +"Los siguientes objetos y sus elementos relacionados serán borrados:" #: templates/admin/filer/delete_selected_files_confirmation.html:46 #: templates/admin/filer/folder/choose_copy_destination.html:64 @@ -688,9 +708,11 @@ msgstr "Icono 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." -msgstr "Tu cuenta no tiene permisos para copiar todos los archivos y/o carpetas seleccionados." +"Your account doesn't have permissions to copy all of the selected files and/" +"or folders." +msgstr "" +"Tu cuenta no tiene permisos para copiar todos los archivos y/o carpetas " +"seleccionados." #: templates/admin/filer/folder/choose_copy_destination.html:25 #: templates/admin/filer/folder/choose_copy_destination.html:31 @@ -714,7 +736,9 @@ msgstr "No hay archivos y/o carpetas disponibles para copiar." msgid "" "The following files and/or folders will be copied to a destination folder " "(retaining their tree structure):" -msgstr "Los siguientes archivos y/o carpetas serán copiados a una carpeta de destino (manteniendo su estructura en árbol):" +msgstr "" +"Los siguientes archivos y/o carpetas serán copiados a una carpeta de destino " +"(manteniendo su estructura en árbol):" #: templates/admin/filer/folder/choose_copy_destination.html:54 #: templates/admin/filer/folder/choose_move_destination.html:64 @@ -734,7 +758,9 @@ msgstr "No está permitido copiar los archivos dentro de la misma 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 "Tu cuenta no tiene permisos para cambiar el tamaño de todas las imágenes seleccionadas." +msgstr "" +"Tu cuenta no tiene permisos para cambiar el tamaño de todas las imágenes " +"seleccionadas." #: templates/admin/filer/folder/choose_images_resize_options.html:18 msgid "There are no images available to resize." @@ -744,29 +770,32 @@ msgstr "No hay imágenes disponibles a las que cambiarles el tamaño." msgid "The following images will be resized:" msgstr "Se les cambiará el tamaño a las siguientes imágenes:" -#: 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 "Elige una opción de miniatura existente o introduce parámetros para el cambio de tamaño:" - -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "Elegir parámetros para el cambio de tamaño:" +msgstr "" +"Elige una opción de miniatura existente o introduce parámetros para el " +"cambio de tamaño:" -#: 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 "Aviso: se cambiará el tamaño de las imágenes en el mismo sitio y los originales se perderán. Considera realizar una copia de aquellas para conservar los originales." +msgstr "" +"Aviso: se cambiará el tamaño de las imágenes en el mismo sitio y los " +"originales se perderán. Considera realizar una copia de aquellas para " +"conservar los originales." -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "Cambiar de tamaño" #: 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 "Tu cuenta no tiene permisos para mover todos los archivos y/o carpetas seleccionados." +"Your account doesn't have permissions to move all of the selected files and/" +"or folders." +msgstr "" +"Tu cuenta no tiene permisos para mover todos los archivos y/o carpetas " +"seleccionados." #: templates/admin/filer/folder/choose_move_destination.html:47 msgid "There are no files and/or folders available to move." @@ -776,7 +805,9 @@ msgstr "No hay archivos y/o carpetas disponibles para mover." msgid "" "The following files and/or folders will be moved to a destination folder " "(retaining their tree structure):" -msgstr "Los siguientes archivos y/o directorios serán movidos a una carpeta de destino (manteniendo su estructura de árbol):" +msgstr "" +"Los siguientes archivos y/o directorios serán movidos a una carpeta de " +"destino (manteniendo su estructura de árbol):" #: templates/admin/filer/folder/choose_move_destination.html:73 #: templates/admin/filer/folder/choose_move_destination.html:76 @@ -791,7 +822,8 @@ msgstr "No está permitido mover los archivos dentro de la misma 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 "Tu cuenta no tiene permisos para renombrar todos los objetos seleccionados." +msgstr "" +"Tu cuenta no tiene permisos para renombrar todos los objetos seleccionados." #: templates/admin/filer/folder/choose_rename_format.html:18 msgid "There are no files available to rename." @@ -801,7 +833,9 @@ msgstr "No hay archivos disponibles a los que cambiar el nombre." msgid "" "The following files will be renamed (they will stay in their folders and " "keep original filename, only displayed filename will be changed):" -msgstr "Los siguientes archivos serán renombrados (se quedarán en sus carpetas y mantendrán su nombre original, solo los nombres mostrados serán cambiados):" +msgstr "" +"Los siguientes archivos serán renombrados (se quedarán en sus carpetas y " +"mantendrán su nombre original, solo los nombres mostrados serán cambiados):" #: templates/admin/filer/folder/choose_rename_format.html:59 msgid "Rename" @@ -958,13 +992,11 @@ msgstr "activado" #: 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ónica '%(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 "Descargar '%(item_label)s'" @@ -1026,12 +1058,10 @@ msgstr "Seleccionar todo %(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 "Selecciona todas" #: templates/admin/filer/folder/directory_thumbnail_list.html:77 -#| msgid "Filer" msgid "Files" msgstr "Ficheros" @@ -1098,7 +1128,6 @@ msgstr "Expande" #: 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 "Fichero no encontrado" @@ -1154,31 +1183,44 @@ msgid "Choose File" msgstr "Selecciona el archivo" #: templates/admin/filer/widgets/admin_folder.html:16 -#| msgid "Choose File" msgid "Choose Folder" msgstr "Escoge una carpeta" #: validation.py:19 #, python-brace-format msgid "File \"{file_name}\": Upload denied by site security policy" -msgstr "Fichero \"{file_name}\": carga denegada por políticas de seguridad del sitio web" +msgstr "" +"Fichero \"{file_name}\": carga denegada por políticas de seguridad del sitio " +"web" #: validation.py:22 #, python-brace-format msgid "File \"{file_name}\": {file_type} upload denied by site security policy" -msgstr "Fichero \"{file_name}\": carga del tipo {file_type} denegada por políticas de seguridad del sitio web" +msgstr "" +"Fichero \"{file_name}\": carga del tipo {file_type} denegada por políticas " +"de seguridad del sitio web" #: validation.py:33 #, python-brace-format msgid "File \"{file_name}\": HTML upload denied by site security policy" -msgstr "Fichero \"{file_name}\": carga de HTML denegada por políticas de seguridad del sitio web" +msgstr "" +"Fichero \"{file_name}\": carga de HTML denegada por políticas de seguridad " +"del sitio web" #: validation.py:71 #, python-brace-format msgid "" "File \"{file_name}\": Rejected due to potential cross site scripting " "vulnerability" -msgstr "Fichero \"{file_name}\": rechazado por posible vulnerabilidad XSS (Cross-site scripting)" +msgstr "" +"Fichero \"{file_name}\": rechazado por posible vulnerabilidad XSS (Cross-" +"site scripting)" + +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Se deben elegir unos parámetros para el cambio de tamaño." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Elegir parámetros para el cambio de tamaño:" #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/et/LC_MESSAGES/django.po b/filer/locale/et/LC_MESSAGES/django.po index 2d8168937..09ba3dce1 100644 --- a/filer/locale/et/LC_MESSAGES/django.po +++ b/filer/locale/et/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-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: Johan Viirok, 2022\n" "Language-Team: Estonian (http://app.transifex.com/divio/django-filer/" @@ -35,196 +35,192 @@ 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 "" -#: 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 "Ühtegi tegevust pole valitud." -#: 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 "Oled sa kindel?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "Kustuta failid ja/või kaustad" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "Kustuta valitud failid ja/või kaustad" -#: 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 "Nimeta failid ümber" -#: 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 "pisipildi valikud" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "laius" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "kõrgus" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "lõika" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "suurenda" -#: 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 "" @@ -731,21 +727,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 "Muuda suurust" diff --git a/filer/locale/eu/LC_MESSAGES/django.po b/filer/locale/eu/LC_MESSAGES/django.po index 56e3b41fe..92198cb5f 100644 --- a/filer/locale/eu/LC_MESSAGES/django.po +++ b/filer/locale/eu/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-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/" @@ -33,15 +33,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 "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." @@ -49,81 +49,81 @@ 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 " @@ -131,25 +131,25 @@ msgid "" 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 " @@ -157,32 +157,32 @@ msgid "" 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 " @@ -191,45 +191,41 @@ 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." - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "Subjektuaren kokapena" @@ -738,16 +734,12 @@ 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:" - -#: 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." @@ -755,7 +747,7 @@ 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" @@ -1170,6 +1162,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Tamaina aldatzeko parametroak zehaztu behar dira." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Tamaina aldatzeko parametroak aukeratu:" + #~ 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..00c68413c 100644 --- a/filer/locale/fa/LC_MESSAGES/django.po +++ b/filer/locale/fa/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-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/" @@ -33,15 +33,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 "پیشرفته" -#: 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." @@ -49,182 +49,178 @@ 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 "" @@ -731,21 +727,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 "" diff --git a/filer/locale/fi/LC_MESSAGES/django.po b/filer/locale/fi/LC_MESSAGES/django.po index 808350553..af332e497 100644 --- a/filer/locale/fi/LC_MESSAGES/django.po +++ b/filer/locale/fi/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-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/" @@ -34,15 +34,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 "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." @@ -50,81 +50,81 @@ 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 " @@ -132,25 +132,25 @@ msgid "" 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 " @@ -158,32 +158,32 @@ msgid "" 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 " @@ -192,44 +192,40 @@ 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" @@ -750,15 +746,11 @@ 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." @@ -766,7 +758,7 @@ 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" @@ -1188,6 +1180,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Koon muuttamisen parametrit tulee valita." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Valitse kokoparametrit:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/fr/LC_MESSAGES/django.po b/filer/locale/fr/LC_MESSAGES/django.po index 58080e380..e69cde928 100644 --- a/filer/locale/fr/LC_MESSAGES/django.po +++ b/filer/locale/fr/LC_MESSAGES/django.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-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/" @@ -42,15 +42,15 @@ 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." @@ -58,7 +58,7 @@ 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,74 +66,74 @@ 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 " @@ -142,25 +142,25 @@ 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 " @@ -169,32 +169,32 @@ 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 " @@ -203,46 +203,42 @@ 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." - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "Emplacement du sujet" @@ -468,19 +464,26 @@ msgstr "permissions du dossier" #: models/foldermodels.py:348 msgid "Folder cannot be selected with type \"all items\"." -msgstr "Le dossier ne peut pas être sélectionné avec le type \"tous les éléments\"." +msgstr "" +"Le dossier ne peut pas être sélectionné avec le type \"tous les éléments\"." #: models/foldermodels.py:350 msgid "Folder has to be selected when type is not \"all items\"." -msgstr "Un dossier doit être sélectionné lorsque le type n'est pas \"tous les éléments\"." +msgstr "" +"Un dossier doit être sélectionné lorsque le type n'est pas \"tous les " +"éléments\"." #: models/foldermodels.py:352 msgid "User or group cannot be selected together with \"everybody\"." -msgstr "Un utilisateur ou un groupe ne peuvent être sélectionnés lorsque \"tout le monde\" est également sélectionné." +msgstr "" +"Un utilisateur ou un groupe ne peuvent être sélectionnés lorsque \"tout le " +"monde\" est également sélectionné." #: models/foldermodels.py:354 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." +msgstr "" +"Au moins une option parmi un utilisateur, un groupe, ou \"tout le monde\" " +"doit être sélectionnée." #: models/foldermodels.py:360 msgid "All Folders" @@ -764,17 +767,13 @@ 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 :" -#: 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." @@ -783,7 +782,7 @@ msgstr "" "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" @@ -1217,6 +1216,12 @@ msgstr "" "Fichier \"{file_name}\" : Rejeté à cause d'une potentielle vulnérabilité de " "cross-site scripting" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Des paramètres de dimensionnement doivent être choisis." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choisissez des paramètres de redimensionnement :" + #~ 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..4d62e2840 100644 --- a/filer/locale/gl/LC_MESSAGES/django.po +++ b/filer/locale/gl/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-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/" @@ -34,196 +34,192 @@ 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 "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 "" @@ -730,21 +726,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 "" diff --git a/filer/locale/he/LC_MESSAGES/django.po b/filer/locale/he/LC_MESSAGES/django.po index 30fce3f31..19cce2910 100644 --- a/filer/locale/he/LC_MESSAGES/django.po +++ b/filer/locale/he/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-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: Hebrew (http://app.transifex.com/divio/django-filer/language/" @@ -33,21 +33,21 @@ 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 "מתקדם" -#: 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 +56,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 "מיקום נושא" @@ -738,15 +734,11 @@ 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." @@ -754,7 +746,7 @@ msgstr "" "הזהרה: התמונות ישונה גודלן במקום והמקוריות יאבדו. אולי ראשית עשה/י העתק שלהם " "כדי לשמור על המקויות." -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "שנה גודל" @@ -1176,6 +1168,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "יש לבחור פרמטרי שינוי גודל." + +#~ msgid "Choose resize parameters:" +#~ msgstr "בחר פרמטרי שינוי גודל:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/hr/LC_MESSAGES/django.po b/filer/locale/hr/LC_MESSAGES/django.po index e9804dd94..1867eb3e4 100644 --- a/filer/locale/hr/LC_MESSAGES/django.po +++ b/filer/locale/hr/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-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/" @@ -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 "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." @@ -51,7 +51,7 @@ 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,74 +59,74 @@ 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 " @@ -135,25 +135,25 @@ 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 " @@ -162,32 +162,32 @@ 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 " @@ -195,45 +195,41 @@ msgid "" 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." - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "Lokacija subjekta" @@ -751,17 +747,13 @@ 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:" - -#: 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." @@ -770,7 +762,7 @@ msgstr "" "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" @@ -1193,6 +1185,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Parametri za promjenu veličine moraju biti izabrani." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Odaberite parametre za promjenu veličine:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/hu/LC_MESSAGES/django.po b/filer/locale/hu/LC_MESSAGES/django.po index 5a644653b..faebec9b0 100644 --- a/filer/locale/hu/LC_MESSAGES/django.po +++ b/filer/locale/hu/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-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: Istvan Farkas , 2016-2017\n" "Language-Team: Hungarian (http://app.transifex.com/divio/django-filer/" @@ -33,15 +33,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 "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." @@ -49,81 +49,81 @@ 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 " @@ -132,25 +132,25 @@ 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 " @@ -159,32 +159,32 @@ 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 " @@ -193,45 +193,41 @@ 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." - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "Fókusz helye" @@ -750,17 +746,13 @@ 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:" - -#: 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." @@ -768,7 +760,7 @@ 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" @@ -1187,6 +1179,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Átméretezési paramétert kötelező kiválasztani." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Válasszon átméretezési paramétereket:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/it/LC_MESSAGES/django.po b/filer/locale/it/LC_MESSAGES/django.po index 464b71cf2..79807b295 100644 --- a/filer/locale/it/LC_MESSAGES/django.po +++ b/filer/locale/it/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-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/" @@ -37,15 +37,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 "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." @@ -53,7 +53,7 @@ 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,74 +61,74 @@ 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 " @@ -137,25 +137,25 @@ 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 " @@ -164,32 +164,32 @@ 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 " @@ -198,46 +198,42 @@ 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." - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "Posizione del soggetto" @@ -759,17 +755,13 @@ 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:" - -#: 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 "" "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" @@ -1202,6 +1194,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Seleziona le opzioni di ridimensionamento." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Scegli i parametri di ridimensionamento:" + #~ 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..95b6b46ef 100644 --- a/filer/locale/ja/LC_MESSAGES/django.po +++ b/filer/locale/ja/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-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/" @@ -32,195 +32,191 @@ 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 "" -#: 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 "" @@ -727,21 +723,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 "" diff --git a/filer/locale/ja_JP/LC_MESSAGES/django.po b/filer/locale/ja_JP/LC_MESSAGES/django.po index 06e53afe6..566e02cb7 100644 --- a/filer/locale/ja_JP/LC_MESSAGES/django.po +++ b/filer/locale/ja_JP/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-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/" @@ -32,195 +32,191 @@ 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 "" -#: 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 "" @@ -727,21 +723,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 "" diff --git a/filer/locale/lt/LC_MESSAGES/django.po b/filer/locale/lt/LC_MESSAGES/django.po index a5063acb9..6e095985d 100644 --- a/filer/locale/lt/LC_MESSAGES/django.po +++ b/filer/locale/lt/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-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: Matas Dailyda , 2015-2018\n" "Language-Team: Lithuanian (http://app.transifex.com/divio/django-filer/" @@ -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 "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." @@ -51,7 +51,7 @@ 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,75 +60,75 @@ 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." -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " @@ -137,25 +137,25 @@ 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 " @@ -164,32 +164,32 @@ 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 " @@ -198,45 +198,41 @@ 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." - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "Subjekto vieta" @@ -757,17 +753,13 @@ 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:" -#: 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." @@ -775,7 +767,7 @@ 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į" @@ -1200,6 +1192,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Turi būti pasirinkti dydžio keitimo parametrai." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Pasirinkite dydžio keitimo parametrus:" + #~ 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..ae2a21aab 100644 --- a/filer/locale/lt_LT/LC_MESSAGES/django.po +++ b/filer/locale/lt_LT/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-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-" @@ -34,21 +34,21 @@ 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 "" -#: 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 "" @@ -732,21 +728,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 "" diff --git a/filer/locale/nb/LC_MESSAGES/django.po b/filer/locale/nb/LC_MESSAGES/django.po index c6649f961..d8c0cc445 100644 --- a/filer/locale/nb/LC_MESSAGES/django.po +++ b/filer/locale/nb/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-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/" @@ -33,15 +33,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 "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." @@ -49,81 +49,81 @@ 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 " @@ -131,25 +131,25 @@ msgid "" 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 " @@ -157,32 +157,32 @@ msgid "" 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 " @@ -191,44 +191,40 @@ 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" @@ -747,17 +743,13 @@ 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:" - -#: 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." @@ -765,7 +757,7 @@ 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" @@ -1185,6 +1177,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Parametre for endring av størrelse må velges." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Velg parametre for endring av størrelse:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/nl_NL/LC_MESSAGES/django.po b/filer/locale/nl_NL/LC_MESSAGES/django.po index fd7ea6206..7f1c96358 100644 --- a/filer/locale/nl_NL/LC_MESSAGES/django.po +++ b/filer/locale/nl_NL/LC_MESSAGES/django.po @@ -17,10 +17,12 @@ 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" +"Language-Team: Dutch (Netherlands) (http://app.transifex.com/divio/django-" +"filer/language/nl_NL/)\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -39,96 +41,96 @@ msgstr "" 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." -#: 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 " @@ -137,25 +139,25 @@ 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 " @@ -164,33 +166,33 @@ 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" -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " @@ -199,44 +201,40 @@ 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" @@ -470,11 +468,13 @@ msgstr "Map moet geselecteerd worden wanneer type niet \"alle items\" is." #: models/foldermodels.py:352 msgid "User or group cannot be selected together with \"everybody\"." -msgstr "Gebruiker of groep kan niet geselecteerd worden samen met \"iedereen\"." +msgstr "" +"Gebruiker of groep kan niet geselecteerd worden samen met \"iedereen\"." #: models/foldermodels.py:354 msgid "At least one of user, group, or \"everybody\" has to be selected." -msgstr "Ten minste één gebruiker, groep of \"iedereen\" moet worden geselecteerd." +msgstr "" +"Ten minste één gebruiker, groep of \"iedereen\" moet worden geselecteerd." #: models/foldermodels.py:360 msgid "All Folders" @@ -760,15 +760,11 @@ msgstr "" 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." @@ -777,7 +773,7 @@ msgstr "" "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" @@ -1207,6 +1203,12 @@ msgstr "" "Bestand \"{file_name}\": Afgewezen wegens mogelijke kwetsbaarheid voor cross-" "site scripting" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Afmetingsopties moeten zijn geselecteerd" + +#~ msgid "Choose resize parameters:" +#~ msgstr "Selecteer afmetingsopties:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/nn/LC_MESSAGES/django.po b/filer/locale/nn/LC_MESSAGES/django.po index add59b2a5..a70890db6 100644 --- a/filer/locale/nn/LC_MESSAGES/django.po +++ b/filer/locale/nn/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-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-" @@ -34,15 +34,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 "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." @@ -50,106 +50,106 @@ 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 " @@ -157,32 +157,32 @@ msgid "" 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 " @@ -191,44 +191,40 @@ 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" @@ -746,17 +742,13 @@ 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:" -#: 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." @@ -764,7 +756,7 @@ 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" @@ -1182,6 +1174,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Parametrar for endring av storleik må veljast." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Vel parametrar for endring av storleik:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/pl/LC_MESSAGES/django.po b/filer/locale/pl/LC_MESSAGES/django.po index 61f99a827..bbf78af38 100644 --- a/filer/locale/pl/LC_MESSAGES/django.po +++ b/filer/locale/pl/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-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: Grzegorz Biały , 2017\n" "Language-Team: Polish (http://app.transifex.com/divio/django-filer/language/" @@ -38,15 +38,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 "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." @@ -54,7 +54,7 @@ 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,74 +63,74 @@ 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 " @@ -138,25 +138,25 @@ msgid "" 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 " @@ -164,32 +164,32 @@ msgid "" 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 " @@ -198,44 +198,40 @@ 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" @@ -757,16 +753,12 @@ 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:" - -#: 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." @@ -774,7 +766,7 @@ 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" @@ -1202,6 +1194,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Parametry zmiany rozmiaru muszą być określone." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Wybierz parametry zmiany rozmiaru:" + #~ 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..b5b9dbff1 100644 --- a/filer/locale/pt/LC_MESSAGES/django.po +++ b/filer/locale/pt/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-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/" @@ -33,21 +33,21 @@ 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 "" -#: 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 +55,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 "" @@ -730,21 +726,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 "" diff --git a/filer/locale/pt_BR/LC_MESSAGES/django.po b/filer/locale/pt_BR/LC_MESSAGES/django.po index 05d5c0009..a2ebf50b8 100644 --- a/filer/locale/pt_BR/LC_MESSAGES/django.po +++ b/filer/locale/pt_BR/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-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-" @@ -36,15 +36,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 "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." @@ -52,7 +52,7 @@ 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,74 +60,74 @@ 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 " @@ -136,25 +136,25 @@ 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 " @@ -163,32 +163,32 @@ 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 " @@ -197,47 +197,43 @@ 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." -#: 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" - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "Local do assunto" @@ -760,17 +756,13 @@ 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:" - -#: 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." @@ -778,7 +770,7 @@ 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" @@ -1202,6 +1194,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Os parâmetros de redimensionamento precisam ser escolhidos" + +#~ msgid "Choose resize parameters:" +#~ msgstr "Selecionar os parâmetros de redimensionamento:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/ru/LC_MESSAGES/django.po b/filer/locale/ru/LC_MESSAGES/django.po index 9bc0f100c..0d4cb249e 100644 --- a/filer/locale/ru/LC_MESSAGES/django.po +++ b/filer/locale/ru/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-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: Alexander Naydenko , 2020\n" "Language-Team: Russian (http://app.transifex.com/divio/django-filer/language/" @@ -39,15 +39,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 "Дополнительно" -#: 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." @@ -55,7 +55,7 @@ msgstr "" "Для выполнения действий нужно выбрать хотя бы один объект. Не произведено " "никаких изменений." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" @@ -64,131 +64,131 @@ 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 " @@ -197,44 +197,40 @@ 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 "Расположение объекта" @@ -751,15 +747,11 @@ 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." @@ -767,7 +759,7 @@ msgstr "" "Внимание: изображения будут изменены в размерах с заменой оригиналов. " "Возможно, лучше будет сперва сделать копии." -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "Изменить размеры" @@ -1190,6 +1182,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Параметры изменения размеры должны быть указаны." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Выбрите параметры изменения размеров:" + #~ 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..4ebaf537a 100644 --- a/filer/locale/sk/LC_MESSAGES/django.po +++ b/filer/locale/sk/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-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/" @@ -33,21 +33,21 @@ 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 "" -#: 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 +56,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 "" @@ -731,21 +727,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 "" diff --git a/filer/locale/tr/LC_MESSAGES/django.po b/filer/locale/tr/LC_MESSAGES/django.po index a144dd00e..7ebf6760f 100644 --- a/filer/locale/tr/LC_MESSAGES/django.po +++ b/filer/locale/tr/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-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/" @@ -34,95 +34,95 @@ 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 "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 " @@ -130,25 +130,25 @@ msgid "" 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 " @@ -156,76 +156,72 @@ msgid "" 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 "" @@ -732,21 +728,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 "" @@ -1159,6 +1151,9 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Boyutlandırma parametreleri seçilmeli" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/vi_VN/LC_MESSAGES/django.po b/filer/locale/vi_VN/LC_MESSAGES/django.po index b33029a37..9c90f0209 100644 --- a/filer/locale/vi_VN/LC_MESSAGES/django.po +++ b/filer/locale/vi_VN/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-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-" @@ -33,15 +33,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 "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." @@ -49,80 +49,80 @@ 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 " @@ -130,25 +130,25 @@ msgid "" 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 " @@ -157,32 +157,32 @@ 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 " @@ -191,44 +191,40 @@ 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ủ đề" @@ -748,17 +744,13 @@ 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:" - -#: 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." @@ -766,7 +758,7 @@ 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" @@ -1182,6 +1174,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Tham số thay đổi kích thước phải được chọn." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Chọn tham số thay dổi kích thước:" + #~ 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..411b495ba 100644 --- a/filer/locale/zh/LC_MESSAGES/django.po +++ b/filer/locale/zh/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-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/" @@ -32,195 +32,191 @@ 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 "" -#: 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 "" @@ -727,21 +723,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 "" diff --git a/filer/locale/zh_CN/LC_MESSAGES/django.po b/filer/locale/zh_CN/LC_MESSAGES/django.po index 5dc7b4114..0ae88a85f 100644 --- a/filer/locale/zh_CN/LC_MESSAGES/django.po +++ b/filer/locale/zh_CN/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-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/" @@ -32,195 +32,191 @@ 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 "" -#: 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 "" @@ -727,21 +723,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 "" diff --git a/filer/locale/zh_TW/LC_MESSAGES/django.po b/filer/locale/zh_TW/LC_MESSAGES/django.po index 29f4d8c5e..c809b75f0 100644 --- a/filer/locale/zh_TW/LC_MESSAGES/django.po +++ b/filer/locale/zh_TW/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-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/" @@ -32,195 +32,191 @@ 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 "" -#: 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 "" @@ -727,21 +723,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 "" 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 0f7de4eb7..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,11 +29,7 @@ {% endfor %} - {% if cmsplugin_enabled %} -

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

- {% else %} -

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

- {% endif %} +

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

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