diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8acb93ca0..a81258e7e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,7 +14,13 @@ jobs: django-4.0.txt, django-4.1.txt, django-4.2.txt, + django-5.0.txt, ] + exclude: + - requirements-file: django-5.0.txt + python-version: 3.8 + - requirements-file: django-5.0.txt + python-version: 3.9 os: [ ubuntu-20.04, ] diff --git a/filer/admin/clipboardadmin.py b/filer/admin/clipboardadmin.py index d9e64f21c..b09beb4be 100644 --- a/filer/admin/clipboardadmin.py +++ b/filer/admin/clipboardadmin.py @@ -31,7 +31,6 @@ class ClipboardItemInline(admin.TabularInline): class ClipboardAdmin(admin.ModelAdmin): model = Clipboard inlines = [ClipboardItemInline] - filter_horizontal = ('files',) raw_id_fields = ('user',) verbose_name = "DEBUG Clipboard" verbose_name_plural = "DEBUG Clipboards" diff --git a/filer/admin/folderadmin.py b/filer/admin/folderadmin.py index e132a9bec..203674b55 100644 --- a/filer/admin/folderadmin.py +++ b/filer/admin/folderadmin.py @@ -1288,7 +1288,6 @@ def resize_images(self, request, files_queryset, folders_queryset): "breadcrumbs_action": _("Resize images"), "to_resize": to_resize, "resize_form": form, - "cmsplugin_enabled": 'cmsplugin_filer_image' in django_settings.INSTALLED_APPS, "files_queryset": files_queryset, "folders_queryset": folders_queryset, "perms_lacking": perms_needed, diff --git a/filer/admin/forms.py b/filer/admin/forms.py index 02f6ae417..1a35e4125 100644 --- a/filer/admin/forms.py +++ b/filer/admin/forms.py @@ -1,6 +1,6 @@ from django import forms -from django.conf import settings from django.contrib.admin import widgets +from django.contrib.admin.helpers import AdminForm from django.core.exceptions import ValidationError from django.db import models from django.utils.translation import gettext as _ @@ -9,18 +9,18 @@ from ..utils.files import get_valid_filename -class AsPWithHelpMixin: - def as_p_with_help(self): - "Returns this form rendered as HTML

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

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

', - help_text_html='

%s

