From 4288d76afdca55b805101d7b96a2a9c1476107c0 Mon Sep 17 00:00:00 2001 From: Kaibu Date: Sun, 7 Nov 2021 17:32:43 +0100 Subject: [PATCH] added more translations --- cookbook/forms.py | 54 ++- cookbook/locale/ca/LC_MESSAGES/django.po | 465 +++++++++++-------- cookbook/locale/de/LC_MESSAGES/django.po | 471 ++++++++++++-------- cookbook/locale/en/LC_MESSAGES/django.po | 448 +++++++++++-------- cookbook/locale/es/LC_MESSAGES/django.po | 467 +++++++++++-------- cookbook/locale/fr/LC_MESSAGES/django.po | 467 +++++++++++-------- cookbook/locale/hu_HU/LC_MESSAGES/django.po | 450 +++++++++++-------- cookbook/locale/it/LC_MESSAGES/django.po | 467 +++++++++++-------- cookbook/locale/lv/LC_MESSAGES/django.po | 461 +++++++++++-------- cookbook/locale/nl/LC_MESSAGES/django.po | 467 +++++++++++-------- cookbook/locale/pt/LC_MESSAGES/django.po | 456 +++++++++++-------- cookbook/locale/rn/LC_MESSAGES/django.po | 448 +++++++++++-------- cookbook/locale/tr/LC_MESSAGES/django.po | 452 +++++++++++-------- cookbook/locale/zh_CN/LC_MESSAGES/django.po | 460 +++++++++++-------- cookbook/templates/batch/monitor.html | 2 +- cookbook/templates/url_import.html | 33 +- recipes/locale/ca/LC_MESSAGES/django.po | 2 +- recipes/locale/de/LC_MESSAGES/django.po | 2 +- recipes/locale/en/LC_MESSAGES/django.po | 2 +- recipes/locale/es/LC_MESSAGES/django.po | 2 +- recipes/locale/fr/LC_MESSAGES/django.po | 2 +- recipes/locale/hu_HU/LC_MESSAGES/django.po | 2 +- recipes/locale/it/LC_MESSAGES/django.po | 2 +- recipes/locale/lv/LC_MESSAGES/django.po | 2 +- recipes/locale/nl/LC_MESSAGES/django.po | 2 +- recipes/locale/pt/LC_MESSAGES/django.po | 2 +- recipes/locale/rn/LC_MESSAGES/django.po | 2 +- recipes/locale/tr/LC_MESSAGES/django.po | 2 +- recipes/locale/zh_CN/LC_MESSAGES/django.po | 2 +- vue/src/apps/CookbookView/CookbookView.vue | 2 +- 30 files changed, 3547 insertions(+), 2549 deletions(-) diff --git a/cookbook/forms.py b/cookbook/forms.py index 5f114117c..79f1ecfcb 100644 --- a/cookbook/forms.py +++ b/cookbook/forms.py @@ -51,7 +51,19 @@ class UserPreferenceForm(forms.ModelForm): ) labels = { - 'use_kj': 'Use KJ' + 'default_unit': _('Default unit'), + 'use_fractions': _('Use fractions'), + 'use_kj': _('Use KJ'), + 'theme': _('Theme'), + 'nav_color': _('Navbar color'), + 'sticky_navbar': _('Sticky navbar'), + 'default_page': _('Default page'), + 'show_recent': _('Show recent recipes'), + 'search_style': _('Search style'), + 'plan_share': _('Plan sharing'), + 'ingredient_decimals': _('Ingredient decimal places'), + 'shopping_auto_sync': _('Shopping list auto sync period'), + 'comments': _('Comments') } help_texts = { @@ -61,7 +73,7 @@ class UserPreferenceForm(forms.ModelForm): 'use_fractions': _( 'Enables support for fractions in ingredient amounts (e.g. convert decimals to fractions automatically)'), # noqa: E501 - 'use_kj': _('Display nutritional energy amounts in joules instead of calories'), # noqa: E501 + 'use_kj': _('Display nutritional energy amounts in joules instead of calories'), # noqa: E501 'plan_share': _( 'Users with whom newly created meal plan/shopping list entries should be shared by default.'), # noqa: E501 @@ -242,6 +254,12 @@ class SyncForm(forms.ModelForm): 'storage': SafeModelChoiceField, } + labels = { + 'storage': _('Storage'), + 'path': _('Path'), + 'active': _('Active') + } + class BatchEditForm(forms.Form): search = forms.CharField(label=_('Search String')) @@ -330,7 +348,8 @@ class InviteLinkForm(forms.ModelForm): def clean(self): space = self.cleaned_data['space'] - if space.max_users != 0 and (UserPreference.objects.filter(space=space).count() + InviteLink.objects.filter(space=space).count()) >= space.max_users: + if space.max_users != 0 and (UserPreference.objects.filter(space=space).count() + InviteLink.objects.filter( + space=space).count()) >= space.max_users: raise ValidationError(_('Maximum number of users for this space reached.')) def clean_email(self): @@ -400,22 +419,31 @@ class UserCreateForm(forms.Form): class SearchPreferenceForm(forms.ModelForm): prefix = 'search' - trigram_threshold = forms.DecimalField(min_value=0.01, max_value=1, decimal_places=2, widget=NumberInput(attrs={'class': "form-control-range", 'type': 'range'}), - help_text=_('Determines how fuzzy a search is if it uses trigram similarity matching (e.g. low values mean more typos are ignored).')) - preset = forms.CharField(widget=forms.HiddenInput(),required=False) + trigram_threshold = forms.DecimalField(min_value=0.01, max_value=1, decimal_places=2, + widget=NumberInput(attrs={'class': "form-control-range", 'type': 'range'}), + help_text=_( + 'Determines how fuzzy a search is if it uses trigram similarity matching (e.g. low values mean more typos are ignored).')) + preset = forms.CharField(widget=forms.HiddenInput(), required=False) class Meta: model = SearchPreference - fields = ('search', 'lookup', 'unaccent', 'icontains', 'istartswith', 'trigram', 'fulltext', 'trigram_threshold') + fields = ( + 'search', 'lookup', 'unaccent', 'icontains', 'istartswith', 'trigram', 'fulltext', 'trigram_threshold') help_texts = { - 'search': _('Select type method of search. Click here for full desciption of choices.'), + 'search': _( + 'Select type method of search. Click here for full desciption of choices.'), 'lookup': _('Use fuzzy matching on units, keywords and ingredients when editing and importing recipes.'), - 'unaccent': _('Fields to search ignoring accents. Selecting this option can improve or degrade search quality depending on language'), - 'icontains': _("Fields to search for partial matches. (e.g. searching for 'Pie' will return 'pie' and 'piece' and 'soapie')"), - 'istartswith': _("Fields to search for beginning of word matches. (e.g. searching for 'sa' will return 'salad' and 'sandwich')"), - 'trigram': _("Fields to 'fuzzy' search. (e.g. searching for 'recpie' will find 'recipe'.) Note: this option will conflict with 'web' and 'raw' methods of search."), - 'fulltext': _("Fields to full text search. Note: 'web', 'phrase', and 'raw' search methods only function with fulltext fields."), + 'unaccent': _( + 'Fields to search ignoring accents. Selecting this option can improve or degrade search quality depending on language'), + 'icontains': _( + "Fields to search for partial matches. (e.g. searching for 'Pie' will return 'pie' and 'piece' and 'soapie')"), + 'istartswith': _( + "Fields to search for beginning of word matches. (e.g. searching for 'sa' will return 'salad' and 'sandwich')"), + 'trigram': _( + "Fields to 'fuzzy' search. (e.g. searching for 'recpie' will find 'recipe'.) Note: this option will conflict with 'web' and 'raw' methods of search."), + 'fulltext': _( + "Fields to full text search. Note: 'web', 'phrase', and 'raw' search methods only function with fulltext fields."), } labels = { diff --git a/cookbook/locale/ca/LC_MESSAGES/django.po b/cookbook/locale/ca/LC_MESSAGES/django.po index 109e77ef1..3336f27a8 100644 --- a/cookbook/locale/ca/LC_MESSAGES/django.po +++ b/cookbook/locale/ca/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-04 14:56+0100\n" +"POT-Creation-Date: 2021-11-07 17:31+0100\n" "PO-Revision-Date: 2020-06-02 19:28+0000\n" "Last-Translator: Miguel Canteras , 2021\n" "Language-Team: Catalan (https://www.transifex.com/django-recipes/" @@ -27,11 +27,78 @@ msgstr "" #: .\cookbook\filters.py:23 .\cookbook\templates\base.html:125 #: .\cookbook\templates\forms\ingredients.html:34 #: .\cookbook\templates\space.html:43 .\cookbook\templates\stats.html:28 -#: .\cookbook\templates\url_import.html:272 +#: .\cookbook\templates\url_import.html:274 msgid "Ingredients" msgstr "Ingredients" -#: .\cookbook\forms.py:53 +#: .\cookbook\forms.py:54 +#, fuzzy +#| msgid "Default" +msgid "Default unit" +msgstr "Per defecte" + +#: .\cookbook\forms.py:55 +#, fuzzy +#| msgid "System Information" +msgid "Use fractions" +msgstr "Informació de Sistema" + +#: .\cookbook\forms.py:56 +msgid "Use KJ" +msgstr "" + +#: .\cookbook\forms.py:57 +msgid "Theme" +msgstr "" + +#: .\cookbook\forms.py:58 +msgid "Navbar color" +msgstr "" + +#: .\cookbook\forms.py:59 +msgid "Sticky navbar" +msgstr "" + +#: .\cookbook\forms.py:60 +#, fuzzy +#| msgid "Default" +msgid "Default page" +msgstr "Per defecte" + +#: .\cookbook\forms.py:61 +#, fuzzy +#| msgid "Shopping Recipes" +msgid "Show recent recipes" +msgstr "Llista de Compra de Receptes" + +#: .\cookbook\forms.py:62 +#, fuzzy +#| msgid "Search" +msgid "Search style" +msgstr "Cerca" + +#: .\cookbook\forms.py:63 +msgid "Plan sharing" +msgstr "" + +#: .\cookbook\forms.py:64 +#, fuzzy +#| msgid "Ingredients" +msgid "Ingredient decimal places" +msgstr "Ingredients" + +#: .\cookbook\forms.py:65 +#, fuzzy +#| msgid "Shopping list currently empty" +msgid "Shopping list auto sync period" +msgstr "La llista de la compra està buida actualment" + +#: .\cookbook\forms.py:66 .\cookbook\templates\recipe_view.html:21 +#: .\cookbook\templates\space.html:62 .\cookbook\templates\stats.html:47 +msgid "Comments" +msgstr "Comentaris" + +#: .\cookbook\forms.py:70 msgid "" "Color of the top navigation bar. Not all colors work with all themes, just " "try them out!" @@ -39,13 +106,13 @@ msgstr "" "Color de la barra de navegació superior. No tots els colors funcionen amb " "tots els temes, només cal provar-los." -#: .\cookbook\forms.py:55 +#: .\cookbook\forms.py:72 msgid "Default Unit to be used when inserting a new ingredient into a recipe." msgstr "" "Unitat per defecte que s'utilitzarà quan s'insereixi un ingredient nou en " "una recepta." -#: .\cookbook\forms.py:57 +#: .\cookbook\forms.py:74 msgid "" "Enables support for fractions in ingredient amounts (e.g. convert decimals " "to fractions automatically)" @@ -53,11 +120,11 @@ msgstr "" "Permet l'ús de fraccions de quantitats d'ingredients (p.ex.: converteix els " "decimals a fraccions automàticament)" -#: .\cookbook\forms.py:59 +#: .\cookbook\forms.py:76 msgid "Display nutritional energy amounts in joules instead of calories" msgstr "" -#: .\cookbook\forms.py:61 +#: .\cookbook\forms.py:78 msgid "" "Users with whom newly created meal plan/shopping list entries should be " "shared by default." @@ -65,19 +132,19 @@ msgstr "" "Els usuaris que han creat elements d'un pla de menjars/llistat de compra " "s'haurien de compartir per defecte." -#: .\cookbook\forms.py:63 +#: .\cookbook\forms.py:80 msgid "Show recently viewed recipes on search page." msgstr "Mostra les receptes vistes recentment a la pàgina de cerca." -#: .\cookbook\forms.py:64 +#: .\cookbook\forms.py:81 msgid "Number of decimals to round ingredients." msgstr "Nombre de decimals dels ingredients." -#: .\cookbook\forms.py:65 +#: .\cookbook\forms.py:82 msgid "If you want to be able to create and see comments underneath recipes." msgstr "Si vols poder crear i veure comentaris a sota de les receptes." -#: .\cookbook\forms.py:67 +#: .\cookbook\forms.py:84 msgid "" "Setting to 0 will disable auto sync. When viewing a shopping list the list " "is updated every set seconds to sync changes someone else might have made. " @@ -90,11 +157,11 @@ msgstr "" "diverses persones, però pot fer servir una mica de dades mòbils. Si és " "inferior al límit d’instància, es restablirà quan es desa." -#: .\cookbook\forms.py:70 +#: .\cookbook\forms.py:87 msgid "Makes the navbar stick to the top of the page." msgstr "" -#: .\cookbook\forms.py:86 +#: .\cookbook\forms.py:103 msgid "" "Both fields are optional. If none are given the username will be displayed " "instead" @@ -102,59 +169,59 @@ msgstr "" "Tots dos camps són opcionals. Si no se'n dóna cap, es mostrarà el nom " "d'usuari" -#: .\cookbook\forms.py:107 .\cookbook\forms.py:266 -#: .\cookbook\templates\url_import.html:156 +#: .\cookbook\forms.py:124 .\cookbook\forms.py:289 +#: .\cookbook\templates\url_import.html:158 msgid "Name" msgstr "Nom" -#: .\cookbook\forms.py:108 .\cookbook\forms.py:267 +#: .\cookbook\forms.py:125 .\cookbook\forms.py:290 #: .\cookbook\templates\space.html:39 .\cookbook\templates\stats.html:24 -#: .\cookbook\templates\url_import.html:190 -#: .\cookbook\templates\url_import.html:575 .\cookbook\views\lists.py:112 +#: .\cookbook\templates\url_import.html:192 +#: .\cookbook\templates\url_import.html:578 .\cookbook\views\lists.py:112 msgid "Keywords" msgstr "Paraules clau" -#: .\cookbook\forms.py:109 +#: .\cookbook\forms.py:126 msgid "Preparation time in minutes" msgstr "Temps de preparació en minuts" -#: .\cookbook\forms.py:110 +#: .\cookbook\forms.py:127 msgid "Waiting time (cooking/baking) in minutes" msgstr "Temps d'espera (cocció/fornejat) en minuts" -#: .\cookbook\forms.py:111 .\cookbook\forms.py:268 +#: .\cookbook\forms.py:128 .\cookbook\forms.py:259 .\cookbook\forms.py:291 msgid "Path" msgstr "Ruta" -#: .\cookbook\forms.py:112 +#: .\cookbook\forms.py:129 msgid "Storage UID" msgstr "UID Emmagatzematge" -#: .\cookbook\forms.py:140 +#: .\cookbook\forms.py:157 msgid "Default" msgstr "Per defecte" -#: .\cookbook\forms.py:151 .\cookbook\templates\url_import.html:92 +#: .\cookbook\forms.py:168 .\cookbook\templates\url_import.html:94 msgid "" "To prevent duplicates recipes with the same name as existing ones are " "ignored. Check this box to import everything." msgstr "" -#: .\cookbook\forms.py:173 +#: .\cookbook\forms.py:190 msgid "Add your comment: " msgstr "Afegir el teu comentari:" -#: .\cookbook\forms.py:188 +#: .\cookbook\forms.py:205 msgid "Leave empty for dropbox and enter app password for nextcloud." msgstr "" "Deixeu-lo buit per a Dropbox i introduïu la contrasenya de l'aplicació per a " "nextcloud." -#: .\cookbook\forms.py:195 +#: .\cookbook\forms.py:212 msgid "Leave empty for nextcloud and enter api token for dropbox." msgstr "Deixeu-lo buit per a nextcloud i introduïu el token API per a Dropbox." -#: .\cookbook\forms.py:204 +#: .\cookbook\forms.py:221 msgid "" "Leave empty for dropbox and enter only base url for nextcloud (/remote." "php/webdav/ is added automatically)" @@ -162,25 +229,33 @@ msgstr "" "Deixeu-lo buit per a Dropbox i introduïu només l'URL base per a nextcloud " "(/remote.php/webdav/ s'afegeix automàticament)" -#: .\cookbook\forms.py:242 +#: .\cookbook\forms.py:258 .\cookbook\views\edit.py:166 +msgid "Storage" +msgstr "Emmagatzematge" + +#: .\cookbook\forms.py:260 +msgid "Active" +msgstr "" + +#: .\cookbook\forms.py:265 msgid "Search String" msgstr "Cerca Cadena" -#: .\cookbook\forms.py:269 +#: .\cookbook\forms.py:292 msgid "File ID" msgstr "ID d'Arxiu" -#: .\cookbook\forms.py:290 +#: .\cookbook\forms.py:313 msgid "You must provide at least a recipe or a title." msgstr "Has de proporcionar com a mínim una recepta o un títol." -#: .\cookbook\forms.py:303 +#: .\cookbook\forms.py:326 msgid "You can list default users to share recipes with in the settings." msgstr "" "Podeu llistar els usuaris predeterminats amb els quals voleu compartir " "receptes a la configuració." -#: .\cookbook\forms.py:304 +#: .\cookbook\forms.py:327 msgid "" "You can use markdown to format this field. See the docs here" @@ -188,105 +263,105 @@ msgstr "" "Podeu utilitzar el marcador per donar format a aquest camp. Consulteu els documents aquí " -#: .\cookbook\forms.py:329 +#: .\cookbook\forms.py:353 msgid "Maximum number of users for this space reached." msgstr "" -#: .\cookbook\forms.py:335 +#: .\cookbook\forms.py:359 msgid "Email address already taken!" msgstr "" -#: .\cookbook\forms.py:343 +#: .\cookbook\forms.py:367 msgid "" "An email address is not required but if present the invite link will be send " "to the user." msgstr "" -#: .\cookbook\forms.py:358 +#: .\cookbook\forms.py:382 msgid "Name already taken." msgstr "" -#: .\cookbook\forms.py:369 +#: .\cookbook\forms.py:393 msgid "Accept Terms and Privacy" msgstr "" -#: .\cookbook\forms.py:399 +#: .\cookbook\forms.py:425 msgid "" "Determines how fuzzy a search is if it uses trigram similarity matching (e." "g. low values mean more typos are ignored)." msgstr "" -#: .\cookbook\forms.py:407 +#: .\cookbook\forms.py:435 msgid "" "Select type method of search. Click here for " "full desciption of choices." msgstr "" -#: .\cookbook\forms.py:408 +#: .\cookbook\forms.py:436 msgid "" "Use fuzzy matching on units, keywords and ingredients when editing and " "importing recipes." msgstr "" -#: .\cookbook\forms.py:409 +#: .\cookbook\forms.py:438 msgid "" "Fields to search ignoring accents. Selecting this option can improve or " "degrade search quality depending on language" msgstr "" -#: .\cookbook\forms.py:410 +#: .\cookbook\forms.py:440 msgid "" "Fields to search for partial matches. (e.g. searching for 'Pie' will return " "'pie' and 'piece' and 'soapie')" msgstr "" -#: .\cookbook\forms.py:411 +#: .\cookbook\forms.py:442 msgid "" "Fields to search for beginning of word matches. (e.g. searching for 'sa' " "will return 'salad' and 'sandwich')" msgstr "" -#: .\cookbook\forms.py:412 +#: .\cookbook\forms.py:444 msgid "" "Fields to 'fuzzy' search. (e.g. searching for 'recpie' will find 'recipe'.) " "Note: this option will conflict with 'web' and 'raw' methods of search." msgstr "" -#: .\cookbook\forms.py:413 +#: .\cookbook\forms.py:446 msgid "" "Fields to full text search. Note: 'web', 'phrase', and 'raw' search methods " "only function with fulltext fields." msgstr "" -#: .\cookbook\forms.py:417 +#: .\cookbook\forms.py:450 #, fuzzy #| msgid "Search" msgid "Search Method" msgstr "Cerca" -#: .\cookbook\forms.py:418 +#: .\cookbook\forms.py:451 msgid "Fuzzy Lookups" msgstr "" -#: .\cookbook\forms.py:419 +#: .\cookbook\forms.py:452 msgid "Ignore Accent" msgstr "" -#: .\cookbook\forms.py:420 +#: .\cookbook\forms.py:453 msgid "Partial Match" msgstr "" -#: .\cookbook\forms.py:421 +#: .\cookbook\forms.py:454 msgid "Starts Wtih" msgstr "" -#: .\cookbook\forms.py:422 +#: .\cookbook\forms.py:455 #, fuzzy #| msgid "Search" msgid "Fuzzy Search" msgstr "Cerca" -#: .\cookbook\forms.py:423 +#: .\cookbook\forms.py:456 #, fuzzy #| msgid "Text" msgid "Full Text" @@ -309,7 +384,7 @@ msgstr "No heu iniciat la sessió i, per tant, no podeu veure aquesta pàgina." #: .\cookbook\helper\permission_helper.py:216 #: .\cookbook\helper\permission_helper.py:230 #: .\cookbook\helper\permission_helper.py:241 -#: .\cookbook\helper\permission_helper.py:252 .\cookbook\views\data.py:42 +#: .\cookbook\helper\permission_helper.py:252 .\cookbook\views\data.py:47 #: .\cookbook\views\views.py:160 .\cookbook\views\views.py:167 #: .\cookbook\views\views.py:233 msgid "You do not have the required permissions to view this page!" @@ -332,11 +407,11 @@ msgstr "" #: .\cookbook\templates\import_response.html:7 #: .\cookbook\templates\test.html:14 .\cookbook\templates\test.html:20 #: .\cookbook\templates\url_import.html:27 -#: .\cookbook\templates\url_import.html:103 -#: .\cookbook\templates\url_import.html:125 -#: .\cookbook\templates\url_import.html:319 -#: .\cookbook\templates\url_import.html:606 .\cookbook\views\delete.py:89 -#: .\cookbook\views\edit.py:197 +#: .\cookbook\templates\url_import.html:105 +#: .\cookbook\templates\url_import.html:127 +#: .\cookbook\templates\url_import.html:321 +#: .\cookbook\templates\url_import.html:609 .\cookbook\views\delete.py:89 +#: .\cookbook\views\edit.py:200 msgid "Import" msgstr "Importar" @@ -374,14 +449,14 @@ msgstr "Nota" msgid "Nutritional Information" msgstr "Informació" -#: .\cookbook\integration\paprika.py:53 +#: .\cookbook\integration\paprika.py:53 .\cookbook\templates\url_import.html:40 msgid "Source" msgstr "" #: .\cookbook\integration\safron.py:23 #: .\cookbook\templates\include\log_cooking.html:16 -#: .\cookbook\templates\url_import.html:226 -#: .\cookbook\templates\url_import.html:457 +#: .\cookbook\templates\url_import.html:228 +#: .\cookbook\templates\url_import.html:459 msgid "Servings" msgstr "Racions" @@ -449,7 +524,7 @@ msgstr "Cerca" #: .\cookbook\models.py:203 .\cookbook\templates\base.html:82 #: .\cookbook\templates\meal_plan.html:7 #: .\cookbook\templates\meal_plan_new.html:7 .\cookbook\views\delete.py:181 -#: .\cookbook\views\edit.py:217 .\cookbook\views\new.py:180 +#: .\cookbook\views\edit.py:220 .\cookbook\views\new.py:184 msgid "Meal-Plan" msgstr "Plans de Menjar" @@ -474,7 +549,7 @@ msgstr "Nova" msgid " is part of a recipe step and cannot be deleted" msgstr "" -#: .\cookbook\models.py:441 +#: .\cookbook\models.py:441 .\cookbook\templates\url_import.html:42 msgid "Text" msgstr "Text" @@ -482,7 +557,7 @@ msgstr "Text" msgid "Time" msgstr "Temps" -#: .\cookbook\models.py:441 +#: .\cookbook\models.py:441 .\cookbook\templates\url_import.html:44 #, fuzzy #| msgid "File ID" msgid "File" @@ -490,8 +565,8 @@ msgstr "ID d'Arxiu" #: .\cookbook\models.py:441 #: .\cookbook\templates\include\recipe_open_modal.html:7 -#: .\cookbook\views\delete.py:39 .\cookbook\views\edit.py:257 -#: .\cookbook\views\new.py:52 +#: .\cookbook\views\delete.py:39 .\cookbook\views\edit.py:260 +#: .\cookbook\views\new.py:53 msgid "Recipe" msgstr "Recepta" @@ -966,7 +1041,7 @@ msgstr "" "Afegiu les paraules clau especificades a totes les receptes que continguin " "la paraula" -#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:83 +#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:82 msgid "Sync" msgstr "Sync" @@ -986,6 +1061,18 @@ msgstr "" msgid "The path must be in the following format" msgstr "El camí ha de tenir el format següent" +#: .\cookbook\templates\batch\monitor.html:20 +#: .\cookbook\templates\forms\edit_import_recipe.html:14 +#: .\cookbook\templates\generic\edit_template.html:23 +#: .\cookbook\templates\generic\new_template.html:23 +#: .\cookbook\templates\include\log_cooking.html:28 +#: .\cookbook\templates\settings.html:63 .\cookbook\templates\settings.html:105 +#: .\cookbook\templates\settings.html:123 +#: .\cookbook\templates\settings.html:195 +#: .\cookbook\templates\shopping_list.html:360 +msgid "Save" +msgstr "Desa" + #: .\cookbook\templates\batch\monitor.html:21 msgid "Manage External Storage" msgstr "" @@ -1032,17 +1119,6 @@ msgstr "Exporta Receptes" msgid "Import new Recipe" msgstr "Importa nova Recepta" -#: .\cookbook\templates\forms\edit_import_recipe.html:14 -#: .\cookbook\templates\generic\edit_template.html:23 -#: .\cookbook\templates\generic\new_template.html:23 -#: .\cookbook\templates\include\log_cooking.html:28 -#: .\cookbook\templates\settings.html:63 .\cookbook\templates\settings.html:105 -#: .\cookbook\templates\settings.html:123 -#: .\cookbook\templates\settings.html:195 -#: .\cookbook\templates\shopping_list.html:360 -msgid "Save" -msgstr "Desa" - #: .\cookbook\templates\forms\edit_internal_recipe.html:7 msgid "Edit Recipe" msgstr "Edita Recepta" @@ -1479,33 +1555,28 @@ msgid "" "recently viewed them. Keep in mind that data might be outdated." msgstr "" -#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\space.html:62 -#: .\cookbook\templates\stats.html:47 -msgid "Comments" -msgstr "Comentaris" - #: .\cookbook\templates\recipe_view.html:26 msgid "by" msgstr "per" #: .\cookbook\templates\recipe_view.html:44 .\cookbook\views\delete.py:147 -#: .\cookbook\views\edit.py:177 +#: .\cookbook\views\edit.py:180 msgid "Comment" msgstr "Comentari" #: .\cookbook\templates\recipes_table.html:19 #: .\cookbook\templates\recipes_table.html:23 -#: .\cookbook\templates\url_import.html:442 +#: .\cookbook\templates\url_import.html:444 msgid "Recipe Image" msgstr "Imatge de la Recepta" #: .\cookbook\templates\recipes_table.html:51 -#: .\cookbook\templates\url_import.html:447 +#: .\cookbook\templates\url_import.html:449 msgid "Preparation time ca." msgstr "Temps de Preparació ca." #: .\cookbook\templates\recipes_table.html:57 -#: .\cookbook\templates\url_import.html:452 +#: .\cookbook\templates\url_import.html:454 msgid "Waiting time ca." msgstr "Temps d'Espera ca." @@ -1876,8 +1947,8 @@ msgstr "Selecciona Unitat" #: .\cookbook\templates\shopping_list.html:218 #: .\cookbook\templates\shopping_list.html:248 #: .\cookbook\templates\shopping_list.html:272 -#: .\cookbook\templates\url_import.html:497 -#: .\cookbook\templates\url_import.html:529 +#: .\cookbook\templates\url_import.html:500 +#: .\cookbook\templates\url_import.html:532 msgid "Select" msgstr "Selecciona" @@ -2193,164 +2264,172 @@ msgstr "" msgid "Bookmark Me!" msgstr "Marcador desat!" -#: .\cookbook\templates\url_import.html:61 +#: .\cookbook\templates\url_import.html:36 +msgid "URL" +msgstr "" + +#: .\cookbook\templates\url_import.html:38 +msgid "App" +msgstr "" + +#: .\cookbook\templates\url_import.html:62 msgid "Enter website URL" msgstr "Introduïu l'URL del lloc web" -#: .\cookbook\templates\url_import.html:99 +#: .\cookbook\templates\url_import.html:101 msgid "Select recipe files to import or drop them here..." msgstr "" -#: .\cookbook\templates\url_import.html:120 +#: .\cookbook\templates\url_import.html:122 msgid "Paste json or html source here to load recipe." msgstr "" -#: .\cookbook\templates\url_import.html:148 +#: .\cookbook\templates\url_import.html:150 #, fuzzy #| msgid "View Recipe" msgid "Preview Recipe Data" msgstr "Veure Recepta" -#: .\cookbook\templates\url_import.html:149 +#: .\cookbook\templates\url_import.html:151 msgid "Drag recipe attributes from the right into the appropriate box below." msgstr "" -#: .\cookbook\templates\url_import.html:158 -#: .\cookbook\templates\url_import.html:175 -#: .\cookbook\templates\url_import.html:192 -#: .\cookbook\templates\url_import.html:211 -#: .\cookbook\templates\url_import.html:229 -#: .\cookbook\templates\url_import.html:244 -#: .\cookbook\templates\url_import.html:259 -#: .\cookbook\templates\url_import.html:275 -#: .\cookbook\templates\url_import.html:302 -#: .\cookbook\templates\url_import.html:353 +#: .\cookbook\templates\url_import.html:160 +#: .\cookbook\templates\url_import.html:177 +#: .\cookbook\templates\url_import.html:194 +#: .\cookbook\templates\url_import.html:213 +#: .\cookbook\templates\url_import.html:231 +#: .\cookbook\templates\url_import.html:246 +#: .\cookbook\templates\url_import.html:261 +#: .\cookbook\templates\url_import.html:277 +#: .\cookbook\templates\url_import.html:304 +#: .\cookbook\templates\url_import.html:355 msgid "Clear Contents" msgstr "" -#: .\cookbook\templates\url_import.html:160 +#: .\cookbook\templates\url_import.html:162 msgid "Text dragged here will be appended to the name." msgstr "" -#: .\cookbook\templates\url_import.html:173 +#: .\cookbook\templates\url_import.html:175 msgid "Description" msgstr "" -#: .\cookbook\templates\url_import.html:177 +#: .\cookbook\templates\url_import.html:179 msgid "Text dragged here will be appended to the description." msgstr "" -#: .\cookbook\templates\url_import.html:194 +#: .\cookbook\templates\url_import.html:196 msgid "Keywords dragged here will be appended to current list" msgstr "" -#: .\cookbook\templates\url_import.html:209 +#: .\cookbook\templates\url_import.html:211 msgid "Image" msgstr "" -#: .\cookbook\templates\url_import.html:241 +#: .\cookbook\templates\url_import.html:243 #, fuzzy #| msgid "Preparation Time" msgid "Prep Time" msgstr "Temps de preparació" -#: .\cookbook\templates\url_import.html:256 +#: .\cookbook\templates\url_import.html:258 #, fuzzy #| msgid "Time" msgid "Cook Time" msgstr "Temps" -#: .\cookbook\templates\url_import.html:277 +#: .\cookbook\templates\url_import.html:279 msgid "Ingredients dragged here will be appended to current list." msgstr "" -#: .\cookbook\templates\url_import.html:299 -#: .\cookbook\templates\url_import.html:569 +#: .\cookbook\templates\url_import.html:301 +#: .\cookbook\templates\url_import.html:572 msgid "Instructions" msgstr "Instruccions" -#: .\cookbook\templates\url_import.html:304 +#: .\cookbook\templates\url_import.html:306 msgid "" "Recipe instructions dragged here will be appended to current instructions." msgstr "" -#: .\cookbook\templates\url_import.html:327 +#: .\cookbook\templates\url_import.html:329 #, fuzzy #| msgid "Discovered Recipes" msgid "Discovered Attributes" msgstr "Receptes Descobertes" -#: .\cookbook\templates\url_import.html:329 +#: .\cookbook\templates\url_import.html:331 msgid "" "Drag recipe attributes from below into the appropriate box on the left. " "Click any node to display its full properties." msgstr "" -#: .\cookbook\templates\url_import.html:346 +#: .\cookbook\templates\url_import.html:348 #, fuzzy #| msgid "Show as header" msgid "Show Blank Field" msgstr "Mostra com a capçalera" -#: .\cookbook\templates\url_import.html:351 +#: .\cookbook\templates\url_import.html:353 msgid "Blank Field" msgstr "" -#: .\cookbook\templates\url_import.html:355 +#: .\cookbook\templates\url_import.html:357 msgid "Items dragged to Blank Field will be appended." msgstr "" -#: .\cookbook\templates\url_import.html:402 +#: .\cookbook\templates\url_import.html:404 #, fuzzy #| msgid "Delete Step" msgid "Delete Text" msgstr "Esborra Pas" -#: .\cookbook\templates\url_import.html:415 +#: .\cookbook\templates\url_import.html:417 #, fuzzy #| msgid "Delete Recipe" msgid "Delete image" msgstr "Esborra Recepta" -#: .\cookbook\templates\url_import.html:431 +#: .\cookbook\templates\url_import.html:433 msgid "Recipe Name" msgstr "Nom de la Recepta" -#: .\cookbook\templates\url_import.html:435 +#: .\cookbook\templates\url_import.html:437 #, fuzzy #| msgid "Recipe Markup Specification" msgid "Recipe Description" msgstr "Especificació de marcatge de receptes" -#: .\cookbook\templates\url_import.html:496 -#: .\cookbook\templates\url_import.html:528 -#: .\cookbook\templates\url_import.html:584 +#: .\cookbook\templates\url_import.html:499 +#: .\cookbook\templates\url_import.html:531 +#: .\cookbook\templates\url_import.html:587 msgid "Select one" msgstr "Sel·lecciona un" -#: .\cookbook\templates\url_import.html:544 +#: .\cookbook\templates\url_import.html:547 msgid "Note" msgstr "Nota" -#: .\cookbook\templates\url_import.html:585 +#: .\cookbook\templates\url_import.html:588 #, fuzzy #| msgid "All Keywords" msgid "Add Keyword" msgstr "Totes les paraules clau" -#: .\cookbook\templates\url_import.html:598 +#: .\cookbook\templates\url_import.html:601 msgid "All Keywords" msgstr "Totes les paraules clau" -#: .\cookbook\templates\url_import.html:601 +#: .\cookbook\templates\url_import.html:604 msgid "Import all keywords, not only the ones already existing." msgstr "Importa totes les paraules clau, no només les ja existents." -#: .\cookbook\templates\url_import.html:628 +#: .\cookbook\templates\url_import.html:631 msgid "Information" msgstr "Informació" -#: .\cookbook\templates\url_import.html:630 +#: .\cookbook\templates\url_import.html:633 msgid "" " Only websites containing ld+json or microdata information can currently\n" " be imported. Most big recipe pages " @@ -2369,106 +2448,107 @@ msgstr "" "un exemple a\n" "problemes de github." -#: .\cookbook\templates\url_import.html:638 +#: .\cookbook\templates\url_import.html:641 msgid "Google ld+json Info" msgstr "Google ld+json Info" -#: .\cookbook\templates\url_import.html:641 +#: .\cookbook\templates\url_import.html:644 msgid "GitHub Issues" msgstr "Problemes de GitHub" -#: .\cookbook\templates\url_import.html:643 +#: .\cookbook\templates\url_import.html:646 msgid "Recipe Markup Specification" msgstr "Especificació de marcatge de receptes" -#: .\cookbook\views\api.py:82 .\cookbook\views\api.py:131 +#: .\cookbook\views\api.py:83 .\cookbook\views\api.py:132 #, fuzzy #| msgid "Parameter filter_list incorrectly formatted" msgid "Parameter updated_at incorrectly formatted" msgstr "El paràmetre filter_list té un format incorrecte" -#: .\cookbook\views\api.py:151 +#: .\cookbook\views\api.py:152 #, python-brace-format msgid "No {self.basename} with id {pk} exists" msgstr "" -#: .\cookbook\views\api.py:155 +#: .\cookbook\views\api.py:156 msgid "Cannot merge with the same object!" msgstr "" -#: .\cookbook\views\api.py:162 +#: .\cookbook\views\api.py:163 #, python-brace-format msgid "No {self.basename} with id {target} exists" msgstr "" -#: .\cookbook\views\api.py:167 +#: .\cookbook\views\api.py:168 msgid "Cannot merge with child object!" msgstr "" -#: .\cookbook\views\api.py:200 +#: .\cookbook\views\api.py:201 #, python-brace-format msgid "{source.name} was merged successfully with {target.name}" msgstr "" -#: .\cookbook\views\api.py:204 +#: .\cookbook\views\api.py:205 #, python-brace-format msgid "An error occurred attempting to merge {source.name} with {target.name}" msgstr "" -#: .\cookbook\views\api.py:248 +#: .\cookbook\views\api.py:249 #, python-brace-format msgid "No {self.basename} with id {child} exists" msgstr "" -#: .\cookbook\views\api.py:257 +#: .\cookbook\views\api.py:258 #, python-brace-format msgid "{child.name} was moved successfully to the root." msgstr "" -#: .\cookbook\views\api.py:260 .\cookbook\views\api.py:278 +#: .\cookbook\views\api.py:261 .\cookbook\views\api.py:279 msgid "An error occurred attempting to move " msgstr "" -#: .\cookbook\views\api.py:263 +#: .\cookbook\views\api.py:264 msgid "Cannot move an object to itself!" msgstr "" -#: .\cookbook\views\api.py:269 +#: .\cookbook\views\api.py:270 #, python-brace-format msgid "No {self.basename} with id {parent} exists" msgstr "" -#: .\cookbook\views\api.py:275 +#: .\cookbook\views\api.py:276 #, python-brace-format msgid "{child.name} was moved successfully to parent {parent.name}" msgstr "" -#: .\cookbook\views\api.py:723 .\cookbook\views\views.py:277 -msgid "This feature is not available in the demo version!" +#: .\cookbook\views\api.py:723 .\cookbook\views\data.py:42 +#: .\cookbook\views\edit.py:129 .\cookbook\views\new.py:95 +msgid "This feature is not yet available in the hosted version of tandoor!" msgstr "" -#: .\cookbook\views\api.py:746 +#: .\cookbook\views\api.py:745 msgid "Sync successful!" msgstr "Sincronització correcte" -#: .\cookbook\views\api.py:751 +#: .\cookbook\views\api.py:750 msgid "Error synchronizing with Storage" msgstr "Error de sincronització amb emmagatzematge" -#: .\cookbook\views\api.py:829 +#: .\cookbook\views\api.py:828 msgid "Nothing to do." msgstr "" -#: .\cookbook\views\api.py:844 +#: .\cookbook\views\api.py:843 msgid "The requested site provided malformed data and cannot be read." msgstr "" "El lloc sol·licitat proporcionava dades malformades i no es pot llegir." -#: .\cookbook\views\api.py:851 +#: .\cookbook\views\api.py:850 msgid "The requested page could not be found." msgstr "No s'ha pogut trobar la pàgina sol·licitada." -#: .\cookbook\views\api.py:860 +#: .\cookbook\views\api.py:859 msgid "" "The requested site does not provide any recognized data format to import the " "recipe from." @@ -2476,29 +2556,29 @@ msgstr "" "El lloc sol·licitat no proporciona cap format de dades reconegut des d’on " "importar la recepta." -#: .\cookbook\views\api.py:874 +#: .\cookbook\views\api.py:873 #, fuzzy #| msgid "The requested page could not be found." msgid "No useable data could be found." msgstr "No s'ha pogut trobar la pàgina sol·licitada." -#: .\cookbook\views\api.py:890 +#: .\cookbook\views\api.py:889 msgid "I couldn't find anything to do." msgstr "" -#: .\cookbook\views\data.py:33 .\cookbook\views\data.py:124 -#: .\cookbook\views\edit.py:50 .\cookbook\views\import_export.py:73 -#: .\cookbook\views\new.py:32 +#: .\cookbook\views\data.py:34 .\cookbook\views\data.py:129 +#: .\cookbook\views\edit.py:49 .\cookbook\views\import_export.py:73 +#: .\cookbook\views\new.py:33 msgid "You have reached the maximum number of recipes for your space." msgstr "" -#: .\cookbook\views\data.py:37 .\cookbook\views\data.py:128 -#: .\cookbook\views\edit.py:54 .\cookbook\views\import_export.py:77 -#: .\cookbook\views\new.py:36 +#: .\cookbook\views\data.py:38 .\cookbook\views\data.py:133 +#: .\cookbook\views\edit.py:53 .\cookbook\views\import_export.py:77 +#: .\cookbook\views\new.py:37 msgid "You have more users than allowed in your space." msgstr "" -#: .\cookbook\views\data.py:106 +#: .\cookbook\views\data.py:111 #, python-format msgid "Batch edit done. %(count)d recipe was updated." msgid_plural "Batch edit done. %(count)d Recipes where updated." @@ -2511,7 +2591,7 @@ msgid "Monitor" msgstr "Monitoratge" #: .\cookbook\views\delete.py:125 .\cookbook\views\lists.py:86 -#: .\cookbook\views\new.py:97 +#: .\cookbook\views\new.py:101 msgid "Storage Backend" msgstr "Backend d'emmagatzematge" @@ -2530,31 +2610,27 @@ msgstr "Llibre de Receptes" msgid "Bookmarks" msgstr "Marcadors" -#: .\cookbook\views\delete.py:192 .\cookbook\views\new.py:231 +#: .\cookbook\views\delete.py:192 .\cookbook\views\new.py:235 msgid "Invite Link" msgstr "Enllaç de invitació" -#: .\cookbook\views\edit.py:126 +#: .\cookbook\views\edit.py:125 msgid "You cannot edit this storage!" msgstr "No podeu editar aquest emmagatzematge." -#: .\cookbook\views\edit.py:146 +#: .\cookbook\views\edit.py:149 msgid "Storage saved!" msgstr "Emmagatzematge desat." -#: .\cookbook\views\edit.py:152 +#: .\cookbook\views\edit.py:155 msgid "There was an error updating this storage backend!" msgstr "S'ha produït un error en actualitzar aquest backend d'emmagatzematge." -#: .\cookbook\views\edit.py:163 -msgid "Storage" -msgstr "Emmagatzematge" - -#: .\cookbook\views\edit.py:245 +#: .\cookbook\views\edit.py:248 msgid "Changes saved!" msgstr "Canvis desats!" -#: .\cookbook\views\edit.py:249 +#: .\cookbook\views\edit.py:252 msgid "Error saving changes!" msgstr "Error al desar canvis!" @@ -2602,59 +2678,59 @@ msgstr "Llista de Compra de Receptes" msgid "New Shopping List" msgstr "Llista de la Compra" -#: .\cookbook\views\new.py:122 +#: .\cookbook\views\new.py:126 msgid "Imported new recipe!" msgstr "Nova Recepta importada!" -#: .\cookbook\views\new.py:125 +#: .\cookbook\views\new.py:129 msgid "There was an error importing this recipe!" msgstr "S'ha produït un error en importar la recepta!" -#: .\cookbook\views\new.py:205 +#: .\cookbook\views\new.py:209 msgid "Hello" msgstr "" -#: .\cookbook\views\new.py:205 +#: .\cookbook\views\new.py:209 msgid "You have been invited by " msgstr "" -#: .\cookbook\views\new.py:206 +#: .\cookbook\views\new.py:210 msgid " to join their Tandoor Recipes space " msgstr "" -#: .\cookbook\views\new.py:207 +#: .\cookbook\views\new.py:211 msgid "Click the following link to activate your account: " msgstr "" -#: .\cookbook\views\new.py:208 +#: .\cookbook\views\new.py:212 msgid "" "If the link does not work use the following code to manually join the space: " msgstr "" -#: .\cookbook\views\new.py:209 +#: .\cookbook\views\new.py:213 msgid "The invitation is valid until " msgstr "" -#: .\cookbook\views\new.py:210 +#: .\cookbook\views\new.py:214 msgid "" "Tandoor Recipes is an Open Source recipe manager. Check it out on GitHub " msgstr "" -#: .\cookbook\views\new.py:213 +#: .\cookbook\views\new.py:217 msgid "Tandoor Recipes Invite" msgstr "" -#: .\cookbook\views\new.py:220 +#: .\cookbook\views\new.py:224 msgid "Invite link successfully send to user." msgstr "" -#: .\cookbook\views\new.py:223 +#: .\cookbook\views\new.py:227 msgid "" "You have send to many emails, please share the link manually or wait a few " "hours." msgstr "" -#: .\cookbook\views\new.py:225 +#: .\cookbook\views\new.py:229 msgid "Email to user could not be send, please share link manually." msgstr "" @@ -2672,6 +2748,10 @@ msgstr "No teniu els permisos necessaris per dur a terme aquesta acció!" msgid "Comment saved!" msgstr "Comentari Desat!" +#: .\cookbook\views\views.py:277 +msgid "This feature is not available in the demo version!" +msgstr "" + #: .\cookbook\views\views.py:340 msgid "You must select at least one field to search!" msgstr "" @@ -2778,9 +2858,6 @@ msgstr "" #~ msgid "Create only note" #~ msgstr "Crear només nota" -#~ msgid "Shopping list currently empty" -#~ msgstr "La llista de la compra està buida actualment" - #~ msgid "Plan" #~ msgstr "Pla" diff --git a/cookbook/locale/de/LC_MESSAGES/django.po b/cookbook/locale/de/LC_MESSAGES/django.po index 5bcf3827c..676f8e4a6 100644 --- a/cookbook/locale/de/LC_MESSAGES/django.po +++ b/cookbook/locale/de/LC_MESSAGES/django.po @@ -14,11 +14,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-04 14:56+0100\n" +"POT-Creation-Date: 2021-11-07 17:31+0100\n" "PO-Revision-Date: 2021-11-06 14:06+0000\n" "Last-Translator: Jan Brach \n" -"Language-Team: German \n" +"Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,11 +29,78 @@ msgstr "" #: .\cookbook\filters.py:23 .\cookbook\templates\base.html:125 #: .\cookbook\templates\forms\ingredients.html:34 #: .\cookbook\templates\space.html:43 .\cookbook\templates\stats.html:28 -#: .\cookbook\templates\url_import.html:272 +#: .\cookbook\templates\url_import.html:274 msgid "Ingredients" msgstr "Zutaten" -#: .\cookbook\forms.py:53 +#: .\cookbook\forms.py:54 +#, fuzzy +#| msgid "Default" +msgid "Default unit" +msgstr "Standard" + +#: .\cookbook\forms.py:55 +#, fuzzy +#| msgid "System Information" +msgid "Use fractions" +msgstr "Systeminformation" + +#: .\cookbook\forms.py:56 +msgid "Use KJ" +msgstr "" + +#: .\cookbook\forms.py:57 +msgid "Theme" +msgstr "" + +#: .\cookbook\forms.py:58 +msgid "Navbar color" +msgstr "" + +#: .\cookbook\forms.py:59 +msgid "Sticky navbar" +msgstr "" + +#: .\cookbook\forms.py:60 +#, fuzzy +#| msgid "Default" +msgid "Default page" +msgstr "Standard" + +#: .\cookbook\forms.py:61 +#, fuzzy +#| msgid "Show Recipes" +msgid "Show recent recipes" +msgstr "Rezepte anzeigen" + +#: .\cookbook\forms.py:62 +#, fuzzy +#| msgid "Search Index" +msgid "Search style" +msgstr "Suchindex" + +#: .\cookbook\forms.py:63 +msgid "Plan sharing" +msgstr "" + +#: .\cookbook\forms.py:64 +#, fuzzy +#| msgid "Ingredients" +msgid "Ingredient decimal places" +msgstr "Zutaten" + +#: .\cookbook\forms.py:65 +#, fuzzy +#| msgid "Shopping list currently empty" +msgid "Shopping list auto sync period" +msgstr "Die Einkaufsliste ist aktuell leer" + +#: .\cookbook\forms.py:66 .\cookbook\templates\recipe_view.html:21 +#: .\cookbook\templates\space.html:62 .\cookbook\templates\stats.html:47 +msgid "Comments" +msgstr "Kommentare" + +#: .\cookbook\forms.py:70 msgid "" "Color of the top navigation bar. Not all colors work with all themes, just " "try them out!" @@ -41,13 +108,13 @@ msgstr "" "Farbe der oberen Navigationsleiste. Nicht alle Farben passen, daher einfach " "mal ausprobieren!" -#: .\cookbook\forms.py:55 +#: .\cookbook\forms.py:72 msgid "Default Unit to be used when inserting a new ingredient into a recipe." msgstr "" "Standardeinheit, die beim Einfügen einer neuen Zutat in ein Rezept zu " "verwenden ist." -#: .\cookbook\forms.py:57 +#: .\cookbook\forms.py:74 msgid "" "Enables support for fractions in ingredient amounts (e.g. convert decimals " "to fractions automatically)" @@ -55,11 +122,11 @@ msgstr "" "Unterstützung für Brüche in Zutaten aktivieren. Dadurch werden Dezimalzahlen " "mit Brüchen ersetzt, z.B. 0.5 mit ½." -#: .\cookbook\forms.py:59 +#: .\cookbook\forms.py:76 msgid "Display nutritional energy amounts in joules instead of calories" msgstr "" -#: .\cookbook\forms.py:61 +#: .\cookbook\forms.py:78 msgid "" "Users with whom newly created meal plan/shopping list entries should be " "shared by default." @@ -67,21 +134,21 @@ msgstr "" "Nutzer, mit denen neue Pläne und Einkaufslisten standardmäßig geteilt werden " "sollen." -#: .\cookbook\forms.py:63 +#: .\cookbook\forms.py:80 msgid "Show recently viewed recipes on search page." msgstr "Zuletzt angeschaute Rezepte bei der Suche anzeigen." -#: .\cookbook\forms.py:64 +#: .\cookbook\forms.py:81 msgid "Number of decimals to round ingredients." msgstr "Anzahl an Dezimalstellen, auf die gerundet werden soll." -#: .\cookbook\forms.py:65 +#: .\cookbook\forms.py:82 msgid "If you want to be able to create and see comments underneath recipes." msgstr "" "Wenn du in der Lage sein willst, Kommentare unter Rezepten zu erstellen und " "zu sehen." -#: .\cookbook\forms.py:67 +#: .\cookbook\forms.py:84 msgid "" "Setting to 0 will disable auto sync. When viewing a shopping list the list " "is updated every set seconds to sync changes someone else might have made. " @@ -93,11 +160,11 @@ msgstr "" "aktualisiert. Dies ist nützlich, wenn mehrere Personen eine Liste beim " "Einkaufen verwenden, benötigt jedoch etwas Datenvolumen." -#: .\cookbook\forms.py:70 +#: .\cookbook\forms.py:87 msgid "Makes the navbar stick to the top of the page." msgstr "Navigationsleiste wird oben angeheftet." -#: .\cookbook\forms.py:86 +#: .\cookbook\forms.py:103 msgid "" "Both fields are optional. If none are given the username will be displayed " "instead" @@ -105,39 +172,39 @@ msgstr "" "Beide Felder sind optional. Wenn keins von beiden gegeben ist, wird der " "Nutzername angezeigt" -#: .\cookbook\forms.py:107 .\cookbook\forms.py:266 -#: .\cookbook\templates\url_import.html:156 +#: .\cookbook\forms.py:124 .\cookbook\forms.py:289 +#: .\cookbook\templates\url_import.html:158 msgid "Name" msgstr "Name" -#: .\cookbook\forms.py:108 .\cookbook\forms.py:267 +#: .\cookbook\forms.py:125 .\cookbook\forms.py:290 #: .\cookbook\templates\space.html:39 .\cookbook\templates\stats.html:24 -#: .\cookbook\templates\url_import.html:190 -#: .\cookbook\templates\url_import.html:575 .\cookbook\views\lists.py:112 +#: .\cookbook\templates\url_import.html:192 +#: .\cookbook\templates\url_import.html:578 .\cookbook\views\lists.py:112 msgid "Keywords" msgstr "Stichwörter" -#: .\cookbook\forms.py:109 +#: .\cookbook\forms.py:126 msgid "Preparation time in minutes" msgstr "Zubereitungszeit in Minuten" -#: .\cookbook\forms.py:110 +#: .\cookbook\forms.py:127 msgid "Waiting time (cooking/baking) in minutes" msgstr "Wartezeit (kochen/backen) in Minuten" -#: .\cookbook\forms.py:111 .\cookbook\forms.py:268 +#: .\cookbook\forms.py:128 .\cookbook\forms.py:259 .\cookbook\forms.py:291 msgid "Path" msgstr "Pfad" -#: .\cookbook\forms.py:112 +#: .\cookbook\forms.py:129 msgid "Storage UID" msgstr "Speicher-UID" -#: .\cookbook\forms.py:140 +#: .\cookbook\forms.py:157 msgid "Default" msgstr "Standard" -#: .\cookbook\forms.py:151 .\cookbook\templates\url_import.html:92 +#: .\cookbook\forms.py:168 .\cookbook\templates\url_import.html:94 msgid "" "To prevent duplicates recipes with the same name as existing ones are " "ignored. Check this box to import everything." @@ -145,19 +212,19 @@ msgstr "" "Um Duplikate zu vermeiden werden Rezepte mit dem gleichen Namen ignoriert. " "Aktivieren Sie dieses Kontrollkästchen, um alles zu importieren." -#: .\cookbook\forms.py:173 +#: .\cookbook\forms.py:190 msgid "Add your comment: " msgstr "Schreibe einen Kommentar: " -#: .\cookbook\forms.py:188 +#: .\cookbook\forms.py:205 msgid "Leave empty for dropbox and enter app password for nextcloud." msgstr "Für Dropbox leer lassen, bei Nextcloud App-Passwort eingeben." -#: .\cookbook\forms.py:195 +#: .\cookbook\forms.py:212 msgid "Leave empty for nextcloud and enter api token for dropbox." msgstr "Für Nextcloud leer lassen, für Dropbox API-Token eingeben." -#: .\cookbook\forms.py:204 +#: .\cookbook\forms.py:221 msgid "" "Leave empty for dropbox and enter only base url for nextcloud (/remote." "php/webdav/ is added automatically)" @@ -165,25 +232,33 @@ msgstr "" "Für Dropbox leer lassen, für Nextcloud Server-URL angeben (/remote.php/" "webdav/ wird automatisch hinzugefügt)" -#: .\cookbook\forms.py:242 +#: .\cookbook\forms.py:258 .\cookbook\views\edit.py:166 +msgid "Storage" +msgstr "Speicher" + +#: .\cookbook\forms.py:260 +msgid "Active" +msgstr "" + +#: .\cookbook\forms.py:265 msgid "Search String" msgstr "Suchwort" -#: .\cookbook\forms.py:269 +#: .\cookbook\forms.py:292 msgid "File ID" msgstr "Datei-ID" -#: .\cookbook\forms.py:290 +#: .\cookbook\forms.py:313 msgid "You must provide at least a recipe or a title." msgstr "Mindestens ein Rezept oder ein Titel müssen angegeben werden." -#: .\cookbook\forms.py:303 +#: .\cookbook\forms.py:326 msgid "You can list default users to share recipes with in the settings." msgstr "" "Sie können in den Einstellungen Standardbenutzer auflisten, für die Sie " "Rezepte freigeben möchten." -#: .\cookbook\forms.py:304 +#: .\cookbook\forms.py:327 msgid "" "You can use markdown to format this field. See the docs here" @@ -191,15 +266,15 @@ msgstr "" "Markdown kann genutzt werden, um dieses Feld zu formatieren. Siehe hier für weitere Information" -#: .\cookbook\forms.py:329 +#: .\cookbook\forms.py:353 msgid "Maximum number of users for this space reached." msgstr "Maximale Nutzer-Anzahl wurde für diesen Space erreicht." -#: .\cookbook\forms.py:335 +#: .\cookbook\forms.py:359 msgid "Email address already taken!" msgstr "Email-Adresse ist bereits vergeben!" -#: .\cookbook\forms.py:343 +#: .\cookbook\forms.py:367 msgid "" "An email address is not required but if present the invite link will be send " "to the user." @@ -207,21 +282,21 @@ msgstr "" "Eine Email-Adresse wird nicht benötigt, aber falls vorhanden, wird der " "Einladungslink zum Benutzer geschickt." -#: .\cookbook\forms.py:358 +#: .\cookbook\forms.py:382 msgid "Name already taken." msgstr "Name wird bereits verwendet." -#: .\cookbook\forms.py:369 +#: .\cookbook\forms.py:393 msgid "Accept Terms and Privacy" msgstr "AGB und Datenschutzerklärung akzeptieren" -#: .\cookbook\forms.py:399 +#: .\cookbook\forms.py:425 msgid "" "Determines how fuzzy a search is if it uses trigram similarity matching (e." "g. low values mean more typos are ignored)." msgstr "" -#: .\cookbook\forms.py:407 +#: .\cookbook\forms.py:435 msgid "" "Select type method of search. Click here for " "full desciption of choices." @@ -229,7 +304,7 @@ msgstr "" "Suchmethode auswählen. Klicke hier für eine " "Auflistung der Optionen." -#: .\cookbook\forms.py:408 +#: .\cookbook\forms.py:436 msgid "" "Use fuzzy matching on units, keywords and ingredients when editing and " "importing recipes." @@ -237,7 +312,7 @@ msgstr "" "Benutze Fuzzy-Suche für Einheiten, Schlüsselwörter und Zutaten beim ändern " "und importieren von Rezepten." -#: .\cookbook\forms.py:409 +#: .\cookbook\forms.py:438 msgid "" "Fields to search ignoring accents. Selecting this option can improve or " "degrade search quality depending on language" @@ -246,7 +321,7 @@ msgstr "" "kann die Suchqualität abhängig von der Sprache verbessern oder " "verschlechtern." -#: .\cookbook\forms.py:410 +#: .\cookbook\forms.py:440 msgid "" "Fields to search for partial matches. (e.g. searching for 'Pie' will return " "'pie' and 'piece' and 'soapie')" @@ -254,7 +329,7 @@ msgstr "" "Felder welche auf partielle Treffer durchsucht werden. (z.B. eine Suche " "nach \"Spa\" wird \"Spaghetti\", \"Spargel\" und \"Grünspargel\" liefern.)" -#: .\cookbook\forms.py:411 +#: .\cookbook\forms.py:442 msgid "" "Fields to search for beginning of word matches. (e.g. searching for 'sa' " "will return 'salad' and 'sandwich')" @@ -262,7 +337,7 @@ msgstr "" "Felder welche auf übereinstimmenden Wortbeginn durchsucht werden. (z.B. eine " "Suche nach \"Spa\" wird \"Spaghetti\" und \"Spargel\" liefern.)" -#: .\cookbook\forms.py:412 +#: .\cookbook\forms.py:444 msgid "" "Fields to 'fuzzy' search. (e.g. searching for 'recpie' will find 'recipe'.) " "Note: this option will conflict with 'web' and 'raw' methods of search." @@ -271,7 +346,7 @@ msgstr "" "\"Kuhcen\" wird \"Kuchen\" liefern.) Tipp: Diese Option konfligiert mit den " "\"web\" und \"raw\" Suchtypen." -#: .\cookbook\forms.py:413 +#: .\cookbook\forms.py:446 msgid "" "Fields to full text search. Note: 'web', 'phrase', and 'raw' search methods " "only function with fulltext fields." @@ -279,31 +354,31 @@ msgstr "" "Felder welche im Volltext durchsucht werden sollen. Tipp: Die Suchtypen \"web" "\", \"raw\" und \"phrase\" funktionieren nur mit Volltext-Feldern." -#: .\cookbook\forms.py:417 +#: .\cookbook\forms.py:450 msgid "Search Method" msgstr "Suchmethode" -#: .\cookbook\forms.py:418 +#: .\cookbook\forms.py:451 msgid "Fuzzy Lookups" msgstr "Unpräzise Suche" -#: .\cookbook\forms.py:419 +#: .\cookbook\forms.py:452 msgid "Ignore Accent" msgstr "Akzente ignorieren" -#: .\cookbook\forms.py:420 +#: .\cookbook\forms.py:453 msgid "Partial Match" msgstr "Teilweise Übereinstimmung" -#: .\cookbook\forms.py:421 +#: .\cookbook\forms.py:454 msgid "Starts Wtih" msgstr "Beginnt mit" -#: .\cookbook\forms.py:422 +#: .\cookbook\forms.py:455 msgid "Fuzzy Search" msgstr "Unpräzise Suche" -#: .\cookbook\forms.py:423 +#: .\cookbook\forms.py:456 msgid "Full Text" msgstr "Volltext" @@ -326,7 +401,7 @@ msgstr "Du bist nicht angemeldet, daher kannst du diese Seite nicht sehen!" #: .\cookbook\helper\permission_helper.py:216 #: .\cookbook\helper\permission_helper.py:230 #: .\cookbook\helper\permission_helper.py:241 -#: .\cookbook\helper\permission_helper.py:252 .\cookbook\views\data.py:42 +#: .\cookbook\helper\permission_helper.py:252 .\cookbook\views\data.py:47 #: .\cookbook\views\views.py:160 .\cookbook\views\views.py:167 #: .\cookbook\views\views.py:233 msgid "You do not have the required permissions to view this page!" @@ -349,11 +424,11 @@ msgstr "Konnte den Template code nicht verarbeiten." #: .\cookbook\templates\import_response.html:7 #: .\cookbook\templates\test.html:14 .\cookbook\templates\test.html:20 #: .\cookbook\templates\url_import.html:27 -#: .\cookbook\templates\url_import.html:103 -#: .\cookbook\templates\url_import.html:125 -#: .\cookbook\templates\url_import.html:319 -#: .\cookbook\templates\url_import.html:606 .\cookbook\views\delete.py:89 -#: .\cookbook\views\edit.py:197 +#: .\cookbook\templates\url_import.html:105 +#: .\cookbook\templates\url_import.html:127 +#: .\cookbook\templates\url_import.html:321 +#: .\cookbook\templates\url_import.html:609 .\cookbook\views\delete.py:89 +#: .\cookbook\views\edit.py:200 msgid "Import" msgstr "Importieren" @@ -390,14 +465,14 @@ msgstr "Notizen" msgid "Nutritional Information" msgstr "Nährwert Informationen" -#: .\cookbook\integration\paprika.py:53 +#: .\cookbook\integration\paprika.py:53 .\cookbook\templates\url_import.html:40 msgid "Source" msgstr "Quelle" #: .\cookbook\integration\safron.py:23 #: .\cookbook\templates\include\log_cooking.html:16 -#: .\cookbook\templates\url_import.html:226 -#: .\cookbook\templates\url_import.html:457 +#: .\cookbook\templates\url_import.html:228 +#: .\cookbook\templates\url_import.html:459 msgid "Servings" msgstr "Portionen" @@ -469,7 +544,7 @@ msgstr "Suchen" #: .\cookbook\models.py:203 .\cookbook\templates\base.html:82 #: .\cookbook\templates\meal_plan.html:7 #: .\cookbook\templates\meal_plan_new.html:7 .\cookbook\views\delete.py:181 -#: .\cookbook\views\edit.py:217 .\cookbook\views\new.py:180 +#: .\cookbook\views\edit.py:220 .\cookbook\views\new.py:184 msgid "Meal-Plan" msgstr "Essensplan" @@ -494,7 +569,7 @@ msgstr "Neu" msgid " is part of a recipe step and cannot be deleted" msgstr " ist Teil eines Rezepts und kann nicht gelöscht werden" -#: .\cookbook\models.py:441 +#: .\cookbook\models.py:441 .\cookbook\templates\url_import.html:42 msgid "Text" msgstr "Text" @@ -502,14 +577,14 @@ msgstr "Text" msgid "Time" msgstr "Zeit" -#: .\cookbook\models.py:441 +#: .\cookbook\models.py:441 .\cookbook\templates\url_import.html:44 msgid "File" msgstr "Datei" #: .\cookbook\models.py:441 #: .\cookbook\templates\include\recipe_open_modal.html:7 -#: .\cookbook\views\delete.py:39 .\cookbook\views\edit.py:257 -#: .\cookbook\views\new.py:52 +#: .\cookbook\views\delete.py:39 .\cookbook\views\edit.py:260 +#: .\cookbook\views\new.py:53 msgid "Recipe" msgstr "Rezept" @@ -984,7 +1059,7 @@ msgstr "" "Ausgewählte Schlagwörter zu allen Rezepten, die das Suchwort enthalten, " "hinzufügen" -#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:83 +#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:82 msgid "Sync" msgstr "Synchronisieren" @@ -1004,6 +1079,18 @@ msgstr "" msgid "The path must be in the following format" msgstr "Der Pfad muss folgendes Format haben" +#: .\cookbook\templates\batch\monitor.html:20 +#: .\cookbook\templates\forms\edit_import_recipe.html:14 +#: .\cookbook\templates\generic\edit_template.html:23 +#: .\cookbook\templates\generic\new_template.html:23 +#: .\cookbook\templates\include\log_cooking.html:28 +#: .\cookbook\templates\settings.html:63 .\cookbook\templates\settings.html:105 +#: .\cookbook\templates\settings.html:123 +#: .\cookbook\templates\settings.html:195 +#: .\cookbook\templates\shopping_list.html:360 +msgid "Save" +msgstr "Speichern" + #: .\cookbook\templates\batch\monitor.html:21 msgid "Manage External Storage" msgstr "Externe Speicherquellen verwalten" @@ -1046,17 +1133,6 @@ msgstr "Rezepte exportieren" msgid "Import new Recipe" msgstr "Rezept importieren" -#: .\cookbook\templates\forms\edit_import_recipe.html:14 -#: .\cookbook\templates\generic\edit_template.html:23 -#: .\cookbook\templates\generic\new_template.html:23 -#: .\cookbook\templates\include\log_cooking.html:28 -#: .\cookbook\templates\settings.html:63 .\cookbook\templates\settings.html:105 -#: .\cookbook\templates\settings.html:123 -#: .\cookbook\templates\settings.html:195 -#: .\cookbook\templates\shopping_list.html:360 -msgid "Save" -msgstr "Speichern" - #: .\cookbook\templates\forms\edit_internal_recipe.html:7 msgid "Edit Recipe" msgstr "Rezept bearbeiten" @@ -1507,33 +1583,28 @@ msgstr "" "Die unterhalb aufgelisteten Rezepte sind offline verfügbar, da du sie vor " "kurzem angesehen hast. Beachte, dass die Daten veraltetet sein könnten." -#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\space.html:62 -#: .\cookbook\templates\stats.html:47 -msgid "Comments" -msgstr "Kommentare" - #: .\cookbook\templates\recipe_view.html:26 msgid "by" msgstr "von" #: .\cookbook\templates\recipe_view.html:44 .\cookbook\views\delete.py:147 -#: .\cookbook\views\edit.py:177 +#: .\cookbook\views\edit.py:180 msgid "Comment" msgstr "Kommentar" #: .\cookbook\templates\recipes_table.html:19 #: .\cookbook\templates\recipes_table.html:23 -#: .\cookbook\templates\url_import.html:442 +#: .\cookbook\templates\url_import.html:444 msgid "Recipe Image" msgstr "Rezeptbild" #: .\cookbook\templates\recipes_table.html:51 -#: .\cookbook\templates\url_import.html:447 +#: .\cookbook\templates\url_import.html:449 msgid "Preparation time ca." msgstr "Zubereitungszeit ca." #: .\cookbook\templates\recipes_table.html:57 -#: .\cookbook\templates\url_import.html:452 +#: .\cookbook\templates\url_import.html:454 msgid "Waiting time ca." msgstr "Wartezeit ca." @@ -1982,8 +2053,8 @@ msgstr "Einheit wählen" #: .\cookbook\templates\shopping_list.html:218 #: .\cookbook\templates\shopping_list.html:248 #: .\cookbook\templates\shopping_list.html:272 -#: .\cookbook\templates\url_import.html:497 -#: .\cookbook\templates\url_import.html:529 +#: .\cookbook\templates\url_import.html:500 +#: .\cookbook\templates\url_import.html:532 msgid "Select" msgstr "Auswählen" @@ -2294,92 +2365,100 @@ msgstr "Ziehe mich in deine Lesezeichen, um Rezepte von überall zu importieren" msgid "Bookmark Me!" msgstr "Lesezeichen speichern!" -#: .\cookbook\templates\url_import.html:61 +#: .\cookbook\templates\url_import.html:36 +msgid "URL" +msgstr "" + +#: .\cookbook\templates\url_import.html:38 +msgid "App" +msgstr "" + +#: .\cookbook\templates\url_import.html:62 msgid "Enter website URL" msgstr "Webseite-URL eingeben" -#: .\cookbook\templates\url_import.html:99 +#: .\cookbook\templates\url_import.html:101 msgid "Select recipe files to import or drop them here..." msgstr "Wähle Rezept-Dateien zum Importieren oder platziere sie hier..." -#: .\cookbook\templates\url_import.html:120 +#: .\cookbook\templates\url_import.html:122 msgid "Paste json or html source here to load recipe." msgstr "Füge JSON- oder HTML-Daten hier ein um das Rezept zu laden." -#: .\cookbook\templates\url_import.html:148 +#: .\cookbook\templates\url_import.html:150 msgid "Preview Recipe Data" msgstr "Rezept-Daten ansehen" -#: .\cookbook\templates\url_import.html:149 +#: .\cookbook\templates\url_import.html:151 msgid "Drag recipe attributes from the right into the appropriate box below." msgstr "Ziehe Rezepteigenschaften von Rechts in die entsprechende Box unten." -#: .\cookbook\templates\url_import.html:158 -#: .\cookbook\templates\url_import.html:175 -#: .\cookbook\templates\url_import.html:192 -#: .\cookbook\templates\url_import.html:211 -#: .\cookbook\templates\url_import.html:229 -#: .\cookbook\templates\url_import.html:244 -#: .\cookbook\templates\url_import.html:259 -#: .\cookbook\templates\url_import.html:275 -#: .\cookbook\templates\url_import.html:302 -#: .\cookbook\templates\url_import.html:353 +#: .\cookbook\templates\url_import.html:160 +#: .\cookbook\templates\url_import.html:177 +#: .\cookbook\templates\url_import.html:194 +#: .\cookbook\templates\url_import.html:213 +#: .\cookbook\templates\url_import.html:231 +#: .\cookbook\templates\url_import.html:246 +#: .\cookbook\templates\url_import.html:261 +#: .\cookbook\templates\url_import.html:277 +#: .\cookbook\templates\url_import.html:304 +#: .\cookbook\templates\url_import.html:355 msgid "Clear Contents" msgstr "Inhalte leeren" -#: .\cookbook\templates\url_import.html:160 +#: .\cookbook\templates\url_import.html:162 msgid "Text dragged here will be appended to the name." msgstr "Text welcher hierhin gezogen wird, wird an den Namen angehängt." -#: .\cookbook\templates\url_import.html:173 +#: .\cookbook\templates\url_import.html:175 msgid "Description" msgstr "Beschreibung" -#: .\cookbook\templates\url_import.html:177 +#: .\cookbook\templates\url_import.html:179 msgid "Text dragged here will be appended to the description." msgstr "Text welcher hierhin gezogen wird, wird an die Beschreibung angehängt." -#: .\cookbook\templates\url_import.html:194 +#: .\cookbook\templates\url_import.html:196 msgid "Keywords dragged here will be appended to current list" msgstr "" "Stichworte welche hierhin gezogen werden, werden zur aktuellen Liste " "hinzugefügt" -#: .\cookbook\templates\url_import.html:209 +#: .\cookbook\templates\url_import.html:211 msgid "Image" msgstr "Bild" -#: .\cookbook\templates\url_import.html:241 +#: .\cookbook\templates\url_import.html:243 msgid "Prep Time" msgstr "Vorbereitungszeit" -#: .\cookbook\templates\url_import.html:256 +#: .\cookbook\templates\url_import.html:258 msgid "Cook Time" msgstr "Kochzeit" -#: .\cookbook\templates\url_import.html:277 +#: .\cookbook\templates\url_import.html:279 msgid "Ingredients dragged here will be appended to current list." msgstr "" "Zutaten welche hierhin gezogen werden, werden zur aktuellen Liste " "hinzugefügt." -#: .\cookbook\templates\url_import.html:299 -#: .\cookbook\templates\url_import.html:569 +#: .\cookbook\templates\url_import.html:301 +#: .\cookbook\templates\url_import.html:572 msgid "Instructions" msgstr "Anleitung" -#: .\cookbook\templates\url_import.html:304 +#: .\cookbook\templates\url_import.html:306 msgid "" "Recipe instructions dragged here will be appended to current instructions." msgstr "" "Rezeptanweisungen welche hierhin gezogen werden, werden zu den aktuellen " "Anweisungen hinzugefügt." -#: .\cookbook\templates\url_import.html:327 +#: .\cookbook\templates\url_import.html:329 msgid "Discovered Attributes" msgstr "Entdeckte Attribute" -#: .\cookbook\templates\url_import.html:329 +#: .\cookbook\templates\url_import.html:331 msgid "" "Drag recipe attributes from below into the appropriate box on the left. " "Click any node to display its full properties." @@ -2387,61 +2466,61 @@ msgstr "" "Ziehe Rezepteigenschaften von unten in das jeweilige Feld links. Klicke auf " "beliebige Elemente um dessen Eigenschaften anzuzeigen." -#: .\cookbook\templates\url_import.html:346 +#: .\cookbook\templates\url_import.html:348 msgid "Show Blank Field" msgstr "Leeres Feld anzeigen" -#: .\cookbook\templates\url_import.html:351 +#: .\cookbook\templates\url_import.html:353 msgid "Blank Field" msgstr "Leeres Feld" -#: .\cookbook\templates\url_import.html:355 +#: .\cookbook\templates\url_import.html:357 msgid "Items dragged to Blank Field will be appended." msgstr "Elemente die in ein leeres Feld gezogen werden, werden angefügt." -#: .\cookbook\templates\url_import.html:402 +#: .\cookbook\templates\url_import.html:404 msgid "Delete Text" msgstr "Text löschen" -#: .\cookbook\templates\url_import.html:415 +#: .\cookbook\templates\url_import.html:417 msgid "Delete image" msgstr "Bild löschen" -#: .\cookbook\templates\url_import.html:431 +#: .\cookbook\templates\url_import.html:433 msgid "Recipe Name" msgstr "Rezeptname" -#: .\cookbook\templates\url_import.html:435 +#: .\cookbook\templates\url_import.html:437 msgid "Recipe Description" msgstr "Rezept Beschreibung" -#: .\cookbook\templates\url_import.html:496 -#: .\cookbook\templates\url_import.html:528 -#: .\cookbook\templates\url_import.html:584 +#: .\cookbook\templates\url_import.html:499 +#: .\cookbook\templates\url_import.html:531 +#: .\cookbook\templates\url_import.html:587 msgid "Select one" msgstr "Auswählen" -#: .\cookbook\templates\url_import.html:544 +#: .\cookbook\templates\url_import.html:547 msgid "Note" msgstr "Notiz" -#: .\cookbook\templates\url_import.html:585 +#: .\cookbook\templates\url_import.html:588 msgid "Add Keyword" msgstr "Schlagwort hinzufügen" -#: .\cookbook\templates\url_import.html:598 +#: .\cookbook\templates\url_import.html:601 msgid "All Keywords" msgstr "Alle Schlagwörter" -#: .\cookbook\templates\url_import.html:601 +#: .\cookbook\templates\url_import.html:604 msgid "Import all keywords, not only the ones already existing." msgstr "Alle Schlagwörter importieren, nicht nur die bereits bestehenden." -#: .\cookbook\templates\url_import.html:628 +#: .\cookbook\templates\url_import.html:631 msgid "Information" msgstr "Information" -#: .\cookbook\templates\url_import.html:630 +#: .\cookbook\templates\url_import.html:633 msgid "" " Only websites containing ld+json or microdata information can currently\n" " be imported. Most big recipe pages " @@ -2456,135 +2535,138 @@ msgstr "" "importiert werden kann, sie aber strukturierte Daten aufweist, kann ein " "GitHub-Issue geöffnet werden." -#: .\cookbook\templates\url_import.html:638 +#: .\cookbook\templates\url_import.html:641 msgid "Google ld+json Info" msgstr "Google ld+json Informationen" -#: .\cookbook\templates\url_import.html:641 +#: .\cookbook\templates\url_import.html:644 msgid "GitHub Issues" msgstr "GitHub-Issues" -#: .\cookbook\templates\url_import.html:643 +#: .\cookbook\templates\url_import.html:646 msgid "Recipe Markup Specification" msgstr "Rezept-Markup-Spezifikation" -#: .\cookbook\views\api.py:82 .\cookbook\views\api.py:131 +#: .\cookbook\views\api.py:83 .\cookbook\views\api.py:132 msgid "Parameter updated_at incorrectly formatted" msgstr "Der Parameter updated_at ist falsch formatiert" -#: .\cookbook\views\api.py:151 +#: .\cookbook\views\api.py:152 #, python-brace-format msgid "No {self.basename} with id {pk} exists" msgstr "Kein {self.basename} mit der ID {pk} existiert" -#: .\cookbook\views\api.py:155 +#: .\cookbook\views\api.py:156 msgid "Cannot merge with the same object!" msgstr "Zusammenführen mit selben Objekt nicht möglich!" -#: .\cookbook\views\api.py:162 +#: .\cookbook\views\api.py:163 #, python-brace-format msgid "No {self.basename} with id {target} exists" msgstr "Kein {self.basename} mit der ID {target} existiert" -#: .\cookbook\views\api.py:167 +#: .\cookbook\views\api.py:168 msgid "Cannot merge with child object!" msgstr "Zusammenführen mit untergeordnetem Objekt nicht möglich!" -#: .\cookbook\views\api.py:200 +#: .\cookbook\views\api.py:201 #, python-brace-format msgid "{source.name} was merged successfully with {target.name}" msgstr "{source.name} wurde erfolgreich mit {target.name} zusammengeführt" -#: .\cookbook\views\api.py:204 +#: .\cookbook\views\api.py:205 #, python-brace-format msgid "An error occurred attempting to merge {source.name} with {target.name}" msgstr "" "Beim zusammenführen von {source.name} mit {target.name} ist ein Fehler " "aufgetreten" -#: .\cookbook\views\api.py:248 +#: .\cookbook\views\api.py:249 #, python-brace-format msgid "No {self.basename} with id {child} exists" msgstr "Kein {self.basename} mit ID {child} existiert" -#: .\cookbook\views\api.py:257 +#: .\cookbook\views\api.py:258 #, python-brace-format msgid "{child.name} was moved successfully to the root." msgstr "{child.name} wurde erfolgreich zur Wurzel verschoben." -#: .\cookbook\views\api.py:260 .\cookbook\views\api.py:278 +#: .\cookbook\views\api.py:261 .\cookbook\views\api.py:279 msgid "An error occurred attempting to move " msgstr "Fehler aufgetreten beim verschieben von " -#: .\cookbook\views\api.py:263 +#: .\cookbook\views\api.py:264 msgid "Cannot move an object to itself!" msgstr "Ein Element kann nicht in sich selbst verschoben werden!" -#: .\cookbook\views\api.py:269 +#: .\cookbook\views\api.py:270 #, python-brace-format msgid "No {self.basename} with id {parent} exists" msgstr "Kein {self.basename} mit ID {parent} existiert" -#: .\cookbook\views\api.py:275 +#: .\cookbook\views\api.py:276 #, python-brace-format msgid "{child.name} was moved successfully to parent {parent.name}" msgstr "" "{child.name} wurde erfolgreich zum Überelement {parent.name} verschoben" -#: .\cookbook\views\api.py:723 .\cookbook\views\views.py:277 -msgid "This feature is not available in the demo version!" +#: .\cookbook\views\api.py:723 .\cookbook\views\data.py:42 +#: .\cookbook\views\edit.py:129 .\cookbook\views\new.py:95 +#, fuzzy +#| msgid "This feature is not available in the demo version!" +msgid "This feature is not yet available in the hosted version of tandoor!" msgstr "Diese Funktion ist in der Demo-Version nicht verfügbar!" -#: .\cookbook\views\api.py:746 +#: .\cookbook\views\api.py:745 msgid "Sync successful!" msgstr "Synchronisation erfolgreich!" -#: .\cookbook\views\api.py:751 +#: .\cookbook\views\api.py:750 msgid "Error synchronizing with Storage" msgstr "Fehler beim Synchronisieren" -#: .\cookbook\views\api.py:829 +#: .\cookbook\views\api.py:828 msgid "Nothing to do." msgstr "Nichts zu tun." -#: .\cookbook\views\api.py:844 +#: .\cookbook\views\api.py:843 msgid "The requested site provided malformed data and cannot be read." msgstr "" "Die angefragte Seite hat ungültige Daten zurückgegeben oder die Daten " "konnten nicht verarbeitet werden." -#: .\cookbook\views\api.py:851 +#: .\cookbook\views\api.py:850 msgid "The requested page could not be found." msgstr "Die angefragte Seite konnte nicht gefunden werden." -#: .\cookbook\views\api.py:860 +#: .\cookbook\views\api.py:859 msgid "" "The requested site does not provide any recognized data format to import the " "recipe from." msgstr "" "Die angefragte Seite stellt keine bekannten Datenformate zur Verfügung." -#: .\cookbook\views\api.py:874 +#: .\cookbook\views\api.py:873 msgid "No useable data could be found." msgstr "Es konnten keine nutzbaren Daten gefunden werden." -#: .\cookbook\views\api.py:890 +#: .\cookbook\views\api.py:889 msgid "I couldn't find anything to do." msgstr "Ich konnte nichts zu tun finden." -#: .\cookbook\views\data.py:33 .\cookbook\views\data.py:124 -#: .\cookbook\views\edit.py:50 .\cookbook\views\import_export.py:73 -#: .\cookbook\views\new.py:32 +#: .\cookbook\views\data.py:34 .\cookbook\views\data.py:129 +#: .\cookbook\views\edit.py:49 .\cookbook\views\import_export.py:73 +#: .\cookbook\views\new.py:33 msgid "You have reached the maximum number of recipes for your space." msgstr "Du hast die maximale Anzahl an Rezepten für Deinen Space erreicht." -#: .\cookbook\views\data.py:37 .\cookbook\views\data.py:128 -#: .\cookbook\views\edit.py:54 .\cookbook\views\import_export.py:77 -#: .\cookbook\views\new.py:36 +#: .\cookbook\views\data.py:38 .\cookbook\views\data.py:133 +#: .\cookbook\views\edit.py:53 .\cookbook\views\import_export.py:77 +#: .\cookbook\views\new.py:37 msgid "You have more users than allowed in your space." msgstr "Du hast mehr Benutzer in Deinem Space als erlaubt." -#: .\cookbook\views\data.py:106 +#: .\cookbook\views\data.py:111 #, python-format msgid "Batch edit done. %(count)d recipe was updated." msgid_plural "Batch edit done. %(count)d Recipes where updated." @@ -2597,7 +2679,7 @@ msgid "Monitor" msgstr "Überwachen" #: .\cookbook\views\delete.py:125 .\cookbook\views\lists.py:86 -#: .\cookbook\views\new.py:97 +#: .\cookbook\views\new.py:101 msgid "Storage Backend" msgstr "Speicherquelle" @@ -2616,31 +2698,27 @@ msgstr "Rezeptbuch" msgid "Bookmarks" msgstr "Lesezeichen" -#: .\cookbook\views\delete.py:192 .\cookbook\views\new.py:231 +#: .\cookbook\views\delete.py:192 .\cookbook\views\new.py:235 msgid "Invite Link" msgstr "Einladungslink" -#: .\cookbook\views\edit.py:126 +#: .\cookbook\views\edit.py:125 msgid "You cannot edit this storage!" msgstr "Du kannst diese Speicherquelle nicht bearbeiten!" -#: .\cookbook\views\edit.py:146 +#: .\cookbook\views\edit.py:149 msgid "Storage saved!" msgstr "Speicherquelle gespeichert!" -#: .\cookbook\views\edit.py:152 +#: .\cookbook\views\edit.py:155 msgid "There was an error updating this storage backend!" msgstr "Es gab einen Fehler beim Aktualisieren dieser Speicherquelle!" -#: .\cookbook\views\edit.py:163 -msgid "Storage" -msgstr "Speicher" - -#: .\cookbook\views\edit.py:245 +#: .\cookbook\views\edit.py:248 msgid "Changes saved!" msgstr "Änderungen gespeichert!" -#: .\cookbook\views\edit.py:249 +#: .\cookbook\views\edit.py:252 msgid "Error saving changes!" msgstr "Fehler beim Speichern der Daten!" @@ -2682,57 +2760,57 @@ msgstr "Einkaufskategorien" msgid "New Shopping List" msgstr "Einkaufsliste" -#: .\cookbook\views\new.py:122 +#: .\cookbook\views\new.py:126 msgid "Imported new recipe!" msgstr "Neues Rezept importiert!" -#: .\cookbook\views\new.py:125 +#: .\cookbook\views\new.py:129 msgid "There was an error importing this recipe!" msgstr "Beim Importieren des Rezeptes ist ein Fehler aufgetreten!" -#: .\cookbook\views\new.py:205 +#: .\cookbook\views\new.py:209 msgid "Hello" msgstr "Hallo" -#: .\cookbook\views\new.py:205 +#: .\cookbook\views\new.py:209 msgid "You have been invited by " msgstr "Du wurdest eingeladen von " -#: .\cookbook\views\new.py:206 +#: .\cookbook\views\new.py:210 msgid " to join their Tandoor Recipes space " msgstr " um deren Tandoor Recipes Instanz beizutreten " -#: .\cookbook\views\new.py:207 +#: .\cookbook\views\new.py:211 msgid "Click the following link to activate your account: " msgstr "Klicke auf den folgenden Link, um deinen Account zu aktivieren: " -#: .\cookbook\views\new.py:208 +#: .\cookbook\views\new.py:212 msgid "" "If the link does not work use the following code to manually join the space: " msgstr "" "Falls der Link nicht funktioniert, benutze den folgenden Code um dem Space " "manuell beizutreten: " -#: .\cookbook\views\new.py:209 +#: .\cookbook\views\new.py:213 msgid "The invitation is valid until " msgstr "Die Einladung ist gültig bis " -#: .\cookbook\views\new.py:210 +#: .\cookbook\views\new.py:214 msgid "" "Tandoor Recipes is an Open Source recipe manager. Check it out on GitHub " msgstr "" "Tandoor Recipes ist ein Open-Source Rezept-Manager. Mehr Informationen sind " "auf GitHub zu finden " -#: .\cookbook\views\new.py:213 +#: .\cookbook\views\new.py:217 msgid "Tandoor Recipes Invite" msgstr "Tandoor Recipes Einladung" -#: .\cookbook\views\new.py:220 +#: .\cookbook\views\new.py:224 msgid "Invite link successfully send to user." msgstr "Einladungslink erfolgreich an Benutzer gesendet." -#: .\cookbook\views\new.py:223 +#: .\cookbook\views\new.py:227 msgid "" "You have send to many emails, please share the link manually or wait a few " "hours." @@ -2740,7 +2818,7 @@ msgstr "" "Du hast zu viele Email gesendet. Bitte teile den Link manuell oder warte ein " "paar Stunden." -#: .\cookbook\views\new.py:225 +#: .\cookbook\views\new.py:229 msgid "Email to user could not be send, please share link manually." msgstr "" "Email konnte an den Benutzer nicht gesendet werden. Bitte teile den Link " @@ -2763,6 +2841,10 @@ msgstr "" msgid "Comment saved!" msgstr "Kommentar gespeichert!" +#: .\cookbook\views\views.py:277 +msgid "This feature is not available in the demo version!" +msgstr "Diese Funktion ist in der Demo-Version nicht verfügbar!" + #: .\cookbook\views\views.py:340 msgid "You must select at least one field to search!" msgstr "Es muss mindestens ein Feld ausgewählt sein!" @@ -2877,9 +2959,6 @@ msgstr "" #~ msgid "Create only note" #~ msgstr "Nur Notiz erstellen" -#~ msgid "Shopping list currently empty" -#~ msgstr "Die Einkaufsliste ist aktuell leer" - #~ msgid "Plan" #~ msgstr "Plan" diff --git a/cookbook/locale/en/LC_MESSAGES/django.po b/cookbook/locale/en/LC_MESSAGES/django.po index 19befebd0..0a80639a7 100644 --- a/cookbook/locale/en/LC_MESSAGES/django.po +++ b/cookbook/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-04 14:56+0100\n" +"POT-Creation-Date: 2021-11-07 17:31+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -21,49 +21,102 @@ msgstr "" #: .\cookbook\filters.py:23 .\cookbook\templates\base.html:125 #: .\cookbook\templates\forms\ingredients.html:34 #: .\cookbook\templates\space.html:43 .\cookbook\templates\stats.html:28 -#: .\cookbook\templates\url_import.html:272 +#: .\cookbook\templates\url_import.html:274 msgid "Ingredients" msgstr "" -#: .\cookbook\forms.py:53 +#: .\cookbook\forms.py:54 +msgid "Default unit" +msgstr "" + +#: .\cookbook\forms.py:55 +msgid "Use fractions" +msgstr "" + +#: .\cookbook\forms.py:56 +msgid "Use KJ" +msgstr "" + +#: .\cookbook\forms.py:57 +msgid "Theme" +msgstr "" + +#: .\cookbook\forms.py:58 +msgid "Navbar color" +msgstr "" + +#: .\cookbook\forms.py:59 +msgid "Sticky navbar" +msgstr "" + +#: .\cookbook\forms.py:60 +msgid "Default page" +msgstr "" + +#: .\cookbook\forms.py:61 +msgid "Show recent recipes" +msgstr "" + +#: .\cookbook\forms.py:62 +msgid "Search style" +msgstr "" + +#: .\cookbook\forms.py:63 +msgid "Plan sharing" +msgstr "" + +#: .\cookbook\forms.py:64 +msgid "Ingredient decimal places" +msgstr "" + +#: .\cookbook\forms.py:65 +msgid "Shopping list auto sync period" +msgstr "" + +#: .\cookbook\forms.py:66 .\cookbook\templates\recipe_view.html:21 +#: .\cookbook\templates\space.html:62 .\cookbook\templates\stats.html:47 +msgid "Comments" +msgstr "" + +#: .\cookbook\forms.py:70 msgid "" "Color of the top navigation bar. Not all colors work with all themes, just " "try them out!" msgstr "" -#: .\cookbook\forms.py:55 +#: .\cookbook\forms.py:72 msgid "Default Unit to be used when inserting a new ingredient into a recipe." msgstr "" -#: .\cookbook\forms.py:57 +#: .\cookbook\forms.py:74 msgid "" "Enables support for fractions in ingredient amounts (e.g. convert decimals " "to fractions automatically)" msgstr "" -#: .\cookbook\forms.py:59 +#: .\cookbook\forms.py:76 msgid "Display nutritional energy amounts in joules instead of calories" msgstr "" -#: .\cookbook\forms.py:61 +#: .\cookbook\forms.py:78 msgid "" "Users with whom newly created meal plan/shopping list entries should be " "shared by default." msgstr "" -#: .\cookbook\forms.py:63 +#: .\cookbook\forms.py:80 msgid "Show recently viewed recipes on search page." msgstr "" -#: .\cookbook\forms.py:64 +#: .\cookbook\forms.py:81 msgid "Number of decimals to round ingredients." msgstr "" -#: .\cookbook\forms.py:65 +#: .\cookbook\forms.py:82 msgid "If you want to be able to create and see comments underneath recipes." msgstr "" -#: .\cookbook\forms.py:67 +#: .\cookbook\forms.py:84 msgid "" "Setting to 0 will disable auto sync. When viewing a shopping list the list " "is updated every set seconds to sync changes someone else might have made. " @@ -71,189 +124,197 @@ msgid "" "mobile data. If lower than instance limit it is reset when saving." msgstr "" -#: .\cookbook\forms.py:70 +#: .\cookbook\forms.py:87 msgid "Makes the navbar stick to the top of the page." msgstr "" -#: .\cookbook\forms.py:86 +#: .\cookbook\forms.py:103 msgid "" "Both fields are optional. If none are given the username will be displayed " "instead" msgstr "" -#: .\cookbook\forms.py:107 .\cookbook\forms.py:266 -#: .\cookbook\templates\url_import.html:156 +#: .\cookbook\forms.py:124 .\cookbook\forms.py:289 +#: .\cookbook\templates\url_import.html:158 msgid "Name" msgstr "" -#: .\cookbook\forms.py:108 .\cookbook\forms.py:267 +#: .\cookbook\forms.py:125 .\cookbook\forms.py:290 #: .\cookbook\templates\space.html:39 .\cookbook\templates\stats.html:24 -#: .\cookbook\templates\url_import.html:190 -#: .\cookbook\templates\url_import.html:575 .\cookbook\views\lists.py:112 +#: .\cookbook\templates\url_import.html:192 +#: .\cookbook\templates\url_import.html:578 .\cookbook\views\lists.py:112 msgid "Keywords" msgstr "" -#: .\cookbook\forms.py:109 +#: .\cookbook\forms.py:126 msgid "Preparation time in minutes" msgstr "" -#: .\cookbook\forms.py:110 +#: .\cookbook\forms.py:127 msgid "Waiting time (cooking/baking) in minutes" msgstr "" -#: .\cookbook\forms.py:111 .\cookbook\forms.py:268 +#: .\cookbook\forms.py:128 .\cookbook\forms.py:259 .\cookbook\forms.py:291 msgid "Path" msgstr "" -#: .\cookbook\forms.py:112 +#: .\cookbook\forms.py:129 msgid "Storage UID" msgstr "" -#: .\cookbook\forms.py:140 +#: .\cookbook\forms.py:157 msgid "Default" msgstr "" -#: .\cookbook\forms.py:151 .\cookbook\templates\url_import.html:92 +#: .\cookbook\forms.py:168 .\cookbook\templates\url_import.html:94 msgid "" "To prevent duplicates recipes with the same name as existing ones are " "ignored. Check this box to import everything." msgstr "" -#: .\cookbook\forms.py:173 +#: .\cookbook\forms.py:190 msgid "Add your comment: " msgstr "" -#: .\cookbook\forms.py:188 +#: .\cookbook\forms.py:205 msgid "Leave empty for dropbox and enter app password for nextcloud." msgstr "" -#: .\cookbook\forms.py:195 +#: .\cookbook\forms.py:212 msgid "Leave empty for nextcloud and enter api token for dropbox." msgstr "" -#: .\cookbook\forms.py:204 +#: .\cookbook\forms.py:221 msgid "" "Leave empty for dropbox and enter only base url for nextcloud (/remote." "php/webdav/ is added automatically)" msgstr "" -#: .\cookbook\forms.py:242 +#: .\cookbook\forms.py:258 .\cookbook\views\edit.py:166 +msgid "Storage" +msgstr "" + +#: .\cookbook\forms.py:260 +msgid "Active" +msgstr "" + +#: .\cookbook\forms.py:265 msgid "Search String" msgstr "" -#: .\cookbook\forms.py:269 +#: .\cookbook\forms.py:292 msgid "File ID" msgstr "" -#: .\cookbook\forms.py:290 +#: .\cookbook\forms.py:313 msgid "You must provide at least a recipe or a title." msgstr "" -#: .\cookbook\forms.py:303 +#: .\cookbook\forms.py:326 msgid "You can list default users to share recipes with in the settings." msgstr "" -#: .\cookbook\forms.py:304 +#: .\cookbook\forms.py:327 msgid "" "You can use markdown to format this field. See the docs here" msgstr "" -#: .\cookbook\forms.py:329 +#: .\cookbook\forms.py:353 msgid "Maximum number of users for this space reached." msgstr "" -#: .\cookbook\forms.py:335 +#: .\cookbook\forms.py:359 msgid "Email address already taken!" msgstr "" -#: .\cookbook\forms.py:343 +#: .\cookbook\forms.py:367 msgid "" "An email address is not required but if present the invite link will be send " "to the user." msgstr "" -#: .\cookbook\forms.py:358 +#: .\cookbook\forms.py:382 msgid "Name already taken." msgstr "" -#: .\cookbook\forms.py:369 +#: .\cookbook\forms.py:393 msgid "Accept Terms and Privacy" msgstr "" -#: .\cookbook\forms.py:399 +#: .\cookbook\forms.py:425 msgid "" "Determines how fuzzy a search is if it uses trigram similarity matching (e." "g. low values mean more typos are ignored)." msgstr "" -#: .\cookbook\forms.py:407 +#: .\cookbook\forms.py:435 msgid "" "Select type method of search. Click here for " "full desciption of choices." msgstr "" -#: .\cookbook\forms.py:408 +#: .\cookbook\forms.py:436 msgid "" "Use fuzzy matching on units, keywords and ingredients when editing and " "importing recipes." msgstr "" -#: .\cookbook\forms.py:409 +#: .\cookbook\forms.py:438 msgid "" "Fields to search ignoring accents. Selecting this option can improve or " "degrade search quality depending on language" msgstr "" -#: .\cookbook\forms.py:410 +#: .\cookbook\forms.py:440 msgid "" "Fields to search for partial matches. (e.g. searching for 'Pie' will return " "'pie' and 'piece' and 'soapie')" msgstr "" -#: .\cookbook\forms.py:411 +#: .\cookbook\forms.py:442 msgid "" "Fields to search for beginning of word matches. (e.g. searching for 'sa' " "will return 'salad' and 'sandwich')" msgstr "" -#: .\cookbook\forms.py:412 +#: .\cookbook\forms.py:444 msgid "" "Fields to 'fuzzy' search. (e.g. searching for 'recpie' will find 'recipe'.) " "Note: this option will conflict with 'web' and 'raw' methods of search." msgstr "" -#: .\cookbook\forms.py:413 +#: .\cookbook\forms.py:446 msgid "" "Fields to full text search. Note: 'web', 'phrase', and 'raw' search methods " "only function with fulltext fields." msgstr "" -#: .\cookbook\forms.py:417 +#: .\cookbook\forms.py:450 msgid "Search Method" msgstr "" -#: .\cookbook\forms.py:418 +#: .\cookbook\forms.py:451 msgid "Fuzzy Lookups" msgstr "" -#: .\cookbook\forms.py:419 +#: .\cookbook\forms.py:452 msgid "Ignore Accent" msgstr "" -#: .\cookbook\forms.py:420 +#: .\cookbook\forms.py:453 msgid "Partial Match" msgstr "" -#: .\cookbook\forms.py:421 +#: .\cookbook\forms.py:454 msgid "Starts Wtih" msgstr "" -#: .\cookbook\forms.py:422 +#: .\cookbook\forms.py:455 msgid "Fuzzy Search" msgstr "" -#: .\cookbook\forms.py:423 +#: .\cookbook\forms.py:456 msgid "Full Text" msgstr "" @@ -274,7 +335,7 @@ msgstr "" #: .\cookbook\helper\permission_helper.py:216 #: .\cookbook\helper\permission_helper.py:230 #: .\cookbook\helper\permission_helper.py:241 -#: .\cookbook\helper\permission_helper.py:252 .\cookbook\views\data.py:42 +#: .\cookbook\helper\permission_helper.py:252 .\cookbook\views\data.py:47 #: .\cookbook\views\views.py:160 .\cookbook\views\views.py:167 #: .\cookbook\views\views.py:233 msgid "You do not have the required permissions to view this page!" @@ -296,11 +357,11 @@ msgstr "" #: .\cookbook\templates\import_response.html:7 #: .\cookbook\templates\test.html:14 .\cookbook\templates\test.html:20 #: .\cookbook\templates\url_import.html:27 -#: .\cookbook\templates\url_import.html:103 -#: .\cookbook\templates\url_import.html:125 -#: .\cookbook\templates\url_import.html:319 -#: .\cookbook\templates\url_import.html:606 .\cookbook\views\delete.py:89 -#: .\cookbook\views\edit.py:197 +#: .\cookbook\templates\url_import.html:105 +#: .\cookbook\templates\url_import.html:127 +#: .\cookbook\templates\url_import.html:321 +#: .\cookbook\templates\url_import.html:609 .\cookbook\views\delete.py:89 +#: .\cookbook\views\edit.py:200 msgid "Import" msgstr "" @@ -333,14 +394,14 @@ msgstr "" msgid "Nutritional Information" msgstr "" -#: .\cookbook\integration\paprika.py:53 +#: .\cookbook\integration\paprika.py:53 .\cookbook\templates\url_import.html:40 msgid "Source" msgstr "" #: .\cookbook\integration\safron.py:23 #: .\cookbook\templates\include\log_cooking.html:16 -#: .\cookbook\templates\url_import.html:226 -#: .\cookbook\templates\url_import.html:457 +#: .\cookbook\templates\url_import.html:228 +#: .\cookbook\templates\url_import.html:459 msgid "Servings" msgstr "" @@ -408,7 +469,7 @@ msgstr "" #: .\cookbook\models.py:203 .\cookbook\templates\base.html:82 #: .\cookbook\templates\meal_plan.html:7 #: .\cookbook\templates\meal_plan_new.html:7 .\cookbook\views\delete.py:181 -#: .\cookbook\views\edit.py:217 .\cookbook\views\new.py:180 +#: .\cookbook\views\edit.py:220 .\cookbook\views\new.py:184 msgid "Meal-Plan" msgstr "" @@ -433,7 +494,7 @@ msgstr "" msgid " is part of a recipe step and cannot be deleted" msgstr "" -#: .\cookbook\models.py:441 +#: .\cookbook\models.py:441 .\cookbook\templates\url_import.html:42 msgid "Text" msgstr "" @@ -441,14 +502,14 @@ msgstr "" msgid "Time" msgstr "" -#: .\cookbook\models.py:441 +#: .\cookbook\models.py:441 .\cookbook\templates\url_import.html:44 msgid "File" msgstr "" #: .\cookbook\models.py:441 #: .\cookbook\templates\include\recipe_open_modal.html:7 -#: .\cookbook\views\delete.py:39 .\cookbook\views\edit.py:257 -#: .\cookbook\views\new.py:52 +#: .\cookbook\views\delete.py:39 .\cookbook\views\edit.py:260 +#: .\cookbook\views\new.py:53 msgid "Recipe" msgstr "" @@ -893,7 +954,7 @@ msgstr "" msgid "Add the specified keywords to all recipes containing a word" msgstr "" -#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:83 +#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:82 msgid "Sync" msgstr "" @@ -911,6 +972,18 @@ msgstr "" msgid "The path must be in the following format" msgstr "" +#: .\cookbook\templates\batch\monitor.html:20 +#: .\cookbook\templates\forms\edit_import_recipe.html:14 +#: .\cookbook\templates\generic\edit_template.html:23 +#: .\cookbook\templates\generic\new_template.html:23 +#: .\cookbook\templates\include\log_cooking.html:28 +#: .\cookbook\templates\settings.html:63 .\cookbook\templates\settings.html:105 +#: .\cookbook\templates\settings.html:123 +#: .\cookbook\templates\settings.html:195 +#: .\cookbook\templates\shopping_list.html:360 +msgid "Save" +msgstr "" + #: .\cookbook\templates\batch\monitor.html:21 msgid "Manage External Storage" msgstr "" @@ -951,17 +1024,6 @@ msgstr "" msgid "Import new Recipe" msgstr "" -#: .\cookbook\templates\forms\edit_import_recipe.html:14 -#: .\cookbook\templates\generic\edit_template.html:23 -#: .\cookbook\templates\generic\new_template.html:23 -#: .\cookbook\templates\include\log_cooking.html:28 -#: .\cookbook\templates\settings.html:63 .\cookbook\templates\settings.html:105 -#: .\cookbook\templates\settings.html:123 -#: .\cookbook\templates\settings.html:195 -#: .\cookbook\templates\shopping_list.html:360 -msgid "Save" -msgstr "" - #: .\cookbook\templates\forms\edit_internal_recipe.html:7 msgid "Edit Recipe" msgstr "" @@ -1365,33 +1427,28 @@ msgid "" "recently viewed them. Keep in mind that data might be outdated." msgstr "" -#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\space.html:62 -#: .\cookbook\templates\stats.html:47 -msgid "Comments" -msgstr "" - #: .\cookbook\templates\recipe_view.html:26 msgid "by" msgstr "" #: .\cookbook\templates\recipe_view.html:44 .\cookbook\views\delete.py:147 -#: .\cookbook\views\edit.py:177 +#: .\cookbook\views\edit.py:180 msgid "Comment" msgstr "" #: .\cookbook\templates\recipes_table.html:19 #: .\cookbook\templates\recipes_table.html:23 -#: .\cookbook\templates\url_import.html:442 +#: .\cookbook\templates\url_import.html:444 msgid "Recipe Image" msgstr "" #: .\cookbook\templates\recipes_table.html:51 -#: .\cookbook\templates\url_import.html:447 +#: .\cookbook\templates\url_import.html:449 msgid "Preparation time ca." msgstr "" #: .\cookbook\templates\recipes_table.html:57 -#: .\cookbook\templates\url_import.html:452 +#: .\cookbook\templates\url_import.html:454 msgid "Waiting time ca." msgstr "" @@ -1736,8 +1793,8 @@ msgstr "" #: .\cookbook\templates\shopping_list.html:218 #: .\cookbook\templates\shopping_list.html:248 #: .\cookbook\templates\shopping_list.html:272 -#: .\cookbook\templates\url_import.html:497 -#: .\cookbook\templates\url_import.html:529 +#: .\cookbook\templates\url_import.html:500 +#: .\cookbook\templates\url_import.html:532 msgid "Select" msgstr "" @@ -2012,146 +2069,154 @@ msgstr "" msgid "Bookmark Me!" msgstr "" -#: .\cookbook\templates\url_import.html:61 +#: .\cookbook\templates\url_import.html:36 +msgid "URL" +msgstr "" + +#: .\cookbook\templates\url_import.html:38 +msgid "App" +msgstr "" + +#: .\cookbook\templates\url_import.html:62 msgid "Enter website URL" msgstr "" -#: .\cookbook\templates\url_import.html:99 +#: .\cookbook\templates\url_import.html:101 msgid "Select recipe files to import or drop them here..." msgstr "" -#: .\cookbook\templates\url_import.html:120 +#: .\cookbook\templates\url_import.html:122 msgid "Paste json or html source here to load recipe." msgstr "" -#: .\cookbook\templates\url_import.html:148 +#: .\cookbook\templates\url_import.html:150 msgid "Preview Recipe Data" msgstr "" -#: .\cookbook\templates\url_import.html:149 +#: .\cookbook\templates\url_import.html:151 msgid "Drag recipe attributes from the right into the appropriate box below." msgstr "" -#: .\cookbook\templates\url_import.html:158 -#: .\cookbook\templates\url_import.html:175 -#: .\cookbook\templates\url_import.html:192 -#: .\cookbook\templates\url_import.html:211 -#: .\cookbook\templates\url_import.html:229 -#: .\cookbook\templates\url_import.html:244 -#: .\cookbook\templates\url_import.html:259 -#: .\cookbook\templates\url_import.html:275 -#: .\cookbook\templates\url_import.html:302 -#: .\cookbook\templates\url_import.html:353 +#: .\cookbook\templates\url_import.html:160 +#: .\cookbook\templates\url_import.html:177 +#: .\cookbook\templates\url_import.html:194 +#: .\cookbook\templates\url_import.html:213 +#: .\cookbook\templates\url_import.html:231 +#: .\cookbook\templates\url_import.html:246 +#: .\cookbook\templates\url_import.html:261 +#: .\cookbook\templates\url_import.html:277 +#: .\cookbook\templates\url_import.html:304 +#: .\cookbook\templates\url_import.html:355 msgid "Clear Contents" msgstr "" -#: .\cookbook\templates\url_import.html:160 +#: .\cookbook\templates\url_import.html:162 msgid "Text dragged here will be appended to the name." msgstr "" -#: .\cookbook\templates\url_import.html:173 +#: .\cookbook\templates\url_import.html:175 msgid "Description" msgstr "" -#: .\cookbook\templates\url_import.html:177 +#: .\cookbook\templates\url_import.html:179 msgid "Text dragged here will be appended to the description." msgstr "" -#: .\cookbook\templates\url_import.html:194 +#: .\cookbook\templates\url_import.html:196 msgid "Keywords dragged here will be appended to current list" msgstr "" -#: .\cookbook\templates\url_import.html:209 +#: .\cookbook\templates\url_import.html:211 msgid "Image" msgstr "" -#: .\cookbook\templates\url_import.html:241 +#: .\cookbook\templates\url_import.html:243 msgid "Prep Time" msgstr "" -#: .\cookbook\templates\url_import.html:256 +#: .\cookbook\templates\url_import.html:258 msgid "Cook Time" msgstr "" -#: .\cookbook\templates\url_import.html:277 +#: .\cookbook\templates\url_import.html:279 msgid "Ingredients dragged here will be appended to current list." msgstr "" -#: .\cookbook\templates\url_import.html:299 -#: .\cookbook\templates\url_import.html:569 +#: .\cookbook\templates\url_import.html:301 +#: .\cookbook\templates\url_import.html:572 msgid "Instructions" msgstr "" -#: .\cookbook\templates\url_import.html:304 +#: .\cookbook\templates\url_import.html:306 msgid "" "Recipe instructions dragged here will be appended to current instructions." msgstr "" -#: .\cookbook\templates\url_import.html:327 +#: .\cookbook\templates\url_import.html:329 msgid "Discovered Attributes" msgstr "" -#: .\cookbook\templates\url_import.html:329 +#: .\cookbook\templates\url_import.html:331 msgid "" "Drag recipe attributes from below into the appropriate box on the left. " "Click any node to display its full properties." msgstr "" -#: .\cookbook\templates\url_import.html:346 +#: .\cookbook\templates\url_import.html:348 msgid "Show Blank Field" msgstr "" -#: .\cookbook\templates\url_import.html:351 +#: .\cookbook\templates\url_import.html:353 msgid "Blank Field" msgstr "" -#: .\cookbook\templates\url_import.html:355 +#: .\cookbook\templates\url_import.html:357 msgid "Items dragged to Blank Field will be appended." msgstr "" -#: .\cookbook\templates\url_import.html:402 +#: .\cookbook\templates\url_import.html:404 msgid "Delete Text" msgstr "" -#: .\cookbook\templates\url_import.html:415 +#: .\cookbook\templates\url_import.html:417 msgid "Delete image" msgstr "" -#: .\cookbook\templates\url_import.html:431 +#: .\cookbook\templates\url_import.html:433 msgid "Recipe Name" msgstr "" -#: .\cookbook\templates\url_import.html:435 +#: .\cookbook\templates\url_import.html:437 msgid "Recipe Description" msgstr "" -#: .\cookbook\templates\url_import.html:496 -#: .\cookbook\templates\url_import.html:528 -#: .\cookbook\templates\url_import.html:584 +#: .\cookbook\templates\url_import.html:499 +#: .\cookbook\templates\url_import.html:531 +#: .\cookbook\templates\url_import.html:587 msgid "Select one" msgstr "" -#: .\cookbook\templates\url_import.html:544 +#: .\cookbook\templates\url_import.html:547 msgid "Note" msgstr "" -#: .\cookbook\templates\url_import.html:585 +#: .\cookbook\templates\url_import.html:588 msgid "Add Keyword" msgstr "" -#: .\cookbook\templates\url_import.html:598 +#: .\cookbook\templates\url_import.html:601 msgid "All Keywords" msgstr "" -#: .\cookbook\templates\url_import.html:601 +#: .\cookbook\templates\url_import.html:604 msgid "Import all keywords, not only the ones already existing." msgstr "" -#: .\cookbook\templates\url_import.html:628 +#: .\cookbook\templates\url_import.html:631 msgid "Information" msgstr "" -#: .\cookbook\templates\url_import.html:630 +#: .\cookbook\templates\url_import.html:633 msgid "" " Only websites containing ld+json or microdata information can currently\n" " be imported. Most big recipe pages " @@ -2162,129 +2227,130 @@ msgid "" " github issues." msgstr "" -#: .\cookbook\templates\url_import.html:638 +#: .\cookbook\templates\url_import.html:641 msgid "Google ld+json Info" msgstr "" -#: .\cookbook\templates\url_import.html:641 +#: .\cookbook\templates\url_import.html:644 msgid "GitHub Issues" msgstr "" -#: .\cookbook\templates\url_import.html:643 +#: .\cookbook\templates\url_import.html:646 msgid "Recipe Markup Specification" msgstr "" -#: .\cookbook\views\api.py:82 .\cookbook\views\api.py:131 +#: .\cookbook\views\api.py:83 .\cookbook\views\api.py:132 msgid "Parameter updated_at incorrectly formatted" msgstr "" -#: .\cookbook\views\api.py:151 +#: .\cookbook\views\api.py:152 #, python-brace-format msgid "No {self.basename} with id {pk} exists" msgstr "" -#: .\cookbook\views\api.py:155 +#: .\cookbook\views\api.py:156 msgid "Cannot merge with the same object!" msgstr "" -#: .\cookbook\views\api.py:162 +#: .\cookbook\views\api.py:163 #, python-brace-format msgid "No {self.basename} with id {target} exists" msgstr "" -#: .\cookbook\views\api.py:167 +#: .\cookbook\views\api.py:168 msgid "Cannot merge with child object!" msgstr "" -#: .\cookbook\views\api.py:200 +#: .\cookbook\views\api.py:201 #, python-brace-format msgid "{source.name} was merged successfully with {target.name}" msgstr "" -#: .\cookbook\views\api.py:204 +#: .\cookbook\views\api.py:205 #, python-brace-format msgid "An error occurred attempting to merge {source.name} with {target.name}" msgstr "" -#: .\cookbook\views\api.py:248 +#: .\cookbook\views\api.py:249 #, python-brace-format msgid "No {self.basename} with id {child} exists" msgstr "" -#: .\cookbook\views\api.py:257 +#: .\cookbook\views\api.py:258 #, python-brace-format msgid "{child.name} was moved successfully to the root." msgstr "" -#: .\cookbook\views\api.py:260 .\cookbook\views\api.py:278 +#: .\cookbook\views\api.py:261 .\cookbook\views\api.py:279 msgid "An error occurred attempting to move " msgstr "" -#: .\cookbook\views\api.py:263 +#: .\cookbook\views\api.py:264 msgid "Cannot move an object to itself!" msgstr "" -#: .\cookbook\views\api.py:269 +#: .\cookbook\views\api.py:270 #, python-brace-format msgid "No {self.basename} with id {parent} exists" msgstr "" -#: .\cookbook\views\api.py:275 +#: .\cookbook\views\api.py:276 #, python-brace-format msgid "{child.name} was moved successfully to parent {parent.name}" msgstr "" -#: .\cookbook\views\api.py:723 .\cookbook\views\views.py:277 -msgid "This feature is not available in the demo version!" +#: .\cookbook\views\api.py:723 .\cookbook\views\data.py:42 +#: .\cookbook\views\edit.py:129 .\cookbook\views\new.py:95 +msgid "This feature is not yet available in the hosted version of tandoor!" msgstr "" -#: .\cookbook\views\api.py:746 +#: .\cookbook\views\api.py:745 msgid "Sync successful!" msgstr "" -#: .\cookbook\views\api.py:751 +#: .\cookbook\views\api.py:750 msgid "Error synchronizing with Storage" msgstr "" -#: .\cookbook\views\api.py:829 +#: .\cookbook\views\api.py:828 msgid "Nothing to do." msgstr "" -#: .\cookbook\views\api.py:844 +#: .\cookbook\views\api.py:843 msgid "The requested site provided malformed data and cannot be read." msgstr "" -#: .\cookbook\views\api.py:851 +#: .\cookbook\views\api.py:850 msgid "The requested page could not be found." msgstr "" -#: .\cookbook\views\api.py:860 +#: .\cookbook\views\api.py:859 msgid "" "The requested site does not provide any recognized data format to import the " "recipe from." msgstr "" -#: .\cookbook\views\api.py:874 +#: .\cookbook\views\api.py:873 msgid "No useable data could be found." msgstr "" -#: .\cookbook\views\api.py:890 +#: .\cookbook\views\api.py:889 msgid "I couldn't find anything to do." msgstr "" -#: .\cookbook\views\data.py:33 .\cookbook\views\data.py:124 -#: .\cookbook\views\edit.py:50 .\cookbook\views\import_export.py:73 -#: .\cookbook\views\new.py:32 +#: .\cookbook\views\data.py:34 .\cookbook\views\data.py:129 +#: .\cookbook\views\edit.py:49 .\cookbook\views\import_export.py:73 +#: .\cookbook\views\new.py:33 msgid "You have reached the maximum number of recipes for your space." msgstr "" -#: .\cookbook\views\data.py:37 .\cookbook\views\data.py:128 -#: .\cookbook\views\edit.py:54 .\cookbook\views\import_export.py:77 -#: .\cookbook\views\new.py:36 +#: .\cookbook\views\data.py:38 .\cookbook\views\data.py:133 +#: .\cookbook\views\edit.py:53 .\cookbook\views\import_export.py:77 +#: .\cookbook\views\new.py:37 msgid "You have more users than allowed in your space." msgstr "" -#: .\cookbook\views\data.py:106 +#: .\cookbook\views\data.py:111 #, python-format msgid "Batch edit done. %(count)d recipe was updated." msgid_plural "Batch edit done. %(count)d Recipes where updated." @@ -2296,7 +2362,7 @@ msgid "Monitor" msgstr "" #: .\cookbook\views\delete.py:125 .\cookbook\views\lists.py:86 -#: .\cookbook\views\new.py:97 +#: .\cookbook\views\new.py:101 msgid "Storage Backend" msgstr "" @@ -2313,31 +2379,27 @@ msgstr "" msgid "Bookmarks" msgstr "" -#: .\cookbook\views\delete.py:192 .\cookbook\views\new.py:231 +#: .\cookbook\views\delete.py:192 .\cookbook\views\new.py:235 msgid "Invite Link" msgstr "" -#: .\cookbook\views\edit.py:126 +#: .\cookbook\views\edit.py:125 msgid "You cannot edit this storage!" msgstr "" -#: .\cookbook\views\edit.py:146 +#: .\cookbook\views\edit.py:149 msgid "Storage saved!" msgstr "" -#: .\cookbook\views\edit.py:152 +#: .\cookbook\views\edit.py:155 msgid "There was an error updating this storage backend!" msgstr "" -#: .\cookbook\views\edit.py:163 -msgid "Storage" -msgstr "" - -#: .\cookbook\views\edit.py:245 +#: .\cookbook\views\edit.py:248 msgid "Changes saved!" msgstr "" -#: .\cookbook\views\edit.py:249 +#: .\cookbook\views\edit.py:252 msgid "Error saving changes!" msgstr "" @@ -2377,59 +2439,59 @@ msgstr "" msgid "New Shopping List" msgstr "" -#: .\cookbook\views\new.py:122 +#: .\cookbook\views\new.py:126 msgid "Imported new recipe!" msgstr "" -#: .\cookbook\views\new.py:125 +#: .\cookbook\views\new.py:129 msgid "There was an error importing this recipe!" msgstr "" -#: .\cookbook\views\new.py:205 +#: .\cookbook\views\new.py:209 msgid "Hello" msgstr "" -#: .\cookbook\views\new.py:205 +#: .\cookbook\views\new.py:209 msgid "You have been invited by " msgstr "" -#: .\cookbook\views\new.py:206 +#: .\cookbook\views\new.py:210 msgid " to join their Tandoor Recipes space " msgstr "" -#: .\cookbook\views\new.py:207 +#: .\cookbook\views\new.py:211 msgid "Click the following link to activate your account: " msgstr "" -#: .\cookbook\views\new.py:208 +#: .\cookbook\views\new.py:212 msgid "" "If the link does not work use the following code to manually join the space: " msgstr "" -#: .\cookbook\views\new.py:209 +#: .\cookbook\views\new.py:213 msgid "The invitation is valid until " msgstr "" -#: .\cookbook\views\new.py:210 +#: .\cookbook\views\new.py:214 msgid "" "Tandoor Recipes is an Open Source recipe manager. Check it out on GitHub " msgstr "" -#: .\cookbook\views\new.py:213 +#: .\cookbook\views\new.py:217 msgid "Tandoor Recipes Invite" msgstr "" -#: .\cookbook\views\new.py:220 +#: .\cookbook\views\new.py:224 msgid "Invite link successfully send to user." msgstr "" -#: .\cookbook\views\new.py:223 +#: .\cookbook\views\new.py:227 msgid "" "You have send to many emails, please share the link manually or wait a few " "hours." msgstr "" -#: .\cookbook\views\new.py:225 +#: .\cookbook\views\new.py:229 msgid "Email to user could not be send, please share link manually." msgstr "" @@ -2447,6 +2509,10 @@ msgstr "" msgid "Comment saved!" msgstr "" +#: .\cookbook\views\views.py:277 +msgid "This feature is not available in the demo version!" +msgstr "" + #: .\cookbook\views\views.py:340 msgid "You must select at least one field to search!" msgstr "" diff --git a/cookbook/locale/es/LC_MESSAGES/django.po b/cookbook/locale/es/LC_MESSAGES/django.po index 38b677a1d..1fa08e73d 100644 --- a/cookbook/locale/es/LC_MESSAGES/django.po +++ b/cookbook/locale/es/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-04 14:56+0100\n" +"POT-Creation-Date: 2021-11-07 17:31+0100\n" "PO-Revision-Date: 2020-06-02 19:28+0000\n" "Last-Translator: Miguel Canteras , 2021\n" "Language-Team: Spanish (https://www.transifex.com/django-recipes/" @@ -28,11 +28,78 @@ msgstr "" #: .\cookbook\filters.py:23 .\cookbook\templates\base.html:125 #: .\cookbook\templates\forms\ingredients.html:34 #: .\cookbook\templates\space.html:43 .\cookbook\templates\stats.html:28 -#: .\cookbook\templates\url_import.html:272 +#: .\cookbook\templates\url_import.html:274 msgid "Ingredients" msgstr "Ingredientes" -#: .\cookbook\forms.py:53 +#: .\cookbook\forms.py:54 +#, fuzzy +#| msgid "Default" +msgid "Default unit" +msgstr "Por defecto" + +#: .\cookbook\forms.py:55 +#, fuzzy +#| msgid "System Information" +msgid "Use fractions" +msgstr "Información del Sistema" + +#: .\cookbook\forms.py:56 +msgid "Use KJ" +msgstr "" + +#: .\cookbook\forms.py:57 +msgid "Theme" +msgstr "" + +#: .\cookbook\forms.py:58 +msgid "Navbar color" +msgstr "" + +#: .\cookbook\forms.py:59 +msgid "Sticky navbar" +msgstr "" + +#: .\cookbook\forms.py:60 +#, fuzzy +#| msgid "Default" +msgid "Default page" +msgstr "Por defecto" + +#: .\cookbook\forms.py:61 +#, fuzzy +#| msgid "Shopping Recipes" +msgid "Show recent recipes" +msgstr "Recetas en el carro de la compra" + +#: .\cookbook\forms.py:62 +#, fuzzy +#| msgid "Search" +msgid "Search style" +msgstr "Buscar" + +#: .\cookbook\forms.py:63 +msgid "Plan sharing" +msgstr "" + +#: .\cookbook\forms.py:64 +#, fuzzy +#| msgid "Ingredients" +msgid "Ingredient decimal places" +msgstr "Ingredientes" + +#: .\cookbook\forms.py:65 +#, fuzzy +#| msgid "Shopping list currently empty" +msgid "Shopping list auto sync period" +msgstr "Lista de la compra vacía" + +#: .\cookbook\forms.py:66 .\cookbook\templates\recipe_view.html:21 +#: .\cookbook\templates\space.html:62 .\cookbook\templates\stats.html:47 +msgid "Comments" +msgstr "Comentarios" + +#: .\cookbook\forms.py:70 msgid "" "Color of the top navigation bar. Not all colors work with all themes, just " "try them out!" @@ -40,13 +107,13 @@ msgstr "" "Color de la barra de navegación superior. No todos los colores funcionan con " "todos los temas, ¡pruébalos!" -#: .\cookbook\forms.py:55 +#: .\cookbook\forms.py:72 msgid "Default Unit to be used when inserting a new ingredient into a recipe." msgstr "" "Unidad predeterminada que se utilizará al insertar un nuevo ingrediente en " "una receta." -#: .\cookbook\forms.py:57 +#: .\cookbook\forms.py:74 msgid "" "Enables support for fractions in ingredient amounts (e.g. convert decimals " "to fractions automatically)" @@ -54,11 +121,11 @@ msgstr "" "Permite utilizar fracciones en cantidades de ingredientes (e.g. convierte " "los decimales en fracciones automáticamente)" -#: .\cookbook\forms.py:59 +#: .\cookbook\forms.py:76 msgid "Display nutritional energy amounts in joules instead of calories" msgstr "" -#: .\cookbook\forms.py:61 +#: .\cookbook\forms.py:78 msgid "" "Users with whom newly created meal plan/shopping list entries should be " "shared by default." @@ -66,19 +133,19 @@ msgstr "" "Usuarios con los que las entradas recién creadas del plan de comida/lista de " "la compra deben compartirse de forma predeterminada." -#: .\cookbook\forms.py:63 +#: .\cookbook\forms.py:80 msgid "Show recently viewed recipes on search page." msgstr "Muestra recetas vistas recientemente en la página de búsqueda." -#: .\cookbook\forms.py:64 +#: .\cookbook\forms.py:81 msgid "Number of decimals to round ingredients." msgstr "Número de decimales para redondear los ingredientes." -#: .\cookbook\forms.py:65 +#: .\cookbook\forms.py:82 msgid "If you want to be able to create and see comments underneath recipes." msgstr "Si desea poder crear y ver comentarios debajo de las recetas." -#: .\cookbook\forms.py:67 +#: .\cookbook\forms.py:84 msgid "" "Setting to 0 will disable auto sync. When viewing a shopping list the list " "is updated every set seconds to sync changes someone else might have made. " @@ -92,11 +159,11 @@ msgstr "" "valor establecido es inferior al límite de la instancia, este se " "restablecerá al guardar." -#: .\cookbook\forms.py:70 +#: .\cookbook\forms.py:87 msgid "Makes the navbar stick to the top of the page." msgstr "Hace la barra de navegación fija en la parte superior de la página." -#: .\cookbook\forms.py:86 +#: .\cookbook\forms.py:103 msgid "" "Both fields are optional. If none are given the username will be displayed " "instead" @@ -108,60 +175,60 @@ msgstr "" " \n" " " -#: .\cookbook\forms.py:107 .\cookbook\forms.py:266 -#: .\cookbook\templates\url_import.html:156 +#: .\cookbook\forms.py:124 .\cookbook\forms.py:289 +#: .\cookbook\templates\url_import.html:158 msgid "Name" msgstr "Nombre" -#: .\cookbook\forms.py:108 .\cookbook\forms.py:267 +#: .\cookbook\forms.py:125 .\cookbook\forms.py:290 #: .\cookbook\templates\space.html:39 .\cookbook\templates\stats.html:24 -#: .\cookbook\templates\url_import.html:190 -#: .\cookbook\templates\url_import.html:575 .\cookbook\views\lists.py:112 +#: .\cookbook\templates\url_import.html:192 +#: .\cookbook\templates\url_import.html:578 .\cookbook\views\lists.py:112 msgid "Keywords" msgstr "Palabras clave" -#: .\cookbook\forms.py:109 +#: .\cookbook\forms.py:126 msgid "Preparation time in minutes" msgstr "Tiempo de preparación en minutos" -#: .\cookbook\forms.py:110 +#: .\cookbook\forms.py:127 msgid "Waiting time (cooking/baking) in minutes" msgstr "Tiempo de espera (cocinar/hornear) en minutos" -#: .\cookbook\forms.py:111 .\cookbook\forms.py:268 +#: .\cookbook\forms.py:128 .\cookbook\forms.py:259 .\cookbook\forms.py:291 msgid "Path" msgstr "Ruta" -#: .\cookbook\forms.py:112 +#: .\cookbook\forms.py:129 msgid "Storage UID" msgstr "UID de almacenamiento" -#: .\cookbook\forms.py:140 +#: .\cookbook\forms.py:157 msgid "Default" msgstr "Por defecto" -#: .\cookbook\forms.py:151 .\cookbook\templates\url_import.html:92 +#: .\cookbook\forms.py:168 .\cookbook\templates\url_import.html:94 msgid "" "To prevent duplicates recipes with the same name as existing ones are " "ignored. Check this box to import everything." msgstr "" -#: .\cookbook\forms.py:173 +#: .\cookbook\forms.py:190 msgid "Add your comment: " msgstr "Añada su comentario:" -#: .\cookbook\forms.py:188 +#: .\cookbook\forms.py:205 msgid "Leave empty for dropbox and enter app password for nextcloud." msgstr "" "Déjelo vacío para Dropbox e ingrese la contraseña de la aplicación para " "nextcloud." -#: .\cookbook\forms.py:195 +#: .\cookbook\forms.py:212 msgid "Leave empty for nextcloud and enter api token for dropbox." msgstr "" "Déjelo en blanco para nextcloud e ingrese el token de api para dropbox." -#: .\cookbook\forms.py:204 +#: .\cookbook\forms.py:221 msgid "" "Leave empty for dropbox and enter only base url for nextcloud (/remote." "php/webdav/ is added automatically)" @@ -169,25 +236,33 @@ msgstr "" "Dejar vació para Dropbox e introducir sólo la URL base para Nextcloud " "(/remote.php/webdav/ se añade automáticamente)" -#: .\cookbook\forms.py:242 +#: .\cookbook\forms.py:258 .\cookbook\views\edit.py:166 +msgid "Storage" +msgstr "Almacenamiento" + +#: .\cookbook\forms.py:260 +msgid "Active" +msgstr "" + +#: .\cookbook\forms.py:265 msgid "Search String" msgstr "Cadena de búsqueda" -#: .\cookbook\forms.py:269 +#: .\cookbook\forms.py:292 msgid "File ID" msgstr "ID de Fichero" -#: .\cookbook\forms.py:290 +#: .\cookbook\forms.py:313 msgid "You must provide at least a recipe or a title." msgstr "Debe proporcionar al menos una receta o un título." -#: .\cookbook\forms.py:303 +#: .\cookbook\forms.py:326 msgid "You can list default users to share recipes with in the settings." msgstr "" "Puede enumerar los usuarios predeterminados con los que compartir recetas en " "la configuración." -#: .\cookbook\forms.py:304 +#: .\cookbook\forms.py:327 msgid "" "You can use markdown to format this field. See the docs here" @@ -195,105 +270,105 @@ msgstr "" "Puede utilizar Markdown para formatear este campo. Vea la documentación aqui" -#: .\cookbook\forms.py:329 +#: .\cookbook\forms.py:353 msgid "Maximum number of users for this space reached." msgstr "" -#: .\cookbook\forms.py:335 +#: .\cookbook\forms.py:359 msgid "Email address already taken!" msgstr "" -#: .\cookbook\forms.py:343 +#: .\cookbook\forms.py:367 msgid "" "An email address is not required but if present the invite link will be send " "to the user." msgstr "" -#: .\cookbook\forms.py:358 +#: .\cookbook\forms.py:382 msgid "Name already taken." msgstr "" -#: .\cookbook\forms.py:369 +#: .\cookbook\forms.py:393 msgid "Accept Terms and Privacy" msgstr "" -#: .\cookbook\forms.py:399 +#: .\cookbook\forms.py:425 msgid "" "Determines how fuzzy a search is if it uses trigram similarity matching (e." "g. low values mean more typos are ignored)." msgstr "" -#: .\cookbook\forms.py:407 +#: .\cookbook\forms.py:435 msgid "" "Select type method of search. Click here for " "full desciption of choices." msgstr "" -#: .\cookbook\forms.py:408 +#: .\cookbook\forms.py:436 msgid "" "Use fuzzy matching on units, keywords and ingredients when editing and " "importing recipes." msgstr "" -#: .\cookbook\forms.py:409 +#: .\cookbook\forms.py:438 msgid "" "Fields to search ignoring accents. Selecting this option can improve or " "degrade search quality depending on language" msgstr "" -#: .\cookbook\forms.py:410 +#: .\cookbook\forms.py:440 msgid "" "Fields to search for partial matches. (e.g. searching for 'Pie' will return " "'pie' and 'piece' and 'soapie')" msgstr "" -#: .\cookbook\forms.py:411 +#: .\cookbook\forms.py:442 msgid "" "Fields to search for beginning of word matches. (e.g. searching for 'sa' " "will return 'salad' and 'sandwich')" msgstr "" -#: .\cookbook\forms.py:412 +#: .\cookbook\forms.py:444 msgid "" "Fields to 'fuzzy' search. (e.g. searching for 'recpie' will find 'recipe'.) " "Note: this option will conflict with 'web' and 'raw' methods of search." msgstr "" -#: .\cookbook\forms.py:413 +#: .\cookbook\forms.py:446 msgid "" "Fields to full text search. Note: 'web', 'phrase', and 'raw' search methods " "only function with fulltext fields." msgstr "" -#: .\cookbook\forms.py:417 +#: .\cookbook\forms.py:450 #, fuzzy #| msgid "Search" msgid "Search Method" msgstr "Buscar" -#: .\cookbook\forms.py:418 +#: .\cookbook\forms.py:451 msgid "Fuzzy Lookups" msgstr "" -#: .\cookbook\forms.py:419 +#: .\cookbook\forms.py:452 msgid "Ignore Accent" msgstr "" -#: .\cookbook\forms.py:420 +#: .\cookbook\forms.py:453 msgid "Partial Match" msgstr "" -#: .\cookbook\forms.py:421 +#: .\cookbook\forms.py:454 msgid "Starts Wtih" msgstr "" -#: .\cookbook\forms.py:422 +#: .\cookbook\forms.py:455 #, fuzzy #| msgid "Search" msgid "Fuzzy Search" msgstr "Buscar" -#: .\cookbook\forms.py:423 +#: .\cookbook\forms.py:456 #, fuzzy #| msgid "Text" msgid "Full Text" @@ -316,7 +391,7 @@ msgstr "¡No ha iniciado sesión y por lo tanto no puede ver esta página!" #: .\cookbook\helper\permission_helper.py:216 #: .\cookbook\helper\permission_helper.py:230 #: .\cookbook\helper\permission_helper.py:241 -#: .\cookbook\helper\permission_helper.py:252 .\cookbook\views\data.py:42 +#: .\cookbook\helper\permission_helper.py:252 .\cookbook\views\data.py:47 #: .\cookbook\views\views.py:160 .\cookbook\views\views.py:167 #: .\cookbook\views\views.py:233 msgid "You do not have the required permissions to view this page!" @@ -338,11 +413,11 @@ msgstr "" #: .\cookbook\templates\import_response.html:7 #: .\cookbook\templates\test.html:14 .\cookbook\templates\test.html:20 #: .\cookbook\templates\url_import.html:27 -#: .\cookbook\templates\url_import.html:103 -#: .\cookbook\templates\url_import.html:125 -#: .\cookbook\templates\url_import.html:319 -#: .\cookbook\templates\url_import.html:606 .\cookbook\views\delete.py:89 -#: .\cookbook\views\edit.py:197 +#: .\cookbook\templates\url_import.html:105 +#: .\cookbook\templates\url_import.html:127 +#: .\cookbook\templates\url_import.html:321 +#: .\cookbook\templates\url_import.html:609 .\cookbook\views\delete.py:89 +#: .\cookbook\views\edit.py:200 msgid "Import" msgstr "Importar" @@ -382,14 +457,14 @@ msgstr "Nota" msgid "Nutritional Information" msgstr "Información" -#: .\cookbook\integration\paprika.py:53 +#: .\cookbook\integration\paprika.py:53 .\cookbook\templates\url_import.html:40 msgid "Source" msgstr "" #: .\cookbook\integration\safron.py:23 #: .\cookbook\templates\include\log_cooking.html:16 -#: .\cookbook\templates\url_import.html:226 -#: .\cookbook\templates\url_import.html:457 +#: .\cookbook\templates\url_import.html:228 +#: .\cookbook\templates\url_import.html:459 msgid "Servings" msgstr "Raciones" @@ -457,7 +532,7 @@ msgstr "Buscar" #: .\cookbook\models.py:203 .\cookbook\templates\base.html:82 #: .\cookbook\templates\meal_plan.html:7 #: .\cookbook\templates\meal_plan_new.html:7 .\cookbook\views\delete.py:181 -#: .\cookbook\views\edit.py:217 .\cookbook\views\new.py:180 +#: .\cookbook\views\edit.py:220 .\cookbook\views\new.py:184 msgid "Meal-Plan" msgstr "Régimen de comidas" @@ -482,7 +557,7 @@ msgstr "Nuevo" msgid " is part of a recipe step and cannot be deleted" msgstr "" -#: .\cookbook\models.py:441 +#: .\cookbook\models.py:441 .\cookbook\templates\url_import.html:42 msgid "Text" msgstr "Texto" @@ -490,7 +565,7 @@ msgstr "Texto" msgid "Time" msgstr "Tiempo" -#: .\cookbook\models.py:441 +#: .\cookbook\models.py:441 .\cookbook\templates\url_import.html:44 #, fuzzy #| msgid "File ID" msgid "File" @@ -498,8 +573,8 @@ msgstr "ID de Fichero" #: .\cookbook\models.py:441 #: .\cookbook\templates\include\recipe_open_modal.html:7 -#: .\cookbook\views\delete.py:39 .\cookbook\views\edit.py:257 -#: .\cookbook\views\new.py:52 +#: .\cookbook\views\delete.py:39 .\cookbook\views\edit.py:260 +#: .\cookbook\views\new.py:53 msgid "Recipe" msgstr "Receta" @@ -981,7 +1056,7 @@ msgstr "" "Agregue las palabras clave especificadas a todas las recetas que contengan " "una palabra" -#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:83 +#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:82 msgid "Sync" msgstr "Sincronizar" @@ -1001,6 +1076,18 @@ msgstr "" msgid "The path must be in the following format" msgstr "La ruta debe tener el siguiente formato" +#: .\cookbook\templates\batch\monitor.html:20 +#: .\cookbook\templates\forms\edit_import_recipe.html:14 +#: .\cookbook\templates\generic\edit_template.html:23 +#: .\cookbook\templates\generic\new_template.html:23 +#: .\cookbook\templates\include\log_cooking.html:28 +#: .\cookbook\templates\settings.html:63 .\cookbook\templates\settings.html:105 +#: .\cookbook\templates\settings.html:123 +#: .\cookbook\templates\settings.html:195 +#: .\cookbook\templates\shopping_list.html:360 +msgid "Save" +msgstr "Guardar" + #: .\cookbook\templates\batch\monitor.html:21 msgid "Manage External Storage" msgstr "" @@ -1047,17 +1134,6 @@ msgstr "Exportar recetas" msgid "Import new Recipe" msgstr "Importar nueva receta" -#: .\cookbook\templates\forms\edit_import_recipe.html:14 -#: .\cookbook\templates\generic\edit_template.html:23 -#: .\cookbook\templates\generic\new_template.html:23 -#: .\cookbook\templates\include\log_cooking.html:28 -#: .\cookbook\templates\settings.html:63 .\cookbook\templates\settings.html:105 -#: .\cookbook\templates\settings.html:123 -#: .\cookbook\templates\settings.html:195 -#: .\cookbook\templates\shopping_list.html:360 -msgid "Save" -msgstr "Guardar" - #: .\cookbook\templates\forms\edit_internal_recipe.html:7 msgid "Edit Recipe" msgstr "Editar receta" @@ -1510,33 +1586,28 @@ msgstr "" "porque las has visto recientemente. Ten en cuenta que los datos pueden estar " "desactualizados." -#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\space.html:62 -#: .\cookbook\templates\stats.html:47 -msgid "Comments" -msgstr "Comentarios" - #: .\cookbook\templates\recipe_view.html:26 msgid "by" msgstr "por" #: .\cookbook\templates\recipe_view.html:44 .\cookbook\views\delete.py:147 -#: .\cookbook\views\edit.py:177 +#: .\cookbook\views\edit.py:180 msgid "Comment" msgstr "Comentario" #: .\cookbook\templates\recipes_table.html:19 #: .\cookbook\templates\recipes_table.html:23 -#: .\cookbook\templates\url_import.html:442 +#: .\cookbook\templates\url_import.html:444 msgid "Recipe Image" msgstr "Imagen de la receta" #: .\cookbook\templates\recipes_table.html:51 -#: .\cookbook\templates\url_import.html:447 +#: .\cookbook\templates\url_import.html:449 msgid "Preparation time ca." msgstr "Tiempo de preparación ca." #: .\cookbook\templates\recipes_table.html:57 -#: .\cookbook\templates\url_import.html:452 +#: .\cookbook\templates\url_import.html:454 msgid "Waiting time ca." msgstr "Tiempo de espera ca." @@ -1909,8 +1980,8 @@ msgstr "Seleccionar unidad" #: .\cookbook\templates\shopping_list.html:218 #: .\cookbook\templates\shopping_list.html:248 #: .\cookbook\templates\shopping_list.html:272 -#: .\cookbook\templates\url_import.html:497 -#: .\cookbook\templates\url_import.html:529 +#: .\cookbook\templates\url_import.html:500 +#: .\cookbook\templates\url_import.html:532 msgid "Select" msgstr "Seleccionar" @@ -2240,164 +2311,172 @@ msgstr "" msgid "Bookmark Me!" msgstr "¡Marcador guardado!" -#: .\cookbook\templates\url_import.html:61 +#: .\cookbook\templates\url_import.html:36 +msgid "URL" +msgstr "" + +#: .\cookbook\templates\url_import.html:38 +msgid "App" +msgstr "" + +#: .\cookbook\templates\url_import.html:62 msgid "Enter website URL" msgstr "Introduce la URL del sitio web" -#: .\cookbook\templates\url_import.html:99 +#: .\cookbook\templates\url_import.html:101 msgid "Select recipe files to import or drop them here..." msgstr "" -#: .\cookbook\templates\url_import.html:120 +#: .\cookbook\templates\url_import.html:122 msgid "Paste json or html source here to load recipe." msgstr "" -#: .\cookbook\templates\url_import.html:148 +#: .\cookbook\templates\url_import.html:150 #, fuzzy #| msgid "View Recipe" msgid "Preview Recipe Data" msgstr "Ver la receta" -#: .\cookbook\templates\url_import.html:149 +#: .\cookbook\templates\url_import.html:151 msgid "Drag recipe attributes from the right into the appropriate box below." msgstr "" -#: .\cookbook\templates\url_import.html:158 -#: .\cookbook\templates\url_import.html:175 -#: .\cookbook\templates\url_import.html:192 -#: .\cookbook\templates\url_import.html:211 -#: .\cookbook\templates\url_import.html:229 -#: .\cookbook\templates\url_import.html:244 -#: .\cookbook\templates\url_import.html:259 -#: .\cookbook\templates\url_import.html:275 -#: .\cookbook\templates\url_import.html:302 -#: .\cookbook\templates\url_import.html:353 +#: .\cookbook\templates\url_import.html:160 +#: .\cookbook\templates\url_import.html:177 +#: .\cookbook\templates\url_import.html:194 +#: .\cookbook\templates\url_import.html:213 +#: .\cookbook\templates\url_import.html:231 +#: .\cookbook\templates\url_import.html:246 +#: .\cookbook\templates\url_import.html:261 +#: .\cookbook\templates\url_import.html:277 +#: .\cookbook\templates\url_import.html:304 +#: .\cookbook\templates\url_import.html:355 msgid "Clear Contents" msgstr "" -#: .\cookbook\templates\url_import.html:160 +#: .\cookbook\templates\url_import.html:162 msgid "Text dragged here will be appended to the name." msgstr "" -#: .\cookbook\templates\url_import.html:173 +#: .\cookbook\templates\url_import.html:175 msgid "Description" msgstr "Descripción" -#: .\cookbook\templates\url_import.html:177 +#: .\cookbook\templates\url_import.html:179 msgid "Text dragged here will be appended to the description." msgstr "" -#: .\cookbook\templates\url_import.html:194 +#: .\cookbook\templates\url_import.html:196 msgid "Keywords dragged here will be appended to current list" msgstr "" -#: .\cookbook\templates\url_import.html:209 +#: .\cookbook\templates\url_import.html:211 msgid "Image" msgstr "" -#: .\cookbook\templates\url_import.html:241 +#: .\cookbook\templates\url_import.html:243 #, fuzzy #| msgid "Preparation Time" msgid "Prep Time" msgstr "Tiempo de Preparación" -#: .\cookbook\templates\url_import.html:256 +#: .\cookbook\templates\url_import.html:258 #, fuzzy #| msgid "Time" msgid "Cook Time" msgstr "Tiempo" -#: .\cookbook\templates\url_import.html:277 +#: .\cookbook\templates\url_import.html:279 msgid "Ingredients dragged here will be appended to current list." msgstr "" -#: .\cookbook\templates\url_import.html:299 -#: .\cookbook\templates\url_import.html:569 +#: .\cookbook\templates\url_import.html:301 +#: .\cookbook\templates\url_import.html:572 msgid "Instructions" msgstr "Instrucciones" -#: .\cookbook\templates\url_import.html:304 +#: .\cookbook\templates\url_import.html:306 msgid "" "Recipe instructions dragged here will be appended to current instructions." msgstr "" -#: .\cookbook\templates\url_import.html:327 +#: .\cookbook\templates\url_import.html:329 #, fuzzy #| msgid "Discovered Recipes" msgid "Discovered Attributes" msgstr "Recetas Descubiertas" -#: .\cookbook\templates\url_import.html:329 +#: .\cookbook\templates\url_import.html:331 msgid "" "Drag recipe attributes from below into the appropriate box on the left. " "Click any node to display its full properties." msgstr "" -#: .\cookbook\templates\url_import.html:346 +#: .\cookbook\templates\url_import.html:348 #, fuzzy #| msgid "Show as header" msgid "Show Blank Field" msgstr "Mostrar como encabezado" -#: .\cookbook\templates\url_import.html:351 +#: .\cookbook\templates\url_import.html:353 msgid "Blank Field" msgstr "" -#: .\cookbook\templates\url_import.html:355 +#: .\cookbook\templates\url_import.html:357 msgid "Items dragged to Blank Field will be appended." msgstr "" -#: .\cookbook\templates\url_import.html:402 +#: .\cookbook\templates\url_import.html:404 #, fuzzy #| msgid "Delete Step" msgid "Delete Text" msgstr "Eliminar paso" -#: .\cookbook\templates\url_import.html:415 +#: .\cookbook\templates\url_import.html:417 #, fuzzy #| msgid "Delete Recipe" msgid "Delete image" msgstr "Eliminar receta" -#: .\cookbook\templates\url_import.html:431 +#: .\cookbook\templates\url_import.html:433 msgid "Recipe Name" msgstr "Nombre de la Receta" -#: .\cookbook\templates\url_import.html:435 +#: .\cookbook\templates\url_import.html:437 #, fuzzy #| msgid "Description" msgid "Recipe Description" msgstr "Descripción" -#: .\cookbook\templates\url_import.html:496 -#: .\cookbook\templates\url_import.html:528 -#: .\cookbook\templates\url_import.html:584 +#: .\cookbook\templates\url_import.html:499 +#: .\cookbook\templates\url_import.html:531 +#: .\cookbook\templates\url_import.html:587 msgid "Select one" msgstr "Seleccione uno" -#: .\cookbook\templates\url_import.html:544 +#: .\cookbook\templates\url_import.html:547 msgid "Note" msgstr "Nota" -#: .\cookbook\templates\url_import.html:585 +#: .\cookbook\templates\url_import.html:588 #, fuzzy #| msgid "All Keywords" msgid "Add Keyword" msgstr "Todas las palabras clave." -#: .\cookbook\templates\url_import.html:598 +#: .\cookbook\templates\url_import.html:601 msgid "All Keywords" msgstr "Todas las palabras clave." -#: .\cookbook\templates\url_import.html:601 +#: .\cookbook\templates\url_import.html:604 msgid "Import all keywords, not only the ones already existing." msgstr "Importar todas las palabras clave, no solo las ya existentes." -#: .\cookbook\templates\url_import.html:628 +#: .\cookbook\templates\url_import.html:631 msgid "Information" msgstr "Información" -#: .\cookbook\templates\url_import.html:630 +#: .\cookbook\templates\url_import.html:633 msgid "" " Only websites containing ld+json or microdata information can currently\n" " be imported. Most big recipe pages " @@ -2416,109 +2495,112 @@ msgstr "" "no dudes en poner un ejemplo en las\n" " propuestas de GitHub." -#: .\cookbook\templates\url_import.html:638 +#: .\cookbook\templates\url_import.html:641 msgid "Google ld+json Info" msgstr "Información de Google ld+json" -#: .\cookbook\templates\url_import.html:641 +#: .\cookbook\templates\url_import.html:644 msgid "GitHub Issues" msgstr "Propuestas de GitHub" -#: .\cookbook\templates\url_import.html:643 +#: .\cookbook\templates\url_import.html:646 msgid "Recipe Markup Specification" msgstr "Especificación de anotaciones de la receta" -#: .\cookbook\views\api.py:82 .\cookbook\views\api.py:131 +#: .\cookbook\views\api.py:83 .\cookbook\views\api.py:132 #, fuzzy #| msgid "Parameter filter_list incorrectly formatted" msgid "Parameter updated_at incorrectly formatted" msgstr "Parámetro filter_list formateado incorrectamente" -#: .\cookbook\views\api.py:151 +#: .\cookbook\views\api.py:152 #, python-brace-format msgid "No {self.basename} with id {pk} exists" msgstr "" -#: .\cookbook\views\api.py:155 +#: .\cookbook\views\api.py:156 msgid "Cannot merge with the same object!" msgstr "¡No se puede unir con el mismo objeto!" -#: .\cookbook\views\api.py:162 +#: .\cookbook\views\api.py:163 #, python-brace-format msgid "No {self.basename} with id {target} exists" msgstr "" -#: .\cookbook\views\api.py:167 +#: .\cookbook\views\api.py:168 #, fuzzy #| msgid "Cannot merge with the same object!" msgid "Cannot merge with child object!" msgstr "¡No se puede unir con el mismo objeto!" -#: .\cookbook\views\api.py:200 +#: .\cookbook\views\api.py:201 #, python-brace-format msgid "{source.name} was merged successfully with {target.name}" msgstr "" -#: .\cookbook\views\api.py:204 +#: .\cookbook\views\api.py:205 #, python-brace-format msgid "An error occurred attempting to merge {source.name} with {target.name}" msgstr "" -#: .\cookbook\views\api.py:248 +#: .\cookbook\views\api.py:249 #, python-brace-format msgid "No {self.basename} with id {child} exists" msgstr "" -#: .\cookbook\views\api.py:257 +#: .\cookbook\views\api.py:258 #, python-brace-format msgid "{child.name} was moved successfully to the root." msgstr "" -#: .\cookbook\views\api.py:260 .\cookbook\views\api.py:278 +#: .\cookbook\views\api.py:261 .\cookbook\views\api.py:279 msgid "An error occurred attempting to move " msgstr "" -#: .\cookbook\views\api.py:263 +#: .\cookbook\views\api.py:264 msgid "Cannot move an object to itself!" msgstr "" -#: .\cookbook\views\api.py:269 +#: .\cookbook\views\api.py:270 #, python-brace-format msgid "No {self.basename} with id {parent} exists" msgstr "" -#: .\cookbook\views\api.py:275 +#: .\cookbook\views\api.py:276 #, python-brace-format msgid "{child.name} was moved successfully to parent {parent.name}" msgstr "" -#: .\cookbook\views\api.py:723 .\cookbook\views\views.py:277 -msgid "This feature is not available in the demo version!" +#: .\cookbook\views\api.py:723 .\cookbook\views\data.py:42 +#: .\cookbook\views\edit.py:129 .\cookbook\views\new.py:95 +#, fuzzy +#| msgid "This feature is not available in the demo version!" +msgid "This feature is not yet available in the hosted version of tandoor!" msgstr "¡Esta funcionalidad no está disponible en la versión demo!" -#: .\cookbook\views\api.py:746 +#: .\cookbook\views\api.py:745 msgid "Sync successful!" msgstr "¡Sincronización exitosa!" -#: .\cookbook\views\api.py:751 +#: .\cookbook\views\api.py:750 msgid "Error synchronizing with Storage" msgstr "Error de sincronización con el almacenamiento" -#: .\cookbook\views\api.py:829 +#: .\cookbook\views\api.py:828 msgid "Nothing to do." msgstr "" -#: .\cookbook\views\api.py:844 +#: .\cookbook\views\api.py:843 msgid "The requested site provided malformed data and cannot be read." msgstr "" "El sitio solicitado proporcionó datos con formato incorrecto y no se puede " "leer." -#: .\cookbook\views\api.py:851 +#: .\cookbook\views\api.py:850 msgid "The requested page could not be found." msgstr "La página solicitada no pudo ser encontrada." -#: .\cookbook\views\api.py:860 +#: .\cookbook\views\api.py:859 msgid "" "The requested site does not provide any recognized data format to import the " "recipe from." @@ -2526,29 +2608,29 @@ msgstr "" "El sitio solicitado no proporciona ningún formato de datos reconocido para " "importar la receta." -#: .\cookbook\views\api.py:874 +#: .\cookbook\views\api.py:873 #, fuzzy #| msgid "The requested page could not be found." msgid "No useable data could be found." msgstr "La página solicitada no pudo ser encontrada." -#: .\cookbook\views\api.py:890 +#: .\cookbook\views\api.py:889 msgid "I couldn't find anything to do." msgstr "" -#: .\cookbook\views\data.py:33 .\cookbook\views\data.py:124 -#: .\cookbook\views\edit.py:50 .\cookbook\views\import_export.py:73 -#: .\cookbook\views\new.py:32 +#: .\cookbook\views\data.py:34 .\cookbook\views\data.py:129 +#: .\cookbook\views\edit.py:49 .\cookbook\views\import_export.py:73 +#: .\cookbook\views\new.py:33 msgid "You have reached the maximum number of recipes for your space." msgstr "" -#: .\cookbook\views\data.py:37 .\cookbook\views\data.py:128 -#: .\cookbook\views\edit.py:54 .\cookbook\views\import_export.py:77 -#: .\cookbook\views\new.py:36 +#: .\cookbook\views\data.py:38 .\cookbook\views\data.py:133 +#: .\cookbook\views\edit.py:53 .\cookbook\views\import_export.py:77 +#: .\cookbook\views\new.py:37 msgid "You have more users than allowed in your space." msgstr "" -#: .\cookbook\views\data.py:106 +#: .\cookbook\views\data.py:111 #, python-format msgid "Batch edit done. %(count)d recipe was updated." msgid_plural "Batch edit done. %(count)d Recipes where updated." @@ -2560,7 +2642,7 @@ msgid "Monitor" msgstr "Monitor" #: .\cookbook\views\delete.py:125 .\cookbook\views\lists.py:86 -#: .\cookbook\views\new.py:97 +#: .\cookbook\views\new.py:101 msgid "Storage Backend" msgstr "Backend de Almacenamiento" @@ -2579,31 +2661,27 @@ msgstr "Libro de recetas" msgid "Bookmarks" msgstr "Marcadores" -#: .\cookbook\views\delete.py:192 .\cookbook\views\new.py:231 +#: .\cookbook\views\delete.py:192 .\cookbook\views\new.py:235 msgid "Invite Link" msgstr "Enlace de invitación" -#: .\cookbook\views\edit.py:126 +#: .\cookbook\views\edit.py:125 msgid "You cannot edit this storage!" msgstr "¡No puede editar este almacenamiento!" -#: .\cookbook\views\edit.py:146 +#: .\cookbook\views\edit.py:149 msgid "Storage saved!" msgstr "¡Almacenamiento guardado!" -#: .\cookbook\views\edit.py:152 +#: .\cookbook\views\edit.py:155 msgid "There was an error updating this storage backend!" msgstr "¡Hubo un error al actualizar este backend de almacenamiento!" -#: .\cookbook\views\edit.py:163 -msgid "Storage" -msgstr "Almacenamiento" - -#: .\cookbook\views\edit.py:245 +#: .\cookbook\views\edit.py:248 msgid "Changes saved!" msgstr "¡Cambios guardados!" -#: .\cookbook\views\edit.py:249 +#: .\cookbook\views\edit.py:252 msgid "Error saving changes!" msgstr "¡Error al guardar los cambios!" @@ -2651,59 +2729,59 @@ msgstr "Recetas en el carro de la compra" msgid "New Shopping List" msgstr "Lista de la Compra" -#: .\cookbook\views\new.py:122 +#: .\cookbook\views\new.py:126 msgid "Imported new recipe!" msgstr "¡Nueva receta importada!" -#: .\cookbook\views\new.py:125 +#: .\cookbook\views\new.py:129 msgid "There was an error importing this recipe!" msgstr "¡Hubo un error al importar esta receta!" -#: .\cookbook\views\new.py:205 +#: .\cookbook\views\new.py:209 msgid "Hello" msgstr "" -#: .\cookbook\views\new.py:205 +#: .\cookbook\views\new.py:209 msgid "You have been invited by " msgstr "" -#: .\cookbook\views\new.py:206 +#: .\cookbook\views\new.py:210 msgid " to join their Tandoor Recipes space " msgstr "" -#: .\cookbook\views\new.py:207 +#: .\cookbook\views\new.py:211 msgid "Click the following link to activate your account: " msgstr "" -#: .\cookbook\views\new.py:208 +#: .\cookbook\views\new.py:212 msgid "" "If the link does not work use the following code to manually join the space: " msgstr "" -#: .\cookbook\views\new.py:209 +#: .\cookbook\views\new.py:213 msgid "The invitation is valid until " msgstr "" -#: .\cookbook\views\new.py:210 +#: .\cookbook\views\new.py:214 msgid "" "Tandoor Recipes is an Open Source recipe manager. Check it out on GitHub " msgstr "" -#: .\cookbook\views\new.py:213 +#: .\cookbook\views\new.py:217 msgid "Tandoor Recipes Invite" msgstr "" -#: .\cookbook\views\new.py:220 +#: .\cookbook\views\new.py:224 msgid "Invite link successfully send to user." msgstr "" -#: .\cookbook\views\new.py:223 +#: .\cookbook\views\new.py:227 msgid "" "You have send to many emails, please share the link manually or wait a few " "hours." msgstr "" -#: .\cookbook\views\new.py:225 +#: .\cookbook\views\new.py:229 msgid "Email to user could not be send, please share link manually." msgstr "" @@ -2721,6 +2799,10 @@ msgstr "¡No tienes los permisos necesarios para realizar esta acción!" msgid "Comment saved!" msgstr "¡Comentario guardado!" +#: .\cookbook\views\views.py:277 +msgid "This feature is not available in the demo version!" +msgstr "¡Esta funcionalidad no está disponible en la versión demo!" + #: .\cookbook\views\views.py:340 msgid "You must select at least one field to search!" msgstr "" @@ -2830,9 +2912,6 @@ msgstr "" #~ msgid "Create only note" #~ msgstr "Crear sólo una nota" -#~ msgid "Shopping list currently empty" -#~ msgstr "Lista de la compra vacía" - #~ msgid "Plan" #~ msgstr "Menú" diff --git a/cookbook/locale/fr/LC_MESSAGES/django.po b/cookbook/locale/fr/LC_MESSAGES/django.po index 7410da37a..17e3bee1b 100644 --- a/cookbook/locale/fr/LC_MESSAGES/django.po +++ b/cookbook/locale/fr/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-04 14:56+0100\n" +"POT-Creation-Date: 2021-11-07 17:31+0100\n" "PO-Revision-Date: 2021-11-04 09:06+0000\n" "Last-Translator: FrenchAnon \n" "Language-Team: French /remote." "php/webdav/ is added automatically)" @@ -169,25 +236,33 @@ msgstr "" "Laisser vide pour Dropbox et saisissez seulement l'URL de base pour " "Nextcloud (/remote.php/webdav/ est ajouté automatiquement)" -#: .\cookbook\forms.py:242 +#: .\cookbook\forms.py:258 .\cookbook\views\edit.py:166 +msgid "Storage" +msgstr "Stockage" + +#: .\cookbook\forms.py:260 +msgid "Active" +msgstr "" + +#: .\cookbook\forms.py:265 msgid "Search String" msgstr "Texte recherché" -#: .\cookbook\forms.py:269 +#: .\cookbook\forms.py:292 msgid "File ID" msgstr "ID du fichier" -#: .\cookbook\forms.py:290 +#: .\cookbook\forms.py:313 msgid "You must provide at least a recipe or a title." msgstr "Vous devez au moins fournir une recette ou un titre." -#: .\cookbook\forms.py:303 +#: .\cookbook\forms.py:326 msgid "You can list default users to share recipes with in the settings." msgstr "" "Vous pouvez lister les utilisateurs par défaut avec qui partager des " "recettes dans les paramètres." -#: .\cookbook\forms.py:304 +#: .\cookbook\forms.py:327 msgid "" "You can use markdown to format this field. See the docs here" @@ -195,15 +270,15 @@ msgstr "" "Vous pouvez utiliser du markdown pour mettre en forme ce champ. Voir la documentation ici" -#: .\cookbook\forms.py:329 +#: .\cookbook\forms.py:353 msgid "Maximum number of users for this space reached." msgstr "Nombre maximum d'utilisateurs atteint pour ce groupe." -#: .\cookbook\forms.py:335 +#: .\cookbook\forms.py:359 msgid "Email address already taken!" msgstr "Adresse mail déjà utilisée !" -#: .\cookbook\forms.py:343 +#: .\cookbook\forms.py:367 msgid "" "An email address is not required but if present the invite link will be send " "to the user." @@ -211,91 +286,91 @@ msgstr "" "Une adresse mail n'est pas requise mais le lien d'invitation sera envoyé à " "l'utilisateur si elle est présente." -#: .\cookbook\forms.py:358 +#: .\cookbook\forms.py:382 msgid "Name already taken." msgstr "Nom déjà pris." -#: .\cookbook\forms.py:369 +#: .\cookbook\forms.py:393 msgid "Accept Terms and Privacy" msgstr "Accepter les conditions d'utilisation" -#: .\cookbook\forms.py:399 +#: .\cookbook\forms.py:425 msgid "" "Determines how fuzzy a search is if it uses trigram similarity matching (e." "g. low values mean more typos are ignored)." msgstr "" -#: .\cookbook\forms.py:407 +#: .\cookbook\forms.py:435 msgid "" "Select type method of search. Click here for " "full desciption of choices." msgstr "" -#: .\cookbook\forms.py:408 +#: .\cookbook\forms.py:436 msgid "" "Use fuzzy matching on units, keywords and ingredients when editing and " "importing recipes." msgstr "" -#: .\cookbook\forms.py:409 +#: .\cookbook\forms.py:438 msgid "" "Fields to search ignoring accents. Selecting this option can improve or " "degrade search quality depending on language" msgstr "" -#: .\cookbook\forms.py:410 +#: .\cookbook\forms.py:440 msgid "" "Fields to search for partial matches. (e.g. searching for 'Pie' will return " "'pie' and 'piece' and 'soapie')" msgstr "" -#: .\cookbook\forms.py:411 +#: .\cookbook\forms.py:442 msgid "" "Fields to search for beginning of word matches. (e.g. searching for 'sa' " "will return 'salad' and 'sandwich')" msgstr "" -#: .\cookbook\forms.py:412 +#: .\cookbook\forms.py:444 msgid "" "Fields to 'fuzzy' search. (e.g. searching for 'recpie' will find 'recipe'.) " "Note: this option will conflict with 'web' and 'raw' methods of search." msgstr "" -#: .\cookbook\forms.py:413 +#: .\cookbook\forms.py:446 msgid "" "Fields to full text search. Note: 'web', 'phrase', and 'raw' search methods " "only function with fulltext fields." msgstr "" -#: .\cookbook\forms.py:417 +#: .\cookbook\forms.py:450 #, fuzzy #| msgid "Search" msgid "Search Method" msgstr "Rechercher" -#: .\cookbook\forms.py:418 +#: .\cookbook\forms.py:451 msgid "Fuzzy Lookups" msgstr "" -#: .\cookbook\forms.py:419 +#: .\cookbook\forms.py:452 msgid "Ignore Accent" msgstr "" -#: .\cookbook\forms.py:420 +#: .\cookbook\forms.py:453 msgid "Partial Match" msgstr "correspondance partielle" -#: .\cookbook\forms.py:421 +#: .\cookbook\forms.py:454 msgid "Starts Wtih" msgstr "Commence par" -#: .\cookbook\forms.py:422 +#: .\cookbook\forms.py:455 #, fuzzy #| msgid "Search" msgid "Fuzzy Search" msgstr "Rechercher" -#: .\cookbook\forms.py:423 +#: .\cookbook\forms.py:456 #, fuzzy #| msgid "Text" msgid "Full Text" @@ -320,7 +395,7 @@ msgstr "Vous n'êtes pas connecté et ne pouvez donc pas afficher cette page !" #: .\cookbook\helper\permission_helper.py:216 #: .\cookbook\helper\permission_helper.py:230 #: .\cookbook\helper\permission_helper.py:241 -#: .\cookbook\helper\permission_helper.py:252 .\cookbook\views\data.py:42 +#: .\cookbook\helper\permission_helper.py:252 .\cookbook\views\data.py:47 #: .\cookbook\views\views.py:160 .\cookbook\views\views.py:167 #: .\cookbook\views\views.py:233 msgid "You do not have the required permissions to view this page!" @@ -344,11 +419,11 @@ msgstr "Le code du modèle n'a pas pu être analysé." #: .\cookbook\templates\import_response.html:7 #: .\cookbook\templates\test.html:14 .\cookbook\templates\test.html:20 #: .\cookbook\templates\url_import.html:27 -#: .\cookbook\templates\url_import.html:103 -#: .\cookbook\templates\url_import.html:125 -#: .\cookbook\templates\url_import.html:319 -#: .\cookbook\templates\url_import.html:606 .\cookbook\views\delete.py:89 -#: .\cookbook\views\edit.py:197 +#: .\cookbook\templates\url_import.html:105 +#: .\cookbook\templates\url_import.html:127 +#: .\cookbook\templates\url_import.html:321 +#: .\cookbook\templates\url_import.html:609 .\cookbook\views\delete.py:89 +#: .\cookbook\views\edit.py:200 msgid "Import" msgstr "Importer" @@ -385,14 +460,14 @@ msgstr "Notes" msgid "Nutritional Information" msgstr "Informations nutritionnelles" -#: .\cookbook\integration\paprika.py:53 +#: .\cookbook\integration\paprika.py:53 .\cookbook\templates\url_import.html:40 msgid "Source" msgstr "Source" #: .\cookbook\integration\safron.py:23 #: .\cookbook\templates\include\log_cooking.html:16 -#: .\cookbook\templates\url_import.html:226 -#: .\cookbook\templates\url_import.html:457 +#: .\cookbook\templates\url_import.html:228 +#: .\cookbook\templates\url_import.html:459 msgid "Servings" msgstr "Portions" @@ -462,7 +537,7 @@ msgstr "Rechercher" #: .\cookbook\models.py:203 .\cookbook\templates\base.html:82 #: .\cookbook\templates\meal_plan.html:7 #: .\cookbook\templates\meal_plan_new.html:7 .\cookbook\views\delete.py:181 -#: .\cookbook\views\edit.py:217 .\cookbook\views\new.py:180 +#: .\cookbook\views\edit.py:220 .\cookbook\views\new.py:184 msgid "Meal-Plan" msgstr "Menu de la semaine" @@ -487,7 +562,7 @@ msgstr "Nouveau/Nouvelle" msgid " is part of a recipe step and cannot be deleted" msgstr "" -#: .\cookbook\models.py:441 +#: .\cookbook\models.py:441 .\cookbook\templates\url_import.html:42 msgid "Text" msgstr "Texte" @@ -495,14 +570,14 @@ msgstr "Texte" msgid "Time" msgstr "Temps" -#: .\cookbook\models.py:441 +#: .\cookbook\models.py:441 .\cookbook\templates\url_import.html:44 msgid "File" msgstr "Fichier" #: .\cookbook\models.py:441 #: .\cookbook\templates\include\recipe_open_modal.html:7 -#: .\cookbook\views\delete.py:39 .\cookbook\views\edit.py:257 -#: .\cookbook\views\new.py:52 +#: .\cookbook\views\delete.py:39 .\cookbook\views\edit.py:260 +#: .\cookbook\views\new.py:53 msgid "Recipe" msgstr "Recette" @@ -972,7 +1047,7 @@ msgstr "Modifier en masse les recettes" msgid "Add the specified keywords to all recipes containing a word" msgstr "Ajouter les mots-clés spécifiés à toutes les recettes contenant un mot" -#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:83 +#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:82 msgid "Sync" msgstr "Synchro" @@ -992,6 +1067,18 @@ msgstr "" msgid "The path must be in the following format" msgstr "Le chemin doit être au format suivant" +#: .\cookbook\templates\batch\monitor.html:20 +#: .\cookbook\templates\forms\edit_import_recipe.html:14 +#: .\cookbook\templates\generic\edit_template.html:23 +#: .\cookbook\templates\generic\new_template.html:23 +#: .\cookbook\templates\include\log_cooking.html:28 +#: .\cookbook\templates\settings.html:63 .\cookbook\templates\settings.html:105 +#: .\cookbook\templates\settings.html:123 +#: .\cookbook\templates\settings.html:195 +#: .\cookbook\templates\shopping_list.html:360 +msgid "Save" +msgstr "Sauvegarder" + #: .\cookbook\templates\batch\monitor.html:21 #, fuzzy #| msgid "Manage Email Settings" @@ -1040,17 +1127,6 @@ msgstr "Exporter des ecettes" msgid "Import new Recipe" msgstr "Importer une nouvelle recette" -#: .\cookbook\templates\forms\edit_import_recipe.html:14 -#: .\cookbook\templates\generic\edit_template.html:23 -#: .\cookbook\templates\generic\new_template.html:23 -#: .\cookbook\templates\include\log_cooking.html:28 -#: .\cookbook\templates\settings.html:63 .\cookbook\templates\settings.html:105 -#: .\cookbook\templates\settings.html:123 -#: .\cookbook\templates\settings.html:195 -#: .\cookbook\templates\shopping_list.html:360 -msgid "Save" -msgstr "Sauvegarder" - #: .\cookbook\templates\forms\edit_internal_recipe.html:7 msgid "Edit Recipe" msgstr "Modifier une recette" @@ -1501,33 +1577,28 @@ msgstr "" "avez récemment regardées. Gardez à l'esprit que les données peuvent avoir " "été modifiées depuis." -#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\space.html:62 -#: .\cookbook\templates\stats.html:47 -msgid "Comments" -msgstr "Commentaires" - #: .\cookbook\templates\recipe_view.html:26 msgid "by" msgstr "par" #: .\cookbook\templates\recipe_view.html:44 .\cookbook\views\delete.py:147 -#: .\cookbook\views\edit.py:177 +#: .\cookbook\views\edit.py:180 msgid "Comment" msgstr "Commentaire" #: .\cookbook\templates\recipes_table.html:19 #: .\cookbook\templates\recipes_table.html:23 -#: .\cookbook\templates\url_import.html:442 +#: .\cookbook\templates\url_import.html:444 msgid "Recipe Image" msgstr "Image de la recette" #: .\cookbook\templates\recipes_table.html:51 -#: .\cookbook\templates\url_import.html:447 +#: .\cookbook\templates\url_import.html:449 msgid "Preparation time ca." msgstr "Temps moyen de préparation" #: .\cookbook\templates\recipes_table.html:57 -#: .\cookbook\templates\url_import.html:452 +#: .\cookbook\templates\url_import.html:454 msgid "Waiting time ca." msgstr "Temps moyen d'attente" @@ -1890,8 +1961,8 @@ msgstr "Sélectionnez l'unité" #: .\cookbook\templates\shopping_list.html:218 #: .\cookbook\templates\shopping_list.html:248 #: .\cookbook\templates\shopping_list.html:272 -#: .\cookbook\templates\url_import.html:497 -#: .\cookbook\templates\url_import.html:529 +#: .\cookbook\templates\url_import.html:500 +#: .\cookbook\templates\url_import.html:532 msgid "Select" msgstr "Sélectionner" @@ -2202,90 +2273,98 @@ msgstr "" msgid "Bookmark Me!" msgstr "Mettez-moi en favori !" -#: .\cookbook\templates\url_import.html:61 +#: .\cookbook\templates\url_import.html:36 +msgid "URL" +msgstr "" + +#: .\cookbook\templates\url_import.html:38 +msgid "App" +msgstr "" + +#: .\cookbook\templates\url_import.html:62 msgid "Enter website URL" msgstr "Saisissez l'URL du site web" -#: .\cookbook\templates\url_import.html:99 +#: .\cookbook\templates\url_import.html:101 msgid "Select recipe files to import or drop them here..." msgstr "Sélectionnez des fichiers de recettes à importer ou glissez-les ici…" -#: .\cookbook\templates\url_import.html:120 +#: .\cookbook\templates\url_import.html:122 msgid "Paste json or html source here to load recipe." msgstr "Collez une source json ou html pour charger la recette." -#: .\cookbook\templates\url_import.html:148 +#: .\cookbook\templates\url_import.html:150 msgid "Preview Recipe Data" msgstr "Prévisualiser les informations de la recette" -#: .\cookbook\templates\url_import.html:149 +#: .\cookbook\templates\url_import.html:151 msgid "Drag recipe attributes from the right into the appropriate box below." msgstr "" "Glissez les attributs de la recette depuis la droite dans la boîte " "appropriée ci-dessous." -#: .\cookbook\templates\url_import.html:158 -#: .\cookbook\templates\url_import.html:175 -#: .\cookbook\templates\url_import.html:192 -#: .\cookbook\templates\url_import.html:211 -#: .\cookbook\templates\url_import.html:229 -#: .\cookbook\templates\url_import.html:244 -#: .\cookbook\templates\url_import.html:259 -#: .\cookbook\templates\url_import.html:275 -#: .\cookbook\templates\url_import.html:302 -#: .\cookbook\templates\url_import.html:353 +#: .\cookbook\templates\url_import.html:160 +#: .\cookbook\templates\url_import.html:177 +#: .\cookbook\templates\url_import.html:194 +#: .\cookbook\templates\url_import.html:213 +#: .\cookbook\templates\url_import.html:231 +#: .\cookbook\templates\url_import.html:246 +#: .\cookbook\templates\url_import.html:261 +#: .\cookbook\templates\url_import.html:277 +#: .\cookbook\templates\url_import.html:304 +#: .\cookbook\templates\url_import.html:355 msgid "Clear Contents" msgstr "Effacer le contenu" -#: .\cookbook\templates\url_import.html:160 +#: .\cookbook\templates\url_import.html:162 msgid "Text dragged here will be appended to the name." msgstr "Le texte glissé ici sera ajouté au nom." -#: .\cookbook\templates\url_import.html:173 +#: .\cookbook\templates\url_import.html:175 msgid "Description" msgstr "Description" -#: .\cookbook\templates\url_import.html:177 +#: .\cookbook\templates\url_import.html:179 msgid "Text dragged here will be appended to the description." msgstr "Le texte glissé ici sera ajouté à la description." -#: .\cookbook\templates\url_import.html:194 +#: .\cookbook\templates\url_import.html:196 msgid "Keywords dragged here will be appended to current list" msgstr "Les mots-clés ajoutés ici seront ajoutés à la liste actuelle" -#: .\cookbook\templates\url_import.html:209 +#: .\cookbook\templates\url_import.html:211 msgid "Image" msgstr "Image" -#: .\cookbook\templates\url_import.html:241 +#: .\cookbook\templates\url_import.html:243 msgid "Prep Time" msgstr "Temps de préparation" -#: .\cookbook\templates\url_import.html:256 +#: .\cookbook\templates\url_import.html:258 msgid "Cook Time" msgstr "Temps de cuisson" -#: .\cookbook\templates\url_import.html:277 +#: .\cookbook\templates\url_import.html:279 msgid "Ingredients dragged here will be appended to current list." msgstr "Les ingrédients glissés ici seront ajoutés à la liste actuelle." -#: .\cookbook\templates\url_import.html:299 -#: .\cookbook\templates\url_import.html:569 +#: .\cookbook\templates\url_import.html:301 +#: .\cookbook\templates\url_import.html:572 msgid "Instructions" msgstr "Instructions" -#: .\cookbook\templates\url_import.html:304 +#: .\cookbook\templates\url_import.html:306 msgid "" "Recipe instructions dragged here will be appended to current instructions." msgstr "" "Les instructions de recette glissés ici seront ajoutés aux instructions " "actuelles." -#: .\cookbook\templates\url_import.html:327 +#: .\cookbook\templates\url_import.html:329 msgid "Discovered Attributes" msgstr "Attributs découverts" -#: .\cookbook\templates\url_import.html:329 +#: .\cookbook\templates\url_import.html:331 msgid "" "Drag recipe attributes from below into the appropriate box on the left. " "Click any node to display its full properties." @@ -2293,61 +2372,61 @@ msgstr "" "Glissez les attributs de recettes d'en-dessous vers la boîte appropriée à " "gauche. Cliquez sur un nœud pour voir toutes ses propriétés." -#: .\cookbook\templates\url_import.html:346 +#: .\cookbook\templates\url_import.html:348 msgid "Show Blank Field" msgstr "Afficher un champ vierge" -#: .\cookbook\templates\url_import.html:351 +#: .\cookbook\templates\url_import.html:353 msgid "Blank Field" msgstr "Champ vierge" -#: .\cookbook\templates\url_import.html:355 +#: .\cookbook\templates\url_import.html:357 msgid "Items dragged to Blank Field will be appended." msgstr "Les objets glissés dans le champ vierge seront ajoutés." -#: .\cookbook\templates\url_import.html:402 +#: .\cookbook\templates\url_import.html:404 msgid "Delete Text" msgstr "Supprimer le texte" -#: .\cookbook\templates\url_import.html:415 +#: .\cookbook\templates\url_import.html:417 msgid "Delete image" msgstr "Supprimer l'image" -#: .\cookbook\templates\url_import.html:431 +#: .\cookbook\templates\url_import.html:433 msgid "Recipe Name" msgstr "Nom de la recette" -#: .\cookbook\templates\url_import.html:435 +#: .\cookbook\templates\url_import.html:437 msgid "Recipe Description" msgstr "Description de la recette" -#: .\cookbook\templates\url_import.html:496 -#: .\cookbook\templates\url_import.html:528 -#: .\cookbook\templates\url_import.html:584 +#: .\cookbook\templates\url_import.html:499 +#: .\cookbook\templates\url_import.html:531 +#: .\cookbook\templates\url_import.html:587 msgid "Select one" msgstr "Faites votre choix" -#: .\cookbook\templates\url_import.html:544 +#: .\cookbook\templates\url_import.html:547 msgid "Note" msgstr "Notes" -#: .\cookbook\templates\url_import.html:585 +#: .\cookbook\templates\url_import.html:588 msgid "Add Keyword" msgstr "Ajouter un mot-clé" -#: .\cookbook\templates\url_import.html:598 +#: .\cookbook\templates\url_import.html:601 msgid "All Keywords" msgstr "Tous les mots-clés" -#: .\cookbook\templates\url_import.html:601 +#: .\cookbook\templates\url_import.html:604 msgid "Import all keywords, not only the ones already existing." msgstr "Importer tous les mots-clés, pas uniquement ceux déjà existant." -#: .\cookbook\templates\url_import.html:628 +#: .\cookbook\templates\url_import.html:631 msgid "Information" msgstr "Information" -#: .\cookbook\templates\url_import.html:630 +#: .\cookbook\templates\url_import.html:633 msgid "" " Only websites containing ld+json or microdata information can currently\n" " be imported. Most big recipe pages " @@ -2364,105 +2443,108 @@ msgstr "" "de données correctement structurées,\n" "n'hésitez pas à publier un exemple dans un ticket sur GitHub." -#: .\cookbook\templates\url_import.html:638 +#: .\cookbook\templates\url_import.html:641 msgid "Google ld+json Info" msgstr "Informations Google ld+json" -#: .\cookbook\templates\url_import.html:641 +#: .\cookbook\templates\url_import.html:644 msgid "GitHub Issues" msgstr "Ticket GitHub" -#: .\cookbook\templates\url_import.html:643 +#: .\cookbook\templates\url_import.html:646 msgid "Recipe Markup Specification" msgstr "Spécification Recipe Markup" -#: .\cookbook\views\api.py:82 .\cookbook\views\api.py:131 +#: .\cookbook\views\api.py:83 .\cookbook\views\api.py:132 msgid "Parameter updated_at incorrectly formatted" msgstr "Le paramètre « update_at » n'est pas correctement formatté" -#: .\cookbook\views\api.py:151 +#: .\cookbook\views\api.py:152 #, python-brace-format msgid "No {self.basename} with id {pk} exists" msgstr "" -#: .\cookbook\views\api.py:155 +#: .\cookbook\views\api.py:156 msgid "Cannot merge with the same object!" msgstr "Un objet ne peut être fusionné avec lui-même !" -#: .\cookbook\views\api.py:162 +#: .\cookbook\views\api.py:163 #, python-brace-format msgid "No {self.basename} with id {target} exists" msgstr "" -#: .\cookbook\views\api.py:167 +#: .\cookbook\views\api.py:168 #, fuzzy #| msgid "Cannot merge with the same object!" msgid "Cannot merge with child object!" msgstr "Un objet ne peut être fusionné avec lui-même !" -#: .\cookbook\views\api.py:200 +#: .\cookbook\views\api.py:201 #, python-brace-format msgid "{source.name} was merged successfully with {target.name}" msgstr "" -#: .\cookbook\views\api.py:204 +#: .\cookbook\views\api.py:205 #, python-brace-format msgid "An error occurred attempting to merge {source.name} with {target.name}" msgstr "" -#: .\cookbook\views\api.py:248 +#: .\cookbook\views\api.py:249 #, python-brace-format msgid "No {self.basename} with id {child} exists" msgstr "" -#: .\cookbook\views\api.py:257 +#: .\cookbook\views\api.py:258 #, python-brace-format msgid "{child.name} was moved successfully to the root." msgstr "" -#: .\cookbook\views\api.py:260 .\cookbook\views\api.py:278 +#: .\cookbook\views\api.py:261 .\cookbook\views\api.py:279 msgid "An error occurred attempting to move " msgstr "" -#: .\cookbook\views\api.py:263 +#: .\cookbook\views\api.py:264 msgid "Cannot move an object to itself!" msgstr "" -#: .\cookbook\views\api.py:269 +#: .\cookbook\views\api.py:270 #, python-brace-format msgid "No {self.basename} with id {parent} exists" msgstr "" -#: .\cookbook\views\api.py:275 +#: .\cookbook\views\api.py:276 #, python-brace-format msgid "{child.name} was moved successfully to parent {parent.name}" msgstr "" -#: .\cookbook\views\api.py:723 .\cookbook\views\views.py:277 -msgid "This feature is not available in the demo version!" +#: .\cookbook\views\api.py:723 .\cookbook\views\data.py:42 +#: .\cookbook\views\edit.py:129 .\cookbook\views\new.py:95 +#, fuzzy +#| msgid "This feature is not available in the demo version!" +msgid "This feature is not yet available in the hosted version of tandoor!" msgstr "Cette fonctionnalité n'est pas disponible dans la version d'essai !" -#: .\cookbook\views\api.py:746 +#: .\cookbook\views\api.py:745 msgid "Sync successful!" msgstr "Synchro réussie !" -#: .\cookbook\views\api.py:751 +#: .\cookbook\views\api.py:750 msgid "Error synchronizing with Storage" msgstr "Erreur lors de la synchronisation avec le stockage" -#: .\cookbook\views\api.py:829 +#: .\cookbook\views\api.py:828 msgid "Nothing to do." msgstr "Rien à faire." -#: .\cookbook\views\api.py:844 +#: .\cookbook\views\api.py:843 msgid "The requested site provided malformed data and cannot be read." msgstr "Le site web a renvoyé des données malformées et ne peut être lu." -#: .\cookbook\views\api.py:851 +#: .\cookbook\views\api.py:850 msgid "The requested page could not be found." msgstr "La page souhaitée n'a pas été trouvée." -#: .\cookbook\views\api.py:860 +#: .\cookbook\views\api.py:859 msgid "" "The requested site does not provide any recognized data format to import the " "recipe from." @@ -2470,27 +2552,27 @@ msgstr "" "Le site web est dans un format qui ne permet pas d'importer automatiquement " "la recette." -#: .\cookbook\views\api.py:874 +#: .\cookbook\views\api.py:873 msgid "No useable data could be found." msgstr "Aucune information utilisable n'a été trouvée." -#: .\cookbook\views\api.py:890 +#: .\cookbook\views\api.py:889 msgid "I couldn't find anything to do." msgstr "Je n'ai rien trouvé à faire." -#: .\cookbook\views\data.py:33 .\cookbook\views\data.py:124 -#: .\cookbook\views\edit.py:50 .\cookbook\views\import_export.py:73 -#: .\cookbook\views\new.py:32 +#: .\cookbook\views\data.py:34 .\cookbook\views\data.py:129 +#: .\cookbook\views\edit.py:49 .\cookbook\views\import_export.py:73 +#: .\cookbook\views\new.py:33 msgid "You have reached the maximum number of recipes for your space." msgstr "Vous avez atteint le nombre maximum de recettes pour votre groupe." -#: .\cookbook\views\data.py:37 .\cookbook\views\data.py:128 -#: .\cookbook\views\edit.py:54 .\cookbook\views\import_export.py:77 -#: .\cookbook\views\new.py:36 +#: .\cookbook\views\data.py:38 .\cookbook\views\data.py:133 +#: .\cookbook\views\edit.py:53 .\cookbook\views\import_export.py:77 +#: .\cookbook\views\new.py:37 msgid "You have more users than allowed in your space." msgstr "Vous avez plus d'utilisateurs qu'autorisés dans votre groupe." -#: .\cookbook\views\data.py:106 +#: .\cookbook\views\data.py:111 #, python-format msgid "Batch edit done. %(count)d recipe was updated." msgid_plural "Batch edit done. %(count)d Recipes where updated." @@ -2504,7 +2586,7 @@ msgid "Monitor" msgstr "Surveiller" #: .\cookbook\views\delete.py:125 .\cookbook\views\lists.py:86 -#: .\cookbook\views\new.py:97 +#: .\cookbook\views\new.py:101 msgid "Storage Backend" msgstr "Espace de stockage" @@ -2523,32 +2605,28 @@ msgstr "Livre de recettes" msgid "Bookmarks" msgstr "Favoris" -#: .\cookbook\views\delete.py:192 .\cookbook\views\new.py:231 +#: .\cookbook\views\delete.py:192 .\cookbook\views\new.py:235 msgid "Invite Link" msgstr "Lien d'invitation" -#: .\cookbook\views\edit.py:126 +#: .\cookbook\views\edit.py:125 msgid "You cannot edit this storage!" msgstr "Vous ne pouvez pas modifier ce stockage !" -#: .\cookbook\views\edit.py:146 +#: .\cookbook\views\edit.py:149 msgid "Storage saved!" msgstr "Stockage sauvegardé !" -#: .\cookbook\views\edit.py:152 +#: .\cookbook\views\edit.py:155 msgid "There was an error updating this storage backend!" msgstr "" "Une erreur s'est produite lors de la mise à jour de cet espace de stockage !" -#: .\cookbook\views\edit.py:163 -msgid "Storage" -msgstr "Stockage" - -#: .\cookbook\views\edit.py:245 +#: .\cookbook\views\edit.py:248 msgid "Changes saved!" msgstr "Modifications sauvegardées !" -#: .\cookbook\views\edit.py:249 +#: .\cookbook\views\edit.py:252 msgid "Error saving changes!" msgstr "Erreur lors de la sauvegarde des modifications !" @@ -2596,57 +2674,57 @@ msgstr "Recettes dans le panier" msgid "New Shopping List" msgstr "Liste de courses" -#: .\cookbook\views\new.py:122 +#: .\cookbook\views\new.py:126 msgid "Imported new recipe!" msgstr "Nouvelle recette importée !" -#: .\cookbook\views\new.py:125 +#: .\cookbook\views\new.py:129 msgid "There was an error importing this recipe!" msgstr "Une erreur s\\\\'est produite lors de l\\\\'import de cette recette !" -#: .\cookbook\views\new.py:205 +#: .\cookbook\views\new.py:209 msgid "Hello" msgstr "Bonjour" -#: .\cookbook\views\new.py:205 +#: .\cookbook\views\new.py:209 msgid "You have been invited by " msgstr "Vous avez été invité par " -#: .\cookbook\views\new.py:206 +#: .\cookbook\views\new.py:210 msgid " to join their Tandoor Recipes space " msgstr " pour rejoindre leur groupe Tandoor Recipes " -#: .\cookbook\views\new.py:207 +#: .\cookbook\views\new.py:211 msgid "Click the following link to activate your account: " msgstr "Cliquez le lien suivant pour activer votre compte : " -#: .\cookbook\views\new.py:208 +#: .\cookbook\views\new.py:212 msgid "" "If the link does not work use the following code to manually join the space: " msgstr "" "Si le lien ne fonctionne pas, utilisez le code suivant manuellement pour " "rejoindre le groupe : " -#: .\cookbook\views\new.py:209 +#: .\cookbook\views\new.py:213 msgid "The invitation is valid until " msgstr "L'invitation est valide jusqu'au " -#: .\cookbook\views\new.py:210 +#: .\cookbook\views\new.py:214 msgid "" "Tandoor Recipes is an Open Source recipe manager. Check it out on GitHub " msgstr "" "Tandoor Recipes sont un gestionnaire de recettes open source. Venez-voir " "notre Github " -#: .\cookbook\views\new.py:213 +#: .\cookbook\views\new.py:217 msgid "Tandoor Recipes Invite" msgstr "Invitation Tandoor Recipes" -#: .\cookbook\views\new.py:220 +#: .\cookbook\views\new.py:224 msgid "Invite link successfully send to user." msgstr "Le lien d'invitation a été correctement envoyé à l'utilisateur." -#: .\cookbook\views\new.py:223 +#: .\cookbook\views\new.py:227 msgid "" "You have send to many emails, please share the link manually or wait a few " "hours." @@ -2654,7 +2732,7 @@ msgstr "" "Vous avez envoyé trop de mails, partagez le lien manuellement ou attendez " "quelques heures." -#: .\cookbook\views\new.py:225 +#: .\cookbook\views\new.py:229 msgid "Email to user could not be send, please share link manually." msgstr "" "Le mail n'a pas pu être envoyé à l'utilisateur, veuillez envoyer le lien " @@ -2677,6 +2755,10 @@ msgstr "Vous n'avez pas la permission d'effectuer cette action !" msgid "Comment saved!" msgstr "Commentaire enregistré !" +#: .\cookbook\views\views.py:277 +msgid "This feature is not available in the demo version!" +msgstr "Cette fonctionnalité n'est pas disponible dans la version d'essai !" + #: .\cookbook\views\views.py:340 msgid "You must select at least one field to search!" msgstr "" @@ -2790,9 +2872,6 @@ msgstr "" #~ msgid "Create only note" #~ msgstr "Créer uniquement une note" -#~ msgid "Shopping list currently empty" -#~ msgstr "La liste de courses est actuellement vide" - #~ msgid "Plan" #~ msgstr "Menu" diff --git a/cookbook/locale/hu_HU/LC_MESSAGES/django.po b/cookbook/locale/hu_HU/LC_MESSAGES/django.po index 91009e750..77883726c 100644 --- a/cookbook/locale/hu_HU/LC_MESSAGES/django.po +++ b/cookbook/locale/hu_HU/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-04 14:56+0100\n" +"POT-Creation-Date: 2021-11-07 17:31+0100\n" "PO-Revision-Date: 2020-06-02 19:28+0000\n" "Last-Translator: igazka , 2020\n" "Language-Team: Hungarian (Hungary) (https://www.transifex.com/django-recipes/" @@ -25,11 +25,66 @@ msgstr "" #: .\cookbook\filters.py:23 .\cookbook\templates\base.html:125 #: .\cookbook\templates\forms\ingredients.html:34 #: .\cookbook\templates\space.html:43 .\cookbook\templates\stats.html:28 -#: .\cookbook\templates\url_import.html:272 +#: .\cookbook\templates\url_import.html:274 msgid "Ingredients" msgstr "Hozzávalók" -#: .\cookbook\forms.py:53 +#: .\cookbook\forms.py:54 +msgid "Default unit" +msgstr "" + +#: .\cookbook\forms.py:55 +msgid "Use fractions" +msgstr "" + +#: .\cookbook\forms.py:56 +msgid "Use KJ" +msgstr "" + +#: .\cookbook\forms.py:57 +msgid "Theme" +msgstr "" + +#: .\cookbook\forms.py:58 +msgid "Navbar color" +msgstr "" + +#: .\cookbook\forms.py:59 +msgid "Sticky navbar" +msgstr "" + +#: .\cookbook\forms.py:60 +msgid "Default page" +msgstr "" + +#: .\cookbook\forms.py:61 +msgid "Show recent recipes" +msgstr "" + +#: .\cookbook\forms.py:62 +msgid "Search style" +msgstr "" + +#: .\cookbook\forms.py:63 +msgid "Plan sharing" +msgstr "" + +#: .\cookbook\forms.py:64 +#, fuzzy +#| msgid "Ingredients" +msgid "Ingredient decimal places" +msgstr "Hozzávalók" + +#: .\cookbook\forms.py:65 +msgid "Shopping list auto sync period" +msgstr "" + +#: .\cookbook\forms.py:66 .\cookbook\templates\recipe_view.html:21 +#: .\cookbook\templates\space.html:62 .\cookbook\templates\stats.html:47 +msgid "Comments" +msgstr "" + +#: .\cookbook\forms.py:70 msgid "" "Color of the top navigation bar. Not all colors work with all themes, just " "try them out!" @@ -37,12 +92,12 @@ msgstr "" "A felső navigációs sáv színe. Nem minden szín működik minden témával. " "Próbáld ki őket! " -#: .\cookbook\forms.py:55 +#: .\cookbook\forms.py:72 msgid "Default Unit to be used when inserting a new ingredient into a recipe." msgstr "" "Az alapértelmezett mértékegység, új hozzávaló receptbe való beillesztésekor." -#: .\cookbook\forms.py:57 +#: .\cookbook\forms.py:74 msgid "" "Enables support for fractions in ingredient amounts (e.g. convert decimals " "to fractions automatically)" @@ -50,29 +105,29 @@ msgstr "" "Lehetővé teszi az összetevők mennyiségében a törtrészek használatát (pl. A " "tizedesjegyek automatikus törtrészekké alakítása)" -#: .\cookbook\forms.py:59 +#: .\cookbook\forms.py:76 msgid "Display nutritional energy amounts in joules instead of calories" msgstr "" -#: .\cookbook\forms.py:61 +#: .\cookbook\forms.py:78 msgid "" "Users with whom newly created meal plan/shopping list entries should be " "shared by default." msgstr "" -#: .\cookbook\forms.py:63 +#: .\cookbook\forms.py:80 msgid "Show recently viewed recipes on search page." msgstr "" -#: .\cookbook\forms.py:64 +#: .\cookbook\forms.py:81 msgid "Number of decimals to round ingredients." msgstr "" -#: .\cookbook\forms.py:65 +#: .\cookbook\forms.py:82 msgid "If you want to be able to create and see comments underneath recipes." msgstr "" -#: .\cookbook\forms.py:67 +#: .\cookbook\forms.py:84 msgid "" "Setting to 0 will disable auto sync. When viewing a shopping list the list " "is updated every set seconds to sync changes someone else might have made. " @@ -80,189 +135,197 @@ msgid "" "mobile data. If lower than instance limit it is reset when saving." msgstr "" -#: .\cookbook\forms.py:70 +#: .\cookbook\forms.py:87 msgid "Makes the navbar stick to the top of the page." msgstr "" -#: .\cookbook\forms.py:86 +#: .\cookbook\forms.py:103 msgid "" "Both fields are optional. If none are given the username will be displayed " "instead" msgstr "" -#: .\cookbook\forms.py:107 .\cookbook\forms.py:266 -#: .\cookbook\templates\url_import.html:156 +#: .\cookbook\forms.py:124 .\cookbook\forms.py:289 +#: .\cookbook\templates\url_import.html:158 msgid "Name" msgstr "Név" -#: .\cookbook\forms.py:108 .\cookbook\forms.py:267 +#: .\cookbook\forms.py:125 .\cookbook\forms.py:290 #: .\cookbook\templates\space.html:39 .\cookbook\templates\stats.html:24 -#: .\cookbook\templates\url_import.html:190 -#: .\cookbook\templates\url_import.html:575 .\cookbook\views\lists.py:112 +#: .\cookbook\templates\url_import.html:192 +#: .\cookbook\templates\url_import.html:578 .\cookbook\views\lists.py:112 msgid "Keywords" msgstr "Kulcsszavak" -#: .\cookbook\forms.py:109 +#: .\cookbook\forms.py:126 msgid "Preparation time in minutes" msgstr "Előkészítési idő percben" -#: .\cookbook\forms.py:110 +#: .\cookbook\forms.py:127 msgid "Waiting time (cooking/baking) in minutes" msgstr "Várakozási idő (sütés/főzés) percben" -#: .\cookbook\forms.py:111 .\cookbook\forms.py:268 +#: .\cookbook\forms.py:128 .\cookbook\forms.py:259 .\cookbook\forms.py:291 msgid "Path" msgstr "Elérési útvonal" -#: .\cookbook\forms.py:112 +#: .\cookbook\forms.py:129 msgid "Storage UID" msgstr "Tárhely UID" -#: .\cookbook\forms.py:140 +#: .\cookbook\forms.py:157 msgid "Default" msgstr "" -#: .\cookbook\forms.py:151 .\cookbook\templates\url_import.html:92 +#: .\cookbook\forms.py:168 .\cookbook\templates\url_import.html:94 msgid "" "To prevent duplicates recipes with the same name as existing ones are " "ignored. Check this box to import everything." msgstr "" -#: .\cookbook\forms.py:173 +#: .\cookbook\forms.py:190 msgid "Add your comment: " msgstr "Add hozzá a kommented:" -#: .\cookbook\forms.py:188 +#: .\cookbook\forms.py:205 msgid "Leave empty for dropbox and enter app password for nextcloud." msgstr "" -#: .\cookbook\forms.py:195 +#: .\cookbook\forms.py:212 msgid "Leave empty for nextcloud and enter api token for dropbox." msgstr "" -#: .\cookbook\forms.py:204 +#: .\cookbook\forms.py:221 msgid "" "Leave empty for dropbox and enter only base url for nextcloud (/remote." "php/webdav/ is added automatically)" msgstr "" -#: .\cookbook\forms.py:242 +#: .\cookbook\forms.py:258 .\cookbook\views\edit.py:166 +msgid "Storage" +msgstr "" + +#: .\cookbook\forms.py:260 +msgid "Active" +msgstr "" + +#: .\cookbook\forms.py:265 msgid "Search String" msgstr "" -#: .\cookbook\forms.py:269 +#: .\cookbook\forms.py:292 msgid "File ID" msgstr "Fájl ID:" -#: .\cookbook\forms.py:290 +#: .\cookbook\forms.py:313 msgid "You must provide at least a recipe or a title." msgstr "" -#: .\cookbook\forms.py:303 +#: .\cookbook\forms.py:326 msgid "You can list default users to share recipes with in the settings." msgstr "" -#: .\cookbook\forms.py:304 +#: .\cookbook\forms.py:327 msgid "" "You can use markdown to format this field. See the docs here" msgstr "" -#: .\cookbook\forms.py:329 +#: .\cookbook\forms.py:353 msgid "Maximum number of users for this space reached." msgstr "" -#: .\cookbook\forms.py:335 +#: .\cookbook\forms.py:359 msgid "Email address already taken!" msgstr "" -#: .\cookbook\forms.py:343 +#: .\cookbook\forms.py:367 msgid "" "An email address is not required but if present the invite link will be send " "to the user." msgstr "" -#: .\cookbook\forms.py:358 +#: .\cookbook\forms.py:382 msgid "Name already taken." msgstr "" -#: .\cookbook\forms.py:369 +#: .\cookbook\forms.py:393 msgid "Accept Terms and Privacy" msgstr "" -#: .\cookbook\forms.py:399 +#: .\cookbook\forms.py:425 msgid "" "Determines how fuzzy a search is if it uses trigram similarity matching (e." "g. low values mean more typos are ignored)." msgstr "" -#: .\cookbook\forms.py:407 +#: .\cookbook\forms.py:435 msgid "" "Select type method of search. Click here for " "full desciption of choices." msgstr "" -#: .\cookbook\forms.py:408 +#: .\cookbook\forms.py:436 msgid "" "Use fuzzy matching on units, keywords and ingredients when editing and " "importing recipes." msgstr "" -#: .\cookbook\forms.py:409 +#: .\cookbook\forms.py:438 msgid "" "Fields to search ignoring accents. Selecting this option can improve or " "degrade search quality depending on language" msgstr "" -#: .\cookbook\forms.py:410 +#: .\cookbook\forms.py:440 msgid "" "Fields to search for partial matches. (e.g. searching for 'Pie' will return " "'pie' and 'piece' and 'soapie')" msgstr "" -#: .\cookbook\forms.py:411 +#: .\cookbook\forms.py:442 msgid "" "Fields to search for beginning of word matches. (e.g. searching for 'sa' " "will return 'salad' and 'sandwich')" msgstr "" -#: .\cookbook\forms.py:412 +#: .\cookbook\forms.py:444 msgid "" "Fields to 'fuzzy' search. (e.g. searching for 'recpie' will find 'recipe'.) " "Note: this option will conflict with 'web' and 'raw' methods of search." msgstr "" -#: .\cookbook\forms.py:413 +#: .\cookbook\forms.py:446 msgid "" "Fields to full text search. Note: 'web', 'phrase', and 'raw' search methods " "only function with fulltext fields." msgstr "" -#: .\cookbook\forms.py:417 +#: .\cookbook\forms.py:450 msgid "Search Method" msgstr "" -#: .\cookbook\forms.py:418 +#: .\cookbook\forms.py:451 msgid "Fuzzy Lookups" msgstr "" -#: .\cookbook\forms.py:419 +#: .\cookbook\forms.py:452 msgid "Ignore Accent" msgstr "" -#: .\cookbook\forms.py:420 +#: .\cookbook\forms.py:453 msgid "Partial Match" msgstr "" -#: .\cookbook\forms.py:421 +#: .\cookbook\forms.py:454 msgid "Starts Wtih" msgstr "" -#: .\cookbook\forms.py:422 +#: .\cookbook\forms.py:455 msgid "Fuzzy Search" msgstr "" -#: .\cookbook\forms.py:423 +#: .\cookbook\forms.py:456 #, fuzzy #| msgid "Text" msgid "Full Text" @@ -285,7 +348,7 @@ msgstr "" #: .\cookbook\helper\permission_helper.py:216 #: .\cookbook\helper\permission_helper.py:230 #: .\cookbook\helper\permission_helper.py:241 -#: .\cookbook\helper\permission_helper.py:252 .\cookbook\views\data.py:42 +#: .\cookbook\helper\permission_helper.py:252 .\cookbook\views\data.py:47 #: .\cookbook\views\views.py:160 .\cookbook\views\views.py:167 #: .\cookbook\views\views.py:233 msgid "You do not have the required permissions to view this page!" @@ -307,11 +370,11 @@ msgstr "" #: .\cookbook\templates\import_response.html:7 #: .\cookbook\templates\test.html:14 .\cookbook\templates\test.html:20 #: .\cookbook\templates\url_import.html:27 -#: .\cookbook\templates\url_import.html:103 -#: .\cookbook\templates\url_import.html:125 -#: .\cookbook\templates\url_import.html:319 -#: .\cookbook\templates\url_import.html:606 .\cookbook\views\delete.py:89 -#: .\cookbook\views\edit.py:197 +#: .\cookbook\templates\url_import.html:105 +#: .\cookbook\templates\url_import.html:127 +#: .\cookbook\templates\url_import.html:321 +#: .\cookbook\templates\url_import.html:609 .\cookbook\views\delete.py:89 +#: .\cookbook\views\edit.py:200 msgid "Import" msgstr "" @@ -344,14 +407,14 @@ msgstr "" msgid "Nutritional Information" msgstr "" -#: .\cookbook\integration\paprika.py:53 +#: .\cookbook\integration\paprika.py:53 .\cookbook\templates\url_import.html:40 msgid "Source" msgstr "" #: .\cookbook\integration\safron.py:23 #: .\cookbook\templates\include\log_cooking.html:16 -#: .\cookbook\templates\url_import.html:226 -#: .\cookbook\templates\url_import.html:457 +#: .\cookbook\templates\url_import.html:228 +#: .\cookbook\templates\url_import.html:459 msgid "Servings" msgstr "" @@ -419,7 +482,7 @@ msgstr "" #: .\cookbook\models.py:203 .\cookbook\templates\base.html:82 #: .\cookbook\templates\meal_plan.html:7 #: .\cookbook\templates\meal_plan_new.html:7 .\cookbook\views\delete.py:181 -#: .\cookbook\views\edit.py:217 .\cookbook\views\new.py:180 +#: .\cookbook\views\edit.py:220 .\cookbook\views\new.py:184 msgid "Meal-Plan" msgstr "" @@ -444,7 +507,7 @@ msgstr "" msgid " is part of a recipe step and cannot be deleted" msgstr "" -#: .\cookbook\models.py:441 +#: .\cookbook\models.py:441 .\cookbook\templates\url_import.html:42 msgid "Text" msgstr "Szöveg" @@ -452,7 +515,7 @@ msgstr "Szöveg" msgid "Time" msgstr "" -#: .\cookbook\models.py:441 +#: .\cookbook\models.py:441 .\cookbook\templates\url_import.html:44 #, fuzzy #| msgid "File ID" msgid "File" @@ -460,8 +523,8 @@ msgstr "Fájl ID:" #: .\cookbook\models.py:441 #: .\cookbook\templates\include\recipe_open_modal.html:7 -#: .\cookbook\views\delete.py:39 .\cookbook\views\edit.py:257 -#: .\cookbook\views\new.py:52 +#: .\cookbook\views\delete.py:39 .\cookbook\views\edit.py:260 +#: .\cookbook\views\new.py:53 msgid "Recipe" msgstr "" @@ -912,7 +975,7 @@ msgstr "" msgid "Add the specified keywords to all recipes containing a word" msgstr "" -#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:83 +#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:82 msgid "Sync" msgstr "" @@ -930,6 +993,18 @@ msgstr "" msgid "The path must be in the following format" msgstr "" +#: .\cookbook\templates\batch\monitor.html:20 +#: .\cookbook\templates\forms\edit_import_recipe.html:14 +#: .\cookbook\templates\generic\edit_template.html:23 +#: .\cookbook\templates\generic\new_template.html:23 +#: .\cookbook\templates\include\log_cooking.html:28 +#: .\cookbook\templates\settings.html:63 .\cookbook\templates\settings.html:105 +#: .\cookbook\templates\settings.html:123 +#: .\cookbook\templates\settings.html:195 +#: .\cookbook\templates\shopping_list.html:360 +msgid "Save" +msgstr "" + #: .\cookbook\templates\batch\monitor.html:21 msgid "Manage External Storage" msgstr "" @@ -970,17 +1045,6 @@ msgstr "" msgid "Import new Recipe" msgstr "" -#: .\cookbook\templates\forms\edit_import_recipe.html:14 -#: .\cookbook\templates\generic\edit_template.html:23 -#: .\cookbook\templates\generic\new_template.html:23 -#: .\cookbook\templates\include\log_cooking.html:28 -#: .\cookbook\templates\settings.html:63 .\cookbook\templates\settings.html:105 -#: .\cookbook\templates\settings.html:123 -#: .\cookbook\templates\settings.html:195 -#: .\cookbook\templates\shopping_list.html:360 -msgid "Save" -msgstr "" - #: .\cookbook\templates\forms\edit_internal_recipe.html:7 msgid "Edit Recipe" msgstr "" @@ -1384,33 +1448,28 @@ msgid "" "recently viewed them. Keep in mind that data might be outdated." msgstr "" -#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\space.html:62 -#: .\cookbook\templates\stats.html:47 -msgid "Comments" -msgstr "" - #: .\cookbook\templates\recipe_view.html:26 msgid "by" msgstr "" #: .\cookbook\templates\recipe_view.html:44 .\cookbook\views\delete.py:147 -#: .\cookbook\views\edit.py:177 +#: .\cookbook\views\edit.py:180 msgid "Comment" msgstr "" #: .\cookbook\templates\recipes_table.html:19 #: .\cookbook\templates\recipes_table.html:23 -#: .\cookbook\templates\url_import.html:442 +#: .\cookbook\templates\url_import.html:444 msgid "Recipe Image" msgstr "" #: .\cookbook\templates\recipes_table.html:51 -#: .\cookbook\templates\url_import.html:447 +#: .\cookbook\templates\url_import.html:449 msgid "Preparation time ca." msgstr "" #: .\cookbook\templates\recipes_table.html:57 -#: .\cookbook\templates\url_import.html:452 +#: .\cookbook\templates\url_import.html:454 msgid "Waiting time ca." msgstr "" @@ -1755,8 +1814,8 @@ msgstr "" #: .\cookbook\templates\shopping_list.html:218 #: .\cookbook\templates\shopping_list.html:248 #: .\cookbook\templates\shopping_list.html:272 -#: .\cookbook\templates\url_import.html:497 -#: .\cookbook\templates\url_import.html:529 +#: .\cookbook\templates\url_import.html:500 +#: .\cookbook\templates\url_import.html:532 msgid "Select" msgstr "" @@ -2031,148 +2090,156 @@ msgstr "" msgid "Bookmark Me!" msgstr "" -#: .\cookbook\templates\url_import.html:61 +#: .\cookbook\templates\url_import.html:36 +msgid "URL" +msgstr "" + +#: .\cookbook\templates\url_import.html:38 +msgid "App" +msgstr "" + +#: .\cookbook\templates\url_import.html:62 msgid "Enter website URL" msgstr "" -#: .\cookbook\templates\url_import.html:99 +#: .\cookbook\templates\url_import.html:101 msgid "Select recipe files to import or drop them here..." msgstr "" -#: .\cookbook\templates\url_import.html:120 +#: .\cookbook\templates\url_import.html:122 msgid "Paste json or html source here to load recipe." msgstr "" -#: .\cookbook\templates\url_import.html:148 +#: .\cookbook\templates\url_import.html:150 msgid "Preview Recipe Data" msgstr "" -#: .\cookbook\templates\url_import.html:149 +#: .\cookbook\templates\url_import.html:151 msgid "Drag recipe attributes from the right into the appropriate box below." msgstr "" -#: .\cookbook\templates\url_import.html:158 -#: .\cookbook\templates\url_import.html:175 -#: .\cookbook\templates\url_import.html:192 -#: .\cookbook\templates\url_import.html:211 -#: .\cookbook\templates\url_import.html:229 -#: .\cookbook\templates\url_import.html:244 -#: .\cookbook\templates\url_import.html:259 -#: .\cookbook\templates\url_import.html:275 -#: .\cookbook\templates\url_import.html:302 -#: .\cookbook\templates\url_import.html:353 +#: .\cookbook\templates\url_import.html:160 +#: .\cookbook\templates\url_import.html:177 +#: .\cookbook\templates\url_import.html:194 +#: .\cookbook\templates\url_import.html:213 +#: .\cookbook\templates\url_import.html:231 +#: .\cookbook\templates\url_import.html:246 +#: .\cookbook\templates\url_import.html:261 +#: .\cookbook\templates\url_import.html:277 +#: .\cookbook\templates\url_import.html:304 +#: .\cookbook\templates\url_import.html:355 msgid "Clear Contents" msgstr "" -#: .\cookbook\templates\url_import.html:160 +#: .\cookbook\templates\url_import.html:162 msgid "Text dragged here will be appended to the name." msgstr "" -#: .\cookbook\templates\url_import.html:173 +#: .\cookbook\templates\url_import.html:175 msgid "Description" msgstr "" -#: .\cookbook\templates\url_import.html:177 +#: .\cookbook\templates\url_import.html:179 msgid "Text dragged here will be appended to the description." msgstr "" -#: .\cookbook\templates\url_import.html:194 +#: .\cookbook\templates\url_import.html:196 msgid "Keywords dragged here will be appended to current list" msgstr "" -#: .\cookbook\templates\url_import.html:209 +#: .\cookbook\templates\url_import.html:211 msgid "Image" msgstr "" -#: .\cookbook\templates\url_import.html:241 +#: .\cookbook\templates\url_import.html:243 msgid "Prep Time" msgstr "" -#: .\cookbook\templates\url_import.html:256 +#: .\cookbook\templates\url_import.html:258 msgid "Cook Time" msgstr "" -#: .\cookbook\templates\url_import.html:277 +#: .\cookbook\templates\url_import.html:279 msgid "Ingredients dragged here will be appended to current list." msgstr "" -#: .\cookbook\templates\url_import.html:299 -#: .\cookbook\templates\url_import.html:569 +#: .\cookbook\templates\url_import.html:301 +#: .\cookbook\templates\url_import.html:572 msgid "Instructions" msgstr "" -#: .\cookbook\templates\url_import.html:304 +#: .\cookbook\templates\url_import.html:306 msgid "" "Recipe instructions dragged here will be appended to current instructions." msgstr "" -#: .\cookbook\templates\url_import.html:327 +#: .\cookbook\templates\url_import.html:329 msgid "Discovered Attributes" msgstr "" -#: .\cookbook\templates\url_import.html:329 +#: .\cookbook\templates\url_import.html:331 msgid "" "Drag recipe attributes from below into the appropriate box on the left. " "Click any node to display its full properties." msgstr "" -#: .\cookbook\templates\url_import.html:346 +#: .\cookbook\templates\url_import.html:348 msgid "Show Blank Field" msgstr "" -#: .\cookbook\templates\url_import.html:351 +#: .\cookbook\templates\url_import.html:353 msgid "Blank Field" msgstr "" -#: .\cookbook\templates\url_import.html:355 +#: .\cookbook\templates\url_import.html:357 msgid "Items dragged to Blank Field will be appended." msgstr "" -#: .\cookbook\templates\url_import.html:402 +#: .\cookbook\templates\url_import.html:404 msgid "Delete Text" msgstr "" -#: .\cookbook\templates\url_import.html:415 +#: .\cookbook\templates\url_import.html:417 msgid "Delete image" msgstr "" -#: .\cookbook\templates\url_import.html:431 +#: .\cookbook\templates\url_import.html:433 msgid "Recipe Name" msgstr "" -#: .\cookbook\templates\url_import.html:435 +#: .\cookbook\templates\url_import.html:437 msgid "Recipe Description" msgstr "" -#: .\cookbook\templates\url_import.html:496 -#: .\cookbook\templates\url_import.html:528 -#: .\cookbook\templates\url_import.html:584 +#: .\cookbook\templates\url_import.html:499 +#: .\cookbook\templates\url_import.html:531 +#: .\cookbook\templates\url_import.html:587 msgid "Select one" msgstr "" -#: .\cookbook\templates\url_import.html:544 +#: .\cookbook\templates\url_import.html:547 msgid "Note" msgstr "" -#: .\cookbook\templates\url_import.html:585 +#: .\cookbook\templates\url_import.html:588 #, fuzzy #| msgid "Keywords" msgid "Add Keyword" msgstr "Kulcsszavak" -#: .\cookbook\templates\url_import.html:598 +#: .\cookbook\templates\url_import.html:601 msgid "All Keywords" msgstr "" -#: .\cookbook\templates\url_import.html:601 +#: .\cookbook\templates\url_import.html:604 msgid "Import all keywords, not only the ones already existing." msgstr "" -#: .\cookbook\templates\url_import.html:628 +#: .\cookbook\templates\url_import.html:631 msgid "Information" msgstr "" -#: .\cookbook\templates\url_import.html:630 +#: .\cookbook\templates\url_import.html:633 msgid "" " Only websites containing ld+json or microdata information can currently\n" " be imported. Most big recipe pages " @@ -2183,129 +2250,130 @@ msgid "" " github issues." msgstr "" -#: .\cookbook\templates\url_import.html:638 +#: .\cookbook\templates\url_import.html:641 msgid "Google ld+json Info" msgstr "" -#: .\cookbook\templates\url_import.html:641 +#: .\cookbook\templates\url_import.html:644 msgid "GitHub Issues" msgstr "" -#: .\cookbook\templates\url_import.html:643 +#: .\cookbook\templates\url_import.html:646 msgid "Recipe Markup Specification" msgstr "" -#: .\cookbook\views\api.py:82 .\cookbook\views\api.py:131 +#: .\cookbook\views\api.py:83 .\cookbook\views\api.py:132 msgid "Parameter updated_at incorrectly formatted" msgstr "" -#: .\cookbook\views\api.py:151 +#: .\cookbook\views\api.py:152 #, python-brace-format msgid "No {self.basename} with id {pk} exists" msgstr "" -#: .\cookbook\views\api.py:155 +#: .\cookbook\views\api.py:156 msgid "Cannot merge with the same object!" msgstr "" -#: .\cookbook\views\api.py:162 +#: .\cookbook\views\api.py:163 #, python-brace-format msgid "No {self.basename} with id {target} exists" msgstr "" -#: .\cookbook\views\api.py:167 +#: .\cookbook\views\api.py:168 msgid "Cannot merge with child object!" msgstr "" -#: .\cookbook\views\api.py:200 +#: .\cookbook\views\api.py:201 #, python-brace-format msgid "{source.name} was merged successfully with {target.name}" msgstr "" -#: .\cookbook\views\api.py:204 +#: .\cookbook\views\api.py:205 #, python-brace-format msgid "An error occurred attempting to merge {source.name} with {target.name}" msgstr "" -#: .\cookbook\views\api.py:248 +#: .\cookbook\views\api.py:249 #, python-brace-format msgid "No {self.basename} with id {child} exists" msgstr "" -#: .\cookbook\views\api.py:257 +#: .\cookbook\views\api.py:258 #, python-brace-format msgid "{child.name} was moved successfully to the root." msgstr "" -#: .\cookbook\views\api.py:260 .\cookbook\views\api.py:278 +#: .\cookbook\views\api.py:261 .\cookbook\views\api.py:279 msgid "An error occurred attempting to move " msgstr "" -#: .\cookbook\views\api.py:263 +#: .\cookbook\views\api.py:264 msgid "Cannot move an object to itself!" msgstr "" -#: .\cookbook\views\api.py:269 +#: .\cookbook\views\api.py:270 #, python-brace-format msgid "No {self.basename} with id {parent} exists" msgstr "" -#: .\cookbook\views\api.py:275 +#: .\cookbook\views\api.py:276 #, python-brace-format msgid "{child.name} was moved successfully to parent {parent.name}" msgstr "" -#: .\cookbook\views\api.py:723 .\cookbook\views\views.py:277 -msgid "This feature is not available in the demo version!" +#: .\cookbook\views\api.py:723 .\cookbook\views\data.py:42 +#: .\cookbook\views\edit.py:129 .\cookbook\views\new.py:95 +msgid "This feature is not yet available in the hosted version of tandoor!" msgstr "" -#: .\cookbook\views\api.py:746 +#: .\cookbook\views\api.py:745 msgid "Sync successful!" msgstr "" -#: .\cookbook\views\api.py:751 +#: .\cookbook\views\api.py:750 msgid "Error synchronizing with Storage" msgstr "" -#: .\cookbook\views\api.py:829 +#: .\cookbook\views\api.py:828 msgid "Nothing to do." msgstr "" -#: .\cookbook\views\api.py:844 +#: .\cookbook\views\api.py:843 msgid "The requested site provided malformed data and cannot be read." msgstr "" -#: .\cookbook\views\api.py:851 +#: .\cookbook\views\api.py:850 msgid "The requested page could not be found." msgstr "" -#: .\cookbook\views\api.py:860 +#: .\cookbook\views\api.py:859 msgid "" "The requested site does not provide any recognized data format to import the " "recipe from." msgstr "" -#: .\cookbook\views\api.py:874 +#: .\cookbook\views\api.py:873 msgid "No useable data could be found." msgstr "" -#: .\cookbook\views\api.py:890 +#: .\cookbook\views\api.py:889 msgid "I couldn't find anything to do." msgstr "" -#: .\cookbook\views\data.py:33 .\cookbook\views\data.py:124 -#: .\cookbook\views\edit.py:50 .\cookbook\views\import_export.py:73 -#: .\cookbook\views\new.py:32 +#: .\cookbook\views\data.py:34 .\cookbook\views\data.py:129 +#: .\cookbook\views\edit.py:49 .\cookbook\views\import_export.py:73 +#: .\cookbook\views\new.py:33 msgid "You have reached the maximum number of recipes for your space." msgstr "" -#: .\cookbook\views\data.py:37 .\cookbook\views\data.py:128 -#: .\cookbook\views\edit.py:54 .\cookbook\views\import_export.py:77 -#: .\cookbook\views\new.py:36 +#: .\cookbook\views\data.py:38 .\cookbook\views\data.py:133 +#: .\cookbook\views\edit.py:53 .\cookbook\views\import_export.py:77 +#: .\cookbook\views\new.py:37 msgid "You have more users than allowed in your space." msgstr "" -#: .\cookbook\views\data.py:106 +#: .\cookbook\views\data.py:111 #, python-format msgid "Batch edit done. %(count)d recipe was updated." msgid_plural "Batch edit done. %(count)d Recipes where updated." @@ -2317,7 +2385,7 @@ msgid "Monitor" msgstr "" #: .\cookbook\views\delete.py:125 .\cookbook\views\lists.py:86 -#: .\cookbook\views\new.py:97 +#: .\cookbook\views\new.py:101 msgid "Storage Backend" msgstr "" @@ -2334,31 +2402,27 @@ msgstr "" msgid "Bookmarks" msgstr "" -#: .\cookbook\views\delete.py:192 .\cookbook\views\new.py:231 +#: .\cookbook\views\delete.py:192 .\cookbook\views\new.py:235 msgid "Invite Link" msgstr "" -#: .\cookbook\views\edit.py:126 +#: .\cookbook\views\edit.py:125 msgid "You cannot edit this storage!" msgstr "" -#: .\cookbook\views\edit.py:146 +#: .\cookbook\views\edit.py:149 msgid "Storage saved!" msgstr "" -#: .\cookbook\views\edit.py:152 +#: .\cookbook\views\edit.py:155 msgid "There was an error updating this storage backend!" msgstr "" -#: .\cookbook\views\edit.py:163 -msgid "Storage" -msgstr "" - -#: .\cookbook\views\edit.py:245 +#: .\cookbook\views\edit.py:248 msgid "Changes saved!" msgstr "" -#: .\cookbook\views\edit.py:249 +#: .\cookbook\views\edit.py:252 msgid "Error saving changes!" msgstr "" @@ -2400,59 +2464,59 @@ msgstr "" msgid "New Shopping List" msgstr "" -#: .\cookbook\views\new.py:122 +#: .\cookbook\views\new.py:126 msgid "Imported new recipe!" msgstr "" -#: .\cookbook\views\new.py:125 +#: .\cookbook\views\new.py:129 msgid "There was an error importing this recipe!" msgstr "" -#: .\cookbook\views\new.py:205 +#: .\cookbook\views\new.py:209 msgid "Hello" msgstr "" -#: .\cookbook\views\new.py:205 +#: .\cookbook\views\new.py:209 msgid "You have been invited by " msgstr "" -#: .\cookbook\views\new.py:206 +#: .\cookbook\views\new.py:210 msgid " to join their Tandoor Recipes space " msgstr "" -#: .\cookbook\views\new.py:207 +#: .\cookbook\views\new.py:211 msgid "Click the following link to activate your account: " msgstr "" -#: .\cookbook\views\new.py:208 +#: .\cookbook\views\new.py:212 msgid "" "If the link does not work use the following code to manually join the space: " msgstr "" -#: .\cookbook\views\new.py:209 +#: .\cookbook\views\new.py:213 msgid "The invitation is valid until " msgstr "" -#: .\cookbook\views\new.py:210 +#: .\cookbook\views\new.py:214 msgid "" "Tandoor Recipes is an Open Source recipe manager. Check it out on GitHub " msgstr "" -#: .\cookbook\views\new.py:213 +#: .\cookbook\views\new.py:217 msgid "Tandoor Recipes Invite" msgstr "" -#: .\cookbook\views\new.py:220 +#: .\cookbook\views\new.py:224 msgid "Invite link successfully send to user." msgstr "" -#: .\cookbook\views\new.py:223 +#: .\cookbook\views\new.py:227 msgid "" "You have send to many emails, please share the link manually or wait a few " "hours." msgstr "" -#: .\cookbook\views\new.py:225 +#: .\cookbook\views\new.py:229 msgid "Email to user could not be send, please share link manually." msgstr "" @@ -2470,6 +2534,10 @@ msgstr "" msgid "Comment saved!" msgstr "" +#: .\cookbook\views\views.py:277 +msgid "This feature is not available in the demo version!" +msgstr "" + #: .\cookbook\views\views.py:340 msgid "You must select at least one field to search!" msgstr "" diff --git a/cookbook/locale/it/LC_MESSAGES/django.po b/cookbook/locale/it/LC_MESSAGES/django.po index ac6189d2d..338da0ff8 100644 --- a/cookbook/locale/it/LC_MESSAGES/django.po +++ b/cookbook/locale/it/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-04 14:56+0100\n" +"POT-Creation-Date: 2021-11-07 17:31+0100\n" "PO-Revision-Date: 2021-09-18 23:06+0000\n" "Last-Translator: Oliver Cervera \n" "Language-Team: Italian /remote." "php/webdav/ is added automatically)" @@ -164,25 +231,33 @@ msgstr "" "Lascia vuoto per dropbox e inserisci solo l'url base per nextcloud (/" "remote.php/webdav/ è aggiunto automaticamente)" -#: .\cookbook\forms.py:242 +#: .\cookbook\forms.py:258 .\cookbook\views\edit.py:166 +msgid "Storage" +msgstr "Archiviazione" + +#: .\cookbook\forms.py:260 +msgid "Active" +msgstr "" + +#: .\cookbook\forms.py:265 msgid "Search String" msgstr "Stringa di Ricerca" -#: .\cookbook\forms.py:269 +#: .\cookbook\forms.py:292 msgid "File ID" msgstr "ID del File" -#: .\cookbook\forms.py:290 +#: .\cookbook\forms.py:313 msgid "You must provide at least a recipe or a title." msgstr "Devi fornire almeno una ricetta o un titolo." -#: .\cookbook\forms.py:303 +#: .\cookbook\forms.py:326 msgid "You can list default users to share recipes with in the settings." msgstr "" "È possibile visualizzare l'elenco degli utenti predefiniti con cui " "condividere le ricette nelle impostazioni." -#: .\cookbook\forms.py:304 +#: .\cookbook\forms.py:327 msgid "" "You can use markdown to format this field. See the docs here" @@ -190,15 +265,15 @@ msgstr "" "Puoi usare markdown per formattare questo campo. Guarda la documentazione qui" -#: .\cookbook\forms.py:329 +#: .\cookbook\forms.py:353 msgid "Maximum number of users for this space reached." msgstr "È stato raggiunto il numero massimo di utenti per questa istanza." -#: .\cookbook\forms.py:335 +#: .\cookbook\forms.py:359 msgid "Email address already taken!" msgstr "Questo indirizzo email è già in uso!" -#: .\cookbook\forms.py:343 +#: .\cookbook\forms.py:367 msgid "" "An email address is not required but if present the invite link will be send " "to the user." @@ -206,21 +281,21 @@ msgstr "" "Non è obbligatorio specificare l'indirizzo email, ma se presente verrà " "utilizzato per mandare all'utente un link di invito." -#: .\cookbook\forms.py:358 +#: .\cookbook\forms.py:382 msgid "Name already taken." msgstr "Nome già in uso." -#: .\cookbook\forms.py:369 +#: .\cookbook\forms.py:393 msgid "Accept Terms and Privacy" msgstr "Accetta i Termini d'uso e Privacy" -#: .\cookbook\forms.py:399 +#: .\cookbook\forms.py:425 msgid "" "Determines how fuzzy a search is if it uses trigram similarity matching (e." "g. low values mean more typos are ignored)." msgstr "" -#: .\cookbook\forms.py:407 +#: .\cookbook\forms.py:435 msgid "" "Select type method of search. Click here for " "full desciption of choices." @@ -228,69 +303,69 @@ msgstr "" "Seleziona il metodo di ricerca. Cliccaqui per " "avere maggiori informazioni." -#: .\cookbook\forms.py:408 +#: .\cookbook\forms.py:436 msgid "" "Use fuzzy matching on units, keywords and ingredients when editing and " "importing recipes." msgstr "" -#: .\cookbook\forms.py:409 +#: .\cookbook\forms.py:438 msgid "" "Fields to search ignoring accents. Selecting this option can improve or " "degrade search quality depending on language" msgstr "" -#: .\cookbook\forms.py:410 +#: .\cookbook\forms.py:440 msgid "" "Fields to search for partial matches. (e.g. searching for 'Pie' will return " "'pie' and 'piece' and 'soapie')" msgstr "" -#: .\cookbook\forms.py:411 +#: .\cookbook\forms.py:442 msgid "" "Fields to search for beginning of word matches. (e.g. searching for 'sa' " "will return 'salad' and 'sandwich')" msgstr "" -#: .\cookbook\forms.py:412 +#: .\cookbook\forms.py:444 msgid "" "Fields to 'fuzzy' search. (e.g. searching for 'recpie' will find 'recipe'.) " "Note: this option will conflict with 'web' and 'raw' methods of search." msgstr "" -#: .\cookbook\forms.py:413 +#: .\cookbook\forms.py:446 msgid "" "Fields to full text search. Note: 'web', 'phrase', and 'raw' search methods " "only function with fulltext fields." msgstr "" -#: .\cookbook\forms.py:417 +#: .\cookbook\forms.py:450 msgid "Search Method" msgstr "Metodo di ricerca" -#: .\cookbook\forms.py:418 +#: .\cookbook\forms.py:451 msgid "Fuzzy Lookups" msgstr "" -#: .\cookbook\forms.py:419 +#: .\cookbook\forms.py:452 msgid "Ignore Accent" msgstr "Ignora accento" -#: .\cookbook\forms.py:420 +#: .\cookbook\forms.py:453 msgid "Partial Match" msgstr "Corrispondenza parziale" -#: .\cookbook\forms.py:421 +#: .\cookbook\forms.py:454 msgid "Starts Wtih" msgstr "Inizia con" -#: .\cookbook\forms.py:422 +#: .\cookbook\forms.py:455 #, fuzzy #| msgid "Search" msgid "Fuzzy Search" msgstr "Cerca" -#: .\cookbook\forms.py:423 +#: .\cookbook\forms.py:456 msgid "Full Text" msgstr "Full Text" @@ -313,7 +388,7 @@ msgstr "Non hai fatto l'accesso e quindi non puoi visualizzare questa pagina!" #: .\cookbook\helper\permission_helper.py:216 #: .\cookbook\helper\permission_helper.py:230 #: .\cookbook\helper\permission_helper.py:241 -#: .\cookbook\helper\permission_helper.py:252 .\cookbook\views\data.py:42 +#: .\cookbook\helper\permission_helper.py:252 .\cookbook\views\data.py:47 #: .\cookbook\views\views.py:160 .\cookbook\views\views.py:167 #: .\cookbook\views\views.py:233 msgid "You do not have the required permissions to view this page!" @@ -335,11 +410,11 @@ msgstr "Impossibile elaborare il codice del template." #: .\cookbook\templates\import_response.html:7 #: .\cookbook\templates\test.html:14 .\cookbook\templates\test.html:20 #: .\cookbook\templates\url_import.html:27 -#: .\cookbook\templates\url_import.html:103 -#: .\cookbook\templates\url_import.html:125 -#: .\cookbook\templates\url_import.html:319 -#: .\cookbook\templates\url_import.html:606 .\cookbook\views\delete.py:89 -#: .\cookbook\views\edit.py:197 +#: .\cookbook\templates\url_import.html:105 +#: .\cookbook\templates\url_import.html:127 +#: .\cookbook\templates\url_import.html:321 +#: .\cookbook\templates\url_import.html:609 .\cookbook\views\delete.py:89 +#: .\cookbook\views\edit.py:200 msgid "Import" msgstr "Importa" @@ -376,14 +451,14 @@ msgstr "Note" msgid "Nutritional Information" msgstr "Informazioni nutrizionali" -#: .\cookbook\integration\paprika.py:53 +#: .\cookbook\integration\paprika.py:53 .\cookbook\templates\url_import.html:40 msgid "Source" msgstr "Fonte" #: .\cookbook\integration\safron.py:23 #: .\cookbook\templates\include\log_cooking.html:16 -#: .\cookbook\templates\url_import.html:226 -#: .\cookbook\templates\url_import.html:457 +#: .\cookbook\templates\url_import.html:228 +#: .\cookbook\templates\url_import.html:459 msgid "Servings" msgstr "Porzioni" @@ -455,7 +530,7 @@ msgstr "Cerca" #: .\cookbook\models.py:203 .\cookbook\templates\base.html:82 #: .\cookbook\templates\meal_plan.html:7 #: .\cookbook\templates\meal_plan_new.html:7 .\cookbook\views\delete.py:181 -#: .\cookbook\views\edit.py:217 .\cookbook\views\new.py:180 +#: .\cookbook\views\edit.py:220 .\cookbook\views\new.py:184 msgid "Meal-Plan" msgstr "Piano alimentare" @@ -480,7 +555,7 @@ msgstr "Nuovo" msgid " is part of a recipe step and cannot be deleted" msgstr " è parte dello step di una ricetta e non può essere eliminato" -#: .\cookbook\models.py:441 +#: .\cookbook\models.py:441 .\cookbook\templates\url_import.html:42 msgid "Text" msgstr "Testo" @@ -488,14 +563,14 @@ msgstr "Testo" msgid "Time" msgstr "Tempo" -#: .\cookbook\models.py:441 +#: .\cookbook\models.py:441 .\cookbook\templates\url_import.html:44 msgid "File" msgstr "File" #: .\cookbook\models.py:441 #: .\cookbook\templates\include\recipe_open_modal.html:7 -#: .\cookbook\views\delete.py:39 .\cookbook\views\edit.py:257 -#: .\cookbook\views\new.py:52 +#: .\cookbook\views\delete.py:39 .\cookbook\views\edit.py:260 +#: .\cookbook\views\new.py:53 msgid "Recipe" msgstr "Ricetta" @@ -969,7 +1044,7 @@ msgstr "" "Aggiungi le parole chiave che desideri a tutte le ricette che contengono una " "determinata stringa" -#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:83 +#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:82 msgid "Sync" msgstr "Sincronizza" @@ -989,6 +1064,18 @@ msgstr "" msgid "The path must be in the following format" msgstr "Il percorso deve essere nel formato seguente" +#: .\cookbook\templates\batch\monitor.html:20 +#: .\cookbook\templates\forms\edit_import_recipe.html:14 +#: .\cookbook\templates\generic\edit_template.html:23 +#: .\cookbook\templates\generic\new_template.html:23 +#: .\cookbook\templates\include\log_cooking.html:28 +#: .\cookbook\templates\settings.html:63 .\cookbook\templates\settings.html:105 +#: .\cookbook\templates\settings.html:123 +#: .\cookbook\templates\settings.html:195 +#: .\cookbook\templates\shopping_list.html:360 +msgid "Save" +msgstr "Salva" + #: .\cookbook\templates\batch\monitor.html:21 msgid "Manage External Storage" msgstr "Gestisci archiviazione esterna" @@ -1035,17 +1122,6 @@ msgstr "Esporta Ricette" msgid "Import new Recipe" msgstr "Importa nuova Ricetta" -#: .\cookbook\templates\forms\edit_import_recipe.html:14 -#: .\cookbook\templates\generic\edit_template.html:23 -#: .\cookbook\templates\generic\new_template.html:23 -#: .\cookbook\templates\include\log_cooking.html:28 -#: .\cookbook\templates\settings.html:63 .\cookbook\templates\settings.html:105 -#: .\cookbook\templates\settings.html:123 -#: .\cookbook\templates\settings.html:195 -#: .\cookbook\templates\shopping_list.html:360 -msgid "Save" -msgstr "Salva" - #: .\cookbook\templates\forms\edit_internal_recipe.html:7 msgid "Edit Recipe" msgstr "Modifica Ricetta" @@ -1493,33 +1569,28 @@ msgstr "" "offline perché le hai aperte di recente. Ricorda che queste informazioni " "potrebbero non essere aggiornate." -#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\space.html:62 -#: .\cookbook\templates\stats.html:47 -msgid "Comments" -msgstr "Commenti" - #: .\cookbook\templates\recipe_view.html:26 msgid "by" msgstr "di" #: .\cookbook\templates\recipe_view.html:44 .\cookbook\views\delete.py:147 -#: .\cookbook\views\edit.py:177 +#: .\cookbook\views\edit.py:180 msgid "Comment" msgstr "Commento" #: .\cookbook\templates\recipes_table.html:19 #: .\cookbook\templates\recipes_table.html:23 -#: .\cookbook\templates\url_import.html:442 +#: .\cookbook\templates\url_import.html:444 msgid "Recipe Image" msgstr "Immagine ricetta" #: .\cookbook\templates\recipes_table.html:51 -#: .\cookbook\templates\url_import.html:447 +#: .\cookbook\templates\url_import.html:449 msgid "Preparation time ca." msgstr "Tempo di preparazione circa" #: .\cookbook\templates\recipes_table.html:57 -#: .\cookbook\templates\url_import.html:452 +#: .\cookbook\templates\url_import.html:454 msgid "Waiting time ca." msgstr "Tempo di cottura circa" @@ -1889,8 +1960,8 @@ msgstr "Seleziona unità di misura" #: .\cookbook\templates\shopping_list.html:218 #: .\cookbook\templates\shopping_list.html:248 #: .\cookbook\templates\shopping_list.html:272 -#: .\cookbook\templates\url_import.html:497 -#: .\cookbook\templates\url_import.html:529 +#: .\cookbook\templates\url_import.html:500 +#: .\cookbook\templates\url_import.html:532 msgid "Select" msgstr "Seleziona" @@ -2193,88 +2264,96 @@ msgstr "Spostami nei tuoi segnalibri per importare facilmente le ricette" msgid "Bookmark Me!" msgstr "Salvami nei preferiti!" -#: .\cookbook\templates\url_import.html:61 +#: .\cookbook\templates\url_import.html:36 +msgid "URL" +msgstr "" + +#: .\cookbook\templates\url_import.html:38 +msgid "App" +msgstr "" + +#: .\cookbook\templates\url_import.html:62 msgid "Enter website URL" msgstr "Inserisci l'indirizzo del sito web" -#: .\cookbook\templates\url_import.html:99 +#: .\cookbook\templates\url_import.html:101 msgid "Select recipe files to import or drop them here..." msgstr "Seleziona i file delle ricette da importare o spostarli qui..." -#: .\cookbook\templates\url_import.html:120 +#: .\cookbook\templates\url_import.html:122 msgid "Paste json or html source here to load recipe." msgstr "Incolla qui il codice html o json per caricare una ricetta." -#: .\cookbook\templates\url_import.html:148 +#: .\cookbook\templates\url_import.html:150 msgid "Preview Recipe Data" msgstr "Anteprima dati della ricetta" -#: .\cookbook\templates\url_import.html:149 +#: .\cookbook\templates\url_import.html:151 msgid "Drag recipe attributes from the right into the appropriate box below." msgstr "Trascina gli attributi della ricetta da destra nella casella in basso." -#: .\cookbook\templates\url_import.html:158 -#: .\cookbook\templates\url_import.html:175 -#: .\cookbook\templates\url_import.html:192 -#: .\cookbook\templates\url_import.html:211 -#: .\cookbook\templates\url_import.html:229 -#: .\cookbook\templates\url_import.html:244 -#: .\cookbook\templates\url_import.html:259 -#: .\cookbook\templates\url_import.html:275 -#: .\cookbook\templates\url_import.html:302 -#: .\cookbook\templates\url_import.html:353 +#: .\cookbook\templates\url_import.html:160 +#: .\cookbook\templates\url_import.html:177 +#: .\cookbook\templates\url_import.html:194 +#: .\cookbook\templates\url_import.html:213 +#: .\cookbook\templates\url_import.html:231 +#: .\cookbook\templates\url_import.html:246 +#: .\cookbook\templates\url_import.html:261 +#: .\cookbook\templates\url_import.html:277 +#: .\cookbook\templates\url_import.html:304 +#: .\cookbook\templates\url_import.html:355 msgid "Clear Contents" msgstr "Cancella il contenuto" -#: .\cookbook\templates\url_import.html:160 +#: .\cookbook\templates\url_import.html:162 msgid "Text dragged here will be appended to the name." msgstr "Il testo trascinato qui sarà aggiunto al nome." -#: .\cookbook\templates\url_import.html:173 +#: .\cookbook\templates\url_import.html:175 msgid "Description" msgstr "Descrizione" -#: .\cookbook\templates\url_import.html:177 +#: .\cookbook\templates\url_import.html:179 msgid "Text dragged here will be appended to the description." msgstr "Il testo trascinato qui sarà aggiunto alla descrizione." -#: .\cookbook\templates\url_import.html:194 +#: .\cookbook\templates\url_import.html:196 msgid "Keywords dragged here will be appended to current list" msgstr "Le parole chiave trascinate qui saranno aggiunte alla lista corrente" -#: .\cookbook\templates\url_import.html:209 +#: .\cookbook\templates\url_import.html:211 msgid "Image" msgstr "Immagine" -#: .\cookbook\templates\url_import.html:241 +#: .\cookbook\templates\url_import.html:243 msgid "Prep Time" msgstr "Tempo di preparazione" -#: .\cookbook\templates\url_import.html:256 +#: .\cookbook\templates\url_import.html:258 msgid "Cook Time" msgstr "Tempo di cottura" -#: .\cookbook\templates\url_import.html:277 +#: .\cookbook\templates\url_import.html:279 msgid "Ingredients dragged here will be appended to current list." msgstr "Gli ingredienti trascinati qui saranno aggiunti alla lista corrente." -#: .\cookbook\templates\url_import.html:299 -#: .\cookbook\templates\url_import.html:569 +#: .\cookbook\templates\url_import.html:301 +#: .\cookbook\templates\url_import.html:572 msgid "Instructions" msgstr "Istruzioni" -#: .\cookbook\templates\url_import.html:304 +#: .\cookbook\templates\url_import.html:306 msgid "" "Recipe instructions dragged here will be appended to current instructions." msgstr "" "Le istruzioni per la ricetta trascinate qui saranno aggiunte alle istruzioni " "correnti." -#: .\cookbook\templates\url_import.html:327 +#: .\cookbook\templates\url_import.html:329 msgid "Discovered Attributes" msgstr "Attributi trovati" -#: .\cookbook\templates\url_import.html:329 +#: .\cookbook\templates\url_import.html:331 msgid "" "Drag recipe attributes from below into the appropriate box on the left. " "Click any node to display its full properties." @@ -2282,61 +2361,61 @@ msgstr "" "Trascina gli attributi delle ricette dal basso nella casella sulla sinistra. " "Clicca su qualsiasi nodo per mostrare le sue proprietà complete." -#: .\cookbook\templates\url_import.html:346 +#: .\cookbook\templates\url_import.html:348 msgid "Show Blank Field" msgstr "Mostra campo vuoto" -#: .\cookbook\templates\url_import.html:351 +#: .\cookbook\templates\url_import.html:353 msgid "Blank Field" msgstr "Campo vuoto" -#: .\cookbook\templates\url_import.html:355 +#: .\cookbook\templates\url_import.html:357 msgid "Items dragged to Blank Field will be appended." msgstr "Gli elementi trascinati nel campo vuoto saranno ignorati." -#: .\cookbook\templates\url_import.html:402 +#: .\cookbook\templates\url_import.html:404 msgid "Delete Text" msgstr "Elimina testo" -#: .\cookbook\templates\url_import.html:415 +#: .\cookbook\templates\url_import.html:417 msgid "Delete image" msgstr "Elimina immagine" -#: .\cookbook\templates\url_import.html:431 +#: .\cookbook\templates\url_import.html:433 msgid "Recipe Name" msgstr "Nome Ricetta" -#: .\cookbook\templates\url_import.html:435 +#: .\cookbook\templates\url_import.html:437 msgid "Recipe Description" msgstr "Descrizione ricetta" -#: .\cookbook\templates\url_import.html:496 -#: .\cookbook\templates\url_import.html:528 -#: .\cookbook\templates\url_import.html:584 +#: .\cookbook\templates\url_import.html:499 +#: .\cookbook\templates\url_import.html:531 +#: .\cookbook\templates\url_import.html:587 msgid "Select one" msgstr "Seleziona un elemento" -#: .\cookbook\templates\url_import.html:544 +#: .\cookbook\templates\url_import.html:547 msgid "Note" msgstr "Nota" -#: .\cookbook\templates\url_import.html:585 +#: .\cookbook\templates\url_import.html:588 msgid "Add Keyword" msgstr "Aggiungi parole chiave" -#: .\cookbook\templates\url_import.html:598 +#: .\cookbook\templates\url_import.html:601 msgid "All Keywords" msgstr "Tutte le parole chiave" -#: .\cookbook\templates\url_import.html:601 +#: .\cookbook\templates\url_import.html:604 msgid "Import all keywords, not only the ones already existing." msgstr "Importa tutte le parole chiave, non solo quelle che già esistono." -#: .\cookbook\templates\url_import.html:628 +#: .\cookbook\templates\url_import.html:631 msgid "Information" msgstr "Informazioni" -#: .\cookbook\templates\url_import.html:630 +#: .\cookbook\templates\url_import.html:633 msgid "" " Only websites containing ld+json or microdata information can currently\n" " be imported. Most big recipe pages " @@ -2354,108 +2433,111 @@ msgstr "" "struttura dati, puoi inviare un esempio nella sezione Issues \n" " su GitHub." -#: .\cookbook\templates\url_import.html:638 +#: .\cookbook\templates\url_import.html:641 msgid "Google ld+json Info" msgstr "Info Google Id+json" -#: .\cookbook\templates\url_import.html:641 +#: .\cookbook\templates\url_import.html:644 msgid "GitHub Issues" msgstr "Issues (Problemi aperti) su GitHub" -#: .\cookbook\templates\url_import.html:643 +#: .\cookbook\templates\url_import.html:646 msgid "Recipe Markup Specification" msgstr "Specifica di Markup della ricetta" -#: .\cookbook\views\api.py:82 .\cookbook\views\api.py:131 +#: .\cookbook\views\api.py:83 .\cookbook\views\api.py:132 msgid "Parameter updated_at incorrectly formatted" msgstr "Il parametro updated_at non è formattato correttamente" -#: .\cookbook\views\api.py:151 +#: .\cookbook\views\api.py:152 #, python-brace-format msgid "No {self.basename} with id {pk} exists" msgstr "Non esiste nessun {self.basename} con id {pk}" -#: .\cookbook\views\api.py:155 +#: .\cookbook\views\api.py:156 msgid "Cannot merge with the same object!" msgstr "Non è possibile unirlo con lo stesso oggetto!" -#: .\cookbook\views\api.py:162 +#: .\cookbook\views\api.py:163 #, python-brace-format msgid "No {self.basename} with id {target} exists" msgstr "Non esiste nessun {self.basename} con id {target}" -#: .\cookbook\views\api.py:167 +#: .\cookbook\views\api.py:168 #, fuzzy #| msgid "Cannot merge with the same object!" msgid "Cannot merge with child object!" msgstr "Non è possibile unirlo con lo stesso oggetto!" -#: .\cookbook\views\api.py:200 +#: .\cookbook\views\api.py:201 #, python-brace-format msgid "{source.name} was merged successfully with {target.name}" msgstr "{source.name} è stato unito con successo a {target.name}" -#: .\cookbook\views\api.py:204 +#: .\cookbook\views\api.py:205 #, python-brace-format msgid "An error occurred attempting to merge {source.name} with {target.name}" msgstr "" "Si è verificato un errore durante l'unione di {source.name} con {target.name}" -#: .\cookbook\views\api.py:248 +#: .\cookbook\views\api.py:249 #, python-brace-format msgid "No {self.basename} with id {child} exists" msgstr "Non esiste nessun {self.basename} con id {child}" -#: .\cookbook\views\api.py:257 +#: .\cookbook\views\api.py:258 #, python-brace-format msgid "{child.name} was moved successfully to the root." msgstr "{child.name} è stato spostato con successo alla radice." -#: .\cookbook\views\api.py:260 .\cookbook\views\api.py:278 +#: .\cookbook\views\api.py:261 .\cookbook\views\api.py:279 msgid "An error occurred attempting to move " msgstr "Si è verificato un errore durante lo spostamento " -#: .\cookbook\views\api.py:263 +#: .\cookbook\views\api.py:264 msgid "Cannot move an object to itself!" msgstr "Non è possibile muovere un oggetto a sé stesso!" -#: .\cookbook\views\api.py:269 +#: .\cookbook\views\api.py:270 #, python-brace-format msgid "No {self.basename} with id {parent} exists" msgstr "Non esiste nessun {self.basename} con id {parent}" -#: .\cookbook\views\api.py:275 +#: .\cookbook\views\api.py:276 #, python-brace-format msgid "{child.name} was moved successfully to parent {parent.name}" msgstr "{child.name} è stato spostato con successo al primario {parent.name}" -#: .\cookbook\views\api.py:723 .\cookbook\views\views.py:277 -msgid "This feature is not available in the demo version!" +#: .\cookbook\views\api.py:723 .\cookbook\views\data.py:42 +#: .\cookbook\views\edit.py:129 .\cookbook\views\new.py:95 +#, fuzzy +#| msgid "This feature is not available in the demo version!" +msgid "This feature is not yet available in the hosted version of tandoor!" msgstr "Questa funzione non è disponibile nella versione demo!" -#: .\cookbook\views\api.py:746 +#: .\cookbook\views\api.py:745 msgid "Sync successful!" msgstr "Sincronizzazione completata con successo!" -#: .\cookbook\views\api.py:751 +#: .\cookbook\views\api.py:750 msgid "Error synchronizing with Storage" msgstr "Errore di sincronizzazione con questo backend" -#: .\cookbook\views\api.py:829 +#: .\cookbook\views\api.py:828 msgid "Nothing to do." msgstr "Nulla da fare." -#: .\cookbook\views\api.py:844 +#: .\cookbook\views\api.py:843 msgid "The requested site provided malformed data and cannot be read." msgstr "" "Il sito richiesto ha fornito dati in formato non corretto e non può essere " "letto." -#: .\cookbook\views\api.py:851 +#: .\cookbook\views\api.py:850 msgid "The requested page could not be found." msgstr "La pagina richiesta non è stata trovata." -#: .\cookbook\views\api.py:860 +#: .\cookbook\views\api.py:859 msgid "" "The requested site does not provide any recognized data format to import the " "recipe from." @@ -2463,27 +2545,27 @@ msgstr "" "Il sito richiesto non fornisce un formato di dati riconosciuto da cui " "importare la ricetta." -#: .\cookbook\views\api.py:874 +#: .\cookbook\views\api.py:873 msgid "No useable data could be found." msgstr "Nessuna informazione utilizzabile è stata trovata." -#: .\cookbook\views\api.py:890 +#: .\cookbook\views\api.py:889 msgid "I couldn't find anything to do." msgstr "Non è stato trovato nulla da fare." -#: .\cookbook\views\data.py:33 .\cookbook\views\data.py:124 -#: .\cookbook\views\edit.py:50 .\cookbook\views\import_export.py:73 -#: .\cookbook\views\new.py:32 +#: .\cookbook\views\data.py:34 .\cookbook\views\data.py:129 +#: .\cookbook\views\edit.py:49 .\cookbook\views\import_export.py:73 +#: .\cookbook\views\new.py:33 msgid "You have reached the maximum number of recipes for your space." msgstr "Hai raggiunto il numero massimo di ricette nella tua istanza." -#: .\cookbook\views\data.py:37 .\cookbook\views\data.py:128 -#: .\cookbook\views\edit.py:54 .\cookbook\views\import_export.py:77 -#: .\cookbook\views\new.py:36 +#: .\cookbook\views\data.py:38 .\cookbook\views\data.py:133 +#: .\cookbook\views\edit.py:53 .\cookbook\views\import_export.py:77 +#: .\cookbook\views\new.py:37 msgid "You have more users than allowed in your space." msgstr "Hai più utenti di quanti permessi nella tua istanza." -#: .\cookbook\views\data.py:106 +#: .\cookbook\views\data.py:111 #, python-format msgid "Batch edit done. %(count)d recipe was updated." msgid_plural "Batch edit done. %(count)d Recipes where updated." @@ -2496,7 +2578,7 @@ msgid "Monitor" msgstr "Monitoraggio" #: .\cookbook\views\delete.py:125 .\cookbook\views\lists.py:86 -#: .\cookbook\views\new.py:97 +#: .\cookbook\views\new.py:101 msgid "Storage Backend" msgstr "Backend di archiviazione" @@ -2515,33 +2597,29 @@ msgstr "Libro delle ricette" msgid "Bookmarks" msgstr "Preferiti" -#: .\cookbook\views\delete.py:192 .\cookbook\views\new.py:231 +#: .\cookbook\views\delete.py:192 .\cookbook\views\new.py:235 msgid "Invite Link" msgstr "Link di invito" -#: .\cookbook\views\edit.py:126 +#: .\cookbook\views\edit.py:125 msgid "You cannot edit this storage!" msgstr "Non puoi modificare questo backend!" -#: .\cookbook\views\edit.py:146 +#: .\cookbook\views\edit.py:149 msgid "Storage saved!" msgstr "Backend salvato!" -#: .\cookbook\views\edit.py:152 +#: .\cookbook\views\edit.py:155 msgid "There was an error updating this storage backend!" msgstr "" "Si è verificato un errore durante l'aggiornamento di questo backend di " "archiviazione!" -#: .\cookbook\views\edit.py:163 -msgid "Storage" -msgstr "Archiviazione" - -#: .\cookbook\views\edit.py:245 +#: .\cookbook\views\edit.py:248 msgid "Changes saved!" msgstr "Modifiche salvate!" -#: .\cookbook\views\edit.py:249 +#: .\cookbook\views\edit.py:252 msgid "Error saving changes!" msgstr "Si è verificato un errore durante il salvataggio delle modifiche!" @@ -2589,57 +2667,57 @@ msgstr "Ricette per la spesa" msgid "New Shopping List" msgstr "Lista della spesa" -#: .\cookbook\views\new.py:122 +#: .\cookbook\views\new.py:126 msgid "Imported new recipe!" msgstr "La nuova ricetta è stata importata!" -#: .\cookbook\views\new.py:125 +#: .\cookbook\views\new.py:129 msgid "There was an error importing this recipe!" msgstr "Si è verificato un errore durante l'importazione di questa ricetta!" -#: .\cookbook\views\new.py:205 +#: .\cookbook\views\new.py:209 msgid "Hello" msgstr "Ciao" -#: .\cookbook\views\new.py:205 +#: .\cookbook\views\new.py:209 msgid "You have been invited by " msgstr "Sei stato invitato da " -#: .\cookbook\views\new.py:206 +#: .\cookbook\views\new.py:210 msgid " to join their Tandoor Recipes space " msgstr " per entrare nella sua istanza di Tandoor Recipes " -#: .\cookbook\views\new.py:207 +#: .\cookbook\views\new.py:211 msgid "Click the following link to activate your account: " msgstr "Clicca il link qui di seguito per attivare il tuo account: " -#: .\cookbook\views\new.py:208 +#: .\cookbook\views\new.py:212 msgid "" "If the link does not work use the following code to manually join the space: " msgstr "" "Se il link non funziona, usa il seguente codice per entrare manualmente " "nell'istanza: " -#: .\cookbook\views\new.py:209 +#: .\cookbook\views\new.py:213 msgid "The invitation is valid until " msgstr "L'invito è valido fino al " -#: .\cookbook\views\new.py:210 +#: .\cookbook\views\new.py:214 msgid "" "Tandoor Recipes is an Open Source recipe manager. Check it out on GitHub " msgstr "" "Tandoor Recipes è un gestore di ricette Open Source. Dagli una occhiata su " "GitHub " -#: .\cookbook\views\new.py:213 +#: .\cookbook\views\new.py:217 msgid "Tandoor Recipes Invite" msgstr "Invito per Tandoor Recipes" -#: .\cookbook\views\new.py:220 +#: .\cookbook\views\new.py:224 msgid "Invite link successfully send to user." msgstr "Link di invito inviato con successo all'utente." -#: .\cookbook\views\new.py:223 +#: .\cookbook\views\new.py:227 msgid "" "You have send to many emails, please share the link manually or wait a few " "hours." @@ -2647,7 +2725,7 @@ msgstr "" "Hai mandato troppe email, condividi il link manualmente o aspetta qualche " "ora." -#: .\cookbook\views\new.py:225 +#: .\cookbook\views\new.py:229 msgid "Email to user could not be send, please share link manually." msgstr "" "Non è stato possibile inviare l'email all'utente, condividi il link " @@ -2669,6 +2747,10 @@ msgstr "Non hai i permessi necessari per completare questa operazione!" msgid "Comment saved!" msgstr "Commento salvato!" +#: .\cookbook\views\views.py:277 +msgid "This feature is not available in the demo version!" +msgstr "Questa funzione non è disponibile nella versione demo!" + #: .\cookbook\views\views.py:340 msgid "You must select at least one field to search!" msgstr "Devi selezionare almeno un campo da cercare!" @@ -2783,9 +2865,6 @@ msgstr "" #~ msgid "Create only note" #~ msgstr "Crea solo una nota" -#~ msgid "Shopping list currently empty" -#~ msgstr "La lista della spesa è vuota" - #~ msgid "Plan" #~ msgstr "Piano" diff --git a/cookbook/locale/lv/LC_MESSAGES/django.po b/cookbook/locale/lv/LC_MESSAGES/django.po index 3cb22609d..32c73064e 100644 --- a/cookbook/locale/lv/LC_MESSAGES/django.po +++ b/cookbook/locale/lv/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-04 14:56+0100\n" +"POT-Creation-Date: 2021-11-07 17:31+0100\n" "PO-Revision-Date: 2020-06-02 19:28+0000\n" "Last-Translator: vabene1111 , 2021\n" "Language-Team: Latvian (https://www.transifex.com/django-recipes/" @@ -26,11 +26,74 @@ msgstr "" #: .\cookbook\filters.py:23 .\cookbook\templates\base.html:125 #: .\cookbook\templates\forms\ingredients.html:34 #: .\cookbook\templates\space.html:43 .\cookbook\templates\stats.html:28 -#: .\cookbook\templates\url_import.html:272 +#: .\cookbook\templates\url_import.html:274 msgid "Ingredients" msgstr "Sastāvdaļas" -#: .\cookbook\forms.py:53 +#: .\cookbook\forms.py:54 +msgid "Default unit" +msgstr "" + +#: .\cookbook\forms.py:55 +#, fuzzy +#| msgid "System Information" +msgid "Use fractions" +msgstr "Sistēmas informācija" + +#: .\cookbook\forms.py:56 +msgid "Use KJ" +msgstr "" + +#: .\cookbook\forms.py:57 +msgid "Theme" +msgstr "" + +#: .\cookbook\forms.py:58 +msgid "Navbar color" +msgstr "" + +#: .\cookbook\forms.py:59 +msgid "Sticky navbar" +msgstr "" + +#: .\cookbook\forms.py:60 +msgid "Default page" +msgstr "" + +#: .\cookbook\forms.py:61 +#, fuzzy +#| msgid "Shopping Recipes" +msgid "Show recent recipes" +msgstr "Iepirkšanās receptes" + +#: .\cookbook\forms.py:62 +#, fuzzy +#| msgid "Search" +msgid "Search style" +msgstr "Meklēt" + +#: .\cookbook\forms.py:63 +msgid "Plan sharing" +msgstr "" + +#: .\cookbook\forms.py:64 +#, fuzzy +#| msgid "Ingredients" +msgid "Ingredient decimal places" +msgstr "Sastāvdaļas" + +#: .\cookbook\forms.py:65 +#, fuzzy +#| msgid "Shopping list currently empty" +msgid "Shopping list auto sync period" +msgstr "Iepirkumu saraksts pašlaik ir tukšs" + +#: .\cookbook\forms.py:66 .\cookbook\templates\recipe_view.html:21 +#: .\cookbook\templates\space.html:62 .\cookbook\templates\stats.html:47 +msgid "Comments" +msgstr "Komentāri" + +#: .\cookbook\forms.py:70 msgid "" "Color of the top navigation bar. Not all colors work with all themes, just " "try them out!" @@ -38,11 +101,11 @@ msgstr "" "Augšējās navigācijas joslas krāsa. Ne visas krāsas darbojas ar visām tēmām, " "vienkārši izmēģiniet tās!" -#: .\cookbook\forms.py:55 +#: .\cookbook\forms.py:72 msgid "Default Unit to be used when inserting a new ingredient into a recipe." msgstr "Noklusējuma vienība, ko izmantot, ievietojot receptē jaunu sastāvdaļu." -#: .\cookbook\forms.py:57 +#: .\cookbook\forms.py:74 msgid "" "Enables support for fractions in ingredient amounts (e.g. convert decimals " "to fractions automatically)" @@ -50,11 +113,11 @@ msgstr "" "Iespējot daļskaitļus sastāvdaļu daudzumos (piemēram, decimāldaļas " "automātiski pārveidot par daļskaitļiem)" -#: .\cookbook\forms.py:59 +#: .\cookbook\forms.py:76 msgid "Display nutritional energy amounts in joules instead of calories" msgstr "" -#: .\cookbook\forms.py:61 +#: .\cookbook\forms.py:78 msgid "" "Users with whom newly created meal plan/shopping list entries should be " "shared by default." @@ -62,20 +125,20 @@ msgstr "" "Lietotāji, ar kuriem jaunizveidotie maltīšu saraksti/iepirkumu saraksti tiks " "kopīgoti pēc noklusējuma." -#: .\cookbook\forms.py:63 +#: .\cookbook\forms.py:80 msgid "Show recently viewed recipes on search page." msgstr "Parādīt nesen skatītās receptes meklēšanas lapā." -#: .\cookbook\forms.py:64 +#: .\cookbook\forms.py:81 msgid "Number of decimals to round ingredients." msgstr "Ciparu skaits pēc komata decimāldaļām sastāvdaļās." -#: .\cookbook\forms.py:65 +#: .\cookbook\forms.py:82 msgid "If you want to be able to create and see comments underneath recipes." msgstr "" "Ja vēlaties, lai jūs varētu izveidot un redzēt komentārus zem receptēm." -#: .\cookbook\forms.py:67 +#: .\cookbook\forms.py:84 msgid "" "Setting to 0 will disable auto sync. When viewing a shopping list the list " "is updated every set seconds to sync changes someone else might have made. " @@ -89,11 +152,11 @@ msgstr "" "Ja tas ir zemāks par instances ierobežojumu, tas tiek atiestatīts, " "saglabājot." -#: .\cookbook\forms.py:70 +#: .\cookbook\forms.py:87 msgid "Makes the navbar stick to the top of the page." msgstr "" -#: .\cookbook\forms.py:86 +#: .\cookbook\forms.py:103 msgid "" "Both fields are optional. If none are given the username will be displayed " "instead" @@ -101,57 +164,57 @@ msgstr "" "Abi lauki nav obligāti. Ja neviens nav norādīts, tā vietā tiks parādīts " "lietotājvārds" -#: .\cookbook\forms.py:107 .\cookbook\forms.py:266 -#: .\cookbook\templates\url_import.html:156 +#: .\cookbook\forms.py:124 .\cookbook\forms.py:289 +#: .\cookbook\templates\url_import.html:158 msgid "Name" msgstr "Vārds" -#: .\cookbook\forms.py:108 .\cookbook\forms.py:267 +#: .\cookbook\forms.py:125 .\cookbook\forms.py:290 #: .\cookbook\templates\space.html:39 .\cookbook\templates\stats.html:24 -#: .\cookbook\templates\url_import.html:190 -#: .\cookbook\templates\url_import.html:575 .\cookbook\views\lists.py:112 +#: .\cookbook\templates\url_import.html:192 +#: .\cookbook\templates\url_import.html:578 .\cookbook\views\lists.py:112 msgid "Keywords" msgstr "Atslēgvārdi" -#: .\cookbook\forms.py:109 +#: .\cookbook\forms.py:126 msgid "Preparation time in minutes" msgstr "Pagatavošanas laiks minūtēs" -#: .\cookbook\forms.py:110 +#: .\cookbook\forms.py:127 msgid "Waiting time (cooking/baking) in minutes" msgstr "Gaidīšanas laiks (vārīšana / cepšana) minūtēs" -#: .\cookbook\forms.py:111 .\cookbook\forms.py:268 +#: .\cookbook\forms.py:128 .\cookbook\forms.py:259 .\cookbook\forms.py:291 msgid "Path" msgstr "Ceļš" -#: .\cookbook\forms.py:112 +#: .\cookbook\forms.py:129 msgid "Storage UID" msgstr "Krātuves UID" -#: .\cookbook\forms.py:140 +#: .\cookbook\forms.py:157 msgid "Default" msgstr "" -#: .\cookbook\forms.py:151 .\cookbook\templates\url_import.html:92 +#: .\cookbook\forms.py:168 .\cookbook\templates\url_import.html:94 msgid "" "To prevent duplicates recipes with the same name as existing ones are " "ignored. Check this box to import everything." msgstr "" -#: .\cookbook\forms.py:173 +#: .\cookbook\forms.py:190 msgid "Add your comment: " msgstr "Pievienot komentāru: " -#: .\cookbook\forms.py:188 +#: .\cookbook\forms.py:205 msgid "Leave empty for dropbox and enter app password for nextcloud." msgstr "Atstājiet tukšu Dropbox un ievadiet lietotnes paroli Nextcloud." -#: .\cookbook\forms.py:195 +#: .\cookbook\forms.py:212 msgid "Leave empty for nextcloud and enter api token for dropbox." msgstr "Atstājiet tukšu Nextcloud un ievadiet API tokenu Dropbox." -#: .\cookbook\forms.py:204 +#: .\cookbook\forms.py:221 msgid "" "Leave empty for dropbox and enter only base url for nextcloud (/remote." "php/webdav/ is added automatically)" @@ -159,25 +222,33 @@ msgstr "" "Atstājiet tukšu Dropbox un ievadiet tikai Nextcloud bāzes URL ( /" "remote.php/webdav/ tiek pievienots automātiski)" -#: .\cookbook\forms.py:242 +#: .\cookbook\forms.py:258 .\cookbook\views\edit.py:166 +msgid "Storage" +msgstr "Krātuve" + +#: .\cookbook\forms.py:260 +msgid "Active" +msgstr "" + +#: .\cookbook\forms.py:265 msgid "Search String" msgstr "Meklēšanas virkne" -#: .\cookbook\forms.py:269 +#: .\cookbook\forms.py:292 msgid "File ID" msgstr "Faila ID" -#: .\cookbook\forms.py:290 +#: .\cookbook\forms.py:313 msgid "You must provide at least a recipe or a title." msgstr "Jums jānorāda vismaz recepte vai nosaukums." -#: .\cookbook\forms.py:303 +#: .\cookbook\forms.py:326 msgid "You can list default users to share recipes with in the settings." msgstr "" "Iestatījumos varat uzskaitīt noklusējuma lietotājus, ar kuriem koplietot " "receptes." -#: .\cookbook\forms.py:304 +#: .\cookbook\forms.py:327 msgid "" "You can use markdown to format this field. See the docs here" @@ -185,105 +256,105 @@ msgstr "" "Lai formatētu šo lauku, varat izmantot Markdown. Skatiet dokumentus šeit " -#: .\cookbook\forms.py:329 +#: .\cookbook\forms.py:353 msgid "Maximum number of users for this space reached." msgstr "" -#: .\cookbook\forms.py:335 +#: .\cookbook\forms.py:359 msgid "Email address already taken!" msgstr "" -#: .\cookbook\forms.py:343 +#: .\cookbook\forms.py:367 msgid "" "An email address is not required but if present the invite link will be send " "to the user." msgstr "" -#: .\cookbook\forms.py:358 +#: .\cookbook\forms.py:382 msgid "Name already taken." msgstr "" -#: .\cookbook\forms.py:369 +#: .\cookbook\forms.py:393 msgid "Accept Terms and Privacy" msgstr "" -#: .\cookbook\forms.py:399 +#: .\cookbook\forms.py:425 msgid "" "Determines how fuzzy a search is if it uses trigram similarity matching (e." "g. low values mean more typos are ignored)." msgstr "" -#: .\cookbook\forms.py:407 +#: .\cookbook\forms.py:435 msgid "" "Select type method of search. Click here for " "full desciption of choices." msgstr "" -#: .\cookbook\forms.py:408 +#: .\cookbook\forms.py:436 msgid "" "Use fuzzy matching on units, keywords and ingredients when editing and " "importing recipes." msgstr "" -#: .\cookbook\forms.py:409 +#: .\cookbook\forms.py:438 msgid "" "Fields to search ignoring accents. Selecting this option can improve or " "degrade search quality depending on language" msgstr "" -#: .\cookbook\forms.py:410 +#: .\cookbook\forms.py:440 msgid "" "Fields to search for partial matches. (e.g. searching for 'Pie' will return " "'pie' and 'piece' and 'soapie')" msgstr "" -#: .\cookbook\forms.py:411 +#: .\cookbook\forms.py:442 msgid "" "Fields to search for beginning of word matches. (e.g. searching for 'sa' " "will return 'salad' and 'sandwich')" msgstr "" -#: .\cookbook\forms.py:412 +#: .\cookbook\forms.py:444 msgid "" "Fields to 'fuzzy' search. (e.g. searching for 'recpie' will find 'recipe'.) " "Note: this option will conflict with 'web' and 'raw' methods of search." msgstr "" -#: .\cookbook\forms.py:413 +#: .\cookbook\forms.py:446 msgid "" "Fields to full text search. Note: 'web', 'phrase', and 'raw' search methods " "only function with fulltext fields." msgstr "" -#: .\cookbook\forms.py:417 +#: .\cookbook\forms.py:450 #, fuzzy #| msgid "Search" msgid "Search Method" msgstr "Meklēt" -#: .\cookbook\forms.py:418 +#: .\cookbook\forms.py:451 msgid "Fuzzy Lookups" msgstr "" -#: .\cookbook\forms.py:419 +#: .\cookbook\forms.py:452 msgid "Ignore Accent" msgstr "" -#: .\cookbook\forms.py:420 +#: .\cookbook\forms.py:453 msgid "Partial Match" msgstr "" -#: .\cookbook\forms.py:421 +#: .\cookbook\forms.py:454 msgid "Starts Wtih" msgstr "" -#: .\cookbook\forms.py:422 +#: .\cookbook\forms.py:455 #, fuzzy #| msgid "Search" msgid "Fuzzy Search" msgstr "Meklēt" -#: .\cookbook\forms.py:423 +#: .\cookbook\forms.py:456 #, fuzzy #| msgid "Text" msgid "Full Text" @@ -306,7 +377,7 @@ msgstr "Jūs neesat pieteicies un tāpēc nevarat skatīt šo lapu!" #: .\cookbook\helper\permission_helper.py:216 #: .\cookbook\helper\permission_helper.py:230 #: .\cookbook\helper\permission_helper.py:241 -#: .\cookbook\helper\permission_helper.py:252 .\cookbook\views\data.py:42 +#: .\cookbook\helper\permission_helper.py:252 .\cookbook\views\data.py:47 #: .\cookbook\views\views.py:160 .\cookbook\views\views.py:167 #: .\cookbook\views\views.py:233 msgid "You do not have the required permissions to view this page!" @@ -328,11 +399,11 @@ msgstr "" #: .\cookbook\templates\import_response.html:7 #: .\cookbook\templates\test.html:14 .\cookbook\templates\test.html:20 #: .\cookbook\templates\url_import.html:27 -#: .\cookbook\templates\url_import.html:103 -#: .\cookbook\templates\url_import.html:125 -#: .\cookbook\templates\url_import.html:319 -#: .\cookbook\templates\url_import.html:606 .\cookbook\views\delete.py:89 -#: .\cookbook\views\edit.py:197 +#: .\cookbook\templates\url_import.html:105 +#: .\cookbook\templates\url_import.html:127 +#: .\cookbook\templates\url_import.html:321 +#: .\cookbook\templates\url_import.html:609 .\cookbook\views\delete.py:89 +#: .\cookbook\views\edit.py:200 msgid "Import" msgstr "Importēt" @@ -370,14 +441,14 @@ msgstr "Piezīme" msgid "Nutritional Information" msgstr "Informācija" -#: .\cookbook\integration\paprika.py:53 +#: .\cookbook\integration\paprika.py:53 .\cookbook\templates\url_import.html:40 msgid "Source" msgstr "" #: .\cookbook\integration\safron.py:23 #: .\cookbook\templates\include\log_cooking.html:16 -#: .\cookbook\templates\url_import.html:226 -#: .\cookbook\templates\url_import.html:457 +#: .\cookbook\templates\url_import.html:228 +#: .\cookbook\templates\url_import.html:459 msgid "Servings" msgstr "Porciju skaits" @@ -445,7 +516,7 @@ msgstr "Meklēt" #: .\cookbook\models.py:203 .\cookbook\templates\base.html:82 #: .\cookbook\templates\meal_plan.html:7 #: .\cookbook\templates\meal_plan_new.html:7 .\cookbook\views\delete.py:181 -#: .\cookbook\views\edit.py:217 .\cookbook\views\new.py:180 +#: .\cookbook\views\edit.py:220 .\cookbook\views\new.py:184 msgid "Meal-Plan" msgstr "Maltīšu plāns" @@ -470,7 +541,7 @@ msgstr "Jauns" msgid " is part of a recipe step and cannot be deleted" msgstr "" -#: .\cookbook\models.py:441 +#: .\cookbook\models.py:441 .\cookbook\templates\url_import.html:42 msgid "Text" msgstr "Teskts" @@ -478,7 +549,7 @@ msgstr "Teskts" msgid "Time" msgstr "Laiks" -#: .\cookbook\models.py:441 +#: .\cookbook\models.py:441 .\cookbook\templates\url_import.html:44 #, fuzzy #| msgid "File ID" msgid "File" @@ -486,8 +557,8 @@ msgstr "Faila ID" #: .\cookbook\models.py:441 #: .\cookbook\templates\include\recipe_open_modal.html:7 -#: .\cookbook\views\delete.py:39 .\cookbook\views\edit.py:257 -#: .\cookbook\views\new.py:52 +#: .\cookbook\views\delete.py:39 .\cookbook\views\edit.py:260 +#: .\cookbook\views\new.py:53 msgid "Recipe" msgstr "Recepte" @@ -961,7 +1032,7 @@ msgid "Add the specified keywords to all recipes containing a word" msgstr "" "Pievienojiet norādītos atslēgvārdus visām receptēm, kurās ir atrodams vārds" -#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:83 +#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:82 msgid "Sync" msgstr "Sinhronizēt" @@ -981,6 +1052,18 @@ msgstr "" msgid "The path must be in the following format" msgstr "Ceļam jābūt šādā formātā" +#: .\cookbook\templates\batch\monitor.html:20 +#: .\cookbook\templates\forms\edit_import_recipe.html:14 +#: .\cookbook\templates\generic\edit_template.html:23 +#: .\cookbook\templates\generic\new_template.html:23 +#: .\cookbook\templates\include\log_cooking.html:28 +#: .\cookbook\templates\settings.html:63 .\cookbook\templates\settings.html:105 +#: .\cookbook\templates\settings.html:123 +#: .\cookbook\templates\settings.html:195 +#: .\cookbook\templates\shopping_list.html:360 +msgid "Save" +msgstr "Saglabāt" + #: .\cookbook\templates\batch\monitor.html:21 msgid "Manage External Storage" msgstr "" @@ -1027,17 +1110,6 @@ msgstr "Eksportēt receptes" msgid "Import new Recipe" msgstr "Importēt jaunu recepti" -#: .\cookbook\templates\forms\edit_import_recipe.html:14 -#: .\cookbook\templates\generic\edit_template.html:23 -#: .\cookbook\templates\generic\new_template.html:23 -#: .\cookbook\templates\include\log_cooking.html:28 -#: .\cookbook\templates\settings.html:63 .\cookbook\templates\settings.html:105 -#: .\cookbook\templates\settings.html:123 -#: .\cookbook\templates\settings.html:195 -#: .\cookbook\templates\shopping_list.html:360 -msgid "Save" -msgstr "Saglabāt" - #: .\cookbook\templates\forms\edit_internal_recipe.html:7 msgid "Edit Recipe" msgstr "Rediģēt recepti" @@ -1481,33 +1553,28 @@ msgid "" "recently viewed them. Keep in mind that data might be outdated." msgstr "" -#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\space.html:62 -#: .\cookbook\templates\stats.html:47 -msgid "Comments" -msgstr "Komentāri" - #: .\cookbook\templates\recipe_view.html:26 msgid "by" msgstr "pēc" #: .\cookbook\templates\recipe_view.html:44 .\cookbook\views\delete.py:147 -#: .\cookbook\views\edit.py:177 +#: .\cookbook\views\edit.py:180 msgid "Comment" msgstr "Komentēt" #: .\cookbook\templates\recipes_table.html:19 #: .\cookbook\templates\recipes_table.html:23 -#: .\cookbook\templates\url_import.html:442 +#: .\cookbook\templates\url_import.html:444 msgid "Recipe Image" msgstr "Receptes attēls" #: .\cookbook\templates\recipes_table.html:51 -#: .\cookbook\templates\url_import.html:447 +#: .\cookbook\templates\url_import.html:449 msgid "Preparation time ca." msgstr "Pagatavošanas laiks apm." #: .\cookbook\templates\recipes_table.html:57 -#: .\cookbook\templates\url_import.html:452 +#: .\cookbook\templates\url_import.html:454 msgid "Waiting time ca." msgstr "Gaidīšanas laiks apm." @@ -1878,8 +1945,8 @@ msgstr "Atlasiet vienību" #: .\cookbook\templates\shopping_list.html:218 #: .\cookbook\templates\shopping_list.html:248 #: .\cookbook\templates\shopping_list.html:272 -#: .\cookbook\templates\url_import.html:497 -#: .\cookbook\templates\url_import.html:529 +#: .\cookbook\templates\url_import.html:500 +#: .\cookbook\templates\url_import.html:532 msgid "Select" msgstr "Atlasīt" @@ -2198,164 +2265,172 @@ msgstr "" msgid "Bookmark Me!" msgstr "Grāmatzīme saglabāta!" -#: .\cookbook\templates\url_import.html:61 +#: .\cookbook\templates\url_import.html:36 +msgid "URL" +msgstr "" + +#: .\cookbook\templates\url_import.html:38 +msgid "App" +msgstr "" + +#: .\cookbook\templates\url_import.html:62 msgid "Enter website URL" msgstr "Ievadiet vietnes URL" -#: .\cookbook\templates\url_import.html:99 +#: .\cookbook\templates\url_import.html:101 msgid "Select recipe files to import or drop them here..." msgstr "" -#: .\cookbook\templates\url_import.html:120 +#: .\cookbook\templates\url_import.html:122 msgid "Paste json or html source here to load recipe." msgstr "" -#: .\cookbook\templates\url_import.html:148 +#: .\cookbook\templates\url_import.html:150 #, fuzzy #| msgid "View Recipe" msgid "Preview Recipe Data" msgstr "Skatīt recepti" -#: .\cookbook\templates\url_import.html:149 +#: .\cookbook\templates\url_import.html:151 msgid "Drag recipe attributes from the right into the appropriate box below." msgstr "" -#: .\cookbook\templates\url_import.html:158 -#: .\cookbook\templates\url_import.html:175 -#: .\cookbook\templates\url_import.html:192 -#: .\cookbook\templates\url_import.html:211 -#: .\cookbook\templates\url_import.html:229 -#: .\cookbook\templates\url_import.html:244 -#: .\cookbook\templates\url_import.html:259 -#: .\cookbook\templates\url_import.html:275 -#: .\cookbook\templates\url_import.html:302 -#: .\cookbook\templates\url_import.html:353 +#: .\cookbook\templates\url_import.html:160 +#: .\cookbook\templates\url_import.html:177 +#: .\cookbook\templates\url_import.html:194 +#: .\cookbook\templates\url_import.html:213 +#: .\cookbook\templates\url_import.html:231 +#: .\cookbook\templates\url_import.html:246 +#: .\cookbook\templates\url_import.html:261 +#: .\cookbook\templates\url_import.html:277 +#: .\cookbook\templates\url_import.html:304 +#: .\cookbook\templates\url_import.html:355 msgid "Clear Contents" msgstr "" -#: .\cookbook\templates\url_import.html:160 +#: .\cookbook\templates\url_import.html:162 msgid "Text dragged here will be appended to the name." msgstr "" -#: .\cookbook\templates\url_import.html:173 +#: .\cookbook\templates\url_import.html:175 msgid "Description" msgstr "" -#: .\cookbook\templates\url_import.html:177 +#: .\cookbook\templates\url_import.html:179 msgid "Text dragged here will be appended to the description." msgstr "" -#: .\cookbook\templates\url_import.html:194 +#: .\cookbook\templates\url_import.html:196 msgid "Keywords dragged here will be appended to current list" msgstr "" -#: .\cookbook\templates\url_import.html:209 +#: .\cookbook\templates\url_import.html:211 msgid "Image" msgstr "" -#: .\cookbook\templates\url_import.html:241 +#: .\cookbook\templates\url_import.html:243 #, fuzzy #| msgid "Preparation Time" msgid "Prep Time" msgstr "Pagatavošanas laiks" -#: .\cookbook\templates\url_import.html:256 +#: .\cookbook\templates\url_import.html:258 #, fuzzy #| msgid "Time" msgid "Cook Time" msgstr "Laiks" -#: .\cookbook\templates\url_import.html:277 +#: .\cookbook\templates\url_import.html:279 msgid "Ingredients dragged here will be appended to current list." msgstr "" -#: .\cookbook\templates\url_import.html:299 -#: .\cookbook\templates\url_import.html:569 +#: .\cookbook\templates\url_import.html:301 +#: .\cookbook\templates\url_import.html:572 msgid "Instructions" msgstr "Instrukcijas" -#: .\cookbook\templates\url_import.html:304 +#: .\cookbook\templates\url_import.html:306 msgid "" "Recipe instructions dragged here will be appended to current instructions." msgstr "" -#: .\cookbook\templates\url_import.html:327 +#: .\cookbook\templates\url_import.html:329 #, fuzzy #| msgid "Discovered Recipes" msgid "Discovered Attributes" msgstr "Atrastās receptes" -#: .\cookbook\templates\url_import.html:329 +#: .\cookbook\templates\url_import.html:331 msgid "" "Drag recipe attributes from below into the appropriate box on the left. " "Click any node to display its full properties." msgstr "" -#: .\cookbook\templates\url_import.html:346 +#: .\cookbook\templates\url_import.html:348 #, fuzzy #| msgid "Show as header" msgid "Show Blank Field" msgstr "Rādīt kā galveni" -#: .\cookbook\templates\url_import.html:351 +#: .\cookbook\templates\url_import.html:353 msgid "Blank Field" msgstr "" -#: .\cookbook\templates\url_import.html:355 +#: .\cookbook\templates\url_import.html:357 msgid "Items dragged to Blank Field will be appended." msgstr "" -#: .\cookbook\templates\url_import.html:402 +#: .\cookbook\templates\url_import.html:404 #, fuzzy #| msgid "Delete Step" msgid "Delete Text" msgstr "Dzēst soli" -#: .\cookbook\templates\url_import.html:415 +#: .\cookbook\templates\url_import.html:417 #, fuzzy #| msgid "Delete Recipe" msgid "Delete image" msgstr "Dzēst recepti" -#: .\cookbook\templates\url_import.html:431 +#: .\cookbook\templates\url_import.html:433 msgid "Recipe Name" msgstr "Receptes nosaukums" -#: .\cookbook\templates\url_import.html:435 +#: .\cookbook\templates\url_import.html:437 #, fuzzy #| msgid "Recipe Markup Specification" msgid "Recipe Description" msgstr "Recepšu Markup specifikācija" -#: .\cookbook\templates\url_import.html:496 -#: .\cookbook\templates\url_import.html:528 -#: .\cookbook\templates\url_import.html:584 +#: .\cookbook\templates\url_import.html:499 +#: .\cookbook\templates\url_import.html:531 +#: .\cookbook\templates\url_import.html:587 msgid "Select one" msgstr "Izvēlies vienu" -#: .\cookbook\templates\url_import.html:544 +#: .\cookbook\templates\url_import.html:547 msgid "Note" msgstr "Piezīme" -#: .\cookbook\templates\url_import.html:585 +#: .\cookbook\templates\url_import.html:588 #, fuzzy #| msgid "All Keywords" msgid "Add Keyword" msgstr "Visi atslēgvārdi" -#: .\cookbook\templates\url_import.html:598 +#: .\cookbook\templates\url_import.html:601 msgid "All Keywords" msgstr "Visi atslēgvārdi" -#: .\cookbook\templates\url_import.html:601 +#: .\cookbook\templates\url_import.html:604 msgid "Import all keywords, not only the ones already existing." msgstr "Importējiet visus atslēgvārdus, ne tikai jau esošos." -#: .\cookbook\templates\url_import.html:628 +#: .\cookbook\templates\url_import.html:631 msgid "Information" msgstr "Informācija" -#: .\cookbook\templates\url_import.html:630 +#: .\cookbook\templates\url_import.html:633 msgid "" " Only websites containing ld+json or microdata information can currently\n" " be imported. Most big recipe pages " @@ -2374,105 +2449,106 @@ msgstr "" "nekautrējieties ievietot piemēru\n" " Github." -#: .\cookbook\templates\url_import.html:638 +#: .\cookbook\templates\url_import.html:641 msgid "Google ld+json Info" msgstr "Google ld+json informācija" -#: .\cookbook\templates\url_import.html:641 +#: .\cookbook\templates\url_import.html:644 msgid "GitHub Issues" msgstr "GitHub Issues" -#: .\cookbook\templates\url_import.html:643 +#: .\cookbook\templates\url_import.html:646 msgid "Recipe Markup Specification" msgstr "Recepšu Markup specifikācija" -#: .\cookbook\views\api.py:82 .\cookbook\views\api.py:131 +#: .\cookbook\views\api.py:83 .\cookbook\views\api.py:132 #, fuzzy #| msgid "Parameter filter_list incorrectly formatted" msgid "Parameter updated_at incorrectly formatted" msgstr "Parametrs filter_list ir nepareizi formatēts" -#: .\cookbook\views\api.py:151 +#: .\cookbook\views\api.py:152 #, python-brace-format msgid "No {self.basename} with id {pk} exists" msgstr "" -#: .\cookbook\views\api.py:155 +#: .\cookbook\views\api.py:156 msgid "Cannot merge with the same object!" msgstr "" -#: .\cookbook\views\api.py:162 +#: .\cookbook\views\api.py:163 #, python-brace-format msgid "No {self.basename} with id {target} exists" msgstr "" -#: .\cookbook\views\api.py:167 +#: .\cookbook\views\api.py:168 msgid "Cannot merge with child object!" msgstr "" -#: .\cookbook\views\api.py:200 +#: .\cookbook\views\api.py:201 #, python-brace-format msgid "{source.name} was merged successfully with {target.name}" msgstr "" -#: .\cookbook\views\api.py:204 +#: .\cookbook\views\api.py:205 #, python-brace-format msgid "An error occurred attempting to merge {source.name} with {target.name}" msgstr "" -#: .\cookbook\views\api.py:248 +#: .\cookbook\views\api.py:249 #, python-brace-format msgid "No {self.basename} with id {child} exists" msgstr "" -#: .\cookbook\views\api.py:257 +#: .\cookbook\views\api.py:258 #, python-brace-format msgid "{child.name} was moved successfully to the root." msgstr "" -#: .\cookbook\views\api.py:260 .\cookbook\views\api.py:278 +#: .\cookbook\views\api.py:261 .\cookbook\views\api.py:279 msgid "An error occurred attempting to move " msgstr "" -#: .\cookbook\views\api.py:263 +#: .\cookbook\views\api.py:264 msgid "Cannot move an object to itself!" msgstr "" -#: .\cookbook\views\api.py:269 +#: .\cookbook\views\api.py:270 #, python-brace-format msgid "No {self.basename} with id {parent} exists" msgstr "" -#: .\cookbook\views\api.py:275 +#: .\cookbook\views\api.py:276 #, python-brace-format msgid "{child.name} was moved successfully to parent {parent.name}" msgstr "" -#: .\cookbook\views\api.py:723 .\cookbook\views\views.py:277 -msgid "This feature is not available in the demo version!" +#: .\cookbook\views\api.py:723 .\cookbook\views\data.py:42 +#: .\cookbook\views\edit.py:129 .\cookbook\views\new.py:95 +msgid "This feature is not yet available in the hosted version of tandoor!" msgstr "" -#: .\cookbook\views\api.py:746 +#: .\cookbook\views\api.py:745 msgid "Sync successful!" msgstr "Sinhronizācija ir veiksmīga!" -#: .\cookbook\views\api.py:751 +#: .\cookbook\views\api.py:750 msgid "Error synchronizing with Storage" msgstr "Sinhronizējot ar krātuvi, radās kļūda" -#: .\cookbook\views\api.py:829 +#: .\cookbook\views\api.py:828 msgid "Nothing to do." msgstr "" -#: .\cookbook\views\api.py:844 +#: .\cookbook\views\api.py:843 msgid "The requested site provided malformed data and cannot be read." msgstr "Pieprasītā vietne sniedza nepareizus datus, kurus nevar nolasīt." -#: .\cookbook\views\api.py:851 +#: .\cookbook\views\api.py:850 msgid "The requested page could not be found." msgstr "Pieprasīto lapu nevarēja atrast." -#: .\cookbook\views\api.py:860 +#: .\cookbook\views\api.py:859 msgid "" "The requested site does not provide any recognized data format to import the " "recipe from." @@ -2480,29 +2556,29 @@ msgstr "" "Pieprasītajā vietnē nav norādīts atzīts datu formāts, no kura varētu " "importēt recepti." -#: .\cookbook\views\api.py:874 +#: .\cookbook\views\api.py:873 #, fuzzy #| msgid "The requested page could not be found." msgid "No useable data could be found." msgstr "Pieprasīto lapu nevarēja atrast." -#: .\cookbook\views\api.py:890 +#: .\cookbook\views\api.py:889 msgid "I couldn't find anything to do." msgstr "" -#: .\cookbook\views\data.py:33 .\cookbook\views\data.py:124 -#: .\cookbook\views\edit.py:50 .\cookbook\views\import_export.py:73 -#: .\cookbook\views\new.py:32 +#: .\cookbook\views\data.py:34 .\cookbook\views\data.py:129 +#: .\cookbook\views\edit.py:49 .\cookbook\views\import_export.py:73 +#: .\cookbook\views\new.py:33 msgid "You have reached the maximum number of recipes for your space." msgstr "" -#: .\cookbook\views\data.py:37 .\cookbook\views\data.py:128 -#: .\cookbook\views\edit.py:54 .\cookbook\views\import_export.py:77 -#: .\cookbook\views\new.py:36 +#: .\cookbook\views\data.py:38 .\cookbook\views\data.py:133 +#: .\cookbook\views\edit.py:53 .\cookbook\views\import_export.py:77 +#: .\cookbook\views\new.py:37 msgid "You have more users than allowed in your space." msgstr "" -#: .\cookbook\views\data.py:106 +#: .\cookbook\views\data.py:111 #, python-format msgid "Batch edit done. %(count)d recipe was updated." msgid_plural "Batch edit done. %(count)d Recipes where updated." @@ -2515,7 +2591,7 @@ msgid "Monitor" msgstr "Uzraudzīt" #: .\cookbook\views\delete.py:125 .\cookbook\views\lists.py:86 -#: .\cookbook\views\new.py:97 +#: .\cookbook\views\new.py:101 msgid "Storage Backend" msgstr "Krātuves aizmugursistēma" @@ -2534,31 +2610,27 @@ msgstr "Recepšu grāmata" msgid "Bookmarks" msgstr "Grāmatzīmes" -#: .\cookbook\views\delete.py:192 .\cookbook\views\new.py:231 +#: .\cookbook\views\delete.py:192 .\cookbook\views\new.py:235 msgid "Invite Link" msgstr "Uzaicinājuma saite" -#: .\cookbook\views\edit.py:126 +#: .\cookbook\views\edit.py:125 msgid "You cannot edit this storage!" msgstr "Jūs nevarat rediģēt šo krātuvi!" -#: .\cookbook\views\edit.py:146 +#: .\cookbook\views\edit.py:149 msgid "Storage saved!" msgstr "Krātuve saglabāta!" -#: .\cookbook\views\edit.py:152 +#: .\cookbook\views\edit.py:155 msgid "There was an error updating this storage backend!" msgstr "Atjauninot šo krātuves aizmugursistēmu, radās kļūda!" -#: .\cookbook\views\edit.py:163 -msgid "Storage" -msgstr "Krātuve" - -#: .\cookbook\views\edit.py:245 +#: .\cookbook\views\edit.py:248 msgid "Changes saved!" msgstr "Izmaiņas saglabātas!" -#: .\cookbook\views\edit.py:249 +#: .\cookbook\views\edit.py:252 msgid "Error saving changes!" msgstr "Saglabājot izmaiņas, radās kļūda!" @@ -2604,59 +2676,59 @@ msgstr "Iepirkšanās receptes" msgid "New Shopping List" msgstr "Iepirkumu saraksts" -#: .\cookbook\views\new.py:122 +#: .\cookbook\views\new.py:126 msgid "Imported new recipe!" msgstr "Importēta jauna recepte!" -#: .\cookbook\views\new.py:125 +#: .\cookbook\views\new.py:129 msgid "There was an error importing this recipe!" msgstr "Importējot šo recepti, radās kļūda!" -#: .\cookbook\views\new.py:205 +#: .\cookbook\views\new.py:209 msgid "Hello" msgstr "" -#: .\cookbook\views\new.py:205 +#: .\cookbook\views\new.py:209 msgid "You have been invited by " msgstr "" -#: .\cookbook\views\new.py:206 +#: .\cookbook\views\new.py:210 msgid " to join their Tandoor Recipes space " msgstr "" -#: .\cookbook\views\new.py:207 +#: .\cookbook\views\new.py:211 msgid "Click the following link to activate your account: " msgstr "" -#: .\cookbook\views\new.py:208 +#: .\cookbook\views\new.py:212 msgid "" "If the link does not work use the following code to manually join the space: " msgstr "" -#: .\cookbook\views\new.py:209 +#: .\cookbook\views\new.py:213 msgid "The invitation is valid until " msgstr "" -#: .\cookbook\views\new.py:210 +#: .\cookbook\views\new.py:214 msgid "" "Tandoor Recipes is an Open Source recipe manager. Check it out on GitHub " msgstr "" -#: .\cookbook\views\new.py:213 +#: .\cookbook\views\new.py:217 msgid "Tandoor Recipes Invite" msgstr "" -#: .\cookbook\views\new.py:220 +#: .\cookbook\views\new.py:224 msgid "Invite link successfully send to user." msgstr "" -#: .\cookbook\views\new.py:223 +#: .\cookbook\views\new.py:227 msgid "" "You have send to many emails, please share the link manually or wait a few " "hours." msgstr "" -#: .\cookbook\views\new.py:225 +#: .\cookbook\views\new.py:229 msgid "Email to user could not be send, please share link manually." msgstr "" @@ -2674,6 +2746,10 @@ msgstr "Jums nav nepieciešamo atļauju, lai veiktu šo darbību!" msgid "Comment saved!" msgstr "Komentārs saglabāts!" +#: .\cookbook\views\views.py:277 +msgid "This feature is not available in the demo version!" +msgstr "" + #: .\cookbook\views\views.py:340 msgid "You must select at least one field to search!" msgstr "" @@ -2780,9 +2856,6 @@ msgstr "" #~ msgid "Create only note" #~ msgstr "Izveidot tikai piezīmi" -#~ msgid "Shopping list currently empty" -#~ msgstr "Iepirkumu saraksts pašlaik ir tukšs" - #~ msgid "Plan" #~ msgstr "Plāns" diff --git a/cookbook/locale/nl/LC_MESSAGES/django.po b/cookbook/locale/nl/LC_MESSAGES/django.po index 190175288..66c313196 100644 --- a/cookbook/locale/nl/LC_MESSAGES/django.po +++ b/cookbook/locale/nl/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-04 14:56+0100\n" +"POT-Creation-Date: 2021-11-07 17:31+0100\n" "PO-Revision-Date: 2021-10-26 10:06+0000\n" "Last-Translator: Jesse \n" "Language-Team: Dutch /remote." "php/webdav/ is added automatically)" @@ -162,25 +229,33 @@ msgstr "" "Laat leeg voor dropbox en vul enkel de base url voor nextcloud in. (/" "remote.php/webdav/ wordt automatisch toegevoegd.)" -#: .\cookbook\forms.py:242 +#: .\cookbook\forms.py:258 .\cookbook\views\edit.py:166 +msgid "Storage" +msgstr "Opslag" + +#: .\cookbook\forms.py:260 +msgid "Active" +msgstr "" + +#: .\cookbook\forms.py:265 msgid "Search String" msgstr "Zoekopdracht" -#: .\cookbook\forms.py:269 +#: .\cookbook\forms.py:292 msgid "File ID" msgstr "Bestands ID" -#: .\cookbook\forms.py:290 +#: .\cookbook\forms.py:313 msgid "You must provide at least a recipe or a title." msgstr "Je moet minimaal één recept of titel te specificeren." -#: .\cookbook\forms.py:303 +#: .\cookbook\forms.py:326 msgid "You can list default users to share recipes with in the settings." msgstr "" "Je kan in de instellingen standaard gebruikers in stellen om de recepten met " "te delen." -#: .\cookbook\forms.py:304 +#: .\cookbook\forms.py:327 msgid "" "You can use markdown to format this field. See the docs here" @@ -188,15 +263,15 @@ msgstr "" "Je kunt markdown gebruiken om dit veld te op te maken. Bekijk de documentatie hier" -#: .\cookbook\forms.py:329 +#: .\cookbook\forms.py:353 msgid "Maximum number of users for this space reached." msgstr "Maximum aantal gebruikers voor deze ruimte bereikt." -#: .\cookbook\forms.py:335 +#: .\cookbook\forms.py:359 msgid "Email address already taken!" msgstr "E-mailadres reeds in gebruik!" -#: .\cookbook\forms.py:343 +#: .\cookbook\forms.py:367 msgid "" "An email address is not required but if present the invite link will be send " "to the user." @@ -204,21 +279,21 @@ msgstr "" "Een e-mailadres is niet vereist, maar indien aanwezig zal de " "uitnodigingslink naar de gebruiker worden gestuurd." -#: .\cookbook\forms.py:358 +#: .\cookbook\forms.py:382 msgid "Name already taken." msgstr "Naam reeds in gebruik." -#: .\cookbook\forms.py:369 +#: .\cookbook\forms.py:393 msgid "Accept Terms and Privacy" msgstr "Accepteer voorwaarden" -#: .\cookbook\forms.py:399 +#: .\cookbook\forms.py:425 msgid "" "Determines how fuzzy a search is if it uses trigram similarity matching (e." "g. low values mean more typos are ignored)." msgstr "" -#: .\cookbook\forms.py:407 +#: .\cookbook\forms.py:435 msgid "" "Select type method of search. Click here for " "full desciption of choices." @@ -226,7 +301,7 @@ msgstr "" "Selecteer zoekmethode. Klik hier voor een " "beschrijving van de keuzes." -#: .\cookbook\forms.py:408 +#: .\cookbook\forms.py:436 msgid "" "Use fuzzy matching on units, keywords and ingredients when editing and " "importing recipes." @@ -234,7 +309,7 @@ msgstr "" "Gebruik 'fuzzy' koppelen bij eenheden, etiketten en ingrediënten bij " "bewerken en importeren van recepten." -#: .\cookbook\forms.py:409 +#: .\cookbook\forms.py:438 msgid "" "Fields to search ignoring accents. Selecting this option can improve or " "degrade search quality depending on language" @@ -243,7 +318,7 @@ msgstr "" "deze optie kan de zoekkwaliteit afhankelijk van de taal, zowel verbeteren " "als verslechteren" -#: .\cookbook\forms.py:410 +#: .\cookbook\forms.py:440 msgid "" "Fields to search for partial matches. (e.g. searching for 'Pie' will return " "'pie' and 'piece' and 'soapie')" @@ -251,7 +326,7 @@ msgstr "" "Velden doorzoeken op gedeelde overeenkomsten. (zoeken op 'Appel' vindt " "'appel', 'aardappel' en 'appelsap')" -#: .\cookbook\forms.py:411 +#: .\cookbook\forms.py:442 msgid "" "Fields to search for beginning of word matches. (e.g. searching for 'sa' " "will return 'salad' and 'sandwich')" @@ -259,7 +334,7 @@ msgstr "" "Velden doorzoeken op overeenkomsten aan het begin van het woord. (zoeken op " "'sa' vindt 'salade' en 'sandwich')" -#: .\cookbook\forms.py:412 +#: .\cookbook\forms.py:444 msgid "" "Fields to 'fuzzy' search. (e.g. searching for 'recpie' will find 'recipe'.) " "Note: this option will conflict with 'web' and 'raw' methods of search." @@ -267,7 +342,7 @@ msgstr "" "Velden 'fuzzy' doorzoeken. (zoeken op 'recetp' vindt ook 'recept') Noot: " "deze optie conflicteert met de zoekmethoden 'web' en 'raw'." -#: .\cookbook\forms.py:413 +#: .\cookbook\forms.py:446 msgid "" "Fields to full text search. Note: 'web', 'phrase', and 'raw' search methods " "only function with fulltext fields." @@ -275,31 +350,31 @@ msgstr "" "Velden doorzoeken op volledige tekst. Noot: Web, Zin en Raw zoekmethoden " "werken alleen met volledige tekstvelden." -#: .\cookbook\forms.py:417 +#: .\cookbook\forms.py:450 msgid "Search Method" msgstr "Zoekmethode" -#: .\cookbook\forms.py:418 +#: .\cookbook\forms.py:451 msgid "Fuzzy Lookups" msgstr "'Fuzzy' zoekopdrachten" -#: .\cookbook\forms.py:419 +#: .\cookbook\forms.py:452 msgid "Ignore Accent" msgstr "Negeer accent" -#: .\cookbook\forms.py:420 +#: .\cookbook\forms.py:453 msgid "Partial Match" msgstr "Gedeeltelijke overeenkomst" -#: .\cookbook\forms.py:421 +#: .\cookbook\forms.py:454 msgid "Starts Wtih" msgstr "Begint met" -#: .\cookbook\forms.py:422 +#: .\cookbook\forms.py:455 msgid "Fuzzy Search" msgstr "'Fuzzy' zoeken" -#: .\cookbook\forms.py:423 +#: .\cookbook\forms.py:456 msgid "Full Text" msgstr "Volledige tekst" @@ -322,7 +397,7 @@ msgstr "Je bent niet ingelogd en kan deze pagina daarom niet bekijken!" #: .\cookbook\helper\permission_helper.py:216 #: .\cookbook\helper\permission_helper.py:230 #: .\cookbook\helper\permission_helper.py:241 -#: .\cookbook\helper\permission_helper.py:252 .\cookbook\views\data.py:42 +#: .\cookbook\helper\permission_helper.py:252 .\cookbook\views\data.py:47 #: .\cookbook\views\views.py:160 .\cookbook\views\views.py:167 #: .\cookbook\views\views.py:233 msgid "You do not have the required permissions to view this page!" @@ -345,11 +420,11 @@ msgstr "Sjablooncode kon niet verwerkt worden." #: .\cookbook\templates\import_response.html:7 #: .\cookbook\templates\test.html:14 .\cookbook\templates\test.html:20 #: .\cookbook\templates\url_import.html:27 -#: .\cookbook\templates\url_import.html:103 -#: .\cookbook\templates\url_import.html:125 -#: .\cookbook\templates\url_import.html:319 -#: .\cookbook\templates\url_import.html:606 .\cookbook\views\delete.py:89 -#: .\cookbook\views\edit.py:197 +#: .\cookbook\templates\url_import.html:105 +#: .\cookbook\templates\url_import.html:127 +#: .\cookbook\templates\url_import.html:321 +#: .\cookbook\templates\url_import.html:609 .\cookbook\views\delete.py:89 +#: .\cookbook\views\edit.py:200 msgid "Import" msgstr "Importeer" @@ -385,14 +460,14 @@ msgstr "Notities" msgid "Nutritional Information" msgstr "Voedingswaarde" -#: .\cookbook\integration\paprika.py:53 +#: .\cookbook\integration\paprika.py:53 .\cookbook\templates\url_import.html:40 msgid "Source" msgstr "Bron" #: .\cookbook\integration\safron.py:23 #: .\cookbook\templates\include\log_cooking.html:16 -#: .\cookbook\templates\url_import.html:226 -#: .\cookbook\templates\url_import.html:457 +#: .\cookbook\templates\url_import.html:228 +#: .\cookbook\templates\url_import.html:459 msgid "Servings" msgstr "Porties" @@ -464,7 +539,7 @@ msgstr "Zoeken" #: .\cookbook\models.py:203 .\cookbook\templates\base.html:82 #: .\cookbook\templates\meal_plan.html:7 #: .\cookbook\templates\meal_plan_new.html:7 .\cookbook\views\delete.py:181 -#: .\cookbook\views\edit.py:217 .\cookbook\views\new.py:180 +#: .\cookbook\views\edit.py:220 .\cookbook\views\new.py:184 msgid "Meal-Plan" msgstr "Maaltijdplan" @@ -489,7 +564,7 @@ msgstr "Nieuw" msgid " is part of a recipe step and cannot be deleted" msgstr " is deel van een receptstap en kan niet verwijderd worden" -#: .\cookbook\models.py:441 +#: .\cookbook\models.py:441 .\cookbook\templates\url_import.html:42 msgid "Text" msgstr "Tekst" @@ -497,14 +572,14 @@ msgstr "Tekst" msgid "Time" msgstr "Tijd" -#: .\cookbook\models.py:441 +#: .\cookbook\models.py:441 .\cookbook\templates\url_import.html:44 msgid "File" msgstr "Bestand" #: .\cookbook\models.py:441 #: .\cookbook\templates\include\recipe_open_modal.html:7 -#: .\cookbook\views\delete.py:39 .\cookbook\views\edit.py:257 -#: .\cookbook\views\new.py:52 +#: .\cookbook\views\delete.py:39 .\cookbook\views\edit.py:260 +#: .\cookbook\views\new.py:53 msgid "Recipe" msgstr "Recept" @@ -977,7 +1052,7 @@ msgstr "" "Voeg de gespecificeerde etiketten toe aan alle recepten die een woord " "bevatten" -#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:83 +#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:82 msgid "Sync" msgstr "Synchroniseren" @@ -997,6 +1072,18 @@ msgstr "" msgid "The path must be in the following format" msgstr "Het pad dient het volgende format te hebben" +#: .\cookbook\templates\batch\monitor.html:20 +#: .\cookbook\templates\forms\edit_import_recipe.html:14 +#: .\cookbook\templates\generic\edit_template.html:23 +#: .\cookbook\templates\generic\new_template.html:23 +#: .\cookbook\templates\include\log_cooking.html:28 +#: .\cookbook\templates\settings.html:63 .\cookbook\templates\settings.html:105 +#: .\cookbook\templates\settings.html:123 +#: .\cookbook\templates\settings.html:195 +#: .\cookbook\templates\shopping_list.html:360 +msgid "Save" +msgstr "Opslaan" + #: .\cookbook\templates\batch\monitor.html:21 msgid "Manage External Storage" msgstr "Beheer externe opslag" @@ -1039,17 +1126,6 @@ msgstr "Recepten exporteren" msgid "Import new Recipe" msgstr "Nieuw recept importeren" -#: .\cookbook\templates\forms\edit_import_recipe.html:14 -#: .\cookbook\templates\generic\edit_template.html:23 -#: .\cookbook\templates\generic\new_template.html:23 -#: .\cookbook\templates\include\log_cooking.html:28 -#: .\cookbook\templates\settings.html:63 .\cookbook\templates\settings.html:105 -#: .\cookbook\templates\settings.html:123 -#: .\cookbook\templates\settings.html:195 -#: .\cookbook\templates\shopping_list.html:360 -msgid "Save" -msgstr "Opslaan" - #: .\cookbook\templates\forms\edit_internal_recipe.html:7 msgid "Edit Recipe" msgstr "Recept bewerken" @@ -1499,33 +1575,28 @@ msgstr "" "De recepten hieronder zijn beschikbaar om offline te bekijken omdat je ze " "recent bekeken hebt. Houd er rekening mee dat de data mogelijk verouderd is." -#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\space.html:62 -#: .\cookbook\templates\stats.html:47 -msgid "Comments" -msgstr "Opmerkingen" - #: .\cookbook\templates\recipe_view.html:26 msgid "by" msgstr "door" #: .\cookbook\templates\recipe_view.html:44 .\cookbook\views\delete.py:147 -#: .\cookbook\views\edit.py:177 +#: .\cookbook\views\edit.py:180 msgid "Comment" msgstr "Opmerking" #: .\cookbook\templates\recipes_table.html:19 #: .\cookbook\templates\recipes_table.html:23 -#: .\cookbook\templates\url_import.html:442 +#: .\cookbook\templates\url_import.html:444 msgid "Recipe Image" msgstr "Recept afbeelding" #: .\cookbook\templates\recipes_table.html:51 -#: .\cookbook\templates\url_import.html:447 +#: .\cookbook\templates\url_import.html:449 msgid "Preparation time ca." msgstr "Geschatte voorbereidingstijd" #: .\cookbook\templates\recipes_table.html:57 -#: .\cookbook\templates\url_import.html:452 +#: .\cookbook\templates\url_import.html:454 msgid "Waiting time ca." msgstr "Geschatte wachttijd" @@ -1976,8 +2047,8 @@ msgstr "Selecteer eenheid" #: .\cookbook\templates\shopping_list.html:218 #: .\cookbook\templates\shopping_list.html:248 #: .\cookbook\templates\shopping_list.html:272 -#: .\cookbook\templates\url_import.html:497 -#: .\cookbook\templates\url_import.html:529 +#: .\cookbook\templates\url_import.html:500 +#: .\cookbook\templates\url_import.html:532 msgid "Select" msgstr "Selecteer" @@ -2290,90 +2361,98 @@ msgstr "" msgid "Bookmark Me!" msgstr "Sla mij op als bladwijzer!" -#: .\cookbook\templates\url_import.html:61 +#: .\cookbook\templates\url_import.html:36 +msgid "URL" +msgstr "" + +#: .\cookbook\templates\url_import.html:38 +msgid "App" +msgstr "" + +#: .\cookbook\templates\url_import.html:62 msgid "Enter website URL" msgstr "Vul website URL in" -#: .\cookbook\templates\url_import.html:99 +#: .\cookbook\templates\url_import.html:101 msgid "Select recipe files to import or drop them here..." msgstr "" "Selecteer receptbestanden om te importeren of sleep ze hier naar toe..." -#: .\cookbook\templates\url_import.html:120 +#: .\cookbook\templates\url_import.html:122 msgid "Paste json or html source here to load recipe." msgstr "Plak json of html bron om recept te laden." -#: .\cookbook\templates\url_import.html:148 +#: .\cookbook\templates\url_import.html:150 msgid "Preview Recipe Data" msgstr "Bekijk recept gegevens" -#: .\cookbook\templates\url_import.html:149 +#: .\cookbook\templates\url_import.html:151 msgid "Drag recipe attributes from the right into the appropriate box below." msgstr "" "Sleep eigenschappen van het recept van rechts naar het juiste vlak beneden." -#: .\cookbook\templates\url_import.html:158 -#: .\cookbook\templates\url_import.html:175 -#: .\cookbook\templates\url_import.html:192 -#: .\cookbook\templates\url_import.html:211 -#: .\cookbook\templates\url_import.html:229 -#: .\cookbook\templates\url_import.html:244 -#: .\cookbook\templates\url_import.html:259 -#: .\cookbook\templates\url_import.html:275 -#: .\cookbook\templates\url_import.html:302 -#: .\cookbook\templates\url_import.html:353 +#: .\cookbook\templates\url_import.html:160 +#: .\cookbook\templates\url_import.html:177 +#: .\cookbook\templates\url_import.html:194 +#: .\cookbook\templates\url_import.html:213 +#: .\cookbook\templates\url_import.html:231 +#: .\cookbook\templates\url_import.html:246 +#: .\cookbook\templates\url_import.html:261 +#: .\cookbook\templates\url_import.html:277 +#: .\cookbook\templates\url_import.html:304 +#: .\cookbook\templates\url_import.html:355 msgid "Clear Contents" msgstr "Wis inhoud" -#: .\cookbook\templates\url_import.html:160 +#: .\cookbook\templates\url_import.html:162 msgid "Text dragged here will be appended to the name." msgstr "Hierheen gesleepte tekst wordt aan de naam toegevoegd." -#: .\cookbook\templates\url_import.html:173 +#: .\cookbook\templates\url_import.html:175 msgid "Description" msgstr "Beschrijving" -#: .\cookbook\templates\url_import.html:177 +#: .\cookbook\templates\url_import.html:179 msgid "Text dragged here will be appended to the description." msgstr "Hierheen gesleepte tekst wordt aan de beschrijving toegevoegd." -#: .\cookbook\templates\url_import.html:194 +#: .\cookbook\templates\url_import.html:196 msgid "Keywords dragged here will be appended to current list" msgstr "Hierheen gesleepte Etiketten worden aan de huidige lijst toegevoegd" -#: .\cookbook\templates\url_import.html:209 +#: .\cookbook\templates\url_import.html:211 msgid "Image" msgstr "Afbeelding" -#: .\cookbook\templates\url_import.html:241 +#: .\cookbook\templates\url_import.html:243 msgid "Prep Time" msgstr "Voorbereidingstijd" -#: .\cookbook\templates\url_import.html:256 +#: .\cookbook\templates\url_import.html:258 msgid "Cook Time" msgstr "Kooktijd" -#: .\cookbook\templates\url_import.html:277 +#: .\cookbook\templates\url_import.html:279 msgid "Ingredients dragged here will be appended to current list." msgstr "" "Hierheen gesleepte Ingrediënten worden aan de huidige lijst toegevoegd." -#: .\cookbook\templates\url_import.html:299 -#: .\cookbook\templates\url_import.html:569 +#: .\cookbook\templates\url_import.html:301 +#: .\cookbook\templates\url_import.html:572 msgid "Instructions" msgstr "Instructies" -#: .\cookbook\templates\url_import.html:304 +#: .\cookbook\templates\url_import.html:306 msgid "" "Recipe instructions dragged here will be appended to current instructions." msgstr "" "Hierheen gesleepte Recept instructies worden aan de huidige lijst toegevoegd." -#: .\cookbook\templates\url_import.html:327 +#: .\cookbook\templates\url_import.html:329 msgid "Discovered Attributes" msgstr "Ontdekte Eigenschappen" -#: .\cookbook\templates\url_import.html:329 +#: .\cookbook\templates\url_import.html:331 msgid "" "Drag recipe attributes from below into the appropriate box on the left. " "Click any node to display its full properties." @@ -2381,61 +2460,61 @@ msgstr "" "Sleep recept eigenschappen van beneden naar de juiste doos aan de " "linkerzijde. Klik er op om alle eigenschappen te zien." -#: .\cookbook\templates\url_import.html:346 +#: .\cookbook\templates\url_import.html:348 msgid "Show Blank Field" msgstr "Toon Leeg Veld" -#: .\cookbook\templates\url_import.html:351 +#: .\cookbook\templates\url_import.html:353 msgid "Blank Field" msgstr "Leeg Veld" -#: .\cookbook\templates\url_import.html:355 +#: .\cookbook\templates\url_import.html:357 msgid "Items dragged to Blank Field will be appended." msgstr "Naar Leeg Veld gesleepte items worden toegevoegd." -#: .\cookbook\templates\url_import.html:402 +#: .\cookbook\templates\url_import.html:404 msgid "Delete Text" msgstr "Verwijder tekst" -#: .\cookbook\templates\url_import.html:415 +#: .\cookbook\templates\url_import.html:417 msgid "Delete image" msgstr "Verwijder afbeelding" -#: .\cookbook\templates\url_import.html:431 +#: .\cookbook\templates\url_import.html:433 msgid "Recipe Name" msgstr "Naam Recept" -#: .\cookbook\templates\url_import.html:435 +#: .\cookbook\templates\url_import.html:437 msgid "Recipe Description" msgstr "Beschrijving recept" -#: .\cookbook\templates\url_import.html:496 -#: .\cookbook\templates\url_import.html:528 -#: .\cookbook\templates\url_import.html:584 +#: .\cookbook\templates\url_import.html:499 +#: .\cookbook\templates\url_import.html:531 +#: .\cookbook\templates\url_import.html:587 msgid "Select one" msgstr "Selecteer één" -#: .\cookbook\templates\url_import.html:544 +#: .\cookbook\templates\url_import.html:547 msgid "Note" msgstr "Notitie" -#: .\cookbook\templates\url_import.html:585 +#: .\cookbook\templates\url_import.html:588 msgid "Add Keyword" msgstr "Voeg Etiket toe" -#: .\cookbook\templates\url_import.html:598 +#: .\cookbook\templates\url_import.html:601 msgid "All Keywords" msgstr "Alle etiketten" -#: .\cookbook\templates\url_import.html:601 +#: .\cookbook\templates\url_import.html:604 msgid "Import all keywords, not only the ones already existing." msgstr "Importeer alle etiketten, niet alleen de bestaande." -#: .\cookbook\templates\url_import.html:628 +#: .\cookbook\templates\url_import.html:631 msgid "Information" msgstr "Informatie" -#: .\cookbook\templates\url_import.html:630 +#: .\cookbook\templates\url_import.html:633 msgid "" " Only websites containing ld+json or microdata information can currently\n" " be imported. Most big recipe pages " @@ -2453,107 +2532,110 @@ msgstr "" "vrij om een voorbeeld te posten in \n" " de GitHub issues." -#: .\cookbook\templates\url_import.html:638 +#: .\cookbook\templates\url_import.html:641 msgid "Google ld+json Info" msgstr "Google Id+json Info" -#: .\cookbook\templates\url_import.html:641 +#: .\cookbook\templates\url_import.html:644 msgid "GitHub Issues" msgstr "GitHub issues" -#: .\cookbook\templates\url_import.html:643 +#: .\cookbook\templates\url_import.html:646 msgid "Recipe Markup Specification" msgstr "Recept opmaak specificatie" -#: .\cookbook\views\api.py:82 .\cookbook\views\api.py:131 +#: .\cookbook\views\api.py:83 .\cookbook\views\api.py:132 msgid "Parameter updated_at incorrectly formatted" msgstr "Parameter updatet_at is onjuist geformateerd" -#: .\cookbook\views\api.py:151 +#: .\cookbook\views\api.py:152 #, python-brace-format msgid "No {self.basename} with id {pk} exists" msgstr "Er bestaat geen {self.basename} met id {pk}" -#: .\cookbook\views\api.py:155 +#: .\cookbook\views\api.py:156 msgid "Cannot merge with the same object!" msgstr "Kan niet met hetzelfde object samenvoegen!" -#: .\cookbook\views\api.py:162 +#: .\cookbook\views\api.py:163 #, python-brace-format msgid "No {self.basename} with id {target} exists" msgstr "Er bestaat geen {self.basename} met id {target}" -#: .\cookbook\views\api.py:167 +#: .\cookbook\views\api.py:168 msgid "Cannot merge with child object!" msgstr "Kan niet met kindobject samenvoegen!" -#: .\cookbook\views\api.py:200 +#: .\cookbook\views\api.py:201 #, python-brace-format msgid "{source.name} was merged successfully with {target.name}" msgstr "{source.name} is succesvol samengevoegd met {target.name}" -#: .\cookbook\views\api.py:204 +#: .\cookbook\views\api.py:205 #, python-brace-format msgid "An error occurred attempting to merge {source.name} with {target.name}" msgstr "" "Er is een error opgetreden bij het samenvoegen van {source.name} met {target." "name}" -#: .\cookbook\views\api.py:248 +#: .\cookbook\views\api.py:249 #, python-brace-format msgid "No {self.basename} with id {child} exists" msgstr "Er bestaat geen {self.basename} met id {child}" -#: .\cookbook\views\api.py:257 +#: .\cookbook\views\api.py:258 #, python-brace-format msgid "{child.name} was moved successfully to the root." msgstr "{child.name} is succesvol verplaatst naar het hoogste niveau." -#: .\cookbook\views\api.py:260 .\cookbook\views\api.py:278 +#: .\cookbook\views\api.py:261 .\cookbook\views\api.py:279 msgid "An error occurred attempting to move " msgstr "Er is een error opgetreden bij het verplaatsen " -#: .\cookbook\views\api.py:263 +#: .\cookbook\views\api.py:264 msgid "Cannot move an object to itself!" msgstr "Kan object niet verplaatsen naar zichzelf!" -#: .\cookbook\views\api.py:269 +#: .\cookbook\views\api.py:270 #, python-brace-format msgid "No {self.basename} with id {parent} exists" msgstr "Er bestaat geen {self.basename} met id {parent}" -#: .\cookbook\views\api.py:275 +#: .\cookbook\views\api.py:276 #, python-brace-format msgid "{child.name} was moved successfully to parent {parent.name}" msgstr "{child.name} is succesvol verplaatst naar {parent.name}" -#: .\cookbook\views\api.py:723 .\cookbook\views\views.py:277 -msgid "This feature is not available in the demo version!" +#: .\cookbook\views\api.py:723 .\cookbook\views\data.py:42 +#: .\cookbook\views\edit.py:129 .\cookbook\views\new.py:95 +#, fuzzy +#| msgid "This feature is not available in the demo version!" +msgid "This feature is not yet available in the hosted version of tandoor!" msgstr "Deze optie is niet beschikbaar in de demo versie!" -#: .\cookbook\views\api.py:746 +#: .\cookbook\views\api.py:745 msgid "Sync successful!" msgstr "Synchronisatie succesvol!" -#: .\cookbook\views\api.py:751 +#: .\cookbook\views\api.py:750 msgid "Error synchronizing with Storage" msgstr "Er is een fout opgetreden bij het synchroniseren met Opslag" -#: .\cookbook\views\api.py:829 +#: .\cookbook\views\api.py:828 msgid "Nothing to do." msgstr "Niks te doen." -#: .\cookbook\views\api.py:844 +#: .\cookbook\views\api.py:843 msgid "The requested site provided malformed data and cannot be read." msgstr "" "De opgevraagde site heeft misvormde data verstrekt en kan niet gelezen " "worden." -#: .\cookbook\views\api.py:851 +#: .\cookbook\views\api.py:850 msgid "The requested page could not be found." msgstr "De opgevraagde pagina kon niet gevonden worden." -#: .\cookbook\views\api.py:860 +#: .\cookbook\views\api.py:859 msgid "" "The requested site does not provide any recognized data format to import the " "recipe from." @@ -2561,27 +2643,27 @@ msgstr "" "De opgevraagde site biedt geen bekend gegevensformaat aan om het recept van " "te importeren." -#: .\cookbook\views\api.py:874 +#: .\cookbook\views\api.py:873 msgid "No useable data could be found." msgstr "Er is geen bruikbare data gevonden." -#: .\cookbook\views\api.py:890 +#: .\cookbook\views\api.py:889 msgid "I couldn't find anything to do." msgstr "Ik kon niks vinden om te doen." -#: .\cookbook\views\data.py:33 .\cookbook\views\data.py:124 -#: .\cookbook\views\edit.py:50 .\cookbook\views\import_export.py:73 -#: .\cookbook\views\new.py:32 +#: .\cookbook\views\data.py:34 .\cookbook\views\data.py:129 +#: .\cookbook\views\edit.py:49 .\cookbook\views\import_export.py:73 +#: .\cookbook\views\new.py:33 msgid "You have reached the maximum number of recipes for your space." msgstr "Je hebt het maximaal aantal recepten voor jouw ruimte bereikt." -#: .\cookbook\views\data.py:37 .\cookbook\views\data.py:128 -#: .\cookbook\views\edit.py:54 .\cookbook\views\import_export.py:77 -#: .\cookbook\views\new.py:36 +#: .\cookbook\views\data.py:38 .\cookbook\views\data.py:133 +#: .\cookbook\views\edit.py:53 .\cookbook\views\import_export.py:77 +#: .\cookbook\views\new.py:37 msgid "You have more users than allowed in your space." msgstr "Je hebt meer gebruikers dan toegestaan in jouw ruimte." -#: .\cookbook\views\data.py:106 +#: .\cookbook\views\data.py:111 #, python-format msgid "Batch edit done. %(count)d recipe was updated." msgid_plural "Batch edit done. %(count)d Recipes where updated." @@ -2593,7 +2675,7 @@ msgid "Monitor" msgstr "Bewaker" #: .\cookbook\views\delete.py:125 .\cookbook\views\lists.py:86 -#: .\cookbook\views\new.py:97 +#: .\cookbook\views\new.py:101 msgid "Storage Backend" msgstr "Opslag backend" @@ -2612,31 +2694,27 @@ msgstr "Kookboek" msgid "Bookmarks" msgstr "Bladwijzers" -#: .\cookbook\views\delete.py:192 .\cookbook\views\new.py:231 +#: .\cookbook\views\delete.py:192 .\cookbook\views\new.py:235 msgid "Invite Link" msgstr "Uitnodigingslink" -#: .\cookbook\views\edit.py:126 +#: .\cookbook\views\edit.py:125 msgid "You cannot edit this storage!" msgstr "Je kan deze opslag niet bewerken!" -#: .\cookbook\views\edit.py:146 +#: .\cookbook\views\edit.py:149 msgid "Storage saved!" msgstr "Opslag opgeslagen!" -#: .\cookbook\views\edit.py:152 +#: .\cookbook\views\edit.py:155 msgid "There was an error updating this storage backend!" msgstr "Er is een fout opgetreden bij het updaten van deze opslag backend!" -#: .\cookbook\views\edit.py:163 -msgid "Storage" -msgstr "Opslag" - -#: .\cookbook\views\edit.py:245 +#: .\cookbook\views\edit.py:248 msgid "Changes saved!" msgstr "Wijzigingen opgeslagen!" -#: .\cookbook\views\edit.py:249 +#: .\cookbook\views\edit.py:252 msgid "Error saving changes!" msgstr "Fout bij het opslaan van de wijzigingen!" @@ -2678,56 +2756,56 @@ msgstr "Boodschappencategorieën" msgid "New Shopping List" msgstr "Boodschappenlijst" -#: .\cookbook\views\new.py:122 +#: .\cookbook\views\new.py:126 msgid "Imported new recipe!" msgstr "Nieuw recept geïmporteerd!" -#: .\cookbook\views\new.py:125 +#: .\cookbook\views\new.py:129 msgid "There was an error importing this recipe!" msgstr "Er is een fout opgetreden bij het importeren van dit recept!" -#: .\cookbook\views\new.py:205 +#: .\cookbook\views\new.py:209 msgid "Hello" msgstr "Hallo" -#: .\cookbook\views\new.py:205 +#: .\cookbook\views\new.py:209 msgid "You have been invited by " msgstr "Je bent uitgenodigd door " -#: .\cookbook\views\new.py:206 +#: .\cookbook\views\new.py:210 msgid " to join their Tandoor Recipes space " msgstr " om zijn/haar Tandoor Recepten ruimte " -#: .\cookbook\views\new.py:207 +#: .\cookbook\views\new.py:211 msgid "Click the following link to activate your account: " msgstr "Klik om de volgende link om je account te activeren: " -#: .\cookbook\views\new.py:208 +#: .\cookbook\views\new.py:212 msgid "" "If the link does not work use the following code to manually join the space: " msgstr "" "Als de linkt niet werkt, gebruik dan de volgende code om handmatig tot de " "ruimte toe te treden: " -#: .\cookbook\views\new.py:209 +#: .\cookbook\views\new.py:213 msgid "The invitation is valid until " msgstr "De uitnodiging is geldig tot " -#: .\cookbook\views\new.py:210 +#: .\cookbook\views\new.py:214 msgid "" "Tandoor Recipes is an Open Source recipe manager. Check it out on GitHub " msgstr "" "Tandoor Recepten is een Open Source recepten manager. Bekijk het op GitHub " -#: .\cookbook\views\new.py:213 +#: .\cookbook\views\new.py:217 msgid "Tandoor Recipes Invite" msgstr "Tandoor Recepten uitnodiging" -#: .\cookbook\views\new.py:220 +#: .\cookbook\views\new.py:224 msgid "Invite link successfully send to user." msgstr "Uitnodigingslink succesvol verstuurd naar gebruiker." -#: .\cookbook\views\new.py:223 +#: .\cookbook\views\new.py:227 msgid "" "You have send to many emails, please share the link manually or wait a few " "hours." @@ -2735,7 +2813,7 @@ msgstr "" "Je hebt te veel e-mails verstuurd, deel de link handmatig of wacht enkele " "uren." -#: .\cookbook\views\new.py:225 +#: .\cookbook\views\new.py:229 msgid "Email to user could not be send, please share link manually." msgstr "" "E-mail aan gebruiker kon niet verzonden worden, deel de link handmatig." @@ -2756,6 +2834,10 @@ msgstr "Je beschikt niet over de juiste rechten om deze actie uit te voeren!" msgid "Comment saved!" msgstr "Opmerking opgeslagen!" +#: .\cookbook\views\views.py:277 +msgid "This feature is not available in the demo version!" +msgstr "Deze optie is niet beschikbaar in de demo versie!" + #: .\cookbook\views\views.py:340 msgid "You must select at least one field to search!" msgstr "Je moet tenminste één veld om te doorzoeken selecteren!" @@ -2869,9 +2951,6 @@ msgstr "" #~ msgid "Create only note" #~ msgstr "Maak alleen een notitie" -#~ msgid "Shopping list currently empty" -#~ msgstr "Boodschappenlijst is momenteel leeg" - #~ msgid "Plan" #~ msgstr "Plan" diff --git a/cookbook/locale/pt/LC_MESSAGES/django.po b/cookbook/locale/pt/LC_MESSAGES/django.po index 9883b9e50..0c0432378 100644 --- a/cookbook/locale/pt/LC_MESSAGES/django.po +++ b/cookbook/locale/pt/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-04 14:56+0100\n" +"POT-Creation-Date: 2021-11-07 17:31+0100\n" "PO-Revision-Date: 2020-06-02 19:28+0000\n" "Last-Translator: João Cunha , 2020\n" "Language-Team: Portuguese (https://www.transifex.com/django-recipes/" @@ -26,49 +26,110 @@ msgstr "" #: .\cookbook\filters.py:23 .\cookbook\templates\base.html:125 #: .\cookbook\templates\forms\ingredients.html:34 #: .\cookbook\templates\space.html:43 .\cookbook\templates\stats.html:28 -#: .\cookbook\templates\url_import.html:272 +#: .\cookbook\templates\url_import.html:274 msgid "Ingredients" msgstr "Ingredientes" -#: .\cookbook\forms.py:53 +#: .\cookbook\forms.py:54 +msgid "Default unit" +msgstr "" + +#: .\cookbook\forms.py:55 +#, fuzzy +#| msgid "Instructions" +msgid "Use fractions" +msgstr "Instruções" + +#: .\cookbook\forms.py:56 +msgid "Use KJ" +msgstr "" + +#: .\cookbook\forms.py:57 +msgid "Theme" +msgstr "" + +#: .\cookbook\forms.py:58 +msgid "Navbar color" +msgstr "" + +#: .\cookbook\forms.py:59 +msgid "Sticky navbar" +msgstr "" + +#: .\cookbook\forms.py:60 +msgid "Default page" +msgstr "" + +#: .\cookbook\forms.py:61 +#, fuzzy +#| msgid "Recipes" +msgid "Show recent recipes" +msgstr "Receitas" + +#: .\cookbook\forms.py:62 +#, fuzzy +#| msgid "Search" +msgid "Search style" +msgstr "Procurar" + +#: .\cookbook\forms.py:63 +msgid "Plan sharing" +msgstr "" + +#: .\cookbook\forms.py:64 +#, fuzzy +#| msgid "Ingredients" +msgid "Ingredient decimal places" +msgstr "Ingredientes" + +#: .\cookbook\forms.py:65 +msgid "Shopping list auto sync period" +msgstr "" + +#: .\cookbook\forms.py:66 .\cookbook\templates\recipe_view.html:21 +#: .\cookbook\templates\space.html:62 .\cookbook\templates\stats.html:47 +msgid "Comments" +msgstr "" + +#: .\cookbook\forms.py:70 msgid "" "Color of the top navigation bar. Not all colors work with all themes, just " "try them out!" msgstr "Cor da barra de navegação." -#: .\cookbook\forms.py:55 +#: .\cookbook\forms.py:72 msgid "Default Unit to be used when inserting a new ingredient into a recipe." msgstr "Unidade defeito a ser usada quando um novo ingrediente for inserido." -#: .\cookbook\forms.py:57 +#: .\cookbook\forms.py:74 msgid "" "Enables support for fractions in ingredient amounts (e.g. convert decimals " "to fractions automatically)" msgstr "" -#: .\cookbook\forms.py:59 +#: .\cookbook\forms.py:76 msgid "Display nutritional energy amounts in joules instead of calories" msgstr "" -#: .\cookbook\forms.py:61 +#: .\cookbook\forms.py:78 msgid "" "Users with whom newly created meal plan/shopping list entries should be " "shared by default." msgstr "" -#: .\cookbook\forms.py:63 +#: .\cookbook\forms.py:80 msgid "Show recently viewed recipes on search page." msgstr "Mostrar receitas recentes na página de pesquisa." -#: .\cookbook\forms.py:64 +#: .\cookbook\forms.py:81 msgid "Number of decimals to round ingredients." msgstr "Número de casas decimais para arredondamentos." -#: .\cookbook\forms.py:65 +#: .\cookbook\forms.py:82 msgid "If you want to be able to create and see comments underneath recipes." msgstr "" -#: .\cookbook\forms.py:67 +#: .\cookbook\forms.py:84 msgid "" "Setting to 0 will disable auto sync. When viewing a shopping list the list " "is updated every set seconds to sync changes someone else might have made. " @@ -76,11 +137,11 @@ msgid "" "mobile data. If lower than instance limit it is reset when saving." msgstr "" -#: .\cookbook\forms.py:70 +#: .\cookbook\forms.py:87 msgid "Makes the navbar stick to the top of the page." msgstr "" -#: .\cookbook\forms.py:86 +#: .\cookbook\forms.py:103 msgid "" "Both fields are optional. If none are given the username will be displayed " "instead" @@ -88,59 +149,59 @@ msgstr "" "Ambos os campos são opcionais. Se nenhum for preenchido o nome de utilizador " "será apresentado." -#: .\cookbook\forms.py:107 .\cookbook\forms.py:266 -#: .\cookbook\templates\url_import.html:156 +#: .\cookbook\forms.py:124 .\cookbook\forms.py:289 +#: .\cookbook\templates\url_import.html:158 msgid "Name" msgstr "Nome" -#: .\cookbook\forms.py:108 .\cookbook\forms.py:267 +#: .\cookbook\forms.py:125 .\cookbook\forms.py:290 #: .\cookbook\templates\space.html:39 .\cookbook\templates\stats.html:24 -#: .\cookbook\templates\url_import.html:190 -#: .\cookbook\templates\url_import.html:575 .\cookbook\views\lists.py:112 +#: .\cookbook\templates\url_import.html:192 +#: .\cookbook\templates\url_import.html:578 .\cookbook\views\lists.py:112 msgid "Keywords" msgstr "Palavras-chave" -#: .\cookbook\forms.py:109 +#: .\cookbook\forms.py:126 msgid "Preparation time in minutes" msgstr "Tempo de preparação em minutos" -#: .\cookbook\forms.py:110 +#: .\cookbook\forms.py:127 msgid "Waiting time (cooking/baking) in minutes" msgstr "Tempo de espera (cozedura) em minutos" -#: .\cookbook\forms.py:111 .\cookbook\forms.py:268 +#: .\cookbook\forms.py:128 .\cookbook\forms.py:259 .\cookbook\forms.py:291 msgid "Path" msgstr "Caminho" -#: .\cookbook\forms.py:112 +#: .\cookbook\forms.py:129 msgid "Storage UID" msgstr "UID de armazenamento" -#: .\cookbook\forms.py:140 +#: .\cookbook\forms.py:157 msgid "Default" msgstr "" -#: .\cookbook\forms.py:151 .\cookbook\templates\url_import.html:92 +#: .\cookbook\forms.py:168 .\cookbook\templates\url_import.html:94 msgid "" "To prevent duplicates recipes with the same name as existing ones are " "ignored. Check this box to import everything." msgstr "" -#: .\cookbook\forms.py:173 +#: .\cookbook\forms.py:190 msgid "Add your comment: " msgstr "Adicionar comentário:" -#: .\cookbook\forms.py:188 +#: .\cookbook\forms.py:205 msgid "Leave empty for dropbox and enter app password for nextcloud." msgstr "" "Deixar vazio para Dropbox e inserir palavra-passe de aplicação para " "Nextcloud." -#: .\cookbook\forms.py:195 +#: .\cookbook\forms.py:212 msgid "Leave empty for nextcloud and enter api token for dropbox." msgstr "Deixar vazio para Nextcloud e inserir token api para Dropbox." -#: .\cookbook\forms.py:204 +#: .\cookbook\forms.py:221 msgid "" "Leave empty for dropbox and enter only base url for nextcloud (/remote." "php/webdav/ is added automatically)" @@ -148,25 +209,33 @@ msgstr "" "Deixar vazio para Dropbox e inserir apenas url base para Nextcloud (/" "remote.php/webdav/é adicionado automaticamente). " -#: .\cookbook\forms.py:242 +#: .\cookbook\forms.py:258 .\cookbook\views\edit.py:166 +msgid "Storage" +msgstr "" + +#: .\cookbook\forms.py:260 +msgid "Active" +msgstr "" + +#: .\cookbook\forms.py:265 msgid "Search String" msgstr "Procurar" -#: .\cookbook\forms.py:269 +#: .\cookbook\forms.py:292 msgid "File ID" msgstr "ID the ficheiro" -#: .\cookbook\forms.py:290 +#: .\cookbook\forms.py:313 msgid "You must provide at least a recipe or a title." msgstr "É necessário inserir uma receita ou um título." -#: .\cookbook\forms.py:303 +#: .\cookbook\forms.py:326 msgid "You can list default users to share recipes with in the settings." msgstr "" "É possível escolher os utilizadores com quem partilhar receitas por defeitos " "nas definições." -#: .\cookbook\forms.py:304 +#: .\cookbook\forms.py:327 msgid "" "You can use markdown to format this field. See the docs here" @@ -174,105 +243,105 @@ msgstr "" "É possível utilizar markdown para editar este campo. Documentação disponível aqui" -#: .\cookbook\forms.py:329 +#: .\cookbook\forms.py:353 msgid "Maximum number of users for this space reached." msgstr "" -#: .\cookbook\forms.py:335 +#: .\cookbook\forms.py:359 msgid "Email address already taken!" msgstr "" -#: .\cookbook\forms.py:343 +#: .\cookbook\forms.py:367 msgid "" "An email address is not required but if present the invite link will be send " "to the user." msgstr "" -#: .\cookbook\forms.py:358 +#: .\cookbook\forms.py:382 msgid "Name already taken." msgstr "" -#: .\cookbook\forms.py:369 +#: .\cookbook\forms.py:393 msgid "Accept Terms and Privacy" msgstr "" -#: .\cookbook\forms.py:399 +#: .\cookbook\forms.py:425 msgid "" "Determines how fuzzy a search is if it uses trigram similarity matching (e." "g. low values mean more typos are ignored)." msgstr "" -#: .\cookbook\forms.py:407 +#: .\cookbook\forms.py:435 msgid "" "Select type method of search. Click here for " "full desciption of choices." msgstr "" -#: .\cookbook\forms.py:408 +#: .\cookbook\forms.py:436 msgid "" "Use fuzzy matching on units, keywords and ingredients when editing and " "importing recipes." msgstr "" -#: .\cookbook\forms.py:409 +#: .\cookbook\forms.py:438 msgid "" "Fields to search ignoring accents. Selecting this option can improve or " "degrade search quality depending on language" msgstr "" -#: .\cookbook\forms.py:410 +#: .\cookbook\forms.py:440 msgid "" "Fields to search for partial matches. (e.g. searching for 'Pie' will return " "'pie' and 'piece' and 'soapie')" msgstr "" -#: .\cookbook\forms.py:411 +#: .\cookbook\forms.py:442 msgid "" "Fields to search for beginning of word matches. (e.g. searching for 'sa' " "will return 'salad' and 'sandwich')" msgstr "" -#: .\cookbook\forms.py:412 +#: .\cookbook\forms.py:444 msgid "" "Fields to 'fuzzy' search. (e.g. searching for 'recpie' will find 'recipe'.) " "Note: this option will conflict with 'web' and 'raw' methods of search." msgstr "" -#: .\cookbook\forms.py:413 +#: .\cookbook\forms.py:446 msgid "" "Fields to full text search. Note: 'web', 'phrase', and 'raw' search methods " "only function with fulltext fields." msgstr "" -#: .\cookbook\forms.py:417 +#: .\cookbook\forms.py:450 #, fuzzy #| msgid "Search" msgid "Search Method" msgstr "Procurar" -#: .\cookbook\forms.py:418 +#: .\cookbook\forms.py:451 msgid "Fuzzy Lookups" msgstr "" -#: .\cookbook\forms.py:419 +#: .\cookbook\forms.py:452 msgid "Ignore Accent" msgstr "" -#: .\cookbook\forms.py:420 +#: .\cookbook\forms.py:453 msgid "Partial Match" msgstr "" -#: .\cookbook\forms.py:421 +#: .\cookbook\forms.py:454 msgid "Starts Wtih" msgstr "" -#: .\cookbook\forms.py:422 +#: .\cookbook\forms.py:455 #, fuzzy #| msgid "Search" msgid "Fuzzy Search" msgstr "Procurar" -#: .\cookbook\forms.py:423 +#: .\cookbook\forms.py:456 #, fuzzy #| msgid "Text" msgid "Full Text" @@ -295,7 +364,7 @@ msgstr "Autenticação necessária para aceder a esta página!" #: .\cookbook\helper\permission_helper.py:216 #: .\cookbook\helper\permission_helper.py:230 #: .\cookbook\helper\permission_helper.py:241 -#: .\cookbook\helper\permission_helper.py:252 .\cookbook\views\data.py:42 +#: .\cookbook\helper\permission_helper.py:252 .\cookbook\views\data.py:47 #: .\cookbook\views\views.py:160 .\cookbook\views\views.py:167 #: .\cookbook\views\views.py:233 msgid "You do not have the required permissions to view this page!" @@ -317,11 +386,11 @@ msgstr "" #: .\cookbook\templates\import_response.html:7 #: .\cookbook\templates\test.html:14 .\cookbook\templates\test.html:20 #: .\cookbook\templates\url_import.html:27 -#: .\cookbook\templates\url_import.html:103 -#: .\cookbook\templates\url_import.html:125 -#: .\cookbook\templates\url_import.html:319 -#: .\cookbook\templates\url_import.html:606 .\cookbook\views\delete.py:89 -#: .\cookbook\views\edit.py:197 +#: .\cookbook\templates\url_import.html:105 +#: .\cookbook\templates\url_import.html:127 +#: .\cookbook\templates\url_import.html:321 +#: .\cookbook\templates\url_import.html:609 .\cookbook\views\delete.py:89 +#: .\cookbook\views\edit.py:200 msgid "Import" msgstr "Importar" @@ -357,14 +426,14 @@ msgstr "Nota" msgid "Nutritional Information" msgstr "" -#: .\cookbook\integration\paprika.py:53 +#: .\cookbook\integration\paprika.py:53 .\cookbook\templates\url_import.html:40 msgid "Source" msgstr "" #: .\cookbook\integration\safron.py:23 #: .\cookbook\templates\include\log_cooking.html:16 -#: .\cookbook\templates\url_import.html:226 -#: .\cookbook\templates\url_import.html:457 +#: .\cookbook\templates\url_import.html:228 +#: .\cookbook\templates\url_import.html:459 msgid "Servings" msgstr "Porções" @@ -432,7 +501,7 @@ msgstr "Procurar" #: .\cookbook\models.py:203 .\cookbook\templates\base.html:82 #: .\cookbook\templates\meal_plan.html:7 #: .\cookbook\templates\meal_plan_new.html:7 .\cookbook\views\delete.py:181 -#: .\cookbook\views\edit.py:217 .\cookbook\views\new.py:180 +#: .\cookbook\views\edit.py:220 .\cookbook\views\new.py:184 msgid "Meal-Plan" msgstr "Plano de refeição" @@ -457,7 +526,7 @@ msgstr "Novo" msgid " is part of a recipe step and cannot be deleted" msgstr "" -#: .\cookbook\models.py:441 +#: .\cookbook\models.py:441 .\cookbook\templates\url_import.html:42 msgid "Text" msgstr "Texto" @@ -465,7 +534,7 @@ msgstr "Texto" msgid "Time" msgstr "Tempo" -#: .\cookbook\models.py:441 +#: .\cookbook\models.py:441 .\cookbook\templates\url_import.html:44 #, fuzzy #| msgid "File ID" msgid "File" @@ -473,8 +542,8 @@ msgstr "ID the ficheiro" #: .\cookbook\models.py:441 #: .\cookbook\templates\include\recipe_open_modal.html:7 -#: .\cookbook\views\delete.py:39 .\cookbook\views\edit.py:257 -#: .\cookbook\views\new.py:52 +#: .\cookbook\views\delete.py:39 .\cookbook\views\edit.py:260 +#: .\cookbook\views\new.py:53 msgid "Recipe" msgstr "Receita" @@ -937,7 +1006,7 @@ msgstr "Editar Receitas em massa" msgid "Add the specified keywords to all recipes containing a word" msgstr "Adicionar palavras-chave a todas as receitas que contenham uma palavra" -#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:83 +#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:82 msgid "Sync" msgstr "Sincronizar" @@ -955,6 +1024,18 @@ msgstr "" msgid "The path must be in the following format" msgstr "O caminho deve estar no seguinte formato" +#: .\cookbook\templates\batch\monitor.html:20 +#: .\cookbook\templates\forms\edit_import_recipe.html:14 +#: .\cookbook\templates\generic\edit_template.html:23 +#: .\cookbook\templates\generic\new_template.html:23 +#: .\cookbook\templates\include\log_cooking.html:28 +#: .\cookbook\templates\settings.html:63 .\cookbook\templates\settings.html:105 +#: .\cookbook\templates\settings.html:123 +#: .\cookbook\templates\settings.html:195 +#: .\cookbook\templates\shopping_list.html:360 +msgid "Save" +msgstr "Gravar" + #: .\cookbook\templates\batch\monitor.html:21 msgid "Manage External Storage" msgstr "" @@ -1001,17 +1082,6 @@ msgstr "Exportar Receitas" msgid "Import new Recipe" msgstr "Importar nova Receita" -#: .\cookbook\templates\forms\edit_import_recipe.html:14 -#: .\cookbook\templates\generic\edit_template.html:23 -#: .\cookbook\templates\generic\new_template.html:23 -#: .\cookbook\templates\include\log_cooking.html:28 -#: .\cookbook\templates\settings.html:63 .\cookbook\templates\settings.html:105 -#: .\cookbook\templates\settings.html:123 -#: .\cookbook\templates\settings.html:195 -#: .\cookbook\templates\shopping_list.html:360 -msgid "Save" -msgstr "Gravar" - #: .\cookbook\templates\forms\edit_internal_recipe.html:7 msgid "Edit Recipe" msgstr "Editar Receita" @@ -1438,33 +1508,28 @@ msgid "" "recently viewed them. Keep in mind that data might be outdated." msgstr "" -#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\space.html:62 -#: .\cookbook\templates\stats.html:47 -msgid "Comments" -msgstr "" - #: .\cookbook\templates\recipe_view.html:26 msgid "by" msgstr "por" #: .\cookbook\templates\recipe_view.html:44 .\cookbook\views\delete.py:147 -#: .\cookbook\views\edit.py:177 +#: .\cookbook\views\edit.py:180 msgid "Comment" msgstr "" #: .\cookbook\templates\recipes_table.html:19 #: .\cookbook\templates\recipes_table.html:23 -#: .\cookbook\templates\url_import.html:442 +#: .\cookbook\templates\url_import.html:444 msgid "Recipe Image" msgstr "" #: .\cookbook\templates\recipes_table.html:51 -#: .\cookbook\templates\url_import.html:447 +#: .\cookbook\templates\url_import.html:449 msgid "Preparation time ca." msgstr "" #: .\cookbook\templates\recipes_table.html:57 -#: .\cookbook\templates\url_import.html:452 +#: .\cookbook\templates\url_import.html:454 msgid "Waiting time ca." msgstr "" @@ -1827,8 +1892,8 @@ msgstr "Selecionar Unidade" #: .\cookbook\templates\shopping_list.html:218 #: .\cookbook\templates\shopping_list.html:248 #: .\cookbook\templates\shopping_list.html:272 -#: .\cookbook\templates\url_import.html:497 -#: .\cookbook\templates\url_import.html:529 +#: .\cookbook\templates\url_import.html:500 +#: .\cookbook\templates\url_import.html:532 msgid "Select" msgstr "Selecionar" @@ -2107,162 +2172,170 @@ msgstr "" msgid "Bookmark Me!" msgstr "" -#: .\cookbook\templates\url_import.html:61 +#: .\cookbook\templates\url_import.html:36 +msgid "URL" +msgstr "" + +#: .\cookbook\templates\url_import.html:38 +msgid "App" +msgstr "" + +#: .\cookbook\templates\url_import.html:62 msgid "Enter website URL" msgstr "" -#: .\cookbook\templates\url_import.html:99 +#: .\cookbook\templates\url_import.html:101 msgid "Select recipe files to import or drop them here..." msgstr "" -#: .\cookbook\templates\url_import.html:120 +#: .\cookbook\templates\url_import.html:122 msgid "Paste json or html source here to load recipe." msgstr "" -#: .\cookbook\templates\url_import.html:148 +#: .\cookbook\templates\url_import.html:150 #, fuzzy #| msgid "View Recipe" msgid "Preview Recipe Data" msgstr "Ver Receita" -#: .\cookbook\templates\url_import.html:149 +#: .\cookbook\templates\url_import.html:151 msgid "Drag recipe attributes from the right into the appropriate box below." msgstr "" -#: .\cookbook\templates\url_import.html:158 -#: .\cookbook\templates\url_import.html:175 -#: .\cookbook\templates\url_import.html:192 -#: .\cookbook\templates\url_import.html:211 -#: .\cookbook\templates\url_import.html:229 -#: .\cookbook\templates\url_import.html:244 -#: .\cookbook\templates\url_import.html:259 -#: .\cookbook\templates\url_import.html:275 -#: .\cookbook\templates\url_import.html:302 -#: .\cookbook\templates\url_import.html:353 +#: .\cookbook\templates\url_import.html:160 +#: .\cookbook\templates\url_import.html:177 +#: .\cookbook\templates\url_import.html:194 +#: .\cookbook\templates\url_import.html:213 +#: .\cookbook\templates\url_import.html:231 +#: .\cookbook\templates\url_import.html:246 +#: .\cookbook\templates\url_import.html:261 +#: .\cookbook\templates\url_import.html:277 +#: .\cookbook\templates\url_import.html:304 +#: .\cookbook\templates\url_import.html:355 msgid "Clear Contents" msgstr "" -#: .\cookbook\templates\url_import.html:160 +#: .\cookbook\templates\url_import.html:162 msgid "Text dragged here will be appended to the name." msgstr "" -#: .\cookbook\templates\url_import.html:173 +#: .\cookbook\templates\url_import.html:175 msgid "Description" msgstr "" -#: .\cookbook\templates\url_import.html:177 +#: .\cookbook\templates\url_import.html:179 msgid "Text dragged here will be appended to the description." msgstr "" -#: .\cookbook\templates\url_import.html:194 +#: .\cookbook\templates\url_import.html:196 msgid "Keywords dragged here will be appended to current list" msgstr "" -#: .\cookbook\templates\url_import.html:209 +#: .\cookbook\templates\url_import.html:211 msgid "Image" msgstr "" -#: .\cookbook\templates\url_import.html:241 +#: .\cookbook\templates\url_import.html:243 #, fuzzy #| msgid "Time" msgid "Prep Time" msgstr "Tempo" -#: .\cookbook\templates\url_import.html:256 +#: .\cookbook\templates\url_import.html:258 #, fuzzy #| msgid "Time" msgid "Cook Time" msgstr "Tempo" -#: .\cookbook\templates\url_import.html:277 +#: .\cookbook\templates\url_import.html:279 msgid "Ingredients dragged here will be appended to current list." msgstr "" -#: .\cookbook\templates\url_import.html:299 -#: .\cookbook\templates\url_import.html:569 +#: .\cookbook\templates\url_import.html:301 +#: .\cookbook\templates\url_import.html:572 msgid "Instructions" msgstr "Instruções" -#: .\cookbook\templates\url_import.html:304 +#: .\cookbook\templates\url_import.html:306 msgid "" "Recipe instructions dragged here will be appended to current instructions." msgstr "" -#: .\cookbook\templates\url_import.html:327 +#: .\cookbook\templates\url_import.html:329 #, fuzzy #| msgid "Discovered Recipes" msgid "Discovered Attributes" msgstr "Descobrir Receitas" -#: .\cookbook\templates\url_import.html:329 +#: .\cookbook\templates\url_import.html:331 msgid "" "Drag recipe attributes from below into the appropriate box on the left. " "Click any node to display its full properties." msgstr "" -#: .\cookbook\templates\url_import.html:346 +#: .\cookbook\templates\url_import.html:348 #, fuzzy #| msgid "Show as header" msgid "Show Blank Field" msgstr "Mostrar como cabeçalho" -#: .\cookbook\templates\url_import.html:351 +#: .\cookbook\templates\url_import.html:353 msgid "Blank Field" msgstr "" -#: .\cookbook\templates\url_import.html:355 +#: .\cookbook\templates\url_import.html:357 msgid "Items dragged to Blank Field will be appended." msgstr "" -#: .\cookbook\templates\url_import.html:402 +#: .\cookbook\templates\url_import.html:404 #, fuzzy #| msgid "Delete Step" msgid "Delete Text" msgstr "Apagar Passo" -#: .\cookbook\templates\url_import.html:415 +#: .\cookbook\templates\url_import.html:417 #, fuzzy #| msgid "Delete Recipe" msgid "Delete image" msgstr "Apagar Receita" -#: .\cookbook\templates\url_import.html:431 +#: .\cookbook\templates\url_import.html:433 msgid "Recipe Name" msgstr "" -#: .\cookbook\templates\url_import.html:435 +#: .\cookbook\templates\url_import.html:437 msgid "Recipe Description" msgstr "" -#: .\cookbook\templates\url_import.html:496 -#: .\cookbook\templates\url_import.html:528 -#: .\cookbook\templates\url_import.html:584 +#: .\cookbook\templates\url_import.html:499 +#: .\cookbook\templates\url_import.html:531 +#: .\cookbook\templates\url_import.html:587 msgid "Select one" msgstr "" -#: .\cookbook\templates\url_import.html:544 +#: .\cookbook\templates\url_import.html:547 msgid "Note" msgstr "Nota" -#: .\cookbook\templates\url_import.html:585 +#: .\cookbook\templates\url_import.html:588 #, fuzzy #| msgid "Keyword" msgid "Add Keyword" msgstr "Palavra-chave" -#: .\cookbook\templates\url_import.html:598 +#: .\cookbook\templates\url_import.html:601 msgid "All Keywords" msgstr "" -#: .\cookbook\templates\url_import.html:601 +#: .\cookbook\templates\url_import.html:604 msgid "Import all keywords, not only the ones already existing." msgstr "" -#: .\cookbook\templates\url_import.html:628 +#: .\cookbook\templates\url_import.html:631 msgid "Information" msgstr "" -#: .\cookbook\templates\url_import.html:630 +#: .\cookbook\templates\url_import.html:633 msgid "" " Only websites containing ld+json or microdata information can currently\n" " be imported. Most big recipe pages " @@ -2273,129 +2346,130 @@ msgid "" " github issues." msgstr "" -#: .\cookbook\templates\url_import.html:638 +#: .\cookbook\templates\url_import.html:641 msgid "Google ld+json Info" msgstr "" -#: .\cookbook\templates\url_import.html:641 +#: .\cookbook\templates\url_import.html:644 msgid "GitHub Issues" msgstr "" -#: .\cookbook\templates\url_import.html:643 +#: .\cookbook\templates\url_import.html:646 msgid "Recipe Markup Specification" msgstr "" -#: .\cookbook\views\api.py:82 .\cookbook\views\api.py:131 +#: .\cookbook\views\api.py:83 .\cookbook\views\api.py:132 msgid "Parameter updated_at incorrectly formatted" msgstr "" -#: .\cookbook\views\api.py:151 +#: .\cookbook\views\api.py:152 #, python-brace-format msgid "No {self.basename} with id {pk} exists" msgstr "" -#: .\cookbook\views\api.py:155 +#: .\cookbook\views\api.py:156 msgid "Cannot merge with the same object!" msgstr "" -#: .\cookbook\views\api.py:162 +#: .\cookbook\views\api.py:163 #, python-brace-format msgid "No {self.basename} with id {target} exists" msgstr "" -#: .\cookbook\views\api.py:167 +#: .\cookbook\views\api.py:168 msgid "Cannot merge with child object!" msgstr "" -#: .\cookbook\views\api.py:200 +#: .\cookbook\views\api.py:201 #, python-brace-format msgid "{source.name} was merged successfully with {target.name}" msgstr "" -#: .\cookbook\views\api.py:204 +#: .\cookbook\views\api.py:205 #, python-brace-format msgid "An error occurred attempting to merge {source.name} with {target.name}" msgstr "" -#: .\cookbook\views\api.py:248 +#: .\cookbook\views\api.py:249 #, python-brace-format msgid "No {self.basename} with id {child} exists" msgstr "" -#: .\cookbook\views\api.py:257 +#: .\cookbook\views\api.py:258 #, python-brace-format msgid "{child.name} was moved successfully to the root." msgstr "" -#: .\cookbook\views\api.py:260 .\cookbook\views\api.py:278 +#: .\cookbook\views\api.py:261 .\cookbook\views\api.py:279 msgid "An error occurred attempting to move " msgstr "" -#: .\cookbook\views\api.py:263 +#: .\cookbook\views\api.py:264 msgid "Cannot move an object to itself!" msgstr "" -#: .\cookbook\views\api.py:269 +#: .\cookbook\views\api.py:270 #, python-brace-format msgid "No {self.basename} with id {parent} exists" msgstr "" -#: .\cookbook\views\api.py:275 +#: .\cookbook\views\api.py:276 #, python-brace-format msgid "{child.name} was moved successfully to parent {parent.name}" msgstr "" -#: .\cookbook\views\api.py:723 .\cookbook\views\views.py:277 -msgid "This feature is not available in the demo version!" +#: .\cookbook\views\api.py:723 .\cookbook\views\data.py:42 +#: .\cookbook\views\edit.py:129 .\cookbook\views\new.py:95 +msgid "This feature is not yet available in the hosted version of tandoor!" msgstr "" -#: .\cookbook\views\api.py:746 +#: .\cookbook\views\api.py:745 msgid "Sync successful!" msgstr "" -#: .\cookbook\views\api.py:751 +#: .\cookbook\views\api.py:750 msgid "Error synchronizing with Storage" msgstr "" -#: .\cookbook\views\api.py:829 +#: .\cookbook\views\api.py:828 msgid "Nothing to do." msgstr "" -#: .\cookbook\views\api.py:844 +#: .\cookbook\views\api.py:843 msgid "The requested site provided malformed data and cannot be read." msgstr "" -#: .\cookbook\views\api.py:851 +#: .\cookbook\views\api.py:850 msgid "The requested page could not be found." msgstr "" -#: .\cookbook\views\api.py:860 +#: .\cookbook\views\api.py:859 msgid "" "The requested site does not provide any recognized data format to import the " "recipe from." msgstr "Esta página não contém uma receita que eu consiga entender." -#: .\cookbook\views\api.py:874 +#: .\cookbook\views\api.py:873 msgid "No useable data could be found." msgstr "" -#: .\cookbook\views\api.py:890 +#: .\cookbook\views\api.py:889 msgid "I couldn't find anything to do." msgstr "" -#: .\cookbook\views\data.py:33 .\cookbook\views\data.py:124 -#: .\cookbook\views\edit.py:50 .\cookbook\views\import_export.py:73 -#: .\cookbook\views\new.py:32 +#: .\cookbook\views\data.py:34 .\cookbook\views\data.py:129 +#: .\cookbook\views\edit.py:49 .\cookbook\views\import_export.py:73 +#: .\cookbook\views\new.py:33 msgid "You have reached the maximum number of recipes for your space." msgstr "" -#: .\cookbook\views\data.py:37 .\cookbook\views\data.py:128 -#: .\cookbook\views\edit.py:54 .\cookbook\views\import_export.py:77 -#: .\cookbook\views\new.py:36 +#: .\cookbook\views\data.py:38 .\cookbook\views\data.py:133 +#: .\cookbook\views\edit.py:53 .\cookbook\views\import_export.py:77 +#: .\cookbook\views\new.py:37 msgid "You have more users than allowed in your space." msgstr "" -#: .\cookbook\views\data.py:106 +#: .\cookbook\views\data.py:111 #, python-format msgid "Batch edit done. %(count)d recipe was updated." msgid_plural "Batch edit done. %(count)d Recipes where updated." @@ -2407,7 +2481,7 @@ msgid "Monitor" msgstr "" #: .\cookbook\views\delete.py:125 .\cookbook\views\lists.py:86 -#: .\cookbook\views\new.py:97 +#: .\cookbook\views\new.py:101 msgid "Storage Backend" msgstr "" @@ -2424,31 +2498,27 @@ msgstr "" msgid "Bookmarks" msgstr "" -#: .\cookbook\views\delete.py:192 .\cookbook\views\new.py:231 +#: .\cookbook\views\delete.py:192 .\cookbook\views\new.py:235 msgid "Invite Link" msgstr "" -#: .\cookbook\views\edit.py:126 +#: .\cookbook\views\edit.py:125 msgid "You cannot edit this storage!" msgstr "" -#: .\cookbook\views\edit.py:146 +#: .\cookbook\views\edit.py:149 msgid "Storage saved!" msgstr "" -#: .\cookbook\views\edit.py:152 +#: .\cookbook\views\edit.py:155 msgid "There was an error updating this storage backend!" msgstr "" -#: .\cookbook\views\edit.py:163 -msgid "Storage" -msgstr "" - -#: .\cookbook\views\edit.py:245 +#: .\cookbook\views\edit.py:248 msgid "Changes saved!" msgstr "" -#: .\cookbook\views\edit.py:249 +#: .\cookbook\views\edit.py:252 msgid "Error saving changes!" msgstr "" @@ -2492,59 +2562,59 @@ msgstr "" msgid "New Shopping List" msgstr "Compras" -#: .\cookbook\views\new.py:122 +#: .\cookbook\views\new.py:126 msgid "Imported new recipe!" msgstr "" -#: .\cookbook\views\new.py:125 +#: .\cookbook\views\new.py:129 msgid "There was an error importing this recipe!" msgstr "" -#: .\cookbook\views\new.py:205 +#: .\cookbook\views\new.py:209 msgid "Hello" msgstr "" -#: .\cookbook\views\new.py:205 +#: .\cookbook\views\new.py:209 msgid "You have been invited by " msgstr "" -#: .\cookbook\views\new.py:206 +#: .\cookbook\views\new.py:210 msgid " to join their Tandoor Recipes space " msgstr "" -#: .\cookbook\views\new.py:207 +#: .\cookbook\views\new.py:211 msgid "Click the following link to activate your account: " msgstr "" -#: .\cookbook\views\new.py:208 +#: .\cookbook\views\new.py:212 msgid "" "If the link does not work use the following code to manually join the space: " msgstr "" -#: .\cookbook\views\new.py:209 +#: .\cookbook\views\new.py:213 msgid "The invitation is valid until " msgstr "" -#: .\cookbook\views\new.py:210 +#: .\cookbook\views\new.py:214 msgid "" "Tandoor Recipes is an Open Source recipe manager. Check it out on GitHub " msgstr "" -#: .\cookbook\views\new.py:213 +#: .\cookbook\views\new.py:217 msgid "Tandoor Recipes Invite" msgstr "" -#: .\cookbook\views\new.py:220 +#: .\cookbook\views\new.py:224 msgid "Invite link successfully send to user." msgstr "" -#: .\cookbook\views\new.py:223 +#: .\cookbook\views\new.py:227 msgid "" "You have send to many emails, please share the link manually or wait a few " "hours." msgstr "" -#: .\cookbook\views\new.py:225 +#: .\cookbook\views\new.py:229 msgid "Email to user could not be send, please share link manually." msgstr "" @@ -2562,6 +2632,10 @@ msgstr "" msgid "Comment saved!" msgstr "" +#: .\cookbook\views\views.py:277 +msgid "This feature is not available in the demo version!" +msgstr "" + #: .\cookbook\views\views.py:340 msgid "You must select at least one field to search!" msgstr "" diff --git a/cookbook/locale/rn/LC_MESSAGES/django.po b/cookbook/locale/rn/LC_MESSAGES/django.po index d62982590..d80a6e676 100644 --- a/cookbook/locale/rn/LC_MESSAGES/django.po +++ b/cookbook/locale/rn/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-04 14:56+0100\n" +"POT-Creation-Date: 2021-11-07 17:31+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -21,49 +21,102 @@ msgstr "" #: .\cookbook\filters.py:23 .\cookbook\templates\base.html:125 #: .\cookbook\templates\forms\ingredients.html:34 #: .\cookbook\templates\space.html:43 .\cookbook\templates\stats.html:28 -#: .\cookbook\templates\url_import.html:272 +#: .\cookbook\templates\url_import.html:274 msgid "Ingredients" msgstr "" -#: .\cookbook\forms.py:53 +#: .\cookbook\forms.py:54 +msgid "Default unit" +msgstr "" + +#: .\cookbook\forms.py:55 +msgid "Use fractions" +msgstr "" + +#: .\cookbook\forms.py:56 +msgid "Use KJ" +msgstr "" + +#: .\cookbook\forms.py:57 +msgid "Theme" +msgstr "" + +#: .\cookbook\forms.py:58 +msgid "Navbar color" +msgstr "" + +#: .\cookbook\forms.py:59 +msgid "Sticky navbar" +msgstr "" + +#: .\cookbook\forms.py:60 +msgid "Default page" +msgstr "" + +#: .\cookbook\forms.py:61 +msgid "Show recent recipes" +msgstr "" + +#: .\cookbook\forms.py:62 +msgid "Search style" +msgstr "" + +#: .\cookbook\forms.py:63 +msgid "Plan sharing" +msgstr "" + +#: .\cookbook\forms.py:64 +msgid "Ingredient decimal places" +msgstr "" + +#: .\cookbook\forms.py:65 +msgid "Shopping list auto sync period" +msgstr "" + +#: .\cookbook\forms.py:66 .\cookbook\templates\recipe_view.html:21 +#: .\cookbook\templates\space.html:62 .\cookbook\templates\stats.html:47 +msgid "Comments" +msgstr "" + +#: .\cookbook\forms.py:70 msgid "" "Color of the top navigation bar. Not all colors work with all themes, just " "try them out!" msgstr "" -#: .\cookbook\forms.py:55 +#: .\cookbook\forms.py:72 msgid "Default Unit to be used when inserting a new ingredient into a recipe." msgstr "" -#: .\cookbook\forms.py:57 +#: .\cookbook\forms.py:74 msgid "" "Enables support for fractions in ingredient amounts (e.g. convert decimals " "to fractions automatically)" msgstr "" -#: .\cookbook\forms.py:59 +#: .\cookbook\forms.py:76 msgid "Display nutritional energy amounts in joules instead of calories" msgstr "" -#: .\cookbook\forms.py:61 +#: .\cookbook\forms.py:78 msgid "" "Users with whom newly created meal plan/shopping list entries should be " "shared by default." msgstr "" -#: .\cookbook\forms.py:63 +#: .\cookbook\forms.py:80 msgid "Show recently viewed recipes on search page." msgstr "" -#: .\cookbook\forms.py:64 +#: .\cookbook\forms.py:81 msgid "Number of decimals to round ingredients." msgstr "" -#: .\cookbook\forms.py:65 +#: .\cookbook\forms.py:82 msgid "If you want to be able to create and see comments underneath recipes." msgstr "" -#: .\cookbook\forms.py:67 +#: .\cookbook\forms.py:84 msgid "" "Setting to 0 will disable auto sync. When viewing a shopping list the list " "is updated every set seconds to sync changes someone else might have made. " @@ -71,189 +124,197 @@ msgid "" "mobile data. If lower than instance limit it is reset when saving." msgstr "" -#: .\cookbook\forms.py:70 +#: .\cookbook\forms.py:87 msgid "Makes the navbar stick to the top of the page." msgstr "" -#: .\cookbook\forms.py:86 +#: .\cookbook\forms.py:103 msgid "" "Both fields are optional. If none are given the username will be displayed " "instead" msgstr "" -#: .\cookbook\forms.py:107 .\cookbook\forms.py:266 -#: .\cookbook\templates\url_import.html:156 +#: .\cookbook\forms.py:124 .\cookbook\forms.py:289 +#: .\cookbook\templates\url_import.html:158 msgid "Name" msgstr "" -#: .\cookbook\forms.py:108 .\cookbook\forms.py:267 +#: .\cookbook\forms.py:125 .\cookbook\forms.py:290 #: .\cookbook\templates\space.html:39 .\cookbook\templates\stats.html:24 -#: .\cookbook\templates\url_import.html:190 -#: .\cookbook\templates\url_import.html:575 .\cookbook\views\lists.py:112 +#: .\cookbook\templates\url_import.html:192 +#: .\cookbook\templates\url_import.html:578 .\cookbook\views\lists.py:112 msgid "Keywords" msgstr "" -#: .\cookbook\forms.py:109 +#: .\cookbook\forms.py:126 msgid "Preparation time in minutes" msgstr "" -#: .\cookbook\forms.py:110 +#: .\cookbook\forms.py:127 msgid "Waiting time (cooking/baking) in minutes" msgstr "" -#: .\cookbook\forms.py:111 .\cookbook\forms.py:268 +#: .\cookbook\forms.py:128 .\cookbook\forms.py:259 .\cookbook\forms.py:291 msgid "Path" msgstr "" -#: .\cookbook\forms.py:112 +#: .\cookbook\forms.py:129 msgid "Storage UID" msgstr "" -#: .\cookbook\forms.py:140 +#: .\cookbook\forms.py:157 msgid "Default" msgstr "" -#: .\cookbook\forms.py:151 .\cookbook\templates\url_import.html:92 +#: .\cookbook\forms.py:168 .\cookbook\templates\url_import.html:94 msgid "" "To prevent duplicates recipes with the same name as existing ones are " "ignored. Check this box to import everything." msgstr "" -#: .\cookbook\forms.py:173 +#: .\cookbook\forms.py:190 msgid "Add your comment: " msgstr "" -#: .\cookbook\forms.py:188 +#: .\cookbook\forms.py:205 msgid "Leave empty for dropbox and enter app password for nextcloud." msgstr "" -#: .\cookbook\forms.py:195 +#: .\cookbook\forms.py:212 msgid "Leave empty for nextcloud and enter api token for dropbox." msgstr "" -#: .\cookbook\forms.py:204 +#: .\cookbook\forms.py:221 msgid "" "Leave empty for dropbox and enter only base url for nextcloud (/remote." "php/webdav/ is added automatically)" msgstr "" -#: .\cookbook\forms.py:242 +#: .\cookbook\forms.py:258 .\cookbook\views\edit.py:166 +msgid "Storage" +msgstr "" + +#: .\cookbook\forms.py:260 +msgid "Active" +msgstr "" + +#: .\cookbook\forms.py:265 msgid "Search String" msgstr "" -#: .\cookbook\forms.py:269 +#: .\cookbook\forms.py:292 msgid "File ID" msgstr "" -#: .\cookbook\forms.py:290 +#: .\cookbook\forms.py:313 msgid "You must provide at least a recipe or a title." msgstr "" -#: .\cookbook\forms.py:303 +#: .\cookbook\forms.py:326 msgid "You can list default users to share recipes with in the settings." msgstr "" -#: .\cookbook\forms.py:304 +#: .\cookbook\forms.py:327 msgid "" "You can use markdown to format this field. See the docs here" msgstr "" -#: .\cookbook\forms.py:329 +#: .\cookbook\forms.py:353 msgid "Maximum number of users for this space reached." msgstr "" -#: .\cookbook\forms.py:335 +#: .\cookbook\forms.py:359 msgid "Email address already taken!" msgstr "" -#: .\cookbook\forms.py:343 +#: .\cookbook\forms.py:367 msgid "" "An email address is not required but if present the invite link will be send " "to the user." msgstr "" -#: .\cookbook\forms.py:358 +#: .\cookbook\forms.py:382 msgid "Name already taken." msgstr "" -#: .\cookbook\forms.py:369 +#: .\cookbook\forms.py:393 msgid "Accept Terms and Privacy" msgstr "" -#: .\cookbook\forms.py:399 +#: .\cookbook\forms.py:425 msgid "" "Determines how fuzzy a search is if it uses trigram similarity matching (e." "g. low values mean more typos are ignored)." msgstr "" -#: .\cookbook\forms.py:407 +#: .\cookbook\forms.py:435 msgid "" "Select type method of search. Click here for " "full desciption of choices." msgstr "" -#: .\cookbook\forms.py:408 +#: .\cookbook\forms.py:436 msgid "" "Use fuzzy matching on units, keywords and ingredients when editing and " "importing recipes." msgstr "" -#: .\cookbook\forms.py:409 +#: .\cookbook\forms.py:438 msgid "" "Fields to search ignoring accents. Selecting this option can improve or " "degrade search quality depending on language" msgstr "" -#: .\cookbook\forms.py:410 +#: .\cookbook\forms.py:440 msgid "" "Fields to search for partial matches. (e.g. searching for 'Pie' will return " "'pie' and 'piece' and 'soapie')" msgstr "" -#: .\cookbook\forms.py:411 +#: .\cookbook\forms.py:442 msgid "" "Fields to search for beginning of word matches. (e.g. searching for 'sa' " "will return 'salad' and 'sandwich')" msgstr "" -#: .\cookbook\forms.py:412 +#: .\cookbook\forms.py:444 msgid "" "Fields to 'fuzzy' search. (e.g. searching for 'recpie' will find 'recipe'.) " "Note: this option will conflict with 'web' and 'raw' methods of search." msgstr "" -#: .\cookbook\forms.py:413 +#: .\cookbook\forms.py:446 msgid "" "Fields to full text search. Note: 'web', 'phrase', and 'raw' search methods " "only function with fulltext fields." msgstr "" -#: .\cookbook\forms.py:417 +#: .\cookbook\forms.py:450 msgid "Search Method" msgstr "" -#: .\cookbook\forms.py:418 +#: .\cookbook\forms.py:451 msgid "Fuzzy Lookups" msgstr "" -#: .\cookbook\forms.py:419 +#: .\cookbook\forms.py:452 msgid "Ignore Accent" msgstr "" -#: .\cookbook\forms.py:420 +#: .\cookbook\forms.py:453 msgid "Partial Match" msgstr "" -#: .\cookbook\forms.py:421 +#: .\cookbook\forms.py:454 msgid "Starts Wtih" msgstr "" -#: .\cookbook\forms.py:422 +#: .\cookbook\forms.py:455 msgid "Fuzzy Search" msgstr "" -#: .\cookbook\forms.py:423 +#: .\cookbook\forms.py:456 msgid "Full Text" msgstr "" @@ -274,7 +335,7 @@ msgstr "" #: .\cookbook\helper\permission_helper.py:216 #: .\cookbook\helper\permission_helper.py:230 #: .\cookbook\helper\permission_helper.py:241 -#: .\cookbook\helper\permission_helper.py:252 .\cookbook\views\data.py:42 +#: .\cookbook\helper\permission_helper.py:252 .\cookbook\views\data.py:47 #: .\cookbook\views\views.py:160 .\cookbook\views\views.py:167 #: .\cookbook\views\views.py:233 msgid "You do not have the required permissions to view this page!" @@ -296,11 +357,11 @@ msgstr "" #: .\cookbook\templates\import_response.html:7 #: .\cookbook\templates\test.html:14 .\cookbook\templates\test.html:20 #: .\cookbook\templates\url_import.html:27 -#: .\cookbook\templates\url_import.html:103 -#: .\cookbook\templates\url_import.html:125 -#: .\cookbook\templates\url_import.html:319 -#: .\cookbook\templates\url_import.html:606 .\cookbook\views\delete.py:89 -#: .\cookbook\views\edit.py:197 +#: .\cookbook\templates\url_import.html:105 +#: .\cookbook\templates\url_import.html:127 +#: .\cookbook\templates\url_import.html:321 +#: .\cookbook\templates\url_import.html:609 .\cookbook\views\delete.py:89 +#: .\cookbook\views\edit.py:200 msgid "Import" msgstr "" @@ -333,14 +394,14 @@ msgstr "" msgid "Nutritional Information" msgstr "" -#: .\cookbook\integration\paprika.py:53 +#: .\cookbook\integration\paprika.py:53 .\cookbook\templates\url_import.html:40 msgid "Source" msgstr "" #: .\cookbook\integration\safron.py:23 #: .\cookbook\templates\include\log_cooking.html:16 -#: .\cookbook\templates\url_import.html:226 -#: .\cookbook\templates\url_import.html:457 +#: .\cookbook\templates\url_import.html:228 +#: .\cookbook\templates\url_import.html:459 msgid "Servings" msgstr "" @@ -408,7 +469,7 @@ msgstr "" #: .\cookbook\models.py:203 .\cookbook\templates\base.html:82 #: .\cookbook\templates\meal_plan.html:7 #: .\cookbook\templates\meal_plan_new.html:7 .\cookbook\views\delete.py:181 -#: .\cookbook\views\edit.py:217 .\cookbook\views\new.py:180 +#: .\cookbook\views\edit.py:220 .\cookbook\views\new.py:184 msgid "Meal-Plan" msgstr "" @@ -433,7 +494,7 @@ msgstr "" msgid " is part of a recipe step and cannot be deleted" msgstr "" -#: .\cookbook\models.py:441 +#: .\cookbook\models.py:441 .\cookbook\templates\url_import.html:42 msgid "Text" msgstr "" @@ -441,14 +502,14 @@ msgstr "" msgid "Time" msgstr "" -#: .\cookbook\models.py:441 +#: .\cookbook\models.py:441 .\cookbook\templates\url_import.html:44 msgid "File" msgstr "" #: .\cookbook\models.py:441 #: .\cookbook\templates\include\recipe_open_modal.html:7 -#: .\cookbook\views\delete.py:39 .\cookbook\views\edit.py:257 -#: .\cookbook\views\new.py:52 +#: .\cookbook\views\delete.py:39 .\cookbook\views\edit.py:260 +#: .\cookbook\views\new.py:53 msgid "Recipe" msgstr "" @@ -893,7 +954,7 @@ msgstr "" msgid "Add the specified keywords to all recipes containing a word" msgstr "" -#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:83 +#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:82 msgid "Sync" msgstr "" @@ -911,6 +972,18 @@ msgstr "" msgid "The path must be in the following format" msgstr "" +#: .\cookbook\templates\batch\monitor.html:20 +#: .\cookbook\templates\forms\edit_import_recipe.html:14 +#: .\cookbook\templates\generic\edit_template.html:23 +#: .\cookbook\templates\generic\new_template.html:23 +#: .\cookbook\templates\include\log_cooking.html:28 +#: .\cookbook\templates\settings.html:63 .\cookbook\templates\settings.html:105 +#: .\cookbook\templates\settings.html:123 +#: .\cookbook\templates\settings.html:195 +#: .\cookbook\templates\shopping_list.html:360 +msgid "Save" +msgstr "" + #: .\cookbook\templates\batch\monitor.html:21 msgid "Manage External Storage" msgstr "" @@ -951,17 +1024,6 @@ msgstr "" msgid "Import new Recipe" msgstr "" -#: .\cookbook\templates\forms\edit_import_recipe.html:14 -#: .\cookbook\templates\generic\edit_template.html:23 -#: .\cookbook\templates\generic\new_template.html:23 -#: .\cookbook\templates\include\log_cooking.html:28 -#: .\cookbook\templates\settings.html:63 .\cookbook\templates\settings.html:105 -#: .\cookbook\templates\settings.html:123 -#: .\cookbook\templates\settings.html:195 -#: .\cookbook\templates\shopping_list.html:360 -msgid "Save" -msgstr "" - #: .\cookbook\templates\forms\edit_internal_recipe.html:7 msgid "Edit Recipe" msgstr "" @@ -1365,33 +1427,28 @@ msgid "" "recently viewed them. Keep in mind that data might be outdated." msgstr "" -#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\space.html:62 -#: .\cookbook\templates\stats.html:47 -msgid "Comments" -msgstr "" - #: .\cookbook\templates\recipe_view.html:26 msgid "by" msgstr "" #: .\cookbook\templates\recipe_view.html:44 .\cookbook\views\delete.py:147 -#: .\cookbook\views\edit.py:177 +#: .\cookbook\views\edit.py:180 msgid "Comment" msgstr "" #: .\cookbook\templates\recipes_table.html:19 #: .\cookbook\templates\recipes_table.html:23 -#: .\cookbook\templates\url_import.html:442 +#: .\cookbook\templates\url_import.html:444 msgid "Recipe Image" msgstr "" #: .\cookbook\templates\recipes_table.html:51 -#: .\cookbook\templates\url_import.html:447 +#: .\cookbook\templates\url_import.html:449 msgid "Preparation time ca." msgstr "" #: .\cookbook\templates\recipes_table.html:57 -#: .\cookbook\templates\url_import.html:452 +#: .\cookbook\templates\url_import.html:454 msgid "Waiting time ca." msgstr "" @@ -1736,8 +1793,8 @@ msgstr "" #: .\cookbook\templates\shopping_list.html:218 #: .\cookbook\templates\shopping_list.html:248 #: .\cookbook\templates\shopping_list.html:272 -#: .\cookbook\templates\url_import.html:497 -#: .\cookbook\templates\url_import.html:529 +#: .\cookbook\templates\url_import.html:500 +#: .\cookbook\templates\url_import.html:532 msgid "Select" msgstr "" @@ -2012,146 +2069,154 @@ msgstr "" msgid "Bookmark Me!" msgstr "" -#: .\cookbook\templates\url_import.html:61 +#: .\cookbook\templates\url_import.html:36 +msgid "URL" +msgstr "" + +#: .\cookbook\templates\url_import.html:38 +msgid "App" +msgstr "" + +#: .\cookbook\templates\url_import.html:62 msgid "Enter website URL" msgstr "" -#: .\cookbook\templates\url_import.html:99 +#: .\cookbook\templates\url_import.html:101 msgid "Select recipe files to import or drop them here..." msgstr "" -#: .\cookbook\templates\url_import.html:120 +#: .\cookbook\templates\url_import.html:122 msgid "Paste json or html source here to load recipe." msgstr "" -#: .\cookbook\templates\url_import.html:148 +#: .\cookbook\templates\url_import.html:150 msgid "Preview Recipe Data" msgstr "" -#: .\cookbook\templates\url_import.html:149 +#: .\cookbook\templates\url_import.html:151 msgid "Drag recipe attributes from the right into the appropriate box below." msgstr "" -#: .\cookbook\templates\url_import.html:158 -#: .\cookbook\templates\url_import.html:175 -#: .\cookbook\templates\url_import.html:192 -#: .\cookbook\templates\url_import.html:211 -#: .\cookbook\templates\url_import.html:229 -#: .\cookbook\templates\url_import.html:244 -#: .\cookbook\templates\url_import.html:259 -#: .\cookbook\templates\url_import.html:275 -#: .\cookbook\templates\url_import.html:302 -#: .\cookbook\templates\url_import.html:353 +#: .\cookbook\templates\url_import.html:160 +#: .\cookbook\templates\url_import.html:177 +#: .\cookbook\templates\url_import.html:194 +#: .\cookbook\templates\url_import.html:213 +#: .\cookbook\templates\url_import.html:231 +#: .\cookbook\templates\url_import.html:246 +#: .\cookbook\templates\url_import.html:261 +#: .\cookbook\templates\url_import.html:277 +#: .\cookbook\templates\url_import.html:304 +#: .\cookbook\templates\url_import.html:355 msgid "Clear Contents" msgstr "" -#: .\cookbook\templates\url_import.html:160 +#: .\cookbook\templates\url_import.html:162 msgid "Text dragged here will be appended to the name." msgstr "" -#: .\cookbook\templates\url_import.html:173 +#: .\cookbook\templates\url_import.html:175 msgid "Description" msgstr "" -#: .\cookbook\templates\url_import.html:177 +#: .\cookbook\templates\url_import.html:179 msgid "Text dragged here will be appended to the description." msgstr "" -#: .\cookbook\templates\url_import.html:194 +#: .\cookbook\templates\url_import.html:196 msgid "Keywords dragged here will be appended to current list" msgstr "" -#: .\cookbook\templates\url_import.html:209 +#: .\cookbook\templates\url_import.html:211 msgid "Image" msgstr "" -#: .\cookbook\templates\url_import.html:241 +#: .\cookbook\templates\url_import.html:243 msgid "Prep Time" msgstr "" -#: .\cookbook\templates\url_import.html:256 +#: .\cookbook\templates\url_import.html:258 msgid "Cook Time" msgstr "" -#: .\cookbook\templates\url_import.html:277 +#: .\cookbook\templates\url_import.html:279 msgid "Ingredients dragged here will be appended to current list." msgstr "" -#: .\cookbook\templates\url_import.html:299 -#: .\cookbook\templates\url_import.html:569 +#: .\cookbook\templates\url_import.html:301 +#: .\cookbook\templates\url_import.html:572 msgid "Instructions" msgstr "" -#: .\cookbook\templates\url_import.html:304 +#: .\cookbook\templates\url_import.html:306 msgid "" "Recipe instructions dragged here will be appended to current instructions." msgstr "" -#: .\cookbook\templates\url_import.html:327 +#: .\cookbook\templates\url_import.html:329 msgid "Discovered Attributes" msgstr "" -#: .\cookbook\templates\url_import.html:329 +#: .\cookbook\templates\url_import.html:331 msgid "" "Drag recipe attributes from below into the appropriate box on the left. " "Click any node to display its full properties." msgstr "" -#: .\cookbook\templates\url_import.html:346 +#: .\cookbook\templates\url_import.html:348 msgid "Show Blank Field" msgstr "" -#: .\cookbook\templates\url_import.html:351 +#: .\cookbook\templates\url_import.html:353 msgid "Blank Field" msgstr "" -#: .\cookbook\templates\url_import.html:355 +#: .\cookbook\templates\url_import.html:357 msgid "Items dragged to Blank Field will be appended." msgstr "" -#: .\cookbook\templates\url_import.html:402 +#: .\cookbook\templates\url_import.html:404 msgid "Delete Text" msgstr "" -#: .\cookbook\templates\url_import.html:415 +#: .\cookbook\templates\url_import.html:417 msgid "Delete image" msgstr "" -#: .\cookbook\templates\url_import.html:431 +#: .\cookbook\templates\url_import.html:433 msgid "Recipe Name" msgstr "" -#: .\cookbook\templates\url_import.html:435 +#: .\cookbook\templates\url_import.html:437 msgid "Recipe Description" msgstr "" -#: .\cookbook\templates\url_import.html:496 -#: .\cookbook\templates\url_import.html:528 -#: .\cookbook\templates\url_import.html:584 +#: .\cookbook\templates\url_import.html:499 +#: .\cookbook\templates\url_import.html:531 +#: .\cookbook\templates\url_import.html:587 msgid "Select one" msgstr "" -#: .\cookbook\templates\url_import.html:544 +#: .\cookbook\templates\url_import.html:547 msgid "Note" msgstr "" -#: .\cookbook\templates\url_import.html:585 +#: .\cookbook\templates\url_import.html:588 msgid "Add Keyword" msgstr "" -#: .\cookbook\templates\url_import.html:598 +#: .\cookbook\templates\url_import.html:601 msgid "All Keywords" msgstr "" -#: .\cookbook\templates\url_import.html:601 +#: .\cookbook\templates\url_import.html:604 msgid "Import all keywords, not only the ones already existing." msgstr "" -#: .\cookbook\templates\url_import.html:628 +#: .\cookbook\templates\url_import.html:631 msgid "Information" msgstr "" -#: .\cookbook\templates\url_import.html:630 +#: .\cookbook\templates\url_import.html:633 msgid "" " Only websites containing ld+json or microdata information can currently\n" " be imported. Most big recipe pages " @@ -2162,129 +2227,130 @@ msgid "" " github issues." msgstr "" -#: .\cookbook\templates\url_import.html:638 +#: .\cookbook\templates\url_import.html:641 msgid "Google ld+json Info" msgstr "" -#: .\cookbook\templates\url_import.html:641 +#: .\cookbook\templates\url_import.html:644 msgid "GitHub Issues" msgstr "" -#: .\cookbook\templates\url_import.html:643 +#: .\cookbook\templates\url_import.html:646 msgid "Recipe Markup Specification" msgstr "" -#: .\cookbook\views\api.py:82 .\cookbook\views\api.py:131 +#: .\cookbook\views\api.py:83 .\cookbook\views\api.py:132 msgid "Parameter updated_at incorrectly formatted" msgstr "" -#: .\cookbook\views\api.py:151 +#: .\cookbook\views\api.py:152 #, python-brace-format msgid "No {self.basename} with id {pk} exists" msgstr "" -#: .\cookbook\views\api.py:155 +#: .\cookbook\views\api.py:156 msgid "Cannot merge with the same object!" msgstr "" -#: .\cookbook\views\api.py:162 +#: .\cookbook\views\api.py:163 #, python-brace-format msgid "No {self.basename} with id {target} exists" msgstr "" -#: .\cookbook\views\api.py:167 +#: .\cookbook\views\api.py:168 msgid "Cannot merge with child object!" msgstr "" -#: .\cookbook\views\api.py:200 +#: .\cookbook\views\api.py:201 #, python-brace-format msgid "{source.name} was merged successfully with {target.name}" msgstr "" -#: .\cookbook\views\api.py:204 +#: .\cookbook\views\api.py:205 #, python-brace-format msgid "An error occurred attempting to merge {source.name} with {target.name}" msgstr "" -#: .\cookbook\views\api.py:248 +#: .\cookbook\views\api.py:249 #, python-brace-format msgid "No {self.basename} with id {child} exists" msgstr "" -#: .\cookbook\views\api.py:257 +#: .\cookbook\views\api.py:258 #, python-brace-format msgid "{child.name} was moved successfully to the root." msgstr "" -#: .\cookbook\views\api.py:260 .\cookbook\views\api.py:278 +#: .\cookbook\views\api.py:261 .\cookbook\views\api.py:279 msgid "An error occurred attempting to move " msgstr "" -#: .\cookbook\views\api.py:263 +#: .\cookbook\views\api.py:264 msgid "Cannot move an object to itself!" msgstr "" -#: .\cookbook\views\api.py:269 +#: .\cookbook\views\api.py:270 #, python-brace-format msgid "No {self.basename} with id {parent} exists" msgstr "" -#: .\cookbook\views\api.py:275 +#: .\cookbook\views\api.py:276 #, python-brace-format msgid "{child.name} was moved successfully to parent {parent.name}" msgstr "" -#: .\cookbook\views\api.py:723 .\cookbook\views\views.py:277 -msgid "This feature is not available in the demo version!" +#: .\cookbook\views\api.py:723 .\cookbook\views\data.py:42 +#: .\cookbook\views\edit.py:129 .\cookbook\views\new.py:95 +msgid "This feature is not yet available in the hosted version of tandoor!" msgstr "" -#: .\cookbook\views\api.py:746 +#: .\cookbook\views\api.py:745 msgid "Sync successful!" msgstr "" -#: .\cookbook\views\api.py:751 +#: .\cookbook\views\api.py:750 msgid "Error synchronizing with Storage" msgstr "" -#: .\cookbook\views\api.py:829 +#: .\cookbook\views\api.py:828 msgid "Nothing to do." msgstr "" -#: .\cookbook\views\api.py:844 +#: .\cookbook\views\api.py:843 msgid "The requested site provided malformed data and cannot be read." msgstr "" -#: .\cookbook\views\api.py:851 +#: .\cookbook\views\api.py:850 msgid "The requested page could not be found." msgstr "" -#: .\cookbook\views\api.py:860 +#: .\cookbook\views\api.py:859 msgid "" "The requested site does not provide any recognized data format to import the " "recipe from." msgstr "" -#: .\cookbook\views\api.py:874 +#: .\cookbook\views\api.py:873 msgid "No useable data could be found." msgstr "" -#: .\cookbook\views\api.py:890 +#: .\cookbook\views\api.py:889 msgid "I couldn't find anything to do." msgstr "" -#: .\cookbook\views\data.py:33 .\cookbook\views\data.py:124 -#: .\cookbook\views\edit.py:50 .\cookbook\views\import_export.py:73 -#: .\cookbook\views\new.py:32 +#: .\cookbook\views\data.py:34 .\cookbook\views\data.py:129 +#: .\cookbook\views\edit.py:49 .\cookbook\views\import_export.py:73 +#: .\cookbook\views\new.py:33 msgid "You have reached the maximum number of recipes for your space." msgstr "" -#: .\cookbook\views\data.py:37 .\cookbook\views\data.py:128 -#: .\cookbook\views\edit.py:54 .\cookbook\views\import_export.py:77 -#: .\cookbook\views\new.py:36 +#: .\cookbook\views\data.py:38 .\cookbook\views\data.py:133 +#: .\cookbook\views\edit.py:53 .\cookbook\views\import_export.py:77 +#: .\cookbook\views\new.py:37 msgid "You have more users than allowed in your space." msgstr "" -#: .\cookbook\views\data.py:106 +#: .\cookbook\views\data.py:111 #, python-format msgid "Batch edit done. %(count)d recipe was updated." msgid_plural "Batch edit done. %(count)d Recipes where updated." @@ -2296,7 +2362,7 @@ msgid "Monitor" msgstr "" #: .\cookbook\views\delete.py:125 .\cookbook\views\lists.py:86 -#: .\cookbook\views\new.py:97 +#: .\cookbook\views\new.py:101 msgid "Storage Backend" msgstr "" @@ -2313,31 +2379,27 @@ msgstr "" msgid "Bookmarks" msgstr "" -#: .\cookbook\views\delete.py:192 .\cookbook\views\new.py:231 +#: .\cookbook\views\delete.py:192 .\cookbook\views\new.py:235 msgid "Invite Link" msgstr "" -#: .\cookbook\views\edit.py:126 +#: .\cookbook\views\edit.py:125 msgid "You cannot edit this storage!" msgstr "" -#: .\cookbook\views\edit.py:146 +#: .\cookbook\views\edit.py:149 msgid "Storage saved!" msgstr "" -#: .\cookbook\views\edit.py:152 +#: .\cookbook\views\edit.py:155 msgid "There was an error updating this storage backend!" msgstr "" -#: .\cookbook\views\edit.py:163 -msgid "Storage" -msgstr "" - -#: .\cookbook\views\edit.py:245 +#: .\cookbook\views\edit.py:248 msgid "Changes saved!" msgstr "" -#: .\cookbook\views\edit.py:249 +#: .\cookbook\views\edit.py:252 msgid "Error saving changes!" msgstr "" @@ -2377,59 +2439,59 @@ msgstr "" msgid "New Shopping List" msgstr "" -#: .\cookbook\views\new.py:122 +#: .\cookbook\views\new.py:126 msgid "Imported new recipe!" msgstr "" -#: .\cookbook\views\new.py:125 +#: .\cookbook\views\new.py:129 msgid "There was an error importing this recipe!" msgstr "" -#: .\cookbook\views\new.py:205 +#: .\cookbook\views\new.py:209 msgid "Hello" msgstr "" -#: .\cookbook\views\new.py:205 +#: .\cookbook\views\new.py:209 msgid "You have been invited by " msgstr "" -#: .\cookbook\views\new.py:206 +#: .\cookbook\views\new.py:210 msgid " to join their Tandoor Recipes space " msgstr "" -#: .\cookbook\views\new.py:207 +#: .\cookbook\views\new.py:211 msgid "Click the following link to activate your account: " msgstr "" -#: .\cookbook\views\new.py:208 +#: .\cookbook\views\new.py:212 msgid "" "If the link does not work use the following code to manually join the space: " msgstr "" -#: .\cookbook\views\new.py:209 +#: .\cookbook\views\new.py:213 msgid "The invitation is valid until " msgstr "" -#: .\cookbook\views\new.py:210 +#: .\cookbook\views\new.py:214 msgid "" "Tandoor Recipes is an Open Source recipe manager. Check it out on GitHub " msgstr "" -#: .\cookbook\views\new.py:213 +#: .\cookbook\views\new.py:217 msgid "Tandoor Recipes Invite" msgstr "" -#: .\cookbook\views\new.py:220 +#: .\cookbook\views\new.py:224 msgid "Invite link successfully send to user." msgstr "" -#: .\cookbook\views\new.py:223 +#: .\cookbook\views\new.py:227 msgid "" "You have send to many emails, please share the link manually or wait a few " "hours." msgstr "" -#: .\cookbook\views\new.py:225 +#: .\cookbook\views\new.py:229 msgid "Email to user could not be send, please share link manually." msgstr "" @@ -2447,6 +2509,10 @@ msgstr "" msgid "Comment saved!" msgstr "" +#: .\cookbook\views\views.py:277 +msgid "This feature is not available in the demo version!" +msgstr "" + #: .\cookbook\views\views.py:340 msgid "You must select at least one field to search!" msgstr "" diff --git a/cookbook/locale/tr/LC_MESSAGES/django.po b/cookbook/locale/tr/LC_MESSAGES/django.po index 3e0c66226..7c67c0948 100644 --- a/cookbook/locale/tr/LC_MESSAGES/django.po +++ b/cookbook/locale/tr/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-04 14:56+0100\n" +"POT-Creation-Date: 2021-11-07 17:31+0100\n" "PO-Revision-Date: 2020-06-02 19:28+0000\n" "Last-Translator: Emre S, 2020\n" "Language-Team: Turkish (https://www.transifex.com/django-recipes/" @@ -25,11 +25,68 @@ msgstr "" #: .\cookbook\filters.py:23 .\cookbook\templates\base.html:125 #: .\cookbook\templates\forms\ingredients.html:34 #: .\cookbook\templates\space.html:43 .\cookbook\templates\stats.html:28 -#: .\cookbook\templates\url_import.html:272 +#: .\cookbook\templates\url_import.html:274 msgid "Ingredients" msgstr "Malzemeler" -#: .\cookbook\forms.py:53 +#: .\cookbook\forms.py:54 +msgid "Default unit" +msgstr "" + +#: .\cookbook\forms.py:55 +msgid "Use fractions" +msgstr "" + +#: .\cookbook\forms.py:56 +msgid "Use KJ" +msgstr "" + +#: .\cookbook\forms.py:57 +msgid "Theme" +msgstr "" + +#: .\cookbook\forms.py:58 +msgid "Navbar color" +msgstr "" + +#: .\cookbook\forms.py:59 +msgid "Sticky navbar" +msgstr "" + +#: .\cookbook\forms.py:60 +msgid "Default page" +msgstr "" + +#: .\cookbook\forms.py:61 +#, fuzzy +#| msgid "Show recently viewed recipes on search page." +msgid "Show recent recipes" +msgstr "Son görüntülenen tarifleri arama sayfasında göster." + +#: .\cookbook\forms.py:62 +msgid "Search style" +msgstr "" + +#: .\cookbook\forms.py:63 +msgid "Plan sharing" +msgstr "" + +#: .\cookbook\forms.py:64 +#, fuzzy +#| msgid "Ingredients" +msgid "Ingredient decimal places" +msgstr "Malzemeler" + +#: .\cookbook\forms.py:65 +msgid "Shopping list auto sync period" +msgstr "" + +#: .\cookbook\forms.py:66 .\cookbook\templates\recipe_view.html:21 +#: .\cookbook\templates\space.html:62 .\cookbook\templates\stats.html:47 +msgid "Comments" +msgstr "" + +#: .\cookbook\forms.py:70 msgid "" "Color of the top navigation bar. Not all colors work with all themes, just " "try them out!" @@ -37,39 +94,39 @@ msgstr "" "Gezinti çubuğunun rengi. Bütün renkeler bütün temalarla çalışmayabilir, önce " "deneyin!" -#: .\cookbook\forms.py:55 +#: .\cookbook\forms.py:72 msgid "Default Unit to be used when inserting a new ingredient into a recipe." msgstr "Bir tarife yeni bir malzeme eklenirken kullanılacak Varsayılan Birim." -#: .\cookbook\forms.py:57 +#: .\cookbook\forms.py:74 msgid "" "Enables support for fractions in ingredient amounts (e.g. convert decimals " "to fractions automatically)" msgstr "" -#: .\cookbook\forms.py:59 +#: .\cookbook\forms.py:76 msgid "Display nutritional energy amounts in joules instead of calories" msgstr "" -#: .\cookbook\forms.py:61 +#: .\cookbook\forms.py:78 msgid "" "Users with whom newly created meal plan/shopping list entries should be " "shared by default." msgstr "" -#: .\cookbook\forms.py:63 +#: .\cookbook\forms.py:80 msgid "Show recently viewed recipes on search page." msgstr "Son görüntülenen tarifleri arama sayfasında göster." -#: .\cookbook\forms.py:64 +#: .\cookbook\forms.py:81 msgid "Number of decimals to round ingredients." msgstr "Malzeme birimleri için yuvarlanma basamağı." -#: .\cookbook\forms.py:65 +#: .\cookbook\forms.py:82 msgid "If you want to be able to create and see comments underneath recipes." msgstr "Tariflerin altında yorumlar oluşturup görebilmek istiyorsanız." -#: .\cookbook\forms.py:67 +#: .\cookbook\forms.py:84 msgid "" "Setting to 0 will disable auto sync. When viewing a shopping list the list " "is updated every set seconds to sync changes someone else might have made. " @@ -82,189 +139,197 @@ msgstr "" "fazla kişiyle alışveriş yaparken kullanışlıdır, ancak biraz mobil veri " "kullanabilir. Örnek sınırından düşükse, kaydederken sıfırlanır." -#: .\cookbook\forms.py:70 +#: .\cookbook\forms.py:87 msgid "Makes the navbar stick to the top of the page." msgstr "" -#: .\cookbook\forms.py:86 +#: .\cookbook\forms.py:103 msgid "" "Both fields are optional. If none are given the username will be displayed " "instead" msgstr "" -#: .\cookbook\forms.py:107 .\cookbook\forms.py:266 -#: .\cookbook\templates\url_import.html:156 +#: .\cookbook\forms.py:124 .\cookbook\forms.py:289 +#: .\cookbook\templates\url_import.html:158 msgid "Name" msgstr "İsim" -#: .\cookbook\forms.py:108 .\cookbook\forms.py:267 +#: .\cookbook\forms.py:125 .\cookbook\forms.py:290 #: .\cookbook\templates\space.html:39 .\cookbook\templates\stats.html:24 -#: .\cookbook\templates\url_import.html:190 -#: .\cookbook\templates\url_import.html:575 .\cookbook\views\lists.py:112 +#: .\cookbook\templates\url_import.html:192 +#: .\cookbook\templates\url_import.html:578 .\cookbook\views\lists.py:112 msgid "Keywords" msgstr "" -#: .\cookbook\forms.py:109 +#: .\cookbook\forms.py:126 msgid "Preparation time in minutes" msgstr "" -#: .\cookbook\forms.py:110 +#: .\cookbook\forms.py:127 msgid "Waiting time (cooking/baking) in minutes" msgstr "" -#: .\cookbook\forms.py:111 .\cookbook\forms.py:268 +#: .\cookbook\forms.py:128 .\cookbook\forms.py:259 .\cookbook\forms.py:291 msgid "Path" msgstr "" -#: .\cookbook\forms.py:112 +#: .\cookbook\forms.py:129 msgid "Storage UID" msgstr "" -#: .\cookbook\forms.py:140 +#: .\cookbook\forms.py:157 msgid "Default" msgstr "" -#: .\cookbook\forms.py:151 .\cookbook\templates\url_import.html:92 +#: .\cookbook\forms.py:168 .\cookbook\templates\url_import.html:94 msgid "" "To prevent duplicates recipes with the same name as existing ones are " "ignored. Check this box to import everything." msgstr "" -#: .\cookbook\forms.py:173 +#: .\cookbook\forms.py:190 msgid "Add your comment: " msgstr "" -#: .\cookbook\forms.py:188 +#: .\cookbook\forms.py:205 msgid "Leave empty for dropbox and enter app password for nextcloud." msgstr "" -#: .\cookbook\forms.py:195 +#: .\cookbook\forms.py:212 msgid "Leave empty for nextcloud and enter api token for dropbox." msgstr "" -#: .\cookbook\forms.py:204 +#: .\cookbook\forms.py:221 msgid "" "Leave empty for dropbox and enter only base url for nextcloud (/remote." "php/webdav/ is added automatically)" msgstr "" -#: .\cookbook\forms.py:242 +#: .\cookbook\forms.py:258 .\cookbook\views\edit.py:166 +msgid "Storage" +msgstr "" + +#: .\cookbook\forms.py:260 +msgid "Active" +msgstr "" + +#: .\cookbook\forms.py:265 msgid "Search String" msgstr "" -#: .\cookbook\forms.py:269 +#: .\cookbook\forms.py:292 msgid "File ID" msgstr "" -#: .\cookbook\forms.py:290 +#: .\cookbook\forms.py:313 msgid "You must provide at least a recipe or a title." msgstr "" -#: .\cookbook\forms.py:303 +#: .\cookbook\forms.py:326 msgid "You can list default users to share recipes with in the settings." msgstr "" -#: .\cookbook\forms.py:304 +#: .\cookbook\forms.py:327 msgid "" "You can use markdown to format this field. See the docs here" msgstr "" -#: .\cookbook\forms.py:329 +#: .\cookbook\forms.py:353 msgid "Maximum number of users for this space reached." msgstr "" -#: .\cookbook\forms.py:335 +#: .\cookbook\forms.py:359 msgid "Email address already taken!" msgstr "" -#: .\cookbook\forms.py:343 +#: .\cookbook\forms.py:367 msgid "" "An email address is not required but if present the invite link will be send " "to the user." msgstr "" -#: .\cookbook\forms.py:358 +#: .\cookbook\forms.py:382 msgid "Name already taken." msgstr "" -#: .\cookbook\forms.py:369 +#: .\cookbook\forms.py:393 msgid "Accept Terms and Privacy" msgstr "" -#: .\cookbook\forms.py:399 +#: .\cookbook\forms.py:425 msgid "" "Determines how fuzzy a search is if it uses trigram similarity matching (e." "g. low values mean more typos are ignored)." msgstr "" -#: .\cookbook\forms.py:407 +#: .\cookbook\forms.py:435 msgid "" "Select type method of search. Click here for " "full desciption of choices." msgstr "" -#: .\cookbook\forms.py:408 +#: .\cookbook\forms.py:436 msgid "" "Use fuzzy matching on units, keywords and ingredients when editing and " "importing recipes." msgstr "" -#: .\cookbook\forms.py:409 +#: .\cookbook\forms.py:438 msgid "" "Fields to search ignoring accents. Selecting this option can improve or " "degrade search quality depending on language" msgstr "" -#: .\cookbook\forms.py:410 +#: .\cookbook\forms.py:440 msgid "" "Fields to search for partial matches. (e.g. searching for 'Pie' will return " "'pie' and 'piece' and 'soapie')" msgstr "" -#: .\cookbook\forms.py:411 +#: .\cookbook\forms.py:442 msgid "" "Fields to search for beginning of word matches. (e.g. searching for 'sa' " "will return 'salad' and 'sandwich')" msgstr "" -#: .\cookbook\forms.py:412 +#: .\cookbook\forms.py:444 msgid "" "Fields to 'fuzzy' search. (e.g. searching for 'recpie' will find 'recipe'.) " "Note: this option will conflict with 'web' and 'raw' methods of search." msgstr "" -#: .\cookbook\forms.py:413 +#: .\cookbook\forms.py:446 msgid "" "Fields to full text search. Note: 'web', 'phrase', and 'raw' search methods " "only function with fulltext fields." msgstr "" -#: .\cookbook\forms.py:417 +#: .\cookbook\forms.py:450 msgid "Search Method" msgstr "" -#: .\cookbook\forms.py:418 +#: .\cookbook\forms.py:451 msgid "Fuzzy Lookups" msgstr "" -#: .\cookbook\forms.py:419 +#: .\cookbook\forms.py:452 msgid "Ignore Accent" msgstr "" -#: .\cookbook\forms.py:420 +#: .\cookbook\forms.py:453 msgid "Partial Match" msgstr "" -#: .\cookbook\forms.py:421 +#: .\cookbook\forms.py:454 msgid "Starts Wtih" msgstr "" -#: .\cookbook\forms.py:422 +#: .\cookbook\forms.py:455 msgid "Fuzzy Search" msgstr "" -#: .\cookbook\forms.py:423 +#: .\cookbook\forms.py:456 msgid "Full Text" msgstr "" @@ -285,7 +350,7 @@ msgstr "" #: .\cookbook\helper\permission_helper.py:216 #: .\cookbook\helper\permission_helper.py:230 #: .\cookbook\helper\permission_helper.py:241 -#: .\cookbook\helper\permission_helper.py:252 .\cookbook\views\data.py:42 +#: .\cookbook\helper\permission_helper.py:252 .\cookbook\views\data.py:47 #: .\cookbook\views\views.py:160 .\cookbook\views\views.py:167 #: .\cookbook\views\views.py:233 msgid "You do not have the required permissions to view this page!" @@ -307,11 +372,11 @@ msgstr "" #: .\cookbook\templates\import_response.html:7 #: .\cookbook\templates\test.html:14 .\cookbook\templates\test.html:20 #: .\cookbook\templates\url_import.html:27 -#: .\cookbook\templates\url_import.html:103 -#: .\cookbook\templates\url_import.html:125 -#: .\cookbook\templates\url_import.html:319 -#: .\cookbook\templates\url_import.html:606 .\cookbook\views\delete.py:89 -#: .\cookbook\views\edit.py:197 +#: .\cookbook\templates\url_import.html:105 +#: .\cookbook\templates\url_import.html:127 +#: .\cookbook\templates\url_import.html:321 +#: .\cookbook\templates\url_import.html:609 .\cookbook\views\delete.py:89 +#: .\cookbook\views\edit.py:200 msgid "Import" msgstr "" @@ -344,14 +409,14 @@ msgstr "" msgid "Nutritional Information" msgstr "" -#: .\cookbook\integration\paprika.py:53 +#: .\cookbook\integration\paprika.py:53 .\cookbook\templates\url_import.html:40 msgid "Source" msgstr "" #: .\cookbook\integration\safron.py:23 #: .\cookbook\templates\include\log_cooking.html:16 -#: .\cookbook\templates\url_import.html:226 -#: .\cookbook\templates\url_import.html:457 +#: .\cookbook\templates\url_import.html:228 +#: .\cookbook\templates\url_import.html:459 msgid "Servings" msgstr "" @@ -419,7 +484,7 @@ msgstr "" #: .\cookbook\models.py:203 .\cookbook\templates\base.html:82 #: .\cookbook\templates\meal_plan.html:7 #: .\cookbook\templates\meal_plan_new.html:7 .\cookbook\views\delete.py:181 -#: .\cookbook\views\edit.py:217 .\cookbook\views\new.py:180 +#: .\cookbook\views\edit.py:220 .\cookbook\views\new.py:184 msgid "Meal-Plan" msgstr "" @@ -444,7 +509,7 @@ msgstr "" msgid " is part of a recipe step and cannot be deleted" msgstr "" -#: .\cookbook\models.py:441 +#: .\cookbook\models.py:441 .\cookbook\templates\url_import.html:42 msgid "Text" msgstr "" @@ -452,14 +517,14 @@ msgstr "" msgid "Time" msgstr "" -#: .\cookbook\models.py:441 +#: .\cookbook\models.py:441 .\cookbook\templates\url_import.html:44 msgid "File" msgstr "" #: .\cookbook\models.py:441 #: .\cookbook\templates\include\recipe_open_modal.html:7 -#: .\cookbook\views\delete.py:39 .\cookbook\views\edit.py:257 -#: .\cookbook\views\new.py:52 +#: .\cookbook\views\delete.py:39 .\cookbook\views\edit.py:260 +#: .\cookbook\views\new.py:53 msgid "Recipe" msgstr "" @@ -904,7 +969,7 @@ msgstr "" msgid "Add the specified keywords to all recipes containing a word" msgstr "" -#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:83 +#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:82 msgid "Sync" msgstr "" @@ -922,6 +987,18 @@ msgstr "" msgid "The path must be in the following format" msgstr "" +#: .\cookbook\templates\batch\monitor.html:20 +#: .\cookbook\templates\forms\edit_import_recipe.html:14 +#: .\cookbook\templates\generic\edit_template.html:23 +#: .\cookbook\templates\generic\new_template.html:23 +#: .\cookbook\templates\include\log_cooking.html:28 +#: .\cookbook\templates\settings.html:63 .\cookbook\templates\settings.html:105 +#: .\cookbook\templates\settings.html:123 +#: .\cookbook\templates\settings.html:195 +#: .\cookbook\templates\shopping_list.html:360 +msgid "Save" +msgstr "" + #: .\cookbook\templates\batch\monitor.html:21 msgid "Manage External Storage" msgstr "" @@ -962,17 +1039,6 @@ msgstr "" msgid "Import new Recipe" msgstr "" -#: .\cookbook\templates\forms\edit_import_recipe.html:14 -#: .\cookbook\templates\generic\edit_template.html:23 -#: .\cookbook\templates\generic\new_template.html:23 -#: .\cookbook\templates\include\log_cooking.html:28 -#: .\cookbook\templates\settings.html:63 .\cookbook\templates\settings.html:105 -#: .\cookbook\templates\settings.html:123 -#: .\cookbook\templates\settings.html:195 -#: .\cookbook\templates\shopping_list.html:360 -msgid "Save" -msgstr "" - #: .\cookbook\templates\forms\edit_internal_recipe.html:7 msgid "Edit Recipe" msgstr "" @@ -1376,33 +1442,28 @@ msgid "" "recently viewed them. Keep in mind that data might be outdated." msgstr "" -#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\space.html:62 -#: .\cookbook\templates\stats.html:47 -msgid "Comments" -msgstr "" - #: .\cookbook\templates\recipe_view.html:26 msgid "by" msgstr "" #: .\cookbook\templates\recipe_view.html:44 .\cookbook\views\delete.py:147 -#: .\cookbook\views\edit.py:177 +#: .\cookbook\views\edit.py:180 msgid "Comment" msgstr "" #: .\cookbook\templates\recipes_table.html:19 #: .\cookbook\templates\recipes_table.html:23 -#: .\cookbook\templates\url_import.html:442 +#: .\cookbook\templates\url_import.html:444 msgid "Recipe Image" msgstr "" #: .\cookbook\templates\recipes_table.html:51 -#: .\cookbook\templates\url_import.html:447 +#: .\cookbook\templates\url_import.html:449 msgid "Preparation time ca." msgstr "" #: .\cookbook\templates\recipes_table.html:57 -#: .\cookbook\templates\url_import.html:452 +#: .\cookbook\templates\url_import.html:454 msgid "Waiting time ca." msgstr "" @@ -1747,8 +1808,8 @@ msgstr "" #: .\cookbook\templates\shopping_list.html:218 #: .\cookbook\templates\shopping_list.html:248 #: .\cookbook\templates\shopping_list.html:272 -#: .\cookbook\templates\url_import.html:497 -#: .\cookbook\templates\url_import.html:529 +#: .\cookbook\templates\url_import.html:500 +#: .\cookbook\templates\url_import.html:532 msgid "Select" msgstr "" @@ -2023,146 +2084,154 @@ msgstr "" msgid "Bookmark Me!" msgstr "" -#: .\cookbook\templates\url_import.html:61 +#: .\cookbook\templates\url_import.html:36 +msgid "URL" +msgstr "" + +#: .\cookbook\templates\url_import.html:38 +msgid "App" +msgstr "" + +#: .\cookbook\templates\url_import.html:62 msgid "Enter website URL" msgstr "" -#: .\cookbook\templates\url_import.html:99 +#: .\cookbook\templates\url_import.html:101 msgid "Select recipe files to import or drop them here..." msgstr "" -#: .\cookbook\templates\url_import.html:120 +#: .\cookbook\templates\url_import.html:122 msgid "Paste json or html source here to load recipe." msgstr "" -#: .\cookbook\templates\url_import.html:148 +#: .\cookbook\templates\url_import.html:150 msgid "Preview Recipe Data" msgstr "" -#: .\cookbook\templates\url_import.html:149 +#: .\cookbook\templates\url_import.html:151 msgid "Drag recipe attributes from the right into the appropriate box below." msgstr "" -#: .\cookbook\templates\url_import.html:158 -#: .\cookbook\templates\url_import.html:175 -#: .\cookbook\templates\url_import.html:192 -#: .\cookbook\templates\url_import.html:211 -#: .\cookbook\templates\url_import.html:229 -#: .\cookbook\templates\url_import.html:244 -#: .\cookbook\templates\url_import.html:259 -#: .\cookbook\templates\url_import.html:275 -#: .\cookbook\templates\url_import.html:302 -#: .\cookbook\templates\url_import.html:353 +#: .\cookbook\templates\url_import.html:160 +#: .\cookbook\templates\url_import.html:177 +#: .\cookbook\templates\url_import.html:194 +#: .\cookbook\templates\url_import.html:213 +#: .\cookbook\templates\url_import.html:231 +#: .\cookbook\templates\url_import.html:246 +#: .\cookbook\templates\url_import.html:261 +#: .\cookbook\templates\url_import.html:277 +#: .\cookbook\templates\url_import.html:304 +#: .\cookbook\templates\url_import.html:355 msgid "Clear Contents" msgstr "" -#: .\cookbook\templates\url_import.html:160 +#: .\cookbook\templates\url_import.html:162 msgid "Text dragged here will be appended to the name." msgstr "" -#: .\cookbook\templates\url_import.html:173 +#: .\cookbook\templates\url_import.html:175 msgid "Description" msgstr "" -#: .\cookbook\templates\url_import.html:177 +#: .\cookbook\templates\url_import.html:179 msgid "Text dragged here will be appended to the description." msgstr "" -#: .\cookbook\templates\url_import.html:194 +#: .\cookbook\templates\url_import.html:196 msgid "Keywords dragged here will be appended to current list" msgstr "" -#: .\cookbook\templates\url_import.html:209 +#: .\cookbook\templates\url_import.html:211 msgid "Image" msgstr "" -#: .\cookbook\templates\url_import.html:241 +#: .\cookbook\templates\url_import.html:243 msgid "Prep Time" msgstr "" -#: .\cookbook\templates\url_import.html:256 +#: .\cookbook\templates\url_import.html:258 msgid "Cook Time" msgstr "" -#: .\cookbook\templates\url_import.html:277 +#: .\cookbook\templates\url_import.html:279 msgid "Ingredients dragged here will be appended to current list." msgstr "" -#: .\cookbook\templates\url_import.html:299 -#: .\cookbook\templates\url_import.html:569 +#: .\cookbook\templates\url_import.html:301 +#: .\cookbook\templates\url_import.html:572 msgid "Instructions" msgstr "" -#: .\cookbook\templates\url_import.html:304 +#: .\cookbook\templates\url_import.html:306 msgid "" "Recipe instructions dragged here will be appended to current instructions." msgstr "" -#: .\cookbook\templates\url_import.html:327 +#: .\cookbook\templates\url_import.html:329 msgid "Discovered Attributes" msgstr "" -#: .\cookbook\templates\url_import.html:329 +#: .\cookbook\templates\url_import.html:331 msgid "" "Drag recipe attributes from below into the appropriate box on the left. " "Click any node to display its full properties." msgstr "" -#: .\cookbook\templates\url_import.html:346 +#: .\cookbook\templates\url_import.html:348 msgid "Show Blank Field" msgstr "" -#: .\cookbook\templates\url_import.html:351 +#: .\cookbook\templates\url_import.html:353 msgid "Blank Field" msgstr "" -#: .\cookbook\templates\url_import.html:355 +#: .\cookbook\templates\url_import.html:357 msgid "Items dragged to Blank Field will be appended." msgstr "" -#: .\cookbook\templates\url_import.html:402 +#: .\cookbook\templates\url_import.html:404 msgid "Delete Text" msgstr "" -#: .\cookbook\templates\url_import.html:415 +#: .\cookbook\templates\url_import.html:417 msgid "Delete image" msgstr "" -#: .\cookbook\templates\url_import.html:431 +#: .\cookbook\templates\url_import.html:433 msgid "Recipe Name" msgstr "" -#: .\cookbook\templates\url_import.html:435 +#: .\cookbook\templates\url_import.html:437 msgid "Recipe Description" msgstr "" -#: .\cookbook\templates\url_import.html:496 -#: .\cookbook\templates\url_import.html:528 -#: .\cookbook\templates\url_import.html:584 +#: .\cookbook\templates\url_import.html:499 +#: .\cookbook\templates\url_import.html:531 +#: .\cookbook\templates\url_import.html:587 msgid "Select one" msgstr "" -#: .\cookbook\templates\url_import.html:544 +#: .\cookbook\templates\url_import.html:547 msgid "Note" msgstr "" -#: .\cookbook\templates\url_import.html:585 +#: .\cookbook\templates\url_import.html:588 msgid "Add Keyword" msgstr "" -#: .\cookbook\templates\url_import.html:598 +#: .\cookbook\templates\url_import.html:601 msgid "All Keywords" msgstr "" -#: .\cookbook\templates\url_import.html:601 +#: .\cookbook\templates\url_import.html:604 msgid "Import all keywords, not only the ones already existing." msgstr "" -#: .\cookbook\templates\url_import.html:628 +#: .\cookbook\templates\url_import.html:631 msgid "Information" msgstr "" -#: .\cookbook\templates\url_import.html:630 +#: .\cookbook\templates\url_import.html:633 msgid "" " Only websites containing ld+json or microdata information can currently\n" " be imported. Most big recipe pages " @@ -2173,129 +2242,130 @@ msgid "" " github issues." msgstr "" -#: .\cookbook\templates\url_import.html:638 +#: .\cookbook\templates\url_import.html:641 msgid "Google ld+json Info" msgstr "" -#: .\cookbook\templates\url_import.html:641 +#: .\cookbook\templates\url_import.html:644 msgid "GitHub Issues" msgstr "" -#: .\cookbook\templates\url_import.html:643 +#: .\cookbook\templates\url_import.html:646 msgid "Recipe Markup Specification" msgstr "" -#: .\cookbook\views\api.py:82 .\cookbook\views\api.py:131 +#: .\cookbook\views\api.py:83 .\cookbook\views\api.py:132 msgid "Parameter updated_at incorrectly formatted" msgstr "" -#: .\cookbook\views\api.py:151 +#: .\cookbook\views\api.py:152 #, python-brace-format msgid "No {self.basename} with id {pk} exists" msgstr "" -#: .\cookbook\views\api.py:155 +#: .\cookbook\views\api.py:156 msgid "Cannot merge with the same object!" msgstr "" -#: .\cookbook\views\api.py:162 +#: .\cookbook\views\api.py:163 #, python-brace-format msgid "No {self.basename} with id {target} exists" msgstr "" -#: .\cookbook\views\api.py:167 +#: .\cookbook\views\api.py:168 msgid "Cannot merge with child object!" msgstr "" -#: .\cookbook\views\api.py:200 +#: .\cookbook\views\api.py:201 #, python-brace-format msgid "{source.name} was merged successfully with {target.name}" msgstr "" -#: .\cookbook\views\api.py:204 +#: .\cookbook\views\api.py:205 #, python-brace-format msgid "An error occurred attempting to merge {source.name} with {target.name}" msgstr "" -#: .\cookbook\views\api.py:248 +#: .\cookbook\views\api.py:249 #, python-brace-format msgid "No {self.basename} with id {child} exists" msgstr "" -#: .\cookbook\views\api.py:257 +#: .\cookbook\views\api.py:258 #, python-brace-format msgid "{child.name} was moved successfully to the root." msgstr "" -#: .\cookbook\views\api.py:260 .\cookbook\views\api.py:278 +#: .\cookbook\views\api.py:261 .\cookbook\views\api.py:279 msgid "An error occurred attempting to move " msgstr "" -#: .\cookbook\views\api.py:263 +#: .\cookbook\views\api.py:264 msgid "Cannot move an object to itself!" msgstr "" -#: .\cookbook\views\api.py:269 +#: .\cookbook\views\api.py:270 #, python-brace-format msgid "No {self.basename} with id {parent} exists" msgstr "" -#: .\cookbook\views\api.py:275 +#: .\cookbook\views\api.py:276 #, python-brace-format msgid "{child.name} was moved successfully to parent {parent.name}" msgstr "" -#: .\cookbook\views\api.py:723 .\cookbook\views\views.py:277 -msgid "This feature is not available in the demo version!" +#: .\cookbook\views\api.py:723 .\cookbook\views\data.py:42 +#: .\cookbook\views\edit.py:129 .\cookbook\views\new.py:95 +msgid "This feature is not yet available in the hosted version of tandoor!" msgstr "" -#: .\cookbook\views\api.py:746 +#: .\cookbook\views\api.py:745 msgid "Sync successful!" msgstr "" -#: .\cookbook\views\api.py:751 +#: .\cookbook\views\api.py:750 msgid "Error synchronizing with Storage" msgstr "" -#: .\cookbook\views\api.py:829 +#: .\cookbook\views\api.py:828 msgid "Nothing to do." msgstr "" -#: .\cookbook\views\api.py:844 +#: .\cookbook\views\api.py:843 msgid "The requested site provided malformed data and cannot be read." msgstr "" -#: .\cookbook\views\api.py:851 +#: .\cookbook\views\api.py:850 msgid "The requested page could not be found." msgstr "" -#: .\cookbook\views\api.py:860 +#: .\cookbook\views\api.py:859 msgid "" "The requested site does not provide any recognized data format to import the " "recipe from." msgstr "" -#: .\cookbook\views\api.py:874 +#: .\cookbook\views\api.py:873 msgid "No useable data could be found." msgstr "" -#: .\cookbook\views\api.py:890 +#: .\cookbook\views\api.py:889 msgid "I couldn't find anything to do." msgstr "" -#: .\cookbook\views\data.py:33 .\cookbook\views\data.py:124 -#: .\cookbook\views\edit.py:50 .\cookbook\views\import_export.py:73 -#: .\cookbook\views\new.py:32 +#: .\cookbook\views\data.py:34 .\cookbook\views\data.py:129 +#: .\cookbook\views\edit.py:49 .\cookbook\views\import_export.py:73 +#: .\cookbook\views\new.py:33 msgid "You have reached the maximum number of recipes for your space." msgstr "" -#: .\cookbook\views\data.py:37 .\cookbook\views\data.py:128 -#: .\cookbook\views\edit.py:54 .\cookbook\views\import_export.py:77 -#: .\cookbook\views\new.py:36 +#: .\cookbook\views\data.py:38 .\cookbook\views\data.py:133 +#: .\cookbook\views\edit.py:53 .\cookbook\views\import_export.py:77 +#: .\cookbook\views\new.py:37 msgid "You have more users than allowed in your space." msgstr "" -#: .\cookbook\views\data.py:106 +#: .\cookbook\views\data.py:111 #, python-format msgid "Batch edit done. %(count)d recipe was updated." msgid_plural "Batch edit done. %(count)d Recipes where updated." @@ -2307,7 +2377,7 @@ msgid "Monitor" msgstr "" #: .\cookbook\views\delete.py:125 .\cookbook\views\lists.py:86 -#: .\cookbook\views\new.py:97 +#: .\cookbook\views\new.py:101 msgid "Storage Backend" msgstr "" @@ -2324,31 +2394,27 @@ msgstr "" msgid "Bookmarks" msgstr "" -#: .\cookbook\views\delete.py:192 .\cookbook\views\new.py:231 +#: .\cookbook\views\delete.py:192 .\cookbook\views\new.py:235 msgid "Invite Link" msgstr "" -#: .\cookbook\views\edit.py:126 +#: .\cookbook\views\edit.py:125 msgid "You cannot edit this storage!" msgstr "" -#: .\cookbook\views\edit.py:146 +#: .\cookbook\views\edit.py:149 msgid "Storage saved!" msgstr "" -#: .\cookbook\views\edit.py:152 +#: .\cookbook\views\edit.py:155 msgid "There was an error updating this storage backend!" msgstr "" -#: .\cookbook\views\edit.py:163 -msgid "Storage" -msgstr "" - -#: .\cookbook\views\edit.py:245 +#: .\cookbook\views\edit.py:248 msgid "Changes saved!" msgstr "" -#: .\cookbook\views\edit.py:249 +#: .\cookbook\views\edit.py:252 msgid "Error saving changes!" msgstr "" @@ -2388,59 +2454,59 @@ msgstr "" msgid "New Shopping List" msgstr "" -#: .\cookbook\views\new.py:122 +#: .\cookbook\views\new.py:126 msgid "Imported new recipe!" msgstr "" -#: .\cookbook\views\new.py:125 +#: .\cookbook\views\new.py:129 msgid "There was an error importing this recipe!" msgstr "" -#: .\cookbook\views\new.py:205 +#: .\cookbook\views\new.py:209 msgid "Hello" msgstr "" -#: .\cookbook\views\new.py:205 +#: .\cookbook\views\new.py:209 msgid "You have been invited by " msgstr "" -#: .\cookbook\views\new.py:206 +#: .\cookbook\views\new.py:210 msgid " to join their Tandoor Recipes space " msgstr "" -#: .\cookbook\views\new.py:207 +#: .\cookbook\views\new.py:211 msgid "Click the following link to activate your account: " msgstr "" -#: .\cookbook\views\new.py:208 +#: .\cookbook\views\new.py:212 msgid "" "If the link does not work use the following code to manually join the space: " msgstr "" -#: .\cookbook\views\new.py:209 +#: .\cookbook\views\new.py:213 msgid "The invitation is valid until " msgstr "" -#: .\cookbook\views\new.py:210 +#: .\cookbook\views\new.py:214 msgid "" "Tandoor Recipes is an Open Source recipe manager. Check it out on GitHub " msgstr "" -#: .\cookbook\views\new.py:213 +#: .\cookbook\views\new.py:217 msgid "Tandoor Recipes Invite" msgstr "" -#: .\cookbook\views\new.py:220 +#: .\cookbook\views\new.py:224 msgid "Invite link successfully send to user." msgstr "" -#: .\cookbook\views\new.py:223 +#: .\cookbook\views\new.py:227 msgid "" "You have send to many emails, please share the link manually or wait a few " "hours." msgstr "" -#: .\cookbook\views\new.py:225 +#: .\cookbook\views\new.py:229 msgid "Email to user could not be send, please share link manually." msgstr "" @@ -2458,6 +2524,10 @@ msgstr "" msgid "Comment saved!" msgstr "" +#: .\cookbook\views\views.py:277 +msgid "This feature is not available in the demo version!" +msgstr "" + #: .\cookbook\views\views.py:340 msgid "You must select at least one field to search!" msgstr "" diff --git a/cookbook/locale/zh_CN/LC_MESSAGES/django.po b/cookbook/locale/zh_CN/LC_MESSAGES/django.po index e4e39b5eb..fafc56608 100644 --- a/cookbook/locale/zh_CN/LC_MESSAGES/django.po +++ b/cookbook/locale/zh_CN/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-11-04 14:56+0100\n" +"POT-Creation-Date: 2021-11-07 17:31+0100\n" "PO-Revision-Date: 2021-08-20 19:28+0000\n" "Last-Translator: Danny Tsui \n" "Language-Team: Chinese (Simplified) /remote." "php/webdav/ is added automatically)" msgstr "" -#: .\cookbook\forms.py:242 +#: .\cookbook\forms.py:258 .\cookbook\views\edit.py:166 +msgid "Storage" +msgstr "" + +#: .\cookbook\forms.py:260 +msgid "Active" +msgstr "" + +#: .\cookbook\forms.py:265 msgid "Search String" msgstr "搜索字符串" -#: .\cookbook\forms.py:269 +#: .\cookbook\forms.py:292 msgid "File ID" msgstr "文件编号" -#: .\cookbook\forms.py:290 +#: .\cookbook\forms.py:313 msgid "You must provide at least a recipe or a title." msgstr "你必须至少提供一份菜谱或一个标题。" -#: .\cookbook\forms.py:303 +#: .\cookbook\forms.py:326 msgid "You can list default users to share recipes with in the settings." msgstr "你可以在设置中列出默认用户来分享食谱。" -#: .\cookbook\forms.py:304 +#: .\cookbook\forms.py:327 msgid "" "You can use markdown to format this field. See the docs here" msgstr "" -#: .\cookbook\forms.py:329 +#: .\cookbook\forms.py:353 msgid "Maximum number of users for this space reached." msgstr "已达到该空间的最大用户数。" -#: .\cookbook\forms.py:335 +#: .\cookbook\forms.py:359 msgid "Email address already taken!" msgstr "电子邮件地址已被注册!" -#: .\cookbook\forms.py:343 +#: .\cookbook\forms.py:367 msgid "" "An email address is not required but if present the invite link will be send " "to the user." msgstr "电子邮件地址不是必需的,但如果存在,邀请链接将被发送给用户。" -#: .\cookbook\forms.py:358 +#: .\cookbook\forms.py:382 msgid "Name already taken." msgstr "名字已被占用。" -#: .\cookbook\forms.py:369 +#: .\cookbook\forms.py:393 msgid "Accept Terms and Privacy" msgstr "接受条款细则及私隐政策" -#: .\cookbook\forms.py:399 +#: .\cookbook\forms.py:425 msgid "" "Determines how fuzzy a search is if it uses trigram similarity matching (e." "g. low values mean more typos are ignored)." msgstr "" -#: .\cookbook\forms.py:407 +#: .\cookbook\forms.py:435 msgid "" "Select type method of search. Click here for " "full desciption of choices." msgstr "" -#: .\cookbook\forms.py:408 +#: .\cookbook\forms.py:436 msgid "" "Use fuzzy matching on units, keywords and ingredients when editing and " "importing recipes." msgstr "" -#: .\cookbook\forms.py:409 +#: .\cookbook\forms.py:438 msgid "" "Fields to search ignoring accents. Selecting this option can improve or " "degrade search quality depending on language" msgstr "" -#: .\cookbook\forms.py:410 +#: .\cookbook\forms.py:440 msgid "" "Fields to search for partial matches. (e.g. searching for 'Pie' will return " "'pie' and 'piece' and 'soapie')" msgstr "" -#: .\cookbook\forms.py:411 +#: .\cookbook\forms.py:442 msgid "" "Fields to search for beginning of word matches. (e.g. searching for 'sa' " "will return 'salad' and 'sandwich')" msgstr "" -#: .\cookbook\forms.py:412 +#: .\cookbook\forms.py:444 msgid "" "Fields to 'fuzzy' search. (e.g. searching for 'recpie' will find 'recipe'.) " "Note: this option will conflict with 'web' and 'raw' methods of search." msgstr "" -#: .\cookbook\forms.py:413 +#: .\cookbook\forms.py:446 msgid "" "Fields to full text search. Note: 'web', 'phrase', and 'raw' search methods " "only function with fulltext fields." msgstr "" -#: .\cookbook\forms.py:417 +#: .\cookbook\forms.py:450 #, fuzzy #| msgid "Search" msgid "Search Method" msgstr "搜索" -#: .\cookbook\forms.py:418 +#: .\cookbook\forms.py:451 msgid "Fuzzy Lookups" msgstr "" -#: .\cookbook\forms.py:419 +#: .\cookbook\forms.py:452 msgid "Ignore Accent" msgstr "" -#: .\cookbook\forms.py:420 +#: .\cookbook\forms.py:453 msgid "Partial Match" msgstr "" -#: .\cookbook\forms.py:421 +#: .\cookbook\forms.py:454 msgid "Starts Wtih" msgstr "" -#: .\cookbook\forms.py:422 +#: .\cookbook\forms.py:455 #, fuzzy #| msgid "Search" msgid "Fuzzy Search" msgstr "搜索" -#: .\cookbook\forms.py:423 +#: .\cookbook\forms.py:456 #, fuzzy #| msgid "Text" msgid "Full Text" @@ -286,7 +359,7 @@ msgstr "你没有登录,因此不能查看这个页面!" #: .\cookbook\helper\permission_helper.py:216 #: .\cookbook\helper\permission_helper.py:230 #: .\cookbook\helper\permission_helper.py:241 -#: .\cookbook\helper\permission_helper.py:252 .\cookbook\views\data.py:42 +#: .\cookbook\helper\permission_helper.py:252 .\cookbook\views\data.py:47 #: .\cookbook\views\views.py:160 .\cookbook\views\views.py:167 #: .\cookbook\views\views.py:233 msgid "You do not have the required permissions to view this page!" @@ -309,11 +382,11 @@ msgstr "无法解析模板代码。" #: .\cookbook\templates\import_response.html:7 #: .\cookbook\templates\test.html:14 .\cookbook\templates\test.html:20 #: .\cookbook\templates\url_import.html:27 -#: .\cookbook\templates\url_import.html:103 -#: .\cookbook\templates\url_import.html:125 -#: .\cookbook\templates\url_import.html:319 -#: .\cookbook\templates\url_import.html:606 .\cookbook\views\delete.py:89 -#: .\cookbook\views\edit.py:197 +#: .\cookbook\templates\url_import.html:105 +#: .\cookbook\templates\url_import.html:127 +#: .\cookbook\templates\url_import.html:321 +#: .\cookbook\templates\url_import.html:609 .\cookbook\views\delete.py:89 +#: .\cookbook\views\edit.py:200 msgid "Import" msgstr "导入" @@ -346,14 +419,14 @@ msgstr "说明" msgid "Nutritional Information" msgstr "营养资料" -#: .\cookbook\integration\paprika.py:53 +#: .\cookbook\integration\paprika.py:53 .\cookbook\templates\url_import.html:40 msgid "Source" msgstr "来源" #: .\cookbook\integration\safron.py:23 #: .\cookbook\templates\include\log_cooking.html:16 -#: .\cookbook\templates\url_import.html:226 -#: .\cookbook\templates\url_import.html:457 +#: .\cookbook\templates\url_import.html:228 +#: .\cookbook\templates\url_import.html:459 msgid "Servings" msgstr "份量" @@ -421,7 +494,7 @@ msgstr "搜索" #: .\cookbook\models.py:203 .\cookbook\templates\base.html:82 #: .\cookbook\templates\meal_plan.html:7 #: .\cookbook\templates\meal_plan_new.html:7 .\cookbook\views\delete.py:181 -#: .\cookbook\views\edit.py:217 .\cookbook\views\new.py:180 +#: .\cookbook\views\edit.py:220 .\cookbook\views\new.py:184 msgid "Meal-Plan" msgstr "餐单" @@ -446,7 +519,7 @@ msgstr "新" msgid " is part of a recipe step and cannot be deleted" msgstr "" -#: .\cookbook\models.py:441 +#: .\cookbook\models.py:441 .\cookbook\templates\url_import.html:42 msgid "Text" msgstr "文本" @@ -454,14 +527,14 @@ msgstr "文本" msgid "Time" msgstr "时间" -#: .\cookbook\models.py:441 +#: .\cookbook\models.py:441 .\cookbook\templates\url_import.html:44 msgid "File" msgstr "文件" #: .\cookbook\models.py:441 #: .\cookbook\templates\include\recipe_open_modal.html:7 -#: .\cookbook\views\delete.py:39 .\cookbook\views\edit.py:257 -#: .\cookbook\views\new.py:52 +#: .\cookbook\views\delete.py:39 .\cookbook\views\edit.py:260 +#: .\cookbook\views\new.py:53 msgid "Recipe" msgstr "菜谱" @@ -920,7 +993,7 @@ msgstr "" msgid "Add the specified keywords to all recipes containing a word" msgstr "" -#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:83 +#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:82 msgid "Sync" msgstr "" @@ -938,6 +1011,18 @@ msgstr "" msgid "The path must be in the following format" msgstr "" +#: .\cookbook\templates\batch\monitor.html:20 +#: .\cookbook\templates\forms\edit_import_recipe.html:14 +#: .\cookbook\templates\generic\edit_template.html:23 +#: .\cookbook\templates\generic\new_template.html:23 +#: .\cookbook\templates\include\log_cooking.html:28 +#: .\cookbook\templates\settings.html:63 .\cookbook\templates\settings.html:105 +#: .\cookbook\templates\settings.html:123 +#: .\cookbook\templates\settings.html:195 +#: .\cookbook\templates\shopping_list.html:360 +msgid "Save" +msgstr "" + #: .\cookbook\templates\batch\monitor.html:21 msgid "Manage External Storage" msgstr "" @@ -982,17 +1067,6 @@ msgstr "" msgid "Import new Recipe" msgstr "" -#: .\cookbook\templates\forms\edit_import_recipe.html:14 -#: .\cookbook\templates\generic\edit_template.html:23 -#: .\cookbook\templates\generic\new_template.html:23 -#: .\cookbook\templates\include\log_cooking.html:28 -#: .\cookbook\templates\settings.html:63 .\cookbook\templates\settings.html:105 -#: .\cookbook\templates\settings.html:123 -#: .\cookbook\templates\settings.html:195 -#: .\cookbook\templates\shopping_list.html:360 -msgid "Save" -msgstr "" - #: .\cookbook\templates\forms\edit_internal_recipe.html:7 msgid "Edit Recipe" msgstr "" @@ -1396,33 +1470,28 @@ msgid "" "recently viewed them. Keep in mind that data might be outdated." msgstr "" -#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\space.html:62 -#: .\cookbook\templates\stats.html:47 -msgid "Comments" -msgstr "" - #: .\cookbook\templates\recipe_view.html:26 msgid "by" msgstr "" #: .\cookbook\templates\recipe_view.html:44 .\cookbook\views\delete.py:147 -#: .\cookbook\views\edit.py:177 +#: .\cookbook\views\edit.py:180 msgid "Comment" msgstr "" #: .\cookbook\templates\recipes_table.html:19 #: .\cookbook\templates\recipes_table.html:23 -#: .\cookbook\templates\url_import.html:442 +#: .\cookbook\templates\url_import.html:444 msgid "Recipe Image" msgstr "" #: .\cookbook\templates\recipes_table.html:51 -#: .\cookbook\templates\url_import.html:447 +#: .\cookbook\templates\url_import.html:449 msgid "Preparation time ca." msgstr "" #: .\cookbook\templates\recipes_table.html:57 -#: .\cookbook\templates\url_import.html:452 +#: .\cookbook\templates\url_import.html:454 msgid "Waiting time ca." msgstr "" @@ -1777,8 +1846,8 @@ msgstr "" #: .\cookbook\templates\shopping_list.html:218 #: .\cookbook\templates\shopping_list.html:248 #: .\cookbook\templates\shopping_list.html:272 -#: .\cookbook\templates\url_import.html:497 -#: .\cookbook\templates\url_import.html:529 +#: .\cookbook\templates\url_import.html:500 +#: .\cookbook\templates\url_import.html:532 msgid "Select" msgstr "" @@ -2053,146 +2122,154 @@ msgstr "" msgid "Bookmark Me!" msgstr "" -#: .\cookbook\templates\url_import.html:61 +#: .\cookbook\templates\url_import.html:36 +msgid "URL" +msgstr "" + +#: .\cookbook\templates\url_import.html:38 +msgid "App" +msgstr "" + +#: .\cookbook\templates\url_import.html:62 msgid "Enter website URL" msgstr "" -#: .\cookbook\templates\url_import.html:99 +#: .\cookbook\templates\url_import.html:101 msgid "Select recipe files to import or drop them here..." msgstr "" -#: .\cookbook\templates\url_import.html:120 +#: .\cookbook\templates\url_import.html:122 msgid "Paste json or html source here to load recipe." msgstr "" -#: .\cookbook\templates\url_import.html:148 +#: .\cookbook\templates\url_import.html:150 msgid "Preview Recipe Data" msgstr "" -#: .\cookbook\templates\url_import.html:149 +#: .\cookbook\templates\url_import.html:151 msgid "Drag recipe attributes from the right into the appropriate box below." msgstr "" -#: .\cookbook\templates\url_import.html:158 -#: .\cookbook\templates\url_import.html:175 -#: .\cookbook\templates\url_import.html:192 -#: .\cookbook\templates\url_import.html:211 -#: .\cookbook\templates\url_import.html:229 -#: .\cookbook\templates\url_import.html:244 -#: .\cookbook\templates\url_import.html:259 -#: .\cookbook\templates\url_import.html:275 -#: .\cookbook\templates\url_import.html:302 -#: .\cookbook\templates\url_import.html:353 +#: .\cookbook\templates\url_import.html:160 +#: .\cookbook\templates\url_import.html:177 +#: .\cookbook\templates\url_import.html:194 +#: .\cookbook\templates\url_import.html:213 +#: .\cookbook\templates\url_import.html:231 +#: .\cookbook\templates\url_import.html:246 +#: .\cookbook\templates\url_import.html:261 +#: .\cookbook\templates\url_import.html:277 +#: .\cookbook\templates\url_import.html:304 +#: .\cookbook\templates\url_import.html:355 msgid "Clear Contents" msgstr "清除内容" -#: .\cookbook\templates\url_import.html:160 +#: .\cookbook\templates\url_import.html:162 msgid "Text dragged here will be appended to the name." msgstr "" -#: .\cookbook\templates\url_import.html:173 +#: .\cookbook\templates\url_import.html:175 msgid "Description" msgstr "" -#: .\cookbook\templates\url_import.html:177 +#: .\cookbook\templates\url_import.html:179 msgid "Text dragged here will be appended to the description." msgstr "" -#: .\cookbook\templates\url_import.html:194 +#: .\cookbook\templates\url_import.html:196 msgid "Keywords dragged here will be appended to current list" msgstr "" -#: .\cookbook\templates\url_import.html:209 +#: .\cookbook\templates\url_import.html:211 msgid "Image" msgstr "影像" -#: .\cookbook\templates\url_import.html:241 +#: .\cookbook\templates\url_import.html:243 msgid "Prep Time" msgstr "准备时间" -#: .\cookbook\templates\url_import.html:256 +#: .\cookbook\templates\url_import.html:258 msgid "Cook Time" msgstr "烹调时间" -#: .\cookbook\templates\url_import.html:277 +#: .\cookbook\templates\url_import.html:279 msgid "Ingredients dragged here will be appended to current list." msgstr "" -#: .\cookbook\templates\url_import.html:299 -#: .\cookbook\templates\url_import.html:569 +#: .\cookbook\templates\url_import.html:301 +#: .\cookbook\templates\url_import.html:572 msgid "Instructions" msgstr "" -#: .\cookbook\templates\url_import.html:304 +#: .\cookbook\templates\url_import.html:306 msgid "" "Recipe instructions dragged here will be appended to current instructions." msgstr "" -#: .\cookbook\templates\url_import.html:327 +#: .\cookbook\templates\url_import.html:329 msgid "Discovered Attributes" msgstr "" -#: .\cookbook\templates\url_import.html:329 +#: .\cookbook\templates\url_import.html:331 msgid "" "Drag recipe attributes from below into the appropriate box on the left. " "Click any node to display its full properties." msgstr "" -#: .\cookbook\templates\url_import.html:346 +#: .\cookbook\templates\url_import.html:348 msgid "Show Blank Field" msgstr "显示空白域" -#: .\cookbook\templates\url_import.html:351 +#: .\cookbook\templates\url_import.html:353 msgid "Blank Field" msgstr "空白域" -#: .\cookbook\templates\url_import.html:355 +#: .\cookbook\templates\url_import.html:357 msgid "Items dragged to Blank Field will be appended." msgstr "" -#: .\cookbook\templates\url_import.html:402 +#: .\cookbook\templates\url_import.html:404 msgid "Delete Text" msgstr "删除文本" -#: .\cookbook\templates\url_import.html:415 +#: .\cookbook\templates\url_import.html:417 msgid "Delete image" msgstr "删除影像" -#: .\cookbook\templates\url_import.html:431 +#: .\cookbook\templates\url_import.html:433 msgid "Recipe Name" msgstr "菜谱名称" -#: .\cookbook\templates\url_import.html:435 +#: .\cookbook\templates\url_import.html:437 msgid "Recipe Description" msgstr "菜谱描述" -#: .\cookbook\templates\url_import.html:496 -#: .\cookbook\templates\url_import.html:528 -#: .\cookbook\templates\url_import.html:584 +#: .\cookbook\templates\url_import.html:499 +#: .\cookbook\templates\url_import.html:531 +#: .\cookbook\templates\url_import.html:587 msgid "Select one" msgstr "选择一项" -#: .\cookbook\templates\url_import.html:544 +#: .\cookbook\templates\url_import.html:547 msgid "Note" msgstr "" -#: .\cookbook\templates\url_import.html:585 +#: .\cookbook\templates\url_import.html:588 msgid "Add Keyword" msgstr "" -#: .\cookbook\templates\url_import.html:598 +#: .\cookbook\templates\url_import.html:601 msgid "All Keywords" msgstr "所有关键字" -#: .\cookbook\templates\url_import.html:601 +#: .\cookbook\templates\url_import.html:604 msgid "Import all keywords, not only the ones already existing." msgstr "导入所有关键字,并不只是现有的。" -#: .\cookbook\templates\url_import.html:628 +#: .\cookbook\templates\url_import.html:631 msgid "Information" msgstr "" -#: .\cookbook\templates\url_import.html:630 +#: .\cookbook\templates\url_import.html:633 msgid "" " Only websites containing ld+json or microdata information can currently\n" " be imported. Most big recipe pages " @@ -2203,129 +2280,130 @@ msgid "" " github issues." msgstr "" -#: .\cookbook\templates\url_import.html:638 +#: .\cookbook\templates\url_import.html:641 msgid "Google ld+json Info" msgstr "" -#: .\cookbook\templates\url_import.html:641 +#: .\cookbook\templates\url_import.html:644 msgid "GitHub Issues" msgstr "GitHub问题" -#: .\cookbook\templates\url_import.html:643 +#: .\cookbook\templates\url_import.html:646 msgid "Recipe Markup Specification" msgstr "" -#: .\cookbook\views\api.py:82 .\cookbook\views\api.py:131 +#: .\cookbook\views\api.py:83 .\cookbook\views\api.py:132 msgid "Parameter updated_at incorrectly formatted" msgstr "" -#: .\cookbook\views\api.py:151 +#: .\cookbook\views\api.py:152 #, python-brace-format msgid "No {self.basename} with id {pk} exists" msgstr "" -#: .\cookbook\views\api.py:155 +#: .\cookbook\views\api.py:156 msgid "Cannot merge with the same object!" msgstr "" -#: .\cookbook\views\api.py:162 +#: .\cookbook\views\api.py:163 #, python-brace-format msgid "No {self.basename} with id {target} exists" msgstr "" -#: .\cookbook\views\api.py:167 +#: .\cookbook\views\api.py:168 msgid "Cannot merge with child object!" msgstr "" -#: .\cookbook\views\api.py:200 +#: .\cookbook\views\api.py:201 #, python-brace-format msgid "{source.name} was merged successfully with {target.name}" msgstr "" -#: .\cookbook\views\api.py:204 +#: .\cookbook\views\api.py:205 #, python-brace-format msgid "An error occurred attempting to merge {source.name} with {target.name}" msgstr "" -#: .\cookbook\views\api.py:248 +#: .\cookbook\views\api.py:249 #, python-brace-format msgid "No {self.basename} with id {child} exists" msgstr "" -#: .\cookbook\views\api.py:257 +#: .\cookbook\views\api.py:258 #, python-brace-format msgid "{child.name} was moved successfully to the root." msgstr "" -#: .\cookbook\views\api.py:260 .\cookbook\views\api.py:278 +#: .\cookbook\views\api.py:261 .\cookbook\views\api.py:279 msgid "An error occurred attempting to move " msgstr "" -#: .\cookbook\views\api.py:263 +#: .\cookbook\views\api.py:264 msgid "Cannot move an object to itself!" msgstr "" -#: .\cookbook\views\api.py:269 +#: .\cookbook\views\api.py:270 #, python-brace-format msgid "No {self.basename} with id {parent} exists" msgstr "" -#: .\cookbook\views\api.py:275 +#: .\cookbook\views\api.py:276 #, python-brace-format msgid "{child.name} was moved successfully to parent {parent.name}" msgstr "" -#: .\cookbook\views\api.py:723 .\cookbook\views\views.py:277 -msgid "This feature is not available in the demo version!" +#: .\cookbook\views\api.py:723 .\cookbook\views\data.py:42 +#: .\cookbook\views\edit.py:129 .\cookbook\views\new.py:95 +msgid "This feature is not yet available in the hosted version of tandoor!" msgstr "" -#: .\cookbook\views\api.py:746 +#: .\cookbook\views\api.py:745 msgid "Sync successful!" msgstr "" -#: .\cookbook\views\api.py:751 +#: .\cookbook\views\api.py:750 msgid "Error synchronizing with Storage" msgstr "" -#: .\cookbook\views\api.py:829 +#: .\cookbook\views\api.py:828 msgid "Nothing to do." msgstr "" -#: .\cookbook\views\api.py:844 +#: .\cookbook\views\api.py:843 msgid "The requested site provided malformed data and cannot be read." msgstr "" -#: .\cookbook\views\api.py:851 +#: .\cookbook\views\api.py:850 msgid "The requested page could not be found." msgstr "" -#: .\cookbook\views\api.py:860 +#: .\cookbook\views\api.py:859 msgid "" "The requested site does not provide any recognized data format to import the " "recipe from." msgstr "" -#: .\cookbook\views\api.py:874 +#: .\cookbook\views\api.py:873 msgid "No useable data could be found." msgstr "" -#: .\cookbook\views\api.py:890 +#: .\cookbook\views\api.py:889 msgid "I couldn't find anything to do." msgstr "" -#: .\cookbook\views\data.py:33 .\cookbook\views\data.py:124 -#: .\cookbook\views\edit.py:50 .\cookbook\views\import_export.py:73 -#: .\cookbook\views\new.py:32 +#: .\cookbook\views\data.py:34 .\cookbook\views\data.py:129 +#: .\cookbook\views\edit.py:49 .\cookbook\views\import_export.py:73 +#: .\cookbook\views\new.py:33 msgid "You have reached the maximum number of recipes for your space." msgstr "" -#: .\cookbook\views\data.py:37 .\cookbook\views\data.py:128 -#: .\cookbook\views\edit.py:54 .\cookbook\views\import_export.py:77 -#: .\cookbook\views\new.py:36 +#: .\cookbook\views\data.py:38 .\cookbook\views\data.py:133 +#: .\cookbook\views\edit.py:53 .\cookbook\views\import_export.py:77 +#: .\cookbook\views\new.py:37 msgid "You have more users than allowed in your space." msgstr "" -#: .\cookbook\views\data.py:106 +#: .\cookbook\views\data.py:111 #, python-format msgid "Batch edit done. %(count)d recipe was updated." msgid_plural "Batch edit done. %(count)d Recipes where updated." @@ -2337,7 +2415,7 @@ msgid "Monitor" msgstr "监测" #: .\cookbook\views\delete.py:125 .\cookbook\views\lists.py:86 -#: .\cookbook\views\new.py:97 +#: .\cookbook\views\new.py:101 msgid "Storage Backend" msgstr "存储后端" @@ -2354,31 +2432,27 @@ msgstr "" msgid "Bookmarks" msgstr "书签" -#: .\cookbook\views\delete.py:192 .\cookbook\views\new.py:231 +#: .\cookbook\views\delete.py:192 .\cookbook\views\new.py:235 msgid "Invite Link" msgstr "" -#: .\cookbook\views\edit.py:126 +#: .\cookbook\views\edit.py:125 msgid "You cannot edit this storage!" msgstr "" -#: .\cookbook\views\edit.py:146 +#: .\cookbook\views\edit.py:149 msgid "Storage saved!" msgstr "存储已存储!" -#: .\cookbook\views\edit.py:152 +#: .\cookbook\views\edit.py:155 msgid "There was an error updating this storage backend!" msgstr "" -#: .\cookbook\views\edit.py:163 -msgid "Storage" -msgstr "" - -#: .\cookbook\views\edit.py:245 +#: .\cookbook\views\edit.py:248 msgid "Changes saved!" msgstr "更改已保存!" -#: .\cookbook\views\edit.py:249 +#: .\cookbook\views\edit.py:252 msgid "Error saving changes!" msgstr "" @@ -2426,59 +2500,59 @@ msgstr "购物清单" msgid "New Shopping List" msgstr "购物清单" -#: .\cookbook\views\new.py:122 +#: .\cookbook\views\new.py:126 msgid "Imported new recipe!" msgstr "" -#: .\cookbook\views\new.py:125 +#: .\cookbook\views\new.py:129 msgid "There was an error importing this recipe!" msgstr "" -#: .\cookbook\views\new.py:205 +#: .\cookbook\views\new.py:209 msgid "Hello" msgstr "你好" -#: .\cookbook\views\new.py:205 +#: .\cookbook\views\new.py:209 msgid "You have been invited by " msgstr "" -#: .\cookbook\views\new.py:206 +#: .\cookbook\views\new.py:210 msgid " to join their Tandoor Recipes space " msgstr "" -#: .\cookbook\views\new.py:207 +#: .\cookbook\views\new.py:211 msgid "Click the following link to activate your account: " msgstr "" -#: .\cookbook\views\new.py:208 +#: .\cookbook\views\new.py:212 msgid "" "If the link does not work use the following code to manually join the space: " msgstr "" -#: .\cookbook\views\new.py:209 +#: .\cookbook\views\new.py:213 msgid "The invitation is valid until " msgstr "邀请有效期至 " -#: .\cookbook\views\new.py:210 +#: .\cookbook\views\new.py:214 msgid "" "Tandoor Recipes is an Open Source recipe manager. Check it out on GitHub " msgstr "" -#: .\cookbook\views\new.py:213 +#: .\cookbook\views\new.py:217 msgid "Tandoor Recipes Invite" msgstr "" -#: .\cookbook\views\new.py:220 +#: .\cookbook\views\new.py:224 msgid "Invite link successfully send to user." msgstr "" -#: .\cookbook\views\new.py:223 +#: .\cookbook\views\new.py:227 msgid "" "You have send to many emails, please share the link manually or wait a few " "hours." msgstr "" -#: .\cookbook\views\new.py:225 +#: .\cookbook\views\new.py:229 msgid "Email to user could not be send, please share link manually." msgstr "" @@ -2496,6 +2570,10 @@ msgstr "" msgid "Comment saved!" msgstr "评论已保存!" +#: .\cookbook\views\views.py:277 +msgid "This feature is not available in the demo version!" +msgstr "" + #: .\cookbook\views\views.py:340 msgid "You must select at least one field to search!" msgstr "" diff --git a/cookbook/templates/batch/monitor.html b/cookbook/templates/batch/monitor.html index eeb005207..67e74bd7f 100644 --- a/cookbook/templates/batch/monitor.html +++ b/cookbook/templates/batch/monitor.html @@ -17,7 +17,7 @@

{% csrf_token %} {{ form|crispy }} - +
diff --git a/cookbook/templates/url_import.html b/cookbook/templates/url_import.html index 94490978e..d769e9eb1 100644 --- a/cookbook/templates/url_import.html +++ b/cookbook/templates/url_import.html @@ -29,26 +29,25 @@ style="height:50%" href="{% bookmarklet request %}" title="{% trans 'Drag me to your bookmarks to import recipes from anywhere' %}"> - {% trans 'Bookmark Me!' %} + {% trans 'Bookmark Me!' %} -