From c3ab24be1ca4456253bf1bfd969e57add35188eb Mon Sep 17 00:00:00 2001
From: Fabian Braun s with help text formated for admin."
- return self._html_output(
- normal_row=' %(label)s %(field)s
%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 Dinirow8 zhT1EuP#sufk2j+>?JnCsg)y}MVeLfSKah=~`#8O+#8HX12U1a+Efe*@@z#l`5l+Rc zaW?Yz+blR^Iv0g+S|1auuzo3@7iae$FU(>8ztfCJ*PF_-jqFt>~ zu2RF6CHS Er>jgY@M2{_+mLXA-_m&7a9e zGJ~kJyO`~`m+&_F|3>h3nLT7T=_;92ipWhwv(-$xik5k6R|6Lj=Q?|!tlJ5#TPk^r zj3$2~Dg#|ifpsnF^;0=PR{CrFBNgwp^;YX$c)zVL#WzW=)?Z&N^+db;HZqtjCR2!t zHd|NufXXt$CN`T1ueHA%=l2m?*V~}-sEav>j}RZ}PwpXIB}D75QcUzmV;UJrW|1dI z5cvzqAkUImqSAvjkZaVSl#u(#dXh(OCVH*cktXsaQJGKfAo?zOp1h~$e?(OD&DOnS z)2JY~lUMACKzxjBB3sCZq DpMNo^+(-(^8sZ^G$s7_&ZY9UaGbEC< zkbI)@0@+2TlQuG_rL)h#z~GAN>YDPFAEMfOuASqJZ+Sg#U1U&MxvynVN^xlVou$6g zs`5p?I`0BswYR>i{ki#d-o@qfD(6<$EUNTYJy_HBs<*7|&?4{Rx-wtew)u6bEep~= G4EsOWhRhiN diff --git a/filer/locale/cs/LC_MESSAGES/django.po b/filer/locale/cs/LC_MESSAGES/django.po index 948960e99..873cfdde5 100644 --- a/filer/locale/cs/LC_MESSAGES/django.po +++ b/filer/locale/cs/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Translators: @@ -11,19 +11,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Jakub Dorňák , 2020\n" -"Language-Team: Czech (http://app.transifex.com/divio/django-filer/language/" -"cs/)\n" -"Language: cs\n" +"Language-Team: Czech (http://app.transifex.com/divio/django-filer/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " -"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -32,24 +32,25 @@ msgid "Can't find folder to upload. Please refresh and try again" msgstr "" #: admin/clipboardadmin.py:19 -msgid "Can't use this folder, Permission Denied. Please select another folder." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "Pokročilé" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "kanonický odkaz" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." msgstr "Nejdříve vyberte položku, která má být změněna." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" @@ -58,182 +59,170 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "Výpis složky %(folder_name)s" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "žádná položka z %(cnt)s není vybrána" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "Nebyla vybrána žádná operace." -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "Soubory (%(count)d) byly přesunuty do schránky." -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "Přesunout vybrané soubory do schránky" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "Pro vybrané soubory (%(count)d) byla deaktivována oprávnění." -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "Pro vybrané soubory (%(count)d) byla aktivována oprávnění." -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "Aktivovat oprávnění pro vybrané soubory" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "Deaktivovat oprávnění pro vybrané soubory" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "Vybrané soubory a/nebo složky (%(count)d) byly smazány." -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "Nemohu smazat soubory a/nebo složky" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "Opravdu provést?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "Smazat soubory a/nebo složky" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "Smazat vybrané soubory a/nebo složky" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "Složky pojmenované %s již v cílové složce existují" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"Vybrané soubory a/nebo složky (%(count)d) byly přesunuty do složky " -"'%(destination)s'." +msgstr "Vybrané soubory a/nebo složky (%(count)d) byly přesunuty do složky '%(destination)s'." -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "Přesunout soubory a/nebo složky" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "Přesunout vybrané soubory a/nebo složky" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "Soubory (%(count)d) vyly přejmenovány." -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "Přejmenovat soubory" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"Soubory a/nebo složky (%(count)d) byly zkopírovány do složky " -"'%(destination)s'." +msgstr "Soubory a/nebo složky (%(count)d) byly zkopírovány do složky '%(destination)s'." -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "Kopírovat soubory a/nebo složky" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "Kopírovat vybrané soubory a/nebo složky" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "Velikost obrázků (%(count)d) byla změněna." -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "Změnit velikost obrázků" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "Změnit velikost vybraných obrázků" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "Koncovka, která bude přidána ke jménům kopírovaných souborů." -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." -msgstr "" -"Koncovka by měla být jednoduchá součást názvu souboru malými písmeny, " -"například \"%(valid)s\"." +msgstr "Koncovka by měla být jednoduchá součást názvu souboru malými písmeny, například \"%(valid)s\"." -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "Neznámý formát klíče pro přejmenování \"%(key)s\"." -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "Špatný formát přejmenování: %(error)s." -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "volby náhledu" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "šířka" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "výška" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "oříznout" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "zvětšit" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." -msgstr "" -"Musíte vybrat předdefinované volby náhledu nebo nastavit jednotlivé " -"parametry." - -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "Parametry pro změny velikosti musí být vybrány." +msgstr "Musíte vybrat předdefinované volby náhledu nebo nastavit jednotlivé parametry." #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" @@ -380,9 +369,7 @@ msgstr "Oprávnění neaktivní" msgid "" "Disable any permission checking for this file. File will be publicly " "accessible to anyone." -msgstr "" -"Deaktivovat veškerá oprávnění pro tento soubor. Soubor bude komukoli veřejně " -"dostupný." +msgstr "Deaktivovat veškerá oprávnění pro tento soubor. Soubor bude komukoli veřejně dostupný." #: models/foldermodels.py:94 msgid "parent" @@ -475,6 +462,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -493,6 +481,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -505,6 +494,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -559,6 +549,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -626,26 +617,19 @@ msgid "" "Deleting the selected files and/or folders would result in deleting related " "objects, but your account doesn't have permission to delete the following " "types of objects:" -msgstr "" -"Smazání vybraných souborů a/nebo složek bude mít za následek smazání všech " -"přidružených objektů, nicméně ke smazání následujících objektů nemáte " -"oprávnění:" +msgstr "Smazání vybraných souborů a/nebo složek bude mít za následek smazání všech přidružených objektů, nicméně ke smazání následujících objektů nemáte oprávnění:" #: templates/admin/filer/delete_selected_files_confirmation.html:19 msgid "" "Deleting the selected files and/or folders would require deleting the " "following protected related objects:" -msgstr "" -"Smazání vybraných souborů a/nebo složek bude mít za následek smazání " -"následujících přidružených objektů:" +msgstr "Smazání vybraných souborů a/nebo složek bude mít za následek smazání následujících přidružených objektů:" #: templates/admin/filer/delete_selected_files_confirmation.html:27 msgid "" "Are you sure you want to delete the selected files and/or folders? All of " "the following objects and their related items will be deleted:" -msgstr "" -"Opravdu chcete smazat vybrané soubory a složky? Všechny následující objekty " -"budou smazány:" +msgstr "Opravdu chcete smazat vybrané soubory a složky? Všechny následující objekty budou smazány:" #: templates/admin/filer/delete_selected_files_confirmation.html:46 #: templates/admin/filer/folder/choose_copy_destination.html:64 @@ -694,8 +678,8 @@ msgstr "Ikona složky" #: templates/admin/filer/folder/choose_copy_destination.html:23 msgid "" -"Your account doesn't have permissions to copy all of the selected files and/" -"or folders." +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." msgstr "Nemáte oprávnění kopírovat vybrané soubory a/nebo složky." #: templates/admin/filer/folder/choose_copy_destination.html:25 @@ -720,9 +704,7 @@ msgstr "Žádné soubory ani složky není možno kopírovat." msgid "" "The following files and/or folders will be copied to a destination folder " "(retaining their tree structure):" -msgstr "" -"Následující soubory a/nebo složky budou zkopírovány do cílové slžoky (jejich " -"stromová struktura bude zachována):" +msgstr "Následující soubory a/nebo složky budou zkopírovány do cílové slžoky (jejich stromová struktura bude zachována):" #: templates/admin/filer/folder/choose_copy_destination.html:54 #: templates/admin/filer/folder/choose_move_destination.html:64 @@ -752,32 +734,24 @@ msgstr "Žádné obrázky ke změně velikosti." msgid "The following images will be resized:" msgstr "Následujícím obrázkům bude změněna velikost:" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" -msgstr "" -"Vyberte existující volby náhledu nebo zadejte parametry změny velikosti:" - -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "Vyberte parametry změny velikosti:" +msgstr "Vyberte existující volby náhledu nebo zadejte parametry změny velikosti:" -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." -msgstr "" -"Varování: Bude změněna velikost obrázků a původní obrázky budou přepsány. " -"Pokud chcete zachovat obrázky v původní velikosti, nejdříve vytvořte jejich " -"kopie." +msgstr "Varování: Bude změněna velikost obrázků a původní obrázky budou přepsány. Pokud chcete zachovat obrázky v původní velikosti, nejdříve vytvořte jejich kopie." -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "Změnit velikost" #: templates/admin/filer/folder/choose_move_destination.html:35 msgid "" -"Your account doesn't have permissions to move all of the selected files and/" -"or folders." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." msgstr "Nemáte oprávnění k přesunu vybraných souborů nebo složek." #: templates/admin/filer/folder/choose_move_destination.html:47 @@ -788,9 +762,7 @@ msgstr "Žádné soubory k přesunutí." msgid "" "The following files and/or folders will be moved to a destination folder " "(retaining their tree structure):" -msgstr "" -"Následující soubory a/nebo složky budou přesunyty do cílové složky (jejich " -"stromová struktura bude zachována)" +msgstr "Následující soubory a/nebo složky budou přesunyty do cílové složky (jejich stromová struktura bude zachována)" #: templates/admin/filer/folder/choose_move_destination.html:73 #: templates/admin/filer/folder/choose_move_destination.html:76 @@ -815,8 +787,7 @@ msgstr "Žádné soubory k přejmenování." msgid "" "The following files will be renamed (they will stay in their folders and " "keep original filename, only displayed filename will be changed):" -msgstr "" -"Následující soubory budou přejmenovány (změněno bude pouze zobrazované jméno)" +msgstr "Následující soubory budou přejmenovány (změněno bude pouze zobrazované jméno)" #: templates/admin/filer/folder/choose_rename_format.html:59 msgid "Rename" @@ -975,11 +946,13 @@ msgstr "aktivní" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "Kanonický odkaz '%(item_label)s'" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "Stáhnout '%(item_label)s'" @@ -1041,10 +1014,12 @@ msgstr "Vybrat všechny (%(total_count)s)" #: templates/admin/filer/folder/directory_thumbnail_list.html:15 #: templates/admin/filer/folder/directory_thumbnail_list.html:80 +#| msgid "Select this file" msgid "Select all" msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:77 +#| msgid "Filer" msgid "Files" msgstr "" @@ -1112,6 +1087,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1167,6 +1143,7 @@ msgid "Choose File" msgstr "Vybrat soubor" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1192,6 +1169,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/de/LC_MESSAGES/django.mo b/filer/locale/de/LC_MESSAGES/django.mo index ccbfd5b60b1c994b4ff18e1c9eabe83a681dee01..dd957229b501dcc632d4bf1c638bf875aeb3cc2c 100644 GIT binary patch delta 5795 zcmZwK33OD|0mktgmV_lh*p>BV2x~$J$PO{A0f7V%ltn~B@<>9GnK&~^2#Ny&0#?Bd zD`gQ8M5 VamVr&{V?Nm! z6Zxb`t<{F|Eonm@iZf Xyc&Vh>b@Gm(zWTvR{vur}_*M)Yr9rIO5!!`KtQ$GVtum3LrYti|?Vyc&n1R^%qs zOz%Jq>@IAL_hJ%m!?}1Ex8eX!Zi=5{NBj<_)4yrm%9}|!YRT54mh4$nhdVJ1kDykf zCcV@{A8KITQCF)Ms^MX%2^63P7Q}0@5+~qJ9DsGX-jR`1hEq`kD^Mq{K`qha)@`VU zo<%L`i>LwZ!+!WrRL99&2d&6N)KX8w8n^~E;C0vmw<5QLd8;k!uNi*E4lbYh9%;)o zW||E#71dxmYNjJG5yx1IQ3F|N-GfuuzKEK@==R>F%0|ujR@6=U6ly{{+ef^cV-GvD z h97hfCKd5Wo*fEAb)0+<+cLQo>(^1#f#RRNG4d8CnfbT=i_<7U{zGk $E*}i~Xumu|$PzKh* za@4?YLrvrfjKv+Om3%e2Kf+x|MJsRuHL`Q|fG)JE1N-0t9ENImFV@6^sK@mU)Buko zt7_u9dN*NL>mnS({*Q1hCNV1JYDy*jo7GfUMe`Esu0M%&@f_C1f1^75A8H2bO*4wa zI(U^e5%qmH)V UxpgMO016$qb|iJ vB@>wN=?SbY`a*171%(}|7Z4q z3#b>#PdE(w@UUws=b>)SWvEN>0P;3AYmr4UyHPVeW555-e*YtCVC`sh6^_LtcpTN< zc4n1K|7I7Je0F?=8bB65Y5EabjEvB1L@nWV9D;}NT5Q f#f KZ4pQxmusb=-r h>#wExi5&?T&$?>K+oEQejH%cUHNZK@ z{c2WNUqUVYSyVe0QBT8VY>F*2yn!cU2ex}-Tbzm-KzT;Qdv2GqV;Va)qDK6^JwVgZ z3N%8^ygfF-Zm7FF9b4jL)Xa)e1APqR@Br#kyp3w-D7ME_$Zce5MtDZl&>++S*IQ?! z8VF)DoR9pOReaox?;&F}J%)KVV*puovmIyQS>(@*8}9wyuR?9_!8@_W2=Cv5k)>3$ zCd1~s6ku`_;w0jxL1 z`}v-aMQmTf+cA$vrlX$!&!ZKVn_fHeMR(NAI0-d?JgkEu)QoON-6IQ81G@|3aRcfe zc?#>|i>OPw7uC+Y)=#k&+ZV76{hPX3-hrJ^cYR;$Fw}|Js8{FBsCyxR>R<`R<4V+d zYwiB6r~y7_-GMsp6^z3-Q8(ccjKos;2Nf;he^DL8XL~bFM19{4HPfD`hOa}-Y&_P& zTTsX4p;oF08( -_aTRJp2T-r%53T1>m$2ppub;RHtbapxB(g(Gl!h8vI;z7=Ou#IR zL6sa2^R88oV {Eg_^@^nVaV|;F~^=iJPQc7MS+jadnks^{x4ilASWNfr%%%iB; zZ6q4x3GyI$o~YyvS!tw%aiSx@qauGI@ MGeD=3{(= z#1cJL9Y}TIi8cG}hT57#_K>$okaQ;J$b2$_%q7)j0F}tYd<-H>$Y63EQMrLMBnQa? za)7ApBF{!^-Vcgi-PPqADpN@pQq%72V?B*Y T6O=s!NE<(&`Nyennl?=A^#emxj}bqiZ&hJWf6#D*MQCGLjUMw~5ND z (-*f{bgebzizE+#DE30t1e%gR%hJwvQSP*3GI~>vZ~(DuNYDFEWN4Gtm}A_ N{jEV(rHm?%`x%o~ |DFfyd_I4^&vVXs&vQL5aDJoT zrb<8e`PTmH495);NuCcfrmvqd4Iw&f%*8gw+>e(q4*kQ7Ny9`8#|apSbFl?3LLOl% zuoZeR7~et{?!uSw0N!Ve+dRxuGC1)V=3)h^!Bf~7zeP0=-qx5Xj6`)L3p?Q? Eud{&)!WfWxQ`o DDFi)xCS+VFHtjh3;W^sn2(wCG6O5nokQUW1wFvU2G9pPqDCHTO+-B? z88x-(sD=iiW?(96if3UH+=J@iJJ=PgkmWX4Py_levKppMC+45BNnjzh-*Qn89D^F! zc ZdvCVoK3#d0^TGZhQsHK^L8sT!(rmR5?;3R5KoJMWRtDTvDHS{$nw05^p zJ!~1}JSYL9spp~Yn~oY;DQYbjVM| cD1Hhj*Yxd>l1n7j3-(v#I+ Frl1>g zQ9XMc)zb;6o)@9&vr*R 9sB}y|0PsMuOrKDZelMCp?B(VKh%=D zM^Mm6eua8Ksl8zyCQx67BXBQ1fc~`J2Qx4YXW($$idvf6sJ#)#!pGq-)aOg_Av}y4 z*pE0(?|+LJ=QWv!%einF^?>R8NW`_MhO4Z%F`jw?Pw$2!Q5|{?HGn;+j_*T_vySA^)omW zW4b%v2Q#eekV!HJFvLya9EE1sfC2a|s=*&nJ=btFk{}Gm_SP<_>j|j6k! frU6Wov(S^hc4PTE`C+% z1MN_IAqMrJ1k@U*phld5d?lD1d%gs7sn0=uUmU_vtVZ5AQ;T~2?xMbMA~Kz~BMalH z7ouAqSVBQly#_T^ucM}FE9%Bt?2C6W8`JqB*V@iUb+`_7-*wblw`8Y=U=C_vqfl!; z0X4(3Py=#r(68%?eJahX;}UXU >9g$NXysp5lZ?UWTpFjcsuaw! ?Jsk8K}zrhW>RQlE`w=&q+wNn!jT=da%%Fphf99A{ULM&1;& z3^nrikdK&KI0n-PJDYDMGP}lunz56px1}Ci;Z4+%1>`zLAWPsjJt*h{S-2QSVN?9n zdIq&5=TIH_2IDbqh%qHN92eptoQ7GCFe|tnV=?wo$D!7lsLi+@L-hV{r=U%=57lrL z24D@UW5-aNuMV5z*Qk-*L9M0#P-ioRS-YY(T?$5G9_qfS=)z~MFQD)D{~8LKqBk)N zy{HC0Ks8*8F1%pRe}(GcZR_`_`}~GEdnp8?sJF#H?1P%YzNqKtqXs+~-MV2q1&wqz z>cKCgdh9{Hew$JEZAX1@H|jm!k80>BCgN4p{jKwy``V$N8;zYX9rgN-vDathG5>lk z=5s;~tU`5QJ?cS~s2*>^j<^rC2~VL$6g=Gd3hro4MlE43s-dA6f|IcYmZ1hvj%siD zaMoX&VKpcGa3YyXbWA3HAXmt< IL&> za)Ia#T1nQ>{=Gv}^iRSp-a8iCQuBLfoL?r|A1~N*>+mJA&(<6HTVnzB=IH22-XZUk z8N_{^AKl4nvWzqyU2Q?@_cYmQ>$7khnQ80d9MSr}Mb?s$q!-bYHy)4K!Y*_X4ZP05 zxw6N>_s59##A#b^WGICXZKd2=i$S)$A3dbX*0o ^%c=E#liPikv5ZlvAjpLaUUe-$v;RdQb_(z!pSq_Gs0H;>CiO% zhJ=s?@=Ky)G%4|w_>&2LO|nQ|vX#V=95R^vn ?4XOQMO65o7|{Ku(bZqz(BOIZM_P9gh(HpfP_Wl|;uA4!-|}UZs4ETqci` zr6jCz{q?Tu=t6FgGV(jpgG?hG$RhG0(NRIpkk`l;B#L}Y8jnZ{O>E^5ZnxzXm``d* zYu`EMe-eewWVY{wF@M5K f9`Eadz)uZ~c(jLH`G%FDIh_ diff --git a/filer/locale/de/LC_MESSAGES/django.po b/filer/locale/de/LC_MESSAGES/django.po index 10d1bc769..e33b93c9f 100644 --- a/filer/locale/de/LC_MESSAGES/django.po +++ b/filer/locale/de/LC_MESSAGES/django.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Fabian Braun , 2023\n" "Language-Team: German (http://app.transifex.com/divio/django-filer/language/de/)\n" @@ -41,196 +41,192 @@ msgid "" "Can't use this folder, Permission Denied. Please select another folder." msgstr "Zugriff auf diesen Ordner verweigert. Bitte wähle einen anderen Ordner." -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "Fortgeschritten" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "Kanonische URL" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." msgstr "Einträge müssen ausgewählt werden, um Aktionen darauf auszuführen. Keine Einträge wurden geändert." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" msgstr[0] "%(total_count)s ausgewählt" msgstr[1] "Alle %(total_count)s ausgewählt" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "Verzeichnis Auflistung für %(folder_name)s" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "0 von %(cnt)s ausgewählt" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "Keine Aktion ausgewählt." -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "%(count)d Dateien wurden erfolgreich in die Zwischenablage gelegt." -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "Ausgewählte Dateien in die Zwischenablage legen" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "Berechtigungen für %(count)d Dateien erfolgreich deaktiviert." -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "Berechtigungen für %(count)d Dateien erfolgreich aktiviert." -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "Berechtigungen für ausgewählte Dateien aktivieren" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "Berechtigungen für ausgewählte Dateien deaktivieren" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "%(count)d Dateien und/oder Ordner wurden erfolgreich gelöscht." -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "Dateien und/oder Ordner können nicht gelöscht werden" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "Bist Du sicher?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "Lösche Dateien und/oder Ordner" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "Lösche ausgewählte Dateien und/oder Ordner" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "Die Ordner mit den Namen %s existieren bereits am ausgewählten Zielort" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "%(count)d Dateien und/oder Ordner wurden erfolgreich in den Ordner '%(destination)s' verschoben." -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "Verschiebe Dateien und/oder Ordner" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "Ausgewählte Dateien und/oder Ordner verschieben" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "%(count)d Dateien wurden erfolgreich umbenannt." -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "Dateien umbenennen" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "%(count)d Dateien und/oder Ordner wurden erfolgreich in den Ordner '%(destination)s' kopiert." -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "Kopiere Dateien und/oder Ordner" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "Ausgewählte Dateien und/oder Ordner kopieren" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "Die Bildgrösse von %(count)d Bildern wurde erfolgreich geändert." -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "Bildgrössen verändern" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "Die Bildgrössen der ausgewählten Bilder verändern" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "Die Dateiendung, welche an die Dateinamen der kopierten Dateien angehängt wird." -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." msgstr "Die Dateiendung sollte ein gültiger, einfacher und kleingeschriebener Teil eines Dateinamens sein, wie zum Beispiel \"%(valid)s\"." -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "Unbekannter Schlüssel für das Umbenennungs-Format: %(key)s." -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "Ungültiges Umbenennungs-Format: %(error)s." -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "Vorschaubild Optionen" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "Breite" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "Höhe" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "Beschneiden" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "Vergrössern" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "Vorschaubild Optionen oder Parameter zur Grössenänderung müssen ausgewählt werden." -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "Parameter zur Grössenänderung müssen ausgewählt werden." - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "Ort des Hauptinhalts" @@ -741,21 +737,17 @@ msgstr "Es gibt keine Bilder auf denen die Größenänderung anwendbar ist." msgid "The following images will be resized:" msgstr "Die Grösse der folgenden Bilder wird verändert:" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" msgstr "Wähle eine vorhandene Vorschaubild Option aus oder gib die Parameter für die Bildgrössenänderung an:" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "Wähle die Parameter für die Bildgrössenänderung:" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." msgstr "Warnung: Die Bilder werden in-place verändert. Die Originale gehen dabei verloren. Lege bei Bedarf eine Kopie der Originale an." -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "Bildgrösse verändern" @@ -1174,6 +1166,12 @@ msgid "" "vulnerability" msgstr "Datei \"{file_name}\": Zurückgewiesen, da eine \"Cross Site Scripting\"-Attacke nicht ausgeschlossen werden kann." +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/en/LC_MESSAGES/django.mo b/filer/locale/en/LC_MESSAGES/django.mo index 7f122d3b0d8b50d9e63473e4718c3d80d9e18f39..4f8792c0612b0ca8ac1345f94ed252f54afddbad 100644 GIT binary patch delta 4386 zcmYk;2~bs49LMnkJW#<6LPT(1AVC4m6a)h^Q^Y;jL@RPBaEpu-l_w- nwq9)T4PRXre?N{l} kNd#I~4 pLDQFnY7y)mJ&bK)dyL%$DFlgUEe z**s)dvl{hC%TVX}5;X$nu@zoIw;I(nRC$X~$H6#~em-jGE}-VX6-+>HuA+jIP|vs* z>css~BR2&3XQuE+$1T8?xC6CcC2C~OHeviVl$Th+{4#%{E@;A>3jI)b_8@9xdf0v{ zrqCZ}*RMxSuAQjD_MztQA=^J~x1U3e%n!&to4a9*zbXo(Y#kVaY%|R;7UNNcJ%`$F zmhI 3ls4Ks&ZduP! lLSj2ezY6_k& dJ^&l){STp` z10vCd-B6P)2~|K})ax?@b)nJd!e?#&In<=hMy7$8iMo+xsF7NOe7npp)P9Go$1sHJ zn^QD&z;)D}|7Lfnvg^Hg;3}v#YRH3;X=1vf3x`=pqmCbkn&s0_1r(t#u0-8X3F^45 z=vJeYh7K%49e5b^7F<9L=^eY>C&D>lFzUDn)T4+-6_|h;sor+`0Q99l6g9%5aE=#m z6KYP}h-Ca}o7zlOy)LoHSJX^EKb(y^VFBt+im^7X#f7*9RX|L8=Y&b9 (@_;?U^Hf9CoI7_cowzaMbt=KMZR6;2I|gg zP=&YVU= OIX;!`B7Pgs{9VdVR%R9N2Ndd)6YT`n1ehW zQ-mt46jj(qs0;7M06c=)?+mK2zfm{ruBPElqX*-m6Q>|=ib+F#dZ(f8Y(8pklpr55 zvj=seuTdj#5j8olSiNGM!rNGfp}rG^r~)q|Bjq;NX(X`1kK0tmDX3@M2X*4XsG%E< zD&z&!5Wj{k@jcXjXHYkA4mFZjup$11x}b~arvm*^H`W0I^#1p>D+XW+8!|i_jM;?s z=)aFDtOE5VJZk%2+3nw=M&>8fk4iPFphlgY `$xX0BaPfKl|9 z;vhVL`nK19$oYo%LcJxqI1qOuH)m>4&o+*oHD^Ykj-QMAO*xG!ybcFvVF+eo0lJH6 z{7yqBnAz2t?Ip-D=A^X-Bk6bP=KQFnBdbgy>Q48g3jYjsXE#wJR*kx_E8bZjhz;ns zMy>B0&-m*{C7Bh0Sb=&*XK*Cmwx%*c`qAHjX?PPg2jaUsAE+^?*`JAe)-%utb5Vul zp$aQR&8-#I_1zhN?XZm%o@Z^XK%KA>>*F`5%6~+Eyko6FjetMnto0307Yak|AC20c zh qY4>i9g8|a2I|Bwq6#QRU3e|(jy9r>+iBg6I&Kf@ zxMLWGmr*17kF(uvYV~kV7>YVU6zWmLqK2#oYN%4}_93VXk3bD^I(nf_s^j_-?XTrH znMMu~%^xjI$qcfJgzEjDOCyEsBae|!h?dn3p1*JNw;g$s G`CquceQJ`2e?&ZRA0cOLTqD@*;oN+qQVYw)2r2{BQY))^ak2yg@W#FOdlHCegB) z^d_&93Zi8`d4L=x$B3?5E~oHE%V#8v@GUV1iI!cY7tyP>pXhnsTl5>TfJ`9zR*WWE z%E)9gTOF1R66I+*A1^g0+5Wq# kjJ$8xzl;aS4)QEXC!TQ_>uE6Ku_M`S`>)_o;!75iNHU!4Bu|r6vWC oW8qjY+nigO*nbpL@@%xCEm~d!prY5=4^Ku}dPZAdis2WG`7n zGKrQf@(vk9o+nR`Ipp5Lht;!quHVFVj#vw^J1HUlcHN^GV%y#DV^W9skuQjrSTd6I zCBbAdDJGjp8W~7Bk)@<1X`%7oK;u2Kjx;BY$S|TM&cV#X*KB*1bt g*0EKOOP6&;Q+j0hNQM1ONa4 delta 4437 zcmZYB2~gEV0LSs=cq%A|sEFJmLIENksHrI)rD1|XW|$!z8ev9xW|+?-O`z~VEpM=t z)KnDHGCVO$(P=8HDNWO+n#t0dY%&|O?~nh|)U@O8eRluvf9&pm_u-GvmCbUW5At4N zDD@ CSo;q!E@+? z{;i$!LeQIbB(~%ErUMm?@J`eS@=znn$1p6!SS-Z?ti~z~qj%if)ZrNX95sNh!N#Ou z4n|@L`r;N;2lrq{Jcd3z-~2#DBe;fo@D0>RJ=!`a`k^}34K?yU=!r$B8_&iLSd8?| zY)8$^QRG(U9O~8nin>o=h%*Br=x)z}2r9Bas^|m*HsIb*K)8aaYY$d%Ob&qdGhr z^{yA7rnU? e!#Cb?ixR)DA#>AB^fyY#8&eDH_57X2;~BdNv((K@oBfGY>oC zI#dTwqs}{T+uvXU?Q58cQOtLDEW{r8I;P@T%)pkcaLsg{n~E00QjEiWs2iNeKA6l3 z(g+H0BF?}9{02)fBg(n{3)HH=g?eyev|}E|(_VqM;Q>^KzC#Vb9l`vn=P{^}4M&YU z7xm!r_V{Gf>YZ iBAHLBCIz)-vaDM%owg?{bQlgt4w+Txul-+3Mf uq{`rZfiP6MrxsQV=$4=_DY9lr~Gag;R=y|w=*+5=Cc z9#n+7;H8EWj9H6Xbd{(MY)5UQy{HErL~s1Swoju5@;R~`%vY$6{(+h)y>EWgOc1(w zzUin6CZZN&7t{qqQ60)e7v|aH6HpzRgqrf1$Z|1j&>P>e9z R0l4j3vZ%Z zBl3!KE^J|KiMlWtbzwYe7xY6-X^#CqA9cf-s0Wv#Ud0kr2iK!!YODQzH|oLrP&0fW zj`^SE!FJ++7DYNsl&YD8+AhnHUsZDwo8Z@|8-9;^@KtPv9=AJxWPDK_C`a9|5_R1% zWMi0m)cr4`W-KUy`PTzd*aFFTH>&5;us_a4{em4q_53WV=NB;%f59#oLBj_#QRn5L zW@H@d`o~ZmnvEJjC8}dv+*Gtks*&|!PGJH5f>k&+$@yjU?&SQD2| fmq4>oqP$rH&<{I+luha35@r?txTvVg{;bQ&A(Ig`QZ8y73`o=b4kJpW-X1 zk$H7?)<^{M<7T>}?lTfK139Qgnroed>i9-SxA}yMelWZ_sveF-P1PfK2QEPM_z>z{ zA4lEzL)6TjL3QM3)OEhRk7(?KIxhn?fNa#C>s$=P$>`GlpHD?SEJlrN8)|9}+x96; zqkYjHkLl_xvSd`p`l5a*2if)r`~7HChsL9J(IV8}m<_0o?ZYNK-_%mk_NqfB!< 38xM_nJq$!`6TDWswi zY{QB8HWpwkcP+uis2ha#bXI*Dau4&QwG!iLe}?Qx^B1Z^@x7b@ OsF~Z) zi}}}sH`_02Fo5 h1iIDML;Dm*|f-QM;f8 zqtzM S}RfS`c2#3 zg?dgc>ipB1f1U6ZYSCRnb>IqW8~u)Y&@I$?K7F0GKWZc)7>1Fkj`l{))Bp^^Y}9!Z ztWRPv?a8R~-NjVYqb2r)O8Z3>szW {Kk5djP_N=6R0l7hX6my2{#Vq4ucM~; zFZ946M2mY4d50_@d$s>ZQrSoJGpYygA&-!I$a|!KJV>4;?-G?U ^T&*95t5>bgJapY~Xh&(_Vi{9%-+tAd%Mpl!dq>$W8 zSS}6abv~yMZPynYj<9X9Gr60%ALHX;qQXp>-VHTlmf@SWJ_=v4_3?O+#FJt6SPoW` z6tbS&PbQEpq=c}0&09oe5E Cj&@V(pa9R5 \n" "Language-Team: English (http://www.transifex.com/divio/django-filer/language/" @@ -35,15 +35,15 @@ msgstr "" msgid "Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "Advanced" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "canonical URL" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." @@ -51,81 +51,81 @@ msgstr "" "Items must be selected in order to perform actions on them. No items have " "been changed." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" msgstr[0] "%(total_count)s selected" msgstr[1] "All %(total_count)s selected" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "0 of %(cnt)s selected" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "No action selected." -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "Successfully moved %(count)d files to clipboard." -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "Move selected files to clipboard" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "Successfully disabled permissions for %(count)d files." -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "Successfully enabled permissions for %(count)d files." -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "Enable permissions for selected files" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "Disable permissions for selected files" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "Successfully deleted %(count)d files and/or folders." -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "Cannot delete files and/or folders" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "Are you sure?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "Delete files and/or folders" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "Delete selected files and/or folders" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "Folders with names %s already exist at the selected destination" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " @@ -134,25 +134,25 @@ msgstr "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "Move files and/or folders" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "Move selected files and/or folders" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "Successfully renamed %(count)d files." -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "Rename files" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " @@ -161,32 +161,32 @@ msgstr "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "Copy files and/or folders" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "Copy selected files and/or folders" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "Successfully resized %(count)d images." -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "Resize images" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "Resize selected images" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "Suffix which will be appended to filenames of copied files." -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " @@ -195,44 +195,40 @@ msgstr "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "Unknown rename format value key \"%(key)s\"." -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "Invalid rename format: %(error)s." -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "thumbnail option" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "width" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "height" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "crop" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "upscale" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "Thumbnail option or resize parameters must be choosen." -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "Resize parameters must be choosen." - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "Subject location" @@ -761,15 +757,11 @@ msgstr "There are no images available to resize." msgid "The following images will be resized:" msgstr "The following images will be resized:" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" msgstr "Choose an existing thumbnail option or enter resize parameters:" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "Choose resize parameters:" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." @@ -777,7 +769,7 @@ msgstr "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "Resize" @@ -1207,6 +1199,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/es/LC_MESSAGES/django.mo b/filer/locale/es/LC_MESSAGES/django.mo index 58062ee4509426435c1c7b52ea45cf0a62e8d7f1..996721d51b4920225994f4e879419acad87ac833 100644 GIT binary patch delta 5249 zcmY+`33yId0><$Zi7XOA#1 X za?XeNEHRYZq#1d`&zK=z#smfHs4?9`jcJKV7=z<55$9q9+=0IMH3s2HqziKi>*00u z$NLzFzWk^FL$J0nj#)t^g##s+gjF~QTQzhqJPpHXFF;*rGe+Qtr~!S8&G8rHr>03G zV>)0*)CC_!E@ZM%*O`qqu^fZBzS&Ks9S16~6aI_=7}wZ6u`Bw}PR1sfidvDesF}Wq z8raL&6ko$AEWvE7z>S#1kL%+_jK;e-hU=TAVeU+3p_c4z)RJvMU9cSE@fd0)ytzs( zY>66Jd(_?PjOw^AY64SG1A7vC;~X4;<(Py4+;3+9m3~yzK_Tjg%TP?wmPjIL^id`~th;eN4mzZfrVcV?6Fa?TKp`gLR|a-*>~F zwC5oca?EE`rg7jXW@9qHnvWY%9dzc`?Jx^<;e6{3Y)$(Xw!wxpG@ump!C9z*KaZNo z2K2=;)JpF59Cz4-RI~!$qegbap3sI~bz&mEfPGON??rDsfO=dHp$2#sSykiL*4>0{ zt$8?@ 5MlmYpYH}pkH%q9nisoa~u0MwXcmr$Vzfl*whnj(|rWyI6KQ^{TqP~ws z?VV266jXo1Q2l43COjFPT2y9Hk$I>YzG~ZxP!}pj{a~~GeisJP-iI1M1^VGB)P*Wh z{Z!fZE!0GQLOoUgMGZ78j{C1AjEv(C0(L>2IM6y2wYwig{a`9;KsomNJbQc|Y5)r` z5Z^@IiZ#e9#q387=m+Z+R6jT3SbtsMJ_j_A(Dv>CVo(>1L(Q-Ys)J-}DyoBlsNZLz z9 Q>yddUFzQV^a%R6cda3KFc~Db?+x5i)0FLB9`MSY{sbS<1UQl`sN!dPjlcN^3UY* zCrvZmgj%wLsC#=9d*F4{1!B6pPfZ$X01u%$9)nEI%tYPFHK-NagqgS%N1;D|k%sH} zA5Y~m+=2}-l&h$tSX2kSQ3L6Z>S&n#J_85Po{Gb93+k5qiaNgyZ!>-03H4Y$i#nc% z(KsI+U2rRv82lXd*Y2j(j}4*S9Eo~A#G_`~6S?iCFY+jxXD}64V;{VPIT*!`)%i;> z3X73Bnom);_Lp9)zfSP)?an+Hb)jg~%;QlP=!)Su0eMnQ9%{3_kNW+0s9j%)&GDvf z2d21>SrgO%qA>yoqgEn2#c?nE6bD}6Kq2ZeY|zJjD#EPoP|tBP>fWcLc5@E4z`57~ z*I^4hj=EL M8S1b-xcq_M=I3s5GWB4Yl<77>+AZ9qh8l51@8)C2A7|_jQ-@ zapZ29)yTdw=TMugVLx{h&Oja uHOPH2jl&Gu%h3maM7l6{F%)~Ixwm!%2J87BMMX =01U$BsLdOTIzJKhboEB9@WU8{6HvGM z2@K= byAA?-K0y zX{ZU0L`Ns&Qqf4~U_*QzHIogfj<#V-EJH2*8Pt2B5`FO&YT$Qm`&X<@+c(|)|9&XO z(e92qe-i5a>FKP0Gb*z ! zJOH)nMx!P;6ZN}%)Z<&I_pdrG=73gWy>&C{!rL(zccSjS%AZ}#QR^efLtwrj-;pqq zN>o;pm7d!FKQ2?%+i@3pU-y3vnMOL03ZgQPu-`o89X_=xtBCIR_oRq?KvcSrCFD=! zS+bSrkyUBy;`zK_>ks2dTX&+VyiFb>TDlL(qeSHyvX_(--9MESvYcqSKPHPwBa%io z5S5cIzkRZJo^p`SOSZ0e412&ar>O8qns-SqxlS&U- pzytL!QPTKTgxsi)ev8oQKboZ%HP3kbFfJktt*+=}aog zCQ?W~Cn}G-{NYnCt@pUTXXELc5oEq9wxnCn;348m^jNhb)rBX`d}bT!YcknGj*urw zYjT4;NBWa&QeBd$IB)XNljM_R@&HlEAa%$A@&egURCbUpo*IAuQIA=5xke?6v?1R1 zV50R3Mv+fQ2=O5l$GqxR%yE2z{FQVfjY& B`Ph+D`dOg|0Pt$kQa%{O>&mJMyiO)>m-uAMS_W5R#(Y%QeB>+^0(>+_WNC3 z)dnQc9*f7(q=oKT53-h=Co20$0U1E1k}rwMZt^l&uLk89xkdh|1|^g{?WwtcFE-oy zHtS!kq82G5k9^HXU7|9FY$UN{87UEFanS_j>qB^M&rSnt$gZ~GWXCY4j delta 5320 zcmYk<2~<_b0mkt`0c8=4f*TSL6+|`{TyO*Hf`|)=jYc#{jS>m&(Wp((o1k&88)~Cf zF^ZaqjatN{)iy~ zQu41YwmU^ z1rw={MBQ*9awD?>b)UDfC03yi_cyf^G}wn2hYed8(;1V|4_`tboQd8z7uCS)s19yK zjrc=U2S3IzJb~@-8s=d`KC~BSV^a)kWlVeSZ;~iv<1?rc9YjstMby;YK;5twJ7FNL zYexE_KaNLrY%*#fQ?WhfqXw`O)v^894@)r%Ytc!eFn|X?2p6ClC`Wy;5;gKG)@!JS zZlI?2KB_~Hu?Hsb9CYIx)Qqe|O?e^K!%9?#FJN1|8qWN)UW^aJ(Fj{1kJBV0ZJJCB z!dz5?^H3vounjJ@?m>0rr1cSwq24jV9Y6u )TKrD?!cRXUKXs*HP{L7xnpiyh$DPLza_qLMS9r zNJ91a1=Jdti5kfps0KFJ>zlD7^?f)J&to#S=Ye*|Z0v^Xa0H$}J(_0i+_jO8(bT6Q zpLfg#3cWc|gBn>RD`*NPU> v~+k`65)q;juJ^QK)Sjjp|@eWY*0j z)M8v>t;V6$yVILY?r+|tz~D`VwHBFG)0|ec`g@@tW}pv_LfvpI`r>n_j!(jd_^NfG zy}lH+hE`j*qT1Vsj&5+6f<|19{#a?PMvd@>t=~o6=n?Au{_*bhRv17%0@Z;yY=FtA z8}&i8GuYNMQ3H7 kVO$sf7Qju& zJ H$b#K%UJ5V2t{4+CnVWFE{sKs1?+K%^;UwRY6-sQfI=}Tc8C$f;)G5b+H z{{r>KuTWno4>1!HsRZI{s7JEYx*GZRHXBjxl-cvwtT$0>-~nm?P3g@#Zyb$ DbzDOi<+@2d;LosMEzS-JH7Z8)1z5| zdVeYE`Z090KkM i?8p4KqY%^2{aqf0dbUeYZzx1{WDDv>2T>zGin_rk_$1yzwzdgObr)R< z>hlv(t3MCJalWl@LhZKVRLA}5J;;d&PMk;0#CND0{|{GUNSeD}cc6C1ZtD?zg8B*6 zv%iF_YV$otVi3b;mQ50}W6c!Q`7NkNcGRJuo|dB;K8=xh8N1 V=01W<)QEFX z4J@|jSD{w*9@JX8fGi)AIKb^dF0$@SF=~xnK`llnd7%3 c%&b$8OpV;d>t^pttt_2NY=29K#T- zm*GC+<`_&p95uxWww{VSZZp!>SKI5`@m e|@hq^QSJnHi~sPBb&7>m1cwD$j5 z3hGfb!_|oMc^Qi*QBxf?%v~G(u?_VJ7=w#Y+pz>2;z#I(C(#E_+v}fWAoUvb#|NnQ zKgLk*Z+wQkQyhkRV=T7B?$`>m?D;9^M}0o3fdbTxR-#t-I#h=aU;`{iwRZ*sunP6L z8r0|Rprbc_LqQ+>-o7DtggfFEsOvp36w|O7jz*1S8mgiB7=;T_Q~wSI;U3iDE<<(v zn5`ejM${`tF#l~ST;@bP{$Sq_&)1ed&=p%_U(}3bV;Igsjc6^Z16xre+iB}1sE!;$ z?Vcm3cFtl1-bM{LFpK%uqKnLON7xPZ!A#UX&O$Xj5j7K2t#eQ}&c|RZKs|dMFS?k& zTc5{ta+-WW^hnvAo@1Au{|>kO jw% <_F zTaQ6~8*aDt=WvfL&+y3o_3ia9a?xHW$8BW4t&hi_+wxDjOeK}9wI>(h0&;;oOGc5i zq>#K!{z$r#t7IQpNlv=scfWF}|9E^tN#9!U6D>R)PmxuglKV2!mj8igh_;%xRXb95 zu%XOfY~@XyOj?r)GMhLZc)3gR$sjU?)E&JjyiNL$C8RGIN_31SLF5F{AdV9qN68^i ziNCC{sV$4!WGsm#^$CaL`O`|J8>Bt?6KO)U4Rx$`G3Rk6SxmZ+7Q~0>=uaX@iYgrQ zNH_8lsYi5la`AkD{lb 7xkA>ETSUh?5=AzX zVA7J@B-2RUF^9s^x(W_dSyNYcgi;8wmCl$=+K}F4H~Et2_>`<5gGnCwjOh57EF*h~ zj&tNb`L`+@A>>t0$^BtFK-qKuQhRctRrr(NlfRM1M91soJrYNLL&}Jb;bamiAVWwE z*+gC=b;m?on2w30ANebPi}na9sPB_IW5(>9(&Fal{0g&UT9?jhQ{BXO(A1pCFTYZF iGCjI l6Qw@Pc-n!1+$VP07M(YkL9{738id*5fyXa3ITd7ty1_kC{fi(QfP zi=ErSxVH_Zg$yBQ S6Q~<}i-YkRrr{sh z7lT|(H%!Mc&O_a&8hzZ~Y@rfQL!CWgKWc=ZVmG{iz3_7k;WyY1e@AsBrjIdC;$YMa z=AeGR0M+3LreHZnuol(fAN4)=H$PEP&pS{Te25y^K;}0Y3s4s-M|GqEHL|s+k<_6& zv oHuw zaTIegmR{xKIMkl0!ufa{v+-Zl5`^ikmSk=}=3f`sNJ9aBfjZ$KW?>pTE*DFz^*D^< z3z&f&s2j%9`%IjQ>hL<$NNaEh?nF)fe>evtjFRnPjtyY`wYkpF5R0FoE^rYw(#xpb zeZzVeHDkY`e%FP%P|QGY)Am6vQL;4)HIw=FxBzwC8OZiA5r>M_tP*vjYSiZ0j=I5a z)CCUO;}+DKe~8*MpP<`eWO>bHWHro9)Oo*I|3L I>{g}0EIb4-^#!AGlpH~=-p zLr@*cM9oOP{eBYahSP9Qj4`t@%<)yGgR1F7{XUUrQIBI1A6k+^Y{HqS>t4r^dj4-y z(F_C_t~OO)9EF9b=Y0*%#6zf#+(50}9n8VMP`^(d>U}>P_4tlKU1y @bs1dbU&*3nR+fjStXH 1Pb)9llM^~acu)(%BA!9Sm zsE(gTZPN28%zqJ;D>P^X0lKdr4nkch2eoOYApcAmAFP(yhPvT {#YTbnEX@4KH(I57{ACJR1UWU)$Ud+df zs0(-6??YTv9hiqY?;VWA?@@c`x ih_*gUe9^szSe>|2itVP$Oz>n^8YFW!ul$<91X> zzCx|#HDp!X7rzD&&h$E%g?cmQp>}^M#^GAzhGqlm{H<;~>t9DjQ(2Fis#a7-+HCt3 z)TX+Jy3l>p2p(WBOyHSShX
+pmJ 2C~cq!48Pb2(!FnfsJ3o6fhxGxl2eZ;fWB4h=5nRF*_k#S@q*+3pIbKLo-rR1^J zL(~@&mhVy7PEEU6Wf9p#%E=belV~5PuqWN3w_}B^Yp =NT!lCMCYiy?&0qK8tMngK2k+?5j`D~$SSgosJ!A~W?1WRt*z&xGsYf>tz-cy zA}Za8o{T&l*rJ!sa*|0V5FZ&vc929eowN{@5b?V;@8xEzW}PbGjGC&Nis+%h)tKm( agwELLk>JVr=&GSR<60(!0?| b(8o~nrLQraSRTX&$G%WwCgFa36gw~gui`-L!a%%-`>+=u!R>s+V 9%y#mBG(m*RQ!r+yQ|IO>KtRLc`kFU&;stN !V1^ irPqZZLER0Z9r z7yM< U~pxVJ&Ys3|PR@mPy`&xiK=)2Q9`IqH44bY1&DJkI+? z4C;$C)SRtFHK+~~@g%CJ*H9zSg&MKjNLx$~YRyDAydyURwdx(HipL?##VkOL%o=pF zgUl`p@-@^VJB6y~ENTSK<3j94^(c)6A!njSU@r1!Ht?YaH{0u9px)DsYUn*w10LAx z(eaEwqhN;7JheO>)$`eyiTS7=97R3&HtIzksMUKJQ}H(PXQG)O&G9r;#Y<5QEyAf- zjC!sG)#3ILZe!+9xWokwePn{yEF8;u70$&s(23p1ttNb=*NM1}^L$LfPJ6u roQ(CT_qL m{}j|WkU=`fb!am>Tu(Z s=c0p8p>Iykt#qn zq{3crKrO0P)O*gLI&cny@mo}bucLm5ZldbBi$2tE>WPjtvV-V9(*{BV%>klgA#oAS zu^ORc4w*#w-(?EO3uFl?COTg6;@RuZ*|Hk8m}oIp6ZcF$G`zWFCz(Z>iH;^Rk7(;P zkQ6eS^c@E&u+TmK)BCP5r=G3YcRqrGc8Eq)$6T_9Y$yC)ssF}2Lo~!1o)U6|93onf zI`luE-we-h#d4fZ9zLo#(U9uUYM(*$<}C6A8AUWTI<#oZJtci`S2{2iW&z10b!0Co zB?)8#`TtSGg_j??xQX(s_FQX0$26jK(s#T_VYfZ$hj}DhtvqZmR#>;;R-#p`qtT0J z5ozn`cS2i9zi4a8M)DF_PZp8QB$@0dY%b4F@@kw-YRD?`G s?i@ijwN8N>`b~ cRZ~_{<*Ke}yE<&AuTNfci8Hk=KmKOme=rU)DgXcg diff --git a/filer/locale/eu/LC_MESSAGES/django.po b/filer/locale/eu/LC_MESSAGES/django.po index 56e3b41fe..bcac68606 100644 --- a/filer/locale/eu/LC_MESSAGES/django.po +++ b/filer/locale/eu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Translators: @@ -10,18 +10,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Ales Zabala Alava , 2013\n" -"Language-Team: Basque (http://app.transifex.com/divio/django-filer/language/" -"eu/)\n" -"Language: eu\n" +"Language-Team: Basque (http://app.transifex.com/divio/django-filer/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -30,205 +31,195 @@ msgid "Can't find folder to upload. Please refresh and try again" msgstr "" #: admin/clipboardadmin.py:19 -msgid "Can't use this folder, Permission Denied. Please select another folder." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "Aurreratua" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." -msgstr "" -"Elementuak hautatu behar dira beraiekin zeozer egiteko. Ez da elementurik " -"aldatu." +msgstr "Elementuak hautatu behar dira beraiekin zeozer egiteko. Ez da elementurik aldatu." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" msgstr[0] "bat haututa" msgstr[1] "%(total_count)s hautatuta" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "%(cnt)s-(e)tik 0 hautatuta" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "Ez da ekintzarik hautatu" -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "%(count)d fitxategi arbelera mugituta." -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "Hautatutako fitxategiak arbelara mugitu" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "%(count)d fitxategientzako baimenak ezgaituta." -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "%(count)d fitxategientzako baimenak gaituta." -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "Hautatutako fitxategientzako baimenak gaitu" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "Hautatutako fitxategientzako baimenak ezgaitu" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "%(count)d fitxategi eta/edo karpeta ezabatuta." -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "Ezin dira fitxategia eta/edo karpetak ezabatu" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "Ziur zaude?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "Ezabatu fitxategi eta/edo karpetak" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "Ezabatu hautatutako fitxategi eta/edo karpetak" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"%(count)d fitxategi eta/edo karpeta '%(destination)s' karpetara mugituta." +msgstr "%(count)d fitxategi eta/edo karpeta '%(destination)s' karpetara mugituta." -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "Fitxategi eta/edo karpetak mugitu" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "Hautatutako fitxategi eta/edo karpetak mugitu" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "%(count)d fitxategi berrizendatuta." -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "Fitxategiak berrizendatu" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"%(count)d fitxategi eta/edo karpeta %(destination)s karpetara kopiatuta." +msgstr "%(count)d fitxategi eta/edo karpeta %(destination)s karpetara kopiatuta." -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "Fitxategi eta/edo karpetak kopiatu" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "Hautatutako fitxategi eta/edo karpetak kopiatu" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "%(count)d irudien tamaina aldatuta." -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "Irudien tamaina aldatu" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "Hautatutako irudien tamaina aldatu" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "Kopiatutako fitxategiei gehituko zaien atzizkia." -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." -msgstr "" -"Atzizkia baliozko, sinple eta letra xehetan dagoen fitxategi izen zatia izan " -"beharko luke, \"%(valid)s\" bezala." +msgstr "Atzizkia baliozko, sinple eta letra xehetan dagoen fitxategi izen zatia izan beharko luke, \"%(valid)s\" bezala." -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "Berrizendatze formatuko gako balio ezezaguna \"%(key)s\"." -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "Berrizendatze formatu okerra: %(error)s." -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "argazkitxoaren aukerak" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "zabalera" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "altuera" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "moztu" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "handitu" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." -msgstr "" -"Argazkitxo aukerak edo tamaina aldatzeko parametroak zehaztu behar dira." - -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "Tamaina aldatzeko parametroak zehaztu behar dira." +msgstr "Argazkitxo aukerak edo tamaina aldatzeko parametroak zehaztu behar dira." #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" @@ -468,6 +459,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -486,6 +478,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -498,6 +491,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -552,6 +546,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -631,9 +626,7 @@ msgstr "" msgid "" "Are you sure you want to delete the selected files and/or folders? All of " "the following objects and their related items will be deleted:" -msgstr "" -"Ziur hautatutako fitxategi eta/edo karpetak ezabatu nahi dituzula? Ondoko " -"objektu eta erlazionatutako elementu guztiak ezabatuko lirateke:" +msgstr "Ziur hautatutako fitxategi eta/edo karpetak ezabatu nahi dituzula? Ondoko objektu eta erlazionatutako elementu guztiak ezabatuko lirateke:" #: templates/admin/filer/delete_selected_files_confirmation.html:46 #: templates/admin/filer/folder/choose_copy_destination.html:64 @@ -682,8 +675,8 @@ msgstr "Karpeta ikonoa" #: templates/admin/filer/folder/choose_copy_destination.html:23 msgid "" -"Your account doesn't have permissions to copy all of the selected files and/" -"or folders." +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." msgstr "" #: templates/admin/filer/folder/choose_copy_destination.html:25 @@ -738,34 +731,25 @@ msgstr "Ez dago tamaina aldatu dezakeen irudirik." msgid "The following images will be resized:" msgstr "Ondoko irudien tamaina aldatuko da:" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" -msgstr "" -"Argazkitxo aukera bat hautatu edo tamaina aldatzeko parametroak ezarri:" - -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "Tamaina aldatzeko parametroak aukeratu:" +msgstr "Argazkitxo aukera bat hautatu edo tamaina aldatzeko parametroak ezarri:" -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." -msgstr "" -"Kontuz: Irudien tamaina aldatzean jatorrizkoak galduko dira. Lehenbizi " -"jatorrizkoen kopia egin zenezake." +msgstr "Kontuz: Irudien tamaina aldatzean jatorrizkoak galduko dira. Lehenbizi jatorrizkoen kopia egin zenezake." -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "Tamaina aldatu" #: templates/admin/filer/folder/choose_move_destination.html:35 msgid "" -"Your account doesn't have permissions to move all of the selected files and/" -"or folders." -msgstr "" -"Zure kontuak ez du hautatutako fitxategi eta/edo karpeta guztiak mugitzeko " -"baimenik." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." +msgstr "Zure kontuak ez du hautatutako fitxategi eta/edo karpeta guztiak mugitzeko baimenik." #: templates/admin/filer/folder/choose_move_destination.html:47 msgid "There are no files and/or folders available to move." @@ -955,11 +939,13 @@ msgstr "gaituta" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "" @@ -1021,10 +1007,12 @@ msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:15 #: templates/admin/filer/folder/directory_thumbnail_list.html:80 +#| msgid "Select this file" msgid "Select all" msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:77 +#| msgid "Filer" msgid "Files" msgstr "" @@ -1090,6 +1078,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1145,6 +1134,7 @@ msgid "Choose File" msgstr "" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1170,6 +1160,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/fa/LC_MESSAGES/django.po b/filer/locale/fa/LC_MESSAGES/django.po index 0900b6fc9..95e21bf26 100644 --- a/filer/locale/fa/LC_MESSAGES/django.po +++ b/filer/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Translators: @@ -10,18 +10,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Fariman Ghaedi , 2019\n" -"Language-Team: Persian (http://app.transifex.com/divio/django-filer/language/" -"fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://app.transifex.com/divio/django-filer/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -30,201 +31,196 @@ msgid "Can't find folder to upload. Please refresh and try again" msgstr "" #: admin/clipboardadmin.py:19 -msgid "Can't use this folder, Permission Denied. Please select another folder." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "پیشرفته" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "آدرس کانونی" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." -msgstr "" -"برای اینکه بتوانید روی آیتم ها اقداماتی انجام دهید ابتدا باید آیتم ها را " -"انتخاب کنید. هیچ آیتمی تغییر نکرد." +msgstr "برای اینکه بتوانید روی آیتم ها اقداماتی انجام دهید ابتدا باید آیتم ها را انتخاب کنید. هیچ آیتمی تغییر نکرد." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" msgstr[0] "" msgstr[1] "" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "هیچ اقدامی انتخاب نشده است." -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "" -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "انتقال فایل های انتخاب شده به کلیپ برد" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "" -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "آیا مطمئن هستید؟" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "پاک کردن فایل ها و/یا پوشه ها" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "پاک کردن فایل ها و/یا پوشه های انتخاب شده" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "" -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "" -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "" -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." msgstr "" -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "" -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "" -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "" -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "" - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "" @@ -463,6 +459,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -481,6 +478,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -493,6 +491,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -547,6 +546,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -675,8 +675,8 @@ msgstr "" #: templates/admin/filer/folder/choose_copy_destination.html:23 msgid "" -"Your account doesn't have permissions to copy all of the selected files and/" -"or folders." +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." msgstr "" #: templates/admin/filer/folder/choose_copy_destination.html:25 @@ -731,28 +731,24 @@ msgstr "" msgid "The following images will be resized:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "" #: templates/admin/filer/folder/choose_move_destination.html:35 msgid "" -"Your account doesn't have permissions to move all of the selected files and/" -"or folders." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." msgstr "" #: templates/admin/filer/folder/choose_move_destination.html:47 @@ -943,11 +939,13 @@ msgstr "" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "" @@ -1009,10 +1007,12 @@ msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:15 #: templates/admin/filer/folder/directory_thumbnail_list.html:80 +#| msgid "Select this file" msgid "Select all" msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:77 +#| msgid "Filer" msgid "Files" msgstr "" @@ -1078,6 +1078,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1133,6 +1134,7 @@ msgid "Choose File" msgstr "" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1158,6 +1160,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/fi/LC_MESSAGES/django.mo b/filer/locale/fi/LC_MESSAGES/django.mo index 2687344adf9e5cb92077991f1d1cc4ed288091f8..0da4c3f99c2d95ef394796ede2e6c86203deab06 100644 GIT binary patch delta 4511 zcmYk;4RlX+9LMqR#!QSEhCQ)nvj>c68?u;IEE!2{d5BocJVi1p=~k*SR9X+1qEwqw z%33iKJt@UH)amKeDo$~Bj_5&;bb5dO_ow4`eD?a?`@jGD``+LE-TQZZS F$~3@kbm|&e_CVfj%Ld- z0^8ww)cI<#yP0Pn(a{N-u?PN)8YrTZSsV^R4OEEfI0xHe6%NB{48da oAXP*=VQb=+1|!G}>Z z@f8MRbT>|nao7`6keY2Ys*q_&4YmY5-SbE2=tSF4Q}YI1hz-srROR}%%)la?jw-Mo zHG_L`Fdjt}92f21^F-8I7=Swe5Y)`(Ml=5$Ym?cb6D-1bT;~p~M_tJt)Kq_n9k2;C z@JUpmr%_kfm9uJw`k=N4VJ;T9{SRVb5uysLiDCY=(6_lA4eo$ TEs$7qV zz8HdxX<^t8lTn2gp^htc+jB9E?YnR+Zoy3a3$roZV~Oi=D#0;Wg_`1K)IE-2rS!t# zs1uap5Zr+({5PD9K|TD%ITtI~{sQ&=;&}gQSb-Y2&e@E~Y
Q5pZ3S$QcOdw{u<;Et4FPwubr8!%u#y&SJAnW4?age zv!01&?QsO^DYzDOucu-QEI}1A6IIxJ)Z)6wS>Zmf#K66F)}YS!I_ms;F EA4{%yccS*^+pvi5cL%0q6W%G9e1_cF2WGDry x8N)u V1Khc9AbU;m1O)BPC= z$I0x!81;U50`+G71a+%UU>>&Y=dZDR)P;DH=x8eE;2^vk!*D06;(e%!4`6%z1QYQH zhGJ-c{{<6{+8%;BaURCwHK^~Eq1MWMsPQ%;1$tIXNB8g`>I9!5|E!5WNf^$2>J6EN z7vXFij~h{I=U3EJ{)yZz>o&mOpNG2V`Ka?3qRu}Rb^aL`ujhX)9o?&)$U3njs1t`V zT3d`jO=TQvDhHxYI0p526* T=A-S;#W5TGSdjg5Je+ zx@VhRffG;%Y(_l|hf!1e7tY0~f&TA%IjYdN@H+eyr($2K*?_B2uky6P{!A30#+iqg z;0ws4*zv*4KgC-tpAN%usKvGhS?IPF >tz=hH)9%jztyJ7uR5}+dhoC zfFE!QhUEB#-iU>4znkOn8l)3LS-NL4F#=bjR_&9hr(i1v<95^{s>4pW8+Gdrq22@E zxX+KFo}!c34bQmk$f5rC5-^he*&ZD&iqWWnCZcBG2GkYKKoztYb)_p%1*}IM_l(=W z1yxAB+rJOBW)7kX`3zOyQH;V9sPB8B%zGC)?NOB`p#~U=I$#895f!-o3sAS>4%A|M z2vzu_r~%g_zvQ+VQ}BJ%ai`qpr%^NgFUINlkI(gA3`0>Tn1HHuI_ku8P$yV`nt{cr zf|nyFu#Ko0+U@)pRp9ri3-}#%tInb>EMmAnP87D)^PfOR2d1MA%)%g?M;;_9svl9) zz~$rxZO~Zwf!SFd*z*6}3lF>PQdBW&i-{Je+ES89QW@V~B_oNZe?Q@|w3+02(uSzL zNlHitd4{Yf(}~(XAA1%xQ#@Vv24T_LE97NzuJL3B{-1dnYSz5x&V7QhWYc-ui|D7j z?HkYAA49)CsV6*%_7G9i?NH12vBywrLG2?_5$N&ri`V;o&vv?<*WeAVzYKQ}?u6Y= z?j(9jt|ZCiHZqZ@_3*Je{E*yFa>)k5A`i3=`1_XY>lUkN<^z9s!(C({i6)cDxu!>| zkz7Ukx}5{?CbEKP-BgoovXGO2s^Sr{lBmrm<4Ak* z6nU2%Bx>7y{{NdpZx$I#wz|C`csHpc8_5B3e!InOT<7$zb)8-39aT&JMRJAPSLED_ zQ_0P4`*o+-PL{jvVCO1lAtsPsqz{=v)Fx>D$J2R$+(GsbwF^lKxrdaIb>vCXmGmZC z$Y!EeOl~Dh$mK-s5}&}YWjOr~ 7LXA{?P>B7nMU3tNyL&;iszNxys%_J>aFp$OCweW*Cup66 ta-aRJYooIo!~O$<7q|Za delta 4552 zcmYk<32;qU0LJkXvJ#0z5)oUpNC=4#O9ZCdAU9f)d2O3u4ztglJJ!v|78OEp4fw zso3`=QA%ezidL)CGE=6ibVl3%_wLbgXTJA4=f3;yS?)PElhb(~zs>b t7J?~3_>*&kJYgks-ejki;J*47GqmHiB-@i#27EEg@G7_G1wgAaS;09 z3e APVI$57qO `PELx{aRr0BhkRYdF7B&s$nYVJ7v}s180v z&EVgdh}9#U4rijCeHLm>j7Hr*H-h=s)K2FFzcKHjZme%zn1Pz1p|(B&lc^Wj^QTZ9x>S|<*OdOu34gqesz0(9JVkY=Jkz6@ibZDI zv`3AgAL{ySq;F;f#$i6HgS$}I9k=x}SfBb2*cH89Eb#;iJ+T=s#HM%zyWnHgl&7*+ z^sJ|1U0jR0!EtPbp*5WWWZ)?3SvV5U;9J-<()s-%)ULRRYS$Iays40iQ8*K$aTBUT zrKk~jG7ajvA8KR?sFAlv&0HsYzBg(SkF@8f<1Fe0s9oU2O5~QNGO~7DCebOFrPz@# zZeuzo)OMzRHU?1t2(=q_qMrFaEQ?1_9XWyOSSf0eU9;Y@-`__)^S`WKOsAjre OR|TeHVJszBxdF zb!LvCM)DJCs%{}KNAm=|(4Pk{gHeky9Cdvhszc3C->2I1olza?ftvCG$Z|4ysE({h zmkOIH=muL+H!enX;9JxUZ=gnW2X*})*2k#dJw^R4fCZ#oPzN=m$*AwUqV6{U_4^5^ zM=>Re`Bx9;al!|e+6z8FHM|xz#hb9egYAS`gh}c{qARF||3L<2JYyVVkez0_A+LLrgRxkE8sQ#H#gnM_ zLm)Tx!zk3q<1rpz!f4Dze_ZRLpa!?0H-3q1SyO}z)_iZjHw~Tdy;0v+Kz-j3bMZCY zhG)?qr_ejbVDhmqZb!W*{NtQAZ5ry4xw0v|L}40gvF%5V=sapluVV}R6LsU*Mox!Y zp*q|S127G1VF$)bD297v}m578Vq5c^tT`y^(<3RH%vz^ zG2O8a=A+(}Td@iLgxxWuv9rjAqh@LhY9&J`hN7){y$4W4O~Jsa0Mf=0(aH3 zibd9s$waN*IanU&qdNL7YAQcNb@(W1o0VAaU`6V_yk@n=s$eH R6`dq7_Xu_av#+|1jFYqvuS~9I0N-Y?1NgYS*S-h3$-ZspayUb)uD^%(lfh3 zAr1Z5ORN*q4YgS2U`yPO9q_UJKBc*{D{@d%yb{M?5$f-LU0PL#2VgIpi2bnyS7QS% z;?IFOoyh!aO73w&4F&Mg8ap7fW(ttOnqq8=_fd p+@#0Y9_bY zdNHa)CAbuSwDp`M=3gVoPhz@o6RM|W=|xW*gq?9Os-wPboc&xMwd#{l+czD{U VY1?1^2dA0Ea~{0_A??xGrcf|`MUQ6uzbT7obP zHS%aw2NKb}J?;54R7ZN-^FvT;#x Q5|oBYA_M`3vW^|TKj(}1zorVb-{AfRIkD6cn~A-D(d^ksE&HH zb8cK7_4^>y41}RN9EJLQ8`KQ-wT?xtmD%X6{l9{OrhGMOWIIp|6``i=Flr`BQP*8U z56mI&5MA4d=%`HIB%i6m!Gd?ctd_WI&PP7HYwIIv-`yM4r;%kUaOga{(*5Qt#5AJE za+WkBqsS+u9MN%z3?q%nCZcUNnCLj=V78!UicMs`CaiVi+R4Wb^6W^Y(3P|&nzoP0 zvqRIl@mU3@k~mu*`rP?yl;g=h!cKE uZ>8 z%kywANg*@H8$`RL6Nx6%$?HT%r2EsDudsv^5T2k}OWL~UnZg-zl<3ei)-lJy9K_jV zGO0@Xk!Oe2$9a-L^yVB$nvmgSA?|l<;CSACd^7LkoC5sio(vqc7=CJ|OyY{0gZ_ zR+8mpG0`!BbR&BCtS2YPH$=ym4*!3)rZk$oO1`jXwH5Qo8nS`7&hhd5G0|3fTYFmf zKX=h?%Ab>t_FOOP5gb6q+j@~z>>_X3dKv56&N_GgiPTFWiZmo6>;-+W2U$R7lEXyD z3#1;IOQw)jWE}}74ahdKndlfoa>*>B_ks>yp6;Wpo_`?4iX?#?BQazgIY6F2I#Wp| zW5`w#O7;*PFOx3hJ>o--ld;5~q?6NR1qmjTNGj3sks97k29cAbZei!3Rb{+}j~h2} tNa4jwUcSo~)~Z%`q3ZQOpPmCpkC?>S4KbH}J<^vAZ&|N!M#4G&{{Tc^!14e9 diff --git a/filer/locale/fi/LC_MESSAGES/django.po b/filer/locale/fi/LC_MESSAGES/django.po index 808350553..332da3021 100644 --- a/filer/locale/fi/LC_MESSAGES/django.po +++ b/filer/locale/fi/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Translators: @@ -11,18 +11,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Teemu Gratschev , 2022\n" -"Language-Team: Finnish (http://app.transifex.com/divio/django-filer/language/" -"fi/)\n" -"Language: fi\n" +"Language-Team: Finnish (http://app.transifex.com/divio/django-filer/language/fi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -31,205 +32,196 @@ msgid "Can't find folder to upload. Please refresh and try again" msgstr "" #: admin/clipboardadmin.py:19 -msgid "Can't use this folder, Permission Denied. Please select another folder." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "Edistyneet asetukset" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "sääntöjenmukainen URL" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." -msgstr "" -"Toiminnon suorittamiseksi pitää valita kohteita. Yhtäänkohdetta ei ole " -"valittu." +msgstr "Toiminnon suorittamiseksi pitää valita kohteita. Yhtäänkohdetta ei ole valittu." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" msgstr[0] "%(total_count)s valittu" msgstr[1] "Kaikki %(total_count)s valittu" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "Hakemistolistaus kansiolle %(folder_name)s" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "0 / %(cnt)s valittu" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "Toimintoa ei ole valittu." -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "%(count)d tiedostoa siirretty leikepöydälle." -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "Siirrä valitut tiedostot leikepöydälle" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "%(count)d tiedoston käyttöoikeudet poistettu käytöstä." -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "Käyttöoikeudet otettu käyttöön %(count)d tiedostolle." -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "Ota käyttöoikeudet käyttöön valituille tiedostoille" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "Poista käyttöoikeudet käytöstä valituista tiedostoista" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "%(count)d tiedostoa ja/tai kansiota poistettu." -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "Kansioita ja/tai tiedostoja ei voida poistaa" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "Oletko varma?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "Poista tiedostot ja/tai kansiot" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "Poista valitut tiedostot ja/tai kansiot" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "%s niminen kansio on jo valitussa kohteessa" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"%(count)d tiedostoa ja/tai kansiota siirretty kansioon '%(destination)s'." +msgstr "%(count)d tiedostoa ja/tai kansiota siirretty kansioon '%(destination)s'." -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "Siirrä tiedostot ja/tai kansiot" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "Siirrä valitut tiedostot ja/tai kansiot" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "%(count)d tiedostoa nimetty uudelleen." -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "Nimeä tiedostot uudelleen" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"%(count)d tiedostoa ja/tai kansiota kopioitu kansioon '%(destination)s'." +msgstr "%(count)d tiedostoa ja/tai kansiota kopioitu kansioon '%(destination)s'." -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "Kopioi tiedostot ja/tai kansiot" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "Kopioi valitut tiedostot ja/tai kansiot" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "%(count)d kuvan kokoa muutettu." -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "Muuta kuvien kokoa" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "Muuta valittujen kuvien kokoa" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "Pääte, joka lisätään kopioitujen tiedostojen nimiin." -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." -msgstr "" -"Päätteen tulee olla käypä, yksinkertainen ja pienellä kirjoitettu osa " -"tiedostonimeä, esim. \"%(valid)s\"." +msgstr "Päätteen tulee olla käypä, yksinkertainen ja pienellä kirjoitettu osa tiedostonimeä, esim. \"%(valid)s\"." -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "Tuntematon uudelleennimeämisarvo \"%(key)s\"." -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "Virheellinen uudelleennimeämismuoto: %(error)s." -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "pikkukuvan asetus" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "leveys" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "korkeus" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "rajaus" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "suurenna" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "Pikkukuvan asetus tai koon muuttamisen parametrit tulee valita." -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "Koon muuttamisen parametrit tulee valita." - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "Kohteen sijainti" @@ -375,9 +367,7 @@ msgstr "Käyttöoikeudet pois käytöstä" msgid "" "Disable any permission checking for this file. File will be publicly " "accessible to anyone." -msgstr "" -"Poista käyttöoikeuksien tarkistus tältä tiedostolta. Tiedosto näkyy " -"julkisena kaikille." +msgstr "Poista käyttöoikeuksien tarkistus tältä tiedostolta. Tiedosto näkyy julkisena kaikille." #: models/foldermodels.py:94 msgid "parent" @@ -470,6 +460,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -488,6 +479,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -500,6 +492,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -554,6 +547,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -621,26 +615,19 @@ msgid "" "Deleting the selected files and/or folders would result in deleting related " "objects, but your account doesn't have permission to delete the following " "types of objects:" -msgstr "" -"Valittujen tiedostojen ja/tai kansioiden poistaminen vaatii liittyvien " -"objektien poistamista, mutta käyttöoikeutesi eivät riitäseuraavien " -"objektityyppien poistamiseen:" +msgstr "Valittujen tiedostojen ja/tai kansioiden poistaminen vaatii liittyvien objektien poistamista, mutta käyttöoikeutesi eivät riitäseuraavien objektityyppien poistamiseen:" #: templates/admin/filer/delete_selected_files_confirmation.html:19 msgid "" "Deleting the selected files and/or folders would require deleting the " "following protected related objects:" -msgstr "" -"Valittujen tiedostojen ja/tai kansioiden poistaminen vaatisi seuraavien " -"suojattujen liittyvien objektien poistamista:" +msgstr "Valittujen tiedostojen ja/tai kansioiden poistaminen vaatisi seuraavien suojattujen liittyvien objektien poistamista:" #: templates/admin/filer/delete_selected_files_confirmation.html:27 msgid "" "Are you sure you want to delete the selected files and/or folders? All of " "the following objects and their related items will be deleted:" -msgstr "" -"Oletko varma, että haluat poistaa valitut tiedostot ja/tai kansiot? Kaikki " -"seuraavat objektit ja niihin liittyvät kohteet poistetaan:" +msgstr "Oletko varma, että haluat poistaa valitut tiedostot ja/tai kansiot? Kaikki seuraavat objektit ja niihin liittyvät kohteet poistetaan:" #: templates/admin/filer/delete_selected_files_confirmation.html:46 #: templates/admin/filer/folder/choose_copy_destination.html:64 @@ -689,11 +676,9 @@ msgstr "Kansion kuvake" #: templates/admin/filer/folder/choose_copy_destination.html:23 msgid "" -"Your account doesn't have permissions to copy all of the selected files and/" -"or folders." -msgstr "" -"Käyttöoikeutesi eivät riitä kaikkien valittujen tiedostojen ja/tai " -"kansioidenkopioimiseen." +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." +msgstr "Käyttöoikeutesi eivät riitä kaikkien valittujen tiedostojen ja/tai kansioidenkopioimiseen." #: templates/admin/filer/folder/choose_copy_destination.html:25 #: templates/admin/filer/folder/choose_copy_destination.html:31 @@ -717,9 +702,7 @@ msgstr "Kopioitavia tiedostoja ja/tai kansioita ei ole saatavilla." msgid "" "The following files and/or folders will be copied to a destination folder " "(retaining their tree structure):" -msgstr "" -"Seuraavat tiedostot ja/tai kansiot kopioidaan kohdekansioon (säilyttäen " -"puurakenteen):" +msgstr "Seuraavat tiedostot ja/tai kansiot kopioidaan kohdekansioon (säilyttäen puurakenteen):" #: templates/admin/filer/folder/choose_copy_destination.html:54 #: templates/admin/filer/folder/choose_move_destination.html:64 @@ -739,8 +722,7 @@ msgstr "Tiedostojen kopiointi samaan kansioon ei ole sallittu" #: templates/admin/filer/folder/choose_images_resize_options.html:15 msgid "" "Your account doesn't have permissions to resize all of the selected images." -msgstr "" -"Käyttöoikeutesi eivät riitä kaikkien valittujen kuvien koon muuttamiseen." +msgstr "Käyttöoikeutesi eivät riitä kaikkien valittujen kuvien koon muuttamiseen." #: templates/admin/filer/folder/choose_images_resize_options.html:18 msgid "There are no images available to resize." @@ -750,33 +732,25 @@ msgstr "Kuvia, joiden kokoa voisi muuttaa ei ole saatavilla." msgid "The following images will be resized:" msgstr "Seuraavien kuvien kokoa muutetaan:" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" msgstr "Valitse olemassaolevat pikkukuvan asetukset tai syötä kokoparametrit:" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "Valitse kokoparametrit:" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." -msgstr "" -"Varoitus: Kuvien kokoa muuttaessa alkuperäiset versiot menetetään. On hyvä " -"idea tehdä kuvista ensin kopiot alkuperäisten säilyttämiseksi." +msgstr "Varoitus: Kuvien kokoa muuttaessa alkuperäiset versiot menetetään. On hyvä idea tehdä kuvista ensin kopiot alkuperäisten säilyttämiseksi." -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "Muuta kokoa" #: templates/admin/filer/folder/choose_move_destination.html:35 msgid "" -"Your account doesn't have permissions to move all of the selected files and/" -"or folders." -msgstr "" -"Käyttöoikeutesi eivät riitä kaikkien valittujen tiedostojen ja/tai " -"kansioidensiirtämiseen." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." +msgstr "Käyttöoikeutesi eivät riitä kaikkien valittujen tiedostojen ja/tai kansioidensiirtämiseen." #: templates/admin/filer/folder/choose_move_destination.html:47 msgid "There are no files and/or folders available to move." @@ -786,9 +760,7 @@ msgstr "Siirrettäviä tiedostoja ja/tai kansioita ei ole saatavilla." msgid "" "The following files and/or folders will be moved to a destination folder " "(retaining their tree structure):" -msgstr "" -"Seuraavat tiedostot ja/tai kansiot siirretään kohdekansioon (säilyttäen " -"niiden puurakenne):" +msgstr "Seuraavat tiedostot ja/tai kansiot siirretään kohdekansioon (säilyttäen niiden puurakenne):" #: templates/admin/filer/folder/choose_move_destination.html:73 #: templates/admin/filer/folder/choose_move_destination.html:76 @@ -803,9 +775,7 @@ msgstr "Tiedostojen siirto samaan kansioon ei ole sallittua" #: templates/admin/filer/folder/choose_rename_format.html:15 msgid "" "Your account doesn't have permissions to rename all of the selected files." -msgstr "" -"Käyttöoikeutesi eivät riitä kaikkien valittujen tiedostojen " -"uudelleennimeämiseen." +msgstr "Käyttöoikeutesi eivät riitä kaikkien valittujen tiedostojen uudelleennimeämiseen." #: templates/admin/filer/folder/choose_rename_format.html:18 msgid "There are no files available to rename." @@ -815,10 +785,7 @@ msgstr "Uudelleennimettäviä tiedostoja ei ole saatavilla." msgid "" "The following files will be renamed (they will stay in their folders and " "keep original filename, only displayed filename will be changed):" -msgstr "" -"Seuraavat tiedostot uudelleennimetään (ne pysyvät kansioissaan ja " -"alkuperäiset tiedostonimet säilytetään, vain näytettävä tiedostonimi " -"muutetaan):" +msgstr "Seuraavat tiedostot uudelleennimetään (ne pysyvät kansioissaan ja alkuperäiset tiedostonimet säilytetään, vain näytettävä tiedostonimi muutetaan):" #: templates/admin/filer/folder/choose_rename_format.html:59 msgid "Rename" @@ -973,11 +940,13 @@ msgstr "käytössä" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "Canonical-osoite '%(item_label)s'" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "Lataa '%(item_label)s'" @@ -1039,10 +1008,12 @@ msgstr "Valitse kaikki %(total_count)s" #: templates/admin/filer/folder/directory_thumbnail_list.html:15 #: templates/admin/filer/folder/directory_thumbnail_list.html:80 +#| msgid "Select this file" msgid "Select all" msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:77 +#| msgid "Filer" msgid "Files" msgstr "" @@ -1108,6 +1079,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1163,6 +1135,7 @@ msgid "Choose File" msgstr "Valitse tiedosto" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1188,6 +1161,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/fr/LC_MESSAGES/django.mo b/filer/locale/fr/LC_MESSAGES/django.mo index f00475990ff12d5f41a3920c31c351e1a2f1ff90..d02eb51bc84b61725839589faf68387bb49b1e92 100644 GIT binary patch delta 5245 zcmY+{2~<~A0>|+S2#6qpfTFmuD2s@K0%9n*p`xOsrl~cPjwWDk)3{{zBsG^QtU*o7 z%rv)3EipwKmoXhH%iMA;ZJ9K4p`*vCn5_B!{_oPUd;Iaa_x<1hy}P~lKfbok>+D)D z=VJX@OAV!pG$Bj;jp^%UOi(=?HKt>@F)^5ht#Bl!;~b2@UFe6OVi2B2E@8gGP`rk< z@h%3UA75I4^|7uoj(M3%4hJ@27GA|(7~8 )Rb*S-LMkd;R)1C_;8mx z7=!9q8`Ns0p)TAFHGpxbj!nTXI0FY_C1zm&>+STU(w&Mfun_gd6{sm%Yu$vp&{oux z?m%_u0A}KC)QwxS4w{id)Kou+-natQ;guMR8<6c_jx=TdHNr1B!19@D Vln7BkhUNm~S1A>PVS&9}cDc18M-ho4ZR@fEw{+)FyosHK5Aoj=MSbaX?f43F=0t zky$bqP#ydcwdSEMjNzZ@z#pAA1U0hZsI?t~AvgoofkmheKaU#mHq;Crw(XM+m0S*d zhq_=QXX}I%)UNG>>S=FO&j;A{Nc;I{)XYsr_N`ffy3T6U_tv30_!hE#%uZ~JCr}-A zycw3(J`6R2SkwhFQ72?$686UdI2}9S2bh6(FUwumxC*?Qj=rPkfK9FeJ|XekR^W zdp Tu zqaW@>&E#Isafe+ *$OBMcwch)ChDpjmRHsW27}2^?4F% z@1$CDP}l2^y8ckqfXAX!hssncvJ^GKXKnih)Qwi6zOdPTz6S$oA3$~BDEi|W)Qv8o zu5;D4Z=weB6Y8n@71hzk$*jMoFglqZ1Z }eW3`|p-J}hQhR(pssm*h zh|5q*u?Bgin1iSeeQmvhy3X}v=3h6s%K>#Hyp7v|R;U{$qej>sb%AVaSJVaaP~RVl zdb}o}rg)+Kd^zg6n^50>59{K7R7a0GRMhkH=; Ar@T;izz 14}RC56N0W^0|KhMEj>>-RpI^>wAspx}6sFAJ4 zUU&gDm9bo1BTKVpp`Mmpq_1YQJ-!sR`Bq{}T#sDBe2kBx7cYk+ScK|OI=@_r+}{*X znZ|+Xs44ydLoubJyH>fV5fxw|PQVo0k9umVP%~1E4bg{R8vWQr@uw~hL47_Nhv9hC zOdrBQ+}|WHY#n$Kb%9H$4*ZDP3jw^9JX4NLnTbSw-U16S4F_W>Cg5q*`M+U4*3Ndn zHwc4hkH91xhYr7#rksk_Y8y7fZ!rpg!w`&OS~SvRR0lGVN7&?GJeFV=EXS^R0!uKQ zgIc=T*b3)kcie(n+FM Udnwm(N4%Z`Q#r67^%!O{jBw1h7NR;f79(&XY6SC8 zGqwa1aSKM{S=0@xQ8VY)&3zn0QJ=>llVI{3Dv?y?p>DVen_~rP>Q36@=aEO&RN+W$ z!921(%q(OQOeM11<|iD59eVJCg)gGk`aJT=Fupz6fS8Uv7{*ycMK?N&nt@9=10Tqv zGk6TO+b8yNH`glE5*$VbXMVv{?9!XJBu>J?_&RDPe?~3guc$qh+Q;35{gIh-%y24= z`QUNuVw_C-4b+S@$#*wlDz2s74Rztm=!4f#PeT=EqE}ycb7tWL+G9}HJB5#6UO)GJ zun|4ae@K7#3!N~T6UJf;mSY(1zySORz3~)k#?D{^yof<~2X&rzf%}vMp#~6+bukfx zF%vZtdDw*gXGYl%9MlEMP&ZhPy1=WbUA^75kE1{B%NU3^t=0Cp-vD=pf>Gy%p=Kxw zYhxQs!VGkD!Xs3)tBX)0a!?&vhU&;_OvDYS^N(YFJcqt`9d+I<)D3<{b v!Y5G|Ja5~VQG4J9YKCs1_K<&}J5w>J z>*S!8a471$64du*qXsaqkom7iWjP1b^Npw*y@TrE9(&>;^rEezO{8+n#q(>HNBskG zmZ&3oGE`n8dW!BX|DiF7>>*pU{%c4HNg+px%6!t-Q)B&68)h}pM*EzUlWjyrkKI!8 zXEKevP4pzFXxVDYm$ot(8IPwpE#VdN7t)+;Cl3>qzmff w4F)#~gEp3XiUNlT0Sp$XDdvQe_* $zwl-9hNsQ^kDxNh)A-|`b2RmiF0+SAaV9xMhLZcqC*%b(j=V?G z$R)CoEF}LXDv!GS;cqCdx46G&qv;bivFCq2s;d;ZnDh7{@gsUFVo6QuPvw2v(6z>r zedGw4LgLAF@&xHYib+k$qT(#$&wXSr$tHb>$`BGv4v|^pAW_*xwt8yr4~!nKn({rB zVI+b0*n{cTD;P)qN$QhYgyNWI-HJJh6Uoygl|&L>qLNFRk&dLMbf7YZ=#{L}*2VJz z`;)C7$1g~0@;sSCRAR{A$-CU&Y@#xpJVjJ)kPGBFa+RnoCeh?YQjhS X4n}p-=e}LR4mu4J3)IAQeQV9~n(%lV0R&vV=@0HD#2oJceyZ iXYx_Sknp)a6}KDi3#j-kx=vU{XnJzpifP@FLjDiHJRXMt delta 5304 zcmYk=33yId0><%^O%g#8B9@2{B(e}oG*TjrEs++rR0N}xT4HUGnU>r}TeZwYDzq3& ziB?N1tx#q%?bxXdIunXcr4;R`u9>O9RQ3OU_vCq;$NT-xz2Cj}Ece{|rM*z @C3jmh#dCNWrhjmZu(CK^X$3@*fOSc;ADBG$q0u^!$+E@6E5G8BU_ z03$I7V{j>U!TQEHrh-a3J3hix3=B7BAofKyyaHR|E>uIOFbdD2I`m(R#E2$thf=X4 z+e1(d79b6o<*0VnVl%veezb3DsA#aaF#!Xb8q*n*F%X|ZKb(WUxBzv5XHgwogBtOE zR0j`W1Rlq>conB(04Ht7JZyv!&5dbC`zDD>4vs{P=v~y*okvaG4OD|Q*a_=#b 5)rP7xh-yavDE^ruiVijuSm#kM&7rKF( z+8 KkLQ#F&vGsIdVHqGIC9mg$-~j z>Vo;GkviBKU$DM`>c|P}9UR4We3UzY#i(1g6gA+TsKt6c%5g_j!wxNyJE$r5Z{;== zg3OX>jOt)#)P=H;e`XdR>d;Em$X287?Pd(Ya?}hSL3Q{fYQW#1X3)!FuXfbO-WZL# z;FG8WrlLAF4>k3RQ9WN~w_mZ}Z$x!$Cu#;yBkS2*M_un8>U?hwQbz-k NDoIq5 zP(2=xS_5-XBY6&Wfz|f=br{d~4jh8#Fd5r%Lm$E%?1nGnU_6exHQ{aDwJ{K5*q(`; z@0it8da&afYGkcgLAlrgr{g+Yj=r2l)vUw>+>2`XiZwje82*_oKH6g*szV#l7pqVm zzknL34+quJ^B+b<4M(89XpfqKR8+?@?e{NQSK%V|Z$@1>GLDO3H0rU9L3OY@GV5j% zYB4UcR^uSHAEGx|v~LQjFnDvyT7%50X~I>s`X9zX%tSvNj%si;*1>V8j!(h>oNq0# z-@k-fLq*mNsO#-OM-A+uq7fg)x>#kcMvd@>-Tn^M&>htAbraq1n`02$QK$|ipg$&~ z8tRF<&H%feg&N4nMCM AW*EWn0XY!588zJ*%dWvJtip*nQReqU|(Uqf}^ zCaPoqLEVb`$h*h1?%;MPy#w>Fp7mpgE|iICAP3cvxu~8#k7{rkYJ|n8^VV56q0TQw zoxcb5cvYfi_)Gi!PpIqG>FA!{)S*(J9g(P>CZKwrVh>11b)X+=$_L>lFFJ^6Y~M*@ zedzd3JW}{HYDO=kI{Y*0J>b*XozV!?i>xE69VdfID3zgDf)i0Mq+2)ILHLF) s)0?Y8QX5ZFT=rXAH)$D z($jq-PDUMHgoE%^badhuRO;c^$h*h<5BUW((X24tvp(1i=V1gEVF>O(jkE%Fonxpq za2jLrF80D`KKkGU%*9gFtqV?P{$r?wr}IY$rlIa_A?ltLqei|S)$`qUe+8;zM^X3m zHtL?X?9Iythojz*#i*xdHMYQQsOud>-GYm~9e2@u#g3Njs7p74Fb*~1Znyx4pq}?* z7>1SB%cze1gpKhR)BwVM @l$)ix5zA+V5X%h z4n{RR1*32wY6>^l{iVpGZua9?yn%XZ2K00P1S>?AgE@#3@gCBIah~Y!-t$uAU1Cn- z4EzOof=uoJx1lYlnRpX_k5L0zc(@L=>bqySi);$&Rum(XVUA*F^v^VgSAa>y5jYcl z_52^AqI-E9wYcu07GpR|RJWiFHpet;HqK=`4>cp#QH${|mSRwrd#lROhwVM6r)EE< z;7LqC??-r|^!#_Eq6==s2^jpSUJUHRIJ}5D!G~um5tA?)$6_ONFc3@78#khE&1)Er z+p!*gh&rwk{qY=z(Z0DvMXRv}8=(F!(o6)SR&4@me+KFTqfiY@K+V8Z)NzaK_IgwU zWf+9}tcUIXGsx7N^XPg0Kck{4x`qLG3*+%V>O%2D-PPR%HKGhuN5-Q%G7aN!4(j;z zsKvY${ctbpxC+$u51~3%Ih6TNqH>-cvFQJpd(V 6bUZ|qSOXZ&~o?p#@)K8L6i8`W3Po-4%|25SfC|^>aOa4aQCELghqM7=bs4OF_ zS5Mi(r`F3>qJ>sX){s3!C7HZRw7B)??k4 QA95)m2u<^PtBOw9%(;?%2(vP{o*igByZd8u{grkALL(b zq?2O1^LboEJ|WpeKjCLc37JMdAYI87vV*K3C*1M#472fIImkvR*+sO_R9Lj;51yL) zF~rtC!%CtjK~F_nQd@YXn4@;15T}q9 hjYja zqzh?E{D?{)5=BzALCGij@p_7Q6O~Rbo)_2?wqB*Kf6hiCSw&v7U$ntLl6_<+8AF~U zD&Lb!WF@&tR9+_0WE}}6&B)heCaEp+sJv9Wf&En1)YX>8RD$eAXUrk3Ne}WmxlB}! zkmY0mnNCg
=lc*-li>k{`&wwLu9Z^F1~9kDW5=p7zV_&H}5bOa4s$K|+Yiv*az3 zK>kGb5|u~EB(j)fkZa@>@(ighPuj{X>_~c%zw YBAfsEAhU47z1eg&LhFopmC diff --git a/filer/locale/fr/LC_MESSAGES/django.po b/filer/locale/fr/LC_MESSAGES/django.po index 58080e380..6ddf2786c 100644 --- a/filer/locale/fr/LC_MESSAGES/django.po +++ b/filer/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Translators: @@ -16,19 +16,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Corentin Bettiol, 2023\n" -"Language-Team: French (http://app.transifex.com/divio/django-filer/language/" -"fr/)\n" -"Language: fr\n" +"Language-Team: French (http://app.transifex.com/divio/django-filer/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % " -"1000000 == 0 ? 1 : 2;\n" +"Language: fr\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "Vous n'avez pas la permission d'héberger des fichiers." @@ -37,28 +37,25 @@ msgid "Can't find folder to upload. Please refresh and try again" msgstr "Dossier d'hébergement introuvable, rafraîchissez la page et réessayez." #: admin/clipboardadmin.py:19 -msgid "Can't use this folder, Permission Denied. Please select another folder." -msgstr "" -"Utilisation du dossier impossible : Permissions insuffisantes. Sélectionnez " -"un autre dossier." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." +msgstr "Utilisation du dossier impossible : Permissions insuffisantes. Sélectionnez un autre dossier." -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "Avancé" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "URL canonique" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." -msgstr "" -"Des éléments doivent être sélectionnés pour effectuer les actions. Aucun " -"élément n'a été modifié." +msgstr "Des éléments doivent être sélectionnés pour effectuer les actions. Aucun élément n'a été modifié." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" @@ -66,182 +63,170 @@ msgstr[0] "%(total_count)s sélectionné" msgstr[1] "Tous les %(total_count)s sélectionnés" msgstr[2] "Tous les %(total_count)s sélectionnés" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "Liste du répertoire pour %(folder_name)s" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "0 sur %(cnt)s sélectionné" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "Pas d'action sélectionnée." -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "%(count)d fichiers déplacés avec succès vers le presse-papiers." -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "Déplacer les fichiers sélectionnés vers le presse-papiers" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "Permissions désactivées avec succès pour %(count)d fichiers." -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "Permissions activées avec succès pour %(count)d fichiers." -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "Activer les permissions pour les fichiers sélectionnés." -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "Désactiver les permissions pour les fichiers sélectionnés." -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "%(count)d fichiers et/ou dossiers supprimés avec succès." -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "Impossible de supprimer les fichiers et/ou dossiers." -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "Êtes-vous sûr(e) ?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "Supprimer les fichiers et/ou dossiers" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "Supprimer les fichiers et/ou dossiers sélectionnés" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "Des dossiers nommés %s existent déjà dans la destination sélectionnée" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"%(count)d fichiers et/ou dossiers déplacés avec succès vers le dossier " -"« %(destination)s »." +msgstr "%(count)d fichiers et/ou dossiers déplacés avec succès vers le dossier « %(destination)s »." -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "Déplacer les fichiers et/ou dossiers" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "Déplacer les fichiers et/ou dossiers sélectionnés" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "%(count)d fichiers renommés avec succès." -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "Renommer les fichiers" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"%(count)d fichiers et/dossiers copiés avec succès dans le dossier " -"« %(destination)s »." +msgstr "%(count)d fichiers et/dossiers copiés avec succès dans le dossier « %(destination)s »." -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "Copier les fichiers et/ou dossiers" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "Copier les fichiers et/ou dossiers sélectionnés" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "%(count)d images redimensionnées avec succès." -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "Redimensionner les images" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "Redimensionner les images sélectionnées" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "Suffixe qui sera ajouté au nom des fichiers copiés." -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." -msgstr "" -"Le suffixe doit être une partie de nom de fichier valide, simple et en " -"minuscules, comme « %(valid)s »." +msgstr "Le suffixe doit être une partie de nom de fichier valide, simple et en minuscules, comme « %(valid)s »." -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "La clé de formatage « %(key)s » est inconnue." -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "Format de renommage non valide : %(error)s." -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "option de miniature" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "largeur" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "hauteur" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "rogner" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "agrandir" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." -msgstr "" -"Une option de miniature ou des paramètres de dimensionnement doivent être " -"choisis." - -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "Des paramètres de dimensionnement doivent être choisis." +msgstr "Une option de miniature ou des paramètres de dimensionnement doivent être choisis." #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" @@ -388,9 +373,7 @@ msgstr "Permissions désactivées" msgid "" "Disable any permission checking for this file. File will be publicly " "accessible to anyone." -msgstr "" -"Désactiver la vérification des permissions pour ce fichier. Le fichier sera " -"publiquement accessible à tout le monde." +msgstr "Désactiver la vérification des permissions pour ce fichier. Le fichier sera publiquement accessible à tout le monde." #: models/foldermodels.py:94 msgid "parent" @@ -483,6 +466,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "Au moins une option parmi un utilisateur, un groupe, ou \"tout le monde\" doit être sélectionnée." #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "Tous les dossiers" @@ -501,6 +485,7 @@ msgid "Group: {group}" msgstr "Groupe : {group}" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "Tout le monde" @@ -513,6 +498,7 @@ msgid "Read" msgstr "Lire" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "Ajouter un sous-dossier" @@ -567,6 +553,7 @@ msgid "Show table view" msgstr "Voir la vue en liste" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "Voir la vue avec des miniatures" @@ -634,26 +621,19 @@ msgid "" "Deleting the selected files and/or folders would result in deleting related " "objects, but your account doesn't have permission to delete the following " "types of objects:" -msgstr "" -"Supprimer les fichiers et/ou dossiers sélectionnés devrait provoquer la " -"suppression des objets liés, mais votre compte n'a pas les permissions " -"nécessaires pour supprimer les types d'objets suivants :" +msgstr "Supprimer les fichiers et/ou dossiers sélectionnés devrait provoquer la suppression des objets liés, mais votre compte n'a pas les permissions nécessaires pour supprimer les types d'objets suivants :" #: templates/admin/filer/delete_selected_files_confirmation.html:19 msgid "" "Deleting the selected files and/or folders would require deleting the " "following protected related objects:" -msgstr "" -"Supprimer les fichiers et/ou dossiers provoquera la suppression des objets " -"liés protégés suivants :" +msgstr "Supprimer les fichiers et/ou dossiers provoquera la suppression des objets liés protégés suivants :" #: templates/admin/filer/delete_selected_files_confirmation.html:27 msgid "" "Are you sure you want to delete the selected files and/or folders? All of " "the following objects and their related items will be deleted:" -msgstr "" -"Voulez-vous vraiment supprimer les fichiers et/ou dossiers sélectionnés ? " -"Tous les objets suivants et leurs éléments liés seront supprimés :" +msgstr "Voulez-vous vraiment supprimer les fichiers et/ou dossiers sélectionnés ? Tous les objets suivants et leurs éléments liés seront supprimés :" #: templates/admin/filer/delete_selected_files_confirmation.html:46 #: templates/admin/filer/folder/choose_copy_destination.html:64 @@ -702,11 +682,9 @@ msgstr "Icône du dossier" #: templates/admin/filer/folder/choose_copy_destination.html:23 msgid "" -"Your account doesn't have permissions to copy all of the selected files and/" -"or folders." -msgstr "" -"Votre compte n'a pas les permissions nécessaires pour copier tous les " -"fichiers et/ou dossiers sélectionnés." +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." +msgstr "Votre compte n'a pas les permissions nécessaires pour copier tous les fichiers et/ou dossiers sélectionnés." #: templates/admin/filer/folder/choose_copy_destination.html:25 #: templates/admin/filer/folder/choose_copy_destination.html:31 @@ -730,9 +708,7 @@ msgstr "Aucun fichier ou dossier n'est disponible à copier." msgid "" "The following files and/or folders will be copied to a destination folder " "(retaining their tree structure):" -msgstr "" -"Les fichiers et/ou dossiers suivants seront copiés vers un dossier de " -"destination (en conservant leur arborescence) :" +msgstr "Les fichiers et/ou dossiers suivants seront copiés vers un dossier de destination (en conservant leur arborescence) :" #: templates/admin/filer/folder/choose_copy_destination.html:54 #: templates/admin/filer/folder/choose_move_destination.html:64 @@ -752,9 +728,7 @@ msgstr "Il est impossible de copier des fichiers dans le même dossier" #: templates/admin/filer/folder/choose_images_resize_options.html:15 msgid "" "Your account doesn't have permissions to resize all of the selected images." -msgstr "" -"Votre compte na pas les permissions nécessaires pour redimensionner toutes " -"les images sélectionnées." +msgstr "Votre compte na pas les permissions nécessaires pour redimensionner toutes les images sélectionnées." #: templates/admin/filer/folder/choose_images_resize_options.html:18 msgid "There are no images available to resize." @@ -764,36 +738,25 @@ msgstr "Il n'y a aucune image disponible à redimensionner." msgid "The following images will be resized:" msgstr "Les images suivantes seront redimensionnées :" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" -msgstr "" -"Choisissez une option de miniature existante ou entrez des paramètres de " -"redimensionnement :" +msgstr "Choisissez une option de miniature existante ou entrez des paramètres de redimensionnement :" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "Choisissez des paramètres de redimensionnement :" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." -msgstr "" -"Avertissement : Les images seront redimensionnées en place et les originales " -"seront perdues. Faites-en éventuellement une copie préalable afin de les " -"conserver." +msgstr "Avertissement : Les images seront redimensionnées en place et les originales seront perdues. Faites-en éventuellement une copie préalable afin de les conserver." -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "Redimensionner" #: templates/admin/filer/folder/choose_move_destination.html:35 msgid "" -"Your account doesn't have permissions to move all of the selected files and/" -"or folders." -msgstr "" -"Votre compte n'a pas les permissions nécessaires pour déplacer tous les " -"fichiers et/ou dossiers sélectionnés." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." +msgstr "Votre compte n'a pas les permissions nécessaires pour déplacer tous les fichiers et/ou dossiers sélectionnés." #: templates/admin/filer/folder/choose_move_destination.html:47 msgid "There are no files and/or folders available to move." @@ -803,9 +766,7 @@ msgstr "Il n'y a pas de fichiers et/ou dossiers disponibles à déplacer." msgid "" "The following files and/or folders will be moved to a destination folder " "(retaining their tree structure):" -msgstr "" -"Les fichiers et/ou dossiers suivants seront déplacés vers un dossier de " -"destination (en conservant leur arborescence) :" +msgstr "Les fichiers et/ou dossiers suivants seront déplacés vers un dossier de destination (en conservant leur arborescence) :" #: templates/admin/filer/folder/choose_move_destination.html:73 #: templates/admin/filer/folder/choose_move_destination.html:76 @@ -820,9 +781,7 @@ msgstr "Il est impossible de déplacer des fichiers dans le même dossier" #: templates/admin/filer/folder/choose_rename_format.html:15 msgid "" "Your account doesn't have permissions to rename all of the selected files." -msgstr "" -"Votre compte n'a pas les permissions nécessaires pour renommer tous les " -"fichiers sélectionnés." +msgstr "Votre compte n'a pas les permissions nécessaires pour renommer tous les fichiers sélectionnés." #: templates/admin/filer/folder/choose_rename_format.html:18 msgid "There are no files available to rename." @@ -832,10 +791,7 @@ msgstr "Il n'y a pas de fichiers disponibles à renommer." msgid "" "The following files will be renamed (they will stay in their folders and " "keep original filename, only displayed filename will be changed):" -msgstr "" -"Les fichiers suivants seront renommés (ils resteront dans leurs dossiers et " -"conserveront leur nom de fichier d'origine ; seul le nom affiché sera " -"changé) :" +msgstr "Les fichiers suivants seront renommés (ils resteront dans leurs dossiers et conserveront leur nom de fichier d'origine ; seul le nom affiché sera changé) :" #: templates/admin/filer/folder/choose_rename_format.html:59 msgid "Rename" @@ -992,11 +948,13 @@ msgstr "activé" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "url canonique '%(item_label)s' " #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "Télécharger '%(item_label)s' " @@ -1007,8 +965,7 @@ msgstr "Supprimer le fichier" #: templates/admin/filer/folder/directory_table_list.html:160 #: templates/admin/filer/folder/directory_thumbnail_list.html:138 msgid "Drop files here or use the \"Upload Files\" button" -msgstr "" -"Déposez des fichiers ici ou utilisez le bouton « Téléverser des fichiers »" +msgstr "Déposez des fichiers ici ou utilisez le bouton « Téléverser des fichiers »" #: templates/admin/filer/folder/directory_table_list.html:175 #: templates/admin/filer/folder/directory_thumbnail_list.html:153 @@ -1059,10 +1016,12 @@ msgstr "Sélectionner les %(total_count)s" #: templates/admin/filer/folder/directory_thumbnail_list.html:15 #: templates/admin/filer/folder/directory_thumbnail_list.html:80 +#| msgid "Select this file" msgid "Select all" msgstr "Tout sélectionner" #: templates/admin/filer/folder/directory_thumbnail_list.html:77 +#| msgid "Filer" msgid "Files" msgstr "Fichiers" @@ -1129,6 +1088,7 @@ msgstr "Agrandir" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "Le fichier est manquant" @@ -1184,38 +1144,37 @@ msgid "Choose File" msgstr "Sélectionner un fichier" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "Choisissez un dossier" #: validation.py:19 #, python-brace-format msgid "File \"{file_name}\": Upload denied by site security policy" -msgstr "" -"Fichier \"{file_name}\" : Hébergement refusé par la politique de sécurité du " -"site" +msgstr "Fichier \"{file_name}\" : Hébergement refusé par la politique de sécurité du site" #: validation.py:22 #, python-brace-format msgid "File \"{file_name}\": {file_type} upload denied by site security policy" -msgstr "" -"Fichier \"{file_name}\" : hébergement de {file_type} refusé par la politique " -"de sécurité du site" +msgstr "Fichier \"{file_name}\" : hébergement de {file_type} refusé par la politique de sécurité du site" #: validation.py:33 #, python-brace-format msgid "File \"{file_name}\": HTML upload denied by site security policy" -msgstr "" -"Fichier \"{file_name}\" : hébergement HTML refusé par la politique de " -"sécurité du site" +msgstr "Fichier \"{file_name}\" : hébergement HTML refusé par la politique de sécurité du site" #: validation.py:71 #, python-brace-format msgid "" "File \"{file_name}\": Rejected due to potential cross site scripting " "vulnerability" -msgstr "" -"Fichier \"{file_name}\" : Rejeté à cause d'une potentielle vulnérabilité de " -"cross-site scripting" +msgstr "Fichier \"{file_name}\" : Rejeté à cause d'une potentielle vulnérabilité de cross-site scripting" + +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/gl/LC_MESSAGES/django.po b/filer/locale/gl/LC_MESSAGES/django.po index a81d1a3a8..4cbd2447c 100644 --- a/filer/locale/gl/LC_MESSAGES/django.po +++ b/filer/locale/gl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Translators: @@ -11,18 +11,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Pablo, 2015\n" -"Language-Team: Galician (http://app.transifex.com/divio/django-filer/" -"language/gl/)\n" -"Language: gl\n" +"Language-Team: Galician (http://app.transifex.com/divio/django-filer/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -31,199 +32,196 @@ msgid "Can't find folder to upload. Please refresh and try again" msgstr "" #: admin/clipboardadmin.py:19 -msgid "Can't use this folder, Permission Denied. Please select another folder." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "Avanzado" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." msgstr "" -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" msgstr[0] "%(total_count)s seleccionados" msgstr[1] "Os %(total_count)s seleccionados" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "0 de %(cnt)s seleccionados" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "Ningunha acción seleccionada." -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "Movéronse correctamente %(count)d arquivos ao portapapeis." -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "Mover arquivos seleccionados ao portapapeis." -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "" -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "" -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "Non se poden borrar arquivos e/ou carpetas" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "Estás seguro?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "Borrar arquivos e/ou carpetas" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "Mover alquivos e/ou carpetas" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "Mover arquivos e/ou carpetas seleccionados" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "" -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "" -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "Copiar arquivos e/ou carpetas" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "Copiar arquivos e/ou carpetas seleccionados" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "" -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "Cambiar o tamaño das imaxes" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "Cambiar o tamaño das imaxes seleccionadas" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "" -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." msgstr "" -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "" -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "Formato para o cambio de nome non válido: %(error)s." -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "opción da miniatura" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "ancho" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "alto" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "recortar" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "ampliar" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "" -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "" - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "" @@ -462,6 +460,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -480,6 +479,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -492,6 +492,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -546,6 +547,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -674,8 +676,8 @@ msgstr "" #: templates/admin/filer/folder/choose_copy_destination.html:23 msgid "" -"Your account doesn't have permissions to copy all of the selected files and/" -"or folders." +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." msgstr "" #: templates/admin/filer/folder/choose_copy_destination.html:25 @@ -730,28 +732,24 @@ msgstr "" msgid "The following images will be resized:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." msgstr "" -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "" #: templates/admin/filer/folder/choose_move_destination.html:35 msgid "" -"Your account doesn't have permissions to move all of the selected files and/" -"or folders." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." msgstr "" #: templates/admin/filer/folder/choose_move_destination.html:47 @@ -942,11 +940,13 @@ msgstr "" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "" @@ -1008,10 +1008,12 @@ msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:15 #: templates/admin/filer/folder/directory_thumbnail_list.html:80 +#| msgid "Select this file" msgid "Select all" msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:77 +#| msgid "Filer" msgid "Files" msgstr "" @@ -1077,6 +1079,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1132,6 +1135,7 @@ msgid "Choose File" msgstr "" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1157,6 +1161,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/he/LC_MESSAGES/django.mo b/filer/locale/he/LC_MESSAGES/django.mo index 850c59e4bf3fae168327507781852a7a3bd06784..a3f72b63eed70f8b4ac54d2016fca9d1b26e5a79 100644 GIT binary patch delta 3385 zcmYk-d2mf<7{~D^wk#5{MWk*kWD&81G_(;KN@zn9Eupc-(p06fgcJ= BtSjz!oCCt?K7#?`nG`B+#Bv(6Zc%`g)? zVm78?F+ObOSv8ehPVB&@cmZSaD)z>|QDaHvBxAE)n1Fpy9TcKEsK5@m2$QiEXX59$ z2UA*_wZU&t1GtPS^luSNLml@--6#v2V-BX^Fw~68u@P2c6fVRhT!C$I4{BhCu^pa4 zt>~Yq>!Vr+C(s%@(T>Nl^l#Zz)bU35gDt3;Y)9Sj5Nf6kn27(PRwAD1XdnU9%(`&U zL~>9A8ibn27}uVP18FZn^;eHxG?g#hiIb>j*MOSAWsJxFP#w19uDUP|GcbUxqK$A) z#6sG$Fbj`hU%ZXVp>z_c086kJ?vG>rwZxY=k&4aeRX6B?Ik*JN@DS=*rZAedxB+!t zhxTUOa1g4)a_27WLi;SH;eG6jX)I?tPDV{+Z364B71+p$CAb5}V&I{m^D&?HNgR&x zJQwoOrlFFu0vqFE)D5dqE3yi;E4DayqE_}J)OGc!`yBPCkf8QGM&V`Wb<~pIaqYXP z8;6ro`h9!UvrR*Fl!Z#N0jLi0P}di__GnaYOhRsD(@_KVs;Q8mwhGBB+lu<(C(Z-N z>RUbPf>ZAN8Q1<9HIOT)tiFltYiq?p1ITb@p(c=x>MtMZ$Fm7kG=r(A3(A~xP#099 z2Cx!&3bq}!boK80 kuLE3yxjY@cB-Jnz~q*t4ay`=Wlg9X0daScC_4p8hSG zw}@7t4W?lL`(PgG!YWL~<@hLmh@0>{Ucrjw;C>&I5*%0=_T&6+Y>F3A6Zr+Too``R zjNqpJ{?DYMj&f1EVJK=wqmVwV%C+A^25rYN5&u9vqUQX#83s_>ED2}eI8?{SP!s$X zHNmq^8lFGXuAJ3~CZnF^8swd0>rqR-3w5I-$j44_&_Mq}&FDVv$9Qg{XMY@(D-EdK zas$aryN7(NLwfN2k(bW;M{uHy6Y5|-4n+@nY1!APft coUz*QQgc2<7UjmpHSZ? zb~k$rYcLlN;{d#irP!~B*$~``HTbLNDrG&*zU0I$R1zJ?2+s5h4x$~+Nm+o(feo0A zU*QzIhxu62J2;V#k(Ztw#82@QzJ$v%gI+_u=)5BCHj&C+)Dku4J*pX}p`K}f)Cvv8 zL>%G1FLy4(R-CUz{eBN>$@jVQM=*-^cNmT5T>E$At?$`wD&&JjlJeSiy-^p8bdE<| zSc-bK^H2lwP#v#E{eBy=c=my7pT;=a7g0I#59+!YGE~2Bhe_K1ov7%GJoiNbs>5Pu zDYCjY5Bb<`4ocE 4?*@9oAqf zzKiPMC~77rP;b7As2koub#%wI8}U{Oqx}l;I-$g5tNZtygtG`e;&5UDq2g&~Do+sH z$DSeP5WFpI0imMABf sU%kVHMSMLOr#U+K>r^v3C9qd36-}9{U3}XrVuLH uQN#T8qtc$(M#K^-bBXx6PB9n4>Jnljo7UyEJ=mfyIcaHl-Rbn3G5-Tm6*p1< delta 3460 zcmYk;3rv<(9LMp4a+8~iq9}$S7rB^dUI+!nOXUr(s8JXiq67(Ez{E>$n0QY`RJ@Rx zZK2D?jOI$Ca^}{wa;Y0pW;$)HT5YL0)6~Ad=Q%Xb{6C*_&ig#ixj(pR;i*NQ%c0&o z4XKXkLHz4&%muvEjteOv*qA|>h+&wAeprqjaTWUGR$Py}k$)yS#F$=~g1$Hvdtwg8 zV+B5DjK>@xGn|S~u^T=>9}I7A4F60dm;Trn)u-7=A59VJ{!&y!8&C}$!3b=`SUiVC zcnj+>uY)n2(2w57)4quy6Gz2JRKta+7nNWjmfPPeQ6sO%HrRjx_yNXX6L!X{sE*yn zF4!T|o!Q=~=SQOkFae`!-%KGh6PKVGK5K6{j~Yoc>V-E^BMqkeQP>alqA943%s~E` zIb1Z5a#V*_pa!zdmg_K+@=^4t!5d_P@E=s!m#4Ib!Kel!P$L NE}J&}!S`eFbM zvyMegdA2R*pk6!|b$>Z(jjK=%RiifBUex;!qMkou%STar#B+iSoiQiT=`pf#&2?nI zncJuv+i_TBdt?<%80!8$wtj#ur=dEMiP1O#`DaSFr~{j=)yM!mW)~SXSdVJpW7G&f zLp|`N^=s6K&!akU4OtCy7d3NXk?!xYsOJWurg#XdLt{`gl5Ky_MIW92Ib>SAjG2!s zxM4(;+v6tG)c%0{WPV32NdUt-fMKYaJBCl z&VLMF56wUlPRDfAi?*X?Vh`$pgQ#P3*8c7l>z)#S96)^v?!bJ!hIf#YXD-FL9sCQ2 zP)>?>XSx7A8c{JBPLNrOiMR!I3O+(#JZ;Ngp+?q%^uc&hP&tkZgE3hcg$q$jRgHT7 zAnLds#zMS;YIke`^RE$RGdzuOmUS&^qz$MJ{fyq&o&w(}(-}4O38)v1Ms6{aP#s@} z8c-EB;G3vDkd@@_nH<#8mL)O&Y;d!NivIXEa<937%$B*2{uq<&Hq-~7rkskJ+E-B> zs=<7$$B`J=$Cyz#5ud{CsNcWCR7`)|{i9drA(KJHhd2*!;AqV0OQ&$ZH7124O8F3K zQx$R1i1* dH(Id}}mVfYj7K=P4~qVbfFIZ9?7zJzH!E#E !#o1tZCShau(|TJk-?BbL%~3DVYE&)?*OX*zy4k zqx>GSU(89=G5i&Ezdt)lc0xTDiGi4m>QE}G;Y`$hQ<2Fuvut@Y>hF)KC8N#qKI*~K z_J(gzyS&BL-?#O?ET9_fXpKZINiuSa$wh6}8q|n)qc-bXs3|{z>d-~0^ZyeWHT)au z!JDWlyn~vmAigd=u?Kd+bd1Mos0Nm!W~vhPC9Flg?_E?w4Yqt7y(ljuwh+${9=)h5 zF`HOO@HKTllP{nW`^HJbx$?a8=Xfz{DJlph?Q}M_NhfLuogB84liuK(OXyT6?Iog! zcEk*Q|A&%M+Ca1+)~P_+L#%Rg?q$Iv`PQs9G1Sj 2+d?lXEX?;8h~~k-8%C+Gx9M-C8WP`OP?t$RtV$zHiPK z^flb>j-MQ ^tuz{h!+W^SBUja&ixvekWVI3 z2_GVsc$V1Ry8Cueh#*D~`Gk^=+E^#&{`b3%d s9F&vZwiQRC8UkYIi#Iu{949BN|haE(ZSx2E \n" -"Language-Team: Hebrew (http://app.transifex.com/divio/django-filer/language/" -"he/)\n" -"Language: he\n" +"Language-Team: Hebrew (http://app.transifex.com/divio/django-filer/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % " -"1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" +"Language: he\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -30,24 +30,25 @@ msgid "Can't find folder to upload. Please refresh and try again" msgstr "" #: admin/clipboardadmin.py:19 -msgid "Can't use this folder, Permission Denied. Please select another folder." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "מתקדם" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." msgstr "יש לבחור פריטים על מנת לבצע עליהם פעולות. לא בוצעו פעולות." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" @@ -56,175 +57,171 @@ msgstr[1] "כל ה-%(total_count)s נבחרו" msgstr[2] "כל ה-%(total_count)s נבחרו" msgstr[3] "כל ה-%(total_count)s נבחרו" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "0 מתוך %(cnt)s נבחרו" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "לא נבחרה פעולה." -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "הועברו בהצלחה %(count)d קבצים ללוח" -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "העבר קבצים שנבחרו ללוח" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "בוטלו בהצלחה הרשאות עבור %(count)d קבצים." -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "אופשרו בהצלחה הרשאות עבור %(count)d קבצים." -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "אופשרו הרשאות עבור קבצים בחורים" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "בוטלו הרשאות עבור קבצים בחורים" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "נמחקו בהצלחה %(count)d קבצים ו/או תיקיות." -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "לא ניתן למחוק קבצים ו/או תיקיות" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "האם את/ה בטוח/ה?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "מחק קבצים ו/או תיקיות" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "מחק קבצים ו/או תיקיות בחורים" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "הועברו בהצלחה %(count)d קבצים ו/או תיקיות לתיקיה '%(destination)s'." -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "העבר קבצים ו/או תיקיות" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "העבר קבצים ו/או תיקיות בחורים" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "שונו בהצלחה שמותיהם של %(count)d קבצים." -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "שנה שמות קבצים" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." msgstr "הועתקו בהצלחה %(count)d קבצים ו/או תיקיות לתיקיה '%(destination)s'." -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "העתק קבצים ו/או תיקיות" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "העתק קבצים ו/או תיקיות בחורים" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "שונה בהצלחה גודלם של %(count)d תמונות." -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "שנה גודל תמונות" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "שנה גודל תמונות בחורות" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "סיומת אשר תתווסף לשמות קבצים שהועתקו." -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." msgstr "על הסיומת להיות תקינה, פשוטה ובאותיות קטנות, כגון \"%(valid)s\"." -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "ערך מפתח תבנית שינוי השם \"%(key)s\". אינו חוקי." -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "תבנית שינוי שם לא תקינה: %(error)s." -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "אפשרות תמונה ממוזערת" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "רוחב" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "גובה" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "חיתוך" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "הגדל" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." msgstr "עליך לבחור אפשרות תמונה ממוזערת או פרמטרי שינוי גודל." -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "יש לבחור פרמטרי שינוי גודל." - #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" msgstr "מיקום נושא" @@ -463,6 +460,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -481,6 +479,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -493,6 +492,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -547,6 +547,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -614,25 +615,19 @@ msgid "" "Deleting the selected files and/or folders would result in deleting related " "objects, but your account doesn't have permission to delete the following " "types of objects:" -msgstr "" -"עבור מחיקת הקבצים ו/או התיקיות הבחורים יש צורך למחוק אובייקטים מקושרים, אך " -"לחשבונך אין הרשאות למחוק אובייקטים מהסוגים הבאים:" +msgstr "עבור מחיקת הקבצים ו/או התיקיות הבחורים יש צורך למחוק אובייקטים מקושרים, אך לחשבונך אין הרשאות למחוק אובייקטים מהסוגים הבאים:" #: templates/admin/filer/delete_selected_files_confirmation.html:19 msgid "" "Deleting the selected files and/or folders would require deleting the " "following protected related objects:" -msgstr "" -"עבור מחיקת הקבצים ו/או התיקיות הבחורים יש צורך למחוק את האובייקטים המוגנים " -"הבאים:" +msgstr "עבור מחיקת הקבצים ו/או התיקיות הבחורים יש צורך למחוק את האובייקטים המוגנים הבאים:" #: templates/admin/filer/delete_selected_files_confirmation.html:27 msgid "" "Are you sure you want to delete the selected files and/or folders? All of " "the following objects and their related items will be deleted:" -msgstr "" -"האם את/ה בטוח/ה שברצונך למחוק את הקבצים ו/או התיקיות הבחורים? כל הפריטים " -"המקושרים יימחקו:" +msgstr "האם את/ה בטוח/ה שברצונך למחוק את הקבצים ו/או התיקיות הבחורים? כל הפריטים המקושרים יימחקו:" #: templates/admin/filer/delete_selected_files_confirmation.html:46 #: templates/admin/filer/folder/choose_copy_destination.html:64 @@ -681,8 +676,8 @@ msgstr "צלמית תיקייה" #: templates/admin/filer/folder/choose_copy_destination.html:23 msgid "" -"Your account doesn't have permissions to copy all of the selected files and/" -"or folders." +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." msgstr "לחשבונך אין רשות להעתיק את כל הקבצים ו/או התיקיות הבחורים." #: templates/admin/filer/folder/choose_copy_destination.html:25 @@ -707,8 +702,7 @@ msgstr "אין קבצים ו/או תיקיות זמינים להעתקה." msgid "" "The following files and/or folders will be copied to a destination folder " "(retaining their tree structure):" -msgstr "" -"הקבצים ו/או התיקיות הבאים יועתקו לתיקיית יעד (תוך שמירה על מבנה העץ שלהם):" +msgstr "הקבצים ו/או התיקיות הבאים יועתקו לתיקיית יעד (תוך שמירה על מבנה העץ שלהם):" #: templates/admin/filer/folder/choose_copy_destination.html:54 #: templates/admin/filer/folder/choose_move_destination.html:64 @@ -738,30 +732,24 @@ msgstr "אין תמונות זמינות לשינוי גודלן." msgid "The following images will be resized:" msgstr "התמונות הבאות ישונה גודלן:" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" msgstr "בחר אפשרות תמונה ממוזערת קיימת או הזן פרמטרי שינוי גודל:" -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "בחר פרמטרי שינוי גודל:" - -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." -msgstr "" -"הזהרה: התמונות ישונה גודלן במקום והמקוריות יאבדו. אולי ראשית עשה/י העתק שלהם " -"כדי לשמור על המקויות." +msgstr "הזהרה: התמונות ישונה גודלן במקום והמקוריות יאבדו. אולי ראשית עשה/י העתק שלהם כדי לשמור על המקויות." -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "שנה גודל" #: templates/admin/filer/folder/choose_move_destination.html:35 msgid "" -"Your account doesn't have permissions to move all of the selected files and/" -"or folders." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." msgstr "לחשבונך אין רשות להעביר את כל הקבצים ו/או התיקיות הבחורים." #: templates/admin/filer/folder/choose_move_destination.html:47 @@ -772,8 +760,7 @@ msgstr "אין קבצים ו/או תיקיות זמינים להעברה." msgid "" "The following files and/or folders will be moved to a destination folder " "(retaining their tree structure):" -msgstr "" -"הקבצים ו/או התיקיות הבאים יועברו לתיקיית יעד (תוך שמירה על מבנה העץ שלהם):" +msgstr "הקבצים ו/או התיקיות הבאים יועברו לתיקיית יעד (תוך שמירה על מבנה העץ שלהם):" #: templates/admin/filer/folder/choose_move_destination.html:73 #: templates/admin/filer/folder/choose_move_destination.html:76 @@ -798,9 +785,7 @@ msgstr "אין קבצים זמינים לשינוי שמם." msgid "" "The following files will be renamed (they will stay in their folders and " "keep original filename, only displayed filename will be changed):" -msgstr "" -"הקבצים הבאים ישונו שמותיהם (הם יישארו בתיקיות הנוכחיות שלהם ושמם המקורי " -"יישאר - רק שמות התצוגה שלהם ישונו):" +msgstr "הקבצים הבאים ישונו שמותיהם (הם יישארו בתיקיות הנוכחיות שלהם ושמם המקורי יישאר - רק שמות התצוגה שלהם ישונו):" #: templates/admin/filer/folder/choose_rename_format.html:59 msgid "Rename" @@ -959,11 +944,13 @@ msgstr "מאופשר" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "" @@ -1025,10 +1012,12 @@ msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:15 #: templates/admin/filer/folder/directory_thumbnail_list.html:80 +#| msgid "Select this file" msgid "Select all" msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:77 +#| msgid "Filer" msgid "Files" msgstr "" @@ -1096,6 +1085,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1151,6 +1141,7 @@ msgid "Choose File" msgstr "" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1176,6 +1167,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/hr/LC_MESSAGES/django.mo b/filer/locale/hr/LC_MESSAGES/django.mo index 3c97247999922964c323d4038b86726ae91ae7e4..317a0772680201b79ada8b19844f86e4b20b784f 100644 GIT binary patch delta 3401 zcmYk;3rv<(9LMn^aS;%d7ZAaUi+~^^D1s&mWL{82h4PZ7l8Py6-b(XAuQwD474gz5 zwl!yVbJ^;h+C^EHO #^MwV!D@`c<=7p)SdaC{pNWbzCIu5Q7)N6w zPQY|rf{*Z;X(Ch1jguIJ?bs7LaWDo_P+JO+wwV%)$FZmi=AkOsihXexrs8p|!LRWx z% !V@F`4>JIhh%_0#)$^`@lt1k1nA;*n#SCDBVcHfv69aqZ(3){Fymi z)R9%F2CYMNq|ugrSVH+d^s2&kGClAPsvN*un!`|358^Nm2caq)hkC9IbFdN_O|#Xy zAE!`$1BYTK7GNd|NNcGIC*z@5#y^+LZ`{xn^rp6S9EtkC0xU#7F2xSioX(~-4R{{) zUPT{cvTz-$!eiDe*q?F)! LPkUuVk=sI_qbsnU2`$T%%V7OXjktTXd1>cMN) z8_4LJcGUAhY+n7|16B5*8WNAmn1=kB@m$n^YHJOu11pgFyk;{QeW)4L10U*zqt-W3 zFPuO%;4Cs5<`Qb;+U@WEqTY*q)E(kzRD+UHBa)5!Js(xy2=sSj{!7Scv2`Z8C)}7M zcM4{qDy&8|Y!mLrI@Cx-)6HB=Lk;zGOv5T1gga1+?-W*G8|phb>|ssaaLm*GFD1jy zGn-H?Z9@Kxk4qMQYVZGU?|0by9!{Or{9c4D_yMw!%%oKJ1e}j*z)n=d-beNPGHQ+e zgkJUJI+=95iyE>-p4Mv4Lao*u%)n8|^qWP lfuj(Xub@@Habz8X@98nR+k52s)VR-@L!a$BxP&KlE%)p#6L zQ8=yFqK>s@AUoU?W-$JYnwiE8op9?h824FyIGpn9s1IL3jo2;J`EcL z@sUvrk76XggZjWn$nkBy!$AB4 zRY5zdL4TvxM(_}~qA=7PN855bvhGX{>iKEt!75b4*Esi?|D9yiqh{3V_Mz6mDSQ8{ z^$S!3zCxzeT(;gvH6)XXS4G*V4h*+WMRjm7s^=?F&uzd!?f*J5QP_amR J!w^ zesBE+RncwK$lSqjjATW5Fab5>*{BK&P*b*!*iDQhw5#;(dBh6Bs|xk-972gvby6`` zEhw#tRRo8md5KUOO|Tx#NTQk0Ff#~FYUHYw|F~N;hcSsz&!-U@VWoN^K Q2_+W3^B+;=pP+sxY1n4DS?A!0 zCZ9oQ9Vjg%UM4imFA|kR1)+7o#`!-n;?8#7h@0)*Jvg0MY0HbToX|F3Z|iq{TI5`f zc^b7PAEXAG(LvSU<`1B@)icB>qKZ)JOKc(X3I3UI{$V?W+CfS&F3wI<*82jNF~m%j zNKM34C+A+aK`rrQmwQXdYXu*)_v-LDn|}q1h!Wy?g7e6XCDhS<#Dlb*%n03{NT!9* z%HBmNEpRbgaS{<>%X=}Gh$kix&k{;&iJeZ)J${#y&mx8q+S;ka4B}NnNhf9k@sysL wuREkzqSVQ`+v^B eM4W$c#MN&8%$_+x{*5tFk^VC&{e%56nK#1!1A(hBYybcN delta 3454 zcmYk;X;76_9LMp4+{+q^EV8(v0$mnSN&!X1#2o^$M6<|5QBe~T#U=GBx#E_Rnp@W7 zj3$;gcP4C%#?jPXIE|SzSu^U4)mW*On)b$N`u^^7Y&>)S&*z+TpXZ+SIq>DIN44H- zF|Hkkw4dlgxZK8khqptykP0G<>5l_29_ug|*I-B7j3Iac*W+R2V{#*n>4`-cgw@y` zYcU-+U{_ fnhGVP!z6~`4SFr>Bf?@b8_QLxZ zhY2xG2eYvg<&mfvu0lP(6kW7$n#lCPbvO|}LNy#fH#O1_)QBQbBhEmLxEND#2I{_b zsE%wxK4upe4Wt#-p-)i*IcLk4&^wfhn`G3Whr6D_KB)2_)LIs!8mvH#WC14NMpVNe zqV7M8eef7E%jUZEFD$1Vzy|7v6_|%> ko{{OqBg0Ug$~3h)bGWjW+WN)wq#lRdC6#s2csS=LH*DKWaFCY z7={b1x?fY?Y|C3wKfDKZe=BN@Pof$+kJ@Y(QNMo$_52N6_TD6;O>!6My!i+HJ?7 8P6)Db%_W^1N+E5LiMs@55+>AF+9j|AYeX$8O)jmwacFe(_P@6A?SE&LAVy52z zO=R?gZKyRoh0o$e
oz#f?>{kxoO6Xdb5HO4QUH!a($)rnC(`cox|<<_~0*OgIlQSd)P%Sb`eh zTP+7lFB$fa>uW)C2R7Tg^UHN6w&T>^yRGnC~$d@1XX? z16z)!mz+T+5o@qFs+|@O^RL~#p9*;#IReZX)WLKWnMD(u;hcE+7(}_;T8Raet56N> zM9o|)>bz*T-^XV WU%H2=3^K;ZU7F$LR^OG=m{KycX23s3;Q@zwhXnqSL0{67d3+MZ0T3=2$o?e z>r#S~Fa-}{7@oxdyoheRgxb7UFbZ#@{5rbU3du9z)@6(K1c15uP_9^#u)t8mVZY7-~T&g^gt{NqZ_)RdY+4_ zAAuUtIMgn$MD2kFTffx064imV$g-OjYdfkVH&MTL3pId;Qty8x3#bvMqeh;Cy0HK? zvSRFrqfxKdWYkhEMosNj>j6|l$51ol!*INS8rT)oOx!}X_cwaAW=n{z#ArgBNWGg% zyg_gnI@6CzOqM?l<*E%fj%Xmd6WW+c!wJ2vgNb(ty|N6}pSEzVB8r`&*X$+JgV4w) z5*ndWGtq%quL4OY*$RKoxy-Zq9Z%F%ljlV-@7lW8aiPr%Ezdwgv!OIb|NlKtW-g(l zRf&ynQj{T$aPUvtD>gq9;|Q&>_JPt2VkHqvEFxYcULZ0FUY!4v&Xjy&InktAt^eD^ zBw{|HG@B?VmJx3fkJBuh(ZTWB<4W9Q^Qq{u`JJdeqgQtbQAsFi1HVP&5xod+1()rF zHkwkrga1`iwviY~Ojd!kni%iTIhQq{K}>j}ZVq{E;9a(E9oE|XW-KC}BkJ{N4w+HJ zDx!sWoYs=j$yG}1BLazygi?)zfA^P>kFe!!m`fxRCB!sBX)&?EpL0&jI`Y{>f$q|~ zokqMw>?V{35uJ%)#B@Tb6EW7GbN)u`Cm(Ig3oy~wG2&W)dsbatLyhmp$l>mmB}rX; e32}*$LFLn@R@cn;h4m~AY8jo=-#5YYTljzQg*u`D diff --git a/filer/locale/hr/LC_MESSAGES/django.po b/filer/locale/hr/LC_MESSAGES/django.po index e9804dd94..dd0bc2692 100644 --- a/filer/locale/hr/LC_MESSAGES/django.po +++ b/filer/locale/hr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Translators: @@ -11,19 +11,19 @@ msgid "" msgstr "" "Project-Id-Version: django Filer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-31 22:21+0200\n" +"POT-Creation-Date: 2023-09-20 10:11+0200\n" "PO-Revision-Date: 2012-07-13 15:50+0000\n" "Last-Translator: Aleks Acimovic, 2022\n" -"Language-Team: Croatian (http://app.transifex.com/divio/django-filer/" -"language/hr/)\n" -"Language: hr\n" +"Language-Team: Croatian (http://app.transifex.com/divio/django-filer/language/hr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #: admin/clipboardadmin.py:16 +#| msgid "" +#| "ccount doesn't have permissions to rename all of the selected files." msgid "You do not have permission to upload files." msgstr "" @@ -32,26 +32,25 @@ msgid "Can't find folder to upload. Please refresh and try again" msgstr "" #: admin/clipboardadmin.py:19 -msgid "Can't use this folder, Permission Denied. Please select another folder." +msgid "" +"Can't use this folder, Permission Denied. Please select another folder." msgstr "" -#: admin/fileadmin.py:47 +#: admin/fileadmin.py:49 msgid "Advanced" msgstr "Napredno" -#: admin/fileadmin.py:162 +#: admin/fileadmin.py:164 msgid "canonical URL" msgstr "" -#: admin/folderadmin.py:399 admin/folderadmin.py:570 +#: admin/folderadmin.py:411 admin/folderadmin.py:582 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." -msgstr "" -"Stavke moraju biti odabrane kako bi se obavila akcija. Nijedna stavka nije " -"promijenjena." +msgstr "Stavke moraju biti odabrane kako bi se obavila akcija. Nijedna stavka nije promijenjena." -#: admin/folderadmin.py:422 +#: admin/folderadmin.py:434 #, python-format msgid "%(total_count)s selected" msgid_plural "All %(total_count)s selected" @@ -59,180 +58,170 @@ msgstr[0] "%(total_count)s odabrana" msgstr[1] "%(total_count)s odabrano" msgstr[2] "Svih %(total_count)s odabrano" -#: admin/folderadmin.py:448 +#: admin/folderadmin.py:460 #, python-format msgid "Directory listing for %(folder_name)s" msgstr "Popis direktorija za %(folder_name)s" -#: admin/folderadmin.py:463 +#: admin/folderadmin.py:475 #, python-format msgid "0 of %(cnt)s selected" msgstr "0 od %(cnt)s odabrano" -#: admin/folderadmin.py:600 +#: admin/folderadmin.py:612 msgid "No action selected." msgstr "Nije izabrana akcija." -#: admin/folderadmin.py:652 +#: admin/folderadmin.py:664 #, python-format msgid "Successfully moved %(count)d files to clipboard." msgstr "Uspješno premješteno %(count)d datoteka u spremnik." -#: admin/folderadmin.py:657 +#: admin/folderadmin.py:669 msgid "Move selected files to clipboard" msgstr "Premjesti odabrane datoteke u spremnik" -#: admin/folderadmin.py:697 +#: admin/folderadmin.py:709 #, python-format msgid "Successfully disabled permissions for %(count)d files." msgstr "Uspješno onemogućene ovlasti za %(count)d datoteka." -#: admin/folderadmin.py:699 +#: admin/folderadmin.py:711 #, python-format msgid "Successfully enabled permissions for %(count)d files." msgstr "Uspješno omogućene ovlasti za %(count)d datoteka." -#: admin/folderadmin.py:707 +#: admin/folderadmin.py:719 msgid "Enable permissions for selected files" msgstr "Omogući ovlasti za odabrane datoteke" -#: admin/folderadmin.py:713 +#: admin/folderadmin.py:725 msgid "Disable permissions for selected files" msgstr "Onemogući ovlasti za odabrane datoteke" -#: admin/folderadmin.py:777 +#: admin/folderadmin.py:789 #, python-format msgid "Successfully deleted %(count)d files and/or folders." msgstr "Uspješno obrisano %(count)d datoteka i/ili direktorija." -#: admin/folderadmin.py:782 +#: admin/folderadmin.py:794 msgid "Cannot delete files and/or folders" msgstr "Nije moguće obrisati datoteke i/ili direktorije" -#: admin/folderadmin.py:784 +#: admin/folderadmin.py:796 msgid "Are you sure?" msgstr "Jeste li sigurni?" -#: admin/folderadmin.py:790 +#: admin/folderadmin.py:802 msgid "Delete files and/or folders" msgstr "Obriši datoteke i/ili direktorije" -#: admin/folderadmin.py:811 +#: admin/folderadmin.py:823 msgid "Delete selected files and/or folders" msgstr "Obriši odabrane datoteke i/ili direktorije" -#: admin/folderadmin.py:918 +#: admin/folderadmin.py:930 #, python-format msgid "Folders with names %s already exist at the selected destination" msgstr "" -#: admin/folderadmin.py:922 +#: admin/folderadmin.py:934 #, python-format msgid "" "Successfully moved %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"Uspješno premješteno %(count)d datoteka i/ili direktorija u direktorij " -"'%(destination)s'." +msgstr "Uspješno premješteno %(count)d datoteka i/ili direktorija u direktorij '%(destination)s'." -#: admin/folderadmin.py:930 admin/folderadmin.py:932 +#: admin/folderadmin.py:942 admin/folderadmin.py:944 msgid "Move files and/or folders" msgstr "Premjesti datoteke i/ili direktorije" -#: admin/folderadmin.py:947 +#: admin/folderadmin.py:959 msgid "Move selected files and/or folders" msgstr "Premjesti odabrane datoteke i/ili direktorije" -#: admin/folderadmin.py:1004 +#: admin/folderadmin.py:1016 #, python-format msgid "Successfully renamed %(count)d files." msgstr "Uspješno preimenovano %(count)d datoteka." -#: admin/folderadmin.py:1013 admin/folderadmin.py:1015 -#: admin/folderadmin.py:1030 +#: admin/folderadmin.py:1025 admin/folderadmin.py:1027 +#: admin/folderadmin.py:1042 msgid "Rename files" msgstr "Preimenuj datoteke" -#: admin/folderadmin.py:1125 +#: admin/folderadmin.py:1137 #, python-format msgid "" "Successfully copied %(count)d files and/or folders to folder " "'%(destination)s'." -msgstr "" -"Uspješno kopirano %(count)d datoteka i/ili direktorija u direktorij " -"'%(destination)s'." +msgstr "Uspješno kopirano %(count)d datoteka i/ili direktorija u direktorij '%(destination)s'." -#: admin/folderadmin.py:1143 admin/folderadmin.py:1145 +#: admin/folderadmin.py:1155 admin/folderadmin.py:1157 msgid "Copy files and/or folders" msgstr "Kopiraj datoteke i/ili direktorije" -#: admin/folderadmin.py:1162 +#: admin/folderadmin.py:1174 msgid "Copy selected files and/or folders" msgstr "Kopiraj odabrane datoteke i/ili direktorije" -#: admin/folderadmin.py:1267 +#: admin/folderadmin.py:1279 #, python-format msgid "Successfully resized %(count)d images." msgstr "Uspješno promijenjena veličina za %(count)d slika." -#: admin/folderadmin.py:1274 admin/folderadmin.py:1276 +#: admin/folderadmin.py:1286 admin/folderadmin.py:1288 msgid "Resize images" msgstr "Promijeni veličinu slika" -#: admin/folderadmin.py:1292 +#: admin/folderadmin.py:1303 msgid "Resize selected images" msgstr "Promijeni veličinu odabranih slika" -#: admin/forms.py:24 +#: admin/forms.py:25 msgid "Suffix which will be appended to filenames of copied files." msgstr "Sufiks koji će biti dodan imenima kopiranih datoteka." -#: admin/forms.py:31 +#: admin/forms.py:32 #, python-format msgid "" "Suffix should be a valid, simple and lowercase filename part, like " "\"%(valid)s\"." -msgstr "" -"Sufiks treba biti jednostavan i upisan malim slovima poput \"%(valid)s\"." +msgstr "Sufiks treba biti jednostavan i upisan malim slovima poput \"%(valid)s\"." -#: admin/forms.py:52 +#: admin/forms.py:53 #, python-format msgid "Unknown rename format value key \"%(key)s\"." msgstr "Nepoznata vrijednost formata ključa za preimenovanje \"%(key)s\"." -#: admin/forms.py:54 +#: admin/forms.py:55 #, python-format msgid "Invalid rename format: %(error)s." msgstr "Neispravan format za premenovanje: %(error)s." -#: admin/forms.py:64 models/thumbnailoptionmodels.py:37 +#: admin/forms.py:69 models/thumbnailoptionmodels.py:37 msgid "thumbnail option" msgstr "opcija sličica" -#: admin/forms.py:67 models/thumbnailoptionmodels.py:15 +#: admin/forms.py:73 models/thumbnailoptionmodels.py:15 msgid "width" msgstr "širina" -#: admin/forms.py:68 models/thumbnailoptionmodels.py:20 +#: admin/forms.py:74 models/thumbnailoptionmodels.py:20 msgid "height" msgstr "visina" -#: admin/forms.py:69 models/thumbnailoptionmodels.py:25 +#: admin/forms.py:75 models/thumbnailoptionmodels.py:25 msgid "crop" msgstr "obreži" -#: admin/forms.py:70 models/thumbnailoptionmodels.py:30 +#: admin/forms.py:76 models/thumbnailoptionmodels.py:30 msgid "upscale" msgstr "povećaj veličinu" -#: admin/forms.py:75 +#: admin/forms.py:80 msgid "Thumbnail option or resize parameters must be choosen." -msgstr "" -"Opcija sličica ili parametri za promjenu veličine moraju biti izabrani." - -#: admin/forms.py:77 -msgid "Resize parameters must be choosen." -msgstr "Parametri za promjenu veličine moraju biti izabrani." +msgstr "Opcija sličica ili parametri za promjenu veličine moraju biti izabrani." #: admin/imageadmin.py:18 admin/imageadmin.py:105 msgid "Subject location" @@ -472,6 +461,7 @@ msgid "At least one of user, group, or \"everybody\" has to be selected." msgstr "" #: models/foldermodels.py:360 +#| msgid "Folders" msgid "All Folders" msgstr "" @@ -490,6 +480,7 @@ msgid "Group: {group}" msgstr "" #: models/foldermodels.py:375 +#| msgid "everybody" msgid "Everybody" msgstr "" @@ -502,6 +493,7 @@ msgid "Read" msgstr "" #: models/foldermodels.py:390 +#| msgid "can add children" msgid "Add children" msgstr "" @@ -556,6 +548,7 @@ msgid "Show table view" msgstr "" #: settings.py:278 +#| msgid "thumbnail option" msgid "Show thumbnail view" msgstr "" @@ -623,25 +616,19 @@ msgid "" "Deleting the selected files and/or folders would result in deleting related " "objects, but your account doesn't have permission to delete the following " "types of objects:" -msgstr "" -"Brisanje odabranih objekata bi rezultiralo brisanjem povezanih objekata, ali " -"Vaš korisnički račun nema ovlasti za brisanje slijedećih tipova objekata:" +msgstr "Brisanje odabranih objekata bi rezultiralo brisanjem povezanih objekata, ali Vaš korisnički račun nema ovlasti za brisanje slijedećih tipova objekata:" #: templates/admin/filer/delete_selected_files_confirmation.html:19 msgid "" "Deleting the selected files and/or folders would require deleting the " "following protected related objects:" -msgstr "" -"Brisanje odabranih datoteka i/ili direktorija bi zahtijevalo brisanje " -"slijedećih zaštičenih povezanih objekata:" +msgstr "Brisanje odabranih datoteka i/ili direktorija bi zahtijevalo brisanje slijedećih zaštičenih povezanih objekata:" #: templates/admin/filer/delete_selected_files_confirmation.html:27 msgid "" "Are you sure you want to delete the selected files and/or folders? All of " "the following objects and their related items will be deleted:" -msgstr "" -"Jeste li sigurni kako želite obrisati odabrane datoteke i/ili direktorije? " -"Svi navedeni objekti i s njima povezane stavke biti će obrisani:" +msgstr "Jeste li sigurni kako želite obrisati odabrane datoteke i/ili direktorije? Svi navedeni objekti i s njima povezane stavke biti će obrisani:" #: templates/admin/filer/delete_selected_files_confirmation.html:46 #: templates/admin/filer/folder/choose_copy_destination.html:64 @@ -690,11 +677,9 @@ msgstr "Ikona direktorija" #: templates/admin/filer/folder/choose_copy_destination.html:23 msgid "" -"Your account doesn't have permissions to copy all of the selected files and/" -"or folders." -msgstr "" -"Vaš korisnički račun nema ovlasti za kopiranje odabranih datoteka i/ili " -"direktorija." +"Your account doesn't have permissions to copy all of the selected files " +"and/or folders." +msgstr "Vaš korisnički račun nema ovlasti za kopiranje odabranih datoteka i/ili direktorija." #: templates/admin/filer/folder/choose_copy_destination.html:25 #: templates/admin/filer/folder/choose_copy_destination.html:31 @@ -718,9 +703,7 @@ msgstr "Nema dostupnih datoteka i/ili direktorija za kopiranje." msgid "" "The following files and/or folders will be copied to a destination folder " "(retaining their tree structure):" -msgstr "" -"Slijedeće datoteke i/ili direktoriji biti će kopirani u odredišni direktorij " -"(zadržavajući postojeću strukturu):" +msgstr "Slijedeće datoteke i/ili direktoriji biti će kopirani u odredišni direktorij (zadržavajući postojeću strukturu):" #: templates/admin/filer/folder/choose_copy_destination.html:54 #: templates/admin/filer/folder/choose_move_destination.html:64 @@ -740,8 +723,7 @@ msgstr "" #: templates/admin/filer/folder/choose_images_resize_options.html:15 msgid "" "Your account doesn't have permissions to resize all of the selected images." -msgstr "" -"Vaš korisnički račun nema ovlasti za promjenu veličina odabranih slika." +msgstr "Vaš korisnički račun nema ovlasti za promjenu veličina odabranih slika." #: templates/admin/filer/folder/choose_images_resize_options.html:18 msgid "There are no images available to resize." @@ -751,36 +733,25 @@ msgstr "Nema dostupnih slika kojima bi se promijenila veličina." msgid "The following images will be resized:" msgstr "Slijedećim slikama biti će promijenjena veličina:" -#: templates/admin/filer/folder/choose_images_resize_options.html:33 +#: templates/admin/filer/folder/choose_images_resize_options.html:32 msgid "Choose an existing thumbnail option or enter resize parameters:" -msgstr "" -"Izaberite postojeću opciju sličica ili unesite parametre za promjenu " -"veličine:" - -#: templates/admin/filer/folder/choose_images_resize_options.html:35 -msgid "Choose resize parameters:" -msgstr "Odaberite parametre za promjenu veličine:" +msgstr "Izaberite postojeću opciju sličica ili unesite parametre za promjenu veličine:" -#: templates/admin/filer/folder/choose_images_resize_options.html:38 +#: templates/admin/filer/folder/choose_images_resize_options.html:36 msgid "" "Warning: Images will be resized in-place and originals will be lost. Maybe " "first make a copy of them to retain the originals." -msgstr "" -"Pažnja: Slikama će biti promijenjena veličina, a originali će biti prepisani " -"sa slikama s novom veličinom. Preporuča se prvo kopirati originalne slike " -"prije promjene veličine." +msgstr "Pažnja: Slikama će biti promijenjena veličina, a originali će biti prepisani sa slikama s novom veličinom. Preporuča se prvo kopirati originalne slike prije promjene veličine." -#: templates/admin/filer/folder/choose_images_resize_options.html:41 +#: templates/admin/filer/folder/choose_images_resize_options.html:39 msgid "Resize" msgstr "Promjeni veličinu" #: templates/admin/filer/folder/choose_move_destination.html:35 msgid "" -"Your account doesn't have permissions to move all of the selected files and/" -"or folders." -msgstr "" -"Vaš korisnički račun nema ovlasti za premještaj svih odabranih datoteka i/" -"ili direktorija." +"Your account doesn't have permissions to move all of the selected files " +"and/or folders." +msgstr "Vaš korisnički račun nema ovlasti za premještaj svih odabranih datoteka i/ili direktorija." #: templates/admin/filer/folder/choose_move_destination.html:47 msgid "There are no files and/or folders available to move." @@ -790,9 +761,7 @@ msgstr "Nema dostupnih datoteka i/ili direktorija za premještaj." msgid "" "The following files and/or folders will be moved to a destination folder " "(retaining their tree structure):" -msgstr "" -"Slijedeće datoteke i/ili direktoriji biti će premješteni u odredišni " -"direktorij (zadržavajući postojeću strukturu):" +msgstr "Slijedeće datoteke i/ili direktoriji biti će premješteni u odredišni direktorij (zadržavajući postojeću strukturu):" #: templates/admin/filer/folder/choose_move_destination.html:73 #: templates/admin/filer/folder/choose_move_destination.html:76 @@ -807,8 +776,7 @@ msgstr "" #: templates/admin/filer/folder/choose_rename_format.html:15 msgid "" "Your account doesn't have permissions to rename all of the selected files." -msgstr "" -"Vaš korisnički račun nema ovlasti za preimenovanje svih odabranih datoteka." +msgstr "Vaš korisnički račun nema ovlasti za preimenovanje svih odabranih datoteka." #: templates/admin/filer/folder/choose_rename_format.html:18 msgid "There are no files available to rename." @@ -818,9 +786,7 @@ msgstr "Nema dostupnih datoteka i/ili direktorija za preimenovanje." msgid "" "The following files will be renamed (they will stay in their folders and " "keep original filename, only displayed filename will be changed):" -msgstr "" -"Slijedeće datoteke če biti preimenovane (ostati će u svojim direktorijima i " -"zadržati ime datoteke, samo će prikazano ime biti promijenjeno):" +msgstr "Slijedeće datoteke če biti preimenovane (ostati će u svojim direktorijima i zadržati ime datoteke, samo će prikazano ime biti promijenjeno):" #: templates/admin/filer/folder/choose_rename_format.html:59 msgid "Rename" @@ -977,11 +943,13 @@ msgstr "omogućeno" #: templates/admin/filer/folder/directory_table_list.html:144 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Canonical url '%(item_label)s'" msgstr "" #: templates/admin/filer/folder/directory_table_list.html:148 #, python-format +#| msgid "Change '%(item_label)s' details" msgid "Download '%(item_label)s'" msgstr "" @@ -1043,10 +1011,12 @@ msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:15 #: templates/admin/filer/folder/directory_thumbnail_list.html:80 +#| msgid "Select this file" msgid "Select all" msgstr "" #: templates/admin/filer/folder/directory_thumbnail_list.html:77 +#| msgid "Filer" msgid "Files" msgstr "" @@ -1113,6 +1083,7 @@ msgstr "" #: templates/admin/filer/tools/detail_info.html:20 #: templates/admin/filer/widgets/admin_file.html:32 #: templatetags/filer_admin_tags.py:107 +#| msgid "file missing" msgid "File is missing" msgstr "" @@ -1168,6 +1139,7 @@ msgid "Choose File" msgstr "" #: templates/admin/filer/widgets/admin_folder.html:16 +#| msgid "Choose File" msgid "Choose Folder" msgstr "" @@ -1193,6 +1165,12 @@ msgid "" "vulnerability" msgstr "" +#~ msgid "Resize parameters must be choosen." +#~ msgstr "Resize parameters must be choosen." + +#~ msgid "Choose resize parameters:" +#~ msgstr "Choose resize parameters:" + #~ msgid "Open file" #~ msgstr "Open file" diff --git a/filer/locale/hu/LC_MESSAGES/django.mo b/filer/locale/hu/LC_MESSAGES/django.mo index 6dca5114dad3923446c6a63959113337597b0eef..2fc4ccde717b6c1ede80df0a6bc0168ef0f8986b 100644 GIT binary patch delta 4427 zcmY+`3v|w90LSrX?47+BGqZ~g!)zFu%P?VYEYe#;8grS#T#FJyF0Y!)Hn*0jxsz;D zHZ@5ha?8@;tPY){PCDuwmrms5Qqtx7d;ibQ(R2L%pXd3%@BjHf|L6Za@8mBDsK^cQ z{SX$o)=*B9STZxnnEC<6d{tLxjR|gGObc{l0=B~x9D d1=G-jE?k85aVaL@I_!u? z(T%rI-}?sxF)-YiXmn!>?r&OB(a8Iuo+JZfFcaf(I!?iLSd0OTioQ%Kj=)2xfk#C+ z9j9S3?cvxI3$Qkpq6WGbTj6nZbANM nz8HcUU}w~mKa4eS9;)Mo z*b?)RF`C_|Cp?ODWxhwf+TT(Aghn|t5rw|yoM=KtrlCeY#`*>hqkRlDz!-YfT4;`` zn2s9oLe#rmf_mp`P*c4THIv(rf94PeUH>h{;k{_)Utf%A>^w;vYHE`(6w^>Q9)ud; zP}CF7LCw%g+b%*6?J|4*25LZmp$6z?6k5-rsCE<7=kYPjzow`YCzu^G05za7_KOpc zKFm~n2=h<_+mHHQrEQ lp2Q5ikD6((kEO1~Fdq|eJF0_9 zd>EryK^l1`K8Isbi}4H=U}`hFm{6<#8tTRoagJV0q`e4RV+m?NRj3E>1v9T2c?jys zx}&CO0P4nr?D=fe>YZlKFT@43mm^!-xOuTuO$=(y^s=tS$7%nHUhK|FrD_&qJ?;Nu zD%z*}Q1AK(*2I&jfqaP?SQTn H!#gn15d`<=&^b+Q2T$V zJuwn>qY0=BX8XTj%rewsTY(zD+o)}{4K?sm48#iC-j8~aqsVeFr%(^_Gis)OL4MQB z-{|80CX@xB3nEa9F&1?}XVidtpbNeB{9x38vQSf=gDe-b6a#UGwG?%I8LHpIr~#Zu z7hXZ1p6EIiU3k}eA9Z0sf^%UQY8SLYO=&vn^C74Xb5Pg6jCvLGPy@_I&D2`^`6hJH z-j15#k_6_zAb{<}30|M+%Mz6n(SyrTPxuuE;dQKuw^2{@C;ETU+VERII|?;`o!ANY zq8l%x`n`!-?2S0EfsCgu^UuSYXE>3DOHe;BC-8Z^fWg>5$(iCo$SE@oyI~RP234p5 zerLUey5Uvqh#~Eq8A(I+=SA&;r+rkCsm#V{Sb|j;+1|O}DvqOl8+F6s9h~3tLd>9D zhWefO8};O=4>?oYANBoVSO-^QUEF|r1tnM;ePvYQsC RL4_M1Db=n!D39rRj2{&L%J{*kjXT4=|qb&74`kzs8{?L*46&crlO9g zpcdOK)Z%yx>)}4s>OX;A{1N$+Z`$z~vJYxNS*VV4P}j{xEz&%U$1SJ<9!Jge6%5w? z|BZ^K_D|HiY{6fOa2$ v+`Xg{Yaij9TRNSrBTc z;3&*SUk@suQqhfW<0QOq9p9ZjO#2M#m1Lzl?|L!n#+#94V!p;WtU+g5)h%&2_Cxi% z74`jMY=+;VX6&yX%)g$r7LOf`v8Z-ej6^T4!*TZWd&pl-6W)^rh#jrDm`?i~_QS@# zoF^TFjcMnjZn(p`2el>+_G13^E Yq?+;wI|z`=|j0_IA$4q83vk>Rorl zQ1qZ~G#JA$8+HAQ*Z}9C) G24$fkIyn{_J=n-eC;!y)j z#|ZSIt{aPb1v61ImW!I9LTrSaFaRGT&yhvs6S9Qt)Bb;oii&Qgj`otV Od+Gl z9CCoDj3nA(8qhAHQbJA>4^b&5Z;}tyc%U?;ewchrqPV|*nqI+`WGYc uKUk-;c{wn`xL$;>ByutB( zTOW#V+4^|=jObN8Vb6`gJ%pclvzZJd6G$m3ApCrokBCZNlHsrU4|;y*cV7 K{(W23B!3uJeq?41RF{v)<6wGQMWn4y*ZW^hV=!4x){r4Y 2CkS|Ft*-Byv>(9S)z+YbE7)!M4qMhgWpEsi&{&&<$ zS7}eSk++GLRF^(frjeIPqCHuLTgU?27On^C$EhD7+Lpe24j+)+WD`;8Pv(&d@;d2C zc9L!+o>Z4tsSG4F$cE~Z7;Njua3N_+v{g@$Z1O2lIjH>~Lgi61NoOdt$wcxwSxXj^ zL!>6@OjKr)`J^XlP3n*|vXmr|b|i(Uyhm2~YtG>d=tttnxav8ZMWYQ-X-PKvYtDZp l{MCwH4d&OV_@?3hS`}q6^+GEyCuO ^_;vZ$coib&vw8j>ujxZ_qBxskhw5|UaJJ~N*SE{Wul<(gZm zZDeX1S>}>TqEne+He-uUI%QdtWmf<1-DBgOzV|!lzIX3g?l~8$c+P8)+skz^#CxUT zs3K8hp06=sUdCLjqqD}O2OHB2Gq4qo!%nyu!|+4o5_1my@FMb``GJpn@g^=ruMlGb zu@rT`HOO@?bAUoLCq6 ~H+JiLP2aVW#54RZ@0#h`F!0C}j6 zm0>&FiB0eV2H-7JM|~rVX-WGgoPv7z0IG+Xs1Ec;jd&=w#L=h@x=}N*6l-A>>c-XB z9BYt1ntxFp32i_dn237BJyG`=gDy=)9)+e@U@b%Syu$h&4x=8%-PFOUs2MB5WL$;n za5d@~pF=(S?@{;v2{n^9kpE0jBj@_KM$CT 7pNQ5 zAZ?gS*cNZ2I+(z`>UXKAdUtGt58*&`VG^Fk&gjhw*DgwNQOKfDh???4sAv5Pw!#Qj zj&6{ODYy(Zf)h9e&tV>Rk7jG(>!|CKW1L+u8rAS(>miJ#{yVltS7YW=J<3Flpaj+P zxu}usMvc4@)$kE}{w!)0e{0X*z!K`3M(zLE$SJcNwRYaN2Czc=QXhl;wEuTg;5+jt z*2Sn6&TfcDJ@Za@52m0xl7{M7CTfulv*z0GC!-$e `p zQ;*(!anjbSQ4Q6gF1Uu?_%~{Cc`?uGKp<*6g`*m3g8E%+TTehA>RpiKV!ELQl7qpt zZ*nQ{(lgW12i?}isKr=@x?l&YLvPsc583laQ5~v6P5F6b`IuX%jx=oL*aUTbbJTs4 z(4}Y9kAe@5M2%=H>cV_$A?m`Js0$aMcENhol u&j?mM9k^H157^1)6rdyrW(pJ5vQg?iC+jb}D+AacqaM9tJ?)Kp)$=j-0b zbEck*YN!y^(Wk9*Q4KFb{c+muqEMT{H>ew4MeT;)upLGuFe>bgXK*j-_lpu4J+4GG z_$TsiG40zr?~^Rl`(hnx2F_y;UPk@?57d2JZE2+rg%s4I=#2rGg)x|en$lwIh;vcD zdlz+sgUHh{$1wtbL5 x;h4l|?hVRR#7Fg2)|3*y1c6x8<< z(WNPRpMqBX_o#a9``IGc5xe4Y)G9uSlkluHC7FdteGBTwiTqg4{83cHPax~e?7$fO z5