', - errors_on_separate_row=True) +class WithFieldsetMixin: + def get_fieldsets(self): + return getattr(self, "fieldsets", [ + (None, {"fields": [field for field in self.fields]}) + ]) + def admin_form(self): + "Returns a class contains the Admin fieldset to show form as admin form" + return AdminForm(self, self.get_fieldsets(), {}) -class CopyFilesAndFoldersForm(forms.Form, AsPWithHelpMixin): + +class CopyFilesAndFoldersForm(forms.Form): suffix = forms.CharField(required=False, help_text=_("Suffix which will be appended to filenames of copied files.")) # TODO: We have to find a way to overwrite files with different storage backends first. # overwrite_files = forms.BooleanField(required=False, help_text=_("Overwrite a file if there already exists a file with the same filename?")) @@ -32,7 +32,7 @@ def clean_suffix(self): return self.cleaned_data['suffix'] -class RenameFilesForm(forms.Form, AsPWithHelpMixin): +class RenameFilesForm(WithFieldsetMixin, forms.Form): rename_format = forms.CharField(required=True) def clean_rename_format(self): @@ -55,15 +55,20 @@ def clean_rename_format(self): return self.cleaned_data['rename_format'] -class ResizeImagesForm(forms.Form, AsPWithHelpMixin): - if 'cmsplugin_filer_image' in settings.INSTALLED_APPS: - thumbnail_option = models.ForeignKey( - ThumbnailOption, - null=True, - blank=True, - verbose_name=_("thumbnail option"), - on_delete=models.CASCADE, - ).formfield() +class ResizeImagesForm(WithFieldsetMixin, forms.Form): + fieldsets = ((None, {"fields": ( + "thumbnail_option", + ("width", "height"), + ("crop", "upscale"))}),) + + thumbnail_option = models.ForeignKey( + ThumbnailOption, + null=True, + blank=True, + verbose_name=_("thumbnail option"), + on_delete=models.CASCADE, + ).formfield() + width = models.PositiveIntegerField(_("width"), null=True, blank=True).formfield(widget=widgets.AdminIntegerFieldWidget) height = models.PositiveIntegerField(_("height"), null=True, blank=True).formfield(widget=widgets.AdminIntegerFieldWidget) crop = models.BooleanField(_("crop"), default=True).formfield() @@ -71,8 +76,5 @@ class ResizeImagesForm(forms.Form, AsPWithHelpMixin): def clean(self): if not (self.cleaned_data.get('thumbnail_option') or ((self.cleaned_data.get('width') or 0) + (self.cleaned_data.get('height') or 0))): - if 'cmsplugin_filer_image' in settings.INSTALLED_APPS: - raise ValidationError(_('Thumbnail option or resize parameters must be choosen.')) - else: - raise ValidationError(_('Resize parameters must be choosen.')) + raise ValidationError(_('Thumbnail option or resize parameters must be choosen.')) return self.cleaned_data diff --git a/filer/locale/ar/LC_MESSAGES/django.po b/filer/locale/ar/LC_MESSAGES/django.po index 3b72f6a6c..b34041683 100644 --- a/filer/locale/ar/LC_MESSAGES/django.po +++ b/filer/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Translators: @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Angelo Dini \n" -"Language-Team: Arabic (http://app.transifex.com/divio/django-filer/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://app.transifex.com/divio/django-filer/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -30,24 +30,25 @@ msgid "Can't find folder to upload. Please refresh and try again" msgstr "" #: admin/clipboardadmin.py:19 -msgid "Can't use this folder, Permission Denied. Please select another folder." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." msgstr "" -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" @@ -58,175 +59,171 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "" -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "" -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "" -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "" -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "" -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "" -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." msgstr "" -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "" -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "" -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "" -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "" - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "" @@ -465,6 +462,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -483,6 +481,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -495,6 +494,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -549,6 +549,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -677,8 +678,8 @@ msgstr "" #: templates/admin/filer/folder/choose_copy_destination.html:23 msgid "" -"Your account doesn't have permissions to copy all of the selected files and/" -"or folders." +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." msgstr "" #: templates/admin/filer/folder/choose_copy_destination.html:25 @@ -733,28 +734,24 @@ msgstr "" msgid "The following images will be resized:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "" #: templates/admin/filer/folder/choose_move_destination.html:35 msgid "" -"Your account doesn't have permissions to move all of the selected files and/" -"or folders." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." msgstr "" #: templates/admin/filer/folder/choose_move_destination.html:47 @@ -953,11 +950,13 @@ msgstr "" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "" @@ -1019,10 +1018,12 @@ msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:15 #: templates/admin/filer/folder/directory_thumbnail_list.html:80 +#| msgid "Select this file" msgid "Select all" msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:77 +#| msgid "Filer" msgid "Files" msgstr "" @@ -1092,6 +1093,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1147,6 +1149,7 @@ msgid "Choose File" msgstr "" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1172,6 +1175,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/bg/LC_MESSAGES/django.po b/filer/locale/bg/LC_MESSAGES/django.po index b4408c723..06db4c1cc 100644 --- a/filer/locale/bg/LC_MESSAGES/django.po +++ b/filer/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Translators: @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Angelo Dini \n" -"Language-Team: Bulgarian (http://app.transifex.com/divio/django-filer/" -"language/bg/)\n" -"Language: bg\n" +"Language-Team: Bulgarian (http://app.transifex.com/divio/django-filer/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -29,199 +30,196 @@ msgid "Can't find folder to upload. Please refresh and try again" msgstr "" #: admin/clipboardadmin.py:19 -msgid "Can't use this folder, Permission Denied. Please select another folder." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." msgstr "" -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" msgstr[0] "" msgstr[1] "" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "" -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "" -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "" -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "" -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "" -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "" -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." msgstr "" -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "" -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "" -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "" -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "" - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "" @@ -460,6 +458,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -478,6 +477,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -490,6 +490,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -544,6 +545,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -672,8 +674,8 @@ msgstr "" #: templates/admin/filer/folder/choose_copy_destination.html:23 msgid "" -"Your account doesn't have permissions to copy all of the selected files and/" -"or folders." +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." msgstr "" #: templates/admin/filer/folder/choose_copy_destination.html:25 @@ -728,28 +730,24 @@ msgstr "" msgid "The following images will be resized:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "" #: templates/admin/filer/folder/choose_move_destination.html:35 msgid "" -"Your account doesn't have permissions to move all of the selected files and/" -"or folders." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." msgstr "" #: templates/admin/filer/folder/choose_move_destination.html:47 @@ -940,11 +938,13 @@ msgstr "" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "" @@ -1006,10 +1006,12 @@ msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:15 #: templates/admin/filer/folder/directory_thumbnail_list.html:80 +#| msgid "Select this file" msgid "Select all" msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:77 +#| msgid "Filer" msgid "Files" msgstr "" @@ -1075,6 +1077,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1130,6 +1133,7 @@ msgid "Choose File" msgstr "" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1155,6 +1159,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/ca/LC_MESSAGES/django.mo b/filer/locale/ca/LC_MESSAGES/django.mo index 923ae25db..4e6fa24da 100644 Binary files a/filer/locale/ca/LC_MESSAGES/django.mo and b/filer/locale/ca/LC_MESSAGES/django.mo differ diff --git a/filer/locale/ca/LC_MESSAGES/django.po b/filer/locale/ca/LC_MESSAGES/django.po index 73a7894d7..a2c7b9dc7 100644 --- a/filer/locale/ca/LC_MESSAGES/django.po +++ b/filer/locale/ca/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Translators: @@ -10,18 +10,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Roger Pons , 2013-2014,2016\n" -"Language-Team: Catalan (http://app.transifex.com/divio/django-filer/language/" -"ca/)\n" -"Language: ca\n" +"Language-Team: Catalan (http://app.transifex.com/divio/django-filer/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -30,205 +31,196 @@ msgid "Can't find folder to upload. Please refresh and try again" msgstr "" #: admin/clipboardadmin.py:19 -msgid "Can't use this folder, Permission Denied. Please select another folder." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "Avançat" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "URL canònica" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." -msgstr "" -"Cal seleccionar els elements en ordre per tal de realitzar accions sobre " -"ells. No s'ha modificat cap element." +msgstr "Cal seleccionar els elements en ordre per tal de realitzar accions sobre ells. No s'ha modificat cap element." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" msgstr[0] "%(total_count)s seleccionat" msgstr[1] "Tots %(total_count)s seleccionats" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "0 de %(cnt)s seleccionats" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "No s'ha seleccionat cap acció." -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "S'han mogut %(count)d fitxers al portapapers." -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "Moure els fitxers seleccionats al portapapers." -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "S'han desactivat els permisos de %(count)d fitxers." -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "S'han activat els permisos de %(count)d fitxers." -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "Activar els permisos dels fitxers seleccionats" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "Desactivaer els permisos dels fitxers seleccionats" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "S'han esborrat %(count)d fitxers i/o carpetes." -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "No es poden esborrar els fitxers i/o carpetes" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "Esteu segur?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "Esborrar fitxers i/o carpetes" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "Esborrar els fitxers i/o carpetes seleccionats" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "Ja existeixen carpetes amb els noms %s a la destinació seleccionada" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"S'han mogut %(count)d fitxers i/o carpetes a la carpeta '%(destination)s'" +msgstr "S'han mogut %(count)d fitxers i/o carpetes a la carpeta '%(destination)s'" -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "Moure fitxers i/o carpetes" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "Moure els fitxers i/o carpetes seleccionats" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "S'ha canviat el nom de %(count)d fitxers." -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "Canviar el nom a fitxers" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"S'han copiat %(count)d fitxeres i/o carpetes a la carpeta '%(destination)s'." +msgstr "S'han copiat %(count)d fitxeres i/o carpetes a la carpeta '%(destination)s'." -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "Copiar fitxers i/o carpetes" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "Copiar els fitxers i/o carpetes seleccionats" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "S'han redimensionat %(count)d imatges." -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "Redimensionar imatges" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "Redimensionar les imatges seleccionades" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "Sufix que serà afegit als noms de fitxer dels fitxers copiats" -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." -msgstr "" -"El sufix ha de ser una part de nom de fitxer vàlida, simple i en minúscules, " -"com ara \"%(valid)s\"." +msgstr "El sufix ha de ser una part de nom de fitxer vàlida, simple i en minúscules, com ara \"%(valid)s\"." -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "Format de renombrat amb valor de clau \"%(key)s\" desconegut." -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "Format de renombrat no vàlid: %(error)s" -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "opció de miniatures" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "ample" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "alçada" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "retallar" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "ampliar" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "Heu de triar una opció de miniatura o paràmetres de redimensionat." -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "Heu de triar paràmetres de redimensionat." - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "Lloc del subjecte." @@ -374,9 +366,7 @@ msgstr "Permisos desactivats" msgid "" "Disable any permission checking for this file. File will be publicly " "accessible to anyone." -msgstr "" -"Desactiveu tots els permisos d'aquest fitxer. Aquest serà accessible de " -"forma pública per a tothom." +msgstr "Desactiveu tots els permisos d'aquest fitxer. Aquest serà accessible de forma pública per a tothom." #: models/foldermodels.py:94 msgid "parent" @@ -469,6 +459,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -487,6 +478,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -499,6 +491,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -553,6 +546,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -568,8 +562,7 @@ msgstr "Anar" #: templates/admin/filer/folder/directory_table_list.html:232 #: templates/admin/filer/folder/directory_thumbnail_list.html:210 msgid "Click here to select the objects across all pages" -msgstr "" -"Cliqueu aquí per seleccionar els objectes a través de totes les pàgines" +msgstr "Cliqueu aquí per seleccionar els objectes a través de totes les pàgines" #: templates/admin/filer/actions.html:14 #, python-format @@ -621,26 +614,19 @@ msgid "" "Deleting the selected files and/or folders would result in deleting related " "objects, but your account doesn't have permission to delete the following " "types of objects:" -msgstr "" -"Esborrar els fitxers seleccionats provocarà l'esborrar d'objectes " -"relacionats, però el teu compte no té permisos per esborrar els següents " -"tipus d'objectes:" +msgstr "Esborrar els fitxers seleccionats provocarà l'esborrar d'objectes relacionats, però el teu compte no té permisos per esborrar els següents tipus d'objectes:" #: templates/admin/filer/delete_selected_files_confirmation.html:19 msgid "" "Deleting the selected files and/or folders would require deleting the " "following protected related objects:" -msgstr "" -"Esborrer els fitxers i/o carpetes seleccionades provocarà l'esborrat dels " -"següents objectes protegits relacionats:" +msgstr "Esborrer els fitxers i/o carpetes seleccionades provocarà l'esborrat dels següents objectes protegits relacionats:" #: templates/admin/filer/delete_selected_files_confirmation.html:27 msgid "" "Are you sure you want to delete the selected files and/or folders? All of " "the following objects and their related items will be deleted:" -msgstr "" -"Segur que voleu esborrar els fitxers i/o carpetes seleccionades? Els " -"següents objectes i els seus elements relacionats seran esborrats:" +msgstr "Segur que voleu esborrar els fitxers i/o carpetes seleccionades? Els següents objectes i els seus elements relacionats seran esborrats:" #: templates/admin/filer/delete_selected_files_confirmation.html:46 #: templates/admin/filer/folder/choose_copy_destination.html:64 @@ -689,8 +675,8 @@ msgstr "Icona de la carpeta" #: templates/admin/filer/folder/choose_copy_destination.html:23 msgid "" -"Your account doesn't have permissions to copy all of the selected files and/" -"or folders." +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." msgstr "Sense permisos per copiar tots els fitxers i/o carpetes seleccionats." #: templates/admin/filer/folder/choose_copy_destination.html:25 @@ -715,9 +701,7 @@ msgstr "No hi ha fitxers i/o carpetes disponibles." msgid "" "The following files and/or folders will be copied to a destination folder " "(retaining their tree structure):" -msgstr "" -"Els següents fitxers i/o carpetes seran copiats a una carpeta de destí " -"(mantenint la seva estructura d'arbre):" +msgstr "Els següents fitxers i/o carpetes seran copiats a una carpeta de destí (mantenint la seva estructura d'arbre):" #: templates/admin/filer/folder/choose_copy_destination.html:54 #: templates/admin/filer/folder/choose_move_destination.html:64 @@ -737,9 +721,7 @@ msgstr "No està permès copiar fitxers a la mateixa carpeta" #: templates/admin/filer/folder/choose_images_resize_options.html:15 msgid "" "Your account doesn't have permissions to resize all of the selected images." -msgstr "" -"El vostre compte no té permisos per redimensionar totes les imatges " -"seleccionades." +msgstr "El vostre compte no té permisos per redimensionar totes les imatges seleccionades." #: templates/admin/filer/folder/choose_images_resize_options.html:18 msgid "There are no images available to resize." @@ -749,36 +731,25 @@ msgstr "No hi ha imatges disponibles per redimensionar." msgid "The following images will be resized:" msgstr "Les següents imatges seran redimensionades:" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" -msgstr "" -"Trieu una opció de miniatura existent o especifiqueu paràmetres de " -"redimensionat:" - -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "Trieu els paràmetres de redimensionat:" +msgstr "Trieu una opció de miniatura existent o especifiqueu paràmetres de redimensionat:" -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." -msgstr "" -"Avís: les imatges seran redimensionades al mateix lloc i les originals es " -"perdran. Considereu realitzar abans una còpia d'aquestes per mantenir els " -"originals." +msgstr "Avís: les imatges seran redimensionades al mateix lloc i les originals es perdran. Considereu realitzar abans una còpia d'aquestes per mantenir els originals." -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "Redimensionar" #: templates/admin/filer/folder/choose_move_destination.html:35 msgid "" -"Your account doesn't have permissions to move all of the selected files and/" -"or folders." -msgstr "" -"El vostre compte no té permisos per moure tots els fitxers i/o carpetes " -"seleccionats." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." +msgstr "El vostre compte no té permisos per moure tots els fitxers i/o carpetes seleccionats." #: templates/admin/filer/folder/choose_move_destination.html:47 msgid "There are no files and/or folders available to move." @@ -788,9 +759,7 @@ msgstr "No hi ha fitxers i/o carpetes disponibles per moure." msgid "" "The following files and/or folders will be moved to a destination folder " "(retaining their tree structure):" -msgstr "" -"Els següents fitxers i/o carpetes seran moguts a una carpeta de destí " -"(mantenint la seva estructura d'arbre):" +msgstr "Els següents fitxers i/o carpetes seran moguts a una carpeta de destí (mantenint la seva estructura d'arbre):" #: templates/admin/filer/folder/choose_move_destination.html:73 #: templates/admin/filer/folder/choose_move_destination.html:76 @@ -805,9 +774,7 @@ msgstr "No està permès moure fitxers a la mateixa carpeta" #: templates/admin/filer/folder/choose_rename_format.html:15 msgid "" "Your account doesn't have permissions to rename all of the selected files." -msgstr "" -"El vostre compte no té permisos per canviar el nom de tots els fitxers " -"seleccionats." +msgstr "El vostre compte no té permisos per canviar el nom de tots els fitxers seleccionats." #: templates/admin/filer/folder/choose_rename_format.html:18 msgid "There are no files available to rename." @@ -817,10 +784,7 @@ msgstr "No hi ha fitxers per canviar el nom disponibles." msgid "" "The following files will be renamed (they will stay in their folders and " "keep original filename, only displayed filename will be changed):" -msgstr "" -"En canviarà el nom dels següents fitxers (seguiran estant a les seves " -"carpetes i mantindran el seu nom de fitxers original, només serà modificat " -"el nom que es mostrarà):" +msgstr "En canviarà el nom dels següents fitxers (seguiran estant a les seves carpetes i mantindran el seu nom de fitxers original, només serà modificat el nom que es mostrarà):" #: templates/admin/filer/folder/choose_rename_format.html:59 msgid "Rename" @@ -975,11 +939,13 @@ msgstr "activat" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "" @@ -1041,10 +1007,12 @@ msgstr "Seleccionar tots/es %(total_count)s" #: templates/admin/filer/folder/directory_thumbnail_list.html:15 #: templates/admin/filer/folder/directory_thumbnail_list.html:80 +#| msgid "Select this file" msgid "Select all" msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:77 +#| msgid "Filer" msgid "Files" msgstr "" @@ -1110,6 +1078,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1165,6 +1134,7 @@ msgid "Choose File" msgstr "Escollir Fitxer" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1190,6 +1160,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/cs/LC_MESSAGES/django.mo b/filer/locale/cs/LC_MESSAGES/django.mo index 8264299e8..5d0d245d7 100644 Binary files a/filer/locale/cs/LC_MESSAGES/django.mo and b/filer/locale/cs/LC_MESSAGES/django.mo differ diff --git a/filer/locale/cs/LC_MESSAGES/django.po b/filer/locale/cs/LC_MESSAGES/django.po index 948960e99..873cfdde5 100644 --- a/filer/locale/cs/LC_MESSAGES/django.po +++ b/filer/locale/cs/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Translators: @@ -11,19 +11,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Jakub Dorňák , 2020\n" -"Language-Team: Czech (http://app.transifex.com/divio/django-filer/language/" -"cs/)\n" -"Language: cs\n" +"Language-Team: Czech (http://app.transifex.com/divio/django-filer/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " -"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -32,24 +32,25 @@ msgid "Can't find folder to upload. Please refresh and try again" msgstr "" #: admin/clipboardadmin.py:19 -msgid "Can't use this folder, Permission Denied. Please select another folder." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "Pokročilé" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "kanonický odkaz" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." msgstr "Nejdříve vyberte položku, která má být změněna." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" @@ -58,182 +59,170 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "Výpis složky %(folder_name)s" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "žádná položka z %(cnt)s není vybrána" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "Nebyla vybrána žádná operace." -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "Soubory (%(count)d) byly přesunuty do schránky." -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "Přesunout vybrané soubory do schránky" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "Pro vybrané soubory (%(count)d) byla deaktivována oprávnění." -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "Pro vybrané soubory (%(count)d) byla aktivována oprávnění." -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "Aktivovat oprávnění pro vybrané soubory" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "Deaktivovat oprávnění pro vybrané soubory" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "Vybrané soubory a/nebo složky (%(count)d) byly smazány." -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "Nemohu smazat soubory a/nebo složky" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "Opravdu provést?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "Smazat soubory a/nebo složky" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "Smazat vybrané soubory a/nebo složky" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "Složky pojmenované %s již v cílové složce existují" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"Vybrané soubory a/nebo složky (%(count)d) byly přesunuty do složky " -"'%(destination)s'." +msgstr "Vybrané soubory a/nebo složky (%(count)d) byly přesunuty do složky '%(destination)s'." -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "Přesunout soubory a/nebo složky" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "Přesunout vybrané soubory a/nebo složky" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "Soubory (%(count)d) vyly přejmenovány." -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "Přejmenovat soubory" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"Soubory a/nebo složky (%(count)d) byly zkopírovány do složky " -"'%(destination)s'." +msgstr "Soubory a/nebo složky (%(count)d) byly zkopírovány do složky '%(destination)s'." -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "Kopírovat soubory a/nebo složky" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "Kopírovat vybrané soubory a/nebo složky" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "Velikost obrázků (%(count)d) byla změněna." -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "Změnit velikost obrázků" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "Změnit velikost vybraných obrázků" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "Koncovka, která bude přidána ke jménům kopírovaných souborů." -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." -msgstr "" -"Koncovka by měla být jednoduchá součást názvu souboru malými písmeny, " -"například \"%(valid)s\"." +msgstr "Koncovka by měla být jednoduchá součást názvu souboru malými písmeny, například \"%(valid)s\"." -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "Neznámý formát klíče pro přejmenování \"%(key)s\"." -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "Špatný formát přejmenování: %(error)s." -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "volby náhledu" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "šířka" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "výška" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "oříznout" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "zvětšit" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." -msgstr "" -"Musíte vybrat předdefinované volby náhledu nebo nastavit jednotlivé " -"parametry." - -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "Parametry pro změny velikosti musí být vybrány." +msgstr "Musíte vybrat předdefinované volby náhledu nebo nastavit jednotlivé parametry." #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" @@ -380,9 +369,7 @@ msgstr "Oprávnění neaktivní" msgid "" "Disable any permission checking for this file. File will be publicly " "accessible to anyone." -msgstr "" -"Deaktivovat veškerá oprávnění pro tento soubor. Soubor bude komukoli veřejně " -"dostupný." +msgstr "Deaktivovat veškerá oprávnění pro tento soubor. Soubor bude komukoli veřejně dostupný." #: models/foldermodels.py:94 msgid "parent" @@ -475,6 +462,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -493,6 +481,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -505,6 +494,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -559,6 +549,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -626,26 +617,19 @@ msgid "" "Deleting the selected files and/or folders would result in deleting related " "objects, but your account doesn't have permission to delete the following " "types of objects:" -msgstr "" -"Smazání vybraných souborů a/nebo složek bude mít za následek smazání všech " -"přidružených objektů, nicméně ke smazání následujících objektů nemáte " -"oprávnění:" +msgstr "Smazání vybraných souborů a/nebo složek bude mít za následek smazání všech přidružených objektů, nicméně ke smazání následujících objektů nemáte oprávnění:" #: templates/admin/filer/delete_selected_files_confirmation.html:19 msgid "" "Deleting the selected files and/or folders would require deleting the " "following protected related objects:" -msgstr "" -"Smazání vybraných souborů a/nebo složek bude mít za následek smazání " -"následujících přidružených objektů:" +msgstr "Smazání vybraných souborů a/nebo složek bude mít za následek smazání následujících přidružených objektů:" #: templates/admin/filer/delete_selected_files_confirmation.html:27 msgid "" "Are you sure you want to delete the selected files and/or folders? All of " "the following objects and their related items will be deleted:" -msgstr "" -"Opravdu chcete smazat vybrané soubory a složky? Všechny následující objekty " -"budou smazány:" +msgstr "Opravdu chcete smazat vybrané soubory a složky? Všechny následující objekty budou smazány:" #: templates/admin/filer/delete_selected_files_confirmation.html:46 #: templates/admin/filer/folder/choose_copy_destination.html:64 @@ -694,8 +678,8 @@ msgstr "Ikona složky" #: templates/admin/filer/folder/choose_copy_destination.html:23 msgid "" -"Your account doesn't have permissions to copy all of the selected files and/" -"or folders." +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." msgstr "Nemáte oprávnění kopírovat vybrané soubory a/nebo složky." #: templates/admin/filer/folder/choose_copy_destination.html:25 @@ -720,9 +704,7 @@ msgstr "Žádné soubory ani složky není možno kopírovat." msgid "" "The following files and/or folders will be copied to a destination folder " "(retaining their tree structure):" -msgstr "" -"Následující soubory a/nebo složky budou zkopírovány do cílové slžoky (jejich " -"stromová struktura bude zachována):" +msgstr "Následující soubory a/nebo složky budou zkopírovány do cílové slžoky (jejich stromová struktura bude zachována):" #: templates/admin/filer/folder/choose_copy_destination.html:54 #: templates/admin/filer/folder/choose_move_destination.html:64 @@ -752,32 +734,24 @@ msgstr "Žádné obrázky ke změně velikosti." msgid "The following images will be resized:" msgstr "Následujícím obrázkům bude změněna velikost:" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" -msgstr "" -"Vyberte existující volby náhledu nebo zadejte parametry změny velikosti:" - -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "Vyberte parametry změny velikosti:" +msgstr "Vyberte existující volby náhledu nebo zadejte parametry změny velikosti:" -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." -msgstr "" -"Varování: Bude změněna velikost obrázků a původní obrázky budou přepsány. " -"Pokud chcete zachovat obrázky v původní velikosti, nejdříve vytvořte jejich " -"kopie." +msgstr "Varování: Bude změněna velikost obrázků a původní obrázky budou přepsány. Pokud chcete zachovat obrázky v původní velikosti, nejdříve vytvořte jejich kopie." -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "Změnit velikost" #: templates/admin/filer/folder/choose_move_destination.html:35 msgid "" -"Your account doesn't have permissions to move all of the selected files and/" -"or folders." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." msgstr "Nemáte oprávnění k přesunu vybraných souborů nebo složek." #: templates/admin/filer/folder/choose_move_destination.html:47 @@ -788,9 +762,7 @@ msgstr "Žádné soubory k přesunutí." msgid "" "The following files and/or folders will be moved to a destination folder " "(retaining their tree structure):" -msgstr "" -"Následující soubory a/nebo složky budou přesunyty do cílové složky (jejich " -"stromová struktura bude zachována)" +msgstr "Následující soubory a/nebo složky budou přesunyty do cílové složky (jejich stromová struktura bude zachována)" #: templates/admin/filer/folder/choose_move_destination.html:73 #: templates/admin/filer/folder/choose_move_destination.html:76 @@ -815,8 +787,7 @@ msgstr "Žádné soubory k přejmenování." msgid "" "The following files will be renamed (they will stay in their folders and " "keep original filename, only displayed filename will be changed):" -msgstr "" -"Následující soubory budou přejmenovány (změněno bude pouze zobrazované jméno)" +msgstr "Následující soubory budou přejmenovány (změněno bude pouze zobrazované jméno)" #: templates/admin/filer/folder/choose_rename_format.html:59 msgid "Rename" @@ -975,11 +946,13 @@ msgstr "aktivní" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "Kanonický odkaz '%(item_label)s'" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "Stáhnout '%(item_label)s'" @@ -1041,10 +1014,12 @@ msgstr "Vybrat všechny (%(total_count)s)" #: templates/admin/filer/folder/directory_thumbnail_list.html:15 #: templates/admin/filer/folder/directory_thumbnail_list.html:80 +#| msgid "Select this file" msgid "Select all" msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:77 +#| msgid "Filer" msgid "Files" msgstr "" @@ -1112,6 +1087,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1167,6 +1143,7 @@ msgid "Choose File" msgstr "Vybrat soubor" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1192,6 +1169,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/de/LC_MESSAGES/django.mo b/filer/locale/de/LC_MESSAGES/django.mo index ccbfd5b60..dd957229b 100644 Binary files a/filer/locale/de/LC_MESSAGES/django.mo and b/filer/locale/de/LC_MESSAGES/django.mo differ diff --git a/filer/locale/de/LC_MESSAGES/django.po b/filer/locale/de/LC_MESSAGES/django.po index 10d1bc769..e33b93c9f 100644 --- a/filer/locale/de/LC_MESSAGES/django.po +++ b/filer/locale/de/LC_MESSAGES/django.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Fabian Braun , 2023\n" "Language-Team: German (http://app.transifex.com/divio/django-filer/language/de/)\n" @@ -41,196 +41,192 @@ msgid "" "Can't use this folder, Permission Denied. Please select another folder." msgstr "Zugriff auf diesen Ordner verweigert. Bitte wähle einen anderen Ordner." -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "Fortgeschritten" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "Kanonische URL" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." msgstr "Einträge müssen ausgewählt werden, um Aktionen darauf auszuführen. Keine Einträge wurden geändert." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" msgstr[0] "%(total_count)s ausgewählt" msgstr[1] "Alle %(total_count)s ausgewählt" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "Verzeichnis Auflistung für %(folder_name)s" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "0 von %(cnt)s ausgewählt" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "Keine Aktion ausgewählt." -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "%(count)d Dateien wurden erfolgreich in die Zwischenablage gelegt." -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "Ausgewählte Dateien in die Zwischenablage legen" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "Berechtigungen für %(count)d Dateien erfolgreich deaktiviert." -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "Berechtigungen für %(count)d Dateien erfolgreich aktiviert." -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "Berechtigungen für ausgewählte Dateien aktivieren" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "Berechtigungen für ausgewählte Dateien deaktivieren" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "%(count)d Dateien und/oder Ordner wurden erfolgreich gelöscht." -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "Dateien und/oder Ordner können nicht gelöscht werden" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "Bist Du sicher?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "Lösche Dateien und/oder Ordner" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "Lösche ausgewählte Dateien und/oder Ordner" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "Die Ordner mit den Namen %s existieren bereits am ausgewählten Zielort" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "%(count)d Dateien und/oder Ordner wurden erfolgreich in den Ordner '%(destination)s' verschoben." -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "Verschiebe Dateien und/oder Ordner" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "Ausgewählte Dateien und/oder Ordner verschieben" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "%(count)d Dateien wurden erfolgreich umbenannt." -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "Dateien umbenennen" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "%(count)d Dateien und/oder Ordner wurden erfolgreich in den Ordner '%(destination)s' kopiert." -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "Kopiere Dateien und/oder Ordner" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "Ausgewählte Dateien und/oder Ordner kopieren" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "Die Bildgrösse von %(count)d Bildern wurde erfolgreich geändert." -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "Bildgrössen verändern" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "Die Bildgrössen der ausgewählten Bilder verändern" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "Die Dateiendung, welche an die Dateinamen der kopierten Dateien angehängt wird." -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." msgstr "Die Dateiendung sollte ein gültiger, einfacher und kleingeschriebener Teil eines Dateinamens sein, wie zum Beispiel \"%(valid)s\"." -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "Unbekannter Schlüssel für das Umbenennungs-Format: %(key)s." -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "Ungültiges Umbenennungs-Format: %(error)s." -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "Vorschaubild Optionen" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "Breite" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "Höhe" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "Beschneiden" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "Vergrössern" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "Vorschaubild Optionen oder Parameter zur Grössenänderung müssen ausgewählt werden." -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "Parameter zur Grössenänderung müssen ausgewählt werden." - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "Ort des Hauptinhalts" @@ -741,21 +737,17 @@ msgstr "Es gibt keine Bilder auf denen die Größenänderung anwendbar ist." msgid "The following images will be resized:" msgstr "Die Grösse der folgenden Bilder wird verändert:" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" msgstr "Wähle eine vorhandene Vorschaubild Option aus oder gib die Parameter für die Bildgrössenänderung an:" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "Wähle die Parameter für die Bildgrössenänderung:" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." msgstr "Warnung: Die Bilder werden in-place verändert. Die Originale gehen dabei verloren. Lege bei Bedarf eine Kopie der Originale an." -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "Bildgrösse verändern" @@ -1174,6 +1166,12 @@ msgid "" "vulnerability" msgstr "Datei \"{file_name}\": Zurückgewiesen, da eine \"Cross Site Scripting\"-Attacke nicht ausgeschlossen werden kann." +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/en/LC_MESSAGES/django.mo b/filer/locale/en/LC_MESSAGES/django.mo index 7f122d3b0..4f8792c06 100644 Binary files a/filer/locale/en/LC_MESSAGES/django.mo and b/filer/locale/en/LC_MESSAGES/django.mo differ 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.mo b/filer/locale/es/LC_MESSAGES/django.mo index 58062ee45..996721d51 100644 Binary files a/filer/locale/es/LC_MESSAGES/django.mo and b/filer/locale/es/LC_MESSAGES/django.mo differ diff --git a/filer/locale/es/LC_MESSAGES/django.po b/filer/locale/es/LC_MESSAGES/django.po index 3adb0ec9b..7f889b296 100644 --- a/filer/locale/es/LC_MESSAGES/django.po +++ b/filer/locale/es/LC_MESSAGES/django.po @@ -18,7 +18,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-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" @@ -43,21 +43,21 @@ 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." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" @@ -65,175 +65,171 @@ 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'." -#: 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'." -#: 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." -#: 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\"." -#: 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." -#: 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." - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "Localización del sujeto." @@ -744,21 +740,17 @@ 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:" - -#: 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." -#: 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" @@ -1180,6 +1172,12 @@ msgid "" "vulnerability" msgstr "Fichero \"{file_name}\": rechazado por posible vulnerabilidad XSS (Cross-site scripting)" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/et/LC_MESSAGES/django.po b/filer/locale/et/LC_MESSAGES/django.po index 2d8168937..4731b5405 100644 --- a/filer/locale/et/LC_MESSAGES/django.po +++ b/filer/locale/et/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Translators: @@ -12,18 +12,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Johan Viirok, 2022\n" -"Language-Team: Estonian (http://app.transifex.com/divio/django-filer/" -"language/et/)\n" -"Language: et\n" +"Language-Team: Estonian (http://app.transifex.com/divio/django-filer/language/et/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: et\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 "" @@ -32,199 +33,196 @@ msgid "Can't find folder to upload. Please refresh and try again" msgstr "" #: admin/clipboardadmin.py:19 -msgid "Can't use this folder, Permission Denied. Please select another folder." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." msgstr "" -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" msgstr[0] "" msgstr[1] "" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "Ü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 "" @@ -463,6 +461,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -481,6 +480,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -493,6 +493,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -547,6 +548,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -675,8 +677,8 @@ msgstr "Kausta ikoon" #: templates/admin/filer/folder/choose_copy_destination.html:23 msgid "" -"Your account doesn't have permissions to copy all of the selected files and/" -"or folders." +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." msgstr "" #: templates/admin/filer/folder/choose_copy_destination.html:25 @@ -731,28 +733,24 @@ msgstr "" msgid "The following images will be resized:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "Muuda suurust" #: templates/admin/filer/folder/choose_move_destination.html:35 msgid "" -"Your account doesn't have permissions to move all of the selected files and/" -"or folders." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." msgstr "" #: templates/admin/filer/folder/choose_move_destination.html:47 @@ -943,11 +941,13 @@ msgstr "sisse lülitatud" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "Lae alla '%(item_label)s'" @@ -1009,10 +1009,12 @@ msgstr "Vali kõik %(total_count)s" #: templates/admin/filer/folder/directory_thumbnail_list.html:15 #: templates/admin/filer/folder/directory_thumbnail_list.html:80 +#| msgid "Select this file" msgid "Select all" msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:77 +#| msgid "Filer" msgid "Files" msgstr "" @@ -1078,6 +1080,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1133,6 +1136,7 @@ msgid "Choose File" msgstr "Vali fail" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1158,6 +1162,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/eu/LC_MESSAGES/django.mo b/filer/locale/eu/LC_MESSAGES/django.mo index c6df64812..0dfc3bf57 100644 Binary files a/filer/locale/eu/LC_MESSAGES/django.mo and b/filer/locale/eu/LC_MESSAGES/django.mo differ diff --git a/filer/locale/eu/LC_MESSAGES/django.po b/filer/locale/eu/LC_MESSAGES/django.po index 56e3b41fe..bcac68606 100644 --- a/filer/locale/eu/LC_MESSAGES/django.po +++ b/filer/locale/eu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Translators: @@ -10,18 +10,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Ales Zabala Alava , 2013\n" -"Language-Team: Basque (http://app.transifex.com/divio/django-filer/language/" -"eu/)\n" -"Language: eu\n" +"Language-Team: Basque (http://app.transifex.com/divio/django-filer/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -30,205 +31,195 @@ msgid "Can't find folder to upload. Please refresh and try again" msgstr "" #: admin/clipboardadmin.py:19 -msgid "Can't use this folder, Permission Denied. Please select another folder." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "Aurreratua" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." -msgstr "" -"Elementuak hautatu behar dira beraiekin zeozer egiteko. Ez da elementurik " -"aldatu." +msgstr "Elementuak hautatu behar dira beraiekin zeozer egiteko. Ez da elementurik aldatu." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" msgstr[0] "bat haututa" msgstr[1] "%(total_count)s hautatuta" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "%(cnt)s-(e)tik 0 hautatuta" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "Ez da ekintzarik hautatu" -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "%(count)d fitxategi arbelera mugituta." -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "Hautatutako fitxategiak arbelara mugitu" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "%(count)d fitxategientzako baimenak ezgaituta." -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "%(count)d fitxategientzako baimenak gaituta." -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "Hautatutako fitxategientzako baimenak gaitu" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "Hautatutako fitxategientzako baimenak ezgaitu" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "%(count)d fitxategi eta/edo karpeta ezabatuta." -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "Ezin dira fitxategia eta/edo karpetak ezabatu" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "Ziur zaude?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "Ezabatu fitxategi eta/edo karpetak" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "Ezabatu hautatutako fitxategi eta/edo karpetak" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"%(count)d fitxategi eta/edo karpeta '%(destination)s' karpetara mugituta." +msgstr "%(count)d fitxategi eta/edo karpeta '%(destination)s' karpetara mugituta." -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "Fitxategi eta/edo karpetak mugitu" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "Hautatutako fitxategi eta/edo karpetak mugitu" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "%(count)d fitxategi berrizendatuta." -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "Fitxategiak berrizendatu" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"%(count)d fitxategi eta/edo karpeta %(destination)s karpetara kopiatuta." +msgstr "%(count)d fitxategi eta/edo karpeta %(destination)s karpetara kopiatuta." -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "Fitxategi eta/edo karpetak kopiatu" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "Hautatutako fitxategi eta/edo karpetak kopiatu" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "%(count)d irudien tamaina aldatuta." -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "Irudien tamaina aldatu" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "Hautatutako irudien tamaina aldatu" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "Kopiatutako fitxategiei gehituko zaien atzizkia." -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." -msgstr "" -"Atzizkia baliozko, sinple eta letra xehetan dagoen fitxategi izen zatia izan " -"beharko luke, \"%(valid)s\" bezala." +msgstr "Atzizkia baliozko, sinple eta letra xehetan dagoen fitxategi izen zatia izan beharko luke, \"%(valid)s\" bezala." -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "Berrizendatze formatuko gako balio ezezaguna \"%(key)s\"." -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "Berrizendatze formatu okerra: %(error)s." -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "argazkitxoaren aukerak" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "zabalera" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "altuera" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "moztu" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "handitu" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." -msgstr "" -"Argazkitxo aukerak edo tamaina aldatzeko parametroak zehaztu behar dira." - -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "Tamaina aldatzeko parametroak zehaztu behar dira." +msgstr "Argazkitxo aukerak edo tamaina aldatzeko parametroak zehaztu behar dira." #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" @@ -468,6 +459,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -486,6 +478,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -498,6 +491,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -552,6 +546,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -631,9 +626,7 @@ msgstr "" msgid "" "Are you sure you want to delete the selected files and/or folders? All of " "the following objects and their related items will be deleted:" -msgstr "" -"Ziur hautatutako fitxategi eta/edo karpetak ezabatu nahi dituzula? Ondoko " -"objektu eta erlazionatutako elementu guztiak ezabatuko lirateke:" +msgstr "Ziur hautatutako fitxategi eta/edo karpetak ezabatu nahi dituzula? Ondoko objektu eta erlazionatutako elementu guztiak ezabatuko lirateke:" #: templates/admin/filer/delete_selected_files_confirmation.html:46 #: templates/admin/filer/folder/choose_copy_destination.html:64 @@ -682,8 +675,8 @@ msgstr "Karpeta ikonoa" #: templates/admin/filer/folder/choose_copy_destination.html:23 msgid "" -"Your account doesn't have permissions to copy all of the selected files and/" -"or folders." +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." msgstr "" #: templates/admin/filer/folder/choose_copy_destination.html:25 @@ -738,34 +731,25 @@ msgstr "Ez dago tamaina aldatu dezakeen irudirik." msgid "The following images will be resized:" msgstr "Ondoko irudien tamaina aldatuko da:" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" -msgstr "" -"Argazkitxo aukera bat hautatu edo tamaina aldatzeko parametroak ezarri:" - -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "Tamaina aldatzeko parametroak aukeratu:" +msgstr "Argazkitxo aukera bat hautatu edo tamaina aldatzeko parametroak ezarri:" -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." -msgstr "" -"Kontuz: Irudien tamaina aldatzean jatorrizkoak galduko dira. Lehenbizi " -"jatorrizkoen kopia egin zenezake." +msgstr "Kontuz: Irudien tamaina aldatzean jatorrizkoak galduko dira. Lehenbizi jatorrizkoen kopia egin zenezake." -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "Tamaina aldatu" #: templates/admin/filer/folder/choose_move_destination.html:35 msgid "" -"Your account doesn't have permissions to move all of the selected files and/" -"or folders." -msgstr "" -"Zure kontuak ez du hautatutako fitxategi eta/edo karpeta guztiak mugitzeko " -"baimenik." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." +msgstr "Zure kontuak ez du hautatutako fitxategi eta/edo karpeta guztiak mugitzeko baimenik." #: templates/admin/filer/folder/choose_move_destination.html:47 msgid "There are no files and/or folders available to move." @@ -955,11 +939,13 @@ msgstr "gaituta" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "" @@ -1021,10 +1007,12 @@ msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:15 #: templates/admin/filer/folder/directory_thumbnail_list.html:80 +#| msgid "Select this file" msgid "Select all" msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:77 +#| msgid "Filer" msgid "Files" msgstr "" @@ -1090,6 +1078,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1145,6 +1134,7 @@ msgid "Choose File" msgstr "" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1170,6 +1160,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/fa/LC_MESSAGES/django.po b/filer/locale/fa/LC_MESSAGES/django.po index 0900b6fc9..95e21bf26 100644 --- a/filer/locale/fa/LC_MESSAGES/django.po +++ b/filer/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Translators: @@ -10,18 +10,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Fariman Ghaedi , 2019\n" -"Language-Team: Persian (http://app.transifex.com/divio/django-filer/language/" -"fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://app.transifex.com/divio/django-filer/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -30,201 +31,196 @@ msgid "Can't find folder to upload. Please refresh and try again" msgstr "" #: admin/clipboardadmin.py:19 -msgid "Can't use this folder, Permission Denied. Please select another folder." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "پیشرفته" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "آدرس کانونی" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." -msgstr "" -"برای اینکه بتوانید روی آیتم ها اقداماتی انجام دهید ابتدا باید آیتم ها را " -"انتخاب کنید. هیچ آیتمی تغییر نکرد." +msgstr "برای اینکه بتوانید روی آیتم ها اقداماتی انجام دهید ابتدا باید آیتم ها را انتخاب کنید. هیچ آیتمی تغییر نکرد." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" msgstr[0] "" msgstr[1] "" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "هیچ اقدامی انتخاب نشده است." -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "" -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "انتقال فایل های انتخاب شده به کلیپ برد" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "" -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "آیا مطمئن هستید؟" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "پاک کردن فایل ها و/یا پوشه ها" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "پاک کردن فایل ها و/یا پوشه های انتخاب شده" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "" -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "" -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "" -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." msgstr "" -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "" -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "" -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "" -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "" - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "" @@ -463,6 +459,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -481,6 +478,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -493,6 +491,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -547,6 +546,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -675,8 +675,8 @@ msgstr "" #: templates/admin/filer/folder/choose_copy_destination.html:23 msgid "" -"Your account doesn't have permissions to copy all of the selected files and/" -"or folders." +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." msgstr "" #: templates/admin/filer/folder/choose_copy_destination.html:25 @@ -731,28 +731,24 @@ msgstr "" msgid "The following images will be resized:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "" #: templates/admin/filer/folder/choose_move_destination.html:35 msgid "" -"Your account doesn't have permissions to move all of the selected files and/" -"or folders." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." msgstr "" #: templates/admin/filer/folder/choose_move_destination.html:47 @@ -943,11 +939,13 @@ msgstr "" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "" @@ -1009,10 +1007,12 @@ msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:15 #: templates/admin/filer/folder/directory_thumbnail_list.html:80 +#| msgid "Select this file" msgid "Select all" msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:77 +#| msgid "Filer" msgid "Files" msgstr "" @@ -1078,6 +1078,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1133,6 +1134,7 @@ msgid "Choose File" msgstr "" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1158,6 +1160,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/fi/LC_MESSAGES/django.mo b/filer/locale/fi/LC_MESSAGES/django.mo index 2687344ad..0da4c3f99 100644 Binary files a/filer/locale/fi/LC_MESSAGES/django.mo and b/filer/locale/fi/LC_MESSAGES/django.mo differ diff --git a/filer/locale/fi/LC_MESSAGES/django.po b/filer/locale/fi/LC_MESSAGES/django.po index 808350553..332da3021 100644 --- a/filer/locale/fi/LC_MESSAGES/django.po +++ b/filer/locale/fi/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Translators: @@ -11,18 +11,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Teemu Gratschev , 2022\n" -"Language-Team: Finnish (http://app.transifex.com/divio/django-filer/language/" -"fi/)\n" -"Language: fi\n" +"Language-Team: Finnish (http://app.transifex.com/divio/django-filer/language/fi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -31,205 +32,196 @@ msgid "Can't find folder to upload. Please refresh and try again" msgstr "" #: admin/clipboardadmin.py:19 -msgid "Can't use this folder, Permission Denied. Please select another folder." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "Edistyneet asetukset" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "sääntöjenmukainen URL" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." -msgstr "" -"Toiminnon suorittamiseksi pitää valita kohteita. Yhtäänkohdetta ei ole " -"valittu." +msgstr "Toiminnon suorittamiseksi pitää valita kohteita. Yhtäänkohdetta ei ole valittu." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" msgstr[0] "%(total_count)s valittu" msgstr[1] "Kaikki %(total_count)s valittu" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "Hakemistolistaus kansiolle %(folder_name)s" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "0 / %(cnt)s valittu" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "Toimintoa ei ole valittu." -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "%(count)d tiedostoa siirretty leikepöydälle." -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "Siirrä valitut tiedostot leikepöydälle" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "%(count)d tiedoston käyttöoikeudet poistettu käytöstä." -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "Käyttöoikeudet otettu käyttöön %(count)d tiedostolle." -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "Ota käyttöoikeudet käyttöön valituille tiedostoille" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "Poista käyttöoikeudet käytöstä valituista tiedostoista" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "%(count)d tiedostoa ja/tai kansiota poistettu." -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "Kansioita ja/tai tiedostoja ei voida poistaa" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "Oletko varma?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "Poista tiedostot ja/tai kansiot" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "Poista valitut tiedostot ja/tai kansiot" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "%s niminen kansio on jo valitussa kohteessa" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"%(count)d tiedostoa ja/tai kansiota siirretty kansioon '%(destination)s'." +msgstr "%(count)d tiedostoa ja/tai kansiota siirretty kansioon '%(destination)s'." -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "Siirrä tiedostot ja/tai kansiot" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "Siirrä valitut tiedostot ja/tai kansiot" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "%(count)d tiedostoa nimetty uudelleen." -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "Nimeä tiedostot uudelleen" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"%(count)d tiedostoa ja/tai kansiota kopioitu kansioon '%(destination)s'." +msgstr "%(count)d tiedostoa ja/tai kansiota kopioitu kansioon '%(destination)s'." -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "Kopioi tiedostot ja/tai kansiot" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "Kopioi valitut tiedostot ja/tai kansiot" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "%(count)d kuvan kokoa muutettu." -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "Muuta kuvien kokoa" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "Muuta valittujen kuvien kokoa" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "Pääte, joka lisätään kopioitujen tiedostojen nimiin." -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." -msgstr "" -"Päätteen tulee olla käypä, yksinkertainen ja pienellä kirjoitettu osa " -"tiedostonimeä, esim. \"%(valid)s\"." +msgstr "Päätteen tulee olla käypä, yksinkertainen ja pienellä kirjoitettu osa tiedostonimeä, esim. \"%(valid)s\"." -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "Tuntematon uudelleennimeämisarvo \"%(key)s\"." -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "Virheellinen uudelleennimeämismuoto: %(error)s." -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "pikkukuvan asetus" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "leveys" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "korkeus" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "rajaus" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "suurenna" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "Pikkukuvan asetus tai koon muuttamisen parametrit tulee valita." -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "Koon muuttamisen parametrit tulee valita." - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "Kohteen sijainti" @@ -375,9 +367,7 @@ msgstr "Käyttöoikeudet pois käytöstä" msgid "" "Disable any permission checking for this file. File will be publicly " "accessible to anyone." -msgstr "" -"Poista käyttöoikeuksien tarkistus tältä tiedostolta. Tiedosto näkyy " -"julkisena kaikille." +msgstr "Poista käyttöoikeuksien tarkistus tältä tiedostolta. Tiedosto näkyy julkisena kaikille." #: models/foldermodels.py:94 msgid "parent" @@ -470,6 +460,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -488,6 +479,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -500,6 +492,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -554,6 +547,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -621,26 +615,19 @@ msgid "" "Deleting the selected files and/or folders would result in deleting related " "objects, but your account doesn't have permission to delete the following " "types of objects:" -msgstr "" -"Valittujen tiedostojen ja/tai kansioiden poistaminen vaatii liittyvien " -"objektien poistamista, mutta käyttöoikeutesi eivät riitäseuraavien " -"objektityyppien poistamiseen:" +msgstr "Valittujen tiedostojen ja/tai kansioiden poistaminen vaatii liittyvien objektien poistamista, mutta käyttöoikeutesi eivät riitäseuraavien objektityyppien poistamiseen:" #: templates/admin/filer/delete_selected_files_confirmation.html:19 msgid "" "Deleting the selected files and/or folders would require deleting the " "following protected related objects:" -msgstr "" -"Valittujen tiedostojen ja/tai kansioiden poistaminen vaatisi seuraavien " -"suojattujen liittyvien objektien poistamista:" +msgstr "Valittujen tiedostojen ja/tai kansioiden poistaminen vaatisi seuraavien suojattujen liittyvien objektien poistamista:" #: templates/admin/filer/delete_selected_files_confirmation.html:27 msgid "" "Are you sure you want to delete the selected files and/or folders? All of " "the following objects and their related items will be deleted:" -msgstr "" -"Oletko varma, että haluat poistaa valitut tiedostot ja/tai kansiot? Kaikki " -"seuraavat objektit ja niihin liittyvät kohteet poistetaan:" +msgstr "Oletko varma, että haluat poistaa valitut tiedostot ja/tai kansiot? Kaikki seuraavat objektit ja niihin liittyvät kohteet poistetaan:" #: templates/admin/filer/delete_selected_files_confirmation.html:46 #: templates/admin/filer/folder/choose_copy_destination.html:64 @@ -689,11 +676,9 @@ msgstr "Kansion kuvake" #: templates/admin/filer/folder/choose_copy_destination.html:23 msgid "" -"Your account doesn't have permissions to copy all of the selected files and/" -"or folders." -msgstr "" -"Käyttöoikeutesi eivät riitä kaikkien valittujen tiedostojen ja/tai " -"kansioidenkopioimiseen." +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." +msgstr "Käyttöoikeutesi eivät riitä kaikkien valittujen tiedostojen ja/tai kansioidenkopioimiseen." #: templates/admin/filer/folder/choose_copy_destination.html:25 #: templates/admin/filer/folder/choose_copy_destination.html:31 @@ -717,9 +702,7 @@ msgstr "Kopioitavia tiedostoja ja/tai kansioita ei ole saatavilla." msgid "" "The following files and/or folders will be copied to a destination folder " "(retaining their tree structure):" -msgstr "" -"Seuraavat tiedostot ja/tai kansiot kopioidaan kohdekansioon (säilyttäen " -"puurakenteen):" +msgstr "Seuraavat tiedostot ja/tai kansiot kopioidaan kohdekansioon (säilyttäen puurakenteen):" #: templates/admin/filer/folder/choose_copy_destination.html:54 #: templates/admin/filer/folder/choose_move_destination.html:64 @@ -739,8 +722,7 @@ msgstr "Tiedostojen kopiointi samaan kansioon ei ole sallittu" #: templates/admin/filer/folder/choose_images_resize_options.html:15 msgid "" "Your account doesn't have permissions to resize all of the selected images." -msgstr "" -"Käyttöoikeutesi eivät riitä kaikkien valittujen kuvien koon muuttamiseen." +msgstr "Käyttöoikeutesi eivät riitä kaikkien valittujen kuvien koon muuttamiseen." #: templates/admin/filer/folder/choose_images_resize_options.html:18 msgid "There are no images available to resize." @@ -750,33 +732,25 @@ msgstr "Kuvia, joiden kokoa voisi muuttaa ei ole saatavilla." msgid "The following images will be resized:" msgstr "Seuraavien kuvien kokoa muutetaan:" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" msgstr "Valitse olemassaolevat pikkukuvan asetukset tai syötä kokoparametrit:" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "Valitse kokoparametrit:" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." -msgstr "" -"Varoitus: Kuvien kokoa muuttaessa alkuperäiset versiot menetetään. On hyvä " -"idea tehdä kuvista ensin kopiot alkuperäisten säilyttämiseksi." +msgstr "Varoitus: Kuvien kokoa muuttaessa alkuperäiset versiot menetetään. On hyvä idea tehdä kuvista ensin kopiot alkuperäisten säilyttämiseksi." -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "Muuta kokoa" #: templates/admin/filer/folder/choose_move_destination.html:35 msgid "" -"Your account doesn't have permissions to move all of the selected files and/" -"or folders." -msgstr "" -"Käyttöoikeutesi eivät riitä kaikkien valittujen tiedostojen ja/tai " -"kansioidensiirtämiseen." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." +msgstr "Käyttöoikeutesi eivät riitä kaikkien valittujen tiedostojen ja/tai kansioidensiirtämiseen." #: templates/admin/filer/folder/choose_move_destination.html:47 msgid "There are no files and/or folders available to move." @@ -786,9 +760,7 @@ msgstr "Siirrettäviä tiedostoja ja/tai kansioita ei ole saatavilla." msgid "" "The following files and/or folders will be moved to a destination folder " "(retaining their tree structure):" -msgstr "" -"Seuraavat tiedostot ja/tai kansiot siirretään kohdekansioon (säilyttäen " -"niiden puurakenne):" +msgstr "Seuraavat tiedostot ja/tai kansiot siirretään kohdekansioon (säilyttäen niiden puurakenne):" #: templates/admin/filer/folder/choose_move_destination.html:73 #: templates/admin/filer/folder/choose_move_destination.html:76 @@ -803,9 +775,7 @@ msgstr "Tiedostojen siirto samaan kansioon ei ole sallittua" #: templates/admin/filer/folder/choose_rename_format.html:15 msgid "" "Your account doesn't have permissions to rename all of the selected files." -msgstr "" -"Käyttöoikeutesi eivät riitä kaikkien valittujen tiedostojen " -"uudelleennimeämiseen." +msgstr "Käyttöoikeutesi eivät riitä kaikkien valittujen tiedostojen uudelleennimeämiseen." #: templates/admin/filer/folder/choose_rename_format.html:18 msgid "There are no files available to rename." @@ -815,10 +785,7 @@ msgstr "Uudelleennimettäviä tiedostoja ei ole saatavilla." msgid "" "The following files will be renamed (they will stay in their folders and " "keep original filename, only displayed filename will be changed):" -msgstr "" -"Seuraavat tiedostot uudelleennimetään (ne pysyvät kansioissaan ja " -"alkuperäiset tiedostonimet säilytetään, vain näytettävä tiedostonimi " -"muutetaan):" +msgstr "Seuraavat tiedostot uudelleennimetään (ne pysyvät kansioissaan ja alkuperäiset tiedostonimet säilytetään, vain näytettävä tiedostonimi muutetaan):" #: templates/admin/filer/folder/choose_rename_format.html:59 msgid "Rename" @@ -973,11 +940,13 @@ msgstr "käytössä" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "Canonical-osoite '%(item_label)s'" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "Lataa '%(item_label)s'" @@ -1039,10 +1008,12 @@ msgstr "Valitse kaikki %(total_count)s" #: templates/admin/filer/folder/directory_thumbnail_list.html:15 #: templates/admin/filer/folder/directory_thumbnail_list.html:80 +#| msgid "Select this file" msgid "Select all" msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:77 +#| msgid "Filer" msgid "Files" msgstr "" @@ -1108,6 +1079,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1163,6 +1135,7 @@ msgid "Choose File" msgstr "Valitse tiedosto" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1188,6 +1161,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/fr/LC_MESSAGES/django.mo b/filer/locale/fr/LC_MESSAGES/django.mo index f00475990..d02eb51bc 100644 Binary files a/filer/locale/fr/LC_MESSAGES/django.mo and b/filer/locale/fr/LC_MESSAGES/django.mo differ diff --git a/filer/locale/fr/LC_MESSAGES/django.po b/filer/locale/fr/LC_MESSAGES/django.po index 58080e380..6ddf2786c 100644 --- a/filer/locale/fr/LC_MESSAGES/django.po +++ b/filer/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Translators: @@ -16,19 +16,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Corentin Bettiol, 2023\n" -"Language-Team: French (http://app.transifex.com/divio/django-filer/language/" -"fr/)\n" -"Language: fr\n" +"Language-Team: French (http://app.transifex.com/divio/django-filer/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % " -"1000000 == 0 ? 1 : 2;\n" +"Language: fr\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "Vous n'avez pas la permission d'héberger des fichiers." @@ -37,28 +37,25 @@ msgid "Can't find folder to upload. Please refresh and try again" msgstr "Dossier d'hébergement introuvable, rafraîchissez la page et réessayez." #: admin/clipboardadmin.py:19 -msgid "Can't use this folder, Permission Denied. Please select another folder." -msgstr "" -"Utilisation du dossier impossible : Permissions insuffisantes. Sélectionnez " -"un autre dossier." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." +msgstr "Utilisation du dossier impossible : Permissions insuffisantes. Sélectionnez un autre dossier." -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "Avancé" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "URL canonique" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." -msgstr "" -"Des éléments doivent être sélectionnés pour effectuer les actions. Aucun " -"élément n'a été modifié." +msgstr "Des éléments doivent être sélectionnés pour effectuer les actions. Aucun élément n'a été modifié." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" @@ -66,182 +63,170 @@ msgstr[0] "%(total_count)s sélectionné" msgstr[1] "Tous les %(total_count)s sélectionnés" msgstr[2] "Tous les %(total_count)s sélectionnés" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "Liste du répertoire pour %(folder_name)s" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "0 sur %(cnt)s sélectionné" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "Pas d'action sélectionnée." -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "%(count)d fichiers déplacés avec succès vers le presse-papiers." -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "Déplacer les fichiers sélectionnés vers le presse-papiers" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "Permissions désactivées avec succès pour %(count)d fichiers." -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "Permissions activées avec succès pour %(count)d fichiers." -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "Activer les permissions pour les fichiers sélectionnés." -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "Désactiver les permissions pour les fichiers sélectionnés." -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "%(count)d fichiers et/ou dossiers supprimés avec succès." -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "Impossible de supprimer les fichiers et/ou dossiers." -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "Êtes-vous sûr(e) ?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "Supprimer les fichiers et/ou dossiers" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "Supprimer les fichiers et/ou dossiers sélectionnés" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "Des dossiers nommés %s existent déjà dans la destination sélectionnée" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"%(count)d fichiers et/ou dossiers déplacés avec succès vers le dossier " -"« %(destination)s »." +msgstr "%(count)d fichiers et/ou dossiers déplacés avec succès vers le dossier « %(destination)s »." -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "Déplacer les fichiers et/ou dossiers" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "Déplacer les fichiers et/ou dossiers sélectionnés" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "%(count)d fichiers renommés avec succès." -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "Renommer les fichiers" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"%(count)d fichiers et/dossiers copiés avec succès dans le dossier " -"« %(destination)s »." +msgstr "%(count)d fichiers et/dossiers copiés avec succès dans le dossier « %(destination)s »." -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "Copier les fichiers et/ou dossiers" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "Copier les fichiers et/ou dossiers sélectionnés" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "%(count)d images redimensionnées avec succès." -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "Redimensionner les images" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "Redimensionner les images sélectionnées" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "Suffixe qui sera ajouté au nom des fichiers copiés." -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." -msgstr "" -"Le suffixe doit être une partie de nom de fichier valide, simple et en " -"minuscules, comme « %(valid)s »." +msgstr "Le suffixe doit être une partie de nom de fichier valide, simple et en minuscules, comme « %(valid)s »." -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "La clé de formatage « %(key)s » est inconnue." -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "Format de renommage non valide : %(error)s." -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "option de miniature" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "largeur" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "hauteur" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "rogner" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "agrandir" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." -msgstr "" -"Une option de miniature ou des paramètres de dimensionnement doivent être " -"choisis." - -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "Des paramètres de dimensionnement doivent être choisis." +msgstr "Une option de miniature ou des paramètres de dimensionnement doivent être choisis." #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" @@ -388,9 +373,7 @@ msgstr "Permissions désactivées" msgid "" "Disable any permission checking for this file. File will be publicly " "accessible to anyone." -msgstr "" -"Désactiver la vérification des permissions pour ce fichier. Le fichier sera " -"publiquement accessible à tout le monde." +msgstr "Désactiver la vérification des permissions pour ce fichier. Le fichier sera publiquement accessible à tout le monde." #: models/foldermodels.py:94 msgid "parent" @@ -483,6 +466,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "Au moins une option parmi un utilisateur, un groupe, ou \"tout le monde\" doit être sélectionnée." #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "Tous les dossiers" @@ -501,6 +485,7 @@ msgid "Group: {group}" msgstr "Groupe : {group}" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "Tout le monde" @@ -513,6 +498,7 @@ msgid "Read" msgstr "Lire" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "Ajouter un sous-dossier" @@ -567,6 +553,7 @@ msgid "Show table view" msgstr "Voir la vue en liste" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "Voir la vue avec des miniatures" @@ -634,26 +621,19 @@ msgid "" "Deleting the selected files and/or folders would result in deleting related " "objects, but your account doesn't have permission to delete the following " "types of objects:" -msgstr "" -"Supprimer les fichiers et/ou dossiers sélectionnés devrait provoquer la " -"suppression des objets liés, mais votre compte n'a pas les permissions " -"nécessaires pour supprimer les types d'objets suivants :" +msgstr "Supprimer les fichiers et/ou dossiers sélectionnés devrait provoquer la suppression des objets liés, mais votre compte n'a pas les permissions nécessaires pour supprimer les types d'objets suivants :" #: templates/admin/filer/delete_selected_files_confirmation.html:19 msgid "" "Deleting the selected files and/or folders would require deleting the " "following protected related objects:" -msgstr "" -"Supprimer les fichiers et/ou dossiers provoquera la suppression des objets " -"liés protégés suivants :" +msgstr "Supprimer les fichiers et/ou dossiers provoquera la suppression des objets liés protégés suivants :" #: templates/admin/filer/delete_selected_files_confirmation.html:27 msgid "" "Are you sure you want to delete the selected files and/or folders? All of " "the following objects and their related items will be deleted:" -msgstr "" -"Voulez-vous vraiment supprimer les fichiers et/ou dossiers sélectionnés ? " -"Tous les objets suivants et leurs éléments liés seront supprimés :" +msgstr "Voulez-vous vraiment supprimer les fichiers et/ou dossiers sélectionnés ? Tous les objets suivants et leurs éléments liés seront supprimés :" #: templates/admin/filer/delete_selected_files_confirmation.html:46 #: templates/admin/filer/folder/choose_copy_destination.html:64 @@ -702,11 +682,9 @@ msgstr "Icône du dossier" #: templates/admin/filer/folder/choose_copy_destination.html:23 msgid "" -"Your account doesn't have permissions to copy all of the selected files and/" -"or folders." -msgstr "" -"Votre compte n'a pas les permissions nécessaires pour copier tous les " -"fichiers et/ou dossiers sélectionnés." +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." +msgstr "Votre compte n'a pas les permissions nécessaires pour copier tous les fichiers et/ou dossiers sélectionnés." #: templates/admin/filer/folder/choose_copy_destination.html:25 #: templates/admin/filer/folder/choose_copy_destination.html:31 @@ -730,9 +708,7 @@ msgstr "Aucun fichier ou dossier n'est disponible à copier." msgid "" "The following files and/or folders will be copied to a destination folder " "(retaining their tree structure):" -msgstr "" -"Les fichiers et/ou dossiers suivants seront copiés vers un dossier de " -"destination (en conservant leur arborescence) :" +msgstr "Les fichiers et/ou dossiers suivants seront copiés vers un dossier de destination (en conservant leur arborescence) :" #: templates/admin/filer/folder/choose_copy_destination.html:54 #: templates/admin/filer/folder/choose_move_destination.html:64 @@ -752,9 +728,7 @@ msgstr "Il est impossible de copier des fichiers dans le même dossier" #: templates/admin/filer/folder/choose_images_resize_options.html:15 msgid "" "Your account doesn't have permissions to resize all of the selected images." -msgstr "" -"Votre compte na pas les permissions nécessaires pour redimensionner toutes " -"les images sélectionnées." +msgstr "Votre compte na pas les permissions nécessaires pour redimensionner toutes les images sélectionnées." #: templates/admin/filer/folder/choose_images_resize_options.html:18 msgid "There are no images available to resize." @@ -764,36 +738,25 @@ msgstr "Il n'y a aucune image disponible à redimensionner." msgid "The following images will be resized:" msgstr "Les images suivantes seront redimensionnées :" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" -msgstr "" -"Choisissez une option de miniature existante ou entrez des paramètres de " -"redimensionnement :" +msgstr "Choisissez une option de miniature existante ou entrez des paramètres de redimensionnement :" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "Choisissez des paramètres de redimensionnement :" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." -msgstr "" -"Avertissement : Les images seront redimensionnées en place et les originales " -"seront perdues. Faites-en éventuellement une copie préalable afin de les " -"conserver." +msgstr "Avertissement : Les images seront redimensionnées en place et les originales seront perdues. Faites-en éventuellement une copie préalable afin de les conserver." -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "Redimensionner" #: templates/admin/filer/folder/choose_move_destination.html:35 msgid "" -"Your account doesn't have permissions to move all of the selected files and/" -"or folders." -msgstr "" -"Votre compte n'a pas les permissions nécessaires pour déplacer tous les " -"fichiers et/ou dossiers sélectionnés." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." +msgstr "Votre compte n'a pas les permissions nécessaires pour déplacer tous les fichiers et/ou dossiers sélectionnés." #: templates/admin/filer/folder/choose_move_destination.html:47 msgid "There are no files and/or folders available to move." @@ -803,9 +766,7 @@ msgstr "Il n'y a pas de fichiers et/ou dossiers disponibles à déplacer." msgid "" "The following files and/or folders will be moved to a destination folder " "(retaining their tree structure):" -msgstr "" -"Les fichiers et/ou dossiers suivants seront déplacés vers un dossier de " -"destination (en conservant leur arborescence) :" +msgstr "Les fichiers et/ou dossiers suivants seront déplacés vers un dossier de destination (en conservant leur arborescence) :" #: templates/admin/filer/folder/choose_move_destination.html:73 #: templates/admin/filer/folder/choose_move_destination.html:76 @@ -820,9 +781,7 @@ msgstr "Il est impossible de déplacer des fichiers dans le même dossier" #: templates/admin/filer/folder/choose_rename_format.html:15 msgid "" "Your account doesn't have permissions to rename all of the selected files." -msgstr "" -"Votre compte n'a pas les permissions nécessaires pour renommer tous les " -"fichiers sélectionnés." +msgstr "Votre compte n'a pas les permissions nécessaires pour renommer tous les fichiers sélectionnés." #: templates/admin/filer/folder/choose_rename_format.html:18 msgid "There are no files available to rename." @@ -832,10 +791,7 @@ msgstr "Il n'y a pas de fichiers disponibles à renommer." msgid "" "The following files will be renamed (they will stay in their folders and " "keep original filename, only displayed filename will be changed):" -msgstr "" -"Les fichiers suivants seront renommés (ils resteront dans leurs dossiers et " -"conserveront leur nom de fichier d'origine ; seul le nom affiché sera " -"changé) :" +msgstr "Les fichiers suivants seront renommés (ils resteront dans leurs dossiers et conserveront leur nom de fichier d'origine ; seul le nom affiché sera changé) :" #: templates/admin/filer/folder/choose_rename_format.html:59 msgid "Rename" @@ -992,11 +948,13 @@ msgstr "activé" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "url canonique '%(item_label)s' " #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "Télécharger '%(item_label)s' " @@ -1007,8 +965,7 @@ msgstr "Supprimer le fichier" #: templates/admin/filer/folder/directory_table_list.html:160 #: templates/admin/filer/folder/directory_thumbnail_list.html:138 msgid "Drop files here or use the \"Upload Files\" button" -msgstr "" -"Déposez des fichiers ici ou utilisez le bouton « Téléverser des fichiers »" +msgstr "Déposez des fichiers ici ou utilisez le bouton « Téléverser des fichiers »" #: templates/admin/filer/folder/directory_table_list.html:175 #: templates/admin/filer/folder/directory_thumbnail_list.html:153 @@ -1059,10 +1016,12 @@ msgstr "Sélectionner les %(total_count)s" #: templates/admin/filer/folder/directory_thumbnail_list.html:15 #: templates/admin/filer/folder/directory_thumbnail_list.html:80 +#| msgid "Select this file" msgid "Select all" msgstr "Tout sélectionner" #: templates/admin/filer/folder/directory_thumbnail_list.html:77 +#| msgid "Filer" msgid "Files" msgstr "Fichiers" @@ -1129,6 +1088,7 @@ msgstr "Agrandir" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "Le fichier est manquant" @@ -1184,38 +1144,37 @@ msgid "Choose File" msgstr "Sélectionner un fichier" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "Choisissez un dossier" #: validation.py:19 #, python-brace-format msgid "File \"{file_name}\": Upload denied by site security policy" -msgstr "" -"Fichier \"{file_name}\" : Hébergement refusé par la politique de sécurité du " -"site" +msgstr "Fichier \"{file_name}\" : Hébergement refusé par la politique de sécurité du site" #: validation.py:22 #, python-brace-format msgid "File \"{file_name}\": {file_type} upload denied by site security policy" -msgstr "" -"Fichier \"{file_name}\" : hébergement de {file_type} refusé par la politique " -"de sécurité du site" +msgstr "Fichier \"{file_name}\" : hébergement de {file_type} refusé par la politique de sécurité du site" #: validation.py:33 #, python-brace-format msgid "File \"{file_name}\": HTML upload denied by site security policy" -msgstr "" -"Fichier \"{file_name}\" : hébergement HTML refusé par la politique de " -"sécurité du site" +msgstr "Fichier \"{file_name}\" : hébergement HTML refusé par la politique de sécurité du site" #: validation.py:71 #, python-brace-format msgid "" "File \"{file_name}\": Rejected due to potential cross site scripting " "vulnerability" -msgstr "" -"Fichier \"{file_name}\" : Rejeté à cause d'une potentielle vulnérabilité de " -"cross-site scripting" +msgstr "Fichier \"{file_name}\" : Rejeté à cause d'une potentielle vulnérabilité de cross-site scripting" + +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/gl/LC_MESSAGES/django.po b/filer/locale/gl/LC_MESSAGES/django.po index a81d1a3a8..4cbd2447c 100644 --- a/filer/locale/gl/LC_MESSAGES/django.po +++ b/filer/locale/gl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Translators: @@ -11,18 +11,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Pablo, 2015\n" -"Language-Team: Galician (http://app.transifex.com/divio/django-filer/" -"language/gl/)\n" -"Language: gl\n" +"Language-Team: Galician (http://app.transifex.com/divio/django-filer/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -31,199 +32,196 @@ msgid "Can't find folder to upload. Please refresh and try again" msgstr "" #: admin/clipboardadmin.py:19 -msgid "Can't use this folder, Permission Denied. Please select another folder." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "Avanzado" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." msgstr "" -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" msgstr[0] "%(total_count)s seleccionados" msgstr[1] "Os %(total_count)s seleccionados" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "0 de %(cnt)s seleccionados" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "Ningunha acción seleccionada." -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "Movéronse correctamente %(count)d arquivos ao portapapeis." -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "Mover arquivos seleccionados ao portapapeis." -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "" -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "Non se poden borrar arquivos e/ou carpetas" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "Estás seguro?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "Borrar arquivos e/ou carpetas" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "Mover alquivos e/ou carpetas" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "Mover arquivos e/ou carpetas seleccionados" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "" -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "Copiar arquivos e/ou carpetas" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "Copiar arquivos e/ou carpetas seleccionados" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "" -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "Cambiar o tamaño das imaxes" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "Cambiar o tamaño das imaxes seleccionadas" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "" -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." msgstr "" -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "" -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "Formato para o cambio de nome non válido: %(error)s." -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "opción da miniatura" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "ancho" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "alto" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "recortar" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "ampliar" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "" -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "" - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "" @@ -462,6 +460,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -480,6 +479,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -492,6 +492,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -546,6 +547,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -674,8 +676,8 @@ msgstr "" #: templates/admin/filer/folder/choose_copy_destination.html:23 msgid "" -"Your account doesn't have permissions to copy all of the selected files and/" -"or folders." +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." msgstr "" #: templates/admin/filer/folder/choose_copy_destination.html:25 @@ -730,28 +732,24 @@ msgstr "" msgid "The following images will be resized:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "" #: templates/admin/filer/folder/choose_move_destination.html:35 msgid "" -"Your account doesn't have permissions to move all of the selected files and/" -"or folders." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." msgstr "" #: templates/admin/filer/folder/choose_move_destination.html:47 @@ -942,11 +940,13 @@ msgstr "" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "" @@ -1008,10 +1008,12 @@ msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:15 #: templates/admin/filer/folder/directory_thumbnail_list.html:80 +#| msgid "Select this file" msgid "Select all" msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:77 +#| msgid "Filer" msgid "Files" msgstr "" @@ -1077,6 +1079,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1132,6 +1135,7 @@ msgid "Choose File" msgstr "" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1157,6 +1161,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/he/LC_MESSAGES/django.mo b/filer/locale/he/LC_MESSAGES/django.mo index 850c59e4b..a3f72b63e 100644 Binary files a/filer/locale/he/LC_MESSAGES/django.mo and b/filer/locale/he/LC_MESSAGES/django.mo differ diff --git a/filer/locale/he/LC_MESSAGES/django.po b/filer/locale/he/LC_MESSAGES/django.po index 30fce3f31..fc9429605 100644 --- a/filer/locale/he/LC_MESSAGES/django.po +++ b/filer/locale/he/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Translators: @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Angelo Dini \n" -"Language-Team: Hebrew (http://app.transifex.com/divio/django-filer/language/" -"he/)\n" -"Language: he\n" +"Language-Team: Hebrew (http://app.transifex.com/divio/django-filer/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % " -"1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" +"Language: he\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -30,24 +30,25 @@ msgid "Can't find folder to upload. Please refresh and try again" msgstr "" #: admin/clipboardadmin.py:19 -msgid "Can't use this folder, Permission Denied. Please select another folder." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "מתקדם" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." msgstr "יש לבחור פריטים על מנת לבצע עליהם פעולות. לא בוצעו פעולות." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" @@ -56,175 +57,171 @@ msgstr[1] "כל ה-%(total_count)s נבחרו" msgstr[2] "כל ה-%(total_count)s נבחרו" msgstr[3] "כל ה-%(total_count)s נבחרו" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "0 מתוך %(cnt)s נבחרו" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "לא נבחרה פעולה." -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "הועברו בהצלחה %(count)d קבצים ללוח" -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "העבר קבצים שנבחרו ללוח" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "בוטלו בהצלחה הרשאות עבור %(count)d קבצים." -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "אופשרו בהצלחה הרשאות עבור %(count)d קבצים." -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "אופשרו הרשאות עבור קבצים בחורים" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "בוטלו הרשאות עבור קבצים בחורים" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "נמחקו בהצלחה %(count)d קבצים ו/או תיקיות." -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "לא ניתן למחוק קבצים ו/או תיקיות" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "האם את/ה בטוח/ה?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "מחק קבצים ו/או תיקיות" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "מחק קבצים ו/או תיקיות בחורים" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "הועברו בהצלחה %(count)d קבצים ו/או תיקיות לתיקיה '%(destination)s'." -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "העבר קבצים ו/או תיקיות" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "העבר קבצים ו/או תיקיות בחורים" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "שונו בהצלחה שמותיהם של %(count)d קבצים." -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "שנה שמות קבצים" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "הועתקו בהצלחה %(count)d קבצים ו/או תיקיות לתיקיה '%(destination)s'." -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "העתק קבצים ו/או תיקיות" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "העתק קבצים ו/או תיקיות בחורים" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "שונה בהצלחה גודלם של %(count)d תמונות." -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "שנה גודל תמונות" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "שנה גודל תמונות בחורות" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "סיומת אשר תתווסף לשמות קבצים שהועתקו." -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." msgstr "על הסיומת להיות תקינה, פשוטה ובאותיות קטנות, כגון \"%(valid)s\"." -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "ערך מפתח תבנית שינוי השם \"%(key)s\". אינו חוקי." -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "תבנית שינוי שם לא תקינה: %(error)s." -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "אפשרות תמונה ממוזערת" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "רוחב" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "גובה" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "חיתוך" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "הגדל" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "עליך לבחור אפשרות תמונה ממוזערת או פרמטרי שינוי גודל." -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "יש לבחור פרמטרי שינוי גודל." - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "מיקום נושא" @@ -463,6 +460,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -481,6 +479,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -493,6 +492,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -547,6 +547,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -614,25 +615,19 @@ msgid "" "Deleting the selected files and/or folders would result in deleting related " "objects, but your account doesn't have permission to delete the following " "types of objects:" -msgstr "" -"עבור מחיקת הקבצים ו/או התיקיות הבחורים יש צורך למחוק אובייקטים מקושרים, אך " -"לחשבונך אין הרשאות למחוק אובייקטים מהסוגים הבאים:" +msgstr "עבור מחיקת הקבצים ו/או התיקיות הבחורים יש צורך למחוק אובייקטים מקושרים, אך לחשבונך אין הרשאות למחוק אובייקטים מהסוגים הבאים:" #: templates/admin/filer/delete_selected_files_confirmation.html:19 msgid "" "Deleting the selected files and/or folders would require deleting the " "following protected related objects:" -msgstr "" -"עבור מחיקת הקבצים ו/או התיקיות הבחורים יש צורך למחוק את האובייקטים המוגנים " -"הבאים:" +msgstr "עבור מחיקת הקבצים ו/או התיקיות הבחורים יש צורך למחוק את האובייקטים המוגנים הבאים:" #: templates/admin/filer/delete_selected_files_confirmation.html:27 msgid "" "Are you sure you want to delete the selected files and/or folders? All of " "the following objects and their related items will be deleted:" -msgstr "" -"האם את/ה בטוח/ה שברצונך למחוק את הקבצים ו/או התיקיות הבחורים? כל הפריטים " -"המקושרים יימחקו:" +msgstr "האם את/ה בטוח/ה שברצונך למחוק את הקבצים ו/או התיקיות הבחורים? כל הפריטים המקושרים יימחקו:" #: templates/admin/filer/delete_selected_files_confirmation.html:46 #: templates/admin/filer/folder/choose_copy_destination.html:64 @@ -681,8 +676,8 @@ msgstr "צלמית תיקייה" #: templates/admin/filer/folder/choose_copy_destination.html:23 msgid "" -"Your account doesn't have permissions to copy all of the selected files and/" -"or folders." +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." msgstr "לחשבונך אין רשות להעתיק את כל הקבצים ו/או התיקיות הבחורים." #: templates/admin/filer/folder/choose_copy_destination.html:25 @@ -707,8 +702,7 @@ msgstr "אין קבצים ו/או תיקיות זמינים להעתקה." msgid "" "The following files and/or folders will be copied to a destination folder " "(retaining their tree structure):" -msgstr "" -"הקבצים ו/או התיקיות הבאים יועתקו לתיקיית יעד (תוך שמירה על מבנה העץ שלהם):" +msgstr "הקבצים ו/או התיקיות הבאים יועתקו לתיקיית יעד (תוך שמירה על מבנה העץ שלהם):" #: templates/admin/filer/folder/choose_copy_destination.html:54 #: templates/admin/filer/folder/choose_move_destination.html:64 @@ -738,30 +732,24 @@ msgstr "אין תמונות זמינות לשינוי גודלן." msgid "The following images will be resized:" msgstr "התמונות הבאות ישונה גודלן:" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" msgstr "בחר אפשרות תמונה ממוזערת קיימת או הזן פרמטרי שינוי גודל:" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "בחר פרמטרי שינוי גודל:" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." -msgstr "" -"הזהרה: התמונות ישונה גודלן במקום והמקוריות יאבדו. אולי ראשית עשה/י העתק שלהם " -"כדי לשמור על המקויות." +msgstr "הזהרה: התמונות ישונה גודלן במקום והמקוריות יאבדו. אולי ראשית עשה/י העתק שלהם כדי לשמור על המקויות." -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "שנה גודל" #: templates/admin/filer/folder/choose_move_destination.html:35 msgid "" -"Your account doesn't have permissions to move all of the selected files and/" -"or folders." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." msgstr "לחשבונך אין רשות להעביר את כל הקבצים ו/או התיקיות הבחורים." #: templates/admin/filer/folder/choose_move_destination.html:47 @@ -772,8 +760,7 @@ msgstr "אין קבצים ו/או תיקיות זמינים להעברה." msgid "" "The following files and/or folders will be moved to a destination folder " "(retaining their tree structure):" -msgstr "" -"הקבצים ו/או התיקיות הבאים יועברו לתיקיית יעד (תוך שמירה על מבנה העץ שלהם):" +msgstr "הקבצים ו/או התיקיות הבאים יועברו לתיקיית יעד (תוך שמירה על מבנה העץ שלהם):" #: templates/admin/filer/folder/choose_move_destination.html:73 #: templates/admin/filer/folder/choose_move_destination.html:76 @@ -798,9 +785,7 @@ msgstr "אין קבצים זמינים לשינוי שמם." msgid "" "The following files will be renamed (they will stay in their folders and " "keep original filename, only displayed filename will be changed):" -msgstr "" -"הקבצים הבאים ישונו שמותיהם (הם יישארו בתיקיות הנוכחיות שלהם ושמם המקורי " -"יישאר - רק שמות התצוגה שלהם ישונו):" +msgstr "הקבצים הבאים ישונו שמותיהם (הם יישארו בתיקיות הנוכחיות שלהם ושמם המקורי יישאר - רק שמות התצוגה שלהם ישונו):" #: templates/admin/filer/folder/choose_rename_format.html:59 msgid "Rename" @@ -959,11 +944,13 @@ msgstr "מאופשר" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "" @@ -1025,10 +1012,12 @@ msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:15 #: templates/admin/filer/folder/directory_thumbnail_list.html:80 +#| msgid "Select this file" msgid "Select all" msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:77 +#| msgid "Filer" msgid "Files" msgstr "" @@ -1096,6 +1085,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1151,6 +1141,7 @@ msgid "Choose File" msgstr "" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1176,6 +1167,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/hr/LC_MESSAGES/django.mo b/filer/locale/hr/LC_MESSAGES/django.mo index 3c9724799..317a07726 100644 Binary files a/filer/locale/hr/LC_MESSAGES/django.mo and b/filer/locale/hr/LC_MESSAGES/django.mo differ diff --git a/filer/locale/hr/LC_MESSAGES/django.po b/filer/locale/hr/LC_MESSAGES/django.po index e9804dd94..dd0bc2692 100644 --- a/filer/locale/hr/LC_MESSAGES/django.po +++ b/filer/locale/hr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Translators: @@ -11,19 +11,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Aleks Acimovic, 2022\n" -"Language-Team: Croatian (http://app.transifex.com/divio/django-filer/" -"language/hr/)\n" -"Language: hr\n" +"Language-Team: Croatian (http://app.transifex.com/divio/django-filer/language/hr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -32,26 +32,25 @@ msgid "Can't find folder to upload. Please refresh and try again" msgstr "" #: admin/clipboardadmin.py:19 -msgid "Can't use this folder, Permission Denied. Please select another folder." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "Napredno" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." -msgstr "" -"Stavke moraju biti odabrane kako bi se obavila akcija. Nijedna stavka nije " -"promijenjena." +msgstr "Stavke moraju biti odabrane kako bi se obavila akcija. Nijedna stavka nije promijenjena." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" @@ -59,180 +58,170 @@ msgstr[0] "%(total_count)s odabrana" msgstr[1] "%(total_count)s odabrano" msgstr[2] "Svih %(total_count)s odabrano" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "Popis direktorija za %(folder_name)s" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "0 od %(cnt)s odabrano" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "Nije izabrana akcija." -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "Uspješno premješteno %(count)d datoteka u spremnik." -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "Premjesti odabrane datoteke u spremnik" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "Uspješno onemogućene ovlasti za %(count)d datoteka." -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "Uspješno omogućene ovlasti za %(count)d datoteka." -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "Omogući ovlasti za odabrane datoteke" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "Onemogući ovlasti za odabrane datoteke" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "Uspješno obrisano %(count)d datoteka i/ili direktorija." -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "Nije moguće obrisati datoteke i/ili direktorije" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "Jeste li sigurni?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "Obriši datoteke i/ili direktorije" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "Obriši odabrane datoteke i/ili direktorije" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"Uspješno premješteno %(count)d datoteka i/ili direktorija u direktorij " -"'%(destination)s'." +msgstr "Uspješno premješteno %(count)d datoteka i/ili direktorija u direktorij '%(destination)s'." -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "Premjesti datoteke i/ili direktorije" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "Premjesti odabrane datoteke i/ili direktorije" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "Uspješno preimenovano %(count)d datoteka." -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "Preimenuj datoteke" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"Uspješno kopirano %(count)d datoteka i/ili direktorija u direktorij " -"'%(destination)s'." +msgstr "Uspješno kopirano %(count)d datoteka i/ili direktorija u direktorij '%(destination)s'." -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "Kopiraj datoteke i/ili direktorije" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "Kopiraj odabrane datoteke i/ili direktorije" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "Uspješno promijenjena veličina za %(count)d slika." -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "Promijeni veličinu slika" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "Promijeni veličinu odabranih slika" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "Sufiks koji će biti dodan imenima kopiranih datoteka." -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." -msgstr "" -"Sufiks treba biti jednostavan i upisan malim slovima poput \"%(valid)s\"." +msgstr "Sufiks treba biti jednostavan i upisan malim slovima poput \"%(valid)s\"." -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "Nepoznata vrijednost formata ključa za preimenovanje \"%(key)s\"." -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "Neispravan format za premenovanje: %(error)s." -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "opcija sličica" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "širina" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "visina" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "obreži" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "povećaj veličinu" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." -msgstr "" -"Opcija sličica ili parametri za promjenu veličine moraju biti izabrani." - -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "Parametri za promjenu veličine moraju biti izabrani." +msgstr "Opcija sličica ili parametri za promjenu veličine moraju biti izabrani." #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" @@ -472,6 +461,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -490,6 +480,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -502,6 +493,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -556,6 +548,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -623,25 +616,19 @@ msgid "" "Deleting the selected files and/or folders would result in deleting related " "objects, but your account doesn't have permission to delete the following " "types of objects:" -msgstr "" -"Brisanje odabranih objekata bi rezultiralo brisanjem povezanih objekata, ali " -"Vaš korisnički račun nema ovlasti za brisanje slijedećih tipova objekata:" +msgstr "Brisanje odabranih objekata bi rezultiralo brisanjem povezanih objekata, ali Vaš korisnički račun nema ovlasti za brisanje slijedećih tipova objekata:" #: templates/admin/filer/delete_selected_files_confirmation.html:19 msgid "" "Deleting the selected files and/or folders would require deleting the " "following protected related objects:" -msgstr "" -"Brisanje odabranih datoteka i/ili direktorija bi zahtijevalo brisanje " -"slijedećih zaštičenih povezanih objekata:" +msgstr "Brisanje odabranih datoteka i/ili direktorija bi zahtijevalo brisanje slijedećih zaštičenih povezanih objekata:" #: templates/admin/filer/delete_selected_files_confirmation.html:27 msgid "" "Are you sure you want to delete the selected files and/or folders? All of " "the following objects and their related items will be deleted:" -msgstr "" -"Jeste li sigurni kako želite obrisati odabrane datoteke i/ili direktorije? " -"Svi navedeni objekti i s njima povezane stavke biti će obrisani:" +msgstr "Jeste li sigurni kako želite obrisati odabrane datoteke i/ili direktorije? Svi navedeni objekti i s njima povezane stavke biti će obrisani:" #: templates/admin/filer/delete_selected_files_confirmation.html:46 #: templates/admin/filer/folder/choose_copy_destination.html:64 @@ -690,11 +677,9 @@ msgstr "Ikona direktorija" #: templates/admin/filer/folder/choose_copy_destination.html:23 msgid "" -"Your account doesn't have permissions to copy all of the selected files and/" -"or folders." -msgstr "" -"Vaš korisnički račun nema ovlasti za kopiranje odabranih datoteka i/ili " -"direktorija." +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." +msgstr "Vaš korisnički račun nema ovlasti za kopiranje odabranih datoteka i/ili direktorija." #: templates/admin/filer/folder/choose_copy_destination.html:25 #: templates/admin/filer/folder/choose_copy_destination.html:31 @@ -718,9 +703,7 @@ msgstr "Nema dostupnih datoteka i/ili direktorija za kopiranje." msgid "" "The following files and/or folders will be copied to a destination folder " "(retaining their tree structure):" -msgstr "" -"Slijedeće datoteke i/ili direktoriji biti će kopirani u odredišni direktorij " -"(zadržavajući postojeću strukturu):" +msgstr "Slijedeće datoteke i/ili direktoriji biti će kopirani u odredišni direktorij (zadržavajući postojeću strukturu):" #: templates/admin/filer/folder/choose_copy_destination.html:54 #: templates/admin/filer/folder/choose_move_destination.html:64 @@ -740,8 +723,7 @@ msgstr "" #: templates/admin/filer/folder/choose_images_resize_options.html:15 msgid "" "Your account doesn't have permissions to resize all of the selected images." -msgstr "" -"Vaš korisnički račun nema ovlasti za promjenu veličina odabranih slika." +msgstr "Vaš korisnički račun nema ovlasti za promjenu veličina odabranih slika." #: templates/admin/filer/folder/choose_images_resize_options.html:18 msgid "There are no images available to resize." @@ -751,36 +733,25 @@ msgstr "Nema dostupnih slika kojima bi se promijenila veličina." msgid "The following images will be resized:" msgstr "Slijedećim slikama biti će promijenjena veličina:" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" -msgstr "" -"Izaberite postojeću opciju sličica ili unesite parametre za promjenu " -"veličine:" - -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "Odaberite parametre za promjenu veličine:" +msgstr "Izaberite postojeću opciju sličica ili unesite parametre za promjenu veličine:" -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." -msgstr "" -"Pažnja: Slikama će biti promijenjena veličina, a originali će biti prepisani " -"sa slikama s novom veličinom. Preporuča se prvo kopirati originalne slike " -"prije promjene veličine." +msgstr "Pažnja: Slikama će biti promijenjena veličina, a originali će biti prepisani sa slikama s novom veličinom. Preporuča se prvo kopirati originalne slike prije promjene veličine." -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "Promjeni veličinu" #: templates/admin/filer/folder/choose_move_destination.html:35 msgid "" -"Your account doesn't have permissions to move all of the selected files and/" -"or folders." -msgstr "" -"Vaš korisnički račun nema ovlasti za premještaj svih odabranih datoteka i/" -"ili direktorija." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." +msgstr "Vaš korisnički račun nema ovlasti za premještaj svih odabranih datoteka i/ili direktorija." #: templates/admin/filer/folder/choose_move_destination.html:47 msgid "There are no files and/or folders available to move." @@ -790,9 +761,7 @@ msgstr "Nema dostupnih datoteka i/ili direktorija za premještaj." msgid "" "The following files and/or folders will be moved to a destination folder " "(retaining their tree structure):" -msgstr "" -"Slijedeće datoteke i/ili direktoriji biti će premješteni u odredišni " -"direktorij (zadržavajući postojeću strukturu):" +msgstr "Slijedeće datoteke i/ili direktoriji biti će premješteni u odredišni direktorij (zadržavajući postojeću strukturu):" #: templates/admin/filer/folder/choose_move_destination.html:73 #: templates/admin/filer/folder/choose_move_destination.html:76 @@ -807,8 +776,7 @@ msgstr "" #: templates/admin/filer/folder/choose_rename_format.html:15 msgid "" "Your account doesn't have permissions to rename all of the selected files." -msgstr "" -"Vaš korisnički račun nema ovlasti za preimenovanje svih odabranih datoteka." +msgstr "Vaš korisnički račun nema ovlasti za preimenovanje svih odabranih datoteka." #: templates/admin/filer/folder/choose_rename_format.html:18 msgid "There are no files available to rename." @@ -818,9 +786,7 @@ msgstr "Nema dostupnih datoteka i/ili direktorija za preimenovanje." msgid "" "The following files will be renamed (they will stay in their folders and " "keep original filename, only displayed filename will be changed):" -msgstr "" -"Slijedeće datoteke če biti preimenovane (ostati će u svojim direktorijima i " -"zadržati ime datoteke, samo će prikazano ime biti promijenjeno):" +msgstr "Slijedeće datoteke če biti preimenovane (ostati će u svojim direktorijima i zadržati ime datoteke, samo će prikazano ime biti promijenjeno):" #: templates/admin/filer/folder/choose_rename_format.html:59 msgid "Rename" @@ -977,11 +943,13 @@ msgstr "omogućeno" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "" @@ -1043,10 +1011,12 @@ msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:15 #: templates/admin/filer/folder/directory_thumbnail_list.html:80 +#| msgid "Select this file" msgid "Select all" msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:77 +#| msgid "Filer" msgid "Files" msgstr "" @@ -1113,6 +1083,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1168,6 +1139,7 @@ msgid "Choose File" msgstr "" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1193,6 +1165,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/hu/LC_MESSAGES/django.mo b/filer/locale/hu/LC_MESSAGES/django.mo index 6dca5114d..2fc4ccde7 100644 Binary files a/filer/locale/hu/LC_MESSAGES/django.mo and b/filer/locale/hu/LC_MESSAGES/django.mo differ diff --git a/filer/locale/hu/LC_MESSAGES/django.po b/filer/locale/hu/LC_MESSAGES/django.po index 5a644653b..7e945c41c 100644 --- a/filer/locale/hu/LC_MESSAGES/django.po +++ b/filer/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Translators: @@ -10,18 +10,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Istvan Farkas , 2016-2017\n" -"Language-Team: Hungarian (http://app.transifex.com/divio/django-filer/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://app.transifex.com/divio/django-filer/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -30,207 +31,195 @@ msgid "Can't find folder to upload. Please refresh and try again" msgstr "" #: admin/clipboardadmin.py:19 -msgid "Can't use this folder, Permission Denied. Please select another folder." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "Haladó" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "egyedi URL" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." -msgstr "" -"Az akciók végrehajtásához egy vagy több elemet ki kell választani. Egyetlen " -"elem sem változott." +msgstr "Az akciók végrehajtásához egy vagy több elemet ki kell választani. Egyetlen elem sem változott." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" msgstr[0] "%(total_count)s kiválasztva" msgstr[1] "Mind (%(total_count)s) kiválasztva" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "0 kiválasztva a %(cnt)s elemből" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "Nincs akció megadva" -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "%(count)d fájl a vágólapra mozgatva." -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "Kiválasztott fájlok vágólapra mozgatása" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "%(count)d fájl jogosultságai kikapcsolva." -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "%(count)d fájl jogosultságai bekapcsolva." -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "Jogosultságok bekapcsolása a kiválasztott fájlokhoz" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "Jogosultságok kikapcsolása a kiválasztott fájlokhoz" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "%(count)d fájl és/vagy mappa sikeresen törölve." -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "Nem lehet a mappákat és/vagy fájlokat törölni" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "Biztos benne?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "Fájlok és/vagy mappák törlése" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "Kiválasztott fájlok és/vagy mappák törlése" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "A kiválasztott helyen már létezik %s nevű mappa" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"%(count)d fájl és/vagy mappa sikeresen átmozgatva ebbe a mappába: " -"%(destination)s" +msgstr "%(count)d fájl és/vagy mappa sikeresen átmozgatva ebbe a mappába: %(destination)s" -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "Fájlok és/vagy mappák mozgatása" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "Kiválasztott fájlok és/vagy mappák mozgatása" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "%(count)d fájl sikeresen átnevezve." -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "Fájlok átnevezése" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"%(count)d fájl és/vagy mappa sikeresen átmásolva ebbe a mappába: " -"%(destination)s" +msgstr "%(count)d fájl és/vagy mappa sikeresen átmásolva ebbe a mappába: %(destination)s" -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "Fájlok és/vagy mappák másolása" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "Kiválasztott fájlok és/vagy mappák másolása" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "%(count)d kép sikeresen átméretezve." -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "Képek átméretezése" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "Kiválasztott képek átméretezése" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "Utótag, amely a másolt fájlok nevéhez lesz hozzáadva." -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." -msgstr "" -"Az utótag lehetőleg egyszerű, kisbetűs fájlnév részlet legyen, például " -"\"%(valid)s\"." +msgstr "Az utótag lehetőleg egyszerű, kisbetűs fájlnév részlet legyen, például \"%(valid)s\"." -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "Ismeretlen átnevezés formázási szó: \"%(key)s\" " -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "Érvénytelen átnevezési formátum: %(error)s." -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "előnézeti kép beállítás" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "szélesség" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "magasság" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "vágás" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "felméretezés" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." -msgstr "" -"Előnézeti kép beállítást vagy átméretezési paramétert kötelező kiválasztani." - -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "Átméretezési paramétert kötelező kiválasztani." +msgstr "Előnézeti kép beállítást vagy átméretezési paramétert kötelező kiválasztani." #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" @@ -377,9 +366,7 @@ msgstr "Jogosultságok kikapcsolva" msgid "" "Disable any permission checking for this file. File will be publicly " "accessible to anyone." -msgstr "" -"Jogosultságok ellenőrzésének kikapcsolása ennél a fájlnál. Ezt a fájlt bárki " -"letöltheti." +msgstr "Jogosultságok ellenőrzésének kikapcsolása ennél a fájlnál. Ezt a fájlt bárki letöltheti." #: models/foldermodels.py:94 msgid "parent" @@ -472,6 +459,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -490,6 +478,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -502,6 +491,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -556,6 +546,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -623,26 +614,19 @@ msgid "" "Deleting the selected files and/or folders would result in deleting related " "objects, but your account doesn't have permission to delete the following " "types of objects:" -msgstr "" -"A kiválasztott fájlok és mappák törlése csatlakozó elemek törlésével is " -"járna, viszont a jelenlegi fiók nem rendelkezik a megfelelő jogosultságokkal " -"a következő objektum típusok törléséhez:" +msgstr "A kiválasztott fájlok és mappák törlése csatlakozó elemek törlésével is járna, viszont a jelenlegi fiók nem rendelkezik a megfelelő jogosultságokkal a következő objektum típusok törléséhez:" #: templates/admin/filer/delete_selected_files_confirmation.html:19 msgid "" "Deleting the selected files and/or folders would require deleting the " "following protected related objects:" -msgstr "" -"A kiválasztott fájlok és mappák törlése azzal járna, hogy a következő " -"kapcsolt elemek is törlődnek:" +msgstr "A kiválasztott fájlok és mappák törlése azzal járna, hogy a következő kapcsolt elemek is törlődnek:" #: templates/admin/filer/delete_selected_files_confirmation.html:27 msgid "" "Are you sure you want to delete the selected files and/or folders? All of " "the following objects and their related items will be deleted:" -msgstr "" -"Biztosan törli a kiválasztott fájlokat és/vagy mappákat? A következő " -"objektumok, és a hozzájuk kapcsolt elemek is törlődni fognak:" +msgstr "Biztosan törli a kiválasztott fájlokat és/vagy mappákat? A következő objektumok, és a hozzájuk kapcsolt elemek is törlődni fognak:" #: templates/admin/filer/delete_selected_files_confirmation.html:46 #: templates/admin/filer/folder/choose_copy_destination.html:64 @@ -691,10 +675,9 @@ msgstr "Mappa Ikon" #: templates/admin/filer/folder/choose_copy_destination.html:23 msgid "" -"Your account doesn't have permissions to copy all of the selected files and/" -"or folders." -msgstr "" -"Nincs jogosultsága az összes kiválasztott fájl és/vagy mappa másolásához." +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." +msgstr "Nincs jogosultsága az összes kiválasztott fájl és/vagy mappa másolásához." #: templates/admin/filer/folder/choose_copy_destination.html:25 #: templates/admin/filer/folder/choose_copy_destination.html:31 @@ -718,9 +701,7 @@ msgstr "Nincsenek másolható fájlok és/vagy könyvtárak" msgid "" "The following files and/or folders will be copied to a destination folder " "(retaining their tree structure):" -msgstr "" -"A következő fájlok és/vagy mappák lesznek a célkönyvtárba másolva (megtartva " -"a szerkezetüket):" +msgstr "A következő fájlok és/vagy mappák lesznek a célkönyvtárba másolva (megtartva a szerkezetüket):" #: templates/admin/filer/folder/choose_copy_destination.html:54 #: templates/admin/filer/folder/choose_move_destination.html:64 @@ -750,34 +731,25 @@ msgstr "Nincsenek átméretezhető képek." msgid "The following images will be resized:" msgstr "A következő képek lesznek átméretezve:" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" -msgstr "" -"Válasszon ki egy meglévő előnézeti kép beállítást, vagy írja be az " -"átméretezési paramétereket:" - -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "Válasszon átméretezési paramétereket:" +msgstr "Válasszon ki egy meglévő előnézeti kép beállítást, vagy írja be az átméretezési paramétereket:" -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." -msgstr "" -"Figyelem: a képek helyben lesznek átméretezve, felülírva az eredetieket. Ha " -"meg szeretné őrizni az eredeti képeket, előbb másolja át őket." +msgstr "Figyelem: a képek helyben lesznek átméretezve, felülírva az eredetieket. Ha meg szeretné őrizni az eredeti képeket, előbb másolja át őket." -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "Átméretezés" #: templates/admin/filer/folder/choose_move_destination.html:35 msgid "" -"Your account doesn't have permissions to move all of the selected files and/" -"or folders." -msgstr "" -"Nincs jogosultsága az összes kiválasztott fájl és/vagy mappa mozgatásához." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." +msgstr "Nincs jogosultsága az összes kiválasztott fájl és/vagy mappa mozgatásához." #: templates/admin/filer/folder/choose_move_destination.html:47 msgid "There are no files and/or folders available to move." @@ -787,9 +759,7 @@ msgstr "Nincsenek mozgatható fájlok és/vagy mappák." msgid "" "The following files and/or folders will be moved to a destination folder " "(retaining their tree structure):" -msgstr "" -"A következő fájlok és/vagy mappák lesznek átmozgatva a cél mappába " -"(megtartva a szerkezetüket):" +msgstr "A következő fájlok és/vagy mappák lesznek átmozgatva a cél mappába (megtartva a szerkezetüket):" #: templates/admin/filer/folder/choose_move_destination.html:73 #: templates/admin/filer/folder/choose_move_destination.html:76 @@ -814,9 +784,7 @@ msgstr "Nincsenek átnevezhető fájlok." msgid "" "The following files will be renamed (they will stay in their folders and " "keep original filename, only displayed filename will be changed):" -msgstr "" -"A következő fájlok lesznek átnevezve (a mappában maradnak, és az eredeti " -"fájlnév megmarad, csak a megjelenített név változik):" +msgstr "A következő fájlok lesznek átnevezve (a mappában maradnak, és az eredeti fájlnév megmarad, csak a megjelenített név változik):" #: templates/admin/filer/folder/choose_rename_format.html:59 msgid "Rename" @@ -971,11 +939,13 @@ msgstr "engedélyezve" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "'%(item_label)s' letöltése" @@ -986,8 +956,7 @@ msgstr "Fájl eltávolítása" #: templates/admin/filer/folder/directory_table_list.html:160 #: templates/admin/filer/folder/directory_thumbnail_list.html:138 msgid "Drop files here or use the \"Upload Files\" button" -msgstr "" -"Egérrel dobjon ide fájlokat, vagy használja a \"Fájlok feltöltése\" gombot" +msgstr "Egérrel dobjon ide fájlokat, vagy használja a \"Fájlok feltöltése\" gombot" #: templates/admin/filer/folder/directory_table_list.html:175 #: templates/admin/filer/folder/directory_thumbnail_list.html:153 @@ -1038,10 +1007,12 @@ msgstr "Összes (%(total_count)s) kiválasztása" #: templates/admin/filer/folder/directory_thumbnail_list.html:15 #: templates/admin/filer/folder/directory_thumbnail_list.html:80 +#| msgid "Select this file" msgid "Select all" msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:77 +#| msgid "Filer" msgid "Files" msgstr "" @@ -1107,6 +1078,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1162,6 +1134,7 @@ msgid "Choose File" msgstr "Fájl kiválasztása" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1187,6 +1160,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/it/LC_MESSAGES/django.mo b/filer/locale/it/LC_MESSAGES/django.mo index 4030926dd..355fda5d4 100644 Binary files a/filer/locale/it/LC_MESSAGES/django.mo and b/filer/locale/it/LC_MESSAGES/django.mo differ diff --git a/filer/locale/it/LC_MESSAGES/django.po b/filer/locale/it/LC_MESSAGES/django.po index 464b71cf2..5dbf26ba5 100644 --- a/filer/locale/it/LC_MESSAGES/django.po +++ b/filer/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Translators: @@ -13,19 +13,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: yakky , 2013,2015-2018\n" -"Language-Team: Italian (http://app.transifex.com/divio/django-filer/language/" -"it/)\n" -"Language: it\n" +"Language-Team: Italian (http://app.transifex.com/divio/django-filer/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? " -"1 : 2;\n" +"Language: it\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -34,26 +34,25 @@ msgid "Can't find folder to upload. Please refresh and try again" msgstr "" #: admin/clipboardadmin.py:19 -msgid "Can't use this folder, Permission Denied. Please select another folder." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "Avanzato" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "URL standard" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." -msgstr "" -"Gli elementi devono essere selezionati in modo da eseguire azioni su di " -"essi. Nessun elemento è stato modificato." +msgstr "Gli elementi devono essere selezionati in modo da eseguire azioni su di essi. Nessun elemento è stato modificato." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" @@ -61,182 +60,170 @@ msgstr[0] " %(total_count)s elemento selezionato" msgstr[1] "Tutti e %(total_count)s selezionati" msgstr[2] "Tutti e %(total_count)s selezionati" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "%(folder_name)sLista file per " -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "0 su %(cnt)s selezionati" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "Nessuna azione selezionata." -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "%(count)d file spostati con successo negli appunti." -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "Sposta i file selezionati negli Appunti" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "Permessi per %(count)d file disabilitati con successo." -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "Permessi per %(count)d file abilitati con successo." -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "Attiva i permessi per i file selezionati" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "Disabilita i permessi per i file selezionati" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "%(count)d file e/o cartelle cancellati con successo." -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "Non è possibile cancellare i file e/o le cartelle" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "Sei sicuro?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "Elimina i file e/o le cartelle" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "Elimina i file e/o le cartelle selezionati" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "Esistono altre cartelle chiamate %s nella destinazione selezionata" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"%(count)d file e/o le cartelle spostati con successo nella cartella " -"'%(destination)s'." +msgstr "%(count)d file e/o le cartelle spostati con successo nella cartella '%(destination)s'." -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "Sposta i file e/o le cartelle" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "Sposta i file e/o le cartelle selezionati" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "%(count)d file rinominati con successo." -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "Rinomina file" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"%(count)d file e/o cartelle copiati con successo nella cartella " -"'%(destination)s '." +msgstr "%(count)d file e/o cartelle copiati con successo nella cartella '%(destination)s '." -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "Copia i file e/o le cartelle" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "Copia i file e/o le cartelle selezionati" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "%(count)d immagini ridimensionate con successo." -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "Ridimensiona le immagini" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "Ridimensiona le immagini selezionate" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "Suffisso che sarà aggiunto al nome dei file copiati." -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." -msgstr "" -"Il suffisso deve essere una sezione del nome del file valida, semplice e " -"minuscola, come \"%(valid)s\"." +msgstr "Il suffisso deve essere una sezione del nome del file valida, semplice e minuscola, come \"%(valid)s\"." -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "Valore del formato di rinomina non valido \"%(key)s\"." -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "Formato di rinomina non valido: %(error)s." -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "opzione anteprima immagine" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "larghezza" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "altezza" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "ritaglia" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "ingrandisci" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." -msgstr "" -"Devi selezionare l'opzione anteprima immagine o i parametri di " -"ridimensionamento." - -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "Seleziona le opzioni di ridimensionamento." +msgstr "Devi selezionare l'opzione anteprima immagine o i parametri di ridimensionamento." #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" @@ -383,9 +370,7 @@ msgstr "Permessi disabilitati" msgid "" "Disable any permission checking for this file. File will be publicly " "accessible to anyone." -msgstr "" -"Disabilita ogni controllo dei permessi per questo file. Il file sarà " -"accessibile da chiunque" +msgstr "Disabilita ogni controllo dei permessi per questo file. Il file sarà accessibile da chiunque" #: models/foldermodels.py:94 msgid "parent" @@ -478,6 +463,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -496,6 +482,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -508,6 +495,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -562,6 +550,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -629,26 +618,19 @@ msgid "" "Deleting the selected files and/or folders would result in deleting related " "objects, but your account doesn't have permission to delete the following " "types of objects:" -msgstr "" -"Cancellare i file selezionati e/o cartelle comporta l'eliminazione degli " -"oggetti correlati, ma il tuo account non dispone dell'autorizzazione per " -"eliminare i seguenti tipi di oggetti:" +msgstr "Cancellare i file selezionati e/o cartelle comporta l'eliminazione degli oggetti correlati, ma il tuo account non dispone dell'autorizzazione per eliminare i seguenti tipi di oggetti:" #: templates/admin/filer/delete_selected_files_confirmation.html:19 msgid "" "Deleting the selected files and/or folders would require deleting the " "following protected related objects:" -msgstr "" -"Cancellare i file selezionati e/o cartelle richiede eliminazione dei " -"seguenti oggetti protetti correlati:" +msgstr "Cancellare i file selezionati e/o cartelle richiede eliminazione dei seguenti oggetti protetti correlati:" #: templates/admin/filer/delete_selected_files_confirmation.html:27 msgid "" "Are you sure you want to delete the selected files and/or folders? All of " "the following objects and their related items will be deleted:" -msgstr "" -"Sei sicuro di voler cancellare i file selezionati e/o le cartelle? Tutti gli " -"oggetti seguenti e quelli correlati verranno cancellati:" +msgstr "Sei sicuro di voler cancellare i file selezionati e/o le cartelle? Tutti gli oggetti seguenti e quelli correlati verranno cancellati:" #: templates/admin/filer/delete_selected_files_confirmation.html:46 #: templates/admin/filer/folder/choose_copy_destination.html:64 @@ -697,11 +679,9 @@ msgstr "Icona della cartella" #: templates/admin/filer/folder/choose_copy_destination.html:23 msgid "" -"Your account doesn't have permissions to copy all of the selected files and/" -"or folders." -msgstr "" -"Il tuo account non dispone delle autorizzazioni per copiare tutti i file e/o " -"cartelle selezionati." +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." +msgstr "Il tuo account non dispone delle autorizzazioni per copiare tutti i file e/o cartelle selezionati." #: templates/admin/filer/folder/choose_copy_destination.html:25 #: templates/admin/filer/folder/choose_copy_destination.html:31 @@ -725,9 +705,7 @@ msgstr "Non ci sono file e/o le cartelle disponibili per la copia." msgid "" "The following files and/or folders will be copied to a destination folder " "(retaining their tree structure):" -msgstr "" -"I seguenti file e/o cartelle verranno copiati in una cartella di " -"destinazione (mantenendo la loro struttura ad albero):" +msgstr "I seguenti file e/o cartelle verranno copiati in una cartella di destinazione (mantenendo la loro struttura ad albero):" #: templates/admin/filer/folder/choose_copy_destination.html:54 #: templates/admin/filer/folder/choose_move_destination.html:64 @@ -747,9 +725,7 @@ msgstr "Non è autorizzato a copiare file nella stessa cartella" #: templates/admin/filer/folder/choose_images_resize_options.html:15 msgid "" "Your account doesn't have permissions to resize all of the selected images." -msgstr "" -"Il tuo account non dispone delle autorizzazioni per ridimensionare tutte le " -"immagini selezionate." +msgstr "Il tuo account non dispone delle autorizzazioni per ridimensionare tutte le immagini selezionate." #: templates/admin/filer/folder/choose_images_resize_options.html:18 msgid "There are no images available to resize." @@ -759,35 +735,25 @@ msgstr "Non ci sono immagini disponibili da ridimensionare." msgid "The following images will be resized:" msgstr "Le seguenti immagini verranno ridimensionate:" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" -msgstr "" -"Scegli un'opzione miniatura esistente o immetti i parametri di " -"ridimensionamento:" - -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "Scegli i parametri di ridimensionamento:" +msgstr "Scegli un'opzione miniatura esistente o immetti i parametri di ridimensionamento:" -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." -msgstr "" -"Attenzione: Le immagini verranno ridimensionate ora e le immagini originali " -"andranno perse. Forse è meglio fare una copia per mantenere i file originali." +msgstr "Attenzione: Le immagini verranno ridimensionate ora e le immagini originali andranno perse. Forse è meglio fare una copia per mantenere i file originali." -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "Ridimensiona" #: templates/admin/filer/folder/choose_move_destination.html:35 msgid "" -"Your account doesn't have permissions to move all of the selected files and/" -"or folders." -msgstr "" -"Il tuo account non dispone delle autorizzazioni per spostare tutti i file e/" -"o cartelle selezionati." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." +msgstr "Il tuo account non dispone delle autorizzazioni per spostare tutti i file e/o cartelle selezionati." #: templates/admin/filer/folder/choose_move_destination.html:47 msgid "There are no files and/or folders available to move." @@ -797,9 +763,7 @@ msgstr "Non ci sono file e/o cartelle a disponibili per lo spostamento." msgid "" "The following files and/or folders will be moved to a destination folder " "(retaining their tree structure):" -msgstr "" -"I seguenti file e/o cartelle verranno spostati in una cartella di " -"destinazione (mantenendo la loro struttura ad albero):" +msgstr "I seguenti file e/o cartelle verranno spostati in una cartella di destinazione (mantenendo la loro struttura ad albero):" #: templates/admin/filer/folder/choose_move_destination.html:73 #: templates/admin/filer/folder/choose_move_destination.html:76 @@ -814,9 +778,7 @@ msgstr "Non è autorizzato a spostare file nella stessa cartella" #: templates/admin/filer/folder/choose_rename_format.html:15 msgid "" "Your account doesn't have permissions to rename all of the selected files." -msgstr "" -"Il tuo account non dispone delle autorizzazioni per rinominare tutti i file " -"selezionati." +msgstr "Il tuo account non dispone delle autorizzazioni per rinominare tutti i file selezionati." #: templates/admin/filer/folder/choose_rename_format.html:18 msgid "There are no files available to rename." @@ -826,10 +788,7 @@ msgstr "Non ci sono file disponibili da rinominare." msgid "" "The following files will be renamed (they will stay in their folders and " "keep original filename, only displayed filename will be changed):" -msgstr "" -"I file seguenti saranno rinominati (rimarranno nelle rispettive cartelle e " -"manterranno il nome del file originario, solo il nome visualizzato sarà " -"modificato):" +msgstr "I file seguenti saranno rinominati (rimarranno nelle rispettive cartelle e manterranno il nome del file originario, solo il nome visualizzato sarà modificato):" #: templates/admin/filer/folder/choose_rename_format.html:59 msgid "Rename" @@ -986,11 +945,13 @@ msgstr "abilitato" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "URL canonico '%(item_label)s'" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "Download '%(item_label)s'" @@ -1052,10 +1013,12 @@ msgstr "Seleziona tutti %(total_count)s" #: templates/admin/filer/folder/directory_thumbnail_list.html:15 #: templates/admin/filer/folder/directory_thumbnail_list.html:80 +#| msgid "Select this file" msgid "Select all" msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:77 +#| msgid "Filer" msgid "Files" msgstr "" @@ -1122,6 +1085,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1177,6 +1141,7 @@ msgid "Choose File" msgstr "Seleziona file" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1202,6 +1167,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/ja/LC_MESSAGES/django.po b/filer/locale/ja/LC_MESSAGES/django.po index 84aff4ffe..b591575be 100644 --- a/filer/locale/ja/LC_MESSAGES/django.po +++ b/filer/locale/ja/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Translators: @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Angelo Dini \n" -"Language-Team: Japanese (http://app.transifex.com/divio/django-filer/" -"language/ja/)\n" -"Language: ja\n" +"Language-Team: Japanese (http://app.transifex.com/divio/django-filer/language/ja/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -29,198 +30,195 @@ msgid "Can't find folder to upload. Please refresh and try again" msgstr "" #: admin/clipboardadmin.py:19 -msgid "Can't use this folder, Permission Denied. Please select another folder." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." msgstr "" -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" msgstr[0] "" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "" -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "" -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "" -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "" -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "" -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "" -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." msgstr "" -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "" -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "" -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "" -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "" - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "" @@ -459,6 +457,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -477,6 +476,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -489,6 +489,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -543,6 +544,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -671,8 +673,8 @@ msgstr "" #: templates/admin/filer/folder/choose_copy_destination.html:23 msgid "" -"Your account doesn't have permissions to copy all of the selected files and/" -"or folders." +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." msgstr "" #: templates/admin/filer/folder/choose_copy_destination.html:25 @@ -727,28 +729,24 @@ msgstr "" msgid "The following images will be resized:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "" #: templates/admin/filer/folder/choose_move_destination.html:35 msgid "" -"Your account doesn't have permissions to move all of the selected files and/" -"or folders." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." msgstr "" #: templates/admin/filer/folder/choose_move_destination.html:47 @@ -937,11 +935,13 @@ msgstr "" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "" @@ -1003,10 +1003,12 @@ msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:15 #: templates/admin/filer/folder/directory_thumbnail_list.html:80 +#| msgid "Select this file" msgid "Select all" msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:77 +#| msgid "Filer" msgid "Files" msgstr "" @@ -1071,6 +1073,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1126,6 +1129,7 @@ msgid "Choose File" msgstr "" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1151,6 +1155,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/ja_JP/LC_MESSAGES/django.po b/filer/locale/ja_JP/LC_MESSAGES/django.po index 06e53afe6..1b843bfbd 100644 --- a/filer/locale/ja_JP/LC_MESSAGES/django.po +++ b/filer/locale/ja_JP/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Translators: @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Angelo Dini \n" -"Language-Team: Japanese (Japan) (http://app.transifex.com/divio/django-filer/" -"language/ja_JP/)\n" -"Language: ja_JP\n" +"Language-Team: Japanese (Japan) (http://app.transifex.com/divio/django-filer/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -29,198 +30,195 @@ msgid "Can't find folder to upload. Please refresh and try again" msgstr "" #: admin/clipboardadmin.py:19 -msgid "Can't use this folder, Permission Denied. Please select another folder." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." msgstr "" -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" msgstr[0] "" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "" -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "" -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "" -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "" -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "" -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "" -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." msgstr "" -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "" -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "" -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "" -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "" - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "" @@ -459,6 +457,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -477,6 +476,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -489,6 +489,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -543,6 +544,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -671,8 +673,8 @@ msgstr "" #: templates/admin/filer/folder/choose_copy_destination.html:23 msgid "" -"Your account doesn't have permissions to copy all of the selected files and/" -"or folders." +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." msgstr "" #: templates/admin/filer/folder/choose_copy_destination.html:25 @@ -727,28 +729,24 @@ msgstr "" msgid "The following images will be resized:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "" #: templates/admin/filer/folder/choose_move_destination.html:35 msgid "" -"Your account doesn't have permissions to move all of the selected files and/" -"or folders." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." msgstr "" #: templates/admin/filer/folder/choose_move_destination.html:47 @@ -937,11 +935,13 @@ msgstr "" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "" @@ -1003,10 +1003,12 @@ msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:15 #: templates/admin/filer/folder/directory_thumbnail_list.html:80 +#| msgid "Select this file" msgid "Select all" msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:77 +#| msgid "Filer" msgid "Files" msgstr "" @@ -1071,6 +1073,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1126,6 +1129,7 @@ msgid "Choose File" msgstr "" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1151,6 +1155,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/lt/LC_MESSAGES/django.mo b/filer/locale/lt/LC_MESSAGES/django.mo index 13b52080f..6eb04aa82 100644 Binary files a/filer/locale/lt/LC_MESSAGES/django.mo and b/filer/locale/lt/LC_MESSAGES/django.mo differ diff --git a/filer/locale/lt/LC_MESSAGES/django.po b/filer/locale/lt/LC_MESSAGES/django.po index a5063acb9..05a1008ec 100644 --- a/filer/locale/lt/LC_MESSAGES/django.po +++ b/filer/locale/lt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Translators: @@ -10,20 +10,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Matas Dailyda , 2015-2018\n" -"Language-Team: Lithuanian (http://app.transifex.com/divio/django-filer/" -"language/lt/)\n" -"Language: lt\n" +"Language-Team: Lithuanian (http://app.transifex.com/divio/django-filer/language/lt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < " -"11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? " -"1 : n % 1 != 0 ? 2: 3);\n" +"Language: lt\n" +"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -32,26 +31,25 @@ msgid "Can't find folder to upload. Please refresh and try again" msgstr "" #: admin/clipboardadmin.py:19 -msgid "Can't use this folder, Permission Denied. Please select another folder." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "Išplėstinės funkcijos" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "kanoninis URL" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." -msgstr "" -"Objektai turi būti pasirinkti, kad su jais būtų galima atlikti veiksmus. " -"Jokie objektai nebuvo pakeisti." +msgstr "Objektai turi būti pasirinkti, kad su jais būtų galima atlikti veiksmus. Jokie objektai nebuvo pakeisti." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" @@ -60,182 +58,170 @@ msgstr[1] "pasirinkta %(total_count)s" msgstr[2] "pasirinkta %(total_count)s" msgstr[3] "pasirinkta %(total_count)s" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "%(folder_name)svidinių aplankų sąrašas " -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "0 iš %(cnt)s pasirinkta" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "Nepasirinktas joks veiksmas." -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "Sėkmingai perkelta %(count)d failai į iškarpinę." -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "Perkelti pažymėtus failus į iškarpinę" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "Sėkmingai išjungti leidimai %(count)d failams." -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "Sėkmingai įjungti leidimai %(count)d failams." -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "Įjungti leidimus pasirinktiems failams" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "Išjungti leidimus pasirinktiems failams" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "Sėkmingai pašalino %(count)d failus ir / ar aplankus." -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "Negalima pašalinti failų ir / ar aplankų" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "Ar jūs esate tikri?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "Pašalinti failus ir / ar aplankus" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "Pašalinti pasirinktus failus ir / ar aplankus" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" -msgstr "" -"Aplankai su %s pavadinimais jau egzistuoja pasirinktoje paskirties vietoje." +msgstr "Aplankai su %s pavadinimais jau egzistuoja pasirinktoje paskirties vietoje." -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"Sėkmingai perkelti %(count)d failai ir / ar aplankai į aplanką " -"'%(destination)s'." +msgstr "Sėkmingai perkelti %(count)d failai ir / ar aplankai į aplanką '%(destination)s'." -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "Perkelti failus ir / ar aplankus" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "Perkelti pasirinktus failus ir / ar aplankus" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "Sėkmingai pervardinti %(count)d failai." -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "Pervardinti failus" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"Sėkmingai nukopijuoti %(count)d failai ir / ar aplankai į aplanką " -"'%(destination)s'." +msgstr "Sėkmingai nukopijuoti %(count)d failai ir / ar aplankai į aplanką '%(destination)s'." -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "Kopijuoti failus ir / ar aplankus" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "Kopijuoti pasirinktus failus ir / ar aplankus" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "Sėkmingai pakeistas %(count)d paveikslėlių dydis." -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "Pakeisti paveikslėlių dydžius" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "Pakeisti pasirinktų paveikslėlių dydžius" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "Priesaga kuri bus pridėta prie nukopijuotų failų pavadinimų." -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." -msgstr "" -"Priesaga turi būti paprasta ir taisyklinga bylos pavadinimo dalis pvz. " -"\"%(valid)s\"." +msgstr "Priesaga turi būti paprasta ir taisyklinga bylos pavadinimo dalis pvz. \"%(valid)s\"." -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "Nežinomas pervardinimo formato reikšmės raktažodis \"%(key)s\"." -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "Negalimas pervardinimo formatas: %(error)s." -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "miniatiūros nustatymas" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "plotis" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "aukštis" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "apkirpti" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "išdidinti" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." -msgstr "" -"Miniatiūros nustatymas arba dydžio keitimo parametrai turi būti pasirinkti." - -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "Turi būti pasirinkti dydžio keitimo parametrai." +msgstr "Miniatiūros nustatymas arba dydžio keitimo parametrai turi būti pasirinkti." #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" @@ -382,9 +368,7 @@ msgstr "Leidimai išjungti" msgid "" "Disable any permission checking for this file. File will be publicly " "accessible to anyone." -msgstr "" -"Įšjungti bet kokius leidimų tikrinimus šiai bylai. Byla bus viešai " -"pasiekiama bet kam." +msgstr "Įšjungti bet kokius leidimų tikrinimus šiai bylai. Byla bus viešai pasiekiama bet kam." #: models/foldermodels.py:94 msgid "parent" @@ -477,6 +461,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -495,6 +480,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -507,6 +493,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -561,6 +548,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -628,25 +616,19 @@ msgid "" "Deleting the selected files and/or folders would result in deleting related " "objects, but your account doesn't have permission to delete the following " "types of objects:" -msgstr "" -"Pasirintų failų ir / ar aplankų šalinimas pašalintų susijusius objektus, " -"tačiau jūsų vartotojas neturi leidimo šalinti šių objektų tipų:" +msgstr "Pasirintų failų ir / ar aplankų šalinimas pašalintų susijusius objektus, tačiau jūsų vartotojas neturi leidimo šalinti šių objektų tipų:" #: templates/admin/filer/delete_selected_files_confirmation.html:19 msgid "" "Deleting the selected files and/or folders would require deleting the " "following protected related objects:" -msgstr "" -"Pasirinktų failų ir / ar aplankų šalinimas reikalautų pašalinti šiuos " -"apsaugotus susijusius objektus:" +msgstr "Pasirinktų failų ir / ar aplankų šalinimas reikalautų pašalinti šiuos apsaugotus susijusius objektus:" #: templates/admin/filer/delete_selected_files_confirmation.html:27 msgid "" "Are you sure you want to delete the selected files and/or folders? All of " "the following objects and their related items will be deleted:" -msgstr "" -"Ar tikrai norite pašalinti pasirinktus failus ir / ar aplankus? Visi susiję " -"objektai bus pašalinti:" +msgstr "Ar tikrai norite pašalinti pasirinktus failus ir / ar aplankus? Visi susiję objektai bus pašalinti:" #: templates/admin/filer/delete_selected_files_confirmation.html:46 #: templates/admin/filer/folder/choose_copy_destination.html:64 @@ -695,11 +677,9 @@ msgstr "Aplanko piktograma" #: templates/admin/filer/folder/choose_copy_destination.html:23 msgid "" -"Your account doesn't have permissions to copy all of the selected files and/" -"or folders." -msgstr "" -"Jūsų vartotojas neturi leidimų kopijuoti visus pasirinktus failus ir / ar " -"aplankus." +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." +msgstr "Jūsų vartotojas neturi leidimų kopijuoti visus pasirinktus failus ir / ar aplankus." #: templates/admin/filer/folder/choose_copy_destination.html:25 #: templates/admin/filer/folder/choose_copy_destination.html:31 @@ -723,9 +703,7 @@ msgstr "Nėra jokiu failų ir / ar aplankų kopijavimui." msgid "" "The following files and/or folders will be copied to a destination folder " "(retaining their tree structure):" -msgstr "" -"Šie failai ir / ar aplankai bus nukopijuoti į paskirtą aplanką (išlaikant jų " -"medžio struktūrą):" +msgstr "Šie failai ir / ar aplankai bus nukopijuoti į paskirtą aplanką (išlaikant jų medžio struktūrą):" #: templates/admin/filer/folder/choose_copy_destination.html:54 #: templates/admin/filer/folder/choose_move_destination.html:64 @@ -745,9 +723,7 @@ msgstr "Neleidžiama kopijuoti bylų į tą patį aplanką" #: templates/admin/filer/folder/choose_images_resize_options.html:15 msgid "" "Your account doesn't have permissions to resize all of the selected images." -msgstr "" -"Jūsų vartotojas neturi leidimų keisti dydžius visiems pasirinktiems " -"paveikslėliams." +msgstr "Jūsų vartotojas neturi leidimų keisti dydžius visiems pasirinktiems paveikslėliams." #: templates/admin/filer/folder/choose_images_resize_options.html:18 msgid "There are no images available to resize." @@ -757,35 +733,25 @@ msgstr "Nėra jokiu paveikslėlių dydžio keitimui." msgid "The following images will be resized:" msgstr "Šių paveikslėlių dydis bus pakeistas:" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" -msgstr "" -"Pasirinkite esamą miniatiūros nustatymą, arba įveskite dydžio keitimo " -"parametrus:" +msgstr "Pasirinkite esamą miniatiūros nustatymą, arba įveskite dydžio keitimo parametrus:" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "Pasirinkite dydžio keitimo parametrus:" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." -msgstr "" -"Įspėjimas: Paveikslėlių dydžiai bus pakeisti vietoje, ir originalas bus " -"pašalintas. Patartina atsikopijuoti paveikslėlį, kad nedingtų originalas." +msgstr "Įspėjimas: Paveikslėlių dydžiai bus pakeisti vietoje, ir originalas bus pašalintas. Patartina atsikopijuoti paveikslėlį, kad nedingtų originalas." -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "Pakeisti dydį" #: templates/admin/filer/folder/choose_move_destination.html:35 msgid "" -"Your account doesn't have permissions to move all of the selected files and/" -"or folders." -msgstr "" -"Jūsų vartotojas neturi leidimų perkelti visus pasirinktus failus ir / ar " -"aplankus." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." +msgstr "Jūsų vartotojas neturi leidimų perkelti visus pasirinktus failus ir / ar aplankus." #: templates/admin/filer/folder/choose_move_destination.html:47 msgid "There are no files and/or folders available to move." @@ -795,9 +761,7 @@ msgstr "Nėra jokiu failų ir / ar aplankų perkelimui." msgid "" "The following files and/or folders will be moved to a destination folder " "(retaining their tree structure):" -msgstr "" -"Šie failai ir / ar aplankai bus perkelti į paskirtą aplanką (išlaikant jų " -"medžio struktūrą):" +msgstr "Šie failai ir / ar aplankai bus perkelti į paskirtą aplanką (išlaikant jų medžio struktūrą):" #: templates/admin/filer/folder/choose_move_destination.html:73 #: templates/admin/filer/folder/choose_move_destination.html:76 @@ -822,9 +786,7 @@ msgstr "Nėra jokių failų pervardinimui." msgid "" "The following files will be renamed (they will stay in their folders and " "keep original filename, only displayed filename will be changed):" -msgstr "" -"Šie failai bus pervardinti (jie liks savo aplankuose ir pasiliks savo " -"originalius pavadinimus, pasikeis tik atvaizduojamas failo pavadinimas):" +msgstr "Šie failai bus pervardinti (jie liks savo aplankuose ir pasiliks savo originalius pavadinimus, pasikeis tik atvaizduojamas failo pavadinimas):" #: templates/admin/filer/folder/choose_rename_format.html:59 msgid "Rename" @@ -983,11 +945,13 @@ msgstr "įjungta" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "Kanoninis url '%(item_label)s'" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "Parsisiųsti '%(item_label)s'" @@ -1049,10 +1013,12 @@ msgstr "Pasirinkti visus %(total_count)s" #: templates/admin/filer/folder/directory_thumbnail_list.html:15 #: templates/admin/filer/folder/directory_thumbnail_list.html:80 +#| msgid "Select this file" msgid "Select all" msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:77 +#| msgid "Filer" msgid "Files" msgstr "" @@ -1120,6 +1086,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1175,6 +1142,7 @@ msgid "Choose File" msgstr "Pasirinkti bylą" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1200,6 +1168,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/lt_LT/LC_MESSAGES/django.po b/filer/locale/lt_LT/LC_MESSAGES/django.po index d0fef1ec1..e7f2a6b9c 100644 --- a/filer/locale/lt_LT/LC_MESSAGES/django.po +++ b/filer/locale/lt_LT/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Translators: @@ -9,20 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Angelo Dini \n" -"Language-Team: Lithuanian (Lithuania) (http://app.transifex.com/divio/django-" -"filer/language/lt_LT/)\n" -"Language: lt_LT\n" +"Language-Team: Lithuanian (Lithuania) (http://app.transifex.com/divio/django-filer/language/lt_LT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < " -"11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? " -"1 : n % 1 != 0 ? 2: 3);\n" +"Language: lt_LT\n" +"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -31,24 +30,25 @@ msgid "Can't find folder to upload. Please refresh and try again" msgstr "" #: admin/clipboardadmin.py:19 -msgid "Can't use this folder, Permission Denied. Please select another folder." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." msgstr "" -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" @@ -57,175 +57,171 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "" -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "" -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "" -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "" -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "" -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "" -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." msgstr "" -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "" -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "" -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "" -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "" - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "" @@ -464,6 +460,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -482,6 +479,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -494,6 +492,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -548,6 +547,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -676,8 +676,8 @@ msgstr "" #: templates/admin/filer/folder/choose_copy_destination.html:23 msgid "" -"Your account doesn't have permissions to copy all of the selected files and/" -"or folders." +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." msgstr "" #: templates/admin/filer/folder/choose_copy_destination.html:25 @@ -732,28 +732,24 @@ msgstr "" msgid "The following images will be resized:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "" #: templates/admin/filer/folder/choose_move_destination.html:35 msgid "" -"Your account doesn't have permissions to move all of the selected files and/" -"or folders." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." msgstr "" #: templates/admin/filer/folder/choose_move_destination.html:47 @@ -948,11 +944,13 @@ msgstr "" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "" @@ -1014,10 +1012,12 @@ msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:15 #: templates/admin/filer/folder/directory_thumbnail_list.html:80 +#| msgid "Select this file" msgid "Select all" msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:77 +#| msgid "Filer" msgid "Files" msgstr "" @@ -1085,6 +1085,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1140,6 +1141,7 @@ msgid "Choose File" msgstr "" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1165,6 +1167,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/nb/LC_MESSAGES/django.mo b/filer/locale/nb/LC_MESSAGES/django.mo index 867da3970..a5bc3650f 100644 Binary files a/filer/locale/nb/LC_MESSAGES/django.mo and b/filer/locale/nb/LC_MESSAGES/django.mo differ diff --git a/filer/locale/nb/LC_MESSAGES/django.po b/filer/locale/nb/LC_MESSAGES/django.po index c6649f961..93eea7dcc 100644 --- a/filer/locale/nb/LC_MESSAGES/django.po +++ b/filer/locale/nb/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Translators: @@ -10,18 +10,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Eirik Krogstad , 2013\n" -"Language-Team: Norwegian Bokmål (http://app.transifex.com/divio/django-filer/" -"language/nb/)\n" -"Language: nb\n" +"Language-Team: Norwegian Bokmål (http://app.transifex.com/divio/django-filer/language/nb/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -30,205 +31,196 @@ msgid "Can't find folder to upload. Please refresh and try again" msgstr "" #: admin/clipboardadmin.py:19 -msgid "Can't use this folder, Permission Denied. Please select another folder." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "Avansert" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." -msgstr "" -"Du må velge noen elementer for å utføre handlinger på dem. Ingen elementer " -"er endret." +msgstr "Du må velge noen elementer for å utføre handlinger på dem. Ingen elementer er endret." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" msgstr[0] "%(total_count)s valgt" msgstr[1] "Alle %(total_count)s valgt" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "0 av %(cnt)s valgt" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "Ingen handling valgt." -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "Flyttet %(count)d filer til utklippstavlen." -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "Flytt valgte filer til utklippstavlen" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "Fjernet tillatelser for %(count)d filer." -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "Satte tillatelser for %(count)d filer." -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "Sett tillatelser for valgte filer" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "Fjern tillatelser for valgte filer" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "Slettet %(count)d filer og/eller mapper." -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "Kan ikke slette filer og/eller mapper" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "Er du sikker?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "Slett filer og/eller mapper" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "Slett valgte filer og/eller mapper" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"Flyttet %(count)d filer og/eller mapper til mappen \"%(destination)s\"." +msgstr "Flyttet %(count)d filer og/eller mapper til mappen \"%(destination)s\"." -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "Flytt filer og/eller mapper" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "Flytt valgte filer og/eller mapper" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "Endret navn på %(count)d filer." -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "Endre navn på filer" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"Kopierte %(count)d filer og/eller mapper til mappen \"%(destination)s\"." +msgstr "Kopierte %(count)d filer og/eller mapper til mappen \"%(destination)s\"." -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "Kopier filer og/eller mapper" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "Kopier valgte filer og/eller mapper" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "Endret størrelse på %(count)d bilder." -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "Endre størrelse på bilder" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "Endre størrelse på valgte bilder" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "Endelse som vil tilføyes filnavn på kopierte filer." -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." -msgstr "" -"Endelse bør være en gyldig, enkel del av filnavnet med små bokstaver, som " -"\"%(valid)s\"." +msgstr "Endelse bør være en gyldig, enkel del av filnavnet med små bokstaver, som \"%(valid)s\"." -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "Ugyldig nøkkel \"%(key)s\" for endring av navn." -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "Ugyldig format for endring av navn: %(error)s" -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "miniatyrbildevalg" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "bredde" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "høyde" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "beskjæring" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "oppskalering" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "Miniatyrbildevalg eller parametre for endring av størrelse må velges." -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "Parametre for endring av størrelse må velges." - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "Fokuseringsområde" @@ -467,6 +459,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -485,6 +478,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -497,6 +491,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -551,6 +546,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -618,26 +614,19 @@ msgid "" "Deleting the selected files and/or folders would result in deleting related " "objects, but your account doesn't have permission to delete the following " "types of objects:" -msgstr "" -"Å slette de valgte filene og/eller mappene ville resultere i sletting av " -"relaterte objekter, men din konto har ikke tillatelse til å slette objekter " -"av følgende typer:" +msgstr "Å slette de valgte filene og/eller mappene ville resultere i sletting av relaterte objekter, men din konto har ikke tillatelse til å slette objekter av følgende typer:" #: templates/admin/filer/delete_selected_files_confirmation.html:19 msgid "" "Deleting the selected files and/or folders would require deleting the " "following protected related objects:" -msgstr "" -"Å slette de valgte filene og/eller mappene ville kreve å slette følgende " -"beskyttede relaterte objekter:" +msgstr "Å slette de valgte filene og/eller mappene ville kreve å slette følgende beskyttede relaterte objekter:" #: templates/admin/filer/delete_selected_files_confirmation.html:27 msgid "" "Are you sure you want to delete the selected files and/or folders? All of " "the following objects and their related items will be deleted:" -msgstr "" -"Er du sikker på at du vil slette de valgte filene og/eller mappene? Alle de " -"følgende objektene og deres relaterte elementer vil bli slettet:" +msgstr "Er du sikker på at du vil slette de valgte filene og/eller mappene? Alle de følgende objektene og deres relaterte elementer vil bli slettet:" #: templates/admin/filer/delete_selected_files_confirmation.html:46 #: templates/admin/filer/folder/choose_copy_destination.html:64 @@ -686,11 +675,9 @@ msgstr "Mappeikon" #: templates/admin/filer/folder/choose_copy_destination.html:23 msgid "" -"Your account doesn't have permissions to copy all of the selected files and/" -"or folders." -msgstr "" -"Din konto har ikke tillatelse til å kopiere alle de valgte filene og/eller " -"mappene." +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." +msgstr "Din konto har ikke tillatelse til å kopiere alle de valgte filene og/eller mappene." #: templates/admin/filer/folder/choose_copy_destination.html:25 #: templates/admin/filer/folder/choose_copy_destination.html:31 @@ -714,9 +701,7 @@ msgstr "Det er ingen filer og/eller mapper å kopiere." msgid "" "The following files and/or folders will be copied to a destination folder " "(retaining their tree structure):" -msgstr "" -"De følgende filene og/eller mappene vil bli kopiert til en målmappe " -"(mappestruktur vil beholdes):" +msgstr "De følgende filene og/eller mappene vil bli kopiert til en målmappe (mappestruktur vil beholdes):" #: templates/admin/filer/folder/choose_copy_destination.html:54 #: templates/admin/filer/folder/choose_move_destination.html:64 @@ -736,8 +721,7 @@ msgstr "" #: templates/admin/filer/folder/choose_images_resize_options.html:15 msgid "" "Your account doesn't have permissions to resize all of the selected images." -msgstr "" -"Din konto har ikke tillatelse til å endre størrelse på alle valgte bilder." +msgstr "Din konto har ikke tillatelse til å endre størrelse på alle valgte bilder." #: templates/admin/filer/folder/choose_images_resize_options.html:18 msgid "There are no images available to resize." @@ -747,35 +731,25 @@ msgstr "Det er ingen bilder å endre størrelse på." msgid "The following images will be resized:" msgstr "De følgende bildene vil få endret størrelse:" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" -msgstr "" -"Velg et eksisterende miniatyrbildevalg eller skriv inn parametre for endring " -"av størrelse:" - -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "Velg parametre for endring av størrelse:" +msgstr "Velg et eksisterende miniatyrbildevalg eller skriv inn parametre for endring av størrelse:" -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." -msgstr "" -"Advarsel: Bilder vil få sin størrelse endret, og originalene vil gå tapt. " -"Det kan være ønskelig å først gjøre en kopi for å beholde originalene." +msgstr "Advarsel: Bilder vil få sin størrelse endret, og originalene vil gå tapt. Det kan være ønskelig å først gjøre en kopi for å beholde originalene." -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "Endre størrelse" #: templates/admin/filer/folder/choose_move_destination.html:35 msgid "" -"Your account doesn't have permissions to move all of the selected files and/" -"or folders." -msgstr "" -"Din konto har ikke tillatelse til å flytte alle de valgte filene og/eller " -"mappene." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." +msgstr "Din konto har ikke tillatelse til å flytte alle de valgte filene og/eller mappene." #: templates/admin/filer/folder/choose_move_destination.html:47 msgid "There are no files and/or folders available to move." @@ -785,9 +759,7 @@ msgstr "Det er ingen filer og/eller mapper å flytte." msgid "" "The following files and/or folders will be moved to a destination folder " "(retaining their tree structure):" -msgstr "" -"De følgende filene og/eller mappene vil bli flyttet til en målmappe " -"(mappestruktur vil beholdes):" +msgstr "De følgende filene og/eller mappene vil bli flyttet til en målmappe (mappestruktur vil beholdes):" #: templates/admin/filer/folder/choose_move_destination.html:73 #: templates/admin/filer/folder/choose_move_destination.html:76 @@ -802,8 +774,7 @@ msgstr "" #: templates/admin/filer/folder/choose_rename_format.html:15 msgid "" "Your account doesn't have permissions to rename all of the selected files." -msgstr "" -"Din konto har ikke tillatelse til å endre navn på alle de valgte filene." +msgstr "Din konto har ikke tillatelse til å endre navn på alle de valgte filene." #: templates/admin/filer/folder/choose_rename_format.html:18 msgid "There are no files available to rename." @@ -813,9 +784,7 @@ msgstr "Det er ingen filer å endre navn på." msgid "" "The following files will be renamed (they will stay in their folders and " "keep original filename, only displayed filename will be changed):" -msgstr "" -"De følgende filene vil få endret navn (de vil forbli på samme sted og " -"beholde originalt filnavn, bare visningsnavn vil endres):" +msgstr "De følgende filene vil få endret navn (de vil forbli på samme sted og beholde originalt filnavn, bare visningsnavn vil endres):" #: templates/admin/filer/folder/choose_rename_format.html:59 msgid "Rename" @@ -970,11 +939,13 @@ msgstr "aktivert" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "" @@ -1036,10 +1007,12 @@ msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:15 #: templates/admin/filer/folder/directory_thumbnail_list.html:80 +#| msgid "Select this file" msgid "Select all" msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:77 +#| msgid "Filer" msgid "Files" msgstr "" @@ -1105,6 +1078,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1160,6 +1134,7 @@ msgid "Choose File" msgstr "" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1185,6 +1160,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/nl_NL/LC_MESSAGES/django.mo b/filer/locale/nl_NL/LC_MESSAGES/django.mo index 63a2fb59a..86d9b74d8 100644 Binary files a/filer/locale/nl_NL/LC_MESSAGES/django.mo and b/filer/locale/nl_NL/LC_MESSAGES/django.mo differ diff --git a/filer/locale/nl_NL/LC_MESSAGES/django.po b/filer/locale/nl_NL/LC_MESSAGES/django.po index fd7ea6206..976b53e97 100644 --- a/filer/locale/nl_NL/LC_MESSAGES/django.po +++ b/filer/locale/nl_NL/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Translators: @@ -17,226 +17,217 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Stefan van den Eertwegh , 2023\n" "Language-Team: Dutch (Netherlands) (http://app.transifex.com/divio/django-filer/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "Je hebt geen rechten om bestanden te uploaden." #: admin/clipboardadmin.py:17 msgid "Can't find folder to upload. Please refresh and try again" -msgstr "" -"Kan map niet vinden om te uploaden. Herlaad de pagina en probeer het opnieuw." +msgstr "Kan map niet vinden om te uploaden. Herlaad de pagina en probeer het opnieuw." #: admin/clipboardadmin.py:19 -msgid "Can't use this folder, Permission Denied. Please select another folder." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "Kan deze map niet gebruiken, rechten geweigerd. Kies een andere map." -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "Geavanceerd" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "canonieke URL" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." -msgstr "" -"De actie kan niet worden uitgevoerd omdat er zijn geen items geselecteerd." +msgstr "De actie kan niet worden uitgevoerd omdat er zijn geen items geselecteerd." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" msgstr[0] "%(total_count)s geselecteerd" msgstr[1] "Alle %(total_count)s geselecteerd" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "Inhoud van map %(folder_name)s" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "0 van %(cnt)s geselecteerd" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "Geen actie geselecteerd." -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "%(count)d bestanden zijn succesvol verplaatst naar het klembord." -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "Verplaats geselecteerde bestanden naar het klembord" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "Toegangsrechten succesvol uitgeschakeld voor %(count)d bestanden." -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "Toegangsrechten succesvol ingeschakeld voor %(count)d bestanden." -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "Schakel toegangsrechten in voor geselecteerde bestanden" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "Schakel toegangsrechten uit voor geselecteerde bestanden" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "%(count)d bestanden en/of mappen zijn succesvol verwijderd." -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "Bestanden en/of mappen kunnen niet worden verwijderd" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "Weet je het zeker?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "Verwijder bestanden en/of mappen" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "Verwijder geselecteerde bestanden en/of mappen" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "Er bestaan al mappen met de namen %s op de geselecteerde bestemming" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"%(count)d bestanden en of mappen zijn succesvol verplaatst naar map " -"'%(destination)s'." +msgstr "%(count)d bestanden en of mappen zijn succesvol verplaatst naar map '%(destination)s'." -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "Verplaats bestanden en/of mappen" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "Verplaats geselecteerde bestanden en/of mappen" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "%(count)d bestanden zijn succesvol hernoemd." -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "Hernoem bestanden" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"%(count)d bestanden en/of mappen zijn succesvol gekopieerd naar map " -"'%(destination)s'." +msgstr "%(count)d bestanden en/of mappen zijn succesvol gekopieerd naar map '%(destination)s'." -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "Kopieer bestanden en/of mappen" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "Kopieer geselecteerde bestanden en/of mappen" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "Afmetingen van %(count)d afbeeldingen zijn succesvol aangepast." -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "Afmetingen aanpassen" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "Afmetingen aanpassen van geselecteerde afbeeldingen" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." -msgstr "" -"Achtervoegsel wordt toegevoegd aan bestandsnaam van gekopieerde bestanden" +msgstr "Achtervoegsel wordt toegevoegd aan bestandsnaam van gekopieerde bestanden" -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." -msgstr "" -"Achtervoegsel moet een geldige waarde zijn in kleine letters, bv. " -"\"%(valid)s\"." +msgstr "Achtervoegsel moet een geldige waarde zijn in kleine letters, bv. \"%(valid)s\"." -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "Type \"%(key)s\" voor het hernoemen van bestandsnamen is ongeldig." -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "Ongeldige waarde voor het hernoemen van bestandsnamen: %(error)s." -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "thumbnail optie" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "breedte" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "hoogte" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "uitsnijden" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "opschalen" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "Thumbnail optie of afmetingsopties moet zijn geselecteerd" -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "Afmetingsopties moeten zijn geselecteerd" - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "Locatie van onderwerp" @@ -382,9 +373,7 @@ msgstr "Toegangsrechten uitgeschakeld" msgid "" "Disable any permission checking for this file. File will be publicly " "accessible to anyone." -msgstr "" -"Schakel controle op toegangsrechten uit voor dit bestand. Het bestand zal " -"publiek toegankelijk zijn voor iedereen" +msgstr "Schakel controle op toegangsrechten uit voor dit bestand. Het bestand zal publiek toegankelijk zijn voor iedereen" #: models/foldermodels.py:94 msgid "parent" @@ -477,6 +466,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "Ten minste één gebruiker, groep of \"iedereen\" moet worden geselecteerd." #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "Alle Mappen" @@ -495,6 +485,7 @@ msgid "Group: {group}" msgstr "Groep: {group}" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "Iedereen" @@ -507,6 +498,7 @@ msgid "Read" msgstr "Lezen" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "Toevoegen kinderen" @@ -561,6 +553,7 @@ msgid "Show table view" msgstr "Toon tabel weergave" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "Toon thumbnail weergave" @@ -628,27 +621,19 @@ msgid "" "Deleting the selected files and/or folders would result in deleting related " "objects, but your account doesn't have permission to delete the following " "types of objects:" -msgstr "" -"Het verwijderen van de geselecteerde bestanden en/of mappen resulteert in " -"het verwijderen van gerelateerde objecten. Je hebt echter geen " -"toegangsrechten voor het verwijderen van de volgende objecttypes:" +msgstr "Het verwijderen van de geselecteerde bestanden en/of mappen resulteert in het verwijderen van gerelateerde objecten. Je hebt echter geen toegangsrechten voor het verwijderen van de volgende objecttypes:" #: templates/admin/filer/delete_selected_files_confirmation.html:19 msgid "" "Deleting the selected files and/or folders would require deleting the " "following protected related objects:" -msgstr "" -"Het verwijderen van de geselecteerde bestanden en/of mappen leidt tot het " -"verwijderen van de volgende beschermde gerelateerde objecten:" +msgstr "Het verwijderen van de geselecteerde bestanden en/of mappen leidt tot het verwijderen van de volgende beschermde gerelateerde objecten:" #: templates/admin/filer/delete_selected_files_confirmation.html:27 msgid "" "Are you sure you want to delete the selected files and/or folders? All of " "the following objects and their related items will be deleted:" -msgstr "" -"Weet je zeker dat je de geselecteerde bestanden en/of folders wilt " -"verwijderen? Alle volgende objecten en gerelateerde items zullen worden " -"verwijderd: " +msgstr "Weet je zeker dat je de geselecteerde bestanden en/of folders wilt verwijderen? Alle volgende objecten en gerelateerde items zullen worden verwijderd: " #: templates/admin/filer/delete_selected_files_confirmation.html:46 #: templates/admin/filer/folder/choose_copy_destination.html:64 @@ -697,11 +682,9 @@ msgstr "Map icoon" #: templates/admin/filer/folder/choose_copy_destination.html:23 msgid "" -"Your account doesn't have permissions to copy all of the selected files and/" -"or folders." -msgstr "" -"Je account heeft geen toegangsrechten voor het kopiëren van de geselecteerde " -"bestanden en/of mappen" +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." +msgstr "Je account heeft geen toegangsrechten voor het kopiëren van de geselecteerde bestanden en/of mappen" #: templates/admin/filer/folder/choose_copy_destination.html:25 #: templates/admin/filer/folder/choose_copy_destination.html:31 @@ -725,9 +708,7 @@ msgstr "Er zijn geen bestanden en/of mappen beschikbaar om te kopiëren." msgid "" "The following files and/or folders will be copied to a destination folder " "(retaining their tree structure):" -msgstr "" -"De volgende bestanden en/of mappen zullen worden gekopieerd naar een " -"bestemmingsmap (structuur blijft behouden):" +msgstr "De volgende bestanden en/of mappen zullen worden gekopieerd naar een bestemmingsmap (structuur blijft behouden):" #: templates/admin/filer/folder/choose_copy_destination.html:54 #: templates/admin/filer/folder/choose_move_destination.html:64 @@ -747,47 +728,35 @@ msgstr "Het is niet toegestaan om bestanden naar dezelfde map te kopiëren" #: templates/admin/filer/folder/choose_images_resize_options.html:15 msgid "" "Your account doesn't have permissions to resize all of the selected images." -msgstr "" -"Je account heeft geen toegangsrechten om afmetingen van alle geselecteerde " -"afbeeldingen aan te passen." +msgstr "Je account heeft geen toegangsrechten om afmetingen van alle geselecteerde afbeeldingen aan te passen." #: templates/admin/filer/folder/choose_images_resize_options.html:18 msgid "There are no images available to resize." -msgstr "" -"Er zijn geen afbeeldingen beschikbaar voor het aanpassen van afmetingen." +msgstr "Er zijn geen afbeeldingen beschikbaar voor het aanpassen van afmetingen." #: templates/admin/filer/folder/choose_images_resize_options.html:20 msgid "The following images will be resized:" msgstr "De afmetingen van de volgende afbeeldingen zullen worden aangepast:" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" msgstr "Kies een bestaande thumbnail optie of voer afmetingsopties in:" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "Selecteer afmetingsopties:" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." -msgstr "" -"Waarschuwing: bestaande afmetingen van afbeeldingen zullen worden aangepast. " -"Oorspronkelijke bestanden zullen verloren gaan. Maak eventueel eerst een " -"kopie om de oorspronkelijke bestanden te behouden." +msgstr "Waarschuwing: bestaande afmetingen van afbeeldingen zullen worden aangepast. Oorspronkelijke bestanden zullen verloren gaan. Maak eventueel eerst een kopie om de oorspronkelijke bestanden te behouden." -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "Afmetingen aanpassen" #: templates/admin/filer/folder/choose_move_destination.html:35 msgid "" -"Your account doesn't have permissions to move all of the selected files and/" -"or folders." -msgstr "" -"Je account heeft geen toegangsrechten om alle geselecteerde bestanden en/of " -"mappen te verplaatsen." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." +msgstr "Je account heeft geen toegangsrechten om alle geselecteerde bestanden en/of mappen te verplaatsen." #: templates/admin/filer/folder/choose_move_destination.html:47 msgid "There are no files and/or folders available to move." @@ -797,9 +766,7 @@ msgstr "Er zijn geen bestanden en/of mappen beschikbaar om te verplaatsen." msgid "" "The following files and/or folders will be moved to a destination folder " "(retaining their tree structure):" -msgstr "" -"De volgende bestanden en/of mappen zullen worden verplaatst naar een " -"bestemmingsmap (huidige mapstructuur blijft behouden): " +msgstr "De volgende bestanden en/of mappen zullen worden verplaatst naar een bestemmingsmap (huidige mapstructuur blijft behouden): " #: templates/admin/filer/folder/choose_move_destination.html:73 #: templates/admin/filer/folder/choose_move_destination.html:76 @@ -814,9 +781,7 @@ msgstr "Het is niet toegestaan om bestanden naar dezelfde map te verplaatsen" #: templates/admin/filer/folder/choose_rename_format.html:15 msgid "" "Your account doesn't have permissions to rename all of the selected files." -msgstr "" -"Je account heeft onvoldoende toegangsrechten om alle geselecteerde bestanden " -"te hernoemen." +msgstr "Je account heeft onvoldoende toegangsrechten om alle geselecteerde bestanden te hernoemen." #: templates/admin/filer/folder/choose_rename_format.html:18 msgid "There are no files available to rename." @@ -826,10 +791,7 @@ msgstr "Er zijn geen bestanden beschikbaar om te hernoemen." msgid "" "The following files will be renamed (they will stay in their folders and " "keep original filename, only displayed filename will be changed):" -msgstr "" -"De volgende bestanden zullen worden hernoemd (de oorspronkelijke " -"mapstructuur en bestandsnamen blijven behouden, alleen de weergave zal " -"worden gewijzigd):" +msgstr "De volgende bestanden zullen worden hernoemd (de oorspronkelijke mapstructuur en bestandsnamen blijven behouden, alleen de weergave zal worden gewijzigd):" #: templates/admin/filer/folder/choose_rename_format.html:59 msgid "Rename" @@ -984,11 +946,13 @@ msgstr "ingeschakeld" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "Gebruikelijke url '%(item_label)s'" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "Download '%(item_label)s'" @@ -1050,10 +1014,12 @@ msgstr "Selecteer alle %(total_count)s" #: templates/admin/filer/folder/directory_thumbnail_list.html:15 #: templates/admin/filer/folder/directory_thumbnail_list.html:80 +#| msgid "Select this file" msgid "Select all" msgstr "Alles selecteren" #: templates/admin/filer/folder/directory_thumbnail_list.html:77 +#| msgid "Filer" msgid "Files" msgstr "Bestanden" @@ -1119,6 +1085,7 @@ msgstr "Uitvouwen" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "Bestand ontbreekt" @@ -1174,38 +1141,37 @@ msgid "Choose File" msgstr "Kies bestand" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "Kies Map" #: validation.py:19 #, python-brace-format msgid "File \"{file_name}\": Upload denied by site security policy" -msgstr "" -"Bestand \"{file_name}\": Upload geweigerd door het beveiligingsbeleid van de " -"site" +msgstr "Bestand \"{file_name}\": Upload geweigerd door het beveiligingsbeleid van de site" #: validation.py:22 #, python-brace-format msgid "File \"{file_name}\": {file_type} upload denied by site security policy" -msgstr "" -"Bestand \"{file_name}\": {file_type} upload geweigerd door het " -"beveiligingsbeleid van de site" +msgstr "Bestand \"{file_name}\": {file_type} upload geweigerd door het beveiligingsbeleid van de site" #: validation.py:33 #, python-brace-format msgid "File \"{file_name}\": HTML upload denied by site security policy" -msgstr "" -"Bestand \"{file_name}\": HTML upload geweigerd door het beveiligingsbeleid " -"van de site" +msgstr "Bestand \"{file_name}\": HTML upload geweigerd door het beveiligingsbeleid van de site" #: validation.py:71 #, python-brace-format msgid "" "File \"{file_name}\": Rejected due to potential cross site scripting " "vulnerability" -msgstr "" -"Bestand \"{file_name}\": Afgewezen wegens mogelijke kwetsbaarheid voor cross-" -"site scripting" +msgstr "Bestand \"{file_name}\": Afgewezen wegens mogelijke kwetsbaarheid voor cross-site scripting" + +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/nn/LC_MESSAGES/django.mo b/filer/locale/nn/LC_MESSAGES/django.mo index 9c240da45..b71b810a3 100644 Binary files a/filer/locale/nn/LC_MESSAGES/django.mo and b/filer/locale/nn/LC_MESSAGES/django.mo differ diff --git a/filer/locale/nn/LC_MESSAGES/django.po b/filer/locale/nn/LC_MESSAGES/django.po index add59b2a5..a8bfd944f 100644 --- a/filer/locale/nn/LC_MESSAGES/django.po +++ b/filer/locale/nn/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Translators: @@ -11,18 +11,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Eirik Krogstad , 2013\n" -"Language-Team: Norwegian Nynorsk (http://app.transifex.com/divio/django-" -"filer/language/nn/)\n" -"Language: nn\n" +"Language-Team: Norwegian Nynorsk (http://app.transifex.com/divio/django-filer/language/nn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -31,204 +32,196 @@ msgid "Can't find folder to upload. Please refresh and try again" msgstr "" #: admin/clipboardadmin.py:19 -msgid "Can't use this folder, Permission Denied. Please select another folder." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "Avansert" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." -msgstr "" -"Element må vere vald for å utføre handlingar på dei. Ingen element vart " -"endra." +msgstr "Element må vere vald for å utføre handlingar på dei. Ingen element vart endra." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" msgstr[0] "%(total_count)s vald" msgstr[1] "Alle %(total_count)s vald" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "0 av %(cnt)s vald" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "Ingen handling vald." -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "Flytta %(count)d filer til utklippstavla." -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "Flytt valde filer til utklippstavla" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "Fjerna løyve for %(count)d filer." -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "Satte løyve for %(count)d filer." -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "Sett løyve for valde filer" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "Fjern løyve for valde filer" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "Sletta %(count)d filer og/eller mapper." -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "Kan ikkje slette filer og/eller mapper" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "Er du sikker?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "Slett filer og/eller mapper" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "Slett valde filer og/eller mapper" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "Flytta %(count)d filer og/eller mapper til mappa \"%(destination)s\"." -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "Flytt filer og/eller mapper" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "Flytt valde filer og/eller mapper" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "Endra namn på %(count)d filer." -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "Endre namn på filer" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"Kopierte %(count)d filer og/eller mapper til mappa \"%(destination)s\"." +msgstr "Kopierte %(count)d filer og/eller mapper til mappa \"%(destination)s\"." -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "Kopier filer og/eller mapper" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "Kopier valde filer og/eller mapper" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "Endra storleik på %(count)d bilete." -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "Endre storleik på bilete" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "Endre storleik på valde bilete" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "Ending som vert tilføyd filnamn på kopierte filer." -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." -msgstr "" -"Ending bør vere ein gyldig, enkel del av filnamnet med små bokstavar, som " -"\"%(valid)s\"." +msgstr "Ending bør vere ein gyldig, enkel del av filnamnet med små bokstavar, som \"%(valid)s\"." -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "Ugyldig nykel \"%(key)s\" for endring av namn." -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "Ugyldig format for endring av namn: %(error)s" -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "miniatyrbileteval" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "breidd" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "høgd" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "skjering" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "oppskalering" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "Miniatyrbileteval eller parametrar for endring av storleik må veljast." -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "Parametrar for endring av storleik må veljast." - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "Fokuseringsområde" @@ -467,6 +460,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -485,6 +479,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -497,6 +492,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -551,6 +547,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -618,26 +615,19 @@ msgid "" "Deleting the selected files and/or folders would result in deleting related " "objects, but your account doesn't have permission to delete the following " "types of objects:" -msgstr "" -"Å slette dei valde filene og/eller mappene ville resultere i sletting av " -"relaterte objekt, men din konto har ikkje løyve til å slette objekt av " -"følgjande typer:" +msgstr "Å slette dei valde filene og/eller mappene ville resultere i sletting av relaterte objekt, men din konto har ikkje løyve til å slette objekt av følgjande typer:" #: templates/admin/filer/delete_selected_files_confirmation.html:19 msgid "" "Deleting the selected files and/or folders would require deleting the " "following protected related objects:" -msgstr "" -"Å slette dei valde filene og/eller mappene ville kreve å slette følgjande " -"beskytta relaterte objekt:" +msgstr "Å slette dei valde filene og/eller mappene ville kreve å slette følgjande beskytta relaterte objekt:" #: templates/admin/filer/delete_selected_files_confirmation.html:27 msgid "" "Are you sure you want to delete the selected files and/or folders? All of " "the following objects and their related items will be deleted:" -msgstr "" -"Er du sikker på at du vil slette dei valde filene og/eller mappene? Alle dei " -"følgjande objekta og deira relaterte element vil verte sletta:" +msgstr "Er du sikker på at du vil slette dei valde filene og/eller mappene? Alle dei følgjande objekta og deira relaterte element vil verte sletta:" #: templates/admin/filer/delete_selected_files_confirmation.html:46 #: templates/admin/filer/folder/choose_copy_destination.html:64 @@ -686,11 +676,9 @@ msgstr "Mappeikon" #: templates/admin/filer/folder/choose_copy_destination.html:23 msgid "" -"Your account doesn't have permissions to copy all of the selected files and/" -"or folders." -msgstr "" -"Din konto har ikkje løyve til å kopiere alle dei valde filene og/eller " -"mappene." +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." +msgstr "Din konto har ikkje løyve til å kopiere alle dei valde filene og/eller mappene." #: templates/admin/filer/folder/choose_copy_destination.html:25 #: templates/admin/filer/folder/choose_copy_destination.html:31 @@ -714,9 +702,7 @@ msgstr "Det er ingen filer og/eller mapper å kopiere." msgid "" "The following files and/or folders will be copied to a destination folder " "(retaining their tree structure):" -msgstr "" -"Dei følgjande filene og/eller mappene vil verte kopiert til ein målmappe " -"(mappestruktur vil behaldes):" +msgstr "Dei følgjande filene og/eller mappene vil verte kopiert til ein målmappe (mappestruktur vil behaldes):" #: templates/admin/filer/folder/choose_copy_destination.html:54 #: templates/admin/filer/folder/choose_move_destination.html:64 @@ -746,34 +732,25 @@ msgstr "Det er ingen bilete å endre storleik på." msgid "The following images will be resized:" msgstr "Dei følgjande bileta vil få endra storleik:" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" -msgstr "" -"Vel eit eksisterande miniatyrbileteval eller skriv inn parametrar for " -"endring av storleik:" +msgstr "Vel eit eksisterande miniatyrbileteval eller skriv inn parametrar for endring av storleik:" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "Vel parametrar for endring av storleik:" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." -msgstr "" -"Åtvaring: Bileta vil få sin storleik endra, og originalane vil gå tapt. Det " -"kan være ønskjeleg å først gjere ein kopi for å behalde originalane." +msgstr "Åtvaring: Bileta vil få sin storleik endra, og originalane vil gå tapt. Det kan være ønskjeleg å først gjere ein kopi for å behalde originalane." -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "Endre storleik" #: templates/admin/filer/folder/choose_move_destination.html:35 msgid "" -"Your account doesn't have permissions to move all of the selected files and/" -"or folders." -msgstr "" -"Din konto har ikke løyve til å flytte alle dei valde filene og/eller mappene." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." +msgstr "Din konto har ikke løyve til å flytte alle dei valde filene og/eller mappene." #: templates/admin/filer/folder/choose_move_destination.html:47 msgid "There are no files and/or folders available to move." @@ -783,9 +760,7 @@ msgstr "Det er ingen filer og/eller mapper å flytte." msgid "" "The following files and/or folders will be moved to a destination folder " "(retaining their tree structure):" -msgstr "" -"Dei følgjande filene og/eller mappene vil verte flytta til ein målmappe " -"(mappestruktur vil behaldes):" +msgstr "Dei følgjande filene og/eller mappene vil verte flytta til ein målmappe (mappestruktur vil behaldes):" #: templates/admin/filer/folder/choose_move_destination.html:73 #: templates/admin/filer/folder/choose_move_destination.html:76 @@ -810,9 +785,7 @@ msgstr "Det er ingen filer å endre namn på." msgid "" "The following files will be renamed (they will stay in their folders and " "keep original filename, only displayed filename will be changed):" -msgstr "" -"Dei følgjande filene vil få endra namn (dei vil framleis vere på samme stad " -"og behalde originalt filnamn, berre visningsnamn vil verte endra):" +msgstr "Dei følgjande filene vil få endra namn (dei vil framleis vere på samme stad og behalde originalt filnamn, berre visningsnamn vil verte endra):" #: templates/admin/filer/folder/choose_rename_format.html:59 msgid "Rename" @@ -967,11 +940,13 @@ msgstr "aktivert" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "" @@ -1033,10 +1008,12 @@ msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:15 #: templates/admin/filer/folder/directory_thumbnail_list.html:80 +#| msgid "Select this file" msgid "Select all" msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:77 +#| msgid "Filer" msgid "Files" msgstr "" @@ -1102,6 +1079,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1157,6 +1135,7 @@ msgid "Choose File" msgstr "" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1182,6 +1161,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/pl/LC_MESSAGES/django.mo b/filer/locale/pl/LC_MESSAGES/django.mo index 968f62b88..cf95cba53 100644 Binary files a/filer/locale/pl/LC_MESSAGES/django.mo and b/filer/locale/pl/LC_MESSAGES/django.mo differ diff --git a/filer/locale/pl/LC_MESSAGES/django.po b/filer/locale/pl/LC_MESSAGES/django.po index 61f99a827..a93d25881 100644 --- a/filer/locale/pl/LC_MESSAGES/django.po +++ b/filer/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Translators: @@ -13,20 +13,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Grzegorz Biały , 2017\n" -"Language-Team: Polish (http://app.transifex.com/divio/django-filer/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://app.transifex.com/divio/django-filer/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && " -"(n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && " -"n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -35,26 +34,25 @@ msgid "Can't find folder to upload. Please refresh and try again" msgstr "" #: admin/clipboardadmin.py:19 -msgid "Can't use this folder, Permission Denied. Please select another folder." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "Zaawansowane" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "kanoniczny URL" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." -msgstr "" -"Należy zaznaczyć elementy aby wykonań na nich jakąś akcję. Nie zaznaczono " -"żadnych elementów." +msgstr "Należy zaznaczyć elementy aby wykonań na nich jakąś akcję. Nie zaznaczono żadnych elementów." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" @@ -63,179 +61,171 @@ msgstr[1] "zaznaczono %(total_count)s" msgstr[2] "Zaznaczono wszystkie %(total_count)s" msgstr[3] "Zaznaczono wszystkie %(total_count)s" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "0 z %(cnt)s zaznaczonych" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "Nie zaznaczono akcji." -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "Pomyślnie przeniesiono %(count)d plików do schowka." -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "Przenieś zaznaczone pliki do schowka" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "Pomyślnie wyłączono uprawnienia dla %(count)d plików." -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "Pomyślnie włączono uprawnienia dla %(count)d plików." -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "Włącz uprawnienia dla wybranych plików" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "Wyłącz uprawnienia dla wybranych plików" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "Pomyślnie usunięto %(count)d plików i/lub katalogów." -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "Nie można usunąć plików i/lub katalogów" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "Czy na pewno?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "Usuń pliki i/lub katalogi" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "Usuń zaznaczone pliki i/lub katalogi" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "Katalogi z nazwami %s już istnieją w podanej lokacji" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"Pomyślnie przeniesiono %(count)d plików i/lub katalogów do '%(destination)s'." +msgstr "Pomyślnie przeniesiono %(count)d plików i/lub katalogów do '%(destination)s'." -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "Przenieś pliki i/lub katalogi" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "Przenieś zaznaczone pliki i/lub katalogi" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "Pomyślnie zmieniono nazwę %(count)d plików." -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "Zmień nazwy plików" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"Pomyślnie skopiowano %(count)d plików i/lub katalogów di '%(destination)s'." +msgstr "Pomyślnie skopiowano %(count)d plików i/lub katalogów di '%(destination)s'." -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "Skopiuj pliki i/lub katalogi" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "Skopiuj zaznaczone pliki i/lub katalogi" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "Pomyślnie zmieniono rozmiar %(count)d obrazów." -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "Zmień rozmiar obrazów" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "Zmień rozmiar zaznaczonych obrazów" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "Przyrostek, który zostanie dodany do nazw skopiowanych plików." -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." -msgstr "" -"Przyrostek powinien być poprawną, prostą, składającą się z małych liter " -"częścią nazwy pliku, np. \"%(valid)s\"" +msgstr "Przyrostek powinien być poprawną, prostą, składającą się z małych liter częścią nazwy pliku, np. \"%(valid)s\"" -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "Nieznany format klucza \"%(key)s\"." -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "Niepoprawny format: %(error)s." -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "opcje miniatur" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "szerokość" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "wysokość" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "przytnij" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "skaluj" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "Opcja miniatury albo parametry zmiany rozmiaru muszą być określone." -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "Parametry zmiany rozmiaru muszą być określone." - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "Współrzędne obiektu" @@ -381,9 +371,7 @@ msgstr "Uprawnienia wyłączone" msgid "" "Disable any permission checking for this file. File will be publicly " "accessible to anyone." -msgstr "" -"Wyłącz jakiekolwiek sprawdzanie uprawnień dla tego pliku. Plik będzie " -"dostępny publicznie dla wszystkich." +msgstr "Wyłącz jakiekolwiek sprawdzanie uprawnień dla tego pliku. Plik będzie dostępny publicznie dla wszystkich." #: models/foldermodels.py:94 msgid "parent" @@ -476,6 +464,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -494,6 +483,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -506,6 +496,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -560,6 +551,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -627,26 +619,19 @@ msgid "" "Deleting the selected files and/or folders would result in deleting related " "objects, but your account doesn't have permission to delete the following " "types of objects:" -msgstr "" -"Usunięcie zaznaczonych plików i/lub katalogów spowoduje usunięcie " -"powiązanych obiektów, niestety Twoje konto nie posiada uprawnień do " -"usunięcia następujących typów obiektów:" +msgstr "Usunięcie zaznaczonych plików i/lub katalogów spowoduje usunięcie powiązanych obiektów, niestety Twoje konto nie posiada uprawnień do usunięcia następujących typów obiektów:" #: templates/admin/filer/delete_selected_files_confirmation.html:19 msgid "" "Deleting the selected files and/or folders would require deleting the " "following protected related objects:" -msgstr "" -"Usunięcie zaznaczonych plików i/lub katalogów wymaga usunięcia następujących " -"chronionych obiektów powiązanych:" +msgstr "Usunięcie zaznaczonych plików i/lub katalogów wymaga usunięcia następujących chronionych obiektów powiązanych:" #: templates/admin/filer/delete_selected_files_confirmation.html:27 msgid "" "Are you sure you want to delete the selected files and/or folders? All of " "the following objects and their related items will be deleted:" -msgstr "" -"Czy na pewno chcesz usunąć zaznaczone pliki i/lub katalogi? Następujące " -"obiekty oraz powiązane z nimi elementy zostaną usunięte:" +msgstr "Czy na pewno chcesz usunąć zaznaczone pliki i/lub katalogi? Następujące obiekty oraz powiązane z nimi elementy zostaną usunięte:" #: templates/admin/filer/delete_selected_files_confirmation.html:46 #: templates/admin/filer/folder/choose_copy_destination.html:64 @@ -695,11 +680,9 @@ msgstr "Ikona katalogu" #: templates/admin/filer/folder/choose_copy_destination.html:23 msgid "" -"Your account doesn't have permissions to copy all of the selected files and/" -"or folders." -msgstr "" -"Twoje konto nie ma uprawnień do skopiowania wszystkich zaznaczonych plików i/" -"lub katalogów." +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." +msgstr "Twoje konto nie ma uprawnień do skopiowania wszystkich zaznaczonych plików i/lub katalogów." #: templates/admin/filer/folder/choose_copy_destination.html:25 #: templates/admin/filer/folder/choose_copy_destination.html:31 @@ -723,9 +706,7 @@ msgstr "Brak dostępnych plików i/lub katalogów do skopiowania." msgid "" "The following files and/or folders will be copied to a destination folder " "(retaining their tree structure):" -msgstr "" -"Następujące pliki i/lub katalogi zostaną skopiowane do katalogu docelowego " -"(z zachowaniem ich struktury):" +msgstr "Następujące pliki i/lub katalogi zostaną skopiowane do katalogu docelowego (z zachowaniem ich struktury):" #: templates/admin/filer/folder/choose_copy_destination.html:54 #: templates/admin/filer/folder/choose_move_destination.html:64 @@ -745,9 +726,7 @@ msgstr "Nie można kopiować plików to tego samego folderu" #: templates/admin/filer/folder/choose_images_resize_options.html:15 msgid "" "Your account doesn't have permissions to resize all of the selected images." -msgstr "" -"Twoje konto nie ma uprawnień do zmiany rozmiaru wszystkich zaznaczonych " -"obrazów." +msgstr "Twoje konto nie ma uprawnień do zmiany rozmiaru wszystkich zaznaczonych obrazów." #: templates/admin/filer/folder/choose_images_resize_options.html:18 msgid "There are no images available to resize." @@ -757,34 +736,25 @@ msgstr "Brak dostępnych obrazów do zmiany ich rozmiaru." msgid "The following images will be resized:" msgstr "Następujące obrazy będą miały zmieniony rozmiar:" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" -msgstr "" -"Wybierz istniejącą opcje miniatury albo wprowadź parametry zmiany rozmiaru:" - -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "Wybierz parametry zmiany rozmiaru:" +msgstr "Wybierz istniejącą opcje miniatury albo wprowadź parametry zmiany rozmiaru:" -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." -msgstr "" -"Uwaga: Rozmiary obrazów zostanie zmienione w miejscu a oryginały zostaną " -"utracone. W celu zachowania oryginałów, najpierw wykonaj ich kopię." +msgstr "Uwaga: Rozmiary obrazów zostanie zmienione w miejscu a oryginały zostaną utracone. W celu zachowania oryginałów, najpierw wykonaj ich kopię." -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "Zmień rozmiar" #: templates/admin/filer/folder/choose_move_destination.html:35 msgid "" -"Your account doesn't have permissions to move all of the selected files and/" -"or folders." -msgstr "" -"Twoje konto nie ma uprawnień do przeniesienia wszystkich zaznaczonych plików " -"i/lub katalogów." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." +msgstr "Twoje konto nie ma uprawnień do przeniesienia wszystkich zaznaczonych plików i/lub katalogów." #: templates/admin/filer/folder/choose_move_destination.html:47 msgid "There are no files and/or folders available to move." @@ -794,9 +764,7 @@ msgstr "Brak plików i/lub folderów do przeniesienia." msgid "" "The following files and/or folders will be moved to a destination folder " "(retaining their tree structure):" -msgstr "" -"Następujące pliki i/lub katalogi zostaną przeniesione do katalogu docelowego " -"(z zachowaniem ich struktury):" +msgstr "Następujące pliki i/lub katalogi zostaną przeniesione do katalogu docelowego (z zachowaniem ich struktury):" #: templates/admin/filer/folder/choose_move_destination.html:73 #: templates/admin/filer/folder/choose_move_destination.html:76 @@ -811,9 +779,7 @@ msgstr "Nie można przenieść plików do tego samego folderu" #: templates/admin/filer/folder/choose_rename_format.html:15 msgid "" "Your account doesn't have permissions to rename all of the selected files." -msgstr "" -"Twoje konto nie posiada uprawnień do zmiany nazwy wszystkich zaznaczonych " -"plików." +msgstr "Twoje konto nie posiada uprawnień do zmiany nazwy wszystkich zaznaczonych plików." #: templates/admin/filer/folder/choose_rename_format.html:18 msgid "There are no files available to rename." @@ -823,10 +789,7 @@ msgstr "Brak dostępnych plików do zmiany nazwy." msgid "" "The following files will be renamed (they will stay in their folders and " "keep original filename, only displayed filename will be changed):" -msgstr "" -"Następujące pliki będą miały zmienioną nazwę (pliki pozostaną w swoich " -"katalogach i zachowają oryginalne nazwy, zmieni się jedynie ich wyświetlana " -"nazwa):" +msgstr "Następujące pliki będą miały zmienioną nazwę (pliki pozostaną w swoich katalogach i zachowają oryginalne nazwy, zmieni się jedynie ich wyświetlana nazwa):" #: templates/admin/filer/folder/choose_rename_format.html:59 msgid "Rename" @@ -985,11 +948,13 @@ msgstr "włączony" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "Kanoniczny url '%(item_label)s'" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "Pobierz '%(item_label)s'" @@ -1051,10 +1016,12 @@ msgstr "Wybierz wszystkie %(total_count)s" #: templates/admin/filer/folder/directory_thumbnail_list.html:15 #: templates/admin/filer/folder/directory_thumbnail_list.html:80 +#| msgid "Select this file" msgid "Select all" msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:77 +#| msgid "Filer" msgid "Files" msgstr "" @@ -1122,6 +1089,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1177,6 +1145,7 @@ msgid "Choose File" msgstr "Wybierz plik" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1202,6 +1171,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/pt/LC_MESSAGES/django.po b/filer/locale/pt/LC_MESSAGES/django.po index 3b81472eb..76f5d041d 100644 --- a/filer/locale/pt/LC_MESSAGES/django.po +++ b/filer/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Translators: @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Angelo Dini \n" -"Language-Team: Portuguese (http://app.transifex.com/divio/django-filer/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://app.transifex.com/divio/django-filer/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % " -"1000000 == 0 ? 1 : 2;\n" +"Language: pt\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -30,24 +30,25 @@ msgid "Can't find folder to upload. Please refresh and try again" msgstr "" #: admin/clipboardadmin.py:19 -msgid "Can't use this folder, Permission Denied. Please select another folder." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." msgstr "" -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" @@ -55,175 +56,171 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "" -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "" -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "" -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "" -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "" -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "" -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." msgstr "" -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "" -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "" -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "" -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "" - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "" @@ -462,6 +459,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -480,6 +478,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -492,6 +491,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -546,6 +546,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -674,8 +675,8 @@ msgstr "" #: templates/admin/filer/folder/choose_copy_destination.html:23 msgid "" -"Your account doesn't have permissions to copy all of the selected files and/" -"or folders." +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." msgstr "" #: templates/admin/filer/folder/choose_copy_destination.html:25 @@ -730,28 +731,24 @@ msgstr "" msgid "The following images will be resized:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "" #: templates/admin/filer/folder/choose_move_destination.html:35 msgid "" -"Your account doesn't have permissions to move all of the selected files and/" -"or folders." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." msgstr "" #: templates/admin/filer/folder/choose_move_destination.html:47 @@ -944,11 +941,13 @@ msgstr "" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "" @@ -1010,10 +1009,12 @@ msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:15 #: templates/admin/filer/folder/directory_thumbnail_list.html:80 +#| msgid "Select this file" msgid "Select all" msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:77 +#| msgid "Filer" msgid "Files" msgstr "" @@ -1080,6 +1081,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1135,6 +1137,7 @@ msgid "Choose File" msgstr "" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1160,6 +1163,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/pt_BR/LC_MESSAGES/django.mo b/filer/locale/pt_BR/LC_MESSAGES/django.mo index 23c9c9846..7dc37a6c1 100644 Binary files a/filer/locale/pt_BR/LC_MESSAGES/django.mo and b/filer/locale/pt_BR/LC_MESSAGES/django.mo differ diff --git a/filer/locale/pt_BR/LC_MESSAGES/django.po b/filer/locale/pt_BR/LC_MESSAGES/django.po index 05d5c0009..dc98e6c5c 100644 --- a/filer/locale/pt_BR/LC_MESSAGES/django.po +++ b/filer/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Translators: @@ -12,19 +12,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Julio Lucchese , 2018\n" -"Language-Team: Portuguese (Brazil) (http://app.transifex.com/divio/django-" -"filer/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://app.transifex.com/divio/django-filer/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % " -"1000000 == 0 ? 1 : 2;\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -33,26 +33,25 @@ msgid "Can't find folder to upload. Please refresh and try again" msgstr "" #: admin/clipboardadmin.py:19 -msgid "Can't use this folder, Permission Denied. Please select another folder." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "Avançado" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "URL canônico" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." -msgstr "" -"itens precisam ser selecionar para que a ação seja executada. Nenhuma " -"alteração foi efetuada." +msgstr "itens precisam ser selecionar para que a ação seja executada. Nenhuma alteração foi efetuada." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" @@ -60,183 +59,170 @@ msgstr[0] "%(total_count)s selecionado" msgstr[1] "Todos %(total_count)s selecionados" msgstr[2] "Todos %(total_count)s selecionados" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "Listando diretório para %(folder_name)s" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "0 de %(cnt)s selecionados" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "Nenhuma ação selecionada." -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "%(count)d arquivo(s) movidos para a área de transferência com sucesso." -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "Mover os arquivos selecionados para a área de transferência" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "%(count)d arquivo(s) tiveram suas permissões desativadas com sucesso." -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "%(count)d arquivo(s) tiveram suas permissões ativadas com sucesso." -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "Habilitar as permissões para os arquivos selecionados" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "Desabilitar as permissões para os arquivos selecionados" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "%(count)d arquivo(s) e/ou pasta(s) foram removidos com sucesso." -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "Não é possível remover arquivo(s) e/ou pasta(s)" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "Você tem certeza?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "Remover arquivo(s) e/ou pasta(s)" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "Remover arquivo(s) e/ou pasta(s) selecionados" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "Pastas com os nomes %s s já existem no local selecionado" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"%(count)d arquivo(s) e/ou pasta(s) foram movidos para a pasta " -"'%(destination)s' com sucesso." +msgstr "%(count)d arquivo(s) e/ou pasta(s) foram movidos para a pasta '%(destination)s' com sucesso." -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "Mover arquivo(s) e/ou pasta(s)" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "Mover arquivo(s) e/ou pasta(s) selecionados" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "%(count)d arquivo(s) foram renomeados com sucesso." -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "Renomear arquivos" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"%(count)d arquivo(s) e/ou pasta(s) foram copiados para o pasta " -"'%(destination)s' com sucesso." +msgstr "%(count)d arquivo(s) e/ou pasta(s) foram copiados para o pasta '%(destination)s' com sucesso." -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "Copiar arquivo(s) e/ou pasta(s)" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "Copiar arquivo(s) e/ou pasta(s) selecionados" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "%(count)d imagem(ens) tiveram seu tamanho alterado com sucesso." -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "Redimensionar imagens" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "Redimensionar imagens selecionadas" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "Sufixo que será anexado aos nomes dos arquivos copiados" -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." -msgstr "" -"O sufixo precisa ser válido, simples e com letras minúsculas para o nome de " -"um arquivo, como por exemplo: \"%(valid)s\"." +msgstr "O sufixo precisa ser válido, simples e com letras minúsculas para o nome de um arquivo, como por exemplo: \"%(valid)s\"." -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." -msgstr "" -"A chave de valor \"%(key)s\" utilizada para renomear o arquivo é " -"desconhecida." +msgstr "A chave de valor \"%(key)s\" utilizada para renomear o arquivo é desconhecida." -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "Formato inválido para renomear: %(error)s." -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "opções de miniaturas" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "largura" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "altura" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "recortar" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "aumentar" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." -msgstr "" -"Escolher entre as opções de miniaturas ou parâmetros de redimensionamento." - -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "Os parâmetros de redimensionamento precisam ser escolhidos" +msgstr "Escolher entre as opções de miniaturas ou parâmetros de redimensionamento." #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" @@ -383,9 +369,7 @@ msgstr "Permissões desabilitadas" msgid "" "Disable any permission checking for this file. File will be publicly " "accessible to anyone." -msgstr "" -"Desative qualquer verificação de permissão para este arquivo. O arquivo " -"estará acessível ao público para que qualquer possa acessar." +msgstr "Desative qualquer verificação de permissão para este arquivo. O arquivo estará acessível ao público para que qualquer possa acessar." #: models/foldermodels.py:94 msgid "parent" @@ -478,6 +462,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -496,6 +481,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -508,6 +494,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -562,6 +549,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -629,27 +617,19 @@ msgid "" "Deleting the selected files and/or folders would result in deleting related " "objects, but your account doesn't have permission to delete the following " "types of objects:" -msgstr "" -"Remover os arquivo(s) e/ou pasta(s) selecionados resultará na remoção de " -"objetos relacionados, mas sua conta não tem permissão para remover os " -"seguintes tipos de objetos:" +msgstr "Remover os arquivo(s) e/ou pasta(s) selecionados resultará na remoção de objetos relacionados, mas sua conta não tem permissão para remover os seguintes tipos de objetos:" #: templates/admin/filer/delete_selected_files_confirmation.html:19 msgid "" "Deleting the selected files and/or folders would require deleting the " "following protected related objects:" -msgstr "" -"Remover os arquivo(s) e/ou pasta(s) selecionados, requer remover os seguites " -"objetos protegidos relacionados:" +msgstr "Remover os arquivo(s) e/ou pasta(s) selecionados, requer remover os seguites objetos protegidos relacionados:" #: templates/admin/filer/delete_selected_files_confirmation.html:27 msgid "" "Are you sure you want to delete the selected files and/or folders? All of " "the following objects and their related items will be deleted:" -msgstr "" -"Você tem certeza que deseja remover os arquivo(s) e/ou pasta(s) " -"selecionados? Todos os seguintes objetos e itens relacionados serão " -"removidos: " +msgstr "Você tem certeza que deseja remover os arquivo(s) e/ou pasta(s) selecionados? Todos os seguintes objetos e itens relacionados serão removidos: " #: templates/admin/filer/delete_selected_files_confirmation.html:46 #: templates/admin/filer/folder/choose_copy_destination.html:64 @@ -698,11 +678,9 @@ msgstr "Ícone da Pasta" #: templates/admin/filer/folder/choose_copy_destination.html:23 msgid "" -"Your account doesn't have permissions to copy all of the selected files and/" -"or folders." -msgstr "" -"Sua conta não possui permissão para copiar todos os arquivo(s) e/ou pasta(s) " -"selecionados." +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." +msgstr "Sua conta não possui permissão para copiar todos os arquivo(s) e/ou pasta(s) selecionados." #: templates/admin/filer/folder/choose_copy_destination.html:25 #: templates/admin/filer/folder/choose_copy_destination.html:31 @@ -726,9 +704,7 @@ msgstr "Não existem arquivo(s) e/ou pasta(s) disponíveis para copiar." msgid "" "The following files and/or folders will be copied to a destination folder " "(retaining their tree structure):" -msgstr "" -"Os arquivo(s) e/ou pasta(s) serão copiados para a pasta de destino (mantendo " -"a estrutura de diretórios):" +msgstr "Os arquivo(s) e/ou pasta(s) serão copiados para a pasta de destino (mantendo a estrutura de diretórios):" #: templates/admin/filer/folder/choose_copy_destination.html:54 #: templates/admin/filer/folder/choose_move_destination.html:64 @@ -748,9 +724,7 @@ msgstr "Não é permitido copiar arquivos para a mesma pasta" #: templates/admin/filer/folder/choose_images_resize_options.html:15 msgid "" "Your account doesn't have permissions to resize all of the selected images." -msgstr "" -"Sua conta não possui permissão para redimensionar todas as imagens " -"selecionadas." +msgstr "Sua conta não possui permissão para redimensionar todas as imagens selecionadas." #: templates/admin/filer/folder/choose_images_resize_options.html:18 msgid "There are no images available to resize." @@ -760,35 +734,25 @@ msgstr "Não existem imagens disponíveis para redimensionar." msgid "The following images will be resized:" msgstr "As seguintes imagens serão redimensionadas:" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" -msgstr "" -"Selecionar uma opção de miniatura ou digitar os parâmetros de " -"redimensionamento:" - -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "Selecionar os parâmetros de redimensionamento:" +msgstr "Selecionar uma opção de miniatura ou digitar os parâmetros de redimensionamento:" -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." -msgstr "" -"Cuidado: as imagens serão redimensionadas no mesmo local e os originais " -"serão perdidos. Uma sugestão seria fazer uma cópia para guardar os originais." +msgstr "Cuidado: as imagens serão redimensionadas no mesmo local e os originais serão perdidos. Uma sugestão seria fazer uma cópia para guardar os originais." -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "Redimensionar" #: templates/admin/filer/folder/choose_move_destination.html:35 msgid "" -"Your account doesn't have permissions to move all of the selected files and/" -"or folders." -msgstr "" -"Sua conta não possui permissão para mover todos os arquivo(s) e/ou pasta(s) " -"selecionados." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." +msgstr "Sua conta não possui permissão para mover todos os arquivo(s) e/ou pasta(s) selecionados." #: templates/admin/filer/folder/choose_move_destination.html:47 msgid "There are no files and/or folders available to move." @@ -798,9 +762,7 @@ msgstr "Não existem arquivo(s) e/ou pasta(s) disponíveis para mover." msgid "" "The following files and/or folders will be moved to a destination folder " "(retaining their tree structure):" -msgstr "" -"Os arquivo(s) e/ou pasta(s) serão movidos para a pasta de destino (mantendo " -"a estrutura de diretórios):" +msgstr "Os arquivo(s) e/ou pasta(s) serão movidos para a pasta de destino (mantendo a estrutura de diretórios):" #: templates/admin/filer/folder/choose_move_destination.html:73 #: templates/admin/filer/folder/choose_move_destination.html:76 @@ -815,8 +777,7 @@ msgstr "Não é permitido mover arquivos na mesma pasta" #: templates/admin/filer/folder/choose_rename_format.html:15 msgid "" "Your account doesn't have permissions to rename all of the selected files." -msgstr "" -"Sua conta não possui permissão para renomear todos os arquivos selecionados." +msgstr "Sua conta não possui permissão para renomear todos os arquivos selecionados." #: templates/admin/filer/folder/choose_rename_format.html:18 msgid "There are no files available to rename." @@ -826,10 +787,7 @@ msgstr "Não existem arquivos disponíveis para renomear." msgid "" "The following files will be renamed (they will stay in their folders and " "keep original filename, only displayed filename will be changed):" -msgstr "" -"Os seguintes arquivos serão renomeados (estes arquivos serão mantidos em " -"suas pastas e os nomes originais serão mantidos, apenas o nome de " -"apresentação será alterado):" +msgstr "Os seguintes arquivos serão renomeados (estes arquivos serão mantidos em suas pastas e os nomes originais serão mantidos, apenas o nome de apresentação será alterado):" #: templates/admin/filer/folder/choose_rename_format.html:59 msgid "Rename" @@ -986,11 +944,13 @@ msgstr "habilitado" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "URL Canônico '%(item_label)s'" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "Baixar '%(item_label)s'" @@ -1052,10 +1012,12 @@ msgstr "Selecione todos %(total_count)s" #: templates/admin/filer/folder/directory_thumbnail_list.html:15 #: templates/admin/filer/folder/directory_thumbnail_list.html:80 +#| msgid "Select this file" msgid "Select all" msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:77 +#| msgid "Filer" msgid "Files" msgstr "" @@ -1122,6 +1084,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1177,6 +1140,7 @@ msgid "Choose File" msgstr "Alterar Arquivo" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1202,6 +1166,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/ru/LC_MESSAGES/django.mo b/filer/locale/ru/LC_MESSAGES/django.mo index d6cfde2c9..6bd36094c 100644 Binary files a/filer/locale/ru/LC_MESSAGES/django.mo and b/filer/locale/ru/LC_MESSAGES/django.mo differ diff --git a/filer/locale/ru/LC_MESSAGES/django.po b/filer/locale/ru/LC_MESSAGES/django.po index 9bc0f100c..dfb72a8ac 100644 --- a/filer/locale/ru/LC_MESSAGES/django.po +++ b/filer/locale/ru/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: @@ -14,20 +14,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Alexander Naydenko , 2020\n" -"Language-Team: Russian (http://app.transifex.com/divio/django-filer/language/" -"ru/)\n" -"Language: ru\n" +"Language-Team: Russian (http://app.transifex.com/divio/django-filer/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || " -"(n%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -36,26 +35,25 @@ msgid "Can't find folder to upload. Please refresh and try again" msgstr "" #: admin/clipboardadmin.py:19 -msgid "Can't use this folder, Permission Denied. Please select another folder." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "Дополнительно" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "канонический URL" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." -msgstr "" -"Для выполнения действий нужно выбрать хотя бы один объект. Не произведено " -"никаких изменений." +msgstr "Для выполнения действий нужно выбрать хотя бы один объект. Не произведено никаких изменений." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" @@ -64,177 +62,171 @@ msgstr[1] "%(total_count)s выбрано" msgstr[2] "Все %(total_count)s выбраны" msgstr[3] "Все %(total_count)s выбраны" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "Содержимое %(folder_name)s" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "0 из %(cnt)s выбрано" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "Действие не выбрано." -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "Успешно перемещено %(count)d файлов в буфер обмена." -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "Переместить выбранные файлы в буфер обмена" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "Разрешения успешно отключены для %(count)d файлов." -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "Разрешения успешно применены для %(count)d файлов." -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "Включить разрешения для выбранных файлов" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "Отключить разрешения для выбранных файлов" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "Успешно удалено %(count)d файлов/папок." -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "Невозможно удалить файлы/папки" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "Вы уверены?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "Удалить файлы/папки" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "Удалить выбранные файлы/папки" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "Папки с именами %s уже существуют в указанном месте" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "Успешно перемещено %(count)d файлов/папок в папку '%(destination)s'." -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "Переместить файлы/папки" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "Переместить выбранные файлы/папки" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "Успешно переименовано %(count)d файлов." -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "Переименовать файлы" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "Успешно скопировано %(count)d файлов/папок в папку '%(destination)s'." -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "Скопировать файлы/папки" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "Скопировать выбранные файлы/папки" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "Успешно изменен размер %(count)d изображений." -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "Изменить размер изображений" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "Изменить размер выбранных изображений" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "Окончание, которое будет добавлено к именам скопированных файлов." -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." -msgstr "" -"Окончание должно быть правильной, простой и в нижнем регистре частью имени " -"файла, например \"%(valid)s\"." +msgstr "Окончание должно быть правильной, простой и в нижнем регистре частью имени файла, например \"%(valid)s\"." -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "Неизвестный ключ форматирования \"%(key)s\"." -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "Неверный формат переименования: %(error)s." -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "опция миниатюры" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "ширина" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "высота" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "обрезать" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "увеличивать" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "Опция миниатюры или параметры изменения размера должны быть указаны." -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "Параметры изменения размеры должны быть указаны." - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "Расположение объекта" @@ -380,9 +372,7 @@ msgstr "Разрешения отключены" msgid "" "Disable any permission checking for this file. File will be publicly " "accessible to anyone." -msgstr "" -"Отменить все проверки разрешений для этого файла. Файл будет доступен " -"публично для каждого." +msgstr "Отменить все проверки разрешений для этого файла. Файл будет доступен публично для каждого." #: models/foldermodels.py:94 msgid "parent" @@ -475,6 +465,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -493,6 +484,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -505,6 +497,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -559,6 +552,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -626,25 +620,19 @@ msgid "" "Deleting the selected files and/or folders would result in deleting related " "objects, but your account doesn't have permission to delete the following " "types of objects:" -msgstr "" -"Удаление выбранных файлов/папок приведет к удалению связанных объектов, но у " -"вас нет прав удалять следующие объекты:" +msgstr "Удаление выбранных файлов/папок приведет к удалению связанных объектов, но у вас нет прав удалять следующие объекты:" #: templates/admin/filer/delete_selected_files_confirmation.html:19 msgid "" "Deleting the selected files and/or folders would require deleting the " "following protected related objects:" -msgstr "" -"Удаление выбранных файлов/папок потребует удаления следующих защищенных " -"связанных объектов:" +msgstr "Удаление выбранных файлов/папок потребует удаления следующих защищенных связанных объектов:" #: templates/admin/filer/delete_selected_files_confirmation.html:27 msgid "" "Are you sure you want to delete the selected files and/or folders? All of " "the following objects and their related items will be deleted:" -msgstr "" -"Вы уверены, что хотите удалить выбранные файлы/папки? Следующие объекты " -"вместе со связанными объектами будут удалены:" +msgstr "Вы уверены, что хотите удалить выбранные файлы/папки? Следующие объекты вместе со связанными объектами будут удалены:" #: templates/admin/filer/delete_selected_files_confirmation.html:46 #: templates/admin/filer/folder/choose_copy_destination.html:64 @@ -693,8 +681,8 @@ msgstr "Иконка папки" #: templates/admin/filer/folder/choose_copy_destination.html:23 msgid "" -"Your account doesn't have permissions to copy all of the selected files and/" -"or folders." +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." msgstr "У вас нет прав на копирование выбранных файлов/папок" #: templates/admin/filer/folder/choose_copy_destination.html:25 @@ -719,9 +707,7 @@ msgstr "Нет файлов для копирования." msgid "" "The following files and/or folders will be copied to a destination folder " "(retaining their tree structure):" -msgstr "" -"Эти файлы/папки будут скопированы в целевую папку (с сохранением " -"иерархичности):" +msgstr "Эти файлы/папки будут скопированы в целевую папку (с сохранением иерархичности):" #: templates/admin/filer/folder/choose_copy_destination.html:54 #: templates/admin/filer/folder/choose_move_destination.html:64 @@ -751,30 +737,24 @@ msgstr "Нет доступных изображений для изменени msgid "The following images will be resized:" msgstr "У этих изображений будет изменен размер:" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" msgstr "Выберите опцию миниатюры или введите параметры изменения размеров:" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "Выбрите параметры изменения размеров:" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." -msgstr "" -"Внимание: изображения будут изменены в размерах с заменой оригиналов. " -"Возможно, лучше будет сперва сделать копии." +msgstr "Внимание: изображения будут изменены в размерах с заменой оригиналов. Возможно, лучше будет сперва сделать копии." -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "Изменить размеры" #: templates/admin/filer/folder/choose_move_destination.html:35 msgid "" -"Your account doesn't have permissions to move all of the selected files and/" -"or folders." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." msgstr "Вы не имеете прав для перемещения выбранных файлов/папок." #: templates/admin/filer/folder/choose_move_destination.html:47 @@ -785,9 +765,7 @@ msgstr "Нет файлов/папок для перемещения." msgid "" "The following files and/or folders will be moved to a destination folder " "(retaining their tree structure):" -msgstr "" -"Следующие файлы/папки будут перемещены в целевую папку (сохраняя " -"иерархичность):" +msgstr "Следующие файлы/папки будут перемещены в целевую папку (сохраняя иерархичность):" #: templates/admin/filer/folder/choose_move_destination.html:73 #: templates/admin/filer/folder/choose_move_destination.html:76 @@ -812,9 +790,7 @@ msgstr "Нет файлов для переименовывания." msgid "" "The following files will be renamed (they will stay in their folders and " "keep original filename, only displayed filename will be changed):" -msgstr "" -"Эти файлы будут переименованы (они остануться в их папках и сохранят имена " -"оригинальных файлов, только отображаемое имя измениться):" +msgstr "Эти файлы будут переименованы (они остануться в их папках и сохранят имена оригинальных файлов, только отображаемое имя измениться):" #: templates/admin/filer/folder/choose_rename_format.html:59 msgid "Rename" @@ -973,11 +949,13 @@ msgstr "включены" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "Канонический URL '%(item_label)s'" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "Скачать '%(item_label)s'" @@ -1039,10 +1017,12 @@ msgstr "Выбрать все %(total_count)s" #: templates/admin/filer/folder/directory_thumbnail_list.html:15 #: templates/admin/filer/folder/directory_thumbnail_list.html:80 +#| msgid "Select this file" msgid "Select all" msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:77 +#| msgid "Filer" msgid "Files" msgstr "" @@ -1110,6 +1090,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1165,6 +1146,7 @@ msgid "Choose File" msgstr "Выбрать файл" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1190,6 +1172,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/sk/LC_MESSAGES/django.po b/filer/locale/sk/LC_MESSAGES/django.po index 5b67deb34..4bf0b696a 100644 --- a/filer/locale/sk/LC_MESSAGES/django.po +++ b/filer/locale/sk/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Translators: @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Angelo Dini \n" -"Language-Team: Slovak (http://app.transifex.com/divio/django-filer/language/" -"sk/)\n" -"Language: sk\n" +"Language-Team: Slovak (http://app.transifex.com/divio/django-filer/language/sk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n " -">= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" +"Language: sk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -30,24 +30,25 @@ msgid "Can't find folder to upload. Please refresh and try again" msgstr "" #: admin/clipboardadmin.py:19 -msgid "Can't use this folder, Permission Denied. Please select another folder." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." msgstr "" -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" @@ -56,175 +57,171 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "" -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "" -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "" -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "" -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "" -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "" -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." msgstr "" -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "" -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "" -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "" -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "" - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "" @@ -463,6 +460,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -481,6 +479,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -493,6 +492,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -547,6 +547,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -675,8 +676,8 @@ msgstr "" #: templates/admin/filer/folder/choose_copy_destination.html:23 msgid "" -"Your account doesn't have permissions to copy all of the selected files and/" -"or folders." +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." msgstr "" #: templates/admin/filer/folder/choose_copy_destination.html:25 @@ -731,28 +732,24 @@ msgstr "" msgid "The following images will be resized:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "" #: templates/admin/filer/folder/choose_move_destination.html:35 msgid "" -"Your account doesn't have permissions to move all of the selected files and/" -"or folders." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." msgstr "" #: templates/admin/filer/folder/choose_move_destination.html:47 @@ -947,11 +944,13 @@ msgstr "" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "" @@ -1013,10 +1012,12 @@ msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:15 #: templates/admin/filer/folder/directory_thumbnail_list.html:80 +#| msgid "Select this file" msgid "Select all" msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:77 +#| msgid "Filer" msgid "Files" msgstr "" @@ -1084,6 +1085,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1139,6 +1141,7 @@ msgid "Choose File" msgstr "" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1164,6 +1167,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/tr/LC_MESSAGES/django.mo b/filer/locale/tr/LC_MESSAGES/django.mo index 2051dc892..3bd970c09 100644 Binary files a/filer/locale/tr/LC_MESSAGES/django.mo and b/filer/locale/tr/LC_MESSAGES/django.mo differ diff --git a/filer/locale/tr/LC_MESSAGES/django.po b/filer/locale/tr/LC_MESSAGES/django.po index a144dd00e..e1c96e0a4 100644 --- a/filer/locale/tr/LC_MESSAGES/django.po +++ b/filer/locale/tr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Translators: @@ -11,18 +11,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Cihad GÜNDOĞDU , 2013,2015-2016\n" -"Language-Team: Turkish (http://app.transifex.com/divio/django-filer/language/" -"tr/)\n" -"Language: tr\n" +"Language-Team: Turkish (http://app.transifex.com/divio/django-filer/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -31,201 +32,196 @@ msgid "Can't find folder to upload. Please refresh and try again" msgstr "" #: admin/clipboardadmin.py:19 -msgid "Can't use this folder, Permission Denied. Please select another folder." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "Gelişmiş" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "standart URL" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." msgstr "" -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" msgstr[0] "" msgstr[1] "" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "%(cnt)s 0 adet seçildi" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "İşlem seçilmedi" -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "%(count)d adet dosya arabelleğe taşındı" -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "Seçili dosyalar ara belleğe alındı" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "%(count)d adet dosyanın yetkilendirmesi pasif hale getirildi." -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "%(count)d adet dosyanın yetkilendirmesi pasif hale getirildi." -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "Seçili dosyalar için yetkilendirmeyi aktif yap" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "Seçili dosyalar için yetkilendirmeyi pasif yap" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "%(count)d dosya veya klasörler başarıyla silindi" -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "Seçili dosya veya klasörler silinemedi" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "Eminmisiniz?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "Dosya veya klasörleri sil" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "Seçili dosya veya klasörleri sil" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "%s isimli klasörler seçili hedefte var." -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"%(count)d adet dosya/klasör başarıyla '%(destination)s' klasörüne taşındı" +msgstr "%(count)d adet dosya/klasör başarıyla '%(destination)s' klasörüne taşındı" -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "Dosya veya klasörleri taşı" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "Seçili dosya veya klasörleri taşı" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "%(count)d adet dosya yeniden adlandırıldı." -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "Dosyaları yeniden adlandır" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"%(count)d adet dosya veya klasör '%(destination)s' klasörüne kopyalandı" +msgstr "%(count)d adet dosya veya klasör '%(destination)s' klasörüne kopyalandı" -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "Dosya veya klasörleri kopyala" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "Seçili dosya veya klasörleri kopyala" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "%(count)d adet resim başarıyla yeniden boyutlandırıldı." -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "Resimleri yeniden boyutlandır" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "Seçili resimleri yeniden boyutlandır" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "" -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." msgstr "" -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "" -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "" -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "genişlil" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "yükseklik" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "kırp" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "" -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "Boyutlandırma parametreleri seçilmeli" - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "" @@ -464,6 +460,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -482,6 +479,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -494,6 +492,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -548,6 +547,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -676,8 +676,8 @@ msgstr "" #: templates/admin/filer/folder/choose_copy_destination.html:23 msgid "" -"Your account doesn't have permissions to copy all of the selected files and/" -"or folders." +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." msgstr "" #: templates/admin/filer/folder/choose_copy_destination.html:25 @@ -732,28 +732,24 @@ msgstr "" msgid "The following images will be resized:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "" #: templates/admin/filer/folder/choose_move_destination.html:35 msgid "" -"Your account doesn't have permissions to move all of the selected files and/" -"or folders." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." msgstr "" #: templates/admin/filer/folder/choose_move_destination.html:47 @@ -944,11 +940,13 @@ msgstr "aktif" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "" @@ -1010,10 +1008,12 @@ msgstr "%(total_count)s Tümünü seç" #: templates/admin/filer/folder/directory_thumbnail_list.html:15 #: templates/admin/filer/folder/directory_thumbnail_list.html:80 +#| msgid "Select this file" msgid "Select all" msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:77 +#| msgid "Filer" msgid "Files" msgstr "" @@ -1079,6 +1079,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1134,6 +1135,7 @@ msgid "Choose File" msgstr "Dosya Seç" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1159,6 +1161,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/vi_VN/LC_MESSAGES/django.mo b/filer/locale/vi_VN/LC_MESSAGES/django.mo index 80a7bf570..af2d28fda 100644 Binary files a/filer/locale/vi_VN/LC_MESSAGES/django.mo and b/filer/locale/vi_VN/LC_MESSAGES/django.mo differ diff --git a/filer/locale/vi_VN/LC_MESSAGES/django.po b/filer/locale/vi_VN/LC_MESSAGES/django.po index b33029a37..89e1c8542 100644 --- a/filer/locale/vi_VN/LC_MESSAGES/django.po +++ b/filer/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Translators: @@ -10,18 +10,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Duong Vu Hong , 2021\n" -"Language-Team: Vietnamese (Viet Nam) (http://app.transifex.com/divio/django-" -"filer/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://app.transifex.com/divio/django-filer/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -30,205 +31,195 @@ msgid "Can't find folder to upload. Please refresh and try again" msgstr "" #: admin/clipboardadmin.py:19 -msgid "Can't use this folder, Permission Denied. Please select another folder." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "Nâng Cao" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "URL hợp chuẩn" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." -msgstr "" -"Những item được chọn để thực hiện hành động trên đó. Không có item nào bị " -"thay đổi." +msgstr "Những item được chọn để thực hiện hành động trên đó. Không có item nào bị thay đổi." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" msgstr[0] "Tất cả %(total_count)s được chọn" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "Thư mục liệt kê cho %(folder_name)s" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "0 trên %(cnt)sđược chọn" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "Không có hành động được chọn" -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "Di chuyển %(count)dtệp vào bảng tạm thành công" -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "Di chuyển tệp đã chọn vào bảng tạm" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "Vô hiệu hóa quyền của %(count)dtệp thành công" -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "Kích hoạt quyền của %(count)dtệp thành công" -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "Kích hoạt quyền cho các tệp đã chọn" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "Vô hiệu hóa quyền của các tệp đã chọn" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "Đã xóa %(count)d tệp và/hoặc thư mục thành công. " -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "Không thể xóa các tệp và/hoặc các thư mục" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "Bạn chắc chắn chứ?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "Xóa các tệp và/hoặc các thư mục" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "Xóa các tệp và/hoặc các thư mục dã chọn" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "Các thư mục với tên %s đã tồn tại ở vị trí đã chọn" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"Đã di chuyển %(count)d tệp và/hoặc thư mục tới thư mục '%(destination)s'." +msgstr "Đã di chuyển %(count)d tệp và/hoặc thư mục tới thư mục '%(destination)s'." -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "Di chuyển tệp và/hoặc thư mục" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "Đã di chuyển tệp và/hoặc thư mục đã chọn" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "Đã thành công đổi tên %(count)d tệp." -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "Đổi tên tệp" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"Đã thành công sao chép %(count)d tệp và/hoặc thư mục tới thư mục " -"'%(destination)s'." +msgstr "Đã thành công sao chép %(count)d tệp và/hoặc thư mục tới thư mục '%(destination)s'." -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "Sao chép tệp và/hoặc thư mục" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "Sao chép tệp và/hoặc thư mục đã chọn" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "Đã thành công thay đổi kích thước %(count)d ảnh." -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "Thay đổi kích thước ảnh" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "Thay dổi kích thước ảnh đã chọn" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "Hậu tố sẽ được nối vào tên của tệp đã sao chép." -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." -msgstr "" -"Hậu tố phải là một phần tên tệp hợp lệ, đơn giản và chữ thường, như " -"\"%(valid)s\"." +msgstr "Hậu tố phải là một phần tên tệp hợp lệ, đơn giản và chữ thường, như \"%(valid)s\"." -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "Không biết định dạng đổi tên của khóa giá trị \"%(key)s\"." -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "Định dạng đổi tên không hợp lệ: %(error)s." -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "tùy chọn thumbnail" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "Độ rộng" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "Độ cao" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "Xén" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "cao cấp" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "Tùy chọn thumbnail hoặc tham số thay đổi kích thước phải được chọn." -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "Tham số thay đổi kích thước phải được chọn." - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "Vị trí chủ đề" @@ -374,9 +365,7 @@ msgstr "Quyền bị vô hiệu hóa" msgid "" "Disable any permission checking for this file. File will be publicly " "accessible to anyone." -msgstr "" -"Vô hiệu hóa bất kỳ quyền kiểm tra cho tệp này. Tệp sẽ truy cập được bởi bất " -"kỳ ai." +msgstr "Vô hiệu hóa bất kỳ quyền kiểm tra cho tệp này. Tệp sẽ truy cập được bởi bất kỳ ai." #: models/foldermodels.py:94 msgid "parent" @@ -469,6 +458,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -487,6 +477,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -499,6 +490,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -553,6 +545,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -620,25 +613,19 @@ msgid "" "Deleting the selected files and/or folders would result in deleting related " "objects, but your account doesn't have permission to delete the following " "types of objects:" -msgstr "" -"Xóa tệp và/hoặc thưc mục đã chọn sẽ dẫn đến xóa đối tượng liên quan, nhưng " -"tài khoản của bạn không có quyền xóa những loại của các đối tượng:" +msgstr "Xóa tệp và/hoặc thưc mục đã chọn sẽ dẫn đến xóa đối tượng liên quan, nhưng tài khoản của bạn không có quyền xóa những loại của các đối tượng:" #: templates/admin/filer/delete_selected_files_confirmation.html:19 msgid "" "Deleting the selected files and/or folders would require deleting the " "following protected related objects:" -msgstr "" -"Xóa tệp và/hoặc thư mục đã chọn sẽ yêu cầu xóa những đối tượng liên quan " -"được bảo vệ sau:" +msgstr "Xóa tệp và/hoặc thư mục đã chọn sẽ yêu cầu xóa những đối tượng liên quan được bảo vệ sau:" #: templates/admin/filer/delete_selected_files_confirmation.html:27 msgid "" "Are you sure you want to delete the selected files and/or folders? All of " "the following objects and their related items will be deleted:" -msgstr "" -"Bạn có chắc muốn xóa tệp và/hoặc thư mục đã chọn? Tất cả những đối tượng và " -"những thứ liên quan đến chúng sẽ bị xóa:" +msgstr "Bạn có chắc muốn xóa tệp và/hoặc thư mục đã chọn? Tất cả những đối tượng và những thứ liên quan đến chúng sẽ bị xóa:" #: templates/admin/filer/delete_selected_files_confirmation.html:46 #: templates/admin/filer/folder/choose_copy_destination.html:64 @@ -687,10 +674,9 @@ msgstr "Biểu tượng thư mục" #: templates/admin/filer/folder/choose_copy_destination.html:23 msgid "" -"Your account doesn't have permissions to copy all of the selected files and/" -"or folders." -msgstr "" -"Tài khoản của bạn không có quyền để sao chép tất cả tệp và thư mục được chọn." +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." +msgstr "Tài khoản của bạn không có quyền để sao chép tất cả tệp và thư mục được chọn." #: templates/admin/filer/folder/choose_copy_destination.html:25 #: templates/admin/filer/folder/choose_copy_destination.html:31 @@ -714,9 +700,7 @@ msgstr "Không có tệp và/hoặc thư mục để sao chép." msgid "" "The following files and/or folders will be copied to a destination folder " "(retaining their tree structure):" -msgstr "" -"Những tệp và thư mục sau sẽ được sao chép tới một thư mục đích (giữ cấu trúc " -"cây thư mục):" +msgstr "Những tệp và thư mục sau sẽ được sao chép tới một thư mục đích (giữ cấu trúc cây thư mục):" #: templates/admin/filer/folder/choose_copy_destination.html:54 #: templates/admin/filer/folder/choose_move_destination.html:64 @@ -736,9 +720,7 @@ msgstr "Không cho phép sao chép tệp tới cùng thư mục" #: templates/admin/filer/folder/choose_images_resize_options.html:15 msgid "" "Your account doesn't have permissions to resize all of the selected images." -msgstr "" -"Tài khoản của bạn không có quyền để thay đổi kích thước của tất cả hình ảnh " -"đã chọn." +msgstr "Tài khoản của bạn không có quyền để thay đổi kích thước của tất cả hình ảnh đã chọn." #: templates/admin/filer/folder/choose_images_resize_options.html:18 msgid "There are no images available to resize." @@ -748,35 +730,25 @@ msgstr "Không có hình ảnh để thay dổi kích thước" msgid "The following images will be resized:" msgstr "Hình ảnh dưới đay sẽ bị thay đổi kích thước:" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" -msgstr "" -"Chọn một tùy chọn của thumbnail đang tồn tại hoặc nhập tham số thay đổi kích " -"thước:" - -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "Chọn tham số thay dổi kích thước:" +msgstr "Chọn một tùy chọn của thumbnail đang tồn tại hoặc nhập tham số thay đổi kích thước:" -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." -msgstr "" -"Cảnh bảo: Hình ảnh sẽ bị thay đổi tại chỗ và ảnh gốc sẽ bị mất. Có thể tạo " -"một sao chép của chúng để giữ lại hình ảnh gốc." +msgstr "Cảnh bảo: Hình ảnh sẽ bị thay đổi tại chỗ và ảnh gốc sẽ bị mất. Có thể tạo một sao chép của chúng để giữ lại hình ảnh gốc." -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "Thay đổi kích thước" #: templates/admin/filer/folder/choose_move_destination.html:35 msgid "" -"Your account doesn't have permissions to move all of the selected files and/" -"or folders." -msgstr "" -"Tài khoản của bạn không có quyền để di chuyển tất cả các tệp và thư mục đã " -"chọn." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." +msgstr "Tài khoản của bạn không có quyền để di chuyển tất cả các tệp và thư mục đã chọn." #: templates/admin/filer/folder/choose_move_destination.html:47 msgid "There are no files and/or folders available to move." @@ -786,9 +758,7 @@ msgstr "Không có tệp và/hoặc thư mục để di chuyển." msgid "" "The following files and/or folders will be moved to a destination folder " "(retaining their tree structure):" -msgstr "" -"Tệp và thư mục dưới đây sẽ được chuyển tới thư mục đích (giữ nguyên cấu trúc " -"cây thư mục):" +msgstr "Tệp và thư mục dưới đây sẽ được chuyển tới thư mục đích (giữ nguyên cấu trúc cây thư mục):" #: templates/admin/filer/folder/choose_move_destination.html:73 #: templates/admin/filer/folder/choose_move_destination.html:76 @@ -813,9 +783,7 @@ msgstr "Không có tệp để đổi tên." msgid "" "The following files will be renamed (they will stay in their folders and " "keep original filename, only displayed filename will be changed):" -msgstr "" -"Tệp dưới đây sẽ bị đổi tên (chúng vẫn ở trong thư mục của chúng và giữ tên " -"gốc, chỉ tên hiển thị sẽ bị thay đổi):" +msgstr "Tệp dưới đây sẽ bị đổi tên (chúng vẫn ở trong thư mục của chúng và giữ tên gốc, chỉ tên hiển thị sẽ bị thay đổi):" #: templates/admin/filer/folder/choose_rename_format.html:59 msgid "Rename" @@ -968,11 +936,13 @@ msgstr "đã kích hoạt" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "Url hợp chuẩn '%(item_label)s'" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "Tải '%(item_label)s'" @@ -1034,10 +1004,12 @@ msgstr "Chọn tất cả %(total_count)s" #: templates/admin/filer/folder/directory_thumbnail_list.html:15 #: templates/admin/filer/folder/directory_thumbnail_list.html:80 +#| msgid "Select this file" msgid "Select all" msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:77 +#| msgid "Filer" msgid "Files" msgstr "" @@ -1102,6 +1074,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1157,6 +1130,7 @@ msgid "Choose File" msgstr "Chọn tệp" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1182,6 +1156,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/zh-Hans/LC_MESSAGES/django.mo b/filer/locale/zh-Hans/LC_MESSAGES/django.mo index d4d88d87f..3ca706516 100644 Binary files a/filer/locale/zh-Hans/LC_MESSAGES/django.mo and b/filer/locale/zh-Hans/LC_MESSAGES/django.mo differ diff --git a/filer/locale/zh-Hans/LC_MESSAGES/django.po b/filer/locale/zh-Hans/LC_MESSAGES/django.po index 6d48fb57a..20e70e4d0 100644 --- a/filer/locale/zh-Hans/LC_MESSAGES/django.po +++ b/filer/locale/zh-Hans/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-28 19:25+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: node uuz , 2019\n" "Language-Team: Chinese Simplified (http://app.transifex.com/divio/django-filer/language/zh-Hans/)\n" @@ -36,195 +36,191 @@ msgid "" "Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:45 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "高级" -#: admin/fileadmin.py:160 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "权威URL" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." msgstr "要对执行此操作,必须选择项目。没有项目被更改。" -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" msgstr[0] "选择了 %(total_count)s 个" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "%(folder_name)s文件夹列表" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "选择了 %(cnt)s 中的 0 个" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "没有选择任何动作。" -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "成功将 %(count)d 个文件移动到剪贴板。" -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "移动所选文件到剪贴板" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "成功禁用了权限设置(%(count)d 个文件)。" -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "成功启用了权限设置(%(count)d 个文件)。" -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "对于所选文件,启用权限设置" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "对于所选文件,禁用权限设置" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "成功删除了 %(count)d 个文件或目录" -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "目录或文件删除失败" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "确定吗?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "删除文件或目录" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "删除所选的文件或目录" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "所选的位置已存在名为 %s 的目录" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "成功移动 %(count)d 个文件或目录到 '%(destination)s'。" -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "移动目录或文件" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "移动所选的目录或文件" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "成功重命名 %(count)d 个文件。" -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "重命名文件" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "成功将 %(count)d 个文件或目录复制到 '%(destination)s'。" -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "复制文件或目录" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "复制所选的文件或目录" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "成功缩放 %(count)d 个图片。" -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "缩放图片" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "缩放所选的图片" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "所复制文件的文件名将会加上后缀。" -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." msgstr "后缀应该类似 \"%(valid)s\",是简单、小写的部分文件名称" -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "未知重命名格式: \"%(key)s\"." -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "无效的重命名格式:%(error)s 。" -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "缩略图选项" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "宽" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "高" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "裁剪" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "修改分辨率" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "必须选择缩略图选项或缩放参数。" -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "必须选择缩放参数。" - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "主题位置" @@ -246,11 +242,11 @@ msgstr "主题位置超出了图片范围" msgid "Your input: \"{subject_location}\". " msgstr "你输入的:\"{subject_location}\"。" -#: admin/permissionadmin.py:10 models/foldermodels.py:379 +#: admin/permissionadmin.py:10 models/foldermodels.py:380 msgid "Who" msgstr "" -#: admin/permissionadmin.py:11 models/foldermodels.py:400 +#: admin/permissionadmin.py:11 models/foldermodels.py:401 msgid "What" msgstr "" @@ -258,7 +254,7 @@ msgstr "" msgid "Folder with this name already exists." msgstr "这个名称的目录已经存在。" -#: apps.py:9 templates/admin/filer/breadcrumbs.html:5 +#: apps.py:11 templates/admin/filer/breadcrumbs.html:5 #: templates/admin/filer/folder/change_form.html:7 #: templates/admin/filer/folder/directory_listing.html:33 msgid "Filer" @@ -288,7 +284,7 @@ msgstr "图片" msgid "images" msgstr "图片" -#: models/clipboardmodels.py:11 models/foldermodels.py:288 +#: models/clipboardmodels.py:11 models/foldermodels.py:289 msgid "user" msgstr "用户" @@ -318,7 +314,7 @@ msgid "clipboard items" msgstr "剪贴板对象" #: models/filemodels.py:66 templates/admin/filer/folder/change_form.html:8 -#: templates/admin/filer/folder/directory_listing.html:104 +#: templates/admin/filer/folder/directory_listing.html:102 #: templates/admin/filer/folder/new_folder_form.html:4 #: templates/admin/filer/folder/new_folder_form.html:7 #: templates/admin/filer/tools/clipboard/clipboard.html:27 @@ -341,7 +337,7 @@ msgstr "存在强制性数据" msgid "original filename" msgstr "原始文件名" -#: models/filemodels.py:110 models/foldermodels.py:101 +#: models/filemodels.py:110 models/foldermodels.py:102 #: models/thumbnailoptionmodels.py:10 msgid "name" msgstr "名称" @@ -350,15 +346,15 @@ msgstr "名称" msgid "description" msgstr "描述" -#: models/filemodels.py:125 models/foldermodels.py:107 +#: models/filemodels.py:125 models/foldermodels.py:108 msgid "owner" msgstr "所有者" -#: models/filemodels.py:129 models/foldermodels.py:115 +#: models/filemodels.py:129 models/foldermodels.py:116 msgid "uploaded at" msgstr "上传于" -#: models/filemodels.py:134 models/foldermodels.py:125 +#: models/filemodels.py:134 models/foldermodels.py:126 msgid "modified at" msgstr "修改于" @@ -372,112 +368,129 @@ msgid "" "accessible to anyone." msgstr "对此文件禁用所有权限设置。此文件将可以被任何人公开访问。" -#: models/foldermodels.py:93 +#: models/foldermodels.py:94 msgid "parent" msgstr "" -#: models/foldermodels.py:120 +#: models/foldermodels.py:121 msgid "created at" msgstr "创建于" -#: models/foldermodels.py:135 +#: models/foldermodels.py:136 templates/admin/filer/breadcrumbs.html:6 +#: templates/admin/filer/folder/directory_listing.html:35 msgid "Folder" msgstr "目录" -#: models/foldermodels.py:136 +#: models/foldermodels.py:137 #: templates/admin/filer/folder/directory_thumbnail_list.html:12 msgid "Folders" msgstr "目录" -#: models/foldermodels.py:259 +#: models/foldermodels.py:260 msgid "all items" msgstr "所有项目" -#: models/foldermodels.py:260 +#: models/foldermodels.py:261 msgid "this item only" msgstr "仅此项目" -#: models/foldermodels.py:261 +#: models/foldermodels.py:262 msgid "this item and all children" msgstr "此项目和所有子项目" -#: models/foldermodels.py:265 +#: models/foldermodels.py:266 msgid "inherit" msgstr "" -#: models/foldermodels.py:266 +#: models/foldermodels.py:267 msgid "allow" msgstr "允许" -#: models/foldermodels.py:267 +#: models/foldermodels.py:268 msgid "deny" msgstr "拒绝" -#: models/foldermodels.py:279 +#: models/foldermodels.py:280 msgid "type" msgstr "类型" -#: models/foldermodels.py:296 +#: models/foldermodels.py:297 msgid "group" msgstr "组" -#: models/foldermodels.py:303 +#: models/foldermodels.py:304 msgid "everybody" msgstr "所有人" -#: models/foldermodels.py:308 +#: models/foldermodels.py:309 msgid "can read" msgstr "可读" -#: models/foldermodels.py:316 +#: models/foldermodels.py:317 msgid "can edit" msgstr "可编辑" -#: models/foldermodels.py:324 +#: models/foldermodels.py:325 msgid "can add children" msgstr "可增加子项目" -#: models/foldermodels.py:332 +#: models/foldermodels.py:333 msgid "folder permission" msgstr "目录权限" -#: models/foldermodels.py:333 +#: models/foldermodels.py:334 msgid "folder permissions" msgstr "目录权限" -#: models/foldermodels.py:359 +#: models/foldermodels.py:348 +msgid "Folder cannot be selected with type \"all items\"." +msgstr "" + +#: models/foldermodels.py:350 +msgid "Folder has to be selected when type is not \"all items\"." +msgstr "" + +#: models/foldermodels.py:352 +msgid "User or group cannot be selected together with \"everybody\"." +msgstr "" + +#: models/foldermodels.py:354 +msgid "At least one of user, group, or \"everybody\" has to be selected." +msgstr "" + +#: models/foldermodels.py:360 #| msgid "Folders" msgid "All Folders" msgstr "" -#: models/foldermodels.py:361 +#: models/foldermodels.py:362 msgid "Logical Path" msgstr "" -#: models/foldermodels.py:370 +#: models/foldermodels.py:371 #, python-brace-format msgid "User: {user}" msgstr "" -#: models/foldermodels.py:372 +#: models/foldermodels.py:373 #, python-brace-format msgid "Group: {group}" msgstr "" -#: models/foldermodels.py:374 +#: models/foldermodels.py:375 #| msgid "everybody" msgid "Everybody" msgstr "" -#: models/foldermodels.py:387 templates/admin/filer/widgets/admin_file.html:45 +#: models/foldermodels.py:388 templates/admin/filer/widgets/admin_file.html:45 msgid "Edit" msgstr "" -#: models/foldermodels.py:388 +#: models/foldermodels.py:389 msgid "Read" msgstr "" -#: models/foldermodels.py:389 +#: models/foldermodels.py:390 #| msgid "can add children" msgid "Add children" msgstr "" @@ -523,10 +536,8 @@ msgstr "未分类的上传" msgid "files with missing metadata" msgstr "确实元数据的文件" -#: models/virtualitems.py:87 templates/admin/filer/breadcrumbs.html:7 -#: templates/admin/filer/folder/change_form.html:8 -#: templates/admin/filer/folder/directory_listing.html:37 -#: templates/admin/filer/folder/directory_listing.html:104 +#: models/virtualitems.py:87 templates/admin/filer/folder/change_form.html:8 +#: templates/admin/filer/folder/directory_listing.html:102 msgid "root" msgstr "根目录" @@ -580,16 +591,16 @@ msgstr "首页" msgid "Go back to Filer app" msgstr "回到文件管理器首页" -#: templates/admin/filer/breadcrumbs.html:7 -#: templates/admin/filer/folder/directory_listing.html:37 +#: templates/admin/filer/breadcrumbs.html:6 +#: templates/admin/filer/folder/directory_listing.html:35 msgid "Go back to root folder" msgstr "回到根目录" -#: templates/admin/filer/breadcrumbs.html:10 -#: templates/admin/filer/breadcrumbs.html:20 +#: templates/admin/filer/breadcrumbs.html:8 +#: templates/admin/filer/breadcrumbs.html:18 #: templates/admin/filer/folder/change_form.html:10 -#: templates/admin/filer/folder/directory_listing.html:42 -#: templates/admin/filer/folder/directory_listing.html:49 +#: templates/admin/filer/folder/directory_listing.html:39 +#: templates/admin/filer/folder/directory_listing.html:47 #, python-format msgid "Go back to '%(folder_name)s' folder" msgstr "回到 '%(folder_name)s' 目录" @@ -642,7 +653,7 @@ msgstr "查看站点" #: templates/admin/filer/folder/change_form.html:6 #: templates/admin/filer/folder/change_form.html:7 #: templates/admin/filer/folder/change_form.html:8 -#: templates/admin/filer/folder/directory_listing.html:104 +#: templates/admin/filer/folder/directory_listing.html:102 msgid "Go back to" msgstr "后退到" @@ -651,8 +662,8 @@ msgid "admin homepage" msgstr "管理首页" #: templates/admin/filer/folder/change_form.html:37 -#: templates/admin/filer/folder/directory_listing.html:97 -#: templates/admin/filer/folder/directory_listing.html:105 +#: templates/admin/filer/folder/directory_listing.html:95 +#: templates/admin/filer/folder/directory_listing.html:103 #: templates/admin/filer/folder/directory_table_list.html:29 #: templates/admin/filer/folder/directory_table_list.html:59 #: templates/admin/filer/folder/directory_table_list.html:178 @@ -699,7 +710,7 @@ msgstr "目标目录:" #: templates/admin/filer/folder/choose_copy_destination.html:65 #: templates/admin/filer/folder/choose_copy_destination.html:68 -#: templates/admin/filer/folder/directory_listing.html:180 +#: templates/admin/filer/folder/directory_listing.html:178 msgid "Copy" msgstr "复制" @@ -720,21 +731,17 @@ msgstr "没有图片可缩放。" msgid "The following images will be resized:" msgstr "以下图片将被缩放:" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" msgstr "选择一个缩略图选项或输入缩放参数:" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "缩放参数:" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." msgstr "警告:图片将被缩放,并且源文件将被覆盖。你应该先将它们做个备份。" -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "缩放" @@ -756,7 +763,7 @@ msgstr "以下的文件将移动到目标目录(包含它们的树结构):" #: templates/admin/filer/folder/choose_move_destination.html:73 #: templates/admin/filer/folder/choose_move_destination.html:76 -#: templates/admin/filer/folder/directory_listing.html:183 +#: templates/admin/filer/folder/directory_listing.html:181 msgid "Move" msgstr "移动" @@ -783,63 +790,63 @@ msgstr "以下文件将被重命名(源文件不变,只是显示名称被修 msgid "Rename" msgstr "重命名" -#: templates/admin/filer/folder/directory_listing.html:96 +#: templates/admin/filer/folder/directory_listing.html:94 msgid "Go back to the parent folder" msgstr "回到父目录" -#: templates/admin/filer/folder/directory_listing.html:133 +#: templates/admin/filer/folder/directory_listing.html:131 msgid "Change current folder details" msgstr "修改当前目录属性" -#: templates/admin/filer/folder/directory_listing.html:133 +#: templates/admin/filer/folder/directory_listing.html:131 msgid "Change" msgstr "修改" -#: templates/admin/filer/folder/directory_listing.html:143 +#: templates/admin/filer/folder/directory_listing.html:141 msgid "Click here to run search for entered phrase" msgstr "点击开始搜索" -#: templates/admin/filer/folder/directory_listing.html:146 +#: templates/admin/filer/folder/directory_listing.html:144 msgid "Search" msgstr "搜索" -#: templates/admin/filer/folder/directory_listing.html:153 +#: templates/admin/filer/folder/directory_listing.html:151 msgid "Close" msgstr "关闭" -#: templates/admin/filer/folder/directory_listing.html:155 +#: templates/admin/filer/folder/directory_listing.html:153 msgid "Limit" msgstr "限定" -#: templates/admin/filer/folder/directory_listing.html:160 +#: templates/admin/filer/folder/directory_listing.html:158 msgid "Check it to limit the search to current folder" msgstr "将搜索限定在当前目录" -#: templates/admin/filer/folder/directory_listing.html:161 +#: templates/admin/filer/folder/directory_listing.html:159 msgid "Limit the search to current folder" msgstr "将搜索限定在当前目录" -#: templates/admin/filer/folder/directory_listing.html:177 +#: templates/admin/filer/folder/directory_listing.html:175 msgid "Delete" msgstr "删除" -#: templates/admin/filer/folder/directory_listing.html:205 +#: templates/admin/filer/folder/directory_listing.html:203 msgid "Adds a new Folder" msgstr "新增一个目录" -#: templates/admin/filer/folder/directory_listing.html:208 +#: templates/admin/filer/folder/directory_listing.html:206 msgid "New Folder" msgstr "新增目录" -#: templates/admin/filer/folder/directory_listing.html:213 -#: templates/admin/filer/folder/directory_listing.html:220 -#: templates/admin/filer/folder/directory_listing.html:223 -#: templates/admin/filer/folder/directory_listing.html:230 -#: templates/admin/filer/folder/directory_listing.html:237 +#: templates/admin/filer/folder/directory_listing.html:211 +#: templates/admin/filer/folder/directory_listing.html:218 +#: templates/admin/filer/folder/directory_listing.html:221 +#: templates/admin/filer/folder/directory_listing.html:228 +#: templates/admin/filer/folder/directory_listing.html:235 msgid "Upload Files" msgstr "上传文件" -#: templates/admin/filer/folder/directory_listing.html:235 +#: templates/admin/filer/folder/directory_listing.html:233 msgid "You have to select a folder first" msgstr "必须先选择一个目录" @@ -1067,7 +1074,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 -#: templatetags/filer_admin_tags.py:101 +#: templatetags/filer_admin_tags.py:107 #| msgid "file missing" msgid "File is missing" msgstr "" @@ -1150,6 +1157,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/zh/LC_MESSAGES/django.po b/filer/locale/zh/LC_MESSAGES/django.po index 05bbbbae8..de027e97a 100644 --- a/filer/locale/zh/LC_MESSAGES/django.po +++ b/filer/locale/zh/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Translators: @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Angelo Dini \n" -"Language-Team: Chinese (http://app.transifex.com/divio/django-filer/language/" -"zh/)\n" -"Language: zh\n" +"Language-Team: Chinese (http://app.transifex.com/divio/django-filer/language/zh/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -29,198 +30,195 @@ msgid "Can't find folder to upload. Please refresh and try again" msgstr "" #: admin/clipboardadmin.py:19 -msgid "Can't use this folder, Permission Denied. Please select another folder." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." msgstr "" -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" msgstr[0] "" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "" -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "" -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "" -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "" -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "" -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "" -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." msgstr "" -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "" -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "" -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "" -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "" - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "" @@ -459,6 +457,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -477,6 +476,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -489,6 +489,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -543,6 +544,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -671,8 +673,8 @@ msgstr "" #: templates/admin/filer/folder/choose_copy_destination.html:23 msgid "" -"Your account doesn't have permissions to copy all of the selected files and/" -"or folders." +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." msgstr "" #: templates/admin/filer/folder/choose_copy_destination.html:25 @@ -727,28 +729,24 @@ msgstr "" msgid "The following images will be resized:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "" #: templates/admin/filer/folder/choose_move_destination.html:35 msgid "" -"Your account doesn't have permissions to move all of the selected files and/" -"or folders." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." msgstr "" #: templates/admin/filer/folder/choose_move_destination.html:47 @@ -937,11 +935,13 @@ msgstr "" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "" @@ -1003,10 +1003,12 @@ msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:15 #: templates/admin/filer/folder/directory_thumbnail_list.html:80 +#| msgid "Select this file" msgid "Select all" msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:77 +#| msgid "Filer" msgid "Files" msgstr "" @@ -1071,6 +1073,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1126,6 +1129,7 @@ msgid "Choose File" msgstr "" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1151,6 +1155,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/zh_CN/LC_MESSAGES/django.po b/filer/locale/zh_CN/LC_MESSAGES/django.po index 5dc7b4114..6b02d8c3f 100644 --- a/filer/locale/zh_CN/LC_MESSAGES/django.po +++ b/filer/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Translators: @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Angelo Dini \n" -"Language-Team: Chinese (China) (http://app.transifex.com/divio/django-filer/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://app.transifex.com/divio/django-filer/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -29,198 +30,195 @@ msgid "Can't find folder to upload. Please refresh and try again" msgstr "" #: admin/clipboardadmin.py:19 -msgid "Can't use this folder, Permission Denied. Please select another folder." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." msgstr "" -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" msgstr[0] "" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "" -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "" -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "" -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "" -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "" -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "" -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." msgstr "" -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "" -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "" -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "" -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "" - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "" @@ -459,6 +457,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -477,6 +476,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -489,6 +489,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -543,6 +544,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -671,8 +673,8 @@ msgstr "" #: templates/admin/filer/folder/choose_copy_destination.html:23 msgid "" -"Your account doesn't have permissions to copy all of the selected files and/" -"or folders." +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." msgstr "" #: templates/admin/filer/folder/choose_copy_destination.html:25 @@ -727,28 +729,24 @@ msgstr "" msgid "The following images will be resized:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "" #: templates/admin/filer/folder/choose_move_destination.html:35 msgid "" -"Your account doesn't have permissions to move all of the selected files and/" -"or folders." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." msgstr "" #: templates/admin/filer/folder/choose_move_destination.html:47 @@ -937,11 +935,13 @@ msgstr "" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "" @@ -1003,10 +1003,12 @@ msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:15 #: templates/admin/filer/folder/directory_thumbnail_list.html:80 +#| msgid "Select this file" msgid "Select all" msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:77 +#| msgid "Filer" msgid "Files" msgstr "" @@ -1071,6 +1073,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1126,6 +1129,7 @@ msgid "Choose File" msgstr "" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1151,6 +1155,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/zh_TW/LC_MESSAGES/django.po b/filer/locale/zh_TW/LC_MESSAGES/django.po index 29f4d8c5e..15f3a53c2 100644 --- a/filer/locale/zh_TW/LC_MESSAGES/django.po +++ b/filer/locale/zh_TW/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Translators: @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Angelo Dini \n" -"Language-Team: Chinese (Taiwan) (http://app.transifex.com/divio/django-filer/" -"language/zh_TW/)\n" -"Language: zh_TW\n" +"Language-Team: Chinese (Taiwan) (http://app.transifex.com/divio/django-filer/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -29,198 +30,195 @@ msgid "Can't find folder to upload. Please refresh and try again" msgstr "" #: admin/clipboardadmin.py:19 -msgid "Can't use this folder, Permission Denied. Please select another folder." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." msgstr "" -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" msgstr[0] "" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "" -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "" -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "" -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "" -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "" -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "" -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." msgstr "" -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "" -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "" -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "" -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "" - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "" @@ -459,6 +457,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -477,6 +476,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -489,6 +489,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -543,6 +544,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -671,8 +673,8 @@ msgstr "" #: templates/admin/filer/folder/choose_copy_destination.html:23 msgid "" -"Your account doesn't have permissions to copy all of the selected files and/" -"or folders." +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." msgstr "" #: templates/admin/filer/folder/choose_copy_destination.html:25 @@ -727,28 +729,24 @@ msgstr "" msgid "The following images will be resized:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "" #: templates/admin/filer/folder/choose_move_destination.html:35 msgid "" -"Your account doesn't have permissions to move all of the selected files and/" -"or folders." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." msgstr "" #: templates/admin/filer/folder/choose_move_destination.html:47 @@ -937,11 +935,13 @@ msgstr "" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "" @@ -1003,10 +1003,12 @@ msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:15 #: templates/admin/filer/folder/directory_thumbnail_list.html:80 +#| msgid "Select this file" msgid "Select all" msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:77 +#| msgid "Filer" msgid "Files" msgstr "" @@ -1071,6 +1073,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1126,6 +1129,7 @@ msgid "Choose File" msgstr "" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1151,6 +1155,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/settings.py b/filer/settings.py index 26b5d18b1..bf1391540 100644 --- a/filer/settings.py +++ b/filer/settings.py @@ -3,7 +3,7 @@ from django.conf import settings from django.core.exceptions import ImproperlyConfigured -from django.core.files.storage import get_storage_class +from django.utils.module_loading import import_string as get_storage_class from django.utils.translation import gettext_lazy as _ from .utils.loader import load_object diff --git a/filer/templates/admin/filer/folder/choose_copy_destination.html b/filer/templates/admin/filer/folder/choose_copy_destination.html index 566912686..6981a6062 100644 --- a/filer/templates/admin/filer/folder/choose_copy_destination.html +++ b/filer/templates/admin/filer/folder/choose_copy_destination.html @@ -58,7 +58,7 @@ {% endfor %}

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

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

- {% else %} -

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

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

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

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

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

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

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

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

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

There are no destination folders available.

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

There are no destination folders available.

') + + folder = Folder.objects.create(name="My Image Folder") + response = self.client.post(self.url, {"action": ["copy_files_and_folders"], **self.payload}) + self.assertContains(response, ' ') + + folder.delete() + + def test_resize_form(self): + response = self.client.post(self.url, {"action": ["resize_images"], **self.payload}) + self.assertContains(response, 'Warning: Images will be resized in-place and originals will be lost.') + self.assertContains(response, '
') diff --git a/tox.ini b/tox.ini index 1d7d7e714..f81e1db80 100644 --- a/tox.ini +++ b/tox.ini @@ -6,6 +6,7 @@ envlist = frontend py{38,39,310}-dj32-{swap,noswap} py{38,39,310,311}-{dj40,dj41,dj42}-{swap,noswap} + py{310,311}-{dj50}-{swap,noswap} [gh-actions] python = @@ -22,6 +23,7 @@ deps = dj40: -r tests/requirements/django-4.0.txt dj41: -r tests/requirements/django-4.1.txt dj42: -r tests/requirements/django-4.2.txt + dj50: -r tests/requirements/django-5.0.txt commands = {envpython} --version {env:COMMAND:coverage} erase