From 98711619ff82724aa7e7db07023ac990f9a1552f Mon Sep 17 00:00:00 2001
From: MaxJa4 <74194322+MaxJa4@users.noreply.github.com>
Date: Tue, 8 Jun 2021 22:39:45 +0200
Subject: [PATCH 01/70] Create image_processing.py
Added central function to rescale and compress images for recipes (or in general).
Switched from previously used PNG format to 75% JPEG format for a 5-10x file size reduction with hardly any quality loss.
---
cookbook/helper/image_processing.py | 15 +++++++++++++++
1 file changed, 15 insertions(+)
create mode 100644 cookbook/helper/image_processing.py
diff --git a/cookbook/helper/image_processing.py b/cookbook/helper/image_processing.py
new file mode 100644
index 00000000..bf84070f
--- /dev/null
+++ b/cookbook/helper/image_processing.py
@@ -0,0 +1,15 @@
+from PIL import Image
+from io import BytesIO
+
+
+def rescale_image(image_object, base_width=720):
+ img = Image.open(image_object)
+ icc_profile = img.info.get('icc_profile') # remember color profile to not mess up colors
+ width_percent = (base_width / float(img.size[0]))
+ height = int((float(img.size[1]) * float(width_percent)))
+
+ img = img.resize((base_width, height), Image.ANTIALIAS)
+ img_bytes = BytesIO()
+ img.save(img_bytes, 'JPEG', quality=75, optimize=True, icc_profile=icc_profile)
+
+ return img_bytes
From 9856857c518066b911a7db67df001a56d0ede56e Mon Sep 17 00:00:00 2001
From: vabene1111 {% blocktrans with provider_name=account.get_provider.name site_name=site.name %}You are about to use your {{provider_name}} account to login to
+{{site_name}}. As a final step, please complete the following form:{% endblocktrans %} {% trans 'The following e-mail addresses are associated with your account:' %} {% blocktrans with provider_name=account.get_provider.name site_name=site.name %}You are about to use your {{provider_name}} account to login to
-{{site_name}}. As a final step, please complete the following form:{% endblocktrans %} {% blocktrans with provider_name=account.get_provider.name site_name=site.name %}You are about to use your
+ {{ provider_name }} account to login to
+ {{ site_name }}. As a final step, please complete the following form:{% endblocktrans %}/remote."
"php/webdav/
is added automatically)"
@@ -190,26 +194,26 @@ 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:291
+#: .\cookbook\forms.py:307
msgid "Search String"
msgstr "Cerca Cadena"
-#: .\cookbook\forms.py:318
+#: .\cookbook\forms.py:334
msgid "File ID"
msgstr "ID d'Arxiu"
-#: .\cookbook\forms.py:354
+#: .\cookbook\forms.py:370
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:367
+#: .\cookbook\forms.py:383
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:368
-#: .\cookbook\templates\forms\edit_internal_recipe.html:377
+#: .\cookbook\forms.py:384
+#: .\cookbook\templates\forms\edit_internal_recipe.html:404
msgid ""
"You can use markdown to format this field. See the docs here"
@@ -217,51 +221,58 @@ msgstr ""
"Podeu utilitzar el marcador per donar format a aquest camp. Consulteu els documents aquí "
-#: .\cookbook\forms.py:393
-msgid "A username is not required, if left blank the new user can choose one."
+#: .\cookbook\forms.py:409
+msgid "Maximum number of users for this space reached."
msgstr ""
-"No cal un nom d’usuari, si es deixa en blanc el nou usuari en pot triar un."
-#: .\cookbook\helper\permission_helper.py:123
-#: .\cookbook\helper\permission_helper.py:129
-#: .\cookbook\helper\permission_helper.py:151
-#: .\cookbook\helper\permission_helper.py:196
-#: .\cookbook\helper\permission_helper.py:210
-#: .\cookbook\helper\permission_helper.py:221
-#: .\cookbook\helper\permission_helper.py:232 .\cookbook\views\data.py:30
-#: .\cookbook\views\views.py:112 .\cookbook\views\views.py:116
-#: .\cookbook\views\views.py:184
-msgid "You do not have the required permissions to view this page!"
-msgstr "No teniu els permisos necessaris per veure aquesta pàgina!"
+#: .\cookbook\forms.py:415
+msgid "Email address already taken!"
+msgstr ""
-#: .\cookbook\helper\permission_helper.py:141
+#: .\cookbook\forms.py:423
+msgid ""
+"An email address is not required but if present the invite link will be send "
+"to the user."
+msgstr ""
+
+#: .\cookbook\forms.py:438
+msgid "Name already taken."
+msgstr ""
+
+#: .\cookbook\forms.py:449
+msgid "Accept Terms and Privacy"
+msgstr ""
+
+#: .\cookbook\helper\AllAuthCustomAdapter.py:30
+msgid ""
+"In order to prevent spam, the requested email was not send. Please wait a "
+"few minutes and try again."
+msgstr ""
+
+#: .\cookbook\helper\permission_helper.py:124
+#: .\cookbook\helper\permission_helper.py:144 .\cookbook\views\views.py:147
msgid "You are not logged in and therefore cannot view this page!"
msgstr "No heu iniciat la sessió i, per tant, no podeu veure aquesta pàgina."
-#: .\cookbook\helper\permission_helper.py:145
-#: .\cookbook\helper\permission_helper.py:167
-#: .\cookbook\helper\permission_helper.py:182
+#: .\cookbook\helper\permission_helper.py:127
+#: .\cookbook\helper\permission_helper.py:132
+#: .\cookbook\helper\permission_helper.py:154
+#: .\cookbook\helper\permission_helper.py:199
+#: .\cookbook\helper\permission_helper.py:213
+#: .\cookbook\helper\permission_helper.py:224
+#: .\cookbook\helper\permission_helper.py:235 .\cookbook\views\data.py:39
+#: .\cookbook\views\views.py:158 .\cookbook\views\views.py:165
+#: .\cookbook\views\views.py:253
+msgid "You do not have the required permissions to view this page!"
+msgstr "No teniu els permisos necessaris per veure aquesta pàgina!"
+
+#: .\cookbook\helper\permission_helper.py:148
+#: .\cookbook\helper\permission_helper.py:170
+#: .\cookbook\helper\permission_helper.py:185
msgid "You cannot interact with this object as it is not owned by you!"
msgstr ""
"No pots interaccionar amb aquest objecte ja que no és de la teva propietat!"
-#: .\cookbook\helper\recipe_url_import.py:40 .\cookbook\views\api.py:549
-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\helper\recipe_url_import.py:54
-msgid ""
-"The requested site does not provide any recognized data format to import the "
-"recipe from."
-msgstr ""
-"El lloc sol·licitat no proporciona cap format de dades reconegut des d’on "
-"importar la recepta."
-
-#: .\cookbook\helper\recipe_url_import.py:160
-msgid "Imported from"
-msgstr "Importat des de"
-
#: .\cookbook\helper\template_helper.py:60
#: .\cookbook\helper\template_helper.py:62
msgid "Could not parse template code."
@@ -271,47 +282,58 @@ msgstr ""
#: .\cookbook\templates\import.html:14 .\cookbook\templates\import.html:20
#: .\cookbook\templates\import_response.html:7
#: .\cookbook\templates\test.html:14 .\cookbook\templates\test.html:20
-#: .\cookbook\templates\url_import.html:233 .\cookbook\views\delete.py:60
-#: .\cookbook\views\edit.py:190
+#: .\cookbook\templates\url_import.html:27
+#: .\cookbook\templates\url_import.html:101
+#: .\cookbook\templates\url_import.html:123
+#: .\cookbook\templates\url_import.html:317
+#: .\cookbook\templates\url_import.html:604 .\cookbook\views\delete.py:60
+#: .\cookbook\views\edit.py:199
msgid "Import"
msgstr "Importar"
-#: .\cookbook\integration\integration.py:131
+#: .\cookbook\integration\integration.py:162
msgid ""
"Importer expected a .zip file. Did you choose the correct importer type for "
"your data ?"
msgstr ""
-#: .\cookbook\integration\integration.py:134
+#: .\cookbook\integration\integration.py:165
+msgid ""
+"An unexpected error occurred during the import. Please make sure you have "
+"uploaded a valid file."
+msgstr ""
+
+#: .\cookbook\integration\integration.py:169
msgid "The following recipes were ignored because they already existed:"
msgstr ""
-#: .\cookbook\integration\integration.py:137
+#: .\cookbook\integration\integration.py:173
#, fuzzy, python-format
#| msgid "Imported new recipe!"
msgid "Imported %s recipes."
msgstr "Nova Recepta importada!"
-#: .\cookbook\integration\paprika.py:44
+#: .\cookbook\integration\paprika.py:46
#, fuzzy
#| msgid "Note"
msgid "Notes"
msgstr "Nota"
-#: .\cookbook\integration\paprika.py:47
+#: .\cookbook\integration\paprika.py:49
#, fuzzy
#| msgid "Information"
msgid "Nutritional Information"
msgstr "Informació"
-#: .\cookbook\integration\paprika.py:50
+#: .\cookbook\integration\paprika.py:53
msgid "Source"
msgstr ""
#: .\cookbook\integration\safron.py:23
-#: .\cookbook\templates\forms\edit_internal_recipe.html:75
+#: .\cookbook\templates\forms\edit_internal_recipe.html:79
#: .\cookbook\templates\include\log_cooking.html:16
-#: .\cookbook\templates\url_import.html:84
+#: .\cookbook\templates\url_import.html:224
+#: .\cookbook\templates\url_import.html:455
msgid "Servings"
msgstr "Racions"
@@ -320,11 +342,11 @@ msgid "Waiting time"
msgstr "Temps d'espera"
#: .\cookbook\integration\safron.py:27
-#: .\cookbook\templates\forms\edit_internal_recipe.html:69
+#: .\cookbook\templates\forms\edit_internal_recipe.html:73
msgid "Preparation Time"
msgstr "Temps de preparació"
-#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:71
+#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:78
#: .\cookbook\templates\forms\ingredients.html:7
#: .\cookbook\templates\index.html:7
msgid "Cookbook"
@@ -350,44 +372,74 @@ msgstr "Sopar"
msgid "Other"
msgstr "Un altre"
-#: .\cookbook\models.py:110 .\cookbook\templates\shopping_list.html:48
+#: .\cookbook\models.py:71
+msgid ""
+"Maximum file storage for space in MB. 0 for unlimited, -1 to disable file "
+"upload."
+msgstr ""
+
+#: .\cookbook\models.py:121 .\cookbook\templates\search.html:7
+#: .\cookbook\templates\shopping_list.html:52
msgid "Search"
msgstr "Cerca"
-#: .\cookbook\models.py:111 .\cookbook\templates\base.html:85
+#: .\cookbook\models.py:122 .\cookbook\templates\base.html:92
#: .\cookbook\templates\meal_plan.html:5 .\cookbook\views\delete.py:152
-#: .\cookbook\views\edit.py:224 .\cookbook\views\new.py:188
+#: .\cookbook\views\edit.py:233 .\cookbook\views\new.py:201
msgid "Meal-Plan"
msgstr "Plans de Menjar"
-#: .\cookbook\models.py:112 .\cookbook\templates\base.html:82
+#: .\cookbook\models.py:123 .\cookbook\templates\base.html:89
msgid "Books"
msgstr "Receptes"
-#: .\cookbook\models.py:119
+#: .\cookbook\models.py:131
msgid "Small"
msgstr "Petit"
-#: .\cookbook\models.py:119
+#: .\cookbook\models.py:131
msgid "Large"
msgstr "Gran"
-#: .\cookbook\models.py:327
-#: .\cookbook\templates\forms\edit_internal_recipe.html:198
+#: .\cookbook\models.py:131 .\cookbook\templates\generic\new_template.html:6
+#: .\cookbook\templates\generic\new_template.html:14
+#: .\cookbook\templates\meal_plan.html:323
+msgid "New"
+msgstr "Nova"
+
+#: .\cookbook\models.py:340
+#: .\cookbook\templates\forms\edit_internal_recipe.html:202
msgid "Text"
msgstr "Text"
-#: .\cookbook\models.py:327
-#: .\cookbook\templates\forms\edit_internal_recipe.html:199
+#: .\cookbook\models.py:340
+#: .\cookbook\templates\forms\edit_internal_recipe.html:203
msgid "Time"
msgstr "Temps"
+#: .\cookbook\models.py:340
+#: .\cookbook\templates\forms\edit_internal_recipe.html:204
+#: .\cookbook\templates\forms\edit_internal_recipe.html:218
+#, fuzzy
+#| msgid "File ID"
+msgid "File"
+msgstr "ID d'Arxiu"
+
+#: .\cookbook\serializer.py:109
+msgid "File uploads are not enabled for this Space."
+msgstr ""
+
+#: .\cookbook\serializer.py:117
+msgid "You have reached your file upload limit."
+msgstr ""
+
#: .\cookbook\tables.py:35 .\cookbook\templates\books.html:36
#: .\cookbook\templates\generic\edit_template.html:6
#: .\cookbook\templates\generic\edit_template.html:14
#: .\cookbook\templates\meal_plan.html:281
#: .\cookbook\templates\recipes_table.html:82
#: .\cookbook\templates\shopping_list.html:33
+#: .\cookbook\templates\space.html:84
msgid "Edit"
msgstr "Edita"
@@ -401,10 +453,6 @@ msgstr "Edita"
msgid "Delete"
msgstr "Esborra"
-#: .\cookbook\tables.py:144
-msgid "Link"
-msgstr "Enllaç"
-
#: .\cookbook\templates\404.html:5
msgid "404 Error"
msgstr "Error 404"
@@ -421,21 +469,124 @@ msgstr "Porta'm a Casa"
msgid "Report a Bug"
msgstr "Reporta Errada"
-#: .\cookbook\templates\account\login.html:7
-#: .\cookbook\templates\base.html:170
+#: .\cookbook\templates\account\email.html:6
+#: .\cookbook\templates\account\email.html:9
+msgid "E-mail Addresses"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:11
+msgid "The following e-mail addresses are associated with your account:"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:28
+msgid "Verified"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:30
+msgid "Unverified"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:32
+msgid "Primary"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:39
+#, fuzzy
+#| msgid "Make Header"
+msgid "Make Primary"
+msgstr "Crea Capçalera"
+
+#: .\cookbook\templates\account\email.html:41
+msgid "Re-send Verification"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:42
+#: .\cookbook\templates\socialaccount\connections.html:36
+msgid "Remove"
+msgstr "Eliminar"
+
+#: .\cookbook\templates\account\email.html:50
+#, fuzzy
+#| msgid "Warning"
+msgid "Warning:"
+msgstr "Advertència"
+
+#: .\cookbook\templates\account\email.html:50
+msgid ""
+"You currently do not have any e-mail address set up. You should really add "
+"an e-mail address so you can receive notifications, reset your password, etc."
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:56
+msgid "Add E-mail Address"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:61
+msgid "Add E-mail"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:71
+msgid "Do you really want to remove the selected e-mail address?"
+msgstr ""
+
+#: .\cookbook\templates\account\email_confirm.html:6
+#: .\cookbook\templates\account\email_confirm.html:10
+msgid "Confirm E-mail Address"
+msgstr ""
+
+#: .\cookbook\templates\account\email_confirm.html:16
+#, python-format
+msgid ""
+"Please confirm that\n"
+" %(email)s is an e-mail address "
+"for user %(user_display)s\n"
+" ."
+msgstr ""
+
+#: .\cookbook\templates\account\email_confirm.html:22
+#: .\cookbook\templates\generic\delete_template.html:21
+msgid "Confirm"
+msgstr "Confirma"
+
+#: .\cookbook\templates\account\email_confirm.html:29
+#, python-format
+msgid ""
+"This e-mail confirmation link expired or is invalid. Please\n"
+" issue a new e-mail confirmation "
+"request."
+msgstr ""
+
+#: .\cookbook\templates\account\login.html:8
+#: .\cookbook\templates\base.html:180
msgid "Login"
msgstr "Iniciar Sessió"
-#: .\cookbook\templates\account\login.html:13
-#: .\cookbook\templates\account\login.html:28
+#: .\cookbook\templates\account\login.html:15
+#: .\cookbook\templates\account\login.html:31
+#: .\cookbook\templates\account\signup.html:69
+#: .\cookbook\templates\account\signup_closed.html:15
msgid "Sign In"
msgstr ""
-#: .\cookbook\templates\account\login.html:38
+#: .\cookbook\templates\account\login.html:32
+msgid "Sign Up"
+msgstr ""
+
+#: .\cookbook\templates\account\login.html:36
+#: .\cookbook\templates\account\login.html:37
+#: .\cookbook\templates\account\password_reset.html:29
+msgid "Reset My Password"
+msgstr ""
+
+#: .\cookbook\templates\account\login.html:37
+msgid "Lost your password?"
+msgstr ""
+
+#: .\cookbook\templates\account\login.html:48
msgid "Social Login"
msgstr ""
-#: .\cookbook\templates\account\login.html:39
+#: .\cookbook\templates\account\login.html:49
msgid "You can use any of the following providers to sign in."
msgstr ""
@@ -449,116 +600,166 @@ msgstr ""
msgid "Are you sure you want to sign out?"
msgstr ""
-#: .\cookbook\templates\account\password_reset.html:5
-#: .\cookbook\templates\account\password_reset_done.html:5
+#: .\cookbook\templates\account\password_reset.html:7
+#: .\cookbook\templates\account\password_reset.html:13
+#: .\cookbook\templates\account\password_reset_done.html:7
+#: .\cookbook\templates\account\password_reset_done.html:10
msgid "Password Reset"
msgstr ""
-#: .\cookbook\templates\account\password_reset.html:9
-#: .\cookbook\templates\account\password_reset_done.html:9
-msgid "Password reset is not implemented for the time being!"
+#: .\cookbook\templates\account\password_reset.html:24
+msgid ""
+"Forgotten your password? Enter your e-mail address below, and we'll send you "
+"an e-mail allowing you to reset it."
msgstr ""
-#: .\cookbook\templates\account\signup.html:5
+#: .\cookbook\templates\account\password_reset.html:32
+msgid "Password reset is disabled on this instance."
+msgstr ""
+
+#: .\cookbook\templates\account\password_reset_done.html:16
+msgid ""
+"We have sent you an e-mail. Please contact us if you do not receive it "
+"within a few minutes."
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:6
msgid "Register"
msgstr "Registre"
-#: .\cookbook\templates\account\signup.html:9
-msgid "Create your Account"
+#: .\cookbook\templates\account\signup.html:12
+#, fuzzy
+#| msgid "Create your Account"
+msgid "Create an Account"
msgstr "Crear Compte"
-#: .\cookbook\templates\account\signup.html:14
+#: .\cookbook\templates\account\signup.html:42
+msgid "I accept the follwoing"
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:45
+msgid "Terms and Conditions"
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:48
+msgid "and"
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:52
+msgid "Privacy Policy"
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:65
msgid "Create User"
msgstr "Crear Usuari"
-#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:160
+#: .\cookbook\templates\account\signup.html:69
+msgid "Already have an account?"
+msgstr ""
+
+#: .\cookbook\templates\account\signup_closed.html:5
+#: .\cookbook\templates\account\signup_closed.html:11
+msgid "Sign Up Closed"
+msgstr ""
+
+#: .\cookbook\templates\account\signup_closed.html:13
+msgid "We are sorry, but the sign up is currently closed."
+msgstr ""
+
+#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:170
#: .\cookbook\templates\rest_framework\api.html:11
msgid "API Documentation"
msgstr "Documentació API "
-#: .\cookbook\templates\base.html:78
+#: .\cookbook\templates\base.html:85
msgid "Utensils"
msgstr "Estris"
-#: .\cookbook\templates\base.html:88
+#: .\cookbook\templates\base.html:95
msgid "Shopping"
msgstr "Compres"
-#: .\cookbook\templates\base.html:102 .\cookbook\views\delete.py:84
-#: .\cookbook\views\edit.py:93 .\cookbook\views\lists.py:26
-#: .\cookbook\views\new.py:66
+#: .\cookbook\templates\base.html:109 .\cookbook\views\delete.py:84
+#: .\cookbook\views\edit.py:102 .\cookbook\views\lists.py:26
+#: .\cookbook\views\new.py:78
msgid "Keyword"
msgstr "Paraula Clau"
-#: .\cookbook\templates\base.html:104
+#: .\cookbook\templates\base.html:111
msgid "Batch Edit"
msgstr "Edició per lots"
-#: .\cookbook\templates\base.html:109
+#: .\cookbook\templates\base.html:116
msgid "Storage Data"
msgstr "Emmagatzematge de dades"
-#: .\cookbook\templates\base.html:113
+#: .\cookbook\templates\base.html:120
msgid "Storage Backends"
msgstr "Backends d'emmagatzematge"
-#: .\cookbook\templates\base.html:115
+#: .\cookbook\templates\base.html:122
msgid "Configure Sync"
msgstr "Configurar Sync"
-#: .\cookbook\templates\base.html:117
+#: .\cookbook\templates\base.html:124
msgid "Discovered Recipes"
msgstr "Receptes Descobertes"
-#: .\cookbook\templates\base.html:119
+#: .\cookbook\templates\base.html:126
msgid "Discovery Log"
msgstr "Registre de descobriment"
-#: .\cookbook\templates\base.html:121 .\cookbook\templates\stats.html:10
+#: .\cookbook\templates\base.html:128 .\cookbook\templates\stats.html:10
msgid "Statistics"
msgstr "Estadístiques"
-#: .\cookbook\templates\base.html:123
+#: .\cookbook\templates\base.html:130
msgid "Units & Ingredients"
msgstr "Unitats i ingredients"
-#: .\cookbook\templates\base.html:125
+#: .\cookbook\templates\base.html:132 .\cookbook\templates\index.html:47
msgid "Import Recipe"
msgstr "Importa recepta"
-#: .\cookbook\templates\base.html:144 .\cookbook\templates\settings.html:6
+#: .\cookbook\templates\base.html:151 .\cookbook\templates\settings.html:6
#: .\cookbook\templates\settings.html:16
msgid "Settings"
msgstr "Opcions"
-#: .\cookbook\templates\base.html:146 .\cookbook\templates\history.html:6
+#: .\cookbook\templates\base.html:153 .\cookbook\templates\history.html:6
#: .\cookbook\templates\history.html:14
msgid "History"
msgstr "Historial"
-#: .\cookbook\templates\base.html:150 .\cookbook\templates\system.html:13
+#: .\cookbook\templates\base.html:155 .\cookbook\templates\space.html:7
+#, fuzzy
+#| msgid "Settings"
+msgid "Space Settings"
+msgstr "Opcions"
+
+#: .\cookbook\templates\base.html:160 .\cookbook\templates\system.html:13
msgid "System"
msgstr "Sistema"
-#: .\cookbook\templates\base.html:152
+#: .\cookbook\templates\base.html:162
msgid "Admin"
msgstr "Admin"
-#: .\cookbook\templates\base.html:156
+#: .\cookbook\templates\base.html:166
msgid "Markdown Guide"
msgstr "Guia Markdown"
-#: .\cookbook\templates\base.html:158
+#: .\cookbook\templates\base.html:168
msgid "GitHub"
msgstr "GitHub"
-#: .\cookbook\templates\base.html:162
+#: .\cookbook\templates\base.html:172
msgid "API Browser"
msgstr "Navegador API"
-#: .\cookbook\templates\base.html:165
-msgid "Logout"
-msgstr "Tancar Sessió"
+#: .\cookbook\templates\base.html:175
+msgid "Log out"
+msgstr ""
#: .\cookbook\templates\batch\edit.html:6
msgid "Batch edit Category"
@@ -574,7 +775,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:76
+#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:85
msgid "Sync"
msgstr "Sync"
@@ -603,7 +804,7 @@ msgstr "Sincronitza Ara!"
msgid "Importing Recipes"
msgstr "Important Receptes"
-#: .\cookbook\templates\batch\waiting.html:23
+#: .\cookbook\templates\batch\waiting.html:28
msgid ""
"This can take a few minutes, depending on the number of recipes in sync, "
"please wait."
@@ -642,26 +843,33 @@ msgid "Export Recipes"
msgstr "Exporta Receptes"
#: .\cookbook\templates\export.html:14 .\cookbook\templates\export.html:20
-#: .\cookbook\templates\shopping_list.html:347
+#: .\cookbook\templates\shopping_list.html:351
#: .\cookbook\templates\test2.html:14 .\cookbook\templates\test2.html:20
msgid "Export"
msgstr "Exporta"
+#: .\cookbook\templates\files.html:7
+#, fuzzy
+#| msgid "File ID"
+msgid "Files"
+msgstr "ID d'Arxiu"
+
#: .\cookbook\templates\forms\edit_import_recipe.html:5
#: .\cookbook\templates\forms\edit_import_recipe.html:9
msgid "Import new Recipe"
msgstr "Importa nova Recepta"
#: .\cookbook\templates\forms\edit_import_recipe.html:14
-#: .\cookbook\templates\forms\edit_internal_recipe.html:389
-#: .\cookbook\templates\forms\edit_internal_recipe.html:421
+#: .\cookbook\templates\forms\edit_internal_recipe.html:416
+#: .\cookbook\templates\forms\edit_internal_recipe.html:448
#: .\cookbook\templates\generic\edit_template.html:23
#: .\cookbook\templates\generic\new_template.html:23
#: .\cookbook\templates\include\log_cooking.html:28
#: .\cookbook\templates\meal_plan.html:325
-#: .\cookbook\templates\settings.html:28 .\cookbook\templates\settings.html:35
-#: .\cookbook\templates\settings.html:58 .\cookbook\templates\settings.html:73
-#: .\cookbook\templates\shopping_list.html:349
+#: .\cookbook\templates\settings.html:44 .\cookbook\templates\settings.html:52
+#: .\cookbook\templates\settings.html:96
+#: .\cookbook\templates\settings.html:114
+#: .\cookbook\templates\shopping_list.html:353
msgid "Save"
msgstr "Desa"
@@ -670,181 +878,190 @@ msgstr "Desa"
msgid "Edit Recipe"
msgstr "Edita Recepta"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:52
+#: .\cookbook\templates\forms\edit_internal_recipe.html:56
+#: .\cookbook\templates\url_import.html:171
msgid "Description"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:72
+#: .\cookbook\templates\forms\edit_internal_recipe.html:76
msgid "Waiting Time"
msgstr "Temps d'Espera"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:78
+#: .\cookbook\templates\forms\edit_internal_recipe.html:82
msgid "Servings Text"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:89
+#: .\cookbook\templates\forms\edit_internal_recipe.html:93
msgid "Select Keywords"
msgstr "Selecciona Paraules clau"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:90
-#: .\cookbook\templates\url_import.html:212
+#: .\cookbook\templates\forms\edit_internal_recipe.html:94
+#: .\cookbook\templates\url_import.html:583
#, fuzzy
#| msgid "All Keywords"
msgid "Add Keyword"
msgstr "Totes les paraules clau"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:108
+#: .\cookbook\templates\forms\edit_internal_recipe.html:112
msgid "Nutrition"
msgstr "Nutrició"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:112
-#: .\cookbook\templates\forms\edit_internal_recipe.html:162
+#: .\cookbook\templates\forms\edit_internal_recipe.html:116
+#: .\cookbook\templates\forms\edit_internal_recipe.html:166
msgid "Delete Step"
msgstr "Esborra Pas"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:116
+#: .\cookbook\templates\forms\edit_internal_recipe.html:120
msgid "Calories"
msgstr "Calories"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:119
+#: .\cookbook\templates\forms\edit_internal_recipe.html:123
msgid "Carbohydrates"
msgstr "Hidrats de carboni"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:122
+#: .\cookbook\templates\forms\edit_internal_recipe.html:126
msgid "Fats"
msgstr "Greixos"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:124
+#: .\cookbook\templates\forms\edit_internal_recipe.html:128
msgid "Proteins"
msgstr "Proteïnes"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:146
-#: .\cookbook\templates\forms\edit_internal_recipe.html:454
+#: .\cookbook\templates\forms\edit_internal_recipe.html:150
+#: .\cookbook\templates\forms\edit_internal_recipe.html:481
msgid "Step"
msgstr "Pas"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:167
+#: .\cookbook\templates\forms\edit_internal_recipe.html:171
msgid "Show as header"
msgstr "Mostra com a capçalera"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:173
+#: .\cookbook\templates\forms\edit_internal_recipe.html:177
msgid "Hide as header"
msgstr "Amaga com a capçalera"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:178
+#: .\cookbook\templates\forms\edit_internal_recipe.html:182
msgid "Move Up"
msgstr "Mou Amunt"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:183
+#: .\cookbook\templates\forms\edit_internal_recipe.html:187
msgid "Move Down"
msgstr "Mou Avall"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:192
+#: .\cookbook\templates\forms\edit_internal_recipe.html:196
msgid "Step Name"
msgstr "Nom del Pas"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:196
+#: .\cookbook\templates\forms\edit_internal_recipe.html:200
msgid "Step Type"
msgstr "Tipus de Pas"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:207
+#: .\cookbook\templates\forms\edit_internal_recipe.html:212
msgid "Step time in Minutes"
msgstr "Temps de pas en Minuts"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:261
-#: .\cookbook\templates\shopping_list.html:183
-msgid "Select Unit"
-msgstr "Selecciona Unitat"
+#: .\cookbook\templates\forms\edit_internal_recipe.html:228
+#, fuzzy
+#| msgid "Select one"
+msgid "Select File"
+msgstr "Sel·lecciona un"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:262
-#: .\cookbook\templates\forms\edit_internal_recipe.html:286
-#: .\cookbook\templates\shopping_list.html:184
-#: .\cookbook\templates\shopping_list.html:206
-msgid "Create"
-msgstr "Crea"
-
-#: .\cookbook\templates\forms\edit_internal_recipe.html:263
-#: .\cookbook\templates\forms\edit_internal_recipe.html:287
-#: .\cookbook\templates\shopping_list.html:185
-#: .\cookbook\templates\shopping_list.html:207
-#: .\cookbook\templates\shopping_list.html:237
-#: .\cookbook\templates\shopping_list.html:261
-#: .\cookbook\templates\url_import.html:124
-#: .\cookbook\templates\url_import.html:156
+#: .\cookbook\templates\forms\edit_internal_recipe.html:229
+#: .\cookbook\templates\forms\edit_internal_recipe.html:290
+#: .\cookbook\templates\forms\edit_internal_recipe.html:314
+#: .\cookbook\templates\shopping_list.html:189
+#: .\cookbook\templates\shopping_list.html:211
+#: .\cookbook\templates\shopping_list.html:241
+#: .\cookbook\templates\shopping_list.html:265
+#: .\cookbook\templates\url_import.html:495
+#: .\cookbook\templates\url_import.html:527
msgid "Select"
msgstr "Selecciona"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:285
-#: .\cookbook\templates\shopping_list.html:205
+#: .\cookbook\templates\forms\edit_internal_recipe.html:288
+#: .\cookbook\templates\shopping_list.html:187
+msgid "Select Unit"
+msgstr "Selecciona Unitat"
+
+#: .\cookbook\templates\forms\edit_internal_recipe.html:289
+#: .\cookbook\templates\forms\edit_internal_recipe.html:313
+#: .\cookbook\templates\shopping_list.html:188
+#: .\cookbook\templates\shopping_list.html:210
+msgid "Create"
+msgstr "Crea"
+
+#: .\cookbook\templates\forms\edit_internal_recipe.html:312
+#: .\cookbook\templates\shopping_list.html:209
msgid "Select Food"
msgstr "Selecciona Menjar"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:302
+#: .\cookbook\templates\forms\edit_internal_recipe.html:329
#: .\cookbook\templates\meal_plan.html:256
-#: .\cookbook\templates\url_import.html:171
+#: .\cookbook\templates\url_import.html:542
msgid "Note"
msgstr "Nota"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:319
+#: .\cookbook\templates\forms\edit_internal_recipe.html:346
msgid "Delete Ingredient"
msgstr "Esborra Ingredient"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:325
+#: .\cookbook\templates\forms\edit_internal_recipe.html:352
msgid "Make Header"
msgstr "Crea Capçalera"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:331
+#: .\cookbook\templates\forms\edit_internal_recipe.html:358
msgid "Make Ingredient"
msgstr "Crea Ingredient"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:337
+#: .\cookbook\templates\forms\edit_internal_recipe.html:364
msgid "Disable Amount"
msgstr "Deshabilita Quantitat"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:343
+#: .\cookbook\templates\forms\edit_internal_recipe.html:370
msgid "Enable Amount"
msgstr "Habilita Quantitat"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:348
+#: .\cookbook\templates\forms\edit_internal_recipe.html:375
msgid "Copy Template Reference"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:374
-#: .\cookbook\templates\url_import.html:196
+#: .\cookbook\templates\forms\edit_internal_recipe.html:401
+#: .\cookbook\templates\url_import.html:297
+#: .\cookbook\templates\url_import.html:567
msgid "Instructions"
msgstr "Instruccions"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:387
-#: .\cookbook\templates\forms\edit_internal_recipe.html:418
+#: .\cookbook\templates\forms\edit_internal_recipe.html:414
+#: .\cookbook\templates\forms\edit_internal_recipe.html:445
msgid "Save & View"
msgstr "Desa i Comprova"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:391
-#: .\cookbook\templates\forms\edit_internal_recipe.html:424
+#: .\cookbook\templates\forms\edit_internal_recipe.html:418
+#: .\cookbook\templates\forms\edit_internal_recipe.html:451
msgid "Add Step"
msgstr "Afegir Pas"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:394
-#: .\cookbook\templates\forms\edit_internal_recipe.html:428
+#: .\cookbook\templates\forms\edit_internal_recipe.html:421
+#: .\cookbook\templates\forms\edit_internal_recipe.html:455
msgid "Add Nutrition"
msgstr "Afegeix nutrients"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:396
-#: .\cookbook\templates\forms\edit_internal_recipe.html:430
+#: .\cookbook\templates\forms\edit_internal_recipe.html:423
+#: .\cookbook\templates\forms\edit_internal_recipe.html:457
msgid "Remove Nutrition"
msgstr "Elimina nutrients"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:398
-#: .\cookbook\templates\forms\edit_internal_recipe.html:433
+#: .\cookbook\templates\forms\edit_internal_recipe.html:425
+#: .\cookbook\templates\forms\edit_internal_recipe.html:460
msgid "View Recipe"
msgstr "Veure Recepta"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:400
-#: .\cookbook\templates\forms\edit_internal_recipe.html:435
+#: .\cookbook\templates\forms\edit_internal_recipe.html:427
+#: .\cookbook\templates\forms\edit_internal_recipe.html:462
msgid "Delete Recipe"
msgstr "Esborra Recepta"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:441
+#: .\cookbook\templates\forms\edit_internal_recipe.html:468
msgid "Steps"
msgstr "Passos"
@@ -868,7 +1085,7 @@ msgstr ""
"Combina dues unitats o ingredients i actualitza totes les receptes amb ells"
#: .\cookbook\templates\forms\ingredients.html:24
-#: .\cookbook\templates\stats.html:26
+#: .\cookbook\templates\space.html:35 .\cookbook\templates\stats.html:26
msgid "Units"
msgstr "Unitats"
@@ -890,10 +1107,6 @@ msgstr "Estàs segur que vols combinar aquests dos ingredients?"
msgid "Are you sure you want to delete the %(title)s: %(object)s "
msgstr "Segur que vols esborrar el %(title)s:%(object)s"
-#: .\cookbook\templates\generic\delete_template.html:21
-msgid "Confirm"
-msgstr "Confirma"
-
#: .\cookbook\templates\generic\edit_template.html:30
msgid "View"
msgstr "Veure"
@@ -915,12 +1128,6 @@ msgstr "Filtre"
msgid "Import all"
msgstr "Importa tot"
-#: .\cookbook\templates\generic\new_template.html:6
-#: .\cookbook\templates\generic\new_template.html:14
-#: .\cookbook\templates\meal_plan.html:323
-msgid "New"
-msgstr "Nova"
-
#: .\cookbook\templates\generic\table_template.html:76
#: .\cookbook\templates\recipes_table.html:121
msgid "previous"
@@ -965,7 +1172,7 @@ msgstr "Tanca"
#: .\cookbook\templates\include\recipe_open_modal.html:7
#: .\cookbook\templates\meal_plan.html:247 .\cookbook\views\delete.py:28
-#: .\cookbook\views\edit.py:264 .\cookbook\views\new.py:40
+#: .\cookbook\views\edit.py:273 .\cookbook\views\new.py:52
msgid "Recipe"
msgstr "Recepta"
@@ -1005,10 +1212,6 @@ msgstr "Cerca Recepta..."
msgid "New Recipe"
msgstr "Nova Recepta"
-#: .\cookbook\templates\index.html:47
-msgid "Website Import"
-msgstr "Importa desde Web"
-
#: .\cookbook\templates\index.html:53
msgid "Advanced Search"
msgstr "Cerca Avançada"
@@ -1022,7 +1225,7 @@ msgid "Last viewed"
msgstr "Darrera visualització"
#: .\cookbook\templates\index.html:87 .\cookbook\templates\meal_plan.html:178
-#: .\cookbook\templates\stats.html:22
+#: .\cookbook\templates\space.html:29 .\cookbook\templates\stats.html:22
msgid "Recipes"
msgstr "Receptes"
@@ -1186,7 +1389,7 @@ msgid "New Entry"
msgstr "Nova Entrada"
#: .\cookbook\templates\meal_plan.html:113
-#: .\cookbook\templates\shopping_list.html:52
+#: .\cookbook\templates\shopping_list.html:56
msgid "Search Recipe"
msgstr "Cerca Recepta"
@@ -1219,7 +1422,7 @@ msgstr "Crear només nota"
#: .\cookbook\templates\meal_plan.html:168
#: .\cookbook\templates\shopping_list.html:7
#: .\cookbook\templates\shopping_list.html:29
-#: .\cookbook\templates\shopping_list.html:705
+#: .\cookbook\templates\shopping_list.html:714
msgid "Shopping List"
msgstr "Llista de la Compra"
@@ -1271,7 +1474,7 @@ msgstr "Creat per"
#: .\cookbook\templates\meal_plan.html:270
#: .\cookbook\templates\meal_plan_entry.html:20
-#: .\cookbook\templates\shopping_list.html:250
+#: .\cookbook\templates\shopping_list.html:254
msgid "Shared with"
msgstr "Compartit per"
@@ -1348,7 +1551,6 @@ msgstr "No heu iniciat la sessió i, per tant, no podeu veure aquesta pàgina."
#: .\cookbook\templates\no_groups_info.html:18
#: .\cookbook\templates\no_perm_info.html:15
-#: .\cookbook\templates\no_space_info.html:15
msgid "Please contact your administrator."
msgstr ""
@@ -1365,13 +1567,50 @@ msgid ""
"action."
msgstr "No teniu els permisos necessaris per dur a terme aquesta acció!"
-#: .\cookbook\templates\no_space_info.html:5
-#: .\cookbook\templates\no_space_info.html:12
+#: .\cookbook\templates\no_space_info.html:6
+#: .\cookbook\templates\no_space_info.html:13
msgid "No Space"
msgstr ""
-#: .\cookbook\templates\no_space_info.html:15
-msgid "You are not a member of any space."
+#: .\cookbook\templates\no_space_info.html:17
+msgid ""
+"Recipes, foods, shopping lists and more are organized in spaces of one or "
+"more people."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:18
+msgid ""
+"You can either be invited into an existing space or create your own one."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:31
+#: .\cookbook\templates\no_space_info.html:40
+msgid "Join Space"
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:34
+msgid "Join an existing space."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:35
+msgid ""
+"To join an existing space either enter your invite token or click on the "
+"invite link the space owner send you."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:48
+#: .\cookbook\templates\no_space_info.html:56
+#, fuzzy
+#| msgid "Create User"
+msgid "Create Space"
+msgstr "Crear Usuari"
+
+#: .\cookbook\templates\no_space_info.html:51
+msgid "Create your own recipe space."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:52
+msgid "Start your own recipe space and invite other users to it."
msgstr ""
#: .\cookbook\templates\offline.html:6
@@ -1388,28 +1627,29 @@ msgid ""
"recently viewed them. Keep in mind that data might be outdated."
msgstr ""
-#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\stats.html:47
+#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\space.html:56
+#: .\cookbook\templates\stats.html:47
msgid "Comments"
msgstr "Comentaris"
#: .\cookbook\templates\recipe_view.html:44 .\cookbook\views\delete.py:118
-#: .\cookbook\views\edit.py:170
+#: .\cookbook\views\edit.py:179
msgid "Comment"
msgstr "Comentari"
#: .\cookbook\templates\recipes_table.html:19
#: .\cookbook\templates\recipes_table.html:23
-#: .\cookbook\templates\url_import.html:69
+#: .\cookbook\templates\url_import.html:440
msgid "Recipe Image"
msgstr "Imatge de la Recepta"
#: .\cookbook\templates\recipes_table.html:51
-#: .\cookbook\templates\url_import.html:74
+#: .\cookbook\templates\url_import.html:445
msgid "Preparation time ca."
msgstr "Temps de Preparació ca."
#: .\cookbook\templates\recipes_table.html:57
-#: .\cookbook\templates\url_import.html:79
+#: .\cookbook\templates\url_import.html:450
msgid "Waiting time ca."
msgstr "Temps d'Espera ca."
@@ -1425,27 +1665,63 @@ msgstr "Registre de Cuines"
msgid "Recipe Home"
msgstr "Receptes"
-#: .\cookbook\templates\settings.html:22
+#: .\cookbook\templates\settings.html:23
msgid "Account"
msgstr "Compte"
-#: .\cookbook\templates\settings.html:38
-msgid "Link social account"
+#: .\cookbook\templates\settings.html:27
+msgid "Preferences"
msgstr ""
-#: .\cookbook\templates\settings.html:42
+#: .\cookbook\templates\settings.html:31
+#, fuzzy
+#| msgid "Settings"
+msgid "API-Settings"
+msgstr "Opcions"
+
+#: .\cookbook\templates\settings.html:39
+#, fuzzy
+#| msgid "Settings"
+msgid "Name Settings"
+msgstr "Opcions"
+
+#: .\cookbook\templates\settings.html:47
+#, fuzzy
+#| msgid "Settings"
+msgid "Password Settings"
+msgstr "Opcions"
+
+#: .\cookbook\templates\settings.html:55
+#, fuzzy
+#| msgid "Settings"
+msgid "Email Settings"
+msgstr "Opcions"
+
+#: .\cookbook\templates\settings.html:57
+msgid "Manage Email Settings"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:61
+msgid "Social"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:63
+msgid "Manage Social Accounts"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:75
msgid "Language"
msgstr "Idioma"
-#: .\cookbook\templates\settings.html:67
+#: .\cookbook\templates\settings.html:105
msgid "Style"
msgstr "Estil"
-#: .\cookbook\templates\settings.html:79
+#: .\cookbook\templates\settings.html:125
msgid "API Token"
msgstr "Token API"
-#: .\cookbook\templates\settings.html:80
+#: .\cookbook\templates\settings.html:126
msgid ""
"You can use both basic authentication and token based authentication to "
"access the REST API."
@@ -1453,7 +1729,7 @@ msgstr ""
"Podeu utilitzar tant l’autenticació bàsica com l’autenticació basada en "
"token per accedir a l’API REST."
-#: .\cookbook\templates\settings.html:92
+#: .\cookbook\templates\settings.html:143
msgid ""
"Use the token as an Authorization header prefixed by the word token as shown "
"in the following examples:"
@@ -1461,7 +1737,7 @@ msgstr ""
"Utilitzeu el testimoni com a capçalera d'autorització prefixada per la "
"paraula símbol tal com es mostra als exemples següents:"
-#: .\cookbook\templates\settings.html:94
+#: .\cookbook\templates\settings.html:145
msgid "or"
msgstr "o"
@@ -1484,59 +1760,56 @@ msgstr ""
msgid "Create Superuser account"
msgstr "Crear compte de superusuari"
-#: .\cookbook\templates\shopping_list.html:75
+#: .\cookbook\templates\shopping_list.html:79
msgid "Shopping Recipes"
msgstr "Llista de Compra de Receptes"
-#: .\cookbook\templates\shopping_list.html:79
+#: .\cookbook\templates\shopping_list.html:83
msgid "No recipes selected"
msgstr "Recepta no sel·leccionada"
-#: .\cookbook\templates\shopping_list.html:146
+#: .\cookbook\templates\shopping_list.html:150
msgid "Entry Mode"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:154
+#: .\cookbook\templates\shopping_list.html:158
msgid "Add Entry"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:170
+#: .\cookbook\templates\shopping_list.html:174
msgid "Amount"
msgstr "Quantitat"
-#: .\cookbook\templates\shopping_list.html:226
+#: .\cookbook\templates\shopping_list.html:230
+#: .\cookbook\templates\supermarket.html:7
msgid "Supermarket"
msgstr "Supermercat"
-#: .\cookbook\templates\shopping_list.html:236
+#: .\cookbook\templates\shopping_list.html:240
msgid "Select Supermarket"
msgstr "Seleccioni supermercat"
-#: .\cookbook\templates\shopping_list.html:260
+#: .\cookbook\templates\shopping_list.html:264
msgid "Select User"
msgstr "Selecciona usuari"
-#: .\cookbook\templates\shopping_list.html:279
+#: .\cookbook\templates\shopping_list.html:283
msgid "Finished"
msgstr "Acabat"
-#: .\cookbook\templates\shopping_list.html:292
+#: .\cookbook\templates\shopping_list.html:296
msgid "You are offline, shopping list might not syncronize."
msgstr ""
"Estàs fora de línia, és possible que la llista de compra no es sincronitzi."
-#: .\cookbook\templates\shopping_list.html:357
+#: .\cookbook\templates\shopping_list.html:361
msgid "Copy/Export"
msgstr "Copia/Exporta"
-#: .\cookbook\templates\shopping_list.html:361
+#: .\cookbook\templates\shopping_list.html:365
msgid "List Prefix"
msgstr "Prefix de Llista"
-#: .\cookbook\templates\shopping_list.html:708
-msgid "There was an error creating a resource!"
-msgstr "S'ha produït un error en crear un recurs."
-
#: .\cookbook\templates\socialaccount\connections.html:4
#: .\cookbook\templates\socialaccount\connections.html:7
msgid "Account Connections"
@@ -1548,10 +1821,6 @@ msgid ""
" accounts:"
msgstr ""
-#: .\cookbook\templates\socialaccount\connections.html:36
-msgid "Remove"
-msgstr "Eliminar"
-
#: .\cookbook\templates\socialaccount\connections.html:44
msgid ""
"You currently have no social network accounts connected to this account."
@@ -1561,38 +1830,97 @@ msgstr ""
msgid "Add a 3rd Party Account"
msgstr ""
-#: .\cookbook\templates\stats.html:4
-msgid "Stats"
-msgstr "Estadístiques"
+#: .\cookbook\templates\space.html:18
+msgid "Manage Subscription"
+msgstr ""
-#: .\cookbook\templates\stats.html:19
+#: .\cookbook\templates\space.html:26 .\cookbook\templates\stats.html:19
msgid "Number of objects"
msgstr "Nombre d'objectes"
-#: .\cookbook\templates\stats.html:30
+#: .\cookbook\templates\space.html:39 .\cookbook\templates\stats.html:30
msgid "Recipe Imports"
msgstr "Importacions de receptes"
-#: .\cookbook\templates\stats.html:38
+#: .\cookbook\templates\space.html:47 .\cookbook\templates\stats.html:38
msgid "Objects stats"
msgstr "Estadístiques d'objectes"
-#: .\cookbook\templates\stats.html:41
+#: .\cookbook\templates\space.html:50 .\cookbook\templates\stats.html:41
msgid "Recipes without Keywords"
msgstr "Receptes sense paraules clau"
-#: .\cookbook\templates\stats.html:43
+#: .\cookbook\templates\space.html:52 .\cookbook\templates\stats.html:43
msgid "External Recipes"
msgstr "Receptes Externes"
-#: .\cookbook\templates\stats.html:45
+#: .\cookbook\templates\space.html:54 .\cookbook\templates\stats.html:45
msgid "Internal Recipes"
msgstr "Receptes Internes"
-#: .\cookbook\templates\system.html:21 .\cookbook\views\lists.py:115
+#: .\cookbook\templates\space.html:67
+msgid "Members"
+msgstr ""
+
+#: .\cookbook\templates\space.html:71
+#, fuzzy
+#| msgid "Invite Links"
+msgid "Invite User"
+msgstr "Enllaços Invitació"
+
+#: .\cookbook\templates\space.html:82
+msgid "User"
+msgstr ""
+
+#: .\cookbook\templates\space.html:83
+msgid "Groups"
+msgstr ""
+
+#: .\cookbook\templates\space.html:99
+#, fuzzy
+#| msgid "Admin"
+msgid "admin"
+msgstr "Admin"
+
+#: .\cookbook\templates\space.html:100
+msgid "user"
+msgstr ""
+
+#: .\cookbook\templates\space.html:101
+msgid "guest"
+msgstr ""
+
+#: .\cookbook\templates\space.html:102
+#, fuzzy
+#| msgid "Remove"
+msgid "remove"
+msgstr "Eliminar"
+
+#: .\cookbook\templates\space.html:106
+msgid "Update"
+msgstr ""
+
+#: .\cookbook\templates\space.html:110
+#, fuzzy
+#| msgid "You cannot edit this storage!"
+msgid "You cannot edit yourself."
+msgstr "No podeu editar aquest emmagatzematge."
+
+#: .\cookbook\templates\space.html:117
+#, fuzzy
+#| msgid "There are no recipes in this book yet."
+msgid "There are no members in your space yet!"
+msgstr "Encara no hi ha receptes en aquest llibre."
+
+#: .\cookbook\templates\space.html:124 .\cookbook\templates\system.html:21
+#: .\cookbook\views\lists.py:115
msgid "Invite Links"
msgstr "Enllaços Invitació"
+#: .\cookbook\templates\stats.html:4
+msgid "Stats"
+msgstr "Estadístiques"
+
#: .\cookbook\templates\system.html:22
msgid "Show Links"
msgstr "Mostra Enllaços"
@@ -1718,47 +2046,159 @@ msgstr ""
"Això està bé, però no es recomana com alguns\n"
"les funcions només funcionen amb bases de dades postgres."
-#: .\cookbook\templates\url_import.html:5
+#: .\cookbook\templates\url_import.html:6
msgid "URL Import"
msgstr "Importació d’URL"
-#: .\cookbook\templates\url_import.html:23
+#: .\cookbook\templates\url_import.html:31
+msgid "Drag me to your bookmarks to import recipes from anywhere"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:32
+#, fuzzy
+#| msgid "Bookmark saved!"
+msgid "Bookmark Me!"
+msgstr "Marcador desat!"
+
+#: .\cookbook\templates\url_import.html:61
msgid "Enter website URL"
msgstr "Introduïu l'URL del lloc web"
-#: .\cookbook\templates\url_import.html:36
-msgid "Enter json directly"
+#: .\cookbook\templates\url_import.html:97
+msgid "Select recipe files to import or drop them here..."
msgstr ""
-#: .\cookbook\templates\url_import.html:57
+#: .\cookbook\templates\url_import.html:118
+msgid "Paste json or html source here to load recipe."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:146
+#, fuzzy
+#| msgid "View Recipe"
+msgid "Preview Recipe Data"
+msgstr "Veure Recepta"
+
+#: .\cookbook\templates\url_import.html:147
+msgid "Drag recipe attributes from the right into the appropriate box below."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:156
+#: .\cookbook\templates\url_import.html:173
+#: .\cookbook\templates\url_import.html:190
+#: .\cookbook\templates\url_import.html:209
+#: .\cookbook\templates\url_import.html:227
+#: .\cookbook\templates\url_import.html:242
+#: .\cookbook\templates\url_import.html:257
+#: .\cookbook\templates\url_import.html:273
+#: .\cookbook\templates\url_import.html:300
+#: .\cookbook\templates\url_import.html:351
+msgid "Clear Contents"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:158
+msgid "Text dragged here will be appended to the name."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:175
+msgid "Text dragged here will be appended to the description."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:192
+msgid "Keywords dragged here will be appended to current list"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:207
+msgid "Image"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:239
+#, fuzzy
+#| msgid "Preparation Time"
+msgid "Prep Time"
+msgstr "Temps de preparació"
+
+#: .\cookbook\templates\url_import.html:254
+#, fuzzy
+#| msgid "Time"
+msgid "Cook Time"
+msgstr "Temps"
+
+#: .\cookbook\templates\url_import.html:275
+msgid "Ingredients dragged here will be appended to current list."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:302
+msgid ""
+"Recipe instructions dragged here will be appended to current instructions."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:325
+#, fuzzy
+#| msgid "Discovered Recipes"
+msgid "Discovered Attributes"
+msgstr "Receptes Descobertes"
+
+#: .\cookbook\templates\url_import.html:327
+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:344
+#, fuzzy
+#| msgid "Show as header"
+msgid "Show Blank Field"
+msgstr "Mostra com a capçalera"
+
+#: .\cookbook\templates\url_import.html:349
+msgid "Blank Field"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:353
+msgid "Items dragged to Blank Field will be appended."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:400
+#, fuzzy
+#| msgid "Delete Step"
+msgid "Delete Text"
+msgstr "Esborra Pas"
+
+#: .\cookbook\templates\url_import.html:413
+#, fuzzy
+#| msgid "Delete Recipe"
+msgid "Delete image"
+msgstr "Esborra Recepta"
+
+#: .\cookbook\templates\url_import.html:429
msgid "Recipe Name"
msgstr "Nom de la Recepta"
-#: .\cookbook\templates\url_import.html:62
+#: .\cookbook\templates\url_import.html:433
#, fuzzy
#| msgid "Recipe Markup Specification"
msgid "Recipe Description"
msgstr "Especificació de marcatge de receptes"
-#: .\cookbook\templates\url_import.html:123
-#: .\cookbook\templates\url_import.html:155
-#: .\cookbook\templates\url_import.html:211
+#: .\cookbook\templates\url_import.html:494
+#: .\cookbook\templates\url_import.html:526
+#: .\cookbook\templates\url_import.html:582
msgid "Select one"
msgstr "Sel·lecciona un"
-#: .\cookbook\templates\url_import.html:225
+#: .\cookbook\templates\url_import.html:596
msgid "All Keywords"
msgstr "Totes les paraules clau"
-#: .\cookbook\templates\url_import.html:228
+#: .\cookbook\templates\url_import.html:599
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:255
+#: .\cookbook\templates\url_import.html:626
msgid "Information"
msgstr "Informació"
-#: .\cookbook\templates\url_import.html:257
+#: .\cookbook\templates\url_import.html:628
msgid ""
" Only websites containing ld+json or microdata information can currently\n"
" be imported. Most big recipe pages "
@@ -1777,52 +2217,80 @@ msgstr ""
"un exemple a\n"
"problemes de github."
-#: .\cookbook\templates\url_import.html:265
+#: .\cookbook\templates\url_import.html:636
msgid "Google ld+json Info"
msgstr "Google ld+json Info"
-#: .\cookbook\templates\url_import.html:268
+#: .\cookbook\templates\url_import.html:639
msgid "GitHub Issues"
msgstr "Problemes de GitHub"
-#: .\cookbook\templates\url_import.html:270
+#: .\cookbook\templates\url_import.html:641
msgid "Recipe Markup Specification"
msgstr "Especificació de marcatge de receptes"
-#: .\cookbook\views\api.py:71
+#: .\cookbook\views\api.py:77
#, 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:455 .\cookbook\views\views.py:226
+#: .\cookbook\views\api.py:553 .\cookbook\views\views.py:295
msgid "This feature is not available in the demo version!"
msgstr ""
-#: .\cookbook\views\api.py:478
+#: .\cookbook\views\api.py:576
msgid "Sync successful!"
msgstr "Sincronització correcte"
-#: .\cookbook\views\api.py:483
+#: .\cookbook\views\api.py:581
msgid "Error synchronizing with Storage"
msgstr "Error de sincronització amb emmagatzematge"
-#: .\cookbook\views\api.py:556 .\cookbook\views\api.py:576
+#: .\cookbook\views\api.py:649
+msgid "Nothing to do."
+msgstr ""
+
+#: .\cookbook\views\api.py:664
+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:671
msgid "The requested page could not be found."
msgstr "No s'ha pogut trobar la pàgina sol·licitada."
-#: .\cookbook\views\api.py:585
+#: .\cookbook\views\api.py:680
msgid ""
-"The requested page refused to provide any information (Status Code 403)."
+"The requested site does not provide any recognized data format to import the "
+"recipe from."
msgstr ""
-"La pàgina sol·licitada refusa a proporcionar cap informació (Codi d’estat "
-"403)."
+"El lloc sol·licitat no proporciona cap format de dades reconegut des d’on "
+"importar la recepta."
-#: .\cookbook\views\api.py:611
-msgid "Could not parse correctly..."
+#: .\cookbook\views\api.py:694
+#, 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:710
+msgid "I couldn't find anything to do."
msgstr ""
-#: .\cookbook\views\data.py:94
+#: .\cookbook\views\data.py:30 .\cookbook\views\data.py:121
+#: .\cookbook\views\edit.py:50 .\cookbook\views\import_export.py:67
+#: .\cookbook\views\new.py:32
+msgid "You have reached the maximum number of recipes for your space."
+msgstr ""
+
+#: .\cookbook\views\data.py:34 .\cookbook\views\data.py:125
+#: .\cookbook\views\edit.py:54 .\cookbook\views\import_export.py:71
+#: .\cookbook\views\new.py:36
+msgid "You have more users than allowed in your space."
+msgstr ""
+
+#: .\cookbook\views\data.py:103
#, python-format
msgid "Batch edit done. %(count)d recipe was updated."
msgid_plural "Batch edit done. %(count)d Recipes where updated."
@@ -1835,7 +2303,7 @@ msgid "Monitor"
msgstr "Monitoratge"
#: .\cookbook\views\delete.py:96 .\cookbook\views\lists.py:102
-#: .\cookbook\views\new.py:86
+#: .\cookbook\views\new.py:98
msgid "Storage Backend"
msgstr "Backend d'emmagatzematge"
@@ -1846,8 +2314,8 @@ msgstr ""
"No s'ha pogut suprimir aquest fons d'emmagatzematge, ja que s'utilitza en "
"almenys un monitor."
-#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:204
-#: .\cookbook\views\new.py:144
+#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:213
+#: .\cookbook\views\new.py:156
msgid "Recipe Book"
msgstr "Llibre de Receptes"
@@ -1855,55 +2323,55 @@ msgstr "Llibre de Receptes"
msgid "Bookmarks"
msgstr "Marcadors"
-#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:214
+#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:252
msgid "Invite Link"
msgstr "Enllaç de invitació"
-#: .\cookbook\views\edit.py:110
+#: .\cookbook\views\edit.py:119
msgid "Food"
msgstr "Menjar"
-#: .\cookbook\views\edit.py:119
+#: .\cookbook\views\edit.py:128
msgid "You cannot edit this storage!"
msgstr "No podeu editar aquest emmagatzematge."
-#: .\cookbook\views\edit.py:139
+#: .\cookbook\views\edit.py:148
msgid "Storage saved!"
msgstr "Emmagatzematge desat."
-#: .\cookbook\views\edit.py:145
+#: .\cookbook\views\edit.py:154
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:156
+#: .\cookbook\views\edit.py:165
msgid "Storage"
msgstr "Emmagatzematge"
-#: .\cookbook\views\edit.py:252
+#: .\cookbook\views\edit.py:261
msgid "Changes saved!"
msgstr "Canvis desats!"
-#: .\cookbook\views\edit.py:256
+#: .\cookbook\views\edit.py:265
msgid "Error saving changes!"
msgstr "Error al desar canvis!"
-#: .\cookbook\views\edit.py:289
+#: .\cookbook\views\edit.py:299
msgid "Units merged!"
msgstr "Unitats fusionades!"
-#: .\cookbook\views\edit.py:291 .\cookbook\views\edit.py:307
+#: .\cookbook\views\edit.py:301 .\cookbook\views\edit.py:317
msgid "Cannot merge with the same object!"
msgstr ""
-#: .\cookbook\views\edit.py:305
+#: .\cookbook\views\edit.py:315
msgid "Foods merged!"
msgstr "Menjars Fusionats!"
-#: .\cookbook\views\import_export.py:73
+#: .\cookbook\views\import_export.py:93
msgid "Importing is not implemented for this provider"
msgstr ""
-#: .\cookbook\views\import_export.py:92
+#: .\cookbook\views\import_export.py:115
msgid "Exporting is not implemented for this provider"
msgstr ""
@@ -1919,23 +2387,77 @@ msgstr "Descobriment"
msgid "Shopping Lists"
msgstr "Llistes de Compra"
-#: .\cookbook\views\new.py:111
+#: .\cookbook\views\new.py:123
msgid "Imported new recipe!"
msgstr "Nova Recepta importada!"
-#: .\cookbook\views\new.py:114
+#: .\cookbook\views\new.py:126
msgid "There was an error importing this recipe!"
msgstr "S'ha produït un error en importar la recepta!"
-#: .\cookbook\views\views.py:123
+#: .\cookbook\views\new.py:226
+msgid "Hello"
+msgstr ""
+
+#: .\cookbook\views\new.py:226
+msgid "You have been invited by "
+msgstr ""
+
+#: .\cookbook\views\new.py:227
+msgid " to join their Tandoor Recipes space "
+msgstr ""
+
+#: .\cookbook\views\new.py:228
+msgid "Click the following link to activate your account: "
+msgstr ""
+
+#: .\cookbook\views\new.py:229
+msgid ""
+"If the link does not work use the following code to manually join the space: "
+msgstr ""
+
+#: .\cookbook\views\new.py:230
+msgid "The invitation is valid until "
+msgstr ""
+
+#: .\cookbook\views\new.py:231
+msgid ""
+"Tandoor Recipes is an Open Source recipe manager. Check it out on GitHub "
+msgstr ""
+
+#: .\cookbook\views\new.py:234
+msgid "Tandoor Recipes Invite"
+msgstr ""
+
+#: .\cookbook\views\new.py:241
+msgid "Invite link successfully send to user."
+msgstr ""
+
+#: .\cookbook\views\new.py:244
+msgid ""
+"You have send to many emails, please share the link manually or wait a few "
+"hours."
+msgstr ""
+
+#: .\cookbook\views\new.py:246
+msgid "Email to user could not be send, please share link manually."
+msgstr ""
+
+#: .\cookbook\views\views.py:125
+msgid ""
+"You have successfully created your own recipe space. Start by adding some "
+"recipes or invite other people to join you."
+msgstr ""
+
+#: .\cookbook\views\views.py:173
msgid "You do not have the required permissions to perform this action!"
msgstr "No teniu els permisos necessaris per dur a terme aquesta acció!"
-#: .\cookbook\views\views.py:134
+#: .\cookbook\views\views.py:184
msgid "Comment saved!"
msgstr "Comentari Desat!"
-#: .\cookbook\views\views.py:326
+#: .\cookbook\views\views.py:396
msgid ""
"The setup page can only be used to create the first user! If you have "
"forgotten your superuser credentials please consult the django documentation "
@@ -1945,22 +2467,59 @@ msgstr ""
"Si heu oblidat les vostres credencials de superusuari, consulteu la "
"documentació de django sobre com restablir les contrasenyes."
-#: .\cookbook\views\views.py:333 .\cookbook\views\views.py:378
+#: .\cookbook\views\views.py:403
msgid "Passwords dont match!"
msgstr "Les contrasenyes no coincideixen!"
-#: .\cookbook\views\views.py:349 .\cookbook\views\views.py:385
+#: .\cookbook\views\views.py:419
msgid "User has been created, please login!"
msgstr "L'usuari s'ha creat, si us plau inicieu la sessió!"
-#: .\cookbook\views\views.py:365
+#: .\cookbook\views\views.py:435
msgid "Malformed Invite Link supplied!"
msgstr "S'ha proporcionat un enllaç d'invitació mal format."
-#: .\cookbook\views\views.py:405
+#: .\cookbook\views\views.py:441
+#, fuzzy
+#| msgid "You are not logged in and therefore cannot view this page!"
+msgid "You are already member of a space and therefore cannot join this one."
+msgstr "No heu iniciat la sessió i, per tant, no podeu veure aquesta pàgina."
+
+#: .\cookbook\views\views.py:452
+msgid "Successfully joined space."
+msgstr ""
+
+#: .\cookbook\views\views.py:458
msgid "Invite Link not valid or already used!"
msgstr "L'enllaç d'invitació no és vàlid o ja s'ha utilitzat."
+#~ msgid ""
+#~ "A username is not required, if left blank the new user can choose one."
+#~ msgstr ""
+#~ "No cal un nom d’usuari, si es deixa en blanc el nou usuari en pot triar "
+#~ "un."
+
+#~ msgid "Imported from"
+#~ msgstr "Importat des de"
+
+#~ msgid "Link"
+#~ msgstr "Enllaç"
+
+#~ msgid "Logout"
+#~ msgstr "Tancar Sessió"
+
+#~ msgid "Website Import"
+#~ msgstr "Importa desde Web"
+
+#~ msgid "There was an error creating a resource!"
+#~ msgstr "S'ha produït un error en crear un recurs."
+
+#~ msgid ""
+#~ "The requested page refused to provide any information (Status Code 403)."
+#~ msgstr ""
+#~ "La pàgina sol·licitada refusa a proporcionar cap informació (Codi d’estat "
+#~ "403)."
+
#~ msgid "Number of servings"
#~ msgstr "Nombre de racions"
@@ -1979,6 +2538,3 @@ msgstr "L'enllaç d'invitació no és vàlid o ja s'ha utilitzat."
#~ msgid "Preference for given user already exists"
#~ msgstr "Ja existeix la preferència per a l'usuari"
-
-#~ msgid "Bookmark saved!"
-#~ msgstr "Marcador desat!"
diff --git a/cookbook/locale/de/LC_MESSAGES/django.po b/cookbook/locale/de/LC_MESSAGES/django.po
index 9393eca9..86a42dc3 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-04-11 15:09+0200\n"
+"POT-Creation-Date: 2021-06-12 20:30+0200\n"
"PO-Revision-Date: 2021-05-01 13:01+0000\n"
"Last-Translator: Marcel Paluch
is added automatically)"
@@ -192,26 +196,26 @@ msgstr ""
"Lascia vuoto per dropbox e inserisci solo l'url base per nextcloud (/remote."
"php/webdav/
is added automatically)"
@@ -193,79 +197,85 @@ msgstr ""
"Für Dropbox leer lassen, für Nextcloud Server-URL angeben (/remote.php/"
"webdav/
wird automatisch hinzugefügt)"
-#: .\cookbook\forms.py:291
+#: .\cookbook\forms.py:307
msgid "Search String"
msgstr "Suchwort"
-#: .\cookbook\forms.py:318
+#: .\cookbook\forms.py:334
msgid "File ID"
msgstr "Datei-ID"
-#: .\cookbook\forms.py:354
+#: .\cookbook\forms.py:370
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:367
+#: .\cookbook\forms.py:383
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:368
-#: .\cookbook\templates\forms\edit_internal_recipe.html:377
+#: .\cookbook\forms.py:384
+#: .\cookbook\templates\forms\edit_internal_recipe.html:404
msgid ""
"You can use markdown to format this field. See the docs here"
msgstr ""
-"Markdown kann genutzt werden, um dieses Feld zu formatieren. Siehe hier für weitere Information"
+"Markdown kann genutzt werden, um dieses Feld zu formatieren. Siehe hier für weitere Information"
-#: .\cookbook\forms.py:393
-msgid "A username is not required, if left blank the new user can choose one."
+#: .\cookbook\forms.py:409
+msgid "Maximum number of users for this space reached."
msgstr ""
-"Kein Benutzername benötigt. Wenn leer gelassen, kann der neue Benutzer einen "
-"wählen."
-#: .\cookbook\helper\permission_helper.py:123
-#: .\cookbook\helper\permission_helper.py:129
-#: .\cookbook\helper\permission_helper.py:151
-#: .\cookbook\helper\permission_helper.py:196
-#: .\cookbook\helper\permission_helper.py:210
-#: .\cookbook\helper\permission_helper.py:221
-#: .\cookbook\helper\permission_helper.py:232 .\cookbook\views\data.py:30
-#: .\cookbook\views\views.py:112 .\cookbook\views\views.py:116
-#: .\cookbook\views\views.py:184
-msgid "You do not have the required permissions to view this page!"
-msgstr "Du hast nicht die notwendigen Rechte um diese Seite zu sehen!"
+#: .\cookbook\forms.py:415
+msgid "Email address already taken!"
+msgstr ""
-#: .\cookbook\helper\permission_helper.py:141
+#: .\cookbook\forms.py:423
+msgid ""
+"An email address is not required but if present the invite link will be send "
+"to the user."
+msgstr ""
+
+#: .\cookbook\forms.py:438
+msgid "Name already taken."
+msgstr ""
+
+#: .\cookbook\forms.py:449
+msgid "Accept Terms and Privacy"
+msgstr ""
+
+#: .\cookbook\helper\AllAuthCustomAdapter.py:30
+msgid ""
+"In order to prevent spam, the requested email was not send. Please wait a "
+"few minutes and try again."
+msgstr ""
+
+#: .\cookbook\helper\permission_helper.py:124
+#: .\cookbook\helper\permission_helper.py:144 .\cookbook\views\views.py:147
msgid "You are not logged in and therefore cannot view this page!"
msgstr "Du bist nicht angemeldet, daher kannst du diese Seite nicht sehen!"
-#: .\cookbook\helper\permission_helper.py:145
-#: .\cookbook\helper\permission_helper.py:167
-#: .\cookbook\helper\permission_helper.py:182
+#: .\cookbook\helper\permission_helper.py:127
+#: .\cookbook\helper\permission_helper.py:132
+#: .\cookbook\helper\permission_helper.py:154
+#: .\cookbook\helper\permission_helper.py:199
+#: .\cookbook\helper\permission_helper.py:213
+#: .\cookbook\helper\permission_helper.py:224
+#: .\cookbook\helper\permission_helper.py:235 .\cookbook\views\data.py:39
+#: .\cookbook\views\views.py:158 .\cookbook\views\views.py:165
+#: .\cookbook\views\views.py:253
+msgid "You do not have the required permissions to view this page!"
+msgstr "Du hast nicht die notwendigen Rechte um diese Seite zu sehen!"
+
+#: .\cookbook\helper\permission_helper.py:148
+#: .\cookbook\helper\permission_helper.py:170
+#: .\cookbook\helper\permission_helper.py:185
msgid "You cannot interact with this object as it is not owned by you!"
msgstr ""
"Du kannst mit diesem Objekt nicht interagieren, da es dir nicht gehört!"
-#: .\cookbook\helper\recipe_url_import.py:40 .\cookbook\views\api.py:549
-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\helper\recipe_url_import.py:54
-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\helper\recipe_url_import.py:160
-msgid "Imported from"
-msgstr "Importiert von"
-
#: .\cookbook\helper\template_helper.py:60
#: .\cookbook\helper\template_helper.py:62
msgid "Could not parse template code."
@@ -275,12 +285,16 @@ msgstr "Konnte den Template code nicht verarbeiten."
#: .\cookbook\templates\import.html:14 .\cookbook\templates\import.html:20
#: .\cookbook\templates\import_response.html:7
#: .\cookbook\templates\test.html:14 .\cookbook\templates\test.html:20
-#: .\cookbook\templates\url_import.html:233 .\cookbook\views\delete.py:60
-#: .\cookbook\views\edit.py:190
+#: .\cookbook\templates\url_import.html:27
+#: .\cookbook\templates\url_import.html:101
+#: .\cookbook\templates\url_import.html:123
+#: .\cookbook\templates\url_import.html:317
+#: .\cookbook\templates\url_import.html:604 .\cookbook\views\delete.py:60
+#: .\cookbook\views\edit.py:199
msgid "Import"
msgstr "Importieren"
-#: .\cookbook\integration\integration.py:131
+#: .\cookbook\integration\integration.py:162
msgid ""
"Importer expected a .zip file. Did you choose the correct importer type for "
"your data ?"
@@ -288,31 +302,38 @@ msgstr ""
"Importer erwartet eine .zip Datei. Hast du den richtigen Importer-Typ für "
"deine Daten ausgewählt?"
-#: .\cookbook\integration\integration.py:134
+#: .\cookbook\integration\integration.py:165
+msgid ""
+"An unexpected error occurred during the import. Please make sure you have "
+"uploaded a valid file."
+msgstr ""
+
+#: .\cookbook\integration\integration.py:169
msgid "The following recipes were ignored because they already existed:"
msgstr "Die folgenden Rezepte wurden ignoriert da sie bereits existieren:"
-#: .\cookbook\integration\integration.py:137
+#: .\cookbook\integration\integration.py:173
#, python-format
msgid "Imported %s recipes."
msgstr "%s Rezepte importiert."
-#: .\cookbook\integration\paprika.py:44
+#: .\cookbook\integration\paprika.py:46
msgid "Notes"
msgstr "Notizen"
-#: .\cookbook\integration\paprika.py:47
+#: .\cookbook\integration\paprika.py:49
msgid "Nutritional Information"
msgstr "Nährwert Informationen"
-#: .\cookbook\integration\paprika.py:50
+#: .\cookbook\integration\paprika.py:53
msgid "Source"
msgstr "Quelle"
#: .\cookbook\integration\safron.py:23
-#: .\cookbook\templates\forms\edit_internal_recipe.html:75
+#: .\cookbook\templates\forms\edit_internal_recipe.html:79
#: .\cookbook\templates\include\log_cooking.html:16
-#: .\cookbook\templates\url_import.html:84
+#: .\cookbook\templates\url_import.html:224
+#: .\cookbook\templates\url_import.html:455
#, fuzzy
msgid "Servings"
msgstr "Portionen"
@@ -322,11 +343,11 @@ msgid "Waiting time"
msgstr "Wartezeit"
#: .\cookbook\integration\safron.py:27
-#: .\cookbook\templates\forms\edit_internal_recipe.html:69
+#: .\cookbook\templates\forms\edit_internal_recipe.html:73
msgid "Preparation Time"
msgstr "Vorbereitungszeit"
-#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:71
+#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:78
#: .\cookbook\templates\forms\ingredients.html:7
#: .\cookbook\templates\index.html:7
msgid "Cookbook"
@@ -352,44 +373,74 @@ msgstr "Abendessen"
msgid "Other"
msgstr "Andere"
-#: .\cookbook\models.py:110 .\cookbook\templates\shopping_list.html:48
+#: .\cookbook\models.py:71
+msgid ""
+"Maximum file storage for space in MB. 0 for unlimited, -1 to disable file "
+"upload."
+msgstr ""
+
+#: .\cookbook\models.py:121 .\cookbook\templates\search.html:7
+#: .\cookbook\templates\shopping_list.html:52
msgid "Search"
msgstr "Suche"
-#: .\cookbook\models.py:111 .\cookbook\templates\base.html:85
+#: .\cookbook\models.py:122 .\cookbook\templates\base.html:92
#: .\cookbook\templates\meal_plan.html:5 .\cookbook\views\delete.py:152
-#: .\cookbook\views\edit.py:224 .\cookbook\views\new.py:188
+#: .\cookbook\views\edit.py:233 .\cookbook\views\new.py:201
msgid "Meal-Plan"
msgstr "Essensplan"
-#: .\cookbook\models.py:112 .\cookbook\templates\base.html:82
+#: .\cookbook\models.py:123 .\cookbook\templates\base.html:89
msgid "Books"
msgstr "Bücher"
-#: .\cookbook\models.py:119
+#: .\cookbook\models.py:131
msgid "Small"
msgstr "Klein"
-#: .\cookbook\models.py:119
+#: .\cookbook\models.py:131
msgid "Large"
msgstr "Groß"
-#: .\cookbook\models.py:327
-#: .\cookbook\templates\forms\edit_internal_recipe.html:198
+#: .\cookbook\models.py:131 .\cookbook\templates\generic\new_template.html:6
+#: .\cookbook\templates\generic\new_template.html:14
+#: .\cookbook\templates\meal_plan.html:323
+msgid "New"
+msgstr "Neu"
+
+#: .\cookbook\models.py:340
+#: .\cookbook\templates\forms\edit_internal_recipe.html:202
msgid "Text"
msgstr "Text"
-#: .\cookbook\models.py:327
-#: .\cookbook\templates\forms\edit_internal_recipe.html:199
+#: .\cookbook\models.py:340
+#: .\cookbook\templates\forms\edit_internal_recipe.html:203
msgid "Time"
msgstr "Zeit"
+#: .\cookbook\models.py:340
+#: .\cookbook\templates\forms\edit_internal_recipe.html:204
+#: .\cookbook\templates\forms\edit_internal_recipe.html:218
+#, fuzzy
+#| msgid "File ID"
+msgid "File"
+msgstr "Datei-ID"
+
+#: .\cookbook\serializer.py:109
+msgid "File uploads are not enabled for this Space."
+msgstr ""
+
+#: .\cookbook\serializer.py:117
+msgid "You have reached your file upload limit."
+msgstr ""
+
#: .\cookbook\tables.py:35 .\cookbook\templates\books.html:36
#: .\cookbook\templates\generic\edit_template.html:6
#: .\cookbook\templates\generic\edit_template.html:14
#: .\cookbook\templates\meal_plan.html:281
#: .\cookbook\templates\recipes_table.html:82
#: .\cookbook\templates\shopping_list.html:33
+#: .\cookbook\templates\space.html:84
msgid "Edit"
msgstr "Bearbeiten"
@@ -403,10 +454,6 @@ msgstr "Bearbeiten"
msgid "Delete"
msgstr "Löschen"
-#: .\cookbook\tables.py:144
-msgid "Link"
-msgstr "Link"
-
#: .\cookbook\templates\404.html:5
msgid "404 Error"
msgstr "404 Fehler"
@@ -423,21 +470,126 @@ msgstr "Zur Hauptseite"
msgid "Report a Bug"
msgstr "Fehler melden"
-#: .\cookbook\templates\account\login.html:7
-#: .\cookbook\templates\base.html:170
+#: .\cookbook\templates\account\email.html:6
+#: .\cookbook\templates\account\email.html:9
+msgid "E-mail Addresses"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:11
+msgid "The following e-mail addresses are associated with your account:"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:28
+msgid "Verified"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:30
+msgid "Unverified"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:32
+msgid "Primary"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:39
+#, fuzzy
+#| msgid "Make Header"
+msgid "Make Primary"
+msgstr "Überschrift erstellen"
+
+#: .\cookbook\templates\account\email.html:41
+msgid "Re-send Verification"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:42
+#: .\cookbook\templates\socialaccount\connections.html:36
+msgid "Remove"
+msgstr "Entfernen"
+
+#: .\cookbook\templates\account\email.html:50
+#, fuzzy
+#| msgid "Warning"
+msgid "Warning:"
+msgstr "Warnung"
+
+#: .\cookbook\templates\account\email.html:50
+msgid ""
+"You currently do not have any e-mail address set up. You should really add "
+"an e-mail address so you can receive notifications, reset your password, etc."
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:56
+msgid "Add E-mail Address"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:61
+msgid "Add E-mail"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:71
+msgid "Do you really want to remove the selected e-mail address?"
+msgstr ""
+
+#: .\cookbook\templates\account\email_confirm.html:6
+#: .\cookbook\templates\account\email_confirm.html:10
+msgid "Confirm E-mail Address"
+msgstr ""
+
+#: .\cookbook\templates\account\email_confirm.html:16
+#, python-format
+msgid ""
+"Please confirm that\n"
+" %(email)s is an e-mail address "
+"for user %(user_display)s\n"
+" ."
+msgstr ""
+
+#: .\cookbook\templates\account\email_confirm.html:22
+#: .\cookbook\templates\generic\delete_template.html:21
+msgid "Confirm"
+msgstr "Bestätigen"
+
+#: .\cookbook\templates\account\email_confirm.html:29
+#, python-format
+msgid ""
+"This e-mail confirmation link expired or is invalid. Please\n"
+" issue a new e-mail confirmation "
+"request."
+msgstr ""
+
+#: .\cookbook\templates\account\login.html:8
+#: .\cookbook\templates\base.html:180
msgid "Login"
msgstr "Anmelden"
-#: .\cookbook\templates\account\login.html:13
-#: .\cookbook\templates\account\login.html:28
+#: .\cookbook\templates\account\login.html:15
+#: .\cookbook\templates\account\login.html:31
+#: .\cookbook\templates\account\signup.html:69
+#: .\cookbook\templates\account\signup_closed.html:15
msgid "Sign In"
msgstr "Einloggen"
-#: .\cookbook\templates\account\login.html:38
+#: .\cookbook\templates\account\login.html:32
+#, fuzzy
+#| msgid "Sign In"
+msgid "Sign Up"
+msgstr "Einloggen"
+
+#: .\cookbook\templates\account\login.html:36
+#: .\cookbook\templates\account\login.html:37
+#: .\cookbook\templates\account\password_reset.html:29
+msgid "Reset My Password"
+msgstr ""
+
+#: .\cookbook\templates\account\login.html:37
+msgid "Lost your password?"
+msgstr ""
+
+#: .\cookbook\templates\account\login.html:48
msgid "Social Login"
msgstr "Social Login"
-#: .\cookbook\templates\account\login.html:39
+#: .\cookbook\templates\account\login.html:49
msgid "You can use any of the following providers to sign in."
msgstr "Du kannst jeden der folgenden Anbieter zum Einloggen verwenden."
@@ -451,116 +603,168 @@ msgstr "Ausloggen"
msgid "Are you sure you want to sign out?"
msgstr "Willst du dich wirklich ausloggen?"
-#: .\cookbook\templates\account\password_reset.html:5
-#: .\cookbook\templates\account\password_reset_done.html:5
+#: .\cookbook\templates\account\password_reset.html:7
+#: .\cookbook\templates\account\password_reset.html:13
+#: .\cookbook\templates\account\password_reset_done.html:7
+#: .\cookbook\templates\account\password_reset_done.html:10
msgid "Password Reset"
msgstr "Passwort Reset"
-#: .\cookbook\templates\account\password_reset.html:9
-#: .\cookbook\templates\account\password_reset_done.html:9
-msgid "Password reset is not implemented for the time being!"
+#: .\cookbook\templates\account\password_reset.html:24
+msgid ""
+"Forgotten your password? Enter your e-mail address below, and we'll send you "
+"an e-mail allowing you to reset it."
+msgstr ""
+
+#: .\cookbook\templates\account\password_reset.html:32
+#, fuzzy
+#| msgid "Password reset is not implemented for the time being!"
+msgid "Password reset is disabled on this instance."
msgstr "Passwort-Rücksetzung ist derzeit noch nicht implementiert!"
-#: .\cookbook\templates\account\signup.html:5
+#: .\cookbook\templates\account\password_reset_done.html:16
+msgid ""
+"We have sent you an e-mail. Please contact us if you do not receive it "
+"within a few minutes."
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:6
msgid "Register"
msgstr "Registrieren"
-#: .\cookbook\templates\account\signup.html:9
-msgid "Create your Account"
+#: .\cookbook\templates\account\signup.html:12
+#, fuzzy
+#| msgid "Create your Account"
+msgid "Create an Account"
msgstr "Account erstellen"
-#: .\cookbook\templates\account\signup.html:14
+#: .\cookbook\templates\account\signup.html:42
+msgid "I accept the follwoing"
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:45
+msgid "Terms and Conditions"
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:48
+msgid "and"
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:52
+msgid "Privacy Policy"
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:65
msgid "Create User"
msgstr "Nutzer erstellen"
-#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:160
+#: .\cookbook\templates\account\signup.html:69
+msgid "Already have an account?"
+msgstr ""
+
+#: .\cookbook\templates\account\signup_closed.html:5
+#: .\cookbook\templates\account\signup_closed.html:11
+msgid "Sign Up Closed"
+msgstr ""
+
+#: .\cookbook\templates\account\signup_closed.html:13
+msgid "We are sorry, but the sign up is currently closed."
+msgstr ""
+
+#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:170
#: .\cookbook\templates\rest_framework\api.html:11
msgid "API Documentation"
msgstr "API-Dokumentation"
-#: .\cookbook\templates\base.html:78
+#: .\cookbook\templates\base.html:85
msgid "Utensils"
msgstr "Utensilien"
-#: .\cookbook\templates\base.html:88
+#: .\cookbook\templates\base.html:95
msgid "Shopping"
msgstr "Einkaufsliste"
-#: .\cookbook\templates\base.html:102 .\cookbook\views\delete.py:84
-#: .\cookbook\views\edit.py:93 .\cookbook\views\lists.py:26
-#: .\cookbook\views\new.py:66
+#: .\cookbook\templates\base.html:109 .\cookbook\views\delete.py:84
+#: .\cookbook\views\edit.py:102 .\cookbook\views\lists.py:26
+#: .\cookbook\views\new.py:78
msgid "Keyword"
msgstr "Schlagwort"
-#: .\cookbook\templates\base.html:104
+#: .\cookbook\templates\base.html:111
msgid "Batch Edit"
msgstr "Massenbearbeitung"
-#: .\cookbook\templates\base.html:109
+#: .\cookbook\templates\base.html:116
msgid "Storage Data"
msgstr "Datenquellen"
-#: .\cookbook\templates\base.html:113
+#: .\cookbook\templates\base.html:120
msgid "Storage Backends"
msgstr "Speicherquellen"
-#: .\cookbook\templates\base.html:115
+#: .\cookbook\templates\base.html:122
msgid "Configure Sync"
msgstr "Synchronisation einstellen"
-#: .\cookbook\templates\base.html:117
+#: .\cookbook\templates\base.html:124
msgid "Discovered Recipes"
msgstr "Entdeckte Rezepte"
-#: .\cookbook\templates\base.html:119
+#: .\cookbook\templates\base.html:126
msgid "Discovery Log"
msgstr "Entdeckungsverlauf"
-#: .\cookbook\templates\base.html:121 .\cookbook\templates\stats.html:10
+#: .\cookbook\templates\base.html:128 .\cookbook\templates\stats.html:10
msgid "Statistics"
msgstr "Statistiken"
-#: .\cookbook\templates\base.html:123
+#: .\cookbook\templates\base.html:130
msgid "Units & Ingredients"
msgstr "Einheiten & Zutaten"
-#: .\cookbook\templates\base.html:125
+#: .\cookbook\templates\base.html:132 .\cookbook\templates\index.html:47
msgid "Import Recipe"
msgstr "Rezept importieren"
-#: .\cookbook\templates\base.html:144 .\cookbook\templates\settings.html:6
+#: .\cookbook\templates\base.html:151 .\cookbook\templates\settings.html:6
#: .\cookbook\templates\settings.html:16
msgid "Settings"
msgstr "Einstellungen"
-#: .\cookbook\templates\base.html:146 .\cookbook\templates\history.html:6
+#: .\cookbook\templates\base.html:153 .\cookbook\templates\history.html:6
#: .\cookbook\templates\history.html:14
msgid "History"
msgstr "Verlauf"
-#: .\cookbook\templates\base.html:150 .\cookbook\templates\system.html:13
+#: .\cookbook\templates\base.html:155 .\cookbook\templates\space.html:7
+#, fuzzy
+#| msgid "Settings"
+msgid "Space Settings"
+msgstr "Einstellungen"
+
+#: .\cookbook\templates\base.html:160 .\cookbook\templates\system.html:13
msgid "System"
msgstr "System"
-#: .\cookbook\templates\base.html:152
+#: .\cookbook\templates\base.html:162
msgid "Admin"
msgstr "Admin"
-#: .\cookbook\templates\base.html:156
+#: .\cookbook\templates\base.html:166
msgid "Markdown Guide"
msgstr "Markdown-Anleitung"
-#: .\cookbook\templates\base.html:158
+#: .\cookbook\templates\base.html:168
msgid "GitHub"
msgstr "GitHub"
-#: .\cookbook\templates\base.html:162
+#: .\cookbook\templates\base.html:172
msgid "API Browser"
msgstr "API Browser"
-#: .\cookbook\templates\base.html:165
-msgid "Logout"
-msgstr "Abmelden"
+#: .\cookbook\templates\base.html:175
+msgid "Log out"
+msgstr ""
#: .\cookbook\templates\batch\edit.html:6
msgid "Batch edit Category"
@@ -576,7 +780,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:76
+#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:85
msgid "Sync"
msgstr "Synchronisieren"
@@ -605,7 +809,7 @@ msgstr "Jetzt Synchronisieren!"
msgid "Importing Recipes"
msgstr "Rezepte werden importiert"
-#: .\cookbook\templates\batch\waiting.html:23
+#: .\cookbook\templates\batch\waiting.html:28
msgid ""
"This can take a few minutes, depending on the number of recipes in sync, "
"please wait."
@@ -644,26 +848,33 @@ msgid "Export Recipes"
msgstr "Rezepte exportieren"
#: .\cookbook\templates\export.html:14 .\cookbook\templates\export.html:20
-#: .\cookbook\templates\shopping_list.html:347
+#: .\cookbook\templates\shopping_list.html:351
#: .\cookbook\templates\test2.html:14 .\cookbook\templates\test2.html:20
msgid "Export"
msgstr "Exportieren"
+#: .\cookbook\templates\files.html:7
+#, fuzzy
+#| msgid "File ID"
+msgid "Files"
+msgstr "Datei-ID"
+
#: .\cookbook\templates\forms\edit_import_recipe.html:5
#: .\cookbook\templates\forms\edit_import_recipe.html:9
msgid "Import new Recipe"
msgstr "Rezept importieren"
#: .\cookbook\templates\forms\edit_import_recipe.html:14
-#: .\cookbook\templates\forms\edit_internal_recipe.html:389
-#: .\cookbook\templates\forms\edit_internal_recipe.html:421
+#: .\cookbook\templates\forms\edit_internal_recipe.html:416
+#: .\cookbook\templates\forms\edit_internal_recipe.html:448
#: .\cookbook\templates\generic\edit_template.html:23
#: .\cookbook\templates\generic\new_template.html:23
#: .\cookbook\templates\include\log_cooking.html:28
#: .\cookbook\templates\meal_plan.html:325
-#: .\cookbook\templates\settings.html:28 .\cookbook\templates\settings.html:35
-#: .\cookbook\templates\settings.html:58 .\cookbook\templates\settings.html:73
-#: .\cookbook\templates\shopping_list.html:349
+#: .\cookbook\templates\settings.html:44 .\cookbook\templates\settings.html:52
+#: .\cookbook\templates\settings.html:96
+#: .\cookbook\templates\settings.html:114
+#: .\cookbook\templates\shopping_list.html:353
msgid "Save"
msgstr "Speichern"
@@ -672,179 +883,188 @@ msgstr "Speichern"
msgid "Edit Recipe"
msgstr "Rezept bearbeiten"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:52
+#: .\cookbook\templates\forms\edit_internal_recipe.html:56
+#: .\cookbook\templates\url_import.html:171
msgid "Description"
msgstr "Beschreibung"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:72
+#: .\cookbook\templates\forms\edit_internal_recipe.html:76
msgid "Waiting Time"
msgstr "Wartezeit"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:78
+#: .\cookbook\templates\forms\edit_internal_recipe.html:82
msgid "Servings Text"
msgstr "Portionen-Text"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:89
+#: .\cookbook\templates\forms\edit_internal_recipe.html:93
msgid "Select Keywords"
msgstr "Schlagwörter wählen"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:90
-#: .\cookbook\templates\url_import.html:212
+#: .\cookbook\templates\forms\edit_internal_recipe.html:94
+#: .\cookbook\templates\url_import.html:583
msgid "Add Keyword"
msgstr "Schlagwort hinzufügen"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:108
+#: .\cookbook\templates\forms\edit_internal_recipe.html:112
msgid "Nutrition"
msgstr "Nährwerte"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:112
-#: .\cookbook\templates\forms\edit_internal_recipe.html:162
+#: .\cookbook\templates\forms\edit_internal_recipe.html:116
+#: .\cookbook\templates\forms\edit_internal_recipe.html:166
msgid "Delete Step"
msgstr "Schritt löschen"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:116
+#: .\cookbook\templates\forms\edit_internal_recipe.html:120
msgid "Calories"
msgstr "Kalorien"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:119
+#: .\cookbook\templates\forms\edit_internal_recipe.html:123
msgid "Carbohydrates"
msgstr "Kohlenhydrate"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:122
+#: .\cookbook\templates\forms\edit_internal_recipe.html:126
msgid "Fats"
msgstr "Fette"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:124
+#: .\cookbook\templates\forms\edit_internal_recipe.html:128
msgid "Proteins"
msgstr "Proteine"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:146
-#: .\cookbook\templates\forms\edit_internal_recipe.html:454
+#: .\cookbook\templates\forms\edit_internal_recipe.html:150
+#: .\cookbook\templates\forms\edit_internal_recipe.html:481
msgid "Step"
msgstr "Schritt"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:167
+#: .\cookbook\templates\forms\edit_internal_recipe.html:171
msgid "Show as header"
msgstr "Als Überschrift anzeigen"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:173
+#: .\cookbook\templates\forms\edit_internal_recipe.html:177
msgid "Hide as header"
msgstr "Nicht als Überschrift anzeigen"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:178
+#: .\cookbook\templates\forms\edit_internal_recipe.html:182
msgid "Move Up"
msgstr "Nach oben"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:183
+#: .\cookbook\templates\forms\edit_internal_recipe.html:187
msgid "Move Down"
msgstr "Nach unten"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:192
+#: .\cookbook\templates\forms\edit_internal_recipe.html:196
msgid "Step Name"
msgstr "Name des Schritts"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:196
+#: .\cookbook\templates\forms\edit_internal_recipe.html:200
msgid "Step Type"
msgstr "Art des Schritts"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:207
+#: .\cookbook\templates\forms\edit_internal_recipe.html:212
msgid "Step time in Minutes"
msgstr "Zeit in Minuten"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:261
-#: .\cookbook\templates\shopping_list.html:183
-msgid "Select Unit"
-msgstr "Einheit wählen"
+#: .\cookbook\templates\forms\edit_internal_recipe.html:228
+#, fuzzy
+#| msgid "Select one"
+msgid "Select File"
+msgstr "Auswählen"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:262
-#: .\cookbook\templates\forms\edit_internal_recipe.html:286
-#: .\cookbook\templates\shopping_list.html:184
-#: .\cookbook\templates\shopping_list.html:206
-msgid "Create"
-msgstr "Erstellen"
-
-#: .\cookbook\templates\forms\edit_internal_recipe.html:263
-#: .\cookbook\templates\forms\edit_internal_recipe.html:287
-#: .\cookbook\templates\shopping_list.html:185
-#: .\cookbook\templates\shopping_list.html:207
-#: .\cookbook\templates\shopping_list.html:237
-#: .\cookbook\templates\shopping_list.html:261
-#: .\cookbook\templates\url_import.html:124
-#: .\cookbook\templates\url_import.html:156
+#: .\cookbook\templates\forms\edit_internal_recipe.html:229
+#: .\cookbook\templates\forms\edit_internal_recipe.html:290
+#: .\cookbook\templates\forms\edit_internal_recipe.html:314
+#: .\cookbook\templates\shopping_list.html:189
+#: .\cookbook\templates\shopping_list.html:211
+#: .\cookbook\templates\shopping_list.html:241
+#: .\cookbook\templates\shopping_list.html:265
+#: .\cookbook\templates\url_import.html:495
+#: .\cookbook\templates\url_import.html:527
msgid "Select"
msgstr "Auswählen"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:285
-#: .\cookbook\templates\shopping_list.html:205
+#: .\cookbook\templates\forms\edit_internal_recipe.html:288
+#: .\cookbook\templates\shopping_list.html:187
+msgid "Select Unit"
+msgstr "Einheit wählen"
+
+#: .\cookbook\templates\forms\edit_internal_recipe.html:289
+#: .\cookbook\templates\forms\edit_internal_recipe.html:313
+#: .\cookbook\templates\shopping_list.html:188
+#: .\cookbook\templates\shopping_list.html:210
+msgid "Create"
+msgstr "Erstellen"
+
+#: .\cookbook\templates\forms\edit_internal_recipe.html:312
+#: .\cookbook\templates\shopping_list.html:209
msgid "Select Food"
msgstr "Zutat auswählen"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:302
+#: .\cookbook\templates\forms\edit_internal_recipe.html:329
#: .\cookbook\templates\meal_plan.html:256
-#: .\cookbook\templates\url_import.html:171
+#: .\cookbook\templates\url_import.html:542
msgid "Note"
msgstr "Notiz"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:319
+#: .\cookbook\templates\forms\edit_internal_recipe.html:346
msgid "Delete Ingredient"
msgstr "Zutat löschen"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:325
+#: .\cookbook\templates\forms\edit_internal_recipe.html:352
msgid "Make Header"
msgstr "Überschrift erstellen"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:331
+#: .\cookbook\templates\forms\edit_internal_recipe.html:358
msgid "Make Ingredient"
msgstr "Zutat erstellen"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:337
+#: .\cookbook\templates\forms\edit_internal_recipe.html:364
msgid "Disable Amount"
msgstr "Menge deaktivieren"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:343
+#: .\cookbook\templates\forms\edit_internal_recipe.html:370
msgid "Enable Amount"
msgstr "Menge aktivieren"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:348
+#: .\cookbook\templates\forms\edit_internal_recipe.html:375
msgid "Copy Template Reference"
msgstr "Kopiere Vorlagen-Referenz"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:374
-#: .\cookbook\templates\url_import.html:196
+#: .\cookbook\templates\forms\edit_internal_recipe.html:401
+#: .\cookbook\templates\url_import.html:297
+#: .\cookbook\templates\url_import.html:567
msgid "Instructions"
msgstr "Anleitung"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:387
-#: .\cookbook\templates\forms\edit_internal_recipe.html:418
+#: .\cookbook\templates\forms\edit_internal_recipe.html:414
+#: .\cookbook\templates\forms\edit_internal_recipe.html:445
msgid "Save & View"
msgstr "Speichern & Ansehen"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:391
-#: .\cookbook\templates\forms\edit_internal_recipe.html:424
+#: .\cookbook\templates\forms\edit_internal_recipe.html:418
+#: .\cookbook\templates\forms\edit_internal_recipe.html:451
msgid "Add Step"
msgstr "Schritt hinzufügen"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:394
-#: .\cookbook\templates\forms\edit_internal_recipe.html:428
+#: .\cookbook\templates\forms\edit_internal_recipe.html:421
+#: .\cookbook\templates\forms\edit_internal_recipe.html:455
msgid "Add Nutrition"
msgstr "Nährwerte hinzufügen"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:396
-#: .\cookbook\templates\forms\edit_internal_recipe.html:430
+#: .\cookbook\templates\forms\edit_internal_recipe.html:423
+#: .\cookbook\templates\forms\edit_internal_recipe.html:457
msgid "Remove Nutrition"
msgstr "Nährwerte entfernen"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:398
-#: .\cookbook\templates\forms\edit_internal_recipe.html:433
+#: .\cookbook\templates\forms\edit_internal_recipe.html:425
+#: .\cookbook\templates\forms\edit_internal_recipe.html:460
msgid "View Recipe"
msgstr "Rezept ansehen"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:400
-#: .\cookbook\templates\forms\edit_internal_recipe.html:435
+#: .\cookbook\templates\forms\edit_internal_recipe.html:427
+#: .\cookbook\templates\forms\edit_internal_recipe.html:462
msgid "Delete Recipe"
msgstr "Rezept löschen"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:441
+#: .\cookbook\templates\forms\edit_internal_recipe.html:468
msgid "Steps"
msgstr "Schritte"
@@ -871,7 +1091,7 @@ msgstr ""
" "
#: .\cookbook\templates\forms\ingredients.html:24
-#: .\cookbook\templates\stats.html:26
+#: .\cookbook\templates\space.html:35 .\cookbook\templates\stats.html:26
msgid "Units"
msgstr "Einheiten"
@@ -896,10 +1116,6 @@ msgid "Are you sure you want to delete the %(title)s: %(object)s "
msgstr ""
"Bist du sicher, dass %(title)s: %(object)s gelöscht werden soll?"
-#: .\cookbook\templates\generic\delete_template.html:21
-msgid "Confirm"
-msgstr "Bestätigen"
-
#: .\cookbook\templates\generic\edit_template.html:30
msgid "View"
msgstr "Anschauen"
@@ -921,12 +1137,6 @@ msgstr "Filter"
msgid "Import all"
msgstr "Alle importieren"
-#: .\cookbook\templates\generic\new_template.html:6
-#: .\cookbook\templates\generic\new_template.html:14
-#: .\cookbook\templates\meal_plan.html:323
-msgid "New"
-msgstr "Neu"
-
#: .\cookbook\templates\generic\table_template.html:76
#: .\cookbook\templates\recipes_table.html:121
msgid "previous"
@@ -971,7 +1181,7 @@ msgstr "Schließen"
#: .\cookbook\templates\include\recipe_open_modal.html:7
#: .\cookbook\templates\meal_plan.html:247 .\cookbook\views\delete.py:28
-#: .\cookbook\views\edit.py:264 .\cookbook\views\new.py:40
+#: .\cookbook\views\edit.py:273 .\cookbook\views\new.py:52
msgid "Recipe"
msgstr "Rezept"
@@ -1013,10 +1223,6 @@ msgstr "Rezept suchen..."
msgid "New Recipe"
msgstr "Neues Rezept"
-#: .\cookbook\templates\index.html:47
-msgid "Website Import"
-msgstr "Webseiten-Import"
-
#: .\cookbook\templates\index.html:53
msgid "Advanced Search"
msgstr "Erweiterte Suche"
@@ -1030,7 +1236,7 @@ msgid "Last viewed"
msgstr "Zuletzt angesehen"
#: .\cookbook\templates\index.html:87 .\cookbook\templates\meal_plan.html:178
-#: .\cookbook\templates\stats.html:22
+#: .\cookbook\templates\space.html:29 .\cookbook\templates\stats.html:22
msgid "Recipes"
msgstr "Rezepte"
@@ -1192,7 +1398,7 @@ msgid "New Entry"
msgstr "Neuer Eintrag"
#: .\cookbook\templates\meal_plan.html:113
-#: .\cookbook\templates\shopping_list.html:52
+#: .\cookbook\templates\shopping_list.html:56
msgid "Search Recipe"
msgstr "Rezept suchen"
@@ -1224,7 +1430,7 @@ msgstr "Nur Notiz erstellen"
#: .\cookbook\templates\meal_plan.html:168
#: .\cookbook\templates\shopping_list.html:7
#: .\cookbook\templates\shopping_list.html:29
-#: .\cookbook\templates\shopping_list.html:705
+#: .\cookbook\templates\shopping_list.html:714
msgid "Shopping List"
msgstr "Einkaufsliste"
@@ -1276,7 +1482,7 @@ msgstr "Erstellt von"
#: .\cookbook\templates\meal_plan.html:270
#: .\cookbook\templates\meal_plan_entry.html:20
-#: .\cookbook\templates\shopping_list.html:250
+#: .\cookbook\templates\shopping_list.html:254
msgid "Shared with"
msgstr "Geteilt mit"
@@ -1374,7 +1580,6 @@ msgstr "Du hast keine Gruppe und kannst daher diese Anwendung nicht nutzen."
#: .\cookbook\templates\no_groups_info.html:18
#: .\cookbook\templates\no_perm_info.html:15
-#: .\cookbook\templates\no_space_info.html:15
msgid "Please contact your administrator."
msgstr "Bitte kontaktiere einen Administrator."
@@ -1391,14 +1596,53 @@ msgstr ""
"Du hast nicht die notwendige Berechtigung, um diese Seite anzusehen oder "
"diese Aktion durchzuführen!"
-#: .\cookbook\templates\no_space_info.html:5
-#: .\cookbook\templates\no_space_info.html:12
+#: .\cookbook\templates\no_space_info.html:6
+#: .\cookbook\templates\no_space_info.html:13
msgid "No Space"
msgstr "Kein Space"
-#: .\cookbook\templates\no_space_info.html:15
-msgid "You are not a member of any space."
-msgstr "Du bist kein Mitglied von einem Space."
+#: .\cookbook\templates\no_space_info.html:17
+msgid ""
+"Recipes, foods, shopping lists and more are organized in spaces of one or "
+"more people."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:18
+msgid ""
+"You can either be invited into an existing space or create your own one."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:31
+#: .\cookbook\templates\no_space_info.html:40
+#, fuzzy
+#| msgid "No Space"
+msgid "Join Space"
+msgstr "Kein Space"
+
+#: .\cookbook\templates\no_space_info.html:34
+msgid "Join an existing space."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:35
+msgid ""
+"To join an existing space either enter your invite token or click on the "
+"invite link the space owner send you."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:48
+#: .\cookbook\templates\no_space_info.html:56
+#, fuzzy
+#| msgid "Create User"
+msgid "Create Space"
+msgstr "Nutzer erstellen"
+
+#: .\cookbook\templates\no_space_info.html:51
+msgid "Create your own recipe space."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:52
+msgid "Start your own recipe space and invite other users to it."
+msgstr ""
#: .\cookbook\templates\offline.html:6
msgid "Offline"
@@ -1416,28 +1660,29 @@ 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\stats.html:47
+#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\space.html:56
+#: .\cookbook\templates\stats.html:47
msgid "Comments"
msgstr "Kommentare"
#: .\cookbook\templates\recipe_view.html:44 .\cookbook\views\delete.py:118
-#: .\cookbook\views\edit.py:170
+#: .\cookbook\views\edit.py:179
msgid "Comment"
msgstr "Kommentar"
#: .\cookbook\templates\recipes_table.html:19
#: .\cookbook\templates\recipes_table.html:23
-#: .\cookbook\templates\url_import.html:69
+#: .\cookbook\templates\url_import.html:440
msgid "Recipe Image"
msgstr "Rezeptbild"
#: .\cookbook\templates\recipes_table.html:51
-#: .\cookbook\templates\url_import.html:74
+#: .\cookbook\templates\url_import.html:445
msgid "Preparation time ca."
msgstr "Zubereitungszeit ca."
#: .\cookbook\templates\recipes_table.html:57
-#: .\cookbook\templates\url_import.html:79
+#: .\cookbook\templates\url_import.html:450
msgid "Waiting time ca."
msgstr "Wartezeit ca."
@@ -1453,27 +1698,67 @@ msgstr "Kochen protokollieren"
msgid "Recipe Home"
msgstr "Rezept-Hauptseite"
-#: .\cookbook\templates\settings.html:22
+#: .\cookbook\templates\settings.html:23
msgid "Account"
msgstr "Account"
-#: .\cookbook\templates\settings.html:38
-msgid "Link social account"
+#: .\cookbook\templates\settings.html:27
+msgid "Preferences"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:31
+#, fuzzy
+#| msgid "Settings"
+msgid "API-Settings"
+msgstr "Einstellungen"
+
+#: .\cookbook\templates\settings.html:39
+#, fuzzy
+#| msgid "Settings"
+msgid "Name Settings"
+msgstr "Einstellungen"
+
+#: .\cookbook\templates\settings.html:47
+#, fuzzy
+#| msgid "Password Reset"
+msgid "Password Settings"
+msgstr "Passwort Reset"
+
+#: .\cookbook\templates\settings.html:55
+#, fuzzy
+#| msgid "Settings"
+msgid "Email Settings"
+msgstr "Einstellungen"
+
+#: .\cookbook\templates\settings.html:57
+msgid "Manage Email Settings"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:61
+#, fuzzy
+#| msgid "Social Login"
+msgid "Social"
+msgstr "Social Login"
+
+#: .\cookbook\templates\settings.html:63
+#, fuzzy
+#| msgid "Link social account"
+msgid "Manage Social Accounts"
msgstr "Social Account verlinken"
-#: .\cookbook\templates\settings.html:42
+#: .\cookbook\templates\settings.html:75
msgid "Language"
msgstr "Sprache"
-#: .\cookbook\templates\settings.html:67
+#: .\cookbook\templates\settings.html:105
msgid "Style"
msgstr "Stil"
-#: .\cookbook\templates\settings.html:79
+#: .\cookbook\templates\settings.html:125
msgid "API Token"
msgstr "API-Token"
-#: .\cookbook\templates\settings.html:80
+#: .\cookbook\templates\settings.html:126
msgid ""
"You can use both basic authentication and token based authentication to "
"access the REST API."
@@ -1481,7 +1766,7 @@ msgstr ""
"Sowohl Basic Authentication als auch tokenbasierte Authentifizierung können "
"für die REST-API verwendet werden."
-#: .\cookbook\templates\settings.html:92
+#: .\cookbook\templates\settings.html:143
msgid ""
"Use the token as an Authorization header prefixed by the word token as shown "
"in the following examples:"
@@ -1489,7 +1774,7 @@ msgstr ""
"Nutz den Token als Authorization-Header mit der Präfix \"Token\" wie in "
"folgendem Beispiel:"
-#: .\cookbook\templates\settings.html:94
+#: .\cookbook\templates\settings.html:145
msgid "or"
msgstr "oder"
@@ -1512,58 +1797,55 @@ msgstr ""
msgid "Create Superuser account"
msgstr "Administrator-Account Erstellen"
-#: .\cookbook\templates\shopping_list.html:75
+#: .\cookbook\templates\shopping_list.html:79
msgid "Shopping Recipes"
msgstr "Einkaufs-Rezepte"
-#: .\cookbook\templates\shopping_list.html:79
+#: .\cookbook\templates\shopping_list.html:83
msgid "No recipes selected"
msgstr "Keine Rezepte ausgewählt"
-#: .\cookbook\templates\shopping_list.html:146
+#: .\cookbook\templates\shopping_list.html:150
msgid "Entry Mode"
msgstr "Eintrags-Modus"
-#: .\cookbook\templates\shopping_list.html:154
+#: .\cookbook\templates\shopping_list.html:158
msgid "Add Entry"
msgstr "Eintrag hinzufügen"
-#: .\cookbook\templates\shopping_list.html:170
+#: .\cookbook\templates\shopping_list.html:174
msgid "Amount"
msgstr "Menge"
-#: .\cookbook\templates\shopping_list.html:226
+#: .\cookbook\templates\shopping_list.html:230
+#: .\cookbook\templates\supermarket.html:7
msgid "Supermarket"
msgstr "Supermarkt"
-#: .\cookbook\templates\shopping_list.html:236
+#: .\cookbook\templates\shopping_list.html:240
msgid "Select Supermarket"
msgstr "Supermarkt auswählen"
-#: .\cookbook\templates\shopping_list.html:260
+#: .\cookbook\templates\shopping_list.html:264
msgid "Select User"
msgstr "Nutzer auswählen"
-#: .\cookbook\templates\shopping_list.html:279
+#: .\cookbook\templates\shopping_list.html:283
msgid "Finished"
msgstr "Erledigt"
-#: .\cookbook\templates\shopping_list.html:292
+#: .\cookbook\templates\shopping_list.html:296
msgid "You are offline, shopping list might not syncronize."
msgstr "Du bist offline, die Einkaufsliste wird ggf. nicht synchronisiert."
-#: .\cookbook\templates\shopping_list.html:357
+#: .\cookbook\templates\shopping_list.html:361
msgid "Copy/Export"
msgstr "Kopieren/Exportieren"
-#: .\cookbook\templates\shopping_list.html:361
+#: .\cookbook\templates\shopping_list.html:365
msgid "List Prefix"
msgstr "Listenpräfix"
-#: .\cookbook\templates\shopping_list.html:708
-msgid "There was an error creating a resource!"
-msgstr "Es gab einen Fehler beim Erstellen einer Ressource!"
-
#: .\cookbook\templates\socialaccount\connections.html:4
#: .\cookbook\templates\socialaccount\connections.html:7
msgid "Account Connections"
@@ -1577,10 +1859,6 @@ msgstr ""
"Du kannst dich mit den folgenden Drittanbieter-Accounts\n"
" anmelden:"
-#: .\cookbook\templates\socialaccount\connections.html:36
-msgid "Remove"
-msgstr "Entfernen"
-
#: .\cookbook\templates\socialaccount\connections.html:44
msgid ""
"You currently have no social network accounts connected to this account."
@@ -1591,38 +1869,99 @@ msgstr ""
msgid "Add a 3rd Party Account"
msgstr "Fremden Account hinzufügen"
-#: .\cookbook\templates\stats.html:4
-msgid "Stats"
-msgstr "Statistiken"
+#: .\cookbook\templates\space.html:18
+#, fuzzy
+#| msgid "Description"
+msgid "Manage Subscription"
+msgstr "Beschreibung"
-#: .\cookbook\templates\stats.html:19
+#: .\cookbook\templates\space.html:26 .\cookbook\templates\stats.html:19
msgid "Number of objects"
msgstr "Anzahl an Objekten"
-#: .\cookbook\templates\stats.html:30
+#: .\cookbook\templates\space.html:39 .\cookbook\templates\stats.html:30
msgid "Recipe Imports"
msgstr "Importierte Rezepte"
-#: .\cookbook\templates\stats.html:38
+#: .\cookbook\templates\space.html:47 .\cookbook\templates\stats.html:38
msgid "Objects stats"
msgstr "Objekt-Statistiken"
-#: .\cookbook\templates\stats.html:41
+#: .\cookbook\templates\space.html:50 .\cookbook\templates\stats.html:41
msgid "Recipes without Keywords"
msgstr "Rezepte ohne Schlagwort"
-#: .\cookbook\templates\stats.html:43
+#: .\cookbook\templates\space.html:52 .\cookbook\templates\stats.html:43
msgid "External Recipes"
msgstr "Externe Rezepte"
-#: .\cookbook\templates\stats.html:45
+#: .\cookbook\templates\space.html:54 .\cookbook\templates\stats.html:45
msgid "Internal Recipes"
msgstr "Interne Rezepte"
-#: .\cookbook\templates\system.html:21 .\cookbook\views\lists.py:115
+#: .\cookbook\templates\space.html:67
+msgid "Members"
+msgstr ""
+
+#: .\cookbook\templates\space.html:71
+#, fuzzy
+#| msgid "Invite Links"
+msgid "Invite User"
+msgstr "Einladungslinks"
+
+#: .\cookbook\templates\space.html:82
+msgid "User"
+msgstr ""
+
+#: .\cookbook\templates\space.html:83
+msgid "Groups"
+msgstr ""
+
+#: .\cookbook\templates\space.html:99
+#, fuzzy
+#| msgid "Admin"
+msgid "admin"
+msgstr "Admin"
+
+#: .\cookbook\templates\space.html:100
+msgid "user"
+msgstr ""
+
+#: .\cookbook\templates\space.html:101
+msgid "guest"
+msgstr ""
+
+#: .\cookbook\templates\space.html:102
+#, fuzzy
+#| msgid "Remove"
+msgid "remove"
+msgstr "Entfernen"
+
+#: .\cookbook\templates\space.html:106
+msgid "Update"
+msgstr ""
+
+#: .\cookbook\templates\space.html:110
+#, fuzzy
+#| msgid "You cannot edit this storage!"
+msgid "You cannot edit yourself."
+msgstr "Du kannst diese Speicherquelle nicht bearbeiten!"
+
+#: .\cookbook\templates\space.html:117
+#, fuzzy
+#| msgid "There are no recipes in this book yet."
+msgid "There are no members in your space yet!"
+msgstr "In diesem Buch sind bisher noch keine Rezepte."
+
+#: .\cookbook\templates\space.html:124 .\cookbook\templates\system.html:21
+#: .\cookbook\views\lists.py:115
msgid "Invite Links"
msgstr "Einladungslinks"
+#: .\cookbook\templates\stats.html:4
+msgid "Stats"
+msgstr "Statistiken"
+
#: .\cookbook\templates\system.html:22
msgid "Show Links"
msgstr "Links anzeigen"
@@ -1746,45 +2085,157 @@ msgstr ""
"Ordnung, wird aber nicht empfohlen, da einige\n"
"Funktionen nur mit einer Postgres-Datenbanken funktionieren."
-#: .\cookbook\templates\url_import.html:5
+#: .\cookbook\templates\url_import.html:6
msgid "URL Import"
msgstr "URL-Import"
-#: .\cookbook\templates\url_import.html:23
+#: .\cookbook\templates\url_import.html:31
+msgid "Drag me to your bookmarks to import recipes from anywhere"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:32
+#, fuzzy
+#| msgid "Bookmark saved!"
+msgid "Bookmark Me!"
+msgstr "Lesezeichen gespeichert!"
+
+#: .\cookbook\templates\url_import.html:61
msgid "Enter website URL"
msgstr "Webseite-URL eingeben"
-#: .\cookbook\templates\url_import.html:36
-msgid "Enter json directly"
-msgstr "JSON direkt eingeben"
+#: .\cookbook\templates\url_import.html:97
+msgid "Select recipe files to import or drop them here..."
+msgstr ""
-#: .\cookbook\templates\url_import.html:57
+#: .\cookbook\templates\url_import.html:118
+msgid "Paste json or html source here to load recipe."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:146
+#, fuzzy
+#| msgid "View Recipe"
+msgid "Preview Recipe Data"
+msgstr "Rezept ansehen"
+
+#: .\cookbook\templates\url_import.html:147
+msgid "Drag recipe attributes from the right into the appropriate box below."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:156
+#: .\cookbook\templates\url_import.html:173
+#: .\cookbook\templates\url_import.html:190
+#: .\cookbook\templates\url_import.html:209
+#: .\cookbook\templates\url_import.html:227
+#: .\cookbook\templates\url_import.html:242
+#: .\cookbook\templates\url_import.html:257
+#: .\cookbook\templates\url_import.html:273
+#: .\cookbook\templates\url_import.html:300
+#: .\cookbook\templates\url_import.html:351
+msgid "Clear Contents"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:158
+msgid "Text dragged here will be appended to the name."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:175
+msgid "Text dragged here will be appended to the description."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:192
+msgid "Keywords dragged here will be appended to current list"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:207
+msgid "Image"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:239
+#, fuzzy
+#| msgid "Preparation Time"
+msgid "Prep Time"
+msgstr "Vorbereitungszeit"
+
+#: .\cookbook\templates\url_import.html:254
+#, fuzzy
+#| msgid "Time"
+msgid "Cook Time"
+msgstr "Zeit"
+
+#: .\cookbook\templates\url_import.html:275
+msgid "Ingredients dragged here will be appended to current list."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:302
+msgid ""
+"Recipe instructions dragged here will be appended to current instructions."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:325
+#, fuzzy
+#| msgid "Discovered Recipes"
+msgid "Discovered Attributes"
+msgstr "Entdeckte Rezepte"
+
+#: .\cookbook\templates\url_import.html:327
+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:344
+#, fuzzy
+#| msgid "Show as header"
+msgid "Show Blank Field"
+msgstr "Als Überschrift anzeigen"
+
+#: .\cookbook\templates\url_import.html:349
+msgid "Blank Field"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:353
+msgid "Items dragged to Blank Field will be appended."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:400
+#, fuzzy
+#| msgid "Delete Step"
+msgid "Delete Text"
+msgstr "Schritt löschen"
+
+#: .\cookbook\templates\url_import.html:413
+#, fuzzy
+#| msgid "Delete Recipe"
+msgid "Delete image"
+msgstr "Rezept löschen"
+
+#: .\cookbook\templates\url_import.html:429
msgid "Recipe Name"
msgstr "Rezeptname"
-#: .\cookbook\templates\url_import.html:62
+#: .\cookbook\templates\url_import.html:433
msgid "Recipe Description"
msgstr "Rezept Beschreibung"
-#: .\cookbook\templates\url_import.html:123
-#: .\cookbook\templates\url_import.html:155
-#: .\cookbook\templates\url_import.html:211
+#: .\cookbook\templates\url_import.html:494
+#: .\cookbook\templates\url_import.html:526
+#: .\cookbook\templates\url_import.html:582
msgid "Select one"
msgstr "Auswählen"
-#: .\cookbook\templates\url_import.html:225
+#: .\cookbook\templates\url_import.html:596
msgid "All Keywords"
msgstr "Alle Schlagwörter"
-#: .\cookbook\templates\url_import.html:228
+#: .\cookbook\templates\url_import.html:599
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:255
+#: .\cookbook\templates\url_import.html:626
msgid "Information"
msgstr "Information"
-#: .\cookbook\templates\url_import.html:257
+#: .\cookbook\templates\url_import.html:628
msgid ""
" Only websites containing ld+json or microdata information can currently\n"
" be imported. Most big recipe pages "
@@ -1799,48 +2250,78 @@ msgstr ""
"importiert werden kann, sie aber strukturierte Daten aufweist, kann ein "
"GitHub-Issue geöffnet werden."
-#: .\cookbook\templates\url_import.html:265
+#: .\cookbook\templates\url_import.html:636
msgid "Google ld+json Info"
msgstr "Google ld+json Informationen"
-#: .\cookbook\templates\url_import.html:268
+#: .\cookbook\templates\url_import.html:639
msgid "GitHub Issues"
msgstr "GitHub-Issues"
-#: .\cookbook\templates\url_import.html:270
+#: .\cookbook\templates\url_import.html:641
msgid "Recipe Markup Specification"
msgstr "Rezept-Markup-Spezifikation"
-#: .\cookbook\views\api.py:71
+#: .\cookbook\views\api.py:77
msgid "Parameter updated_at incorrectly formatted"
msgstr "Der Parameter updated_at ist falsch formatiert"
-#: .\cookbook\views\api.py:455 .\cookbook\views\views.py:226
+#: .\cookbook\views\api.py:553 .\cookbook\views\views.py:295
msgid "This feature is not available in the demo version!"
msgstr "Diese Funktion ist in der Demo-Version nicht verfügbar!"
-#: .\cookbook\views\api.py:478
+#: .\cookbook\views\api.py:576
msgid "Sync successful!"
msgstr "Synchronisation erfolgreich!"
-#: .\cookbook\views\api.py:483
+#: .\cookbook\views\api.py:581
msgid "Error synchronizing with Storage"
msgstr "Fehler beim Synchronisieren"
-#: .\cookbook\views\api.py:556 .\cookbook\views\api.py:576
+#: .\cookbook\views\api.py:649
+msgid "Nothing to do."
+msgstr ""
+
+#: .\cookbook\views\api.py:664
+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:671
msgid "The requested page could not be found."
msgstr "Die angefragte Seite konnte nicht gefunden werden."
-#: .\cookbook\views\api.py:585
+#: .\cookbook\views\api.py:680
msgid ""
-"The requested page refused to provide any information (Status Code 403)."
-msgstr "Die angefragte Seite hat die Anfrage abgelehnt (Status-Code 403)."
+"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:611
-msgid "Could not parse correctly..."
-msgstr "Konnte Inhalt nicht korrekt parsen..."
+#: .\cookbook\views\api.py:694
+#, fuzzy
+#| msgid "The requested page could not be found."
+msgid "No useable data could be found."
+msgstr "Die angefragte Seite konnte nicht gefunden werden."
-#: .\cookbook\views\data.py:94
+#: .\cookbook\views\api.py:710
+msgid "I couldn't find anything to do."
+msgstr ""
+
+#: .\cookbook\views\data.py:30 .\cookbook\views\data.py:121
+#: .\cookbook\views\edit.py:50 .\cookbook\views\import_export.py:67
+#: .\cookbook\views\new.py:32
+msgid "You have reached the maximum number of recipes for your space."
+msgstr ""
+
+#: .\cookbook\views\data.py:34 .\cookbook\views\data.py:125
+#: .\cookbook\views\edit.py:54 .\cookbook\views\import_export.py:71
+#: .\cookbook\views\new.py:36
+msgid "You have more users than allowed in your space."
+msgstr ""
+
+#: .\cookbook\views\data.py:103
#, python-format
msgid "Batch edit done. %(count)d recipe was updated."
msgid_plural "Batch edit done. %(count)d Recipes where updated."
@@ -1853,7 +2334,7 @@ msgid "Monitor"
msgstr "Überwachen"
#: .\cookbook\views\delete.py:96 .\cookbook\views\lists.py:102
-#: .\cookbook\views\new.py:86
+#: .\cookbook\views\new.py:98
msgid "Storage Backend"
msgstr "Speicherquelle"
@@ -1864,8 +2345,8 @@ msgstr ""
"Speicherquelle konnte nicht gelöscht werden, da sie in mindestens einem "
"Monitor verwendet wird."
-#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:204
-#: .\cookbook\views\new.py:144
+#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:213
+#: .\cookbook\views\new.py:156
msgid "Recipe Book"
msgstr "Rezeptbuch"
@@ -1873,55 +2354,55 @@ msgstr "Rezeptbuch"
msgid "Bookmarks"
msgstr "Lesezeichen"
-#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:214
+#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:252
msgid "Invite Link"
msgstr "Einladungslink"
-#: .\cookbook\views\edit.py:110
+#: .\cookbook\views\edit.py:119
msgid "Food"
msgstr "Lebensmittel"
-#: .\cookbook\views\edit.py:119
+#: .\cookbook\views\edit.py:128
msgid "You cannot edit this storage!"
msgstr "Du kannst diese Speicherquelle nicht bearbeiten!"
-#: .\cookbook\views\edit.py:139
+#: .\cookbook\views\edit.py:148
msgid "Storage saved!"
msgstr "Speicherquelle gespeichert!"
-#: .\cookbook\views\edit.py:145
+#: .\cookbook\views\edit.py:154
msgid "There was an error updating this storage backend!"
msgstr "Es gab einen Fehler beim Aktualisieren dieser Speicherquelle!"
-#: .\cookbook\views\edit.py:156
+#: .\cookbook\views\edit.py:165
msgid "Storage"
msgstr "Speicher"
-#: .\cookbook\views\edit.py:252
+#: .\cookbook\views\edit.py:261
msgid "Changes saved!"
msgstr "Änderungen gespeichert!"
-#: .\cookbook\views\edit.py:256
+#: .\cookbook\views\edit.py:265
msgid "Error saving changes!"
msgstr "Fehler beim Speichern der Daten!"
-#: .\cookbook\views\edit.py:289
+#: .\cookbook\views\edit.py:299
msgid "Units merged!"
msgstr "Einheiten zusammengeführt!"
-#: .\cookbook\views\edit.py:291 .\cookbook\views\edit.py:307
+#: .\cookbook\views\edit.py:301 .\cookbook\views\edit.py:317
msgid "Cannot merge with the same object!"
msgstr "Zusammenführen mit selben Objekt nicht möglich!"
-#: .\cookbook\views\edit.py:305
+#: .\cookbook\views\edit.py:315
msgid "Foods merged!"
msgstr "Zutaten zusammengeführt!"
-#: .\cookbook\views\import_export.py:73
+#: .\cookbook\views\import_export.py:93
msgid "Importing is not implemented for this provider"
msgstr "Importieren ist für diesen Anbieter noch nicht implementiert"
-#: .\cookbook\views\import_export.py:92
+#: .\cookbook\views\import_export.py:115
msgid "Exporting is not implemented for this provider"
msgstr "Exportieren ist für diesen Anbieter noch nicht implementiert"
@@ -1937,24 +2418,78 @@ msgstr "Entdecken"
msgid "Shopping Lists"
msgstr "Einkaufslisten"
-#: .\cookbook\views\new.py:111
+#: .\cookbook\views\new.py:123
msgid "Imported new recipe!"
msgstr "Neues Rezept importiert!"
-#: .\cookbook\views\new.py:114
+#: .\cookbook\views\new.py:126
msgid "There was an error importing this recipe!"
msgstr "Beim Importieren des Rezeptes ist ein Fehler aufgetreten!"
-#: .\cookbook\views\views.py:123
+#: .\cookbook\views\new.py:226
+msgid "Hello"
+msgstr ""
+
+#: .\cookbook\views\new.py:226
+msgid "You have been invited by "
+msgstr ""
+
+#: .\cookbook\views\new.py:227
+msgid " to join their Tandoor Recipes space "
+msgstr ""
+
+#: .\cookbook\views\new.py:228
+msgid "Click the following link to activate your account: "
+msgstr ""
+
+#: .\cookbook\views\new.py:229
+msgid ""
+"If the link does not work use the following code to manually join the space: "
+msgstr ""
+
+#: .\cookbook\views\new.py:230
+msgid "The invitation is valid until "
+msgstr ""
+
+#: .\cookbook\views\new.py:231
+msgid ""
+"Tandoor Recipes is an Open Source recipe manager. Check it out on GitHub "
+msgstr ""
+
+#: .\cookbook\views\new.py:234
+msgid "Tandoor Recipes Invite"
+msgstr ""
+
+#: .\cookbook\views\new.py:241
+msgid "Invite link successfully send to user."
+msgstr ""
+
+#: .\cookbook\views\new.py:244
+msgid ""
+"You have send to many emails, please share the link manually or wait a few "
+"hours."
+msgstr ""
+
+#: .\cookbook\views\new.py:246
+msgid "Email to user could not be send, please share link manually."
+msgstr ""
+
+#: .\cookbook\views\views.py:125
+msgid ""
+"You have successfully created your own recipe space. Start by adding some "
+"recipes or invite other people to join you."
+msgstr ""
+
+#: .\cookbook\views\views.py:173
msgid "You do not have the required permissions to perform this action!"
msgstr ""
"Du hast nicht die notwendige Berechtigung, um diese Aktion durchzuführen!"
-#: .\cookbook\views\views.py:134
+#: .\cookbook\views\views.py:184
msgid "Comment saved!"
msgstr "Kommentar gespeichert!"
-#: .\cookbook\views\views.py:326
+#: .\cookbook\views\views.py:396
msgid ""
"The setup page can only be used to create the first user! If you have "
"forgotten your superuser credentials please consult the django documentation "
@@ -1963,22 +2498,66 @@ msgstr ""
"Die Setup-Seite kann nur für den ersten Nutzer verwendet werden. Zum "
"Zurücksetzen von Passwörtern bitte der Django-Dokumentation folgen."
-#: .\cookbook\views\views.py:333 .\cookbook\views\views.py:378
+#: .\cookbook\views\views.py:403
msgid "Passwords dont match!"
msgstr "Passwörter stimmen nicht überein!"
-#: .\cookbook\views\views.py:349 .\cookbook\views\views.py:385
+#: .\cookbook\views\views.py:419
msgid "User has been created, please login!"
msgstr "Benutzer wurde erstellt, bitte einloggen!"
-#: .\cookbook\views\views.py:365
+#: .\cookbook\views\views.py:435
msgid "Malformed Invite Link supplied!"
msgstr "Fehlerhafter Einladungslink angegeben!"
-#: .\cookbook\views\views.py:405
+#: .\cookbook\views\views.py:441
+#, fuzzy
+#| msgid "You are not logged in and therefore cannot view this page!"
+msgid "You are already member of a space and therefore cannot join this one."
+msgstr "Du bist nicht angemeldet, daher kannst du diese Seite nicht sehen!"
+
+#: .\cookbook\views\views.py:452
+msgid "Successfully joined space."
+msgstr ""
+
+#: .\cookbook\views\views.py:458
msgid "Invite Link not valid or already used!"
msgstr "Einladungslink ungültig oder bereits genutzt!"
+#~ msgid ""
+#~ "A username is not required, if left blank the new user can choose one."
+#~ msgstr ""
+#~ "Kein Benutzername benötigt. Wenn leer gelassen, kann der neue Benutzer "
+#~ "einen wählen."
+
+#~ msgid "Imported from"
+#~ msgstr "Importiert von"
+
+#~ msgid "Link"
+#~ msgstr "Link"
+
+#~ msgid "Logout"
+#~ msgstr "Abmelden"
+
+#~ msgid "Website Import"
+#~ msgstr "Webseiten-Import"
+
+#~ msgid "You are not a member of any space."
+#~ msgstr "Du bist kein Mitglied von einem Space."
+
+#~ msgid "There was an error creating a resource!"
+#~ msgstr "Es gab einen Fehler beim Erstellen einer Ressource!"
+
+#~ msgid "Enter json directly"
+#~ msgstr "JSON direkt eingeben"
+
+#~ msgid ""
+#~ "The requested page refused to provide any information (Status Code 403)."
+#~ msgstr "Die angefragte Seite hat die Anfrage abgelehnt (Status-Code 403)."
+
+#~ msgid "Could not parse correctly..."
+#~ msgstr "Konnte Inhalt nicht korrekt parsen..."
+
#~ msgid "Number of servings"
#~ msgstr "Anzahl der Portionen"
@@ -2000,6 +2579,3 @@ msgstr "Einladungslink ungültig oder bereits genutzt!"
#~ msgid "This recipe is already linked to the book!"
#~ msgstr "Dieses Rezept ist bereits mit dem Buch verlinkt!"
-
-#~ msgid "Bookmark saved!"
-#~ msgstr "Lesezeichen gespeichert!"
diff --git a/cookbook/locale/en/LC_MESSAGES/django.po b/cookbook/locale/en/LC_MESSAGES/django.po
index 984625e1..48414be4 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-04-11 15:09+0200\n"
+"POT-Creation-Date: 2021-06-12 20:30+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME /remote."
"php/webdav/
is added automatically)"
msgstr ""
-#: .\cookbook\forms.py:291
+#: .\cookbook\forms.py:307
msgid "Search String"
msgstr ""
-#: .\cookbook\forms.py:318
+#: .\cookbook\forms.py:334
msgid "File ID"
msgstr ""
-#: .\cookbook\forms.py:354
+#: .\cookbook\forms.py:370
msgid "You must provide at least a recipe or a title."
msgstr ""
-#: .\cookbook\forms.py:367
+#: .\cookbook\forms.py:383
msgid "You can list default users to share recipes with in the settings."
msgstr ""
-#: .\cookbook\forms.py:368
-#: .\cookbook\templates\forms\edit_internal_recipe.html:377
+#: .\cookbook\forms.py:384
+#: .\cookbook\templates\forms\edit_internal_recipe.html:404
msgid ""
"You can use markdown to format this field. See the docs here"
msgstr ""
-#: .\cookbook\forms.py:393
-msgid "A username is not required, if left blank the new user can choose one."
+#: .\cookbook\forms.py:409
+msgid "Maximum number of users for this space reached."
msgstr ""
-#: .\cookbook\helper\permission_helper.py:123
-#: .\cookbook\helper\permission_helper.py:129
-#: .\cookbook\helper\permission_helper.py:151
-#: .\cookbook\helper\permission_helper.py:196
-#: .\cookbook\helper\permission_helper.py:210
-#: .\cookbook\helper\permission_helper.py:221
-#: .\cookbook\helper\permission_helper.py:232 .\cookbook\views\data.py:30
-#: .\cookbook\views\views.py:112 .\cookbook\views\views.py:116
-#: .\cookbook\views\views.py:184
-msgid "You do not have the required permissions to view this page!"
+#: .\cookbook\forms.py:415
+msgid "Email address already taken!"
msgstr ""
-#: .\cookbook\helper\permission_helper.py:141
+#: .\cookbook\forms.py:423
+msgid ""
+"An email address is not required but if present the invite link will be send "
+"to the user."
+msgstr ""
+
+#: .\cookbook\forms.py:438
+msgid "Name already taken."
+msgstr ""
+
+#: .\cookbook\forms.py:449
+msgid "Accept Terms and Privacy"
+msgstr ""
+
+#: .\cookbook\helper\AllAuthCustomAdapter.py:30
+msgid ""
+"In order to prevent spam, the requested email was not send. Please wait a "
+"few minutes and try again."
+msgstr ""
+
+#: .\cookbook\helper\permission_helper.py:124
+#: .\cookbook\helper\permission_helper.py:144 .\cookbook\views\views.py:147
msgid "You are not logged in and therefore cannot view this page!"
msgstr ""
-#: .\cookbook\helper\permission_helper.py:145
-#: .\cookbook\helper\permission_helper.py:167
-#: .\cookbook\helper\permission_helper.py:182
+#: .\cookbook\helper\permission_helper.py:127
+#: .\cookbook\helper\permission_helper.py:132
+#: .\cookbook\helper\permission_helper.py:154
+#: .\cookbook\helper\permission_helper.py:199
+#: .\cookbook\helper\permission_helper.py:213
+#: .\cookbook\helper\permission_helper.py:224
+#: .\cookbook\helper\permission_helper.py:235 .\cookbook\views\data.py:39
+#: .\cookbook\views\views.py:158 .\cookbook\views\views.py:165
+#: .\cookbook\views\views.py:253
+msgid "You do not have the required permissions to view this page!"
+msgstr ""
+
+#: .\cookbook\helper\permission_helper.py:148
+#: .\cookbook\helper\permission_helper.py:170
+#: .\cookbook\helper\permission_helper.py:185
msgid "You cannot interact with this object as it is not owned by you!"
msgstr ""
-#: .\cookbook\helper\recipe_url_import.py:40 .\cookbook\views\api.py:549
-msgid "The requested site provided malformed data and cannot be read."
-msgstr ""
-
-#: .\cookbook\helper\recipe_url_import.py:54
-msgid ""
-"The requested site does not provide any recognized data format to import the "
-"recipe from."
-msgstr ""
-
-#: .\cookbook\helper\recipe_url_import.py:160
-msgid "Imported from"
-msgstr ""
-
#: .\cookbook\helper\template_helper.py:60
#: .\cookbook\helper\template_helper.py:62
msgid "Could not parse template code."
@@ -237,42 +252,53 @@ msgstr ""
#: .\cookbook\templates\import.html:14 .\cookbook\templates\import.html:20
#: .\cookbook\templates\import_response.html:7
#: .\cookbook\templates\test.html:14 .\cookbook\templates\test.html:20
-#: .\cookbook\templates\url_import.html:233 .\cookbook\views\delete.py:60
-#: .\cookbook\views\edit.py:190
+#: .\cookbook\templates\url_import.html:27
+#: .\cookbook\templates\url_import.html:101
+#: .\cookbook\templates\url_import.html:123
+#: .\cookbook\templates\url_import.html:317
+#: .\cookbook\templates\url_import.html:604 .\cookbook\views\delete.py:60
+#: .\cookbook\views\edit.py:199
msgid "Import"
msgstr ""
-#: .\cookbook\integration\integration.py:131
+#: .\cookbook\integration\integration.py:162
msgid ""
"Importer expected a .zip file. Did you choose the correct importer type for "
"your data ?"
msgstr ""
-#: .\cookbook\integration\integration.py:134
+#: .\cookbook\integration\integration.py:165
+msgid ""
+"An unexpected error occurred during the import. Please make sure you have "
+"uploaded a valid file."
+msgstr ""
+
+#: .\cookbook\integration\integration.py:169
msgid "The following recipes were ignored because they already existed:"
msgstr ""
-#: .\cookbook\integration\integration.py:137
+#: .\cookbook\integration\integration.py:173
#, python-format
msgid "Imported %s recipes."
msgstr ""
-#: .\cookbook\integration\paprika.py:44
+#: .\cookbook\integration\paprika.py:46
msgid "Notes"
msgstr ""
-#: .\cookbook\integration\paprika.py:47
+#: .\cookbook\integration\paprika.py:49
msgid "Nutritional Information"
msgstr ""
-#: .\cookbook\integration\paprika.py:50
+#: .\cookbook\integration\paprika.py:53
msgid "Source"
msgstr ""
#: .\cookbook\integration\safron.py:23
-#: .\cookbook\templates\forms\edit_internal_recipe.html:75
+#: .\cookbook\templates\forms\edit_internal_recipe.html:79
#: .\cookbook\templates\include\log_cooking.html:16
-#: .\cookbook\templates\url_import.html:84
+#: .\cookbook\templates\url_import.html:224
+#: .\cookbook\templates\url_import.html:455
msgid "Servings"
msgstr ""
@@ -281,11 +307,11 @@ msgid "Waiting time"
msgstr ""
#: .\cookbook\integration\safron.py:27
-#: .\cookbook\templates\forms\edit_internal_recipe.html:69
+#: .\cookbook\templates\forms\edit_internal_recipe.html:73
msgid "Preparation Time"
msgstr ""
-#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:71
+#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:78
#: .\cookbook\templates\forms\ingredients.html:7
#: .\cookbook\templates\index.html:7
msgid "Cookbook"
@@ -311,44 +337,72 @@ msgstr ""
msgid "Other"
msgstr ""
-#: .\cookbook\models.py:110 .\cookbook\templates\shopping_list.html:48
+#: .\cookbook\models.py:71
+msgid ""
+"Maximum file storage for space in MB. 0 for unlimited, -1 to disable file "
+"upload."
+msgstr ""
+
+#: .\cookbook\models.py:121 .\cookbook\templates\search.html:7
+#: .\cookbook\templates\shopping_list.html:52
msgid "Search"
msgstr ""
-#: .\cookbook\models.py:111 .\cookbook\templates\base.html:85
+#: .\cookbook\models.py:122 .\cookbook\templates\base.html:92
#: .\cookbook\templates\meal_plan.html:5 .\cookbook\views\delete.py:152
-#: .\cookbook\views\edit.py:224 .\cookbook\views\new.py:188
+#: .\cookbook\views\edit.py:233 .\cookbook\views\new.py:201
msgid "Meal-Plan"
msgstr ""
-#: .\cookbook\models.py:112 .\cookbook\templates\base.html:82
+#: .\cookbook\models.py:123 .\cookbook\templates\base.html:89
msgid "Books"
msgstr ""
-#: .\cookbook\models.py:119
+#: .\cookbook\models.py:131
msgid "Small"
msgstr ""
-#: .\cookbook\models.py:119
+#: .\cookbook\models.py:131
msgid "Large"
msgstr ""
-#: .\cookbook\models.py:327
-#: .\cookbook\templates\forms\edit_internal_recipe.html:198
+#: .\cookbook\models.py:131 .\cookbook\templates\generic\new_template.html:6
+#: .\cookbook\templates\generic\new_template.html:14
+#: .\cookbook\templates\meal_plan.html:323
+msgid "New"
+msgstr ""
+
+#: .\cookbook\models.py:340
+#: .\cookbook\templates\forms\edit_internal_recipe.html:202
msgid "Text"
msgstr ""
-#: .\cookbook\models.py:327
-#: .\cookbook\templates\forms\edit_internal_recipe.html:199
+#: .\cookbook\models.py:340
+#: .\cookbook\templates\forms\edit_internal_recipe.html:203
msgid "Time"
msgstr ""
+#: .\cookbook\models.py:340
+#: .\cookbook\templates\forms\edit_internal_recipe.html:204
+#: .\cookbook\templates\forms\edit_internal_recipe.html:218
+msgid "File"
+msgstr ""
+
+#: .\cookbook\serializer.py:109
+msgid "File uploads are not enabled for this Space."
+msgstr ""
+
+#: .\cookbook\serializer.py:117
+msgid "You have reached your file upload limit."
+msgstr ""
+
#: .\cookbook\tables.py:35 .\cookbook\templates\books.html:36
#: .\cookbook\templates\generic\edit_template.html:6
#: .\cookbook\templates\generic\edit_template.html:14
#: .\cookbook\templates\meal_plan.html:281
#: .\cookbook\templates\recipes_table.html:82
#: .\cookbook\templates\shopping_list.html:33
+#: .\cookbook\templates\space.html:84
msgid "Edit"
msgstr ""
@@ -362,10 +416,6 @@ msgstr ""
msgid "Delete"
msgstr ""
-#: .\cookbook\tables.py:144
-msgid "Link"
-msgstr ""
-
#: .\cookbook\templates\404.html:5
msgid "404 Error"
msgstr ""
@@ -382,21 +432,120 @@ msgstr ""
msgid "Report a Bug"
msgstr ""
-#: .\cookbook\templates\account\login.html:7
-#: .\cookbook\templates\base.html:170
+#: .\cookbook\templates\account\email.html:6
+#: .\cookbook\templates\account\email.html:9
+msgid "E-mail Addresses"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:11
+msgid "The following e-mail addresses are associated with your account:"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:28
+msgid "Verified"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:30
+msgid "Unverified"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:32
+msgid "Primary"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:39
+msgid "Make Primary"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:41
+msgid "Re-send Verification"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:42
+#: .\cookbook\templates\socialaccount\connections.html:36
+msgid "Remove"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:50
+msgid "Warning:"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:50
+msgid ""
+"You currently do not have any e-mail address set up. You should really add "
+"an e-mail address so you can receive notifications, reset your password, etc."
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:56
+msgid "Add E-mail Address"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:61
+msgid "Add E-mail"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:71
+msgid "Do you really want to remove the selected e-mail address?"
+msgstr ""
+
+#: .\cookbook\templates\account\email_confirm.html:6
+#: .\cookbook\templates\account\email_confirm.html:10
+msgid "Confirm E-mail Address"
+msgstr ""
+
+#: .\cookbook\templates\account\email_confirm.html:16
+#, python-format
+msgid ""
+"Please confirm that\n"
+" %(email)s is an e-mail address "
+"for user %(user_display)s\n"
+" ."
+msgstr ""
+
+#: .\cookbook\templates\account\email_confirm.html:22
+#: .\cookbook\templates\generic\delete_template.html:21
+msgid "Confirm"
+msgstr ""
+
+#: .\cookbook\templates\account\email_confirm.html:29
+#, python-format
+msgid ""
+"This e-mail confirmation link expired or is invalid. Please\n"
+" issue a new e-mail confirmation "
+"request."
+msgstr ""
+
+#: .\cookbook\templates\account\login.html:8
+#: .\cookbook\templates\base.html:180
msgid "Login"
msgstr ""
-#: .\cookbook\templates\account\login.html:13
-#: .\cookbook\templates\account\login.html:28
+#: .\cookbook\templates\account\login.html:15
+#: .\cookbook\templates\account\login.html:31
+#: .\cookbook\templates\account\signup.html:69
+#: .\cookbook\templates\account\signup_closed.html:15
msgid "Sign In"
msgstr ""
-#: .\cookbook\templates\account\login.html:38
+#: .\cookbook\templates\account\login.html:32
+msgid "Sign Up"
+msgstr ""
+
+#: .\cookbook\templates\account\login.html:36
+#: .\cookbook\templates\account\login.html:37
+#: .\cookbook\templates\account\password_reset.html:29
+msgid "Reset My Password"
+msgstr ""
+
+#: .\cookbook\templates\account\login.html:37
+msgid "Lost your password?"
+msgstr ""
+
+#: .\cookbook\templates\account\login.html:48
msgid "Social Login"
msgstr ""
-#: .\cookbook\templates\account\login.html:39
+#: .\cookbook\templates\account\login.html:49
msgid "You can use any of the following providers to sign in."
msgstr ""
@@ -410,115 +559,161 @@ msgstr ""
msgid "Are you sure you want to sign out?"
msgstr ""
-#: .\cookbook\templates\account\password_reset.html:5
-#: .\cookbook\templates\account\password_reset_done.html:5
+#: .\cookbook\templates\account\password_reset.html:7
+#: .\cookbook\templates\account\password_reset.html:13
+#: .\cookbook\templates\account\password_reset_done.html:7
+#: .\cookbook\templates\account\password_reset_done.html:10
msgid "Password Reset"
msgstr ""
-#: .\cookbook\templates\account\password_reset.html:9
-#: .\cookbook\templates\account\password_reset_done.html:9
-msgid "Password reset is not implemented for the time being!"
+#: .\cookbook\templates\account\password_reset.html:24
+msgid ""
+"Forgotten your password? Enter your e-mail address below, and we'll send you "
+"an e-mail allowing you to reset it."
msgstr ""
-#: .\cookbook\templates\account\signup.html:5
+#: .\cookbook\templates\account\password_reset.html:32
+msgid "Password reset is disabled on this instance."
+msgstr ""
+
+#: .\cookbook\templates\account\password_reset_done.html:16
+msgid ""
+"We have sent you an e-mail. Please contact us if you do not receive it "
+"within a few minutes."
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:6
msgid "Register"
msgstr ""
-#: .\cookbook\templates\account\signup.html:9
-msgid "Create your Account"
+#: .\cookbook\templates\account\signup.html:12
+msgid "Create an Account"
msgstr ""
-#: .\cookbook\templates\account\signup.html:14
+#: .\cookbook\templates\account\signup.html:42
+msgid "I accept the follwoing"
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:45
+msgid "Terms and Conditions"
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:48
+msgid "and"
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:52
+msgid "Privacy Policy"
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:65
msgid "Create User"
msgstr ""
-#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:160
+#: .\cookbook\templates\account\signup.html:69
+msgid "Already have an account?"
+msgstr ""
+
+#: .\cookbook\templates\account\signup_closed.html:5
+#: .\cookbook\templates\account\signup_closed.html:11
+msgid "Sign Up Closed"
+msgstr ""
+
+#: .\cookbook\templates\account\signup_closed.html:13
+msgid "We are sorry, but the sign up is currently closed."
+msgstr ""
+
+#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:170
#: .\cookbook\templates\rest_framework\api.html:11
msgid "API Documentation"
msgstr ""
-#: .\cookbook\templates\base.html:78
+#: .\cookbook\templates\base.html:85
msgid "Utensils"
msgstr ""
-#: .\cookbook\templates\base.html:88
+#: .\cookbook\templates\base.html:95
msgid "Shopping"
msgstr ""
-#: .\cookbook\templates\base.html:102 .\cookbook\views\delete.py:84
-#: .\cookbook\views\edit.py:93 .\cookbook\views\lists.py:26
-#: .\cookbook\views\new.py:66
+#: .\cookbook\templates\base.html:109 .\cookbook\views\delete.py:84
+#: .\cookbook\views\edit.py:102 .\cookbook\views\lists.py:26
+#: .\cookbook\views\new.py:78
msgid "Keyword"
msgstr ""
-#: .\cookbook\templates\base.html:104
+#: .\cookbook\templates\base.html:111
msgid "Batch Edit"
msgstr ""
-#: .\cookbook\templates\base.html:109
+#: .\cookbook\templates\base.html:116
msgid "Storage Data"
msgstr ""
-#: .\cookbook\templates\base.html:113
+#: .\cookbook\templates\base.html:120
msgid "Storage Backends"
msgstr ""
-#: .\cookbook\templates\base.html:115
+#: .\cookbook\templates\base.html:122
msgid "Configure Sync"
msgstr ""
-#: .\cookbook\templates\base.html:117
+#: .\cookbook\templates\base.html:124
msgid "Discovered Recipes"
msgstr ""
-#: .\cookbook\templates\base.html:119
+#: .\cookbook\templates\base.html:126
msgid "Discovery Log"
msgstr ""
-#: .\cookbook\templates\base.html:121 .\cookbook\templates\stats.html:10
+#: .\cookbook\templates\base.html:128 .\cookbook\templates\stats.html:10
msgid "Statistics"
msgstr ""
-#: .\cookbook\templates\base.html:123
+#: .\cookbook\templates\base.html:130
msgid "Units & Ingredients"
msgstr ""
-#: .\cookbook\templates\base.html:125
+#: .\cookbook\templates\base.html:132 .\cookbook\templates\index.html:47
msgid "Import Recipe"
msgstr ""
-#: .\cookbook\templates\base.html:144 .\cookbook\templates\settings.html:6
+#: .\cookbook\templates\base.html:151 .\cookbook\templates\settings.html:6
#: .\cookbook\templates\settings.html:16
msgid "Settings"
msgstr ""
-#: .\cookbook\templates\base.html:146 .\cookbook\templates\history.html:6
+#: .\cookbook\templates\base.html:153 .\cookbook\templates\history.html:6
#: .\cookbook\templates\history.html:14
msgid "History"
msgstr ""
-#: .\cookbook\templates\base.html:150 .\cookbook\templates\system.html:13
+#: .\cookbook\templates\base.html:155 .\cookbook\templates\space.html:7
+msgid "Space Settings"
+msgstr ""
+
+#: .\cookbook\templates\base.html:160 .\cookbook\templates\system.html:13
msgid "System"
msgstr ""
-#: .\cookbook\templates\base.html:152
+#: .\cookbook\templates\base.html:162
msgid "Admin"
msgstr ""
-#: .\cookbook\templates\base.html:156
+#: .\cookbook\templates\base.html:166
msgid "Markdown Guide"
msgstr ""
-#: .\cookbook\templates\base.html:158
+#: .\cookbook\templates\base.html:168
msgid "GitHub"
msgstr ""
-#: .\cookbook\templates\base.html:162
+#: .\cookbook\templates\base.html:172
msgid "API Browser"
msgstr ""
-#: .\cookbook\templates\base.html:165
-msgid "Logout"
+#: .\cookbook\templates\base.html:175
+msgid "Log out"
msgstr ""
#: .\cookbook\templates\batch\edit.html:6
@@ -533,7 +728,7 @@ msgstr ""
msgid "Add the specified keywords to all recipes containing a word"
msgstr ""
-#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:76
+#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:85
msgid "Sync"
msgstr ""
@@ -560,7 +755,7 @@ msgstr ""
msgid "Importing Recipes"
msgstr ""
-#: .\cookbook\templates\batch\waiting.html:23
+#: .\cookbook\templates\batch\waiting.html:28
msgid ""
"This can take a few minutes, depending on the number of recipes in sync, "
"please wait."
@@ -597,26 +792,31 @@ msgid "Export Recipes"
msgstr ""
#: .\cookbook\templates\export.html:14 .\cookbook\templates\export.html:20
-#: .\cookbook\templates\shopping_list.html:347
+#: .\cookbook\templates\shopping_list.html:351
#: .\cookbook\templates\test2.html:14 .\cookbook\templates\test2.html:20
msgid "Export"
msgstr ""
+#: .\cookbook\templates\files.html:7
+msgid "Files"
+msgstr ""
+
#: .\cookbook\templates\forms\edit_import_recipe.html:5
#: .\cookbook\templates\forms\edit_import_recipe.html:9
msgid "Import new Recipe"
msgstr ""
#: .\cookbook\templates\forms\edit_import_recipe.html:14
-#: .\cookbook\templates\forms\edit_internal_recipe.html:389
-#: .\cookbook\templates\forms\edit_internal_recipe.html:421
+#: .\cookbook\templates\forms\edit_internal_recipe.html:416
+#: .\cookbook\templates\forms\edit_internal_recipe.html:448
#: .\cookbook\templates\generic\edit_template.html:23
#: .\cookbook\templates\generic\new_template.html:23
#: .\cookbook\templates\include\log_cooking.html:28
#: .\cookbook\templates\meal_plan.html:325
-#: .\cookbook\templates\settings.html:28 .\cookbook\templates\settings.html:35
-#: .\cookbook\templates\settings.html:58 .\cookbook\templates\settings.html:73
-#: .\cookbook\templates\shopping_list.html:349
+#: .\cookbook\templates\settings.html:44 .\cookbook\templates\settings.html:52
+#: .\cookbook\templates\settings.html:96
+#: .\cookbook\templates\settings.html:114
+#: .\cookbook\templates\shopping_list.html:353
msgid "Save"
msgstr ""
@@ -625,179 +825,186 @@ msgstr ""
msgid "Edit Recipe"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:52
+#: .\cookbook\templates\forms\edit_internal_recipe.html:56
+#: .\cookbook\templates\url_import.html:171
msgid "Description"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:72
+#: .\cookbook\templates\forms\edit_internal_recipe.html:76
msgid "Waiting Time"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:78
+#: .\cookbook\templates\forms\edit_internal_recipe.html:82
msgid "Servings Text"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:89
+#: .\cookbook\templates\forms\edit_internal_recipe.html:93
msgid "Select Keywords"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:90
-#: .\cookbook\templates\url_import.html:212
+#: .\cookbook\templates\forms\edit_internal_recipe.html:94
+#: .\cookbook\templates\url_import.html:583
msgid "Add Keyword"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:108
+#: .\cookbook\templates\forms\edit_internal_recipe.html:112
msgid "Nutrition"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:112
-#: .\cookbook\templates\forms\edit_internal_recipe.html:162
+#: .\cookbook\templates\forms\edit_internal_recipe.html:116
+#: .\cookbook\templates\forms\edit_internal_recipe.html:166
msgid "Delete Step"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:116
+#: .\cookbook\templates\forms\edit_internal_recipe.html:120
msgid "Calories"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:119
+#: .\cookbook\templates\forms\edit_internal_recipe.html:123
msgid "Carbohydrates"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:122
+#: .\cookbook\templates\forms\edit_internal_recipe.html:126
msgid "Fats"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:124
+#: .\cookbook\templates\forms\edit_internal_recipe.html:128
msgid "Proteins"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:146
-#: .\cookbook\templates\forms\edit_internal_recipe.html:454
+#: .\cookbook\templates\forms\edit_internal_recipe.html:150
+#: .\cookbook\templates\forms\edit_internal_recipe.html:481
msgid "Step"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:167
+#: .\cookbook\templates\forms\edit_internal_recipe.html:171
msgid "Show as header"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:173
+#: .\cookbook\templates\forms\edit_internal_recipe.html:177
msgid "Hide as header"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:178
+#: .\cookbook\templates\forms\edit_internal_recipe.html:182
msgid "Move Up"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:183
+#: .\cookbook\templates\forms\edit_internal_recipe.html:187
msgid "Move Down"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:192
+#: .\cookbook\templates\forms\edit_internal_recipe.html:196
msgid "Step Name"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:196
+#: .\cookbook\templates\forms\edit_internal_recipe.html:200
msgid "Step Type"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:207
+#: .\cookbook\templates\forms\edit_internal_recipe.html:212
msgid "Step time in Minutes"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:261
-#: .\cookbook\templates\shopping_list.html:183
-msgid "Select Unit"
+#: .\cookbook\templates\forms\edit_internal_recipe.html:228
+msgid "Select File"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:262
-#: .\cookbook\templates\forms\edit_internal_recipe.html:286
-#: .\cookbook\templates\shopping_list.html:184
-#: .\cookbook\templates\shopping_list.html:206
-msgid "Create"
-msgstr ""
-
-#: .\cookbook\templates\forms\edit_internal_recipe.html:263
-#: .\cookbook\templates\forms\edit_internal_recipe.html:287
-#: .\cookbook\templates\shopping_list.html:185
-#: .\cookbook\templates\shopping_list.html:207
-#: .\cookbook\templates\shopping_list.html:237
-#: .\cookbook\templates\shopping_list.html:261
-#: .\cookbook\templates\url_import.html:124
-#: .\cookbook\templates\url_import.html:156
+#: .\cookbook\templates\forms\edit_internal_recipe.html:229
+#: .\cookbook\templates\forms\edit_internal_recipe.html:290
+#: .\cookbook\templates\forms\edit_internal_recipe.html:314
+#: .\cookbook\templates\shopping_list.html:189
+#: .\cookbook\templates\shopping_list.html:211
+#: .\cookbook\templates\shopping_list.html:241
+#: .\cookbook\templates\shopping_list.html:265
+#: .\cookbook\templates\url_import.html:495
+#: .\cookbook\templates\url_import.html:527
msgid "Select"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:285
-#: .\cookbook\templates\shopping_list.html:205
+#: .\cookbook\templates\forms\edit_internal_recipe.html:288
+#: .\cookbook\templates\shopping_list.html:187
+msgid "Select Unit"
+msgstr ""
+
+#: .\cookbook\templates\forms\edit_internal_recipe.html:289
+#: .\cookbook\templates\forms\edit_internal_recipe.html:313
+#: .\cookbook\templates\shopping_list.html:188
+#: .\cookbook\templates\shopping_list.html:210
+msgid "Create"
+msgstr ""
+
+#: .\cookbook\templates\forms\edit_internal_recipe.html:312
+#: .\cookbook\templates\shopping_list.html:209
msgid "Select Food"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:302
+#: .\cookbook\templates\forms\edit_internal_recipe.html:329
#: .\cookbook\templates\meal_plan.html:256
-#: .\cookbook\templates\url_import.html:171
+#: .\cookbook\templates\url_import.html:542
msgid "Note"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:319
+#: .\cookbook\templates\forms\edit_internal_recipe.html:346
msgid "Delete Ingredient"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:325
+#: .\cookbook\templates\forms\edit_internal_recipe.html:352
msgid "Make Header"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:331
+#: .\cookbook\templates\forms\edit_internal_recipe.html:358
msgid "Make Ingredient"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:337
+#: .\cookbook\templates\forms\edit_internal_recipe.html:364
msgid "Disable Amount"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:343
+#: .\cookbook\templates\forms\edit_internal_recipe.html:370
msgid "Enable Amount"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:348
+#: .\cookbook\templates\forms\edit_internal_recipe.html:375
msgid "Copy Template Reference"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:374
-#: .\cookbook\templates\url_import.html:196
+#: .\cookbook\templates\forms\edit_internal_recipe.html:401
+#: .\cookbook\templates\url_import.html:297
+#: .\cookbook\templates\url_import.html:567
msgid "Instructions"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:387
-#: .\cookbook\templates\forms\edit_internal_recipe.html:418
+#: .\cookbook\templates\forms\edit_internal_recipe.html:414
+#: .\cookbook\templates\forms\edit_internal_recipe.html:445
msgid "Save & View"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:391
-#: .\cookbook\templates\forms\edit_internal_recipe.html:424
+#: .\cookbook\templates\forms\edit_internal_recipe.html:418
+#: .\cookbook\templates\forms\edit_internal_recipe.html:451
msgid "Add Step"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:394
-#: .\cookbook\templates\forms\edit_internal_recipe.html:428
+#: .\cookbook\templates\forms\edit_internal_recipe.html:421
+#: .\cookbook\templates\forms\edit_internal_recipe.html:455
msgid "Add Nutrition"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:396
-#: .\cookbook\templates\forms\edit_internal_recipe.html:430
+#: .\cookbook\templates\forms\edit_internal_recipe.html:423
+#: .\cookbook\templates\forms\edit_internal_recipe.html:457
msgid "Remove Nutrition"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:398
-#: .\cookbook\templates\forms\edit_internal_recipe.html:433
+#: .\cookbook\templates\forms\edit_internal_recipe.html:425
+#: .\cookbook\templates\forms\edit_internal_recipe.html:460
msgid "View Recipe"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:400
-#: .\cookbook\templates\forms\edit_internal_recipe.html:435
+#: .\cookbook\templates\forms\edit_internal_recipe.html:427
+#: .\cookbook\templates\forms\edit_internal_recipe.html:462
msgid "Delete Recipe"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:441
+#: .\cookbook\templates\forms\edit_internal_recipe.html:468
msgid "Steps"
msgstr ""
@@ -817,7 +1024,7 @@ msgid ""
msgstr ""
#: .\cookbook\templates\forms\ingredients.html:24
-#: .\cookbook\templates\stats.html:26
+#: .\cookbook\templates\space.html:35 .\cookbook\templates\stats.html:26
msgid "Units"
msgstr ""
@@ -839,10 +1046,6 @@ msgstr ""
msgid "Are you sure you want to delete the %(title)s: %(object)s "
msgstr ""
-#: .\cookbook\templates\generic\delete_template.html:21
-msgid "Confirm"
-msgstr ""
-
#: .\cookbook\templates\generic\edit_template.html:30
msgid "View"
msgstr ""
@@ -864,12 +1067,6 @@ msgstr ""
msgid "Import all"
msgstr ""
-#: .\cookbook\templates\generic\new_template.html:6
-#: .\cookbook\templates\generic\new_template.html:14
-#: .\cookbook\templates\meal_plan.html:323
-msgid "New"
-msgstr ""
-
#: .\cookbook\templates\generic\table_template.html:76
#: .\cookbook\templates\recipes_table.html:121
msgid "previous"
@@ -914,7 +1111,7 @@ msgstr ""
#: .\cookbook\templates\include\recipe_open_modal.html:7
#: .\cookbook\templates\meal_plan.html:247 .\cookbook\views\delete.py:28
-#: .\cookbook\views\edit.py:264 .\cookbook\views\new.py:40
+#: .\cookbook\views\edit.py:273 .\cookbook\views\new.py:52
msgid "Recipe"
msgstr ""
@@ -947,10 +1144,6 @@ msgstr ""
msgid "New Recipe"
msgstr ""
-#: .\cookbook\templates\index.html:47
-msgid "Website Import"
-msgstr ""
-
#: .\cookbook\templates\index.html:53
msgid "Advanced Search"
msgstr ""
@@ -964,7 +1157,7 @@ msgid "Last viewed"
msgstr ""
#: .\cookbook\templates\index.html:87 .\cookbook\templates\meal_plan.html:178
-#: .\cookbook\templates\stats.html:22
+#: .\cookbook\templates\space.html:29 .\cookbook\templates\stats.html:22
msgid "Recipes"
msgstr ""
@@ -1112,7 +1305,7 @@ msgid "New Entry"
msgstr ""
#: .\cookbook\templates\meal_plan.html:113
-#: .\cookbook\templates\shopping_list.html:52
+#: .\cookbook\templates\shopping_list.html:56
msgid "Search Recipe"
msgstr ""
@@ -1142,7 +1335,7 @@ msgstr ""
#: .\cookbook\templates\meal_plan.html:168
#: .\cookbook\templates\shopping_list.html:7
#: .\cookbook\templates\shopping_list.html:29
-#: .\cookbook\templates\shopping_list.html:705
+#: .\cookbook\templates\shopping_list.html:714
msgid "Shopping List"
msgstr ""
@@ -1192,7 +1385,7 @@ msgstr ""
#: .\cookbook\templates\meal_plan.html:270
#: .\cookbook\templates\meal_plan_entry.html:20
-#: .\cookbook\templates\shopping_list.html:250
+#: .\cookbook\templates\shopping_list.html:254
msgid "Shared with"
msgstr ""
@@ -1267,7 +1460,6 @@ msgstr ""
#: .\cookbook\templates\no_groups_info.html:18
#: .\cookbook\templates\no_perm_info.html:15
-#: .\cookbook\templates\no_space_info.html:15
msgid "Please contact your administrator."
msgstr ""
@@ -1282,13 +1474,48 @@ msgid ""
"action."
msgstr ""
-#: .\cookbook\templates\no_space_info.html:5
-#: .\cookbook\templates\no_space_info.html:12
+#: .\cookbook\templates\no_space_info.html:6
+#: .\cookbook\templates\no_space_info.html:13
msgid "No Space"
msgstr ""
-#: .\cookbook\templates\no_space_info.html:15
-msgid "You are not a member of any space."
+#: .\cookbook\templates\no_space_info.html:17
+msgid ""
+"Recipes, foods, shopping lists and more are organized in spaces of one or "
+"more people."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:18
+msgid ""
+"You can either be invited into an existing space or create your own one."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:31
+#: .\cookbook\templates\no_space_info.html:40
+msgid "Join Space"
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:34
+msgid "Join an existing space."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:35
+msgid ""
+"To join an existing space either enter your invite token or click on the "
+"invite link the space owner send you."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:48
+#: .\cookbook\templates\no_space_info.html:56
+msgid "Create Space"
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:51
+msgid "Create your own recipe space."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:52
+msgid "Start your own recipe space and invite other users to it."
msgstr ""
#: .\cookbook\templates\offline.html:6
@@ -1305,28 +1532,29 @@ msgid ""
"recently viewed them. Keep in mind that data might be outdated."
msgstr ""
-#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\stats.html:47
+#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\space.html:56
+#: .\cookbook\templates\stats.html:47
msgid "Comments"
msgstr ""
#: .\cookbook\templates\recipe_view.html:44 .\cookbook\views\delete.py:118
-#: .\cookbook\views\edit.py:170
+#: .\cookbook\views\edit.py:179
msgid "Comment"
msgstr ""
#: .\cookbook\templates\recipes_table.html:19
#: .\cookbook\templates\recipes_table.html:23
-#: .\cookbook\templates\url_import.html:69
+#: .\cookbook\templates\url_import.html:440
msgid "Recipe Image"
msgstr ""
#: .\cookbook\templates\recipes_table.html:51
-#: .\cookbook\templates\url_import.html:74
+#: .\cookbook\templates\url_import.html:445
msgid "Preparation time ca."
msgstr ""
#: .\cookbook\templates\recipes_table.html:57
-#: .\cookbook\templates\url_import.html:79
+#: .\cookbook\templates\url_import.html:450
msgid "Waiting time ca."
msgstr ""
@@ -1342,39 +1570,67 @@ msgstr ""
msgid "Recipe Home"
msgstr ""
-#: .\cookbook\templates\settings.html:22
+#: .\cookbook\templates\settings.html:23
msgid "Account"
msgstr ""
-#: .\cookbook\templates\settings.html:38
-msgid "Link social account"
+#: .\cookbook\templates\settings.html:27
+msgid "Preferences"
msgstr ""
-#: .\cookbook\templates\settings.html:42
+#: .\cookbook\templates\settings.html:31
+msgid "API-Settings"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:39
+msgid "Name Settings"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:47
+msgid "Password Settings"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:55
+msgid "Email Settings"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:57
+msgid "Manage Email Settings"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:61
+msgid "Social"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:63
+msgid "Manage Social Accounts"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:75
msgid "Language"
msgstr ""
-#: .\cookbook\templates\settings.html:67
+#: .\cookbook\templates\settings.html:105
msgid "Style"
msgstr ""
-#: .\cookbook\templates\settings.html:79
+#: .\cookbook\templates\settings.html:125
msgid "API Token"
msgstr ""
-#: .\cookbook\templates\settings.html:80
+#: .\cookbook\templates\settings.html:126
msgid ""
"You can use both basic authentication and token based authentication to "
"access the REST API."
msgstr ""
-#: .\cookbook\templates\settings.html:92
+#: .\cookbook\templates\settings.html:143
msgid ""
"Use the token as an Authorization header prefixed by the word token as shown "
"in the following examples:"
msgstr ""
-#: .\cookbook\templates\settings.html:94
+#: .\cookbook\templates\settings.html:145
msgid "or"
msgstr ""
@@ -1395,58 +1651,55 @@ msgstr ""
msgid "Create Superuser account"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:75
+#: .\cookbook\templates\shopping_list.html:79
msgid "Shopping Recipes"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:79
+#: .\cookbook\templates\shopping_list.html:83
msgid "No recipes selected"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:146
+#: .\cookbook\templates\shopping_list.html:150
msgid "Entry Mode"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:154
+#: .\cookbook\templates\shopping_list.html:158
msgid "Add Entry"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:170
+#: .\cookbook\templates\shopping_list.html:174
msgid "Amount"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:226
+#: .\cookbook\templates\shopping_list.html:230
+#: .\cookbook\templates\supermarket.html:7
msgid "Supermarket"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:236
+#: .\cookbook\templates\shopping_list.html:240
msgid "Select Supermarket"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:260
+#: .\cookbook\templates\shopping_list.html:264
msgid "Select User"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:279
+#: .\cookbook\templates\shopping_list.html:283
msgid "Finished"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:292
+#: .\cookbook\templates\shopping_list.html:296
msgid "You are offline, shopping list might not syncronize."
msgstr ""
-#: .\cookbook\templates\shopping_list.html:357
+#: .\cookbook\templates\shopping_list.html:361
msgid "Copy/Export"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:361
+#: .\cookbook\templates\shopping_list.html:365
msgid "List Prefix"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:708
-msgid "There was an error creating a resource!"
-msgstr ""
-
#: .\cookbook\templates\socialaccount\connections.html:4
#: .\cookbook\templates\socialaccount\connections.html:7
msgid "Account Connections"
@@ -1458,10 +1711,6 @@ msgid ""
" accounts:"
msgstr ""
-#: .\cookbook\templates\socialaccount\connections.html:36
-msgid "Remove"
-msgstr ""
-
#: .\cookbook\templates\socialaccount\connections.html:44
msgid ""
"You currently have no social network accounts connected to this account."
@@ -1471,38 +1720,87 @@ msgstr ""
msgid "Add a 3rd Party Account"
msgstr ""
-#: .\cookbook\templates\stats.html:4
-msgid "Stats"
+#: .\cookbook\templates\space.html:18
+msgid "Manage Subscription"
msgstr ""
-#: .\cookbook\templates\stats.html:19
+#: .\cookbook\templates\space.html:26 .\cookbook\templates\stats.html:19
msgid "Number of objects"
msgstr ""
-#: .\cookbook\templates\stats.html:30
+#: .\cookbook\templates\space.html:39 .\cookbook\templates\stats.html:30
msgid "Recipe Imports"
msgstr ""
-#: .\cookbook\templates\stats.html:38
+#: .\cookbook\templates\space.html:47 .\cookbook\templates\stats.html:38
msgid "Objects stats"
msgstr ""
-#: .\cookbook\templates\stats.html:41
+#: .\cookbook\templates\space.html:50 .\cookbook\templates\stats.html:41
msgid "Recipes without Keywords"
msgstr ""
-#: .\cookbook\templates\stats.html:43
+#: .\cookbook\templates\space.html:52 .\cookbook\templates\stats.html:43
msgid "External Recipes"
msgstr ""
-#: .\cookbook\templates\stats.html:45
+#: .\cookbook\templates\space.html:54 .\cookbook\templates\stats.html:45
msgid "Internal Recipes"
msgstr ""
-#: .\cookbook\templates\system.html:21 .\cookbook\views\lists.py:115
+#: .\cookbook\templates\space.html:67
+msgid "Members"
+msgstr ""
+
+#: .\cookbook\templates\space.html:71
+msgid "Invite User"
+msgstr ""
+
+#: .\cookbook\templates\space.html:82
+msgid "User"
+msgstr ""
+
+#: .\cookbook\templates\space.html:83
+msgid "Groups"
+msgstr ""
+
+#: .\cookbook\templates\space.html:99
+msgid "admin"
+msgstr ""
+
+#: .\cookbook\templates\space.html:100
+msgid "user"
+msgstr ""
+
+#: .\cookbook\templates\space.html:101
+msgid "guest"
+msgstr ""
+
+#: .\cookbook\templates\space.html:102
+msgid "remove"
+msgstr ""
+
+#: .\cookbook\templates\space.html:106
+msgid "Update"
+msgstr ""
+
+#: .\cookbook\templates\space.html:110
+msgid "You cannot edit yourself."
+msgstr ""
+
+#: .\cookbook\templates\space.html:117
+msgid "There are no members in your space yet!"
+msgstr ""
+
+#: .\cookbook\templates\space.html:124 .\cookbook\templates\system.html:21
+#: .\cookbook\views\lists.py:115
msgid "Invite Links"
msgstr ""
+#: .\cookbook\templates\stats.html:4
+msgid "Stats"
+msgstr ""
+
#: .\cookbook\templates\system.html:22
msgid "Show Links"
msgstr ""
@@ -1600,45 +1898,141 @@ msgid ""
" "
msgstr ""
-#: .\cookbook\templates\url_import.html:5
+#: .\cookbook\templates\url_import.html:6
msgid "URL Import"
msgstr ""
-#: .\cookbook\templates\url_import.html:23
+#: .\cookbook\templates\url_import.html:31
+msgid "Drag me to your bookmarks to import recipes from anywhere"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:32
+msgid "Bookmark Me!"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:61
msgid "Enter website URL"
msgstr ""
-#: .\cookbook\templates\url_import.html:36
-msgid "Enter json directly"
+#: .\cookbook\templates\url_import.html:97
+msgid "Select recipe files to import or drop them here..."
msgstr ""
-#: .\cookbook\templates\url_import.html:57
+#: .\cookbook\templates\url_import.html:118
+msgid "Paste json or html source here to load recipe."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:146
+msgid "Preview Recipe Data"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:147
+msgid "Drag recipe attributes from the right into the appropriate box below."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:156
+#: .\cookbook\templates\url_import.html:173
+#: .\cookbook\templates\url_import.html:190
+#: .\cookbook\templates\url_import.html:209
+#: .\cookbook\templates\url_import.html:227
+#: .\cookbook\templates\url_import.html:242
+#: .\cookbook\templates\url_import.html:257
+#: .\cookbook\templates\url_import.html:273
+#: .\cookbook\templates\url_import.html:300
+#: .\cookbook\templates\url_import.html:351
+msgid "Clear Contents"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:158
+msgid "Text dragged here will be appended to the name."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:175
+msgid "Text dragged here will be appended to the description."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:192
+msgid "Keywords dragged here will be appended to current list"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:207
+msgid "Image"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:239
+msgid "Prep Time"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:254
+msgid "Cook Time"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:275
+msgid "Ingredients dragged here will be appended to current list."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:302
+msgid ""
+"Recipe instructions dragged here will be appended to current instructions."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:325
+msgid "Discovered Attributes"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:327
+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:344
+msgid "Show Blank Field"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:349
+msgid "Blank Field"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:353
+msgid "Items dragged to Blank Field will be appended."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:400
+msgid "Delete Text"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:413
+msgid "Delete image"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:429
msgid "Recipe Name"
msgstr ""
-#: .\cookbook\templates\url_import.html:62
+#: .\cookbook\templates\url_import.html:433
msgid "Recipe Description"
msgstr ""
-#: .\cookbook\templates\url_import.html:123
-#: .\cookbook\templates\url_import.html:155
-#: .\cookbook\templates\url_import.html:211
+#: .\cookbook\templates\url_import.html:494
+#: .\cookbook\templates\url_import.html:526
+#: .\cookbook\templates\url_import.html:582
msgid "Select one"
msgstr ""
-#: .\cookbook\templates\url_import.html:225
+#: .\cookbook\templates\url_import.html:596
msgid "All Keywords"
msgstr ""
-#: .\cookbook\templates\url_import.html:228
+#: .\cookbook\templates\url_import.html:599
msgid "Import all keywords, not only the ones already existing."
msgstr ""
-#: .\cookbook\templates\url_import.html:255
+#: .\cookbook\templates\url_import.html:626
msgid "Information"
msgstr ""
-#: .\cookbook\templates\url_import.html:257
+#: .\cookbook\templates\url_import.html:628
msgid ""
" Only websites containing ld+json or microdata information can currently\n"
" be imported. Most big recipe pages "
@@ -1649,48 +2043,73 @@ msgid ""
" github issues."
msgstr ""
-#: .\cookbook\templates\url_import.html:265
+#: .\cookbook\templates\url_import.html:636
msgid "Google ld+json Info"
msgstr ""
-#: .\cookbook\templates\url_import.html:268
+#: .\cookbook\templates\url_import.html:639
msgid "GitHub Issues"
msgstr ""
-#: .\cookbook\templates\url_import.html:270
+#: .\cookbook\templates\url_import.html:641
msgid "Recipe Markup Specification"
msgstr ""
-#: .\cookbook\views\api.py:71
+#: .\cookbook\views\api.py:77
msgid "Parameter updated_at incorrectly formatted"
msgstr ""
-#: .\cookbook\views\api.py:455 .\cookbook\views\views.py:226
+#: .\cookbook\views\api.py:553 .\cookbook\views\views.py:295
msgid "This feature is not available in the demo version!"
msgstr ""
-#: .\cookbook\views\api.py:478
+#: .\cookbook\views\api.py:576
msgid "Sync successful!"
msgstr ""
-#: .\cookbook\views\api.py:483
+#: .\cookbook\views\api.py:581
msgid "Error synchronizing with Storage"
msgstr ""
-#: .\cookbook\views\api.py:556 .\cookbook\views\api.py:576
+#: .\cookbook\views\api.py:649
+msgid "Nothing to do."
+msgstr ""
+
+#: .\cookbook\views\api.py:664
+msgid "The requested site provided malformed data and cannot be read."
+msgstr ""
+
+#: .\cookbook\views\api.py:671
msgid "The requested page could not be found."
msgstr ""
-#: .\cookbook\views\api.py:585
+#: .\cookbook\views\api.py:680
msgid ""
-"The requested page refused to provide any information (Status Code 403)."
+"The requested site does not provide any recognized data format to import the "
+"recipe from."
msgstr ""
-#: .\cookbook\views\api.py:611
-msgid "Could not parse correctly..."
+#: .\cookbook\views\api.py:694
+msgid "No useable data could be found."
msgstr ""
-#: .\cookbook\views\data.py:94
+#: .\cookbook\views\api.py:710
+msgid "I couldn't find anything to do."
+msgstr ""
+
+#: .\cookbook\views\data.py:30 .\cookbook\views\data.py:121
+#: .\cookbook\views\edit.py:50 .\cookbook\views\import_export.py:67
+#: .\cookbook\views\new.py:32
+msgid "You have reached the maximum number of recipes for your space."
+msgstr ""
+
+#: .\cookbook\views\data.py:34 .\cookbook\views\data.py:125
+#: .\cookbook\views\edit.py:54 .\cookbook\views\import_export.py:71
+#: .\cookbook\views\new.py:36
+msgid "You have more users than allowed in your space."
+msgstr ""
+
+#: .\cookbook\views\data.py:103
#, python-format
msgid "Batch edit done. %(count)d recipe was updated."
msgid_plural "Batch edit done. %(count)d Recipes where updated."
@@ -1702,7 +2121,7 @@ msgid "Monitor"
msgstr ""
#: .\cookbook\views\delete.py:96 .\cookbook\views\lists.py:102
-#: .\cookbook\views\new.py:86
+#: .\cookbook\views\new.py:98
msgid "Storage Backend"
msgstr ""
@@ -1711,8 +2130,8 @@ msgid ""
"Could not delete this storage backend as it is used in at least one monitor."
msgstr ""
-#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:204
-#: .\cookbook\views\new.py:144
+#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:213
+#: .\cookbook\views\new.py:156
msgid "Recipe Book"
msgstr ""
@@ -1720,55 +2139,55 @@ msgstr ""
msgid "Bookmarks"
msgstr ""
-#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:214
+#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:252
msgid "Invite Link"
msgstr ""
-#: .\cookbook\views\edit.py:110
+#: .\cookbook\views\edit.py:119
msgid "Food"
msgstr ""
-#: .\cookbook\views\edit.py:119
+#: .\cookbook\views\edit.py:128
msgid "You cannot edit this storage!"
msgstr ""
-#: .\cookbook\views\edit.py:139
+#: .\cookbook\views\edit.py:148
msgid "Storage saved!"
msgstr ""
-#: .\cookbook\views\edit.py:145
+#: .\cookbook\views\edit.py:154
msgid "There was an error updating this storage backend!"
msgstr ""
-#: .\cookbook\views\edit.py:156
+#: .\cookbook\views\edit.py:165
msgid "Storage"
msgstr ""
-#: .\cookbook\views\edit.py:252
+#: .\cookbook\views\edit.py:261
msgid "Changes saved!"
msgstr ""
-#: .\cookbook\views\edit.py:256
+#: .\cookbook\views\edit.py:265
msgid "Error saving changes!"
msgstr ""
-#: .\cookbook\views\edit.py:289
+#: .\cookbook\views\edit.py:299
msgid "Units merged!"
msgstr ""
-#: .\cookbook\views\edit.py:291 .\cookbook\views\edit.py:307
+#: .\cookbook\views\edit.py:301 .\cookbook\views\edit.py:317
msgid "Cannot merge with the same object!"
msgstr ""
-#: .\cookbook\views\edit.py:305
+#: .\cookbook\views\edit.py:315
msgid "Foods merged!"
msgstr ""
-#: .\cookbook\views\import_export.py:73
+#: .\cookbook\views\import_export.py:93
msgid "Importing is not implemented for this provider"
msgstr ""
-#: .\cookbook\views\import_export.py:92
+#: .\cookbook\views\import_export.py:115
msgid "Exporting is not implemented for this provider"
msgstr ""
@@ -1784,41 +2203,103 @@ msgstr ""
msgid "Shopping Lists"
msgstr ""
-#: .\cookbook\views\new.py:111
+#: .\cookbook\views\new.py:123
msgid "Imported new recipe!"
msgstr ""
-#: .\cookbook\views\new.py:114
+#: .\cookbook\views\new.py:126
msgid "There was an error importing this recipe!"
msgstr ""
-#: .\cookbook\views\views.py:123
+#: .\cookbook\views\new.py:226
+msgid "Hello"
+msgstr ""
+
+#: .\cookbook\views\new.py:226
+msgid "You have been invited by "
+msgstr ""
+
+#: .\cookbook\views\new.py:227
+msgid " to join their Tandoor Recipes space "
+msgstr ""
+
+#: .\cookbook\views\new.py:228
+msgid "Click the following link to activate your account: "
+msgstr ""
+
+#: .\cookbook\views\new.py:229
+msgid ""
+"If the link does not work use the following code to manually join the space: "
+msgstr ""
+
+#: .\cookbook\views\new.py:230
+msgid "The invitation is valid until "
+msgstr ""
+
+#: .\cookbook\views\new.py:231
+msgid ""
+"Tandoor Recipes is an Open Source recipe manager. Check it out on GitHub "
+msgstr ""
+
+#: .\cookbook\views\new.py:234
+msgid "Tandoor Recipes Invite"
+msgstr ""
+
+#: .\cookbook\views\new.py:241
+msgid "Invite link successfully send to user."
+msgstr ""
+
+#: .\cookbook\views\new.py:244
+msgid ""
+"You have send to many emails, please share the link manually or wait a few "
+"hours."
+msgstr ""
+
+#: .\cookbook\views\new.py:246
+msgid "Email to user could not be send, please share link manually."
+msgstr ""
+
+#: .\cookbook\views\views.py:125
+msgid ""
+"You have successfully created your own recipe space. Start by adding some "
+"recipes or invite other people to join you."
+msgstr ""
+
+#: .\cookbook\views\views.py:173
msgid "You do not have the required permissions to perform this action!"
msgstr ""
-#: .\cookbook\views\views.py:134
+#: .\cookbook\views\views.py:184
msgid "Comment saved!"
msgstr ""
-#: .\cookbook\views\views.py:326
+#: .\cookbook\views\views.py:396
msgid ""
"The setup page can only be used to create the first user! If you have "
"forgotten your superuser credentials please consult the django documentation "
"on how to reset passwords."
msgstr ""
-#: .\cookbook\views\views.py:333 .\cookbook\views\views.py:378
+#: .\cookbook\views\views.py:403
msgid "Passwords dont match!"
msgstr ""
-#: .\cookbook\views\views.py:349 .\cookbook\views\views.py:385
+#: .\cookbook\views\views.py:419
msgid "User has been created, please login!"
msgstr ""
-#: .\cookbook\views\views.py:365
+#: .\cookbook\views\views.py:435
msgid "Malformed Invite Link supplied!"
msgstr ""
-#: .\cookbook\views\views.py:405
+#: .\cookbook\views\views.py:441
+msgid "You are already member of a space and therefore cannot join this one."
+msgstr ""
+
+#: .\cookbook\views\views.py:452
+msgid "Successfully joined space."
+msgstr ""
+
+#: .\cookbook\views\views.py:458
msgid "Invite Link not valid or already used!"
msgstr ""
diff --git a/cookbook/locale/es/LC_MESSAGES/django.po b/cookbook/locale/es/LC_MESSAGES/django.po
index 0e3be296..d0744710 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-04-11 15:09+0200\n"
+"POT-Creation-Date: 2021-06-12 20:30+0200\n"
"PO-Revision-Date: 2020-06-02 19:28+0000\n"
"Last-Translator: Miguel Canteras /remote."
"php/webdav/
is added automatically)"
@@ -197,26 +201,26 @@ 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:291
+#: .\cookbook\forms.py:307
msgid "Search String"
msgstr "Cadena de búsqueda"
-#: .\cookbook\forms.py:318
+#: .\cookbook\forms.py:334
msgid "File ID"
msgstr "ID de Fichero"
-#: .\cookbook\forms.py:354
+#: .\cookbook\forms.py:370
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:367
+#: .\cookbook\forms.py:383
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:368
-#: .\cookbook\templates\forms\edit_internal_recipe.html:377
+#: .\cookbook\forms.py:384
+#: .\cookbook\templates\forms\edit_internal_recipe.html:404
msgid ""
"You can use markdown to format this field. See the docs here"
@@ -224,52 +228,57 @@ msgstr ""
"Puede utilizar Markdown para formatear este campo. Vea la documentación aqui"
-#: .\cookbook\forms.py:393
-msgid "A username is not required, if left blank the new user can choose one."
+#: .\cookbook\forms.py:409
+msgid "Maximum number of users for this space reached."
msgstr ""
-"No se requiere un nombre de usuario, si se deja en blanco, el nuevo usuario "
-"puede elegir uno."
-#: .\cookbook\helper\permission_helper.py:123
-#: .\cookbook\helper\permission_helper.py:129
-#: .\cookbook\helper\permission_helper.py:151
-#: .\cookbook\helper\permission_helper.py:196
-#: .\cookbook\helper\permission_helper.py:210
-#: .\cookbook\helper\permission_helper.py:221
-#: .\cookbook\helper\permission_helper.py:232 .\cookbook\views\data.py:30
-#: .\cookbook\views\views.py:112 .\cookbook\views\views.py:116
-#: .\cookbook\views\views.py:184
-msgid "You do not have the required permissions to view this page!"
-msgstr "¡No tienes los permisos necesarios para ver esta página!"
+#: .\cookbook\forms.py:415
+msgid "Email address already taken!"
+msgstr ""
-#: .\cookbook\helper\permission_helper.py:141
+#: .\cookbook\forms.py:423
+msgid ""
+"An email address is not required but if present the invite link will be send "
+"to the user."
+msgstr ""
+
+#: .\cookbook\forms.py:438
+msgid "Name already taken."
+msgstr ""
+
+#: .\cookbook\forms.py:449
+msgid "Accept Terms and Privacy"
+msgstr ""
+
+#: .\cookbook\helper\AllAuthCustomAdapter.py:30
+msgid ""
+"In order to prevent spam, the requested email was not send. Please wait a "
+"few minutes and try again."
+msgstr ""
+
+#: .\cookbook\helper\permission_helper.py:124
+#: .\cookbook\helper\permission_helper.py:144 .\cookbook\views\views.py:147
msgid "You are not logged in and therefore cannot view this page!"
msgstr "¡No ha iniciado sesión y por lo tanto no puede ver esta página!"
-#: .\cookbook\helper\permission_helper.py:145
-#: .\cookbook\helper\permission_helper.py:167
-#: .\cookbook\helper\permission_helper.py:182
+#: .\cookbook\helper\permission_helper.py:127
+#: .\cookbook\helper\permission_helper.py:132
+#: .\cookbook\helper\permission_helper.py:154
+#: .\cookbook\helper\permission_helper.py:199
+#: .\cookbook\helper\permission_helper.py:213
+#: .\cookbook\helper\permission_helper.py:224
+#: .\cookbook\helper\permission_helper.py:235 .\cookbook\views\data.py:39
+#: .\cookbook\views\views.py:158 .\cookbook\views\views.py:165
+#: .\cookbook\views\views.py:253
+msgid "You do not have the required permissions to view this page!"
+msgstr "¡No tienes los permisos necesarios para ver esta página!"
+
+#: .\cookbook\helper\permission_helper.py:148
+#: .\cookbook\helper\permission_helper.py:170
+#: .\cookbook\helper\permission_helper.py:185
msgid "You cannot interact with this object as it is not owned by you!"
msgstr "¡No puede interactuar con este objeto ya que no es de tu propiedad!"
-#: .\cookbook\helper\recipe_url_import.py:40 .\cookbook\views\api.py:549
-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\helper\recipe_url_import.py:54
-msgid ""
-"The requested site does not provide any recognized data format to import the "
-"recipe from."
-msgstr ""
-"El sitio solicitado no proporciona ningún formato de datos reconocido para "
-"importar la receta."
-
-#: .\cookbook\helper\recipe_url_import.py:160
-msgid "Imported from"
-msgstr "Importado de"
-
#: .\cookbook\helper\template_helper.py:60
#: .\cookbook\helper\template_helper.py:62
msgid "Could not parse template code."
@@ -279,12 +288,16 @@ msgstr ""
#: .\cookbook\templates\import.html:14 .\cookbook\templates\import.html:20
#: .\cookbook\templates\import_response.html:7
#: .\cookbook\templates\test.html:14 .\cookbook\templates\test.html:20
-#: .\cookbook\templates\url_import.html:233 .\cookbook\views\delete.py:60
-#: .\cookbook\views\edit.py:190
+#: .\cookbook\templates\url_import.html:27
+#: .\cookbook\templates\url_import.html:101
+#: .\cookbook\templates\url_import.html:123
+#: .\cookbook\templates\url_import.html:317
+#: .\cookbook\templates\url_import.html:604 .\cookbook\views\delete.py:60
+#: .\cookbook\views\edit.py:199
msgid "Import"
msgstr "Importar"
-#: .\cookbook\integration\integration.py:131
+#: .\cookbook\integration\integration.py:162
msgid ""
"Importer expected a .zip file. Did you choose the correct importer type for "
"your data ?"
@@ -292,36 +305,43 @@ msgstr ""
"El importador esperaba un fichero.zip. ¿Has escogido el tipo de importador "
"correcto para tus datos?"
-#: .\cookbook\integration\integration.py:134
+#: .\cookbook\integration\integration.py:165
+msgid ""
+"An unexpected error occurred during the import. Please make sure you have "
+"uploaded a valid file."
+msgstr ""
+
+#: .\cookbook\integration\integration.py:169
msgid "The following recipes were ignored because they already existed:"
msgstr ""
-#: .\cookbook\integration\integration.py:137
+#: .\cookbook\integration\integration.py:173
#, fuzzy, python-format
#| msgid "Imported new recipe!"
msgid "Imported %s recipes."
msgstr "¡Nueva receta importada!"
-#: .\cookbook\integration\paprika.py:44
+#: .\cookbook\integration\paprika.py:46
#, fuzzy
#| msgid "Note"
msgid "Notes"
msgstr "Nota"
-#: .\cookbook\integration\paprika.py:47
+#: .\cookbook\integration\paprika.py:49
#, fuzzy
#| msgid "Information"
msgid "Nutritional Information"
msgstr "Información"
-#: .\cookbook\integration\paprika.py:50
+#: .\cookbook\integration\paprika.py:53
msgid "Source"
msgstr ""
#: .\cookbook\integration\safron.py:23
-#: .\cookbook\templates\forms\edit_internal_recipe.html:75
+#: .\cookbook\templates\forms\edit_internal_recipe.html:79
#: .\cookbook\templates\include\log_cooking.html:16
-#: .\cookbook\templates\url_import.html:84
+#: .\cookbook\templates\url_import.html:224
+#: .\cookbook\templates\url_import.html:455
msgid "Servings"
msgstr "Raciones"
@@ -330,11 +350,11 @@ msgid "Waiting time"
msgstr "Tiempo de espera"
#: .\cookbook\integration\safron.py:27
-#: .\cookbook\templates\forms\edit_internal_recipe.html:69
+#: .\cookbook\templates\forms\edit_internal_recipe.html:73
msgid "Preparation Time"
msgstr "Tiempo de Preparación"
-#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:71
+#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:78
#: .\cookbook\templates\forms\ingredients.html:7
#: .\cookbook\templates\index.html:7
msgid "Cookbook"
@@ -360,44 +380,74 @@ msgstr "Cena"
msgid "Other"
msgstr "Otro"
-#: .\cookbook\models.py:110 .\cookbook\templates\shopping_list.html:48
+#: .\cookbook\models.py:71
+msgid ""
+"Maximum file storage for space in MB. 0 for unlimited, -1 to disable file "
+"upload."
+msgstr ""
+
+#: .\cookbook\models.py:121 .\cookbook\templates\search.html:7
+#: .\cookbook\templates\shopping_list.html:52
msgid "Search"
msgstr "Buscar"
-#: .\cookbook\models.py:111 .\cookbook\templates\base.html:85
+#: .\cookbook\models.py:122 .\cookbook\templates\base.html:92
#: .\cookbook\templates\meal_plan.html:5 .\cookbook\views\delete.py:152
-#: .\cookbook\views\edit.py:224 .\cookbook\views\new.py:188
+#: .\cookbook\views\edit.py:233 .\cookbook\views\new.py:201
msgid "Meal-Plan"
msgstr "Régimen de comidas"
-#: .\cookbook\models.py:112 .\cookbook\templates\base.html:82
+#: .\cookbook\models.py:123 .\cookbook\templates\base.html:89
msgid "Books"
msgstr "Libros"
-#: .\cookbook\models.py:119
+#: .\cookbook\models.py:131
msgid "Small"
msgstr "Pequeño"
-#: .\cookbook\models.py:119
+#: .\cookbook\models.py:131
msgid "Large"
msgstr "Grande"
-#: .\cookbook\models.py:327
-#: .\cookbook\templates\forms\edit_internal_recipe.html:198
+#: .\cookbook\models.py:131 .\cookbook\templates\generic\new_template.html:6
+#: .\cookbook\templates\generic\new_template.html:14
+#: .\cookbook\templates\meal_plan.html:323
+msgid "New"
+msgstr "Nuevo"
+
+#: .\cookbook\models.py:340
+#: .\cookbook\templates\forms\edit_internal_recipe.html:202
msgid "Text"
msgstr "Texto"
-#: .\cookbook\models.py:327
-#: .\cookbook\templates\forms\edit_internal_recipe.html:199
+#: .\cookbook\models.py:340
+#: .\cookbook\templates\forms\edit_internal_recipe.html:203
msgid "Time"
msgstr "Tiempo"
+#: .\cookbook\models.py:340
+#: .\cookbook\templates\forms\edit_internal_recipe.html:204
+#: .\cookbook\templates\forms\edit_internal_recipe.html:218
+#, fuzzy
+#| msgid "File ID"
+msgid "File"
+msgstr "ID de Fichero"
+
+#: .\cookbook\serializer.py:109
+msgid "File uploads are not enabled for this Space."
+msgstr ""
+
+#: .\cookbook\serializer.py:117
+msgid "You have reached your file upload limit."
+msgstr ""
+
#: .\cookbook\tables.py:35 .\cookbook\templates\books.html:36
#: .\cookbook\templates\generic\edit_template.html:6
#: .\cookbook\templates\generic\edit_template.html:14
#: .\cookbook\templates\meal_plan.html:281
#: .\cookbook\templates\recipes_table.html:82
#: .\cookbook\templates\shopping_list.html:33
+#: .\cookbook\templates\space.html:84
msgid "Edit"
msgstr "Editar"
@@ -411,10 +461,6 @@ msgstr "Editar"
msgid "Delete"
msgstr "Eliminar"
-#: .\cookbook\tables.py:144
-msgid "Link"
-msgstr "Enlace"
-
#: .\cookbook\templates\404.html:5
msgid "404 Error"
msgstr "Error 404"
@@ -431,21 +477,126 @@ msgstr "Llévame a Inicio"
msgid "Report a Bug"
msgstr "Reportar un error"
-#: .\cookbook\templates\account\login.html:7
-#: .\cookbook\templates\base.html:170
+#: .\cookbook\templates\account\email.html:6
+#: .\cookbook\templates\account\email.html:9
+msgid "E-mail Addresses"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:11
+msgid "The following e-mail addresses are associated with your account:"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:28
+msgid "Verified"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:30
+msgid "Unverified"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:32
+msgid "Primary"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:39
+#, fuzzy
+#| msgid "Make Header"
+msgid "Make Primary"
+msgstr "Crear encabezado"
+
+#: .\cookbook\templates\account\email.html:41
+msgid "Re-send Verification"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:42
+#: .\cookbook\templates\socialaccount\connections.html:36
+msgid "Remove"
+msgstr "Eliminar"
+
+#: .\cookbook\templates\account\email.html:50
+#, fuzzy
+#| msgid "Warning"
+msgid "Warning:"
+msgstr "Advertencia"
+
+#: .\cookbook\templates\account\email.html:50
+msgid ""
+"You currently do not have any e-mail address set up. You should really add "
+"an e-mail address so you can receive notifications, reset your password, etc."
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:56
+msgid "Add E-mail Address"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:61
+msgid "Add E-mail"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:71
+msgid "Do you really want to remove the selected e-mail address?"
+msgstr ""
+
+#: .\cookbook\templates\account\email_confirm.html:6
+#: .\cookbook\templates\account\email_confirm.html:10
+msgid "Confirm E-mail Address"
+msgstr ""
+
+#: .\cookbook\templates\account\email_confirm.html:16
+#, python-format
+msgid ""
+"Please confirm that\n"
+" %(email)s is an e-mail address "
+"for user %(user_display)s\n"
+" ."
+msgstr ""
+
+#: .\cookbook\templates\account\email_confirm.html:22
+#: .\cookbook\templates\generic\delete_template.html:21
+msgid "Confirm"
+msgstr "Confirmar"
+
+#: .\cookbook\templates\account\email_confirm.html:29
+#, python-format
+msgid ""
+"This e-mail confirmation link expired or is invalid. Please\n"
+" issue a new e-mail confirmation "
+"request."
+msgstr ""
+
+#: .\cookbook\templates\account\login.html:8
+#: .\cookbook\templates\base.html:180
msgid "Login"
msgstr "Iniciar sesión"
-#: .\cookbook\templates\account\login.html:13
-#: .\cookbook\templates\account\login.html:28
+#: .\cookbook\templates\account\login.html:15
+#: .\cookbook\templates\account\login.html:31
+#: .\cookbook\templates\account\signup.html:69
+#: .\cookbook\templates\account\signup_closed.html:15
msgid "Sign In"
msgstr "Iniciar sesión"
-#: .\cookbook\templates\account\login.html:38
+#: .\cookbook\templates\account\login.html:32
+#, fuzzy
+#| msgid "Sign In"
+msgid "Sign Up"
+msgstr "Iniciar sesión"
+
+#: .\cookbook\templates\account\login.html:36
+#: .\cookbook\templates\account\login.html:37
+#: .\cookbook\templates\account\password_reset.html:29
+msgid "Reset My Password"
+msgstr ""
+
+#: .\cookbook\templates\account\login.html:37
+msgid "Lost your password?"
+msgstr ""
+
+#: .\cookbook\templates\account\login.html:48
msgid "Social Login"
msgstr "Inicio de sesión social"
-#: .\cookbook\templates\account\login.html:39
+#: .\cookbook\templates\account\login.html:49
msgid "You can use any of the following providers to sign in."
msgstr ""
"Puedes usar cualquiera de los siguientes proveedores de inicio de sesión."
@@ -460,116 +611,168 @@ msgstr "Salir"
msgid "Are you sure you want to sign out?"
msgstr "¿Seguro que quieres salir?"
-#: .\cookbook\templates\account\password_reset.html:5
-#: .\cookbook\templates\account\password_reset_done.html:5
+#: .\cookbook\templates\account\password_reset.html:7
+#: .\cookbook\templates\account\password_reset.html:13
+#: .\cookbook\templates\account\password_reset_done.html:7
+#: .\cookbook\templates\account\password_reset_done.html:10
msgid "Password Reset"
msgstr "Restablecer contraseña"
-#: .\cookbook\templates\account\password_reset.html:9
-#: .\cookbook\templates\account\password_reset_done.html:9
-msgid "Password reset is not implemented for the time being!"
+#: .\cookbook\templates\account\password_reset.html:24
+msgid ""
+"Forgotten your password? Enter your e-mail address below, and we'll send you "
+"an e-mail allowing you to reset it."
+msgstr ""
+
+#: .\cookbook\templates\account\password_reset.html:32
+#, fuzzy
+#| msgid "Password reset is not implemented for the time being!"
+msgid "Password reset is disabled on this instance."
msgstr "¡Restablecimiento de contraseña no está implementado de momento!"
-#: .\cookbook\templates\account\signup.html:5
+#: .\cookbook\templates\account\password_reset_done.html:16
+msgid ""
+"We have sent you an e-mail. Please contact us if you do not receive it "
+"within a few minutes."
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:6
msgid "Register"
msgstr "Registrar"
-#: .\cookbook\templates\account\signup.html:9
-msgid "Create your Account"
+#: .\cookbook\templates\account\signup.html:12
+#, fuzzy
+#| msgid "Create your Account"
+msgid "Create an Account"
msgstr "Crea tu Cuenta"
-#: .\cookbook\templates\account\signup.html:14
+#: .\cookbook\templates\account\signup.html:42
+msgid "I accept the follwoing"
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:45
+msgid "Terms and Conditions"
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:48
+msgid "and"
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:52
+msgid "Privacy Policy"
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:65
msgid "Create User"
msgstr "Crear Usuario"
-#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:160
+#: .\cookbook\templates\account\signup.html:69
+msgid "Already have an account?"
+msgstr ""
+
+#: .\cookbook\templates\account\signup_closed.html:5
+#: .\cookbook\templates\account\signup_closed.html:11
+msgid "Sign Up Closed"
+msgstr ""
+
+#: .\cookbook\templates\account\signup_closed.html:13
+msgid "We are sorry, but the sign up is currently closed."
+msgstr ""
+
+#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:170
#: .\cookbook\templates\rest_framework\api.html:11
msgid "API Documentation"
msgstr "Documentación de API"
-#: .\cookbook\templates\base.html:78
+#: .\cookbook\templates\base.html:85
msgid "Utensils"
msgstr "Utensilios"
-#: .\cookbook\templates\base.html:88
+#: .\cookbook\templates\base.html:95
msgid "Shopping"
msgstr "Compras"
-#: .\cookbook\templates\base.html:102 .\cookbook\views\delete.py:84
-#: .\cookbook\views\edit.py:93 .\cookbook\views\lists.py:26
-#: .\cookbook\views\new.py:66
+#: .\cookbook\templates\base.html:109 .\cookbook\views\delete.py:84
+#: .\cookbook\views\edit.py:102 .\cookbook\views\lists.py:26
+#: .\cookbook\views\new.py:78
msgid "Keyword"
msgstr "Palabra clave"
-#: .\cookbook\templates\base.html:104
+#: .\cookbook\templates\base.html:111
msgid "Batch Edit"
msgstr "Edición Masiva"
-#: .\cookbook\templates\base.html:109
+#: .\cookbook\templates\base.html:116
msgid "Storage Data"
msgstr "Almacenamiento de Datos"
-#: .\cookbook\templates\base.html:113
+#: .\cookbook\templates\base.html:120
msgid "Storage Backends"
msgstr "Backends de Almacenamiento"
-#: .\cookbook\templates\base.html:115
+#: .\cookbook\templates\base.html:122
msgid "Configure Sync"
msgstr "Configurar Sincronización"
-#: .\cookbook\templates\base.html:117
+#: .\cookbook\templates\base.html:124
msgid "Discovered Recipes"
msgstr "Recetas Descubiertas"
-#: .\cookbook\templates\base.html:119
+#: .\cookbook\templates\base.html:126
msgid "Discovery Log"
msgstr "Registro de descubrimiento"
-#: .\cookbook\templates\base.html:121 .\cookbook\templates\stats.html:10
+#: .\cookbook\templates\base.html:128 .\cookbook\templates\stats.html:10
msgid "Statistics"
msgstr "Estadísticas"
-#: .\cookbook\templates\base.html:123
+#: .\cookbook\templates\base.html:130
msgid "Units & Ingredients"
msgstr "Unidades e ingredientes"
-#: .\cookbook\templates\base.html:125
+#: .\cookbook\templates\base.html:132 .\cookbook\templates\index.html:47
msgid "Import Recipe"
msgstr "Importar receta"
-#: .\cookbook\templates\base.html:144 .\cookbook\templates\settings.html:6
+#: .\cookbook\templates\base.html:151 .\cookbook\templates\settings.html:6
#: .\cookbook\templates\settings.html:16
msgid "Settings"
msgstr "Opciones"
-#: .\cookbook\templates\base.html:146 .\cookbook\templates\history.html:6
+#: .\cookbook\templates\base.html:153 .\cookbook\templates\history.html:6
#: .\cookbook\templates\history.html:14
msgid "History"
msgstr "Historial"
-#: .\cookbook\templates\base.html:150 .\cookbook\templates\system.html:13
+#: .\cookbook\templates\base.html:155 .\cookbook\templates\space.html:7
+#, fuzzy
+#| msgid "Settings"
+msgid "Space Settings"
+msgstr "Opciones"
+
+#: .\cookbook\templates\base.html:160 .\cookbook\templates\system.html:13
msgid "System"
msgstr "Sistema"
-#: .\cookbook\templates\base.html:152
+#: .\cookbook\templates\base.html:162
msgid "Admin"
msgstr "Administrador"
-#: .\cookbook\templates\base.html:156
+#: .\cookbook\templates\base.html:166
msgid "Markdown Guide"
msgstr "Guia Markdown"
-#: .\cookbook\templates\base.html:158
+#: .\cookbook\templates\base.html:168
msgid "GitHub"
msgstr "GitHub"
-#: .\cookbook\templates\base.html:162
+#: .\cookbook\templates\base.html:172
msgid "API Browser"
msgstr "Explorador de API"
-#: .\cookbook\templates\base.html:165
-msgid "Logout"
-msgstr "Cerrar sesión"
+#: .\cookbook\templates\base.html:175
+msgid "Log out"
+msgstr ""
#: .\cookbook\templates\batch\edit.html:6
msgid "Batch edit Category"
@@ -585,7 +788,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:76
+#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:85
msgid "Sync"
msgstr "Sincronizar"
@@ -614,7 +817,7 @@ msgstr "¡Sincronizar ahora!"
msgid "Importing Recipes"
msgstr "Importando Recetas"
-#: .\cookbook\templates\batch\waiting.html:23
+#: .\cookbook\templates\batch\waiting.html:28
msgid ""
"This can take a few minutes, depending on the number of recipes in sync, "
"please wait."
@@ -653,26 +856,33 @@ msgid "Export Recipes"
msgstr "Exportar recetas"
#: .\cookbook\templates\export.html:14 .\cookbook\templates\export.html:20
-#: .\cookbook\templates\shopping_list.html:347
+#: .\cookbook\templates\shopping_list.html:351
#: .\cookbook\templates\test2.html:14 .\cookbook\templates\test2.html:20
msgid "Export"
msgstr "Exportar"
+#: .\cookbook\templates\files.html:7
+#, fuzzy
+#| msgid "File ID"
+msgid "Files"
+msgstr "ID de Fichero"
+
#: .\cookbook\templates\forms\edit_import_recipe.html:5
#: .\cookbook\templates\forms\edit_import_recipe.html:9
msgid "Import new Recipe"
msgstr "Importar nueva receta"
#: .\cookbook\templates\forms\edit_import_recipe.html:14
-#: .\cookbook\templates\forms\edit_internal_recipe.html:389
-#: .\cookbook\templates\forms\edit_internal_recipe.html:421
+#: .\cookbook\templates\forms\edit_internal_recipe.html:416
+#: .\cookbook\templates\forms\edit_internal_recipe.html:448
#: .\cookbook\templates\generic\edit_template.html:23
#: .\cookbook\templates\generic\new_template.html:23
#: .\cookbook\templates\include\log_cooking.html:28
#: .\cookbook\templates\meal_plan.html:325
-#: .\cookbook\templates\settings.html:28 .\cookbook\templates\settings.html:35
-#: .\cookbook\templates\settings.html:58 .\cookbook\templates\settings.html:73
-#: .\cookbook\templates\shopping_list.html:349
+#: .\cookbook\templates\settings.html:44 .\cookbook\templates\settings.html:52
+#: .\cookbook\templates\settings.html:96
+#: .\cookbook\templates\settings.html:114
+#: .\cookbook\templates\shopping_list.html:353
msgid "Save"
msgstr "Guardar"
@@ -681,181 +891,190 @@ msgstr "Guardar"
msgid "Edit Recipe"
msgstr "Editar receta"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:52
+#: .\cookbook\templates\forms\edit_internal_recipe.html:56
+#: .\cookbook\templates\url_import.html:171
msgid "Description"
msgstr "Descripción"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:72
+#: .\cookbook\templates\forms\edit_internal_recipe.html:76
msgid "Waiting Time"
msgstr "Tiempo de espera"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:78
+#: .\cookbook\templates\forms\edit_internal_recipe.html:82
msgid "Servings Text"
msgstr "Texto de raciones"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:89
+#: .\cookbook\templates\forms\edit_internal_recipe.html:93
msgid "Select Keywords"
msgstr "Seleccionar palabras clave"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:90
-#: .\cookbook\templates\url_import.html:212
+#: .\cookbook\templates\forms\edit_internal_recipe.html:94
+#: .\cookbook\templates\url_import.html:583
#, fuzzy
#| msgid "All Keywords"
msgid "Add Keyword"
msgstr "Todas las palabras clave."
-#: .\cookbook\templates\forms\edit_internal_recipe.html:108
+#: .\cookbook\templates\forms\edit_internal_recipe.html:112
msgid "Nutrition"
msgstr "Información Nutricional"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:112
-#: .\cookbook\templates\forms\edit_internal_recipe.html:162
+#: .\cookbook\templates\forms\edit_internal_recipe.html:116
+#: .\cookbook\templates\forms\edit_internal_recipe.html:166
msgid "Delete Step"
msgstr "Eliminar paso"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:116
+#: .\cookbook\templates\forms\edit_internal_recipe.html:120
msgid "Calories"
msgstr "Calorías"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:119
+#: .\cookbook\templates\forms\edit_internal_recipe.html:123
msgid "Carbohydrates"
msgstr "Carbohidratos"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:122
+#: .\cookbook\templates\forms\edit_internal_recipe.html:126
msgid "Fats"
msgstr "Grasas"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:124
+#: .\cookbook\templates\forms\edit_internal_recipe.html:128
msgid "Proteins"
msgstr "Proteinas"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:146
-#: .\cookbook\templates\forms\edit_internal_recipe.html:454
+#: .\cookbook\templates\forms\edit_internal_recipe.html:150
+#: .\cookbook\templates\forms\edit_internal_recipe.html:481
msgid "Step"
msgstr "Paso"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:167
+#: .\cookbook\templates\forms\edit_internal_recipe.html:171
msgid "Show as header"
msgstr "Mostrar como encabezado"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:173
+#: .\cookbook\templates\forms\edit_internal_recipe.html:177
msgid "Hide as header"
msgstr "Ocultar como encabezado"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:178
+#: .\cookbook\templates\forms\edit_internal_recipe.html:182
msgid "Move Up"
msgstr "Mover Arriba"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:183
+#: .\cookbook\templates\forms\edit_internal_recipe.html:187
msgid "Move Down"
msgstr "Mover Abajo"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:192
+#: .\cookbook\templates\forms\edit_internal_recipe.html:196
msgid "Step Name"
msgstr "Nombre del paso"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:196
+#: .\cookbook\templates\forms\edit_internal_recipe.html:200
msgid "Step Type"
msgstr "Tipo de paso"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:207
+#: .\cookbook\templates\forms\edit_internal_recipe.html:212
msgid "Step time in Minutes"
msgstr "Tiempo de paso en minutos"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:261
-#: .\cookbook\templates\shopping_list.html:183
-msgid "Select Unit"
-msgstr "Seleccionar unidad"
+#: .\cookbook\templates\forms\edit_internal_recipe.html:228
+#, fuzzy
+#| msgid "Select one"
+msgid "Select File"
+msgstr "Seleccione uno"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:262
-#: .\cookbook\templates\forms\edit_internal_recipe.html:286
-#: .\cookbook\templates\shopping_list.html:184
-#: .\cookbook\templates\shopping_list.html:206
-msgid "Create"
-msgstr "Crear"
-
-#: .\cookbook\templates\forms\edit_internal_recipe.html:263
-#: .\cookbook\templates\forms\edit_internal_recipe.html:287
-#: .\cookbook\templates\shopping_list.html:185
-#: .\cookbook\templates\shopping_list.html:207
-#: .\cookbook\templates\shopping_list.html:237
-#: .\cookbook\templates\shopping_list.html:261
-#: .\cookbook\templates\url_import.html:124
-#: .\cookbook\templates\url_import.html:156
+#: .\cookbook\templates\forms\edit_internal_recipe.html:229
+#: .\cookbook\templates\forms\edit_internal_recipe.html:290
+#: .\cookbook\templates\forms\edit_internal_recipe.html:314
+#: .\cookbook\templates\shopping_list.html:189
+#: .\cookbook\templates\shopping_list.html:211
+#: .\cookbook\templates\shopping_list.html:241
+#: .\cookbook\templates\shopping_list.html:265
+#: .\cookbook\templates\url_import.html:495
+#: .\cookbook\templates\url_import.html:527
msgid "Select"
msgstr "Seleccionar"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:285
-#: .\cookbook\templates\shopping_list.html:205
+#: .\cookbook\templates\forms\edit_internal_recipe.html:288
+#: .\cookbook\templates\shopping_list.html:187
+msgid "Select Unit"
+msgstr "Seleccionar unidad"
+
+#: .\cookbook\templates\forms\edit_internal_recipe.html:289
+#: .\cookbook\templates\forms\edit_internal_recipe.html:313
+#: .\cookbook\templates\shopping_list.html:188
+#: .\cookbook\templates\shopping_list.html:210
+msgid "Create"
+msgstr "Crear"
+
+#: .\cookbook\templates\forms\edit_internal_recipe.html:312
+#: .\cookbook\templates\shopping_list.html:209
msgid "Select Food"
msgstr "Seleccionar Alimento"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:302
+#: .\cookbook\templates\forms\edit_internal_recipe.html:329
#: .\cookbook\templates\meal_plan.html:256
-#: .\cookbook\templates\url_import.html:171
+#: .\cookbook\templates\url_import.html:542
msgid "Note"
msgstr "Nota"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:319
+#: .\cookbook\templates\forms\edit_internal_recipe.html:346
msgid "Delete Ingredient"
msgstr "Eliminar ingrediente"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:325
+#: .\cookbook\templates\forms\edit_internal_recipe.html:352
msgid "Make Header"
msgstr "Crear encabezado"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:331
+#: .\cookbook\templates\forms\edit_internal_recipe.html:358
msgid "Make Ingredient"
msgstr "Crear ingrediente"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:337
+#: .\cookbook\templates\forms\edit_internal_recipe.html:364
msgid "Disable Amount"
msgstr "Deshabilitar cantidad"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:343
+#: .\cookbook\templates\forms\edit_internal_recipe.html:370
msgid "Enable Amount"
msgstr "Habilitar cantidad"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:348
+#: .\cookbook\templates\forms\edit_internal_recipe.html:375
msgid "Copy Template Reference"
msgstr "Copiar Referencia de Plantilla"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:374
-#: .\cookbook\templates\url_import.html:196
+#: .\cookbook\templates\forms\edit_internal_recipe.html:401
+#: .\cookbook\templates\url_import.html:297
+#: .\cookbook\templates\url_import.html:567
msgid "Instructions"
msgstr "Instrucciones"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:387
-#: .\cookbook\templates\forms\edit_internal_recipe.html:418
+#: .\cookbook\templates\forms\edit_internal_recipe.html:414
+#: .\cookbook\templates\forms\edit_internal_recipe.html:445
msgid "Save & View"
msgstr "Guardar y ver"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:391
-#: .\cookbook\templates\forms\edit_internal_recipe.html:424
+#: .\cookbook\templates\forms\edit_internal_recipe.html:418
+#: .\cookbook\templates\forms\edit_internal_recipe.html:451
msgid "Add Step"
msgstr "Agregar paso"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:394
-#: .\cookbook\templates\forms\edit_internal_recipe.html:428
+#: .\cookbook\templates\forms\edit_internal_recipe.html:421
+#: .\cookbook\templates\forms\edit_internal_recipe.html:455
msgid "Add Nutrition"
msgstr "Añadir Información Nutricional"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:396
-#: .\cookbook\templates\forms\edit_internal_recipe.html:430
+#: .\cookbook\templates\forms\edit_internal_recipe.html:423
+#: .\cookbook\templates\forms\edit_internal_recipe.html:457
msgid "Remove Nutrition"
msgstr "Eliminar Información Nutricional"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:398
-#: .\cookbook\templates\forms\edit_internal_recipe.html:433
+#: .\cookbook\templates\forms\edit_internal_recipe.html:425
+#: .\cookbook\templates\forms\edit_internal_recipe.html:460
msgid "View Recipe"
msgstr "Ver la receta"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:400
-#: .\cookbook\templates\forms\edit_internal_recipe.html:435
+#: .\cookbook\templates\forms\edit_internal_recipe.html:427
+#: .\cookbook\templates\forms\edit_internal_recipe.html:462
msgid "Delete Recipe"
msgstr "Eliminar receta"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:441
+#: .\cookbook\templates\forms\edit_internal_recipe.html:468
msgid "Steps"
msgstr "Pasos"
@@ -882,7 +1101,7 @@ msgstr ""
" "
#: .\cookbook\templates\forms\ingredients.html:24
-#: .\cookbook\templates\stats.html:26
+#: .\cookbook\templates\space.html:35 .\cookbook\templates\stats.html:26
msgid "Units"
msgstr "Unidades"
@@ -904,10 +1123,6 @@ msgstr "¿Estás seguro de que quieres combinar estos dos ingredientes?"
msgid "Are you sure you want to delete the %(title)s: %(object)s "
msgstr "¿Estás seguro de que quieres borrar el %(title)s: %(object)s?"
-#: .\cookbook\templates\generic\delete_template.html:21
-msgid "Confirm"
-msgstr "Confirmar"
-
#: .\cookbook\templates\generic\edit_template.html:30
msgid "View"
msgstr "Ver"
@@ -929,12 +1144,6 @@ msgstr "Filtro"
msgid "Import all"
msgstr "Importar todo"
-#: .\cookbook\templates\generic\new_template.html:6
-#: .\cookbook\templates\generic\new_template.html:14
-#: .\cookbook\templates\meal_plan.html:323
-msgid "New"
-msgstr "Nuevo"
-
#: .\cookbook\templates\generic\table_template.html:76
#: .\cookbook\templates\recipes_table.html:121
msgid "previous"
@@ -979,7 +1188,7 @@ msgstr "Cerrar"
#: .\cookbook\templates\include\recipe_open_modal.html:7
#: .\cookbook\templates\meal_plan.html:247 .\cookbook\views\delete.py:28
-#: .\cookbook\views\edit.py:264 .\cookbook\views\new.py:40
+#: .\cookbook\views\edit.py:273 .\cookbook\views\new.py:52
msgid "Recipe"
msgstr "Receta"
@@ -1021,10 +1230,6 @@ msgstr "Buscar receta ..."
msgid "New Recipe"
msgstr "Nueva receta"
-#: .\cookbook\templates\index.html:47
-msgid "Website Import"
-msgstr "Importación de sitios web"
-
#: .\cookbook\templates\index.html:53
msgid "Advanced Search"
msgstr "Búsqueda Avanzada"
@@ -1038,7 +1243,7 @@ msgid "Last viewed"
msgstr "Visto por última vez"
#: .\cookbook\templates\index.html:87 .\cookbook\templates\meal_plan.html:178
-#: .\cookbook\templates\stats.html:22
+#: .\cookbook\templates\space.html:29 .\cookbook\templates\stats.html:22
msgid "Recipes"
msgstr "Recetas"
@@ -1204,7 +1409,7 @@ msgid "New Entry"
msgstr "Nueva entrada"
#: .\cookbook\templates\meal_plan.html:113
-#: .\cookbook\templates\shopping_list.html:52
+#: .\cookbook\templates\shopping_list.html:56
msgid "Search Recipe"
msgstr "Buscar Receta"
@@ -1237,7 +1442,7 @@ msgstr "Crear sólo una nota"
#: .\cookbook\templates\meal_plan.html:168
#: .\cookbook\templates\shopping_list.html:7
#: .\cookbook\templates\shopping_list.html:29
-#: .\cookbook\templates\shopping_list.html:705
+#: .\cookbook\templates\shopping_list.html:714
msgid "Shopping List"
msgstr "Lista de la Compra"
@@ -1289,7 +1494,7 @@ msgstr "Creado por"
#: .\cookbook\templates\meal_plan.html:270
#: .\cookbook\templates\meal_plan_entry.html:20
-#: .\cookbook\templates\shopping_list.html:250
+#: .\cookbook\templates\shopping_list.html:254
msgid "Shared with"
msgstr "Compartido con"
@@ -1402,7 +1607,6 @@ msgstr ""
#: .\cookbook\templates\no_groups_info.html:18
#: .\cookbook\templates\no_perm_info.html:15
-#: .\cookbook\templates\no_space_info.html:15
msgid "Please contact your administrator."
msgstr ""
@@ -1421,13 +1625,50 @@ msgid ""
"action."
msgstr "¡No tienes los permisos necesarios para realizar esta acción!"
-#: .\cookbook\templates\no_space_info.html:5
-#: .\cookbook\templates\no_space_info.html:12
+#: .\cookbook\templates\no_space_info.html:6
+#: .\cookbook\templates\no_space_info.html:13
msgid "No Space"
msgstr ""
-#: .\cookbook\templates\no_space_info.html:15
-msgid "You are not a member of any space."
+#: .\cookbook\templates\no_space_info.html:17
+msgid ""
+"Recipes, foods, shopping lists and more are organized in spaces of one or "
+"more people."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:18
+msgid ""
+"You can either be invited into an existing space or create your own one."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:31
+#: .\cookbook\templates\no_space_info.html:40
+msgid "Join Space"
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:34
+msgid "Join an existing space."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:35
+msgid ""
+"To join an existing space either enter your invite token or click on the "
+"invite link the space owner send you."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:48
+#: .\cookbook\templates\no_space_info.html:56
+#, fuzzy
+#| msgid "Create User"
+msgid "Create Space"
+msgstr "Crear Usuario"
+
+#: .\cookbook\templates\no_space_info.html:51
+msgid "Create your own recipe space."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:52
+msgid "Start your own recipe space and invite other users to it."
msgstr ""
#: .\cookbook\templates\offline.html:6
@@ -1447,28 +1688,29 @@ msgstr ""
"porque las has visto recientemente. Ten en cuenta que los datos pueden estar "
"desactualizados."
-#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\stats.html:47
+#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\space.html:56
+#: .\cookbook\templates\stats.html:47
msgid "Comments"
msgstr "Comentarios"
#: .\cookbook\templates\recipe_view.html:44 .\cookbook\views\delete.py:118
-#: .\cookbook\views\edit.py:170
+#: .\cookbook\views\edit.py:179
msgid "Comment"
msgstr "Comentario"
#: .\cookbook\templates\recipes_table.html:19
#: .\cookbook\templates\recipes_table.html:23
-#: .\cookbook\templates\url_import.html:69
+#: .\cookbook\templates\url_import.html:440
msgid "Recipe Image"
msgstr "Imagen de la receta"
#: .\cookbook\templates\recipes_table.html:51
-#: .\cookbook\templates\url_import.html:74
+#: .\cookbook\templates\url_import.html:445
msgid "Preparation time ca."
msgstr "Tiempo de preparación ca."
#: .\cookbook\templates\recipes_table.html:57
-#: .\cookbook\templates\url_import.html:79
+#: .\cookbook\templates\url_import.html:450
msgid "Waiting time ca."
msgstr "Tiempo de espera ca."
@@ -1484,27 +1726,67 @@ msgstr "Registrar receta cocinada"
msgid "Recipe Home"
msgstr "Página de inicio"
-#: .\cookbook\templates\settings.html:22
+#: .\cookbook\templates\settings.html:23
msgid "Account"
msgstr "Cuenta"
-#: .\cookbook\templates\settings.html:38
-msgid "Link social account"
+#: .\cookbook\templates\settings.html:27
+msgid "Preferences"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:31
+#, fuzzy
+#| msgid "Settings"
+msgid "API-Settings"
+msgstr "Opciones"
+
+#: .\cookbook\templates\settings.html:39
+#, fuzzy
+#| msgid "Settings"
+msgid "Name Settings"
+msgstr "Opciones"
+
+#: .\cookbook\templates\settings.html:47
+#, fuzzy
+#| msgid "Password Reset"
+msgid "Password Settings"
+msgstr "Restablecer contraseña"
+
+#: .\cookbook\templates\settings.html:55
+#, fuzzy
+#| msgid "Settings"
+msgid "Email Settings"
+msgstr "Opciones"
+
+#: .\cookbook\templates\settings.html:57
+msgid "Manage Email Settings"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:61
+#, fuzzy
+#| msgid "Social Login"
+msgid "Social"
+msgstr "Inicio de sesión social"
+
+#: .\cookbook\templates\settings.html:63
+#, fuzzy
+#| msgid "Link social account"
+msgid "Manage Social Accounts"
msgstr "Enlazar cuenta social"
-#: .\cookbook\templates\settings.html:42
+#: .\cookbook\templates\settings.html:75
msgid "Language"
msgstr "Idioma"
-#: .\cookbook\templates\settings.html:67
+#: .\cookbook\templates\settings.html:105
msgid "Style"
msgstr "Estilo"
-#: .\cookbook\templates\settings.html:79
+#: .\cookbook\templates\settings.html:125
msgid "API Token"
msgstr "Token API"
-#: .\cookbook\templates\settings.html:80
+#: .\cookbook\templates\settings.html:126
msgid ""
"You can use both basic authentication and token based authentication to "
"access the REST API."
@@ -1512,7 +1794,7 @@ msgstr ""
"Puedes utilizar tanto la autenticación básica como la autenticación basada "
"en tokens para acceder a la API REST."
-#: .\cookbook\templates\settings.html:92
+#: .\cookbook\templates\settings.html:143
msgid ""
"Use the token as an Authorization header prefixed by the word token as shown "
"in the following examples:"
@@ -1520,7 +1802,7 @@ msgstr ""
"Utilice el token como cabecera de autorización usando como prefijo la "
"palabra token, tal y como se muestra en los siguientes ejemplos:"
-#: .\cookbook\templates\settings.html:94
+#: .\cookbook\templates\settings.html:145
msgid "or"
msgstr "o"
@@ -1543,58 +1825,55 @@ msgstr ""
msgid "Create Superuser account"
msgstr "Crear cuenta de Superusuario"
-#: .\cookbook\templates\shopping_list.html:75
+#: .\cookbook\templates\shopping_list.html:79
msgid "Shopping Recipes"
msgstr "Recetas en el carro de la compra"
-#: .\cookbook\templates\shopping_list.html:79
+#: .\cookbook\templates\shopping_list.html:83
msgid "No recipes selected"
msgstr "No hay recetas seleccionadas"
-#: .\cookbook\templates\shopping_list.html:146
+#: .\cookbook\templates\shopping_list.html:150
msgid "Entry Mode"
msgstr "Modo de entrada"
-#: .\cookbook\templates\shopping_list.html:154
+#: .\cookbook\templates\shopping_list.html:158
msgid "Add Entry"
msgstr "Añadir entrada"
-#: .\cookbook\templates\shopping_list.html:170
+#: .\cookbook\templates\shopping_list.html:174
msgid "Amount"
msgstr "Cantidad"
-#: .\cookbook\templates\shopping_list.html:226
+#: .\cookbook\templates\shopping_list.html:230
+#: .\cookbook\templates\supermarket.html:7
msgid "Supermarket"
msgstr "Supermercado"
-#: .\cookbook\templates\shopping_list.html:236
+#: .\cookbook\templates\shopping_list.html:240
msgid "Select Supermarket"
msgstr "Seleccionar supermercado"
-#: .\cookbook\templates\shopping_list.html:260
+#: .\cookbook\templates\shopping_list.html:264
msgid "Select User"
msgstr "Seleccionar Usuario"
-#: .\cookbook\templates\shopping_list.html:279
+#: .\cookbook\templates\shopping_list.html:283
msgid "Finished"
msgstr "Completada"
-#: .\cookbook\templates\shopping_list.html:292
+#: .\cookbook\templates\shopping_list.html:296
msgid "You are offline, shopping list might not syncronize."
msgstr "Estás desconectado, la lista de la compra no se sincronizará."
-#: .\cookbook\templates\shopping_list.html:357
+#: .\cookbook\templates\shopping_list.html:361
msgid "Copy/Export"
msgstr "Copiar/Exportar"
-#: .\cookbook\templates\shopping_list.html:361
+#: .\cookbook\templates\shopping_list.html:365
msgid "List Prefix"
msgstr "Prefijo de la lista"
-#: .\cookbook\templates\shopping_list.html:708
-msgid "There was an error creating a resource!"
-msgstr "¡Hubo un error al crear un recurso!"
-
#: .\cookbook\templates\socialaccount\connections.html:4
#: .\cookbook\templates\socialaccount\connections.html:7
msgid "Account Connections"
@@ -1608,10 +1887,6 @@ msgstr ""
"Puedes entrar en tu cuenta usando cualquiera de las siguientes cuentas de "
"terceros:"
-#: .\cookbook\templates\socialaccount\connections.html:36
-msgid "Remove"
-msgstr "Eliminar"
-
#: .\cookbook\templates\socialaccount\connections.html:44
msgid ""
"You currently have no social network accounts connected to this account."
@@ -1621,38 +1896,99 @@ msgstr "Actualmente no tienes una cuenta social conectada a esta cuenta."
msgid "Add a 3rd Party Account"
msgstr "Añadir una cuenta de terceros"
-#: .\cookbook\templates\stats.html:4
-msgid "Stats"
-msgstr "Estadísticas"
+#: .\cookbook\templates\space.html:18
+#, fuzzy
+#| msgid "Description"
+msgid "Manage Subscription"
+msgstr "Descripción"
-#: .\cookbook\templates\stats.html:19
+#: .\cookbook\templates\space.html:26 .\cookbook\templates\stats.html:19
msgid "Number of objects"
msgstr "Número de objetos"
-#: .\cookbook\templates\stats.html:30
+#: .\cookbook\templates\space.html:39 .\cookbook\templates\stats.html:30
msgid "Recipe Imports"
msgstr "Recetas importadas"
-#: .\cookbook\templates\stats.html:38
+#: .\cookbook\templates\space.html:47 .\cookbook\templates\stats.html:38
msgid "Objects stats"
msgstr "Estadísticas de objetos"
-#: .\cookbook\templates\stats.html:41
+#: .\cookbook\templates\space.html:50 .\cookbook\templates\stats.html:41
msgid "Recipes without Keywords"
msgstr "Recetas sin palabras clave"
-#: .\cookbook\templates\stats.html:43
+#: .\cookbook\templates\space.html:52 .\cookbook\templates\stats.html:43
msgid "External Recipes"
msgstr "Recetas Externas"
-#: .\cookbook\templates\stats.html:45
+#: .\cookbook\templates\space.html:54 .\cookbook\templates\stats.html:45
msgid "Internal Recipes"
msgstr "Recetas Internas"
-#: .\cookbook\templates\system.html:21 .\cookbook\views\lists.py:115
+#: .\cookbook\templates\space.html:67
+msgid "Members"
+msgstr ""
+
+#: .\cookbook\templates\space.html:71
+#, fuzzy
+#| msgid "Invite Links"
+msgid "Invite User"
+msgstr "Enlaces de Invitación"
+
+#: .\cookbook\templates\space.html:82
+msgid "User"
+msgstr ""
+
+#: .\cookbook\templates\space.html:83
+msgid "Groups"
+msgstr ""
+
+#: .\cookbook\templates\space.html:99
+#, fuzzy
+#| msgid "Admin"
+msgid "admin"
+msgstr "Administrador"
+
+#: .\cookbook\templates\space.html:100
+msgid "user"
+msgstr ""
+
+#: .\cookbook\templates\space.html:101
+msgid "guest"
+msgstr ""
+
+#: .\cookbook\templates\space.html:102
+#, fuzzy
+#| msgid "Remove"
+msgid "remove"
+msgstr "Eliminar"
+
+#: .\cookbook\templates\space.html:106
+msgid "Update"
+msgstr ""
+
+#: .\cookbook\templates\space.html:110
+#, fuzzy
+#| msgid "You cannot edit this storage!"
+msgid "You cannot edit yourself."
+msgstr "¡No puede editar este almacenamiento!"
+
+#: .\cookbook\templates\space.html:117
+#, fuzzy
+#| msgid "There are no recipes in this book yet."
+msgid "There are no members in your space yet!"
+msgstr "Todavía no hay recetas en este libro."
+
+#: .\cookbook\templates\space.html:124 .\cookbook\templates\system.html:21
+#: .\cookbook\views\lists.py:115
msgid "Invite Links"
msgstr "Enlaces de Invitación"
+#: .\cookbook\templates\stats.html:4
+msgid "Stats"
+msgstr "Estadísticas"
+
#: .\cookbook\templates\system.html:22
msgid "Show Links"
msgstr "Mostrar Enlaces"
@@ -1785,47 +2121,159 @@ msgstr ""
" características sólo funcionan con bases de datos Postgres.\n"
" "
-#: .\cookbook\templates\url_import.html:5
+#: .\cookbook\templates\url_import.html:6
msgid "URL Import"
msgstr "Importar URL"
-#: .\cookbook\templates\url_import.html:23
+#: .\cookbook\templates\url_import.html:31
+msgid "Drag me to your bookmarks to import recipes from anywhere"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:32
+#, fuzzy
+#| msgid "Bookmark saved!"
+msgid "Bookmark Me!"
+msgstr "¡Marcador guardado!"
+
+#: .\cookbook\templates\url_import.html:61
msgid "Enter website URL"
msgstr "Introduce la URL del sitio web"
-#: .\cookbook\templates\url_import.html:36
-msgid "Enter json directly"
+#: .\cookbook\templates\url_import.html:97
+msgid "Select recipe files to import or drop them here..."
msgstr ""
-#: .\cookbook\templates\url_import.html:57
+#: .\cookbook\templates\url_import.html:118
+msgid "Paste json or html source here to load recipe."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:146
+#, fuzzy
+#| msgid "View Recipe"
+msgid "Preview Recipe Data"
+msgstr "Ver la receta"
+
+#: .\cookbook\templates\url_import.html:147
+msgid "Drag recipe attributes from the right into the appropriate box below."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:156
+#: .\cookbook\templates\url_import.html:173
+#: .\cookbook\templates\url_import.html:190
+#: .\cookbook\templates\url_import.html:209
+#: .\cookbook\templates\url_import.html:227
+#: .\cookbook\templates\url_import.html:242
+#: .\cookbook\templates\url_import.html:257
+#: .\cookbook\templates\url_import.html:273
+#: .\cookbook\templates\url_import.html:300
+#: .\cookbook\templates\url_import.html:351
+msgid "Clear Contents"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:158
+msgid "Text dragged here will be appended to the name."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:175
+msgid "Text dragged here will be appended to the description."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:192
+msgid "Keywords dragged here will be appended to current list"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:207
+msgid "Image"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:239
+#, fuzzy
+#| msgid "Preparation Time"
+msgid "Prep Time"
+msgstr "Tiempo de Preparación"
+
+#: .\cookbook\templates\url_import.html:254
+#, fuzzy
+#| msgid "Time"
+msgid "Cook Time"
+msgstr "Tiempo"
+
+#: .\cookbook\templates\url_import.html:275
+msgid "Ingredients dragged here will be appended to current list."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:302
+msgid ""
+"Recipe instructions dragged here will be appended to current instructions."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:325
+#, fuzzy
+#| msgid "Discovered Recipes"
+msgid "Discovered Attributes"
+msgstr "Recetas Descubiertas"
+
+#: .\cookbook\templates\url_import.html:327
+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:344
+#, fuzzy
+#| msgid "Show as header"
+msgid "Show Blank Field"
+msgstr "Mostrar como encabezado"
+
+#: .\cookbook\templates\url_import.html:349
+msgid "Blank Field"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:353
+msgid "Items dragged to Blank Field will be appended."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:400
+#, fuzzy
+#| msgid "Delete Step"
+msgid "Delete Text"
+msgstr "Eliminar paso"
+
+#: .\cookbook\templates\url_import.html:413
+#, fuzzy
+#| msgid "Delete Recipe"
+msgid "Delete image"
+msgstr "Eliminar receta"
+
+#: .\cookbook\templates\url_import.html:429
msgid "Recipe Name"
msgstr "Nombre de la Receta"
-#: .\cookbook\templates\url_import.html:62
+#: .\cookbook\templates\url_import.html:433
#, fuzzy
#| msgid "Description"
msgid "Recipe Description"
msgstr "Descripción"
-#: .\cookbook\templates\url_import.html:123
-#: .\cookbook\templates\url_import.html:155
-#: .\cookbook\templates\url_import.html:211
+#: .\cookbook\templates\url_import.html:494
+#: .\cookbook\templates\url_import.html:526
+#: .\cookbook\templates\url_import.html:582
msgid "Select one"
msgstr "Seleccione uno"
-#: .\cookbook\templates\url_import.html:225
+#: .\cookbook\templates\url_import.html:596
msgid "All Keywords"
msgstr "Todas las palabras clave."
-#: .\cookbook\templates\url_import.html:228
+#: .\cookbook\templates\url_import.html:599
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:255
+#: .\cookbook\templates\url_import.html:626
msgid "Information"
msgstr "Información"
-#: .\cookbook\templates\url_import.html:257
+#: .\cookbook\templates\url_import.html:628
msgid ""
" Only websites containing ld+json or microdata information can currently\n"
" be imported. Most big recipe pages "
@@ -1844,52 +2292,81 @@ msgstr ""
"no dudes en poner un ejemplo en las\n"
" propuestas de GitHub."
-#: .\cookbook\templates\url_import.html:265
+#: .\cookbook\templates\url_import.html:636
msgid "Google ld+json Info"
msgstr "Información de Google ld+json"
-#: .\cookbook\templates\url_import.html:268
+#: .\cookbook\templates\url_import.html:639
msgid "GitHub Issues"
msgstr "Propuestas de GitHub"
-#: .\cookbook\templates\url_import.html:270
+#: .\cookbook\templates\url_import.html:641
msgid "Recipe Markup Specification"
msgstr "Especificación de anotaciones de la receta"
-#: .\cookbook\views\api.py:71
+#: .\cookbook\views\api.py:77
#, fuzzy
#| msgid "Parameter filter_list incorrectly formatted"
msgid "Parameter updated_at incorrectly formatted"
msgstr "Parámetro filter_list formateado incorrectamente"
-#: .\cookbook\views\api.py:455 .\cookbook\views\views.py:226
+#: .\cookbook\views\api.py:553 .\cookbook\views\views.py:295
msgid "This feature is not available in the demo version!"
msgstr "¡Esta funcionalidad no está disponible en la versión demo!"
-#: .\cookbook\views\api.py:478
+#: .\cookbook\views\api.py:576
msgid "Sync successful!"
msgstr "¡Sincronización exitosa!"
-#: .\cookbook\views\api.py:483
+#: .\cookbook\views\api.py:581
msgid "Error synchronizing with Storage"
msgstr "Error de sincronización con el almacenamiento"
-#: .\cookbook\views\api.py:556 .\cookbook\views\api.py:576
+#: .\cookbook\views\api.py:649
+msgid "Nothing to do."
+msgstr ""
+
+#: .\cookbook\views\api.py:664
+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:671
msgid "The requested page could not be found."
msgstr "La página solicitada no pudo ser encontrada."
-#: .\cookbook\views\api.py:585
+#: .\cookbook\views\api.py:680
msgid ""
-"The requested page refused to provide any information (Status Code 403)."
+"The requested site does not provide any recognized data format to import the "
+"recipe from."
msgstr ""
-"La página solicitada se negó a proporcionar información (Código de estado "
-"403)."
+"El sitio solicitado no proporciona ningún formato de datos reconocido para "
+"importar la receta."
-#: .\cookbook\views\api.py:611
-msgid "Could not parse correctly..."
+#: .\cookbook\views\api.py:694
+#, 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:710
+msgid "I couldn't find anything to do."
msgstr ""
-#: .\cookbook\views\data.py:94
+#: .\cookbook\views\data.py:30 .\cookbook\views\data.py:121
+#: .\cookbook\views\edit.py:50 .\cookbook\views\import_export.py:67
+#: .\cookbook\views\new.py:32
+msgid "You have reached the maximum number of recipes for your space."
+msgstr ""
+
+#: .\cookbook\views\data.py:34 .\cookbook\views\data.py:125
+#: .\cookbook\views\edit.py:54 .\cookbook\views\import_export.py:71
+#: .\cookbook\views\new.py:36
+msgid "You have more users than allowed in your space."
+msgstr ""
+
+#: .\cookbook\views\data.py:103
#, python-format
msgid "Batch edit done. %(count)d recipe was updated."
msgid_plural "Batch edit done. %(count)d Recipes where updated."
@@ -1901,7 +2378,7 @@ msgid "Monitor"
msgstr "Monitor"
#: .\cookbook\views\delete.py:96 .\cookbook\views\lists.py:102
-#: .\cookbook\views\new.py:86
+#: .\cookbook\views\new.py:98
msgid "Storage Backend"
msgstr "Backend de Almacenamiento"
@@ -1912,8 +2389,8 @@ msgstr ""
"No se pudo borrar este backend de almacenamiento ya que se utiliza en al "
"menos un monitor."
-#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:204
-#: .\cookbook\views\new.py:144
+#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:213
+#: .\cookbook\views\new.py:156
msgid "Recipe Book"
msgstr "Libro de recetas"
@@ -1921,55 +2398,55 @@ msgstr "Libro de recetas"
msgid "Bookmarks"
msgstr "Marcadores"
-#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:214
+#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:252
msgid "Invite Link"
msgstr "Enlace de invitación"
-#: .\cookbook\views\edit.py:110
+#: .\cookbook\views\edit.py:119
msgid "Food"
msgstr "Comida"
-#: .\cookbook\views\edit.py:119
+#: .\cookbook\views\edit.py:128
msgid "You cannot edit this storage!"
msgstr "¡No puede editar este almacenamiento!"
-#: .\cookbook\views\edit.py:139
+#: .\cookbook\views\edit.py:148
msgid "Storage saved!"
msgstr "¡Almacenamiento guardado!"
-#: .\cookbook\views\edit.py:145
+#: .\cookbook\views\edit.py:154
msgid "There was an error updating this storage backend!"
msgstr "¡Hubo un error al actualizar este backend de almacenamiento!"
-#: .\cookbook\views\edit.py:156
+#: .\cookbook\views\edit.py:165
msgid "Storage"
msgstr "Almacenamiento"
-#: .\cookbook\views\edit.py:252
+#: .\cookbook\views\edit.py:261
msgid "Changes saved!"
msgstr "¡Cambios guardados!"
-#: .\cookbook\views\edit.py:256
+#: .\cookbook\views\edit.py:265
msgid "Error saving changes!"
msgstr "¡Error al guardar los cambios!"
-#: .\cookbook\views\edit.py:289
+#: .\cookbook\views\edit.py:299
msgid "Units merged!"
msgstr "¡Unidades fusionadas!"
-#: .\cookbook\views\edit.py:291 .\cookbook\views\edit.py:307
+#: .\cookbook\views\edit.py:301 .\cookbook\views\edit.py:317
msgid "Cannot merge with the same object!"
msgstr "¡No se puede unir con el mismo objeto!"
-#: .\cookbook\views\edit.py:305
+#: .\cookbook\views\edit.py:315
msgid "Foods merged!"
msgstr "¡Alimentos fusionados!"
-#: .\cookbook\views\import_export.py:73
+#: .\cookbook\views\import_export.py:93
msgid "Importing is not implemented for this provider"
msgstr "La importación no está implementada para este proveedor"
-#: .\cookbook\views\import_export.py:92
+#: .\cookbook\views\import_export.py:115
msgid "Exporting is not implemented for this provider"
msgstr "La exportación no está implementada para este proveedor"
@@ -1985,23 +2462,77 @@ msgstr "Descubrimiento"
msgid "Shopping Lists"
msgstr "Listas de la compra"
-#: .\cookbook\views\new.py:111
+#: .\cookbook\views\new.py:123
msgid "Imported new recipe!"
msgstr "¡Nueva receta importada!"
-#: .\cookbook\views\new.py:114
+#: .\cookbook\views\new.py:126
msgid "There was an error importing this recipe!"
msgstr "¡Hubo un error al importar esta receta!"
-#: .\cookbook\views\views.py:123
+#: .\cookbook\views\new.py:226
+msgid "Hello"
+msgstr ""
+
+#: .\cookbook\views\new.py:226
+msgid "You have been invited by "
+msgstr ""
+
+#: .\cookbook\views\new.py:227
+msgid " to join their Tandoor Recipes space "
+msgstr ""
+
+#: .\cookbook\views\new.py:228
+msgid "Click the following link to activate your account: "
+msgstr ""
+
+#: .\cookbook\views\new.py:229
+msgid ""
+"If the link does not work use the following code to manually join the space: "
+msgstr ""
+
+#: .\cookbook\views\new.py:230
+msgid "The invitation is valid until "
+msgstr ""
+
+#: .\cookbook\views\new.py:231
+msgid ""
+"Tandoor Recipes is an Open Source recipe manager. Check it out on GitHub "
+msgstr ""
+
+#: .\cookbook\views\new.py:234
+msgid "Tandoor Recipes Invite"
+msgstr ""
+
+#: .\cookbook\views\new.py:241
+msgid "Invite link successfully send to user."
+msgstr ""
+
+#: .\cookbook\views\new.py:244
+msgid ""
+"You have send to many emails, please share the link manually or wait a few "
+"hours."
+msgstr ""
+
+#: .\cookbook\views\new.py:246
+msgid "Email to user could not be send, please share link manually."
+msgstr ""
+
+#: .\cookbook\views\views.py:125
+msgid ""
+"You have successfully created your own recipe space. Start by adding some "
+"recipes or invite other people to join you."
+msgstr ""
+
+#: .\cookbook\views\views.py:173
msgid "You do not have the required permissions to perform this action!"
msgstr "¡No tienes los permisos necesarios para realizar esta acción!"
-#: .\cookbook\views\views.py:134
+#: .\cookbook\views\views.py:184
msgid "Comment saved!"
msgstr "¡Comentario guardado!"
-#: .\cookbook\views\views.py:326
+#: .\cookbook\views\views.py:396
msgid ""
"The setup page can only be used to create the first user! If you have "
"forgotten your superuser credentials please consult the django documentation "
@@ -2011,22 +2542,59 @@ msgstr ""
"usuario. Si has olvidado tus credenciales de superusuario, por favor "
"consulta la documentación de django sobre cómo restablecer las contraseñas."
-#: .\cookbook\views\views.py:333 .\cookbook\views\views.py:378
+#: .\cookbook\views\views.py:403
msgid "Passwords dont match!"
msgstr "¡Las contraseñas no coinciden!"
-#: .\cookbook\views\views.py:349 .\cookbook\views\views.py:385
+#: .\cookbook\views\views.py:419
msgid "User has been created, please login!"
msgstr "El usuario ha sido creado, ¡inicie sesión!"
-#: .\cookbook\views\views.py:365
+#: .\cookbook\views\views.py:435
msgid "Malformed Invite Link supplied!"
msgstr "¡Se proporcionó un enlace de invitación con formato incorrecto!"
-#: .\cookbook\views\views.py:405
+#: .\cookbook\views\views.py:441
+#, fuzzy
+#| msgid "You are not logged in and therefore cannot view this page!"
+msgid "You are already member of a space and therefore cannot join this one."
+msgstr "¡No ha iniciado sesión y por lo tanto no puede ver esta página!"
+
+#: .\cookbook\views\views.py:452
+msgid "Successfully joined space."
+msgstr ""
+
+#: .\cookbook\views\views.py:458
msgid "Invite Link not valid or already used!"
msgstr "¡El enlace de invitación no es válido o ya se ha utilizado!"
+#~ msgid ""
+#~ "A username is not required, if left blank the new user can choose one."
+#~ msgstr ""
+#~ "No se requiere un nombre de usuario, si se deja en blanco, el nuevo "
+#~ "usuario puede elegir uno."
+
+#~ msgid "Imported from"
+#~ msgstr "Importado de"
+
+#~ msgid "Link"
+#~ msgstr "Enlace"
+
+#~ msgid "Logout"
+#~ msgstr "Cerrar sesión"
+
+#~ msgid "Website Import"
+#~ msgstr "Importación de sitios web"
+
+#~ msgid "There was an error creating a resource!"
+#~ msgstr "¡Hubo un error al crear un recurso!"
+
+#~ msgid ""
+#~ "The requested page refused to provide any information (Status Code 403)."
+#~ msgstr ""
+#~ "La página solicitada se negó a proporcionar información (Código de estado "
+#~ "403)."
+
#~ msgid "Number of servings"
#~ msgstr "Número de raciones"
@@ -2048,6 +2616,3 @@ msgstr "¡El enlace de invitación no es válido o ya se ha utilizado!"
#~ msgid "This recipe is already linked to the book!"
#~ msgstr "¡Esta receta ya está enlazada al libro!"
-
-#~ msgid "Bookmark saved!"
-#~ msgstr "¡Marcador guardado!"
diff --git a/cookbook/locale/fr/LC_MESSAGES/django.po b/cookbook/locale/fr/LC_MESSAGES/django.po
index 0fc1e12f..2bea1ebe 100644
--- a/cookbook/locale/fr/LC_MESSAGES/django.po
+++ b/cookbook/locale/fr/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-04-11 15:09+0200\n"
+"POT-Creation-Date: 2021-06-12 20:30+0200\n"
"PO-Revision-Date: 2020-06-02 19:28+0000\n"
"Last-Translator: Grégoire Menuel /remote."
"php/webdav/
is added automatically)"
@@ -195,26 +199,26 @@ msgstr ""
"Laisser vide pour Dropbox et saisissez seulement l'URL de base pour "
"Nextcloud (/remote.php/webdav/
est ajouté automatiquement)"
-#: .\cookbook\forms.py:291
+#: .\cookbook\forms.py:307
msgid "Search String"
msgstr "Texte recherché"
-#: .\cookbook\forms.py:318
+#: .\cookbook\forms.py:334
msgid "File ID"
msgstr "ID du fichier"
-#: .\cookbook\forms.py:354
+#: .\cookbook\forms.py:370
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:367
+#: .\cookbook\forms.py:383
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:368
-#: .\cookbook\templates\forms\edit_internal_recipe.html:377
+#: .\cookbook\forms.py:384
+#: .\cookbook\templates\forms\edit_internal_recipe.html:404
msgid ""
"You can use markdown to format this field. See the docs here"
@@ -222,52 +226,59 @@ msgstr ""
"Vous pouvez utiliser du markdown pour mettre en forme ce champ. Voir la documentation ici"
-#: .\cookbook\forms.py:393
-msgid "A username is not required, if left blank the new user can choose one."
+#: .\cookbook\forms.py:409
+msgid "Maximum number of users for this space reached."
msgstr ""
-"Il n'est pas obligatoire de renseigner un nom d'utilisateur. S'il est laissé "
-"vide, le nouvel utilisateur pourra le choisir."
-#: .\cookbook\helper\permission_helper.py:123
-#: .\cookbook\helper\permission_helper.py:129
-#: .\cookbook\helper\permission_helper.py:151
-#: .\cookbook\helper\permission_helper.py:196
-#: .\cookbook\helper\permission_helper.py:210
-#: .\cookbook\helper\permission_helper.py:221
-#: .\cookbook\helper\permission_helper.py:232 .\cookbook\views\data.py:30
-#: .\cookbook\views\views.py:112 .\cookbook\views\views.py:116
-#: .\cookbook\views\views.py:184
-msgid "You do not have the required permissions to view this page!"
-msgstr "Vous n'avez pas les droits suffisants pour afficher cette page !"
+#: .\cookbook\forms.py:415
+msgid "Email address already taken!"
+msgstr ""
-#: .\cookbook\helper\permission_helper.py:141
+#: .\cookbook\forms.py:423
+msgid ""
+"An email address is not required but if present the invite link will be send "
+"to the user."
+msgstr ""
+
+#: .\cookbook\forms.py:438
+msgid "Name already taken."
+msgstr ""
+
+#: .\cookbook\forms.py:449
+msgid "Accept Terms and Privacy"
+msgstr ""
+
+#: .\cookbook\helper\AllAuthCustomAdapter.py:30
+msgid ""
+"In order to prevent spam, the requested email was not send. Please wait a "
+"few minutes and try again."
+msgstr ""
+
+#: .\cookbook\helper\permission_helper.py:124
+#: .\cookbook\helper\permission_helper.py:144 .\cookbook\views\views.py:147
msgid "You are not logged in and therefore cannot view this page!"
msgstr "Vous n'êtes pas connecté et ne pouvez donc pas afficher cette page !"
-#: .\cookbook\helper\permission_helper.py:145
-#: .\cookbook\helper\permission_helper.py:167
-#: .\cookbook\helper\permission_helper.py:182
+#: .\cookbook\helper\permission_helper.py:127
+#: .\cookbook\helper\permission_helper.py:132
+#: .\cookbook\helper\permission_helper.py:154
+#: .\cookbook\helper\permission_helper.py:199
+#: .\cookbook\helper\permission_helper.py:213
+#: .\cookbook\helper\permission_helper.py:224
+#: .\cookbook\helper\permission_helper.py:235 .\cookbook\views\data.py:39
+#: .\cookbook\views\views.py:158 .\cookbook\views\views.py:165
+#: .\cookbook\views\views.py:253
+msgid "You do not have the required permissions to view this page!"
+msgstr "Vous n'avez pas les droits suffisants pour afficher cette page !"
+
+#: .\cookbook\helper\permission_helper.py:148
+#: .\cookbook\helper\permission_helper.py:170
+#: .\cookbook\helper\permission_helper.py:185
msgid "You cannot interact with this object as it is not owned by you!"
msgstr ""
"Vous ne pouvez pas interagir avec cet objet car il appartient à un autre "
"utilisateur."
-#: .\cookbook\helper\recipe_url_import.py:40 .\cookbook\views\api.py:549
-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\helper\recipe_url_import.py:54
-msgid ""
-"The requested site does not provide any recognized data format to import the "
-"recipe from."
-msgstr ""
-"Le site web est dans un format qui ne permet pas d'importer automatiquement "
-"la recette."
-
-#: .\cookbook\helper\recipe_url_import.py:160
-msgid "Imported from"
-msgstr "Importé depuis"
-
#: .\cookbook\helper\template_helper.py:60
#: .\cookbook\helper\template_helper.py:62
msgid "Could not parse template code."
@@ -277,47 +288,58 @@ msgstr ""
#: .\cookbook\templates\import.html:14 .\cookbook\templates\import.html:20
#: .\cookbook\templates\import_response.html:7
#: .\cookbook\templates\test.html:14 .\cookbook\templates\test.html:20
-#: .\cookbook\templates\url_import.html:233 .\cookbook\views\delete.py:60
-#: .\cookbook\views\edit.py:190
+#: .\cookbook\templates\url_import.html:27
+#: .\cookbook\templates\url_import.html:101
+#: .\cookbook\templates\url_import.html:123
+#: .\cookbook\templates\url_import.html:317
+#: .\cookbook\templates\url_import.html:604 .\cookbook\views\delete.py:60
+#: .\cookbook\views\edit.py:199
msgid "Import"
msgstr "Importer"
-#: .\cookbook\integration\integration.py:131
+#: .\cookbook\integration\integration.py:162
msgid ""
"Importer expected a .zip file. Did you choose the correct importer type for "
"your data ?"
msgstr ""
-#: .\cookbook\integration\integration.py:134
+#: .\cookbook\integration\integration.py:165
+msgid ""
+"An unexpected error occurred during the import. Please make sure you have "
+"uploaded a valid file."
+msgstr ""
+
+#: .\cookbook\integration\integration.py:169
msgid "The following recipes were ignored because they already existed:"
msgstr ""
-#: .\cookbook\integration\integration.py:137
+#: .\cookbook\integration\integration.py:173
#, fuzzy, python-format
#| msgid "Imported new recipe!"
msgid "Imported %s recipes."
msgstr "Nouvelle recette importée !"
-#: .\cookbook\integration\paprika.py:44
+#: .\cookbook\integration\paprika.py:46
#, fuzzy
#| msgid "Note"
msgid "Notes"
msgstr "Notes"
-#: .\cookbook\integration\paprika.py:47
+#: .\cookbook\integration\paprika.py:49
#, fuzzy
#| msgid "Information"
msgid "Nutritional Information"
msgstr "Information"
-#: .\cookbook\integration\paprika.py:50
+#: .\cookbook\integration\paprika.py:53
msgid "Source"
msgstr ""
#: .\cookbook\integration\safron.py:23
-#: .\cookbook\templates\forms\edit_internal_recipe.html:75
+#: .\cookbook\templates\forms\edit_internal_recipe.html:79
#: .\cookbook\templates\include\log_cooking.html:16
-#: .\cookbook\templates\url_import.html:84
+#: .\cookbook\templates\url_import.html:224
+#: .\cookbook\templates\url_import.html:455
msgid "Servings"
msgstr "Portions"
@@ -326,11 +348,11 @@ msgid "Waiting time"
msgstr ""
#: .\cookbook\integration\safron.py:27
-#: .\cookbook\templates\forms\edit_internal_recipe.html:69
+#: .\cookbook\templates\forms\edit_internal_recipe.html:73
msgid "Preparation Time"
msgstr "Temps de préparation"
-#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:71
+#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:78
#: .\cookbook\templates\forms\ingredients.html:7
#: .\cookbook\templates\index.html:7
msgid "Cookbook"
@@ -356,44 +378,74 @@ msgstr "Dîner"
msgid "Other"
msgstr "Autre"
-#: .\cookbook\models.py:110 .\cookbook\templates\shopping_list.html:48
+#: .\cookbook\models.py:71
+msgid ""
+"Maximum file storage for space in MB. 0 for unlimited, -1 to disable file "
+"upload."
+msgstr ""
+
+#: .\cookbook\models.py:121 .\cookbook\templates\search.html:7
+#: .\cookbook\templates\shopping_list.html:52
msgid "Search"
msgstr "Recherche"
-#: .\cookbook\models.py:111 .\cookbook\templates\base.html:85
+#: .\cookbook\models.py:122 .\cookbook\templates\base.html:92
#: .\cookbook\templates\meal_plan.html:5 .\cookbook\views\delete.py:152
-#: .\cookbook\views\edit.py:224 .\cookbook\views\new.py:188
+#: .\cookbook\views\edit.py:233 .\cookbook\views\new.py:201
msgid "Meal-Plan"
msgstr "Menu de la semaine"
-#: .\cookbook\models.py:112 .\cookbook\templates\base.html:82
+#: .\cookbook\models.py:123 .\cookbook\templates\base.html:89
msgid "Books"
msgstr "Livres"
-#: .\cookbook\models.py:119
+#: .\cookbook\models.py:131
msgid "Small"
msgstr "Petit"
-#: .\cookbook\models.py:119
+#: .\cookbook\models.py:131
msgid "Large"
msgstr "Grand"
-#: .\cookbook\models.py:327
-#: .\cookbook\templates\forms\edit_internal_recipe.html:198
+#: .\cookbook\models.py:131 .\cookbook\templates\generic\new_template.html:6
+#: .\cookbook\templates\generic\new_template.html:14
+#: .\cookbook\templates\meal_plan.html:323
+msgid "New"
+msgstr "Nouveau"
+
+#: .\cookbook\models.py:340
+#: .\cookbook\templates\forms\edit_internal_recipe.html:202
msgid "Text"
msgstr "Texte"
-#: .\cookbook\models.py:327
-#: .\cookbook\templates\forms\edit_internal_recipe.html:199
+#: .\cookbook\models.py:340
+#: .\cookbook\templates\forms\edit_internal_recipe.html:203
msgid "Time"
msgstr "Temps"
+#: .\cookbook\models.py:340
+#: .\cookbook\templates\forms\edit_internal_recipe.html:204
+#: .\cookbook\templates\forms\edit_internal_recipe.html:218
+#, fuzzy
+#| msgid "File ID"
+msgid "File"
+msgstr "ID du fichier"
+
+#: .\cookbook\serializer.py:109
+msgid "File uploads are not enabled for this Space."
+msgstr ""
+
+#: .\cookbook\serializer.py:117
+msgid "You have reached your file upload limit."
+msgstr ""
+
#: .\cookbook\tables.py:35 .\cookbook\templates\books.html:36
#: .\cookbook\templates\generic\edit_template.html:6
#: .\cookbook\templates\generic\edit_template.html:14
#: .\cookbook\templates\meal_plan.html:281
#: .\cookbook\templates\recipes_table.html:82
#: .\cookbook\templates\shopping_list.html:33
+#: .\cookbook\templates\space.html:84
msgid "Edit"
msgstr "Modifier"
@@ -407,10 +459,6 @@ msgstr "Modifier"
msgid "Delete"
msgstr "Supprimer"
-#: .\cookbook\tables.py:144
-msgid "Link"
-msgstr "Lien"
-
#: .\cookbook\templates\404.html:5
msgid "404 Error"
msgstr "Erreur 404"
@@ -427,21 +475,124 @@ msgstr "Page d'accueil"
msgid "Report a Bug"
msgstr "Signaler un bogue"
-#: .\cookbook\templates\account\login.html:7
-#: .\cookbook\templates\base.html:170
+#: .\cookbook\templates\account\email.html:6
+#: .\cookbook\templates\account\email.html:9
+msgid "E-mail Addresses"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:11
+msgid "The following e-mail addresses are associated with your account:"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:28
+msgid "Verified"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:30
+msgid "Unverified"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:32
+msgid "Primary"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:39
+#, fuzzy
+#| msgid "Make Header"
+msgid "Make Primary"
+msgstr "Transformer en texte"
+
+#: .\cookbook\templates\account\email.html:41
+msgid "Re-send Verification"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:42
+#: .\cookbook\templates\socialaccount\connections.html:36
+msgid "Remove"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:50
+#, fuzzy
+#| msgid "Warning"
+msgid "Warning:"
+msgstr "Avertissement"
+
+#: .\cookbook\templates\account\email.html:50
+msgid ""
+"You currently do not have any e-mail address set up. You should really add "
+"an e-mail address so you can receive notifications, reset your password, etc."
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:56
+msgid "Add E-mail Address"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:61
+msgid "Add E-mail"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:71
+msgid "Do you really want to remove the selected e-mail address?"
+msgstr ""
+
+#: .\cookbook\templates\account\email_confirm.html:6
+#: .\cookbook\templates\account\email_confirm.html:10
+msgid "Confirm E-mail Address"
+msgstr ""
+
+#: .\cookbook\templates\account\email_confirm.html:16
+#, python-format
+msgid ""
+"Please confirm that\n"
+" %(email)s is an e-mail address "
+"for user %(user_display)s\n"
+" ."
+msgstr ""
+
+#: .\cookbook\templates\account\email_confirm.html:22
+#: .\cookbook\templates\generic\delete_template.html:21
+msgid "Confirm"
+msgstr "Confirmer"
+
+#: .\cookbook\templates\account\email_confirm.html:29
+#, python-format
+msgid ""
+"This e-mail confirmation link expired or is invalid. Please\n"
+" issue a new e-mail confirmation "
+"request."
+msgstr ""
+
+#: .\cookbook\templates\account\login.html:8
+#: .\cookbook\templates\base.html:180
msgid "Login"
msgstr "Connexion"
-#: .\cookbook\templates\account\login.html:13
-#: .\cookbook\templates\account\login.html:28
+#: .\cookbook\templates\account\login.html:15
+#: .\cookbook\templates\account\login.html:31
+#: .\cookbook\templates\account\signup.html:69
+#: .\cookbook\templates\account\signup_closed.html:15
msgid "Sign In"
msgstr ""
-#: .\cookbook\templates\account\login.html:38
+#: .\cookbook\templates\account\login.html:32
+msgid "Sign Up"
+msgstr ""
+
+#: .\cookbook\templates\account\login.html:36
+#: .\cookbook\templates\account\login.html:37
+#: .\cookbook\templates\account\password_reset.html:29
+msgid "Reset My Password"
+msgstr ""
+
+#: .\cookbook\templates\account\login.html:37
+msgid "Lost your password?"
+msgstr ""
+
+#: .\cookbook\templates\account\login.html:48
msgid "Social Login"
msgstr ""
-#: .\cookbook\templates\account\login.html:39
+#: .\cookbook\templates\account\login.html:49
msgid "You can use any of the following providers to sign in."
msgstr ""
@@ -455,116 +606,166 @@ msgstr ""
msgid "Are you sure you want to sign out?"
msgstr ""
-#: .\cookbook\templates\account\password_reset.html:5
-#: .\cookbook\templates\account\password_reset_done.html:5
+#: .\cookbook\templates\account\password_reset.html:7
+#: .\cookbook\templates\account\password_reset.html:13
+#: .\cookbook\templates\account\password_reset_done.html:7
+#: .\cookbook\templates\account\password_reset_done.html:10
msgid "Password Reset"
msgstr ""
-#: .\cookbook\templates\account\password_reset.html:9
-#: .\cookbook\templates\account\password_reset_done.html:9
-msgid "Password reset is not implemented for the time being!"
+#: .\cookbook\templates\account\password_reset.html:24
+msgid ""
+"Forgotten your password? Enter your e-mail address below, and we'll send you "
+"an e-mail allowing you to reset it."
msgstr ""
-#: .\cookbook\templates\account\signup.html:5
+#: .\cookbook\templates\account\password_reset.html:32
+msgid "Password reset is disabled on this instance."
+msgstr ""
+
+#: .\cookbook\templates\account\password_reset_done.html:16
+msgid ""
+"We have sent you an e-mail. Please contact us if you do not receive it "
+"within a few minutes."
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:6
msgid "Register"
msgstr "S'inscrire"
-#: .\cookbook\templates\account\signup.html:9
-msgid "Create your Account"
+#: .\cookbook\templates\account\signup.html:12
+#, fuzzy
+#| msgid "Create your Account"
+msgid "Create an Account"
msgstr "Créez votre compte"
-#: .\cookbook\templates\account\signup.html:14
+#: .\cookbook\templates\account\signup.html:42
+msgid "I accept the follwoing"
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:45
+msgid "Terms and Conditions"
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:48
+msgid "and"
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:52
+msgid "Privacy Policy"
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:65
msgid "Create User"
msgstr "Créer un utilisateur"
-#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:160
+#: .\cookbook\templates\account\signup.html:69
+msgid "Already have an account?"
+msgstr ""
+
+#: .\cookbook\templates\account\signup_closed.html:5
+#: .\cookbook\templates\account\signup_closed.html:11
+msgid "Sign Up Closed"
+msgstr ""
+
+#: .\cookbook\templates\account\signup_closed.html:13
+msgid "We are sorry, but the sign up is currently closed."
+msgstr ""
+
+#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:170
#: .\cookbook\templates\rest_framework\api.html:11
msgid "API Documentation"
msgstr "Documentation API"
-#: .\cookbook\templates\base.html:78
+#: .\cookbook\templates\base.html:85
msgid "Utensils"
msgstr "Ustensiles"
-#: .\cookbook\templates\base.html:88
+#: .\cookbook\templates\base.html:95
msgid "Shopping"
msgstr "Courses"
-#: .\cookbook\templates\base.html:102 .\cookbook\views\delete.py:84
-#: .\cookbook\views\edit.py:93 .\cookbook\views\lists.py:26
-#: .\cookbook\views\new.py:66
+#: .\cookbook\templates\base.html:109 .\cookbook\views\delete.py:84
+#: .\cookbook\views\edit.py:102 .\cookbook\views\lists.py:26
+#: .\cookbook\views\new.py:78
msgid "Keyword"
msgstr "Mot-clé"
-#: .\cookbook\templates\base.html:104
+#: .\cookbook\templates\base.html:111
msgid "Batch Edit"
msgstr "Modification en masse"
-#: .\cookbook\templates\base.html:109
+#: .\cookbook\templates\base.html:116
msgid "Storage Data"
msgstr "Données de stockage"
-#: .\cookbook\templates\base.html:113
+#: .\cookbook\templates\base.html:120
msgid "Storage Backends"
msgstr "Espaces de stockage"
-#: .\cookbook\templates\base.html:115
+#: .\cookbook\templates\base.html:122
msgid "Configure Sync"
msgstr "Configurer synchro"
-#: .\cookbook\templates\base.html:117
+#: .\cookbook\templates\base.html:124
msgid "Discovered Recipes"
msgstr "Recettes découvertes"
-#: .\cookbook\templates\base.html:119
+#: .\cookbook\templates\base.html:126
msgid "Discovery Log"
msgstr "Historique des découvertes"
-#: .\cookbook\templates\base.html:121 .\cookbook\templates\stats.html:10
+#: .\cookbook\templates\base.html:128 .\cookbook\templates\stats.html:10
msgid "Statistics"
msgstr "Statistiques"
-#: .\cookbook\templates\base.html:123
+#: .\cookbook\templates\base.html:130
msgid "Units & Ingredients"
msgstr "Unités et ingrédients"
-#: .\cookbook\templates\base.html:125
+#: .\cookbook\templates\base.html:132 .\cookbook\templates\index.html:47
msgid "Import Recipe"
msgstr "Importer une recette"
-#: .\cookbook\templates\base.html:144 .\cookbook\templates\settings.html:6
+#: .\cookbook\templates\base.html:151 .\cookbook\templates\settings.html:6
#: .\cookbook\templates\settings.html:16
msgid "Settings"
msgstr "Paramètres"
-#: .\cookbook\templates\base.html:146 .\cookbook\templates\history.html:6
+#: .\cookbook\templates\base.html:153 .\cookbook\templates\history.html:6
#: .\cookbook\templates\history.html:14
msgid "History"
msgstr "Historique"
-#: .\cookbook\templates\base.html:150 .\cookbook\templates\system.html:13
+#: .\cookbook\templates\base.html:155 .\cookbook\templates\space.html:7
+#, fuzzy
+#| msgid "Settings"
+msgid "Space Settings"
+msgstr "Paramètres"
+
+#: .\cookbook\templates\base.html:160 .\cookbook\templates\system.html:13
msgid "System"
msgstr "Système"
-#: .\cookbook\templates\base.html:152
+#: .\cookbook\templates\base.html:162
msgid "Admin"
msgstr "Admin"
-#: .\cookbook\templates\base.html:156
+#: .\cookbook\templates\base.html:166
msgid "Markdown Guide"
msgstr "Guide Markdown"
-#: .\cookbook\templates\base.html:158
+#: .\cookbook\templates\base.html:168
msgid "GitHub"
msgstr "GitHub"
-#: .\cookbook\templates\base.html:162
+#: .\cookbook\templates\base.html:172
msgid "API Browser"
msgstr "Navigateur API"
-#: .\cookbook\templates\base.html:165
-msgid "Logout"
-msgstr "Déconnexion"
+#: .\cookbook\templates\base.html:175
+msgid "Log out"
+msgstr ""
#: .\cookbook\templates\batch\edit.html:6
msgid "Batch edit Category"
@@ -578,7 +779,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:76
+#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:85
msgid "Sync"
msgstr "Synchro"
@@ -607,7 +808,7 @@ msgstr "Lancer la synchro !"
msgid "Importing Recipes"
msgstr "Importer des ecettes"
-#: .\cookbook\templates\batch\waiting.html:23
+#: .\cookbook\templates\batch\waiting.html:28
msgid ""
"This can take a few minutes, depending on the number of recipes in sync, "
"please wait."
@@ -646,26 +847,33 @@ msgid "Export Recipes"
msgstr "Exporter des ecettes"
#: .\cookbook\templates\export.html:14 .\cookbook\templates\export.html:20
-#: .\cookbook\templates\shopping_list.html:347
+#: .\cookbook\templates\shopping_list.html:351
#: .\cookbook\templates\test2.html:14 .\cookbook\templates\test2.html:20
msgid "Export"
msgstr "Exporter"
+#: .\cookbook\templates\files.html:7
+#, fuzzy
+#| msgid "File ID"
+msgid "Files"
+msgstr "ID du fichier"
+
#: .\cookbook\templates\forms\edit_import_recipe.html:5
#: .\cookbook\templates\forms\edit_import_recipe.html:9
msgid "Import new Recipe"
msgstr "Importer une nouvelle recette"
#: .\cookbook\templates\forms\edit_import_recipe.html:14
-#: .\cookbook\templates\forms\edit_internal_recipe.html:389
-#: .\cookbook\templates\forms\edit_internal_recipe.html:421
+#: .\cookbook\templates\forms\edit_internal_recipe.html:416
+#: .\cookbook\templates\forms\edit_internal_recipe.html:448
#: .\cookbook\templates\generic\edit_template.html:23
#: .\cookbook\templates\generic\new_template.html:23
#: .\cookbook\templates\include\log_cooking.html:28
#: .\cookbook\templates\meal_plan.html:325
-#: .\cookbook\templates\settings.html:28 .\cookbook\templates\settings.html:35
-#: .\cookbook\templates\settings.html:58 .\cookbook\templates\settings.html:73
-#: .\cookbook\templates\shopping_list.html:349
+#: .\cookbook\templates\settings.html:44 .\cookbook\templates\settings.html:52
+#: .\cookbook\templates\settings.html:96
+#: .\cookbook\templates\settings.html:114
+#: .\cookbook\templates\shopping_list.html:353
msgid "Save"
msgstr "Sauvegarder"
@@ -674,181 +882,190 @@ msgstr "Sauvegarder"
msgid "Edit Recipe"
msgstr "Modifier une recette"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:52
+#: .\cookbook\templates\forms\edit_internal_recipe.html:56
+#: .\cookbook\templates\url_import.html:171
msgid "Description"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:72
+#: .\cookbook\templates\forms\edit_internal_recipe.html:76
msgid "Waiting Time"
msgstr "Temps d'attente"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:78
+#: .\cookbook\templates\forms\edit_internal_recipe.html:82
msgid "Servings Text"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:89
+#: .\cookbook\templates\forms\edit_internal_recipe.html:93
msgid "Select Keywords"
msgstr "Sélectionner des mots-clés"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:90
-#: .\cookbook\templates\url_import.html:212
+#: .\cookbook\templates\forms\edit_internal_recipe.html:94
+#: .\cookbook\templates\url_import.html:583
#, fuzzy
#| msgid "All Keywords"
msgid "Add Keyword"
msgstr "Tous les mots-clés"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:108
+#: .\cookbook\templates\forms\edit_internal_recipe.html:112
msgid "Nutrition"
msgstr "Informations nutritionnelles"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:112
-#: .\cookbook\templates\forms\edit_internal_recipe.html:162
+#: .\cookbook\templates\forms\edit_internal_recipe.html:116
+#: .\cookbook\templates\forms\edit_internal_recipe.html:166
msgid "Delete Step"
msgstr "Supprimer l'étape"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:116
+#: .\cookbook\templates\forms\edit_internal_recipe.html:120
msgid "Calories"
msgstr "Calories"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:119
+#: .\cookbook\templates\forms\edit_internal_recipe.html:123
msgid "Carbohydrates"
msgstr "Glucides"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:122
+#: .\cookbook\templates\forms\edit_internal_recipe.html:126
msgid "Fats"
msgstr "Matières grasses"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:124
+#: .\cookbook\templates\forms\edit_internal_recipe.html:128
msgid "Proteins"
msgstr "Protéines"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:146
-#: .\cookbook\templates\forms\edit_internal_recipe.html:454
+#: .\cookbook\templates\forms\edit_internal_recipe.html:150
+#: .\cookbook\templates\forms\edit_internal_recipe.html:481
msgid "Step"
msgstr "Étape"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:167
+#: .\cookbook\templates\forms\edit_internal_recipe.html:171
msgid "Show as header"
msgstr "Afficher en entête"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:173
+#: .\cookbook\templates\forms\edit_internal_recipe.html:177
msgid "Hide as header"
msgstr "Masquer en entête"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:178
+#: .\cookbook\templates\forms\edit_internal_recipe.html:182
msgid "Move Up"
msgstr "Remonter"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:183
+#: .\cookbook\templates\forms\edit_internal_recipe.html:187
msgid "Move Down"
msgstr "Descendre"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:192
+#: .\cookbook\templates\forms\edit_internal_recipe.html:196
msgid "Step Name"
msgstr "Nom de l'étape"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:196
+#: .\cookbook\templates\forms\edit_internal_recipe.html:200
msgid "Step Type"
msgstr "Type de l'étape"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:207
+#: .\cookbook\templates\forms\edit_internal_recipe.html:212
msgid "Step time in Minutes"
msgstr "Durée de l'étape en minutes"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:261
-#: .\cookbook\templates\shopping_list.html:183
-msgid "Select Unit"
-msgstr "Sélectionnez l'unité"
+#: .\cookbook\templates\forms\edit_internal_recipe.html:228
+#, fuzzy
+#| msgid "Select one"
+msgid "Select File"
+msgstr "Faites votre choix"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:262
-#: .\cookbook\templates\forms\edit_internal_recipe.html:286
-#: .\cookbook\templates\shopping_list.html:184
-#: .\cookbook\templates\shopping_list.html:206
-msgid "Create"
-msgstr "Créer"
-
-#: .\cookbook\templates\forms\edit_internal_recipe.html:263
-#: .\cookbook\templates\forms\edit_internal_recipe.html:287
-#: .\cookbook\templates\shopping_list.html:185
-#: .\cookbook\templates\shopping_list.html:207
-#: .\cookbook\templates\shopping_list.html:237
-#: .\cookbook\templates\shopping_list.html:261
-#: .\cookbook\templates\url_import.html:124
-#: .\cookbook\templates\url_import.html:156
+#: .\cookbook\templates\forms\edit_internal_recipe.html:229
+#: .\cookbook\templates\forms\edit_internal_recipe.html:290
+#: .\cookbook\templates\forms\edit_internal_recipe.html:314
+#: .\cookbook\templates\shopping_list.html:189
+#: .\cookbook\templates\shopping_list.html:211
+#: .\cookbook\templates\shopping_list.html:241
+#: .\cookbook\templates\shopping_list.html:265
+#: .\cookbook\templates\url_import.html:495
+#: .\cookbook\templates\url_import.html:527
msgid "Select"
msgstr "Sélectionner"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:285
-#: .\cookbook\templates\shopping_list.html:205
+#: .\cookbook\templates\forms\edit_internal_recipe.html:288
+#: .\cookbook\templates\shopping_list.html:187
+msgid "Select Unit"
+msgstr "Sélectionnez l'unité"
+
+#: .\cookbook\templates\forms\edit_internal_recipe.html:289
+#: .\cookbook\templates\forms\edit_internal_recipe.html:313
+#: .\cookbook\templates\shopping_list.html:188
+#: .\cookbook\templates\shopping_list.html:210
+msgid "Create"
+msgstr "Créer"
+
+#: .\cookbook\templates\forms\edit_internal_recipe.html:312
+#: .\cookbook\templates\shopping_list.html:209
msgid "Select Food"
msgstr "Sélectionnez l'ingrédient"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:302
+#: .\cookbook\templates\forms\edit_internal_recipe.html:329
#: .\cookbook\templates\meal_plan.html:256
-#: .\cookbook\templates\url_import.html:171
+#: .\cookbook\templates\url_import.html:542
msgid "Note"
msgstr "Notes"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:319
+#: .\cookbook\templates\forms\edit_internal_recipe.html:346
msgid "Delete Ingredient"
msgstr "Supprimer l'ingrédient"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:325
+#: .\cookbook\templates\forms\edit_internal_recipe.html:352
msgid "Make Header"
msgstr "Transformer en texte"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:331
+#: .\cookbook\templates\forms\edit_internal_recipe.html:358
msgid "Make Ingredient"
msgstr "Transformer en ingrédient"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:337
+#: .\cookbook\templates\forms\edit_internal_recipe.html:364
msgid "Disable Amount"
msgstr "Sans quantité"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:343
+#: .\cookbook\templates\forms\edit_internal_recipe.html:370
msgid "Enable Amount"
msgstr "Avec quantité"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:348
+#: .\cookbook\templates\forms\edit_internal_recipe.html:375
msgid "Copy Template Reference"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:374
-#: .\cookbook\templates\url_import.html:196
+#: .\cookbook\templates\forms\edit_internal_recipe.html:401
+#: .\cookbook\templates\url_import.html:297
+#: .\cookbook\templates\url_import.html:567
msgid "Instructions"
msgstr "Instructions"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:387
-#: .\cookbook\templates\forms\edit_internal_recipe.html:418
+#: .\cookbook\templates\forms\edit_internal_recipe.html:414
+#: .\cookbook\templates\forms\edit_internal_recipe.html:445
msgid "Save & View"
msgstr "Sauvegarder et afficher"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:391
-#: .\cookbook\templates\forms\edit_internal_recipe.html:424
+#: .\cookbook\templates\forms\edit_internal_recipe.html:418
+#: .\cookbook\templates\forms\edit_internal_recipe.html:451
msgid "Add Step"
msgstr "Ajouter une étape"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:394
-#: .\cookbook\templates\forms\edit_internal_recipe.html:428
+#: .\cookbook\templates\forms\edit_internal_recipe.html:421
+#: .\cookbook\templates\forms\edit_internal_recipe.html:455
msgid "Add Nutrition"
msgstr "Ajouter les informations nutritionnelles"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:396
-#: .\cookbook\templates\forms\edit_internal_recipe.html:430
+#: .\cookbook\templates\forms\edit_internal_recipe.html:423
+#: .\cookbook\templates\forms\edit_internal_recipe.html:457
msgid "Remove Nutrition"
msgstr "Supprimer les informations nutritionnelles"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:398
-#: .\cookbook\templates\forms\edit_internal_recipe.html:433
+#: .\cookbook\templates\forms\edit_internal_recipe.html:425
+#: .\cookbook\templates\forms\edit_internal_recipe.html:460
msgid "View Recipe"
msgstr "Afficher la recette"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:400
-#: .\cookbook\templates\forms\edit_internal_recipe.html:435
+#: .\cookbook\templates\forms\edit_internal_recipe.html:427
+#: .\cookbook\templates\forms\edit_internal_recipe.html:462
msgid "Delete Recipe"
msgstr "Supprimer la recette"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:441
+#: .\cookbook\templates\forms\edit_internal_recipe.html:468
msgid "Steps"
msgstr "Étapes"
@@ -873,7 +1090,7 @@ msgstr ""
"qui les utilisent."
#: .\cookbook\templates\forms\ingredients.html:24
-#: .\cookbook\templates\stats.html:26
+#: .\cookbook\templates\space.html:35 .\cookbook\templates\stats.html:26
msgid "Units"
msgstr "Unités"
@@ -895,10 +1112,6 @@ msgstr "Êtes-vous sûr(e) de vouloir fusionner ces deux ingrédients ?"
msgid "Are you sure you want to delete the %(title)s: %(object)s "
msgstr "Êtes-vous certain de vouloir supprimer %(title)s : %(object)s"
-#: .\cookbook\templates\generic\delete_template.html:21
-msgid "Confirm"
-msgstr "Confirmer"
-
#: .\cookbook\templates\generic\edit_template.html:30
msgid "View"
msgstr "Voir"
@@ -920,12 +1133,6 @@ msgstr "Filtre"
msgid "Import all"
msgstr "Tout importer"
-#: .\cookbook\templates\generic\new_template.html:6
-#: .\cookbook\templates\generic\new_template.html:14
-#: .\cookbook\templates\meal_plan.html:323
-msgid "New"
-msgstr "Nouveau"
-
#: .\cookbook\templates\generic\table_template.html:76
#: .\cookbook\templates\recipes_table.html:121
msgid "previous"
@@ -970,7 +1177,7 @@ msgstr "Fermer"
#: .\cookbook\templates\include\recipe_open_modal.html:7
#: .\cookbook\templates\meal_plan.html:247 .\cookbook\views\delete.py:28
-#: .\cookbook\views\edit.py:264 .\cookbook\views\new.py:40
+#: .\cookbook\views\edit.py:273 .\cookbook\views\new.py:52
msgid "Recipe"
msgstr "Recette"
@@ -1010,10 +1217,6 @@ msgstr "Rechercher une recette..."
msgid "New Recipe"
msgstr "Nouvelle ecette"
-#: .\cookbook\templates\index.html:47
-msgid "Website Import"
-msgstr "Importer depuis un site web"
-
#: .\cookbook\templates\index.html:53
msgid "Advanced Search"
msgstr "Recherche avancée"
@@ -1027,7 +1230,7 @@ msgid "Last viewed"
msgstr "Dernières recettes vues"
#: .\cookbook\templates\index.html:87 .\cookbook\templates\meal_plan.html:178
-#: .\cookbook\templates\stats.html:22
+#: .\cookbook\templates\space.html:29 .\cookbook\templates\stats.html:22
msgid "Recipes"
msgstr "Recettes"
@@ -1194,7 +1397,7 @@ msgid "New Entry"
msgstr "Nouvelle ligne"
#: .\cookbook\templates\meal_plan.html:113
-#: .\cookbook\templates\shopping_list.html:52
+#: .\cookbook\templates\shopping_list.html:56
msgid "Search Recipe"
msgstr "Rechercher une recette"
@@ -1227,7 +1430,7 @@ msgstr "Créer uniquement une note"
#: .\cookbook\templates\meal_plan.html:168
#: .\cookbook\templates\shopping_list.html:7
#: .\cookbook\templates\shopping_list.html:29
-#: .\cookbook\templates\shopping_list.html:705
+#: .\cookbook\templates\shopping_list.html:714
msgid "Shopping List"
msgstr "Liste de courses"
@@ -1278,7 +1481,7 @@ msgstr "Créé par"
#: .\cookbook\templates\meal_plan.html:270
#: .\cookbook\templates\meal_plan_entry.html:20
-#: .\cookbook\templates\shopping_list.html:250
+#: .\cookbook\templates\shopping_list.html:254
msgid "Shared with"
msgstr "Partagé avec"
@@ -1355,7 +1558,6 @@ msgstr "Vous n'êtes pas connecté et ne pouvez donc pas afficher cette page !"
#: .\cookbook\templates\no_groups_info.html:18
#: .\cookbook\templates\no_perm_info.html:15
-#: .\cookbook\templates\no_space_info.html:15
msgid "Please contact your administrator."
msgstr ""
@@ -1372,13 +1574,50 @@ msgid ""
"action."
msgstr "Vous n'avez pas la permission d'effectuer cette action !"
-#: .\cookbook\templates\no_space_info.html:5
-#: .\cookbook\templates\no_space_info.html:12
+#: .\cookbook\templates\no_space_info.html:6
+#: .\cookbook\templates\no_space_info.html:13
msgid "No Space"
msgstr ""
-#: .\cookbook\templates\no_space_info.html:15
-msgid "You are not a member of any space."
+#: .\cookbook\templates\no_space_info.html:17
+msgid ""
+"Recipes, foods, shopping lists and more are organized in spaces of one or "
+"more people."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:18
+msgid ""
+"You can either be invited into an existing space or create your own one."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:31
+#: .\cookbook\templates\no_space_info.html:40
+msgid "Join Space"
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:34
+msgid "Join an existing space."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:35
+msgid ""
+"To join an existing space either enter your invite token or click on the "
+"invite link the space owner send you."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:48
+#: .\cookbook\templates\no_space_info.html:56
+#, fuzzy
+#| msgid "Create User"
+msgid "Create Space"
+msgstr "Créer un utilisateur"
+
+#: .\cookbook\templates\no_space_info.html:51
+msgid "Create your own recipe space."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:52
+msgid "Start your own recipe space and invite other users to it."
msgstr ""
#: .\cookbook\templates\offline.html:6
@@ -1395,28 +1634,29 @@ msgid ""
"recently viewed them. Keep in mind that data might be outdated."
msgstr ""
-#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\stats.html:47
+#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\space.html:56
+#: .\cookbook\templates\stats.html:47
msgid "Comments"
msgstr "Commentaires"
#: .\cookbook\templates\recipe_view.html:44 .\cookbook\views\delete.py:118
-#: .\cookbook\views\edit.py:170
+#: .\cookbook\views\edit.py:179
msgid "Comment"
msgstr "Commentaire"
#: .\cookbook\templates\recipes_table.html:19
#: .\cookbook\templates\recipes_table.html:23
-#: .\cookbook\templates\url_import.html:69
+#: .\cookbook\templates\url_import.html:440
msgid "Recipe Image"
msgstr "Image de la recette"
#: .\cookbook\templates\recipes_table.html:51
-#: .\cookbook\templates\url_import.html:74
+#: .\cookbook\templates\url_import.html:445
msgid "Preparation time ca."
msgstr "Temps de préparation"
#: .\cookbook\templates\recipes_table.html:57
-#: .\cookbook\templates\url_import.html:79
+#: .\cookbook\templates\url_import.html:450
msgid "Waiting time ca."
msgstr "Temps de repos"
@@ -1432,27 +1672,63 @@ msgstr "Marquer cuisiné"
msgid "Recipe Home"
msgstr "Page d'accueil"
-#: .\cookbook\templates\settings.html:22
+#: .\cookbook\templates\settings.html:23
msgid "Account"
msgstr "Compte"
-#: .\cookbook\templates\settings.html:38
-msgid "Link social account"
+#: .\cookbook\templates\settings.html:27
+msgid "Preferences"
msgstr ""
-#: .\cookbook\templates\settings.html:42
+#: .\cookbook\templates\settings.html:31
+#, fuzzy
+#| msgid "Settings"
+msgid "API-Settings"
+msgstr "Paramètres"
+
+#: .\cookbook\templates\settings.html:39
+#, fuzzy
+#| msgid "Settings"
+msgid "Name Settings"
+msgstr "Paramètres"
+
+#: .\cookbook\templates\settings.html:47
+#, fuzzy
+#| msgid "Settings"
+msgid "Password Settings"
+msgstr "Paramètres"
+
+#: .\cookbook\templates\settings.html:55
+#, fuzzy
+#| msgid "Settings"
+msgid "Email Settings"
+msgstr "Paramètres"
+
+#: .\cookbook\templates\settings.html:57
+msgid "Manage Email Settings"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:61
+msgid "Social"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:63
+msgid "Manage Social Accounts"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:75
msgid "Language"
msgstr "Langue"
-#: .\cookbook\templates\settings.html:67
+#: .\cookbook\templates\settings.html:105
msgid "Style"
msgstr "Style"
-#: .\cookbook\templates\settings.html:79
+#: .\cookbook\templates\settings.html:125
msgid "API Token"
msgstr "Jeton API"
-#: .\cookbook\templates\settings.html:80
+#: .\cookbook\templates\settings.html:126
msgid ""
"You can use both basic authentication and token based authentication to "
"access the REST API."
@@ -1460,7 +1736,7 @@ msgstr ""
"Vous pouvez utiliser à la fois l'authentification classique et "
"l'authentification par jeton pour accéder à l'API REST."
-#: .\cookbook\templates\settings.html:92
+#: .\cookbook\templates\settings.html:143
msgid ""
"Use the token as an Authorization header prefixed by the word token as shown "
"in the following examples:"
@@ -1468,7 +1744,7 @@ msgstr ""
"Utilisez le jeton dans l'entête d'autorisation préfixé par le mot \"token\" "
"comme indiqué dans les exemples suivants :"
-#: .\cookbook\templates\settings.html:94
+#: .\cookbook\templates\settings.html:145
msgid "or"
msgstr "ou"
@@ -1489,59 +1765,55 @@ msgstr ""
msgid "Create Superuser account"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:75
+#: .\cookbook\templates\shopping_list.html:79
msgid "Shopping Recipes"
msgstr "Recettes dans le panier"
-#: .\cookbook\templates\shopping_list.html:79
+#: .\cookbook\templates\shopping_list.html:83
msgid "No recipes selected"
msgstr "Pas de recettes sélectionnées"
-#: .\cookbook\templates\shopping_list.html:146
+#: .\cookbook\templates\shopping_list.html:150
msgid "Entry Mode"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:154
+#: .\cookbook\templates\shopping_list.html:158
msgid "Add Entry"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:170
+#: .\cookbook\templates\shopping_list.html:174
msgid "Amount"
msgstr "Quantité"
-#: .\cookbook\templates\shopping_list.html:226
+#: .\cookbook\templates\shopping_list.html:230
+#: .\cookbook\templates\supermarket.html:7
msgid "Supermarket"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:236
+#: .\cookbook\templates\shopping_list.html:240
msgid "Select Supermarket"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:260
+#: .\cookbook\templates\shopping_list.html:264
msgid "Select User"
msgstr "Sélectionnez un utilisateur"
-#: .\cookbook\templates\shopping_list.html:279
+#: .\cookbook\templates\shopping_list.html:283
msgid "Finished"
msgstr "Terminé"
-#: .\cookbook\templates\shopping_list.html:292
+#: .\cookbook\templates\shopping_list.html:296
msgid "You are offline, shopping list might not syncronize."
msgstr ""
-#: .\cookbook\templates\shopping_list.html:357
+#: .\cookbook\templates\shopping_list.html:361
msgid "Copy/Export"
msgstr "Copier/exporter"
-#: .\cookbook\templates\shopping_list.html:361
+#: .\cookbook\templates\shopping_list.html:365
msgid "List Prefix"
msgstr "Préfixe de la liste"
-#: .\cookbook\templates\shopping_list.html:708
-msgid "There was an error creating a resource!"
-msgstr ""
-"Une erreur s\\\\'est produite lors de la création d\\\\'une ressource !"
-
#: .\cookbook\templates\socialaccount\connections.html:4
#: .\cookbook\templates\socialaccount\connections.html:7
msgid "Account Connections"
@@ -1553,10 +1825,6 @@ msgid ""
" accounts:"
msgstr ""
-#: .\cookbook\templates\socialaccount\connections.html:36
-msgid "Remove"
-msgstr ""
-
#: .\cookbook\templates\socialaccount\connections.html:44
msgid ""
"You currently have no social network accounts connected to this account."
@@ -1566,38 +1834,95 @@ msgstr ""
msgid "Add a 3rd Party Account"
msgstr ""
-#: .\cookbook\templates\stats.html:4
-msgid "Stats"
-msgstr "Stats"
+#: .\cookbook\templates\space.html:18
+msgid "Manage Subscription"
+msgstr ""
-#: .\cookbook\templates\stats.html:19
+#: .\cookbook\templates\space.html:26 .\cookbook\templates\stats.html:19
msgid "Number of objects"
msgstr "Nombre d'objets"
-#: .\cookbook\templates\stats.html:30
+#: .\cookbook\templates\space.html:39 .\cookbook\templates\stats.html:30
msgid "Recipe Imports"
msgstr "Recettes importées"
-#: .\cookbook\templates\stats.html:38
+#: .\cookbook\templates\space.html:47 .\cookbook\templates\stats.html:38
msgid "Objects stats"
msgstr "Stats d'objets"
-#: .\cookbook\templates\stats.html:41
+#: .\cookbook\templates\space.html:50 .\cookbook\templates\stats.html:41
msgid "Recipes without Keywords"
msgstr "Recettes sans mots-clés"
-#: .\cookbook\templates\stats.html:43
+#: .\cookbook\templates\space.html:52 .\cookbook\templates\stats.html:43
msgid "External Recipes"
msgstr "Recettes externes"
-#: .\cookbook\templates\stats.html:45
+#: .\cookbook\templates\space.html:54 .\cookbook\templates\stats.html:45
msgid "Internal Recipes"
msgstr "Recettes internes"
-#: .\cookbook\templates\system.html:21 .\cookbook\views\lists.py:115
+#: .\cookbook\templates\space.html:67
+msgid "Members"
+msgstr ""
+
+#: .\cookbook\templates\space.html:71
+#, fuzzy
+#| msgid "Invite Links"
+msgid "Invite User"
+msgstr "Liens d'invitation"
+
+#: .\cookbook\templates\space.html:82
+msgid "User"
+msgstr ""
+
+#: .\cookbook\templates\space.html:83
+msgid "Groups"
+msgstr ""
+
+#: .\cookbook\templates\space.html:99
+#, fuzzy
+#| msgid "Admin"
+msgid "admin"
+msgstr "Admin"
+
+#: .\cookbook\templates\space.html:100
+msgid "user"
+msgstr ""
+
+#: .\cookbook\templates\space.html:101
+msgid "guest"
+msgstr ""
+
+#: .\cookbook\templates\space.html:102
+msgid "remove"
+msgstr ""
+
+#: .\cookbook\templates\space.html:106
+msgid "Update"
+msgstr ""
+
+#: .\cookbook\templates\space.html:110
+#, fuzzy
+#| msgid "You cannot edit this storage!"
+msgid "You cannot edit yourself."
+msgstr "Vous ne pouvez pas modifier ce stockage !"
+
+#: .\cookbook\templates\space.html:117
+#, fuzzy
+#| msgid "There are no recipes in this book yet."
+msgid "There are no members in your space yet!"
+msgstr "Il n'y a pas encore de recettes dans ce livre."
+
+#: .\cookbook\templates\space.html:124 .\cookbook\templates\system.html:21
+#: .\cookbook\views\lists.py:115
msgid "Invite Links"
msgstr "Liens d'invitation"
+#: .\cookbook\templates\stats.html:4
+msgid "Stats"
+msgstr "Stats"
+
#: .\cookbook\templates\system.html:22
msgid "Show Links"
msgstr "Afficher les liens"
@@ -1721,47 +2046,159 @@ msgstr ""
"pas grave mais déconseillé car certaines fonctionnalités ne fonctionnent "
"qu'avec une base de données Postgres."
-#: .\cookbook\templates\url_import.html:5
+#: .\cookbook\templates\url_import.html:6
msgid "URL Import"
msgstr "Import URL"
-#: .\cookbook\templates\url_import.html:23
+#: .\cookbook\templates\url_import.html:31
+msgid "Drag me to your bookmarks to import recipes from anywhere"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:32
+#, fuzzy
+#| msgid "Bookmark saved!"
+msgid "Bookmark Me!"
+msgstr "Marque-page enregistré !"
+
+#: .\cookbook\templates\url_import.html:61
msgid "Enter website URL"
msgstr "Saisissez l'URL du site web"
-#: .\cookbook\templates\url_import.html:36
-msgid "Enter json directly"
+#: .\cookbook\templates\url_import.html:97
+msgid "Select recipe files to import or drop them here..."
msgstr ""
-#: .\cookbook\templates\url_import.html:57
+#: .\cookbook\templates\url_import.html:118
+msgid "Paste json or html source here to load recipe."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:146
+#, fuzzy
+#| msgid "View Recipe"
+msgid "Preview Recipe Data"
+msgstr "Afficher la recette"
+
+#: .\cookbook\templates\url_import.html:147
+msgid "Drag recipe attributes from the right into the appropriate box below."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:156
+#: .\cookbook\templates\url_import.html:173
+#: .\cookbook\templates\url_import.html:190
+#: .\cookbook\templates\url_import.html:209
+#: .\cookbook\templates\url_import.html:227
+#: .\cookbook\templates\url_import.html:242
+#: .\cookbook\templates\url_import.html:257
+#: .\cookbook\templates\url_import.html:273
+#: .\cookbook\templates\url_import.html:300
+#: .\cookbook\templates\url_import.html:351
+msgid "Clear Contents"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:158
+msgid "Text dragged here will be appended to the name."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:175
+msgid "Text dragged here will be appended to the description."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:192
+msgid "Keywords dragged here will be appended to current list"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:207
+msgid "Image"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:239
+#, fuzzy
+#| msgid "Preparation Time"
+msgid "Prep Time"
+msgstr "Temps de préparation"
+
+#: .\cookbook\templates\url_import.html:254
+#, fuzzy
+#| msgid "Time"
+msgid "Cook Time"
+msgstr "Temps"
+
+#: .\cookbook\templates\url_import.html:275
+msgid "Ingredients dragged here will be appended to current list."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:302
+msgid ""
+"Recipe instructions dragged here will be appended to current instructions."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:325
+#, fuzzy
+#| msgid "Discovered Recipes"
+msgid "Discovered Attributes"
+msgstr "Recettes découvertes"
+
+#: .\cookbook\templates\url_import.html:327
+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:344
+#, fuzzy
+#| msgid "Show as header"
+msgid "Show Blank Field"
+msgstr "Afficher en entête"
+
+#: .\cookbook\templates\url_import.html:349
+msgid "Blank Field"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:353
+msgid "Items dragged to Blank Field will be appended."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:400
+#, fuzzy
+#| msgid "Delete Step"
+msgid "Delete Text"
+msgstr "Supprimer l'étape"
+
+#: .\cookbook\templates\url_import.html:413
+#, fuzzy
+#| msgid "Delete Recipe"
+msgid "Delete image"
+msgstr "Supprimer la recette"
+
+#: .\cookbook\templates\url_import.html:429
msgid "Recipe Name"
msgstr "Nom de la recette"
-#: .\cookbook\templates\url_import.html:62
+#: .\cookbook\templates\url_import.html:433
#, fuzzy
#| msgid "Recipe Markup Specification"
msgid "Recipe Description"
msgstr "Spécification Recipe Markup"
-#: .\cookbook\templates\url_import.html:123
-#: .\cookbook\templates\url_import.html:155
-#: .\cookbook\templates\url_import.html:211
+#: .\cookbook\templates\url_import.html:494
+#: .\cookbook\templates\url_import.html:526
+#: .\cookbook\templates\url_import.html:582
msgid "Select one"
msgstr "Faites votre choix"
-#: .\cookbook\templates\url_import.html:225
+#: .\cookbook\templates\url_import.html:596
msgid "All Keywords"
msgstr "Tous les mots-clés"
-#: .\cookbook\templates\url_import.html:228
+#: .\cookbook\templates\url_import.html:599
msgid "Import all keywords, not only the ones already existing."
msgstr ""
-#: .\cookbook\templates\url_import.html:255
+#: .\cookbook\templates\url_import.html:626
msgid "Information"
msgstr "Information"
-#: .\cookbook\templates\url_import.html:257
+#: .\cookbook\templates\url_import.html:628
msgid ""
" Only websites containing ld+json or microdata information can currently\n"
" be imported. Most big recipe pages "
@@ -1777,50 +2214,79 @@ msgstr ""
"données sufisamment structurées, n'hésitez pas à publier un exemple dans un "
"ticket sur GitHub."
-#: .\cookbook\templates\url_import.html:265
+#: .\cookbook\templates\url_import.html:636
msgid "Google ld+json Info"
msgstr "Google ld+json Info"
-#: .\cookbook\templates\url_import.html:268
+#: .\cookbook\templates\url_import.html:639
msgid "GitHub Issues"
msgstr "Ticket GitHub"
-#: .\cookbook\templates\url_import.html:270
+#: .\cookbook\templates\url_import.html:641
msgid "Recipe Markup Specification"
msgstr "Spécification Recipe Markup"
-#: .\cookbook\views\api.py:71
+#: .\cookbook\views\api.py:77
#, fuzzy
#| msgid "Parameter filter_list incorrectly formatted"
msgid "Parameter updated_at incorrectly formatted"
msgstr "Le paramètre filter_list n'est pas correctement formatté"
-#: .\cookbook\views\api.py:455 .\cookbook\views\views.py:226
+#: .\cookbook\views\api.py:553 .\cookbook\views\views.py:295
msgid "This feature is not available in the demo version!"
msgstr ""
-#: .\cookbook\views\api.py:478
+#: .\cookbook\views\api.py:576
msgid "Sync successful!"
msgstr "Synchro réussie !"
-#: .\cookbook\views\api.py:483
+#: .\cookbook\views\api.py:581
msgid "Error synchronizing with Storage"
msgstr "Erreur lors de la synchronisation avec le stockage"
-#: .\cookbook\views\api.py:556 .\cookbook\views\api.py:576
+#: .\cookbook\views\api.py:649
+msgid "Nothing to do."
+msgstr ""
+
+#: .\cookbook\views\api.py:664
+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:671
msgid "The requested page could not be found."
msgstr "La page souhaitée n'a pas été trouvée."
-#: .\cookbook\views\api.py:585
+#: .\cookbook\views\api.py:680
msgid ""
-"The requested page refused to provide any information (Status Code 403)."
-msgstr "La page souhaitée refuse de fournir des informations (erreur 403)."
+"The requested site does not provide any recognized data format to import the "
+"recipe from."
+msgstr ""
+"Le site web est dans un format qui ne permet pas d'importer automatiquement "
+"la recette."
-#: .\cookbook\views\api.py:611
-msgid "Could not parse correctly..."
+#: .\cookbook\views\api.py:694
+#, fuzzy
+#| msgid "The requested page could not be found."
+msgid "No useable data could be found."
+msgstr "La page souhaitée n'a pas été trouvée."
+
+#: .\cookbook\views\api.py:710
+msgid "I couldn't find anything to do."
msgstr ""
-#: .\cookbook\views\data.py:94
+#: .\cookbook\views\data.py:30 .\cookbook\views\data.py:121
+#: .\cookbook\views\edit.py:50 .\cookbook\views\import_export.py:67
+#: .\cookbook\views\new.py:32
+msgid "You have reached the maximum number of recipes for your space."
+msgstr ""
+
+#: .\cookbook\views\data.py:34 .\cookbook\views\data.py:125
+#: .\cookbook\views\edit.py:54 .\cookbook\views\import_export.py:71
+#: .\cookbook\views\new.py:36
+msgid "You have more users than allowed in your space."
+msgstr ""
+
+#: .\cookbook\views\data.py:103
#, python-format
msgid "Batch edit done. %(count)d recipe was updated."
msgid_plural "Batch edit done. %(count)d Recipes where updated."
@@ -1834,7 +2300,7 @@ msgid "Monitor"
msgstr "Surveiller"
#: .\cookbook\views\delete.py:96 .\cookbook\views\lists.py:102
-#: .\cookbook\views\new.py:86
+#: .\cookbook\views\new.py:98
msgid "Storage Backend"
msgstr "Espace de stockage"
@@ -1845,8 +2311,8 @@ msgstr ""
"Impossible de supprimer cet espace de stockage car il est utilisé dans au "
"moins un dossier surveillé."
-#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:204
-#: .\cookbook\views\new.py:144
+#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:213
+#: .\cookbook\views\new.py:156
msgid "Recipe Book"
msgstr "Livre de recettes"
@@ -1854,56 +2320,56 @@ msgstr "Livre de recettes"
msgid "Bookmarks"
msgstr "Marque-pages"
-#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:214
+#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:252
msgid "Invite Link"
msgstr "Lien d'invitation"
-#: .\cookbook\views\edit.py:110
+#: .\cookbook\views\edit.py:119
msgid "Food"
msgstr "Ingrédient"
-#: .\cookbook\views\edit.py:119
+#: .\cookbook\views\edit.py:128
msgid "You cannot edit this storage!"
msgstr "Vous ne pouvez pas modifier ce stockage !"
-#: .\cookbook\views\edit.py:139
+#: .\cookbook\views\edit.py:148
msgid "Storage saved!"
msgstr "Stockage sauvegardé !"
-#: .\cookbook\views\edit.py:145
+#: .\cookbook\views\edit.py:154
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:156
+#: .\cookbook\views\edit.py:165
msgid "Storage"
msgstr "Stockage"
-#: .\cookbook\views\edit.py:252
+#: .\cookbook\views\edit.py:261
msgid "Changes saved!"
msgstr "Modifications sauvegardées !"
-#: .\cookbook\views\edit.py:256
+#: .\cookbook\views\edit.py:265
msgid "Error saving changes!"
msgstr "Erreur lors de la sauvegarde des modifications !"
-#: .\cookbook\views\edit.py:289
+#: .\cookbook\views\edit.py:299
msgid "Units merged!"
msgstr "Unités fusionnées !"
-#: .\cookbook\views\edit.py:291 .\cookbook\views\edit.py:307
+#: .\cookbook\views\edit.py:301 .\cookbook\views\edit.py:317
msgid "Cannot merge with the same object!"
msgstr ""
-#: .\cookbook\views\edit.py:305
+#: .\cookbook\views\edit.py:315
msgid "Foods merged!"
msgstr "Ingrédient fusionné !"
-#: .\cookbook\views\import_export.py:73
+#: .\cookbook\views\import_export.py:93
msgid "Importing is not implemented for this provider"
msgstr ""
-#: .\cookbook\views\import_export.py:92
+#: .\cookbook\views\import_export.py:115
msgid "Exporting is not implemented for this provider"
msgstr ""
@@ -1919,23 +2385,77 @@ msgstr "Découverte"
msgid "Shopping Lists"
msgstr "Listes de course"
-#: .\cookbook\views\new.py:111
+#: .\cookbook\views\new.py:123
msgid "Imported new recipe!"
msgstr "Nouvelle recette importée !"
-#: .\cookbook\views\new.py:114
+#: .\cookbook\views\new.py:126
msgid "There was an error importing this recipe!"
msgstr "Une erreur s\\\\'est produite lors de l\\\\'import de cette recette !"
-#: .\cookbook\views\views.py:123
+#: .\cookbook\views\new.py:226
+msgid "Hello"
+msgstr ""
+
+#: .\cookbook\views\new.py:226
+msgid "You have been invited by "
+msgstr ""
+
+#: .\cookbook\views\new.py:227
+msgid " to join their Tandoor Recipes space "
+msgstr ""
+
+#: .\cookbook\views\new.py:228
+msgid "Click the following link to activate your account: "
+msgstr ""
+
+#: .\cookbook\views\new.py:229
+msgid ""
+"If the link does not work use the following code to manually join the space: "
+msgstr ""
+
+#: .\cookbook\views\new.py:230
+msgid "The invitation is valid until "
+msgstr ""
+
+#: .\cookbook\views\new.py:231
+msgid ""
+"Tandoor Recipes is an Open Source recipe manager. Check it out on GitHub "
+msgstr ""
+
+#: .\cookbook\views\new.py:234
+msgid "Tandoor Recipes Invite"
+msgstr ""
+
+#: .\cookbook\views\new.py:241
+msgid "Invite link successfully send to user."
+msgstr ""
+
+#: .\cookbook\views\new.py:244
+msgid ""
+"You have send to many emails, please share the link manually or wait a few "
+"hours."
+msgstr ""
+
+#: .\cookbook\views\new.py:246
+msgid "Email to user could not be send, please share link manually."
+msgstr ""
+
+#: .\cookbook\views\views.py:125
+msgid ""
+"You have successfully created your own recipe space. Start by adding some "
+"recipes or invite other people to join you."
+msgstr ""
+
+#: .\cookbook\views\views.py:173
msgid "You do not have the required permissions to perform this action!"
msgstr "Vous n'avez pas la permission d'effectuer cette action !"
-#: .\cookbook\views\views.py:134
+#: .\cookbook\views\views.py:184
msgid "Comment saved!"
msgstr "Commentaire enregistré !"
-#: .\cookbook\views\views.py:326
+#: .\cookbook\views\views.py:396
msgid ""
"The setup page can only be used to create the first user! If you have "
"forgotten your superuser credentials please consult the django documentation "
@@ -1946,22 +2466,58 @@ msgstr ""
"utilisateur, counsultez la documentation Django pour savoir comment "
"réinitialiser le mot de passe."
-#: .\cookbook\views\views.py:333 .\cookbook\views\views.py:378
+#: .\cookbook\views\views.py:403
msgid "Passwords dont match!"
msgstr "Les mots de passe ne correspondent pas !"
-#: .\cookbook\views\views.py:349 .\cookbook\views\views.py:385
+#: .\cookbook\views\views.py:419
msgid "User has been created, please login!"
msgstr "L'utilisateur a été créé, veuillez vous connecter !"
-#: .\cookbook\views\views.py:365
+#: .\cookbook\views\views.py:435
msgid "Malformed Invite Link supplied!"
msgstr "Le lien d'invitation fourni est mal formé !"
-#: .\cookbook\views\views.py:405
+#: .\cookbook\views\views.py:441
+#, fuzzy
+#| msgid "You are not logged in and therefore cannot view this page!"
+msgid "You are already member of a space and therefore cannot join this one."
+msgstr "Vous n'êtes pas connecté et ne pouvez donc pas afficher cette page !"
+
+#: .\cookbook\views\views.py:452
+msgid "Successfully joined space."
+msgstr ""
+
+#: .\cookbook\views\views.py:458
msgid "Invite Link not valid or already used!"
msgstr "Le lien d'invitation est invalide ou déjà utilisé !"
+#~ msgid ""
+#~ "A username is not required, if left blank the new user can choose one."
+#~ msgstr ""
+#~ "Il n'est pas obligatoire de renseigner un nom d'utilisateur. S'il est "
+#~ "laissé vide, le nouvel utilisateur pourra le choisir."
+
+#~ msgid "Imported from"
+#~ msgstr "Importé depuis"
+
+#~ msgid "Link"
+#~ msgstr "Lien"
+
+#~ msgid "Logout"
+#~ msgstr "Déconnexion"
+
+#~ msgid "Website Import"
+#~ msgstr "Importer depuis un site web"
+
+#~ msgid "There was an error creating a resource!"
+#~ msgstr ""
+#~ "Une erreur s\\\\'est produite lors de la création d\\\\'une ressource !"
+
+#~ msgid ""
+#~ "The requested page refused to provide any information (Status Code 403)."
+#~ msgstr "La page souhaitée refuse de fournir des informations (erreur 403)."
+
#~ msgid ""
#~ "Include - [ ]
in list for easier usage in markdown based "
#~ "documents."
@@ -1977,6 +2533,3 @@ msgstr "Le lien d'invitation est invalide ou déjà utilisé !"
#~ msgid "Preference for given user already exists"
#~ msgstr "Les préférences pour cet utilisateur existent déjà"
-
-#~ msgid "Bookmark saved!"
-#~ msgstr "Marque-page enregistré !"
diff --git a/cookbook/locale/hu_HU/LC_MESSAGES/django.po b/cookbook/locale/hu_HU/LC_MESSAGES/django.po
index 1967c8fe..5a06ba36 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-04-11 15:09+0200\n"
+"POT-Creation-Date: 2021-06-12 20:30+0200\n"
"PO-Revision-Date: 2020-06-02 19:28+0000\n"
"Last-Translator: igazka /remote."
"php/webdav/
is added automatically)"
msgstr ""
-#: .\cookbook\forms.py:291
+#: .\cookbook\forms.py:307
msgid "Search String"
msgstr ""
-#: .\cookbook\forms.py:318
+#: .\cookbook\forms.py:334
msgid "File ID"
msgstr "Fájl ID:"
-#: .\cookbook\forms.py:354
+#: .\cookbook\forms.py:370
msgid "You must provide at least a recipe or a title."
msgstr ""
-#: .\cookbook\forms.py:367
+#: .\cookbook\forms.py:383
msgid "You can list default users to share recipes with in the settings."
msgstr ""
-#: .\cookbook\forms.py:368
-#: .\cookbook\templates\forms\edit_internal_recipe.html:377
+#: .\cookbook\forms.py:384
+#: .\cookbook\templates\forms\edit_internal_recipe.html:404
msgid ""
"You can use markdown to format this field. See the docs here"
msgstr ""
-#: .\cookbook\forms.py:393
-msgid "A username is not required, if left blank the new user can choose one."
+#: .\cookbook\forms.py:409
+msgid "Maximum number of users for this space reached."
msgstr ""
-#: .\cookbook\helper\permission_helper.py:123
-#: .\cookbook\helper\permission_helper.py:129
-#: .\cookbook\helper\permission_helper.py:151
-#: .\cookbook\helper\permission_helper.py:196
-#: .\cookbook\helper\permission_helper.py:210
-#: .\cookbook\helper\permission_helper.py:221
-#: .\cookbook\helper\permission_helper.py:232 .\cookbook\views\data.py:30
-#: .\cookbook\views\views.py:112 .\cookbook\views\views.py:116
-#: .\cookbook\views\views.py:184
-msgid "You do not have the required permissions to view this page!"
+#: .\cookbook\forms.py:415
+msgid "Email address already taken!"
msgstr ""
-#: .\cookbook\helper\permission_helper.py:141
+#: .\cookbook\forms.py:423
+msgid ""
+"An email address is not required but if present the invite link will be send "
+"to the user."
+msgstr ""
+
+#: .\cookbook\forms.py:438
+msgid "Name already taken."
+msgstr ""
+
+#: .\cookbook\forms.py:449
+msgid "Accept Terms and Privacy"
+msgstr ""
+
+#: .\cookbook\helper\AllAuthCustomAdapter.py:30
+msgid ""
+"In order to prevent spam, the requested email was not send. Please wait a "
+"few minutes and try again."
+msgstr ""
+
+#: .\cookbook\helper\permission_helper.py:124
+#: .\cookbook\helper\permission_helper.py:144 .\cookbook\views\views.py:147
msgid "You are not logged in and therefore cannot view this page!"
msgstr ""
-#: .\cookbook\helper\permission_helper.py:145
-#: .\cookbook\helper\permission_helper.py:167
-#: .\cookbook\helper\permission_helper.py:182
+#: .\cookbook\helper\permission_helper.py:127
+#: .\cookbook\helper\permission_helper.py:132
+#: .\cookbook\helper\permission_helper.py:154
+#: .\cookbook\helper\permission_helper.py:199
+#: .\cookbook\helper\permission_helper.py:213
+#: .\cookbook\helper\permission_helper.py:224
+#: .\cookbook\helper\permission_helper.py:235 .\cookbook\views\data.py:39
+#: .\cookbook\views\views.py:158 .\cookbook\views\views.py:165
+#: .\cookbook\views\views.py:253
+msgid "You do not have the required permissions to view this page!"
+msgstr ""
+
+#: .\cookbook\helper\permission_helper.py:148
+#: .\cookbook\helper\permission_helper.py:170
+#: .\cookbook\helper\permission_helper.py:185
msgid "You cannot interact with this object as it is not owned by you!"
msgstr ""
-#: .\cookbook\helper\recipe_url_import.py:40 .\cookbook\views\api.py:549
-msgid "The requested site provided malformed data and cannot be read."
-msgstr ""
-
-#: .\cookbook\helper\recipe_url_import.py:54
-msgid ""
-"The requested site does not provide any recognized data format to import the "
-"recipe from."
-msgstr ""
-
-#: .\cookbook\helper\recipe_url_import.py:160
-msgid "Imported from"
-msgstr ""
-
#: .\cookbook\helper\template_helper.py:60
#: .\cookbook\helper\template_helper.py:62
msgid "Could not parse template code."
@@ -246,42 +261,53 @@ msgstr ""
#: .\cookbook\templates\import.html:14 .\cookbook\templates\import.html:20
#: .\cookbook\templates\import_response.html:7
#: .\cookbook\templates\test.html:14 .\cookbook\templates\test.html:20
-#: .\cookbook\templates\url_import.html:233 .\cookbook\views\delete.py:60
-#: .\cookbook\views\edit.py:190
+#: .\cookbook\templates\url_import.html:27
+#: .\cookbook\templates\url_import.html:101
+#: .\cookbook\templates\url_import.html:123
+#: .\cookbook\templates\url_import.html:317
+#: .\cookbook\templates\url_import.html:604 .\cookbook\views\delete.py:60
+#: .\cookbook\views\edit.py:199
msgid "Import"
msgstr ""
-#: .\cookbook\integration\integration.py:131
+#: .\cookbook\integration\integration.py:162
msgid ""
"Importer expected a .zip file. Did you choose the correct importer type for "
"your data ?"
msgstr ""
-#: .\cookbook\integration\integration.py:134
+#: .\cookbook\integration\integration.py:165
+msgid ""
+"An unexpected error occurred during the import. Please make sure you have "
+"uploaded a valid file."
+msgstr ""
+
+#: .\cookbook\integration\integration.py:169
msgid "The following recipes were ignored because they already existed:"
msgstr ""
-#: .\cookbook\integration\integration.py:137
+#: .\cookbook\integration\integration.py:173
#, python-format
msgid "Imported %s recipes."
msgstr ""
-#: .\cookbook\integration\paprika.py:44
+#: .\cookbook\integration\paprika.py:46
msgid "Notes"
msgstr ""
-#: .\cookbook\integration\paprika.py:47
+#: .\cookbook\integration\paprika.py:49
msgid "Nutritional Information"
msgstr ""
-#: .\cookbook\integration\paprika.py:50
+#: .\cookbook\integration\paprika.py:53
msgid "Source"
msgstr ""
#: .\cookbook\integration\safron.py:23
-#: .\cookbook\templates\forms\edit_internal_recipe.html:75
+#: .\cookbook\templates\forms\edit_internal_recipe.html:79
#: .\cookbook\templates\include\log_cooking.html:16
-#: .\cookbook\templates\url_import.html:84
+#: .\cookbook\templates\url_import.html:224
+#: .\cookbook\templates\url_import.html:455
msgid "Servings"
msgstr ""
@@ -290,11 +316,11 @@ msgid "Waiting time"
msgstr ""
#: .\cookbook\integration\safron.py:27
-#: .\cookbook\templates\forms\edit_internal_recipe.html:69
+#: .\cookbook\templates\forms\edit_internal_recipe.html:73
msgid "Preparation Time"
msgstr ""
-#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:71
+#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:78
#: .\cookbook\templates\forms\ingredients.html:7
#: .\cookbook\templates\index.html:7
msgid "Cookbook"
@@ -320,44 +346,74 @@ msgstr "Vacsora"
msgid "Other"
msgstr ""
-#: .\cookbook\models.py:110 .\cookbook\templates\shopping_list.html:48
+#: .\cookbook\models.py:71
+msgid ""
+"Maximum file storage for space in MB. 0 for unlimited, -1 to disable file "
+"upload."
+msgstr ""
+
+#: .\cookbook\models.py:121 .\cookbook\templates\search.html:7
+#: .\cookbook\templates\shopping_list.html:52
msgid "Search"
msgstr ""
-#: .\cookbook\models.py:111 .\cookbook\templates\base.html:85
+#: .\cookbook\models.py:122 .\cookbook\templates\base.html:92
#: .\cookbook\templates\meal_plan.html:5 .\cookbook\views\delete.py:152
-#: .\cookbook\views\edit.py:224 .\cookbook\views\new.py:188
+#: .\cookbook\views\edit.py:233 .\cookbook\views\new.py:201
msgid "Meal-Plan"
msgstr ""
-#: .\cookbook\models.py:112 .\cookbook\templates\base.html:82
+#: .\cookbook\models.py:123 .\cookbook\templates\base.html:89
msgid "Books"
msgstr ""
-#: .\cookbook\models.py:119
+#: .\cookbook\models.py:131
msgid "Small"
msgstr ""
-#: .\cookbook\models.py:119
+#: .\cookbook\models.py:131
msgid "Large"
msgstr ""
-#: .\cookbook\models.py:327
-#: .\cookbook\templates\forms\edit_internal_recipe.html:198
+#: .\cookbook\models.py:131 .\cookbook\templates\generic\new_template.html:6
+#: .\cookbook\templates\generic\new_template.html:14
+#: .\cookbook\templates\meal_plan.html:323
+msgid "New"
+msgstr ""
+
+#: .\cookbook\models.py:340
+#: .\cookbook\templates\forms\edit_internal_recipe.html:202
msgid "Text"
msgstr "Szöveg"
-#: .\cookbook\models.py:327
-#: .\cookbook\templates\forms\edit_internal_recipe.html:199
+#: .\cookbook\models.py:340
+#: .\cookbook\templates\forms\edit_internal_recipe.html:203
msgid "Time"
msgstr ""
+#: .\cookbook\models.py:340
+#: .\cookbook\templates\forms\edit_internal_recipe.html:204
+#: .\cookbook\templates\forms\edit_internal_recipe.html:218
+#, fuzzy
+#| msgid "File ID"
+msgid "File"
+msgstr "Fájl ID:"
+
+#: .\cookbook\serializer.py:109
+msgid "File uploads are not enabled for this Space."
+msgstr ""
+
+#: .\cookbook\serializer.py:117
+msgid "You have reached your file upload limit."
+msgstr ""
+
#: .\cookbook\tables.py:35 .\cookbook\templates\books.html:36
#: .\cookbook\templates\generic\edit_template.html:6
#: .\cookbook\templates\generic\edit_template.html:14
#: .\cookbook\templates\meal_plan.html:281
#: .\cookbook\templates\recipes_table.html:82
#: .\cookbook\templates\shopping_list.html:33
+#: .\cookbook\templates\space.html:84
msgid "Edit"
msgstr ""
@@ -371,10 +427,6 @@ msgstr ""
msgid "Delete"
msgstr ""
-#: .\cookbook\tables.py:144
-msgid "Link"
-msgstr ""
-
#: .\cookbook\templates\404.html:5
msgid "404 Error"
msgstr ""
@@ -391,21 +443,120 @@ msgstr ""
msgid "Report a Bug"
msgstr ""
-#: .\cookbook\templates\account\login.html:7
-#: .\cookbook\templates\base.html:170
+#: .\cookbook\templates\account\email.html:6
+#: .\cookbook\templates\account\email.html:9
+msgid "E-mail Addresses"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:11
+msgid "The following e-mail addresses are associated with your account:"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:28
+msgid "Verified"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:30
+msgid "Unverified"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:32
+msgid "Primary"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:39
+msgid "Make Primary"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:41
+msgid "Re-send Verification"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:42
+#: .\cookbook\templates\socialaccount\connections.html:36
+msgid "Remove"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:50
+msgid "Warning:"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:50
+msgid ""
+"You currently do not have any e-mail address set up. You should really add "
+"an e-mail address so you can receive notifications, reset your password, etc."
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:56
+msgid "Add E-mail Address"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:61
+msgid "Add E-mail"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:71
+msgid "Do you really want to remove the selected e-mail address?"
+msgstr ""
+
+#: .\cookbook\templates\account\email_confirm.html:6
+#: .\cookbook\templates\account\email_confirm.html:10
+msgid "Confirm E-mail Address"
+msgstr ""
+
+#: .\cookbook\templates\account\email_confirm.html:16
+#, python-format
+msgid ""
+"Please confirm that\n"
+" %(email)s is an e-mail address "
+"for user %(user_display)s\n"
+" ."
+msgstr ""
+
+#: .\cookbook\templates\account\email_confirm.html:22
+#: .\cookbook\templates\generic\delete_template.html:21
+msgid "Confirm"
+msgstr ""
+
+#: .\cookbook\templates\account\email_confirm.html:29
+#, python-format
+msgid ""
+"This e-mail confirmation link expired or is invalid. Please\n"
+" issue a new e-mail confirmation "
+"request."
+msgstr ""
+
+#: .\cookbook\templates\account\login.html:8
+#: .\cookbook\templates\base.html:180
msgid "Login"
msgstr ""
-#: .\cookbook\templates\account\login.html:13
-#: .\cookbook\templates\account\login.html:28
+#: .\cookbook\templates\account\login.html:15
+#: .\cookbook\templates\account\login.html:31
+#: .\cookbook\templates\account\signup.html:69
+#: .\cookbook\templates\account\signup_closed.html:15
msgid "Sign In"
msgstr ""
-#: .\cookbook\templates\account\login.html:38
+#: .\cookbook\templates\account\login.html:32
+msgid "Sign Up"
+msgstr ""
+
+#: .\cookbook\templates\account\login.html:36
+#: .\cookbook\templates\account\login.html:37
+#: .\cookbook\templates\account\password_reset.html:29
+msgid "Reset My Password"
+msgstr ""
+
+#: .\cookbook\templates\account\login.html:37
+msgid "Lost your password?"
+msgstr ""
+
+#: .\cookbook\templates\account\login.html:48
msgid "Social Login"
msgstr ""
-#: .\cookbook\templates\account\login.html:39
+#: .\cookbook\templates\account\login.html:49
msgid "You can use any of the following providers to sign in."
msgstr ""
@@ -419,115 +570,161 @@ msgstr ""
msgid "Are you sure you want to sign out?"
msgstr ""
-#: .\cookbook\templates\account\password_reset.html:5
-#: .\cookbook\templates\account\password_reset_done.html:5
+#: .\cookbook\templates\account\password_reset.html:7
+#: .\cookbook\templates\account\password_reset.html:13
+#: .\cookbook\templates\account\password_reset_done.html:7
+#: .\cookbook\templates\account\password_reset_done.html:10
msgid "Password Reset"
msgstr ""
-#: .\cookbook\templates\account\password_reset.html:9
-#: .\cookbook\templates\account\password_reset_done.html:9
-msgid "Password reset is not implemented for the time being!"
+#: .\cookbook\templates\account\password_reset.html:24
+msgid ""
+"Forgotten your password? Enter your e-mail address below, and we'll send you "
+"an e-mail allowing you to reset it."
msgstr ""
-#: .\cookbook\templates\account\signup.html:5
+#: .\cookbook\templates\account\password_reset.html:32
+msgid "Password reset is disabled on this instance."
+msgstr ""
+
+#: .\cookbook\templates\account\password_reset_done.html:16
+msgid ""
+"We have sent you an e-mail. Please contact us if you do not receive it "
+"within a few minutes."
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:6
msgid "Register"
msgstr ""
-#: .\cookbook\templates\account\signup.html:9
-msgid "Create your Account"
+#: .\cookbook\templates\account\signup.html:12
+msgid "Create an Account"
msgstr ""
-#: .\cookbook\templates\account\signup.html:14
+#: .\cookbook\templates\account\signup.html:42
+msgid "I accept the follwoing"
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:45
+msgid "Terms and Conditions"
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:48
+msgid "and"
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:52
+msgid "Privacy Policy"
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:65
msgid "Create User"
msgstr ""
-#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:160
+#: .\cookbook\templates\account\signup.html:69
+msgid "Already have an account?"
+msgstr ""
+
+#: .\cookbook\templates\account\signup_closed.html:5
+#: .\cookbook\templates\account\signup_closed.html:11
+msgid "Sign Up Closed"
+msgstr ""
+
+#: .\cookbook\templates\account\signup_closed.html:13
+msgid "We are sorry, but the sign up is currently closed."
+msgstr ""
+
+#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:170
#: .\cookbook\templates\rest_framework\api.html:11
msgid "API Documentation"
msgstr ""
-#: .\cookbook\templates\base.html:78
+#: .\cookbook\templates\base.html:85
msgid "Utensils"
msgstr ""
-#: .\cookbook\templates\base.html:88
+#: .\cookbook\templates\base.html:95
msgid "Shopping"
msgstr ""
-#: .\cookbook\templates\base.html:102 .\cookbook\views\delete.py:84
-#: .\cookbook\views\edit.py:93 .\cookbook\views\lists.py:26
-#: .\cookbook\views\new.py:66
+#: .\cookbook\templates\base.html:109 .\cookbook\views\delete.py:84
+#: .\cookbook\views\edit.py:102 .\cookbook\views\lists.py:26
+#: .\cookbook\views\new.py:78
msgid "Keyword"
msgstr ""
-#: .\cookbook\templates\base.html:104
+#: .\cookbook\templates\base.html:111
msgid "Batch Edit"
msgstr ""
-#: .\cookbook\templates\base.html:109
+#: .\cookbook\templates\base.html:116
msgid "Storage Data"
msgstr ""
-#: .\cookbook\templates\base.html:113
+#: .\cookbook\templates\base.html:120
msgid "Storage Backends"
msgstr ""
-#: .\cookbook\templates\base.html:115
+#: .\cookbook\templates\base.html:122
msgid "Configure Sync"
msgstr ""
-#: .\cookbook\templates\base.html:117
+#: .\cookbook\templates\base.html:124
msgid "Discovered Recipes"
msgstr ""
-#: .\cookbook\templates\base.html:119
+#: .\cookbook\templates\base.html:126
msgid "Discovery Log"
msgstr ""
-#: .\cookbook\templates\base.html:121 .\cookbook\templates\stats.html:10
+#: .\cookbook\templates\base.html:128 .\cookbook\templates\stats.html:10
msgid "Statistics"
msgstr ""
-#: .\cookbook\templates\base.html:123
+#: .\cookbook\templates\base.html:130
msgid "Units & Ingredients"
msgstr ""
-#: .\cookbook\templates\base.html:125
+#: .\cookbook\templates\base.html:132 .\cookbook\templates\index.html:47
msgid "Import Recipe"
msgstr ""
-#: .\cookbook\templates\base.html:144 .\cookbook\templates\settings.html:6
+#: .\cookbook\templates\base.html:151 .\cookbook\templates\settings.html:6
#: .\cookbook\templates\settings.html:16
msgid "Settings"
msgstr ""
-#: .\cookbook\templates\base.html:146 .\cookbook\templates\history.html:6
+#: .\cookbook\templates\base.html:153 .\cookbook\templates\history.html:6
#: .\cookbook\templates\history.html:14
msgid "History"
msgstr ""
-#: .\cookbook\templates\base.html:150 .\cookbook\templates\system.html:13
+#: .\cookbook\templates\base.html:155 .\cookbook\templates\space.html:7
+msgid "Space Settings"
+msgstr ""
+
+#: .\cookbook\templates\base.html:160 .\cookbook\templates\system.html:13
msgid "System"
msgstr ""
-#: .\cookbook\templates\base.html:152
+#: .\cookbook\templates\base.html:162
msgid "Admin"
msgstr ""
-#: .\cookbook\templates\base.html:156
+#: .\cookbook\templates\base.html:166
msgid "Markdown Guide"
msgstr ""
-#: .\cookbook\templates\base.html:158
+#: .\cookbook\templates\base.html:168
msgid "GitHub"
msgstr ""
-#: .\cookbook\templates\base.html:162
+#: .\cookbook\templates\base.html:172
msgid "API Browser"
msgstr ""
-#: .\cookbook\templates\base.html:165
-msgid "Logout"
+#: .\cookbook\templates\base.html:175
+msgid "Log out"
msgstr ""
#: .\cookbook\templates\batch\edit.html:6
@@ -542,7 +739,7 @@ msgstr ""
msgid "Add the specified keywords to all recipes containing a word"
msgstr ""
-#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:76
+#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:85
msgid "Sync"
msgstr ""
@@ -569,7 +766,7 @@ msgstr ""
msgid "Importing Recipes"
msgstr ""
-#: .\cookbook\templates\batch\waiting.html:23
+#: .\cookbook\templates\batch\waiting.html:28
msgid ""
"This can take a few minutes, depending on the number of recipes in sync, "
"please wait."
@@ -606,26 +803,33 @@ msgid "Export Recipes"
msgstr ""
#: .\cookbook\templates\export.html:14 .\cookbook\templates\export.html:20
-#: .\cookbook\templates\shopping_list.html:347
+#: .\cookbook\templates\shopping_list.html:351
#: .\cookbook\templates\test2.html:14 .\cookbook\templates\test2.html:20
msgid "Export"
msgstr ""
+#: .\cookbook\templates\files.html:7
+#, fuzzy
+#| msgid "File ID"
+msgid "Files"
+msgstr "Fájl ID:"
+
#: .\cookbook\templates\forms\edit_import_recipe.html:5
#: .\cookbook\templates\forms\edit_import_recipe.html:9
msgid "Import new Recipe"
msgstr ""
#: .\cookbook\templates\forms\edit_import_recipe.html:14
-#: .\cookbook\templates\forms\edit_internal_recipe.html:389
-#: .\cookbook\templates\forms\edit_internal_recipe.html:421
+#: .\cookbook\templates\forms\edit_internal_recipe.html:416
+#: .\cookbook\templates\forms\edit_internal_recipe.html:448
#: .\cookbook\templates\generic\edit_template.html:23
#: .\cookbook\templates\generic\new_template.html:23
#: .\cookbook\templates\include\log_cooking.html:28
#: .\cookbook\templates\meal_plan.html:325
-#: .\cookbook\templates\settings.html:28 .\cookbook\templates\settings.html:35
-#: .\cookbook\templates\settings.html:58 .\cookbook\templates\settings.html:73
-#: .\cookbook\templates\shopping_list.html:349
+#: .\cookbook\templates\settings.html:44 .\cookbook\templates\settings.html:52
+#: .\cookbook\templates\settings.html:96
+#: .\cookbook\templates\settings.html:114
+#: .\cookbook\templates\shopping_list.html:353
msgid "Save"
msgstr ""
@@ -634,181 +838,188 @@ msgstr ""
msgid "Edit Recipe"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:52
+#: .\cookbook\templates\forms\edit_internal_recipe.html:56
+#: .\cookbook\templates\url_import.html:171
msgid "Description"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:72
+#: .\cookbook\templates\forms\edit_internal_recipe.html:76
msgid "Waiting Time"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:78
+#: .\cookbook\templates\forms\edit_internal_recipe.html:82
msgid "Servings Text"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:89
+#: .\cookbook\templates\forms\edit_internal_recipe.html:93
msgid "Select Keywords"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:90
-#: .\cookbook\templates\url_import.html:212
+#: .\cookbook\templates\forms\edit_internal_recipe.html:94
+#: .\cookbook\templates\url_import.html:583
#, fuzzy
#| msgid "Keywords"
msgid "Add Keyword"
msgstr "Kulcsszavak"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:108
+#: .\cookbook\templates\forms\edit_internal_recipe.html:112
msgid "Nutrition"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:112
-#: .\cookbook\templates\forms\edit_internal_recipe.html:162
+#: .\cookbook\templates\forms\edit_internal_recipe.html:116
+#: .\cookbook\templates\forms\edit_internal_recipe.html:166
msgid "Delete Step"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:116
+#: .\cookbook\templates\forms\edit_internal_recipe.html:120
msgid "Calories"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:119
+#: .\cookbook\templates\forms\edit_internal_recipe.html:123
msgid "Carbohydrates"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:122
+#: .\cookbook\templates\forms\edit_internal_recipe.html:126
msgid "Fats"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:124
+#: .\cookbook\templates\forms\edit_internal_recipe.html:128
msgid "Proteins"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:146
-#: .\cookbook\templates\forms\edit_internal_recipe.html:454
+#: .\cookbook\templates\forms\edit_internal_recipe.html:150
+#: .\cookbook\templates\forms\edit_internal_recipe.html:481
msgid "Step"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:167
+#: .\cookbook\templates\forms\edit_internal_recipe.html:171
msgid "Show as header"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:173
+#: .\cookbook\templates\forms\edit_internal_recipe.html:177
msgid "Hide as header"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:178
+#: .\cookbook\templates\forms\edit_internal_recipe.html:182
msgid "Move Up"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:183
+#: .\cookbook\templates\forms\edit_internal_recipe.html:187
msgid "Move Down"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:192
+#: .\cookbook\templates\forms\edit_internal_recipe.html:196
msgid "Step Name"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:196
+#: .\cookbook\templates\forms\edit_internal_recipe.html:200
msgid "Step Type"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:207
+#: .\cookbook\templates\forms\edit_internal_recipe.html:212
msgid "Step time in Minutes"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:261
-#: .\cookbook\templates\shopping_list.html:183
-msgid "Select Unit"
+#: .\cookbook\templates\forms\edit_internal_recipe.html:228
+msgid "Select File"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:262
-#: .\cookbook\templates\forms\edit_internal_recipe.html:286
-#: .\cookbook\templates\shopping_list.html:184
-#: .\cookbook\templates\shopping_list.html:206
-msgid "Create"
-msgstr ""
-
-#: .\cookbook\templates\forms\edit_internal_recipe.html:263
-#: .\cookbook\templates\forms\edit_internal_recipe.html:287
-#: .\cookbook\templates\shopping_list.html:185
-#: .\cookbook\templates\shopping_list.html:207
-#: .\cookbook\templates\shopping_list.html:237
-#: .\cookbook\templates\shopping_list.html:261
-#: .\cookbook\templates\url_import.html:124
-#: .\cookbook\templates\url_import.html:156
+#: .\cookbook\templates\forms\edit_internal_recipe.html:229
+#: .\cookbook\templates\forms\edit_internal_recipe.html:290
+#: .\cookbook\templates\forms\edit_internal_recipe.html:314
+#: .\cookbook\templates\shopping_list.html:189
+#: .\cookbook\templates\shopping_list.html:211
+#: .\cookbook\templates\shopping_list.html:241
+#: .\cookbook\templates\shopping_list.html:265
+#: .\cookbook\templates\url_import.html:495
+#: .\cookbook\templates\url_import.html:527
msgid "Select"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:285
-#: .\cookbook\templates\shopping_list.html:205
+#: .\cookbook\templates\forms\edit_internal_recipe.html:288
+#: .\cookbook\templates\shopping_list.html:187
+msgid "Select Unit"
+msgstr ""
+
+#: .\cookbook\templates\forms\edit_internal_recipe.html:289
+#: .\cookbook\templates\forms\edit_internal_recipe.html:313
+#: .\cookbook\templates\shopping_list.html:188
+#: .\cookbook\templates\shopping_list.html:210
+msgid "Create"
+msgstr ""
+
+#: .\cookbook\templates\forms\edit_internal_recipe.html:312
+#: .\cookbook\templates\shopping_list.html:209
msgid "Select Food"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:302
+#: .\cookbook\templates\forms\edit_internal_recipe.html:329
#: .\cookbook\templates\meal_plan.html:256
-#: .\cookbook\templates\url_import.html:171
+#: .\cookbook\templates\url_import.html:542
msgid "Note"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:319
+#: .\cookbook\templates\forms\edit_internal_recipe.html:346
msgid "Delete Ingredient"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:325
+#: .\cookbook\templates\forms\edit_internal_recipe.html:352
msgid "Make Header"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:331
+#: .\cookbook\templates\forms\edit_internal_recipe.html:358
msgid "Make Ingredient"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:337
+#: .\cookbook\templates\forms\edit_internal_recipe.html:364
msgid "Disable Amount"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:343
+#: .\cookbook\templates\forms\edit_internal_recipe.html:370
msgid "Enable Amount"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:348
+#: .\cookbook\templates\forms\edit_internal_recipe.html:375
msgid "Copy Template Reference"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:374
-#: .\cookbook\templates\url_import.html:196
+#: .\cookbook\templates\forms\edit_internal_recipe.html:401
+#: .\cookbook\templates\url_import.html:297
+#: .\cookbook\templates\url_import.html:567
msgid "Instructions"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:387
-#: .\cookbook\templates\forms\edit_internal_recipe.html:418
+#: .\cookbook\templates\forms\edit_internal_recipe.html:414
+#: .\cookbook\templates\forms\edit_internal_recipe.html:445
msgid "Save & View"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:391
-#: .\cookbook\templates\forms\edit_internal_recipe.html:424
+#: .\cookbook\templates\forms\edit_internal_recipe.html:418
+#: .\cookbook\templates\forms\edit_internal_recipe.html:451
msgid "Add Step"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:394
-#: .\cookbook\templates\forms\edit_internal_recipe.html:428
+#: .\cookbook\templates\forms\edit_internal_recipe.html:421
+#: .\cookbook\templates\forms\edit_internal_recipe.html:455
msgid "Add Nutrition"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:396
-#: .\cookbook\templates\forms\edit_internal_recipe.html:430
+#: .\cookbook\templates\forms\edit_internal_recipe.html:423
+#: .\cookbook\templates\forms\edit_internal_recipe.html:457
msgid "Remove Nutrition"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:398
-#: .\cookbook\templates\forms\edit_internal_recipe.html:433
+#: .\cookbook\templates\forms\edit_internal_recipe.html:425
+#: .\cookbook\templates\forms\edit_internal_recipe.html:460
msgid "View Recipe"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:400
-#: .\cookbook\templates\forms\edit_internal_recipe.html:435
+#: .\cookbook\templates\forms\edit_internal_recipe.html:427
+#: .\cookbook\templates\forms\edit_internal_recipe.html:462
msgid "Delete Recipe"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:441
+#: .\cookbook\templates\forms\edit_internal_recipe.html:468
msgid "Steps"
msgstr ""
@@ -828,7 +1039,7 @@ msgid ""
msgstr ""
#: .\cookbook\templates\forms\ingredients.html:24
-#: .\cookbook\templates\stats.html:26
+#: .\cookbook\templates\space.html:35 .\cookbook\templates\stats.html:26
msgid "Units"
msgstr ""
@@ -850,10 +1061,6 @@ msgstr ""
msgid "Are you sure you want to delete the %(title)s: %(object)s "
msgstr ""
-#: .\cookbook\templates\generic\delete_template.html:21
-msgid "Confirm"
-msgstr ""
-
#: .\cookbook\templates\generic\edit_template.html:30
msgid "View"
msgstr ""
@@ -875,12 +1082,6 @@ msgstr ""
msgid "Import all"
msgstr ""
-#: .\cookbook\templates\generic\new_template.html:6
-#: .\cookbook\templates\generic\new_template.html:14
-#: .\cookbook\templates\meal_plan.html:323
-msgid "New"
-msgstr ""
-
#: .\cookbook\templates\generic\table_template.html:76
#: .\cookbook\templates\recipes_table.html:121
msgid "previous"
@@ -925,7 +1126,7 @@ msgstr ""
#: .\cookbook\templates\include\recipe_open_modal.html:7
#: .\cookbook\templates\meal_plan.html:247 .\cookbook\views\delete.py:28
-#: .\cookbook\views\edit.py:264 .\cookbook\views\new.py:40
+#: .\cookbook\views\edit.py:273 .\cookbook\views\new.py:52
msgid "Recipe"
msgstr ""
@@ -958,10 +1159,6 @@ msgstr ""
msgid "New Recipe"
msgstr ""
-#: .\cookbook\templates\index.html:47
-msgid "Website Import"
-msgstr ""
-
#: .\cookbook\templates\index.html:53
msgid "Advanced Search"
msgstr ""
@@ -975,7 +1172,7 @@ msgid "Last viewed"
msgstr ""
#: .\cookbook\templates\index.html:87 .\cookbook\templates\meal_plan.html:178
-#: .\cookbook\templates\stats.html:22
+#: .\cookbook\templates\space.html:29 .\cookbook\templates\stats.html:22
msgid "Recipes"
msgstr ""
@@ -1123,7 +1320,7 @@ msgid "New Entry"
msgstr ""
#: .\cookbook\templates\meal_plan.html:113
-#: .\cookbook\templates\shopping_list.html:52
+#: .\cookbook\templates\shopping_list.html:56
msgid "Search Recipe"
msgstr ""
@@ -1153,7 +1350,7 @@ msgstr ""
#: .\cookbook\templates\meal_plan.html:168
#: .\cookbook\templates\shopping_list.html:7
#: .\cookbook\templates\shopping_list.html:29
-#: .\cookbook\templates\shopping_list.html:705
+#: .\cookbook\templates\shopping_list.html:714
msgid "Shopping List"
msgstr ""
@@ -1203,7 +1400,7 @@ msgstr ""
#: .\cookbook\templates\meal_plan.html:270
#: .\cookbook\templates\meal_plan_entry.html:20
-#: .\cookbook\templates\shopping_list.html:250
+#: .\cookbook\templates\shopping_list.html:254
msgid "Shared with"
msgstr ""
@@ -1278,7 +1475,6 @@ msgstr ""
#: .\cookbook\templates\no_groups_info.html:18
#: .\cookbook\templates\no_perm_info.html:15
-#: .\cookbook\templates\no_space_info.html:15
msgid "Please contact your administrator."
msgstr ""
@@ -1293,13 +1489,48 @@ msgid ""
"action."
msgstr ""
-#: .\cookbook\templates\no_space_info.html:5
-#: .\cookbook\templates\no_space_info.html:12
+#: .\cookbook\templates\no_space_info.html:6
+#: .\cookbook\templates\no_space_info.html:13
msgid "No Space"
msgstr ""
-#: .\cookbook\templates\no_space_info.html:15
-msgid "You are not a member of any space."
+#: .\cookbook\templates\no_space_info.html:17
+msgid ""
+"Recipes, foods, shopping lists and more are organized in spaces of one or "
+"more people."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:18
+msgid ""
+"You can either be invited into an existing space or create your own one."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:31
+#: .\cookbook\templates\no_space_info.html:40
+msgid "Join Space"
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:34
+msgid "Join an existing space."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:35
+msgid ""
+"To join an existing space either enter your invite token or click on the "
+"invite link the space owner send you."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:48
+#: .\cookbook\templates\no_space_info.html:56
+msgid "Create Space"
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:51
+msgid "Create your own recipe space."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:52
+msgid "Start your own recipe space and invite other users to it."
msgstr ""
#: .\cookbook\templates\offline.html:6
@@ -1316,28 +1547,29 @@ msgid ""
"recently viewed them. Keep in mind that data might be outdated."
msgstr ""
-#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\stats.html:47
+#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\space.html:56
+#: .\cookbook\templates\stats.html:47
msgid "Comments"
msgstr ""
#: .\cookbook\templates\recipe_view.html:44 .\cookbook\views\delete.py:118
-#: .\cookbook\views\edit.py:170
+#: .\cookbook\views\edit.py:179
msgid "Comment"
msgstr ""
#: .\cookbook\templates\recipes_table.html:19
#: .\cookbook\templates\recipes_table.html:23
-#: .\cookbook\templates\url_import.html:69
+#: .\cookbook\templates\url_import.html:440
msgid "Recipe Image"
msgstr ""
#: .\cookbook\templates\recipes_table.html:51
-#: .\cookbook\templates\url_import.html:74
+#: .\cookbook\templates\url_import.html:445
msgid "Preparation time ca."
msgstr ""
#: .\cookbook\templates\recipes_table.html:57
-#: .\cookbook\templates\url_import.html:79
+#: .\cookbook\templates\url_import.html:450
msgid "Waiting time ca."
msgstr ""
@@ -1353,39 +1585,67 @@ msgstr ""
msgid "Recipe Home"
msgstr ""
-#: .\cookbook\templates\settings.html:22
+#: .\cookbook\templates\settings.html:23
msgid "Account"
msgstr ""
-#: .\cookbook\templates\settings.html:38
-msgid "Link social account"
+#: .\cookbook\templates\settings.html:27
+msgid "Preferences"
msgstr ""
-#: .\cookbook\templates\settings.html:42
+#: .\cookbook\templates\settings.html:31
+msgid "API-Settings"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:39
+msgid "Name Settings"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:47
+msgid "Password Settings"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:55
+msgid "Email Settings"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:57
+msgid "Manage Email Settings"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:61
+msgid "Social"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:63
+msgid "Manage Social Accounts"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:75
msgid "Language"
msgstr ""
-#: .\cookbook\templates\settings.html:67
+#: .\cookbook\templates\settings.html:105
msgid "Style"
msgstr ""
-#: .\cookbook\templates\settings.html:79
+#: .\cookbook\templates\settings.html:125
msgid "API Token"
msgstr ""
-#: .\cookbook\templates\settings.html:80
+#: .\cookbook\templates\settings.html:126
msgid ""
"You can use both basic authentication and token based authentication to "
"access the REST API."
msgstr ""
-#: .\cookbook\templates\settings.html:92
+#: .\cookbook\templates\settings.html:143
msgid ""
"Use the token as an Authorization header prefixed by the word token as shown "
"in the following examples:"
msgstr ""
-#: .\cookbook\templates\settings.html:94
+#: .\cookbook\templates\settings.html:145
msgid "or"
msgstr ""
@@ -1406,58 +1666,55 @@ msgstr ""
msgid "Create Superuser account"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:75
+#: .\cookbook\templates\shopping_list.html:79
msgid "Shopping Recipes"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:79
+#: .\cookbook\templates\shopping_list.html:83
msgid "No recipes selected"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:146
+#: .\cookbook\templates\shopping_list.html:150
msgid "Entry Mode"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:154
+#: .\cookbook\templates\shopping_list.html:158
msgid "Add Entry"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:170
+#: .\cookbook\templates\shopping_list.html:174
msgid "Amount"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:226
+#: .\cookbook\templates\shopping_list.html:230
+#: .\cookbook\templates\supermarket.html:7
msgid "Supermarket"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:236
+#: .\cookbook\templates\shopping_list.html:240
msgid "Select Supermarket"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:260
+#: .\cookbook\templates\shopping_list.html:264
msgid "Select User"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:279
+#: .\cookbook\templates\shopping_list.html:283
msgid "Finished"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:292
+#: .\cookbook\templates\shopping_list.html:296
msgid "You are offline, shopping list might not syncronize."
msgstr ""
-#: .\cookbook\templates\shopping_list.html:357
+#: .\cookbook\templates\shopping_list.html:361
msgid "Copy/Export"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:361
+#: .\cookbook\templates\shopping_list.html:365
msgid "List Prefix"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:708
-msgid "There was an error creating a resource!"
-msgstr ""
-
#: .\cookbook\templates\socialaccount\connections.html:4
#: .\cookbook\templates\socialaccount\connections.html:7
msgid "Account Connections"
@@ -1469,10 +1726,6 @@ msgid ""
" accounts:"
msgstr ""
-#: .\cookbook\templates\socialaccount\connections.html:36
-msgid "Remove"
-msgstr ""
-
#: .\cookbook\templates\socialaccount\connections.html:44
msgid ""
"You currently have no social network accounts connected to this account."
@@ -1482,38 +1735,87 @@ msgstr ""
msgid "Add a 3rd Party Account"
msgstr ""
-#: .\cookbook\templates\stats.html:4
-msgid "Stats"
+#: .\cookbook\templates\space.html:18
+msgid "Manage Subscription"
msgstr ""
-#: .\cookbook\templates\stats.html:19
+#: .\cookbook\templates\space.html:26 .\cookbook\templates\stats.html:19
msgid "Number of objects"
msgstr ""
-#: .\cookbook\templates\stats.html:30
+#: .\cookbook\templates\space.html:39 .\cookbook\templates\stats.html:30
msgid "Recipe Imports"
msgstr ""
-#: .\cookbook\templates\stats.html:38
+#: .\cookbook\templates\space.html:47 .\cookbook\templates\stats.html:38
msgid "Objects stats"
msgstr ""
-#: .\cookbook\templates\stats.html:41
+#: .\cookbook\templates\space.html:50 .\cookbook\templates\stats.html:41
msgid "Recipes without Keywords"
msgstr ""
-#: .\cookbook\templates\stats.html:43
+#: .\cookbook\templates\space.html:52 .\cookbook\templates\stats.html:43
msgid "External Recipes"
msgstr ""
-#: .\cookbook\templates\stats.html:45
+#: .\cookbook\templates\space.html:54 .\cookbook\templates\stats.html:45
msgid "Internal Recipes"
msgstr ""
-#: .\cookbook\templates\system.html:21 .\cookbook\views\lists.py:115
+#: .\cookbook\templates\space.html:67
+msgid "Members"
+msgstr ""
+
+#: .\cookbook\templates\space.html:71
+msgid "Invite User"
+msgstr ""
+
+#: .\cookbook\templates\space.html:82
+msgid "User"
+msgstr ""
+
+#: .\cookbook\templates\space.html:83
+msgid "Groups"
+msgstr ""
+
+#: .\cookbook\templates\space.html:99
+msgid "admin"
+msgstr ""
+
+#: .\cookbook\templates\space.html:100
+msgid "user"
+msgstr ""
+
+#: .\cookbook\templates\space.html:101
+msgid "guest"
+msgstr ""
+
+#: .\cookbook\templates\space.html:102
+msgid "remove"
+msgstr ""
+
+#: .\cookbook\templates\space.html:106
+msgid "Update"
+msgstr ""
+
+#: .\cookbook\templates\space.html:110
+msgid "You cannot edit yourself."
+msgstr ""
+
+#: .\cookbook\templates\space.html:117
+msgid "There are no members in your space yet!"
+msgstr ""
+
+#: .\cookbook\templates\space.html:124 .\cookbook\templates\system.html:21
+#: .\cookbook\views\lists.py:115
msgid "Invite Links"
msgstr ""
+#: .\cookbook\templates\stats.html:4
+msgid "Stats"
+msgstr ""
+
#: .\cookbook\templates\system.html:22
msgid "Show Links"
msgstr ""
@@ -1611,45 +1913,141 @@ msgid ""
" "
msgstr ""
-#: .\cookbook\templates\url_import.html:5
+#: .\cookbook\templates\url_import.html:6
msgid "URL Import"
msgstr ""
-#: .\cookbook\templates\url_import.html:23
+#: .\cookbook\templates\url_import.html:31
+msgid "Drag me to your bookmarks to import recipes from anywhere"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:32
+msgid "Bookmark Me!"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:61
msgid "Enter website URL"
msgstr ""
-#: .\cookbook\templates\url_import.html:36
-msgid "Enter json directly"
+#: .\cookbook\templates\url_import.html:97
+msgid "Select recipe files to import or drop them here..."
msgstr ""
-#: .\cookbook\templates\url_import.html:57
+#: .\cookbook\templates\url_import.html:118
+msgid "Paste json or html source here to load recipe."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:146
+msgid "Preview Recipe Data"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:147
+msgid "Drag recipe attributes from the right into the appropriate box below."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:156
+#: .\cookbook\templates\url_import.html:173
+#: .\cookbook\templates\url_import.html:190
+#: .\cookbook\templates\url_import.html:209
+#: .\cookbook\templates\url_import.html:227
+#: .\cookbook\templates\url_import.html:242
+#: .\cookbook\templates\url_import.html:257
+#: .\cookbook\templates\url_import.html:273
+#: .\cookbook\templates\url_import.html:300
+#: .\cookbook\templates\url_import.html:351
+msgid "Clear Contents"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:158
+msgid "Text dragged here will be appended to the name."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:175
+msgid "Text dragged here will be appended to the description."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:192
+msgid "Keywords dragged here will be appended to current list"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:207
+msgid "Image"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:239
+msgid "Prep Time"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:254
+msgid "Cook Time"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:275
+msgid "Ingredients dragged here will be appended to current list."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:302
+msgid ""
+"Recipe instructions dragged here will be appended to current instructions."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:325
+msgid "Discovered Attributes"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:327
+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:344
+msgid "Show Blank Field"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:349
+msgid "Blank Field"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:353
+msgid "Items dragged to Blank Field will be appended."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:400
+msgid "Delete Text"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:413
+msgid "Delete image"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:429
msgid "Recipe Name"
msgstr ""
-#: .\cookbook\templates\url_import.html:62
+#: .\cookbook\templates\url_import.html:433
msgid "Recipe Description"
msgstr ""
-#: .\cookbook\templates\url_import.html:123
-#: .\cookbook\templates\url_import.html:155
-#: .\cookbook\templates\url_import.html:211
+#: .\cookbook\templates\url_import.html:494
+#: .\cookbook\templates\url_import.html:526
+#: .\cookbook\templates\url_import.html:582
msgid "Select one"
msgstr ""
-#: .\cookbook\templates\url_import.html:225
+#: .\cookbook\templates\url_import.html:596
msgid "All Keywords"
msgstr ""
-#: .\cookbook\templates\url_import.html:228
+#: .\cookbook\templates\url_import.html:599
msgid "Import all keywords, not only the ones already existing."
msgstr ""
-#: .\cookbook\templates\url_import.html:255
+#: .\cookbook\templates\url_import.html:626
msgid "Information"
msgstr ""
-#: .\cookbook\templates\url_import.html:257
+#: .\cookbook\templates\url_import.html:628
msgid ""
" Only websites containing ld+json or microdata information can currently\n"
" be imported. Most big recipe pages "
@@ -1660,48 +2058,73 @@ msgid ""
" github issues."
msgstr ""
-#: .\cookbook\templates\url_import.html:265
+#: .\cookbook\templates\url_import.html:636
msgid "Google ld+json Info"
msgstr ""
-#: .\cookbook\templates\url_import.html:268
+#: .\cookbook\templates\url_import.html:639
msgid "GitHub Issues"
msgstr ""
-#: .\cookbook\templates\url_import.html:270
+#: .\cookbook\templates\url_import.html:641
msgid "Recipe Markup Specification"
msgstr ""
-#: .\cookbook\views\api.py:71
+#: .\cookbook\views\api.py:77
msgid "Parameter updated_at incorrectly formatted"
msgstr ""
-#: .\cookbook\views\api.py:455 .\cookbook\views\views.py:226
+#: .\cookbook\views\api.py:553 .\cookbook\views\views.py:295
msgid "This feature is not available in the demo version!"
msgstr ""
-#: .\cookbook\views\api.py:478
+#: .\cookbook\views\api.py:576
msgid "Sync successful!"
msgstr ""
-#: .\cookbook\views\api.py:483
+#: .\cookbook\views\api.py:581
msgid "Error synchronizing with Storage"
msgstr ""
-#: .\cookbook\views\api.py:556 .\cookbook\views\api.py:576
+#: .\cookbook\views\api.py:649
+msgid "Nothing to do."
+msgstr ""
+
+#: .\cookbook\views\api.py:664
+msgid "The requested site provided malformed data and cannot be read."
+msgstr ""
+
+#: .\cookbook\views\api.py:671
msgid "The requested page could not be found."
msgstr ""
-#: .\cookbook\views\api.py:585
+#: .\cookbook\views\api.py:680
msgid ""
-"The requested page refused to provide any information (Status Code 403)."
+"The requested site does not provide any recognized data format to import the "
+"recipe from."
msgstr ""
-#: .\cookbook\views\api.py:611
-msgid "Could not parse correctly..."
+#: .\cookbook\views\api.py:694
+msgid "No useable data could be found."
msgstr ""
-#: .\cookbook\views\data.py:94
+#: .\cookbook\views\api.py:710
+msgid "I couldn't find anything to do."
+msgstr ""
+
+#: .\cookbook\views\data.py:30 .\cookbook\views\data.py:121
+#: .\cookbook\views\edit.py:50 .\cookbook\views\import_export.py:67
+#: .\cookbook\views\new.py:32
+msgid "You have reached the maximum number of recipes for your space."
+msgstr ""
+
+#: .\cookbook\views\data.py:34 .\cookbook\views\data.py:125
+#: .\cookbook\views\edit.py:54 .\cookbook\views\import_export.py:71
+#: .\cookbook\views\new.py:36
+msgid "You have more users than allowed in your space."
+msgstr ""
+
+#: .\cookbook\views\data.py:103
#, python-format
msgid "Batch edit done. %(count)d recipe was updated."
msgid_plural "Batch edit done. %(count)d Recipes where updated."
@@ -1713,7 +2136,7 @@ msgid "Monitor"
msgstr ""
#: .\cookbook\views\delete.py:96 .\cookbook\views\lists.py:102
-#: .\cookbook\views\new.py:86
+#: .\cookbook\views\new.py:98
msgid "Storage Backend"
msgstr ""
@@ -1722,8 +2145,8 @@ msgid ""
"Could not delete this storage backend as it is used in at least one monitor."
msgstr ""
-#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:204
-#: .\cookbook\views\new.py:144
+#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:213
+#: .\cookbook\views\new.py:156
msgid "Recipe Book"
msgstr ""
@@ -1731,55 +2154,55 @@ msgstr ""
msgid "Bookmarks"
msgstr ""
-#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:214
+#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:252
msgid "Invite Link"
msgstr ""
-#: .\cookbook\views\edit.py:110
+#: .\cookbook\views\edit.py:119
msgid "Food"
msgstr ""
-#: .\cookbook\views\edit.py:119
+#: .\cookbook\views\edit.py:128
msgid "You cannot edit this storage!"
msgstr ""
-#: .\cookbook\views\edit.py:139
+#: .\cookbook\views\edit.py:148
msgid "Storage saved!"
msgstr ""
-#: .\cookbook\views\edit.py:145
+#: .\cookbook\views\edit.py:154
msgid "There was an error updating this storage backend!"
msgstr ""
-#: .\cookbook\views\edit.py:156
+#: .\cookbook\views\edit.py:165
msgid "Storage"
msgstr ""
-#: .\cookbook\views\edit.py:252
+#: .\cookbook\views\edit.py:261
msgid "Changes saved!"
msgstr ""
-#: .\cookbook\views\edit.py:256
+#: .\cookbook\views\edit.py:265
msgid "Error saving changes!"
msgstr ""
-#: .\cookbook\views\edit.py:289
+#: .\cookbook\views\edit.py:299
msgid "Units merged!"
msgstr ""
-#: .\cookbook\views\edit.py:291 .\cookbook\views\edit.py:307
+#: .\cookbook\views\edit.py:301 .\cookbook\views\edit.py:317
msgid "Cannot merge with the same object!"
msgstr ""
-#: .\cookbook\views\edit.py:305
+#: .\cookbook\views\edit.py:315
msgid "Foods merged!"
msgstr ""
-#: .\cookbook\views\import_export.py:73
+#: .\cookbook\views\import_export.py:93
msgid "Importing is not implemented for this provider"
msgstr ""
-#: .\cookbook\views\import_export.py:92
+#: .\cookbook\views\import_export.py:115
msgid "Exporting is not implemented for this provider"
msgstr ""
@@ -1795,41 +2218,103 @@ msgstr ""
msgid "Shopping Lists"
msgstr ""
-#: .\cookbook\views\new.py:111
+#: .\cookbook\views\new.py:123
msgid "Imported new recipe!"
msgstr ""
-#: .\cookbook\views\new.py:114
+#: .\cookbook\views\new.py:126
msgid "There was an error importing this recipe!"
msgstr ""
-#: .\cookbook\views\views.py:123
+#: .\cookbook\views\new.py:226
+msgid "Hello"
+msgstr ""
+
+#: .\cookbook\views\new.py:226
+msgid "You have been invited by "
+msgstr ""
+
+#: .\cookbook\views\new.py:227
+msgid " to join their Tandoor Recipes space "
+msgstr ""
+
+#: .\cookbook\views\new.py:228
+msgid "Click the following link to activate your account: "
+msgstr ""
+
+#: .\cookbook\views\new.py:229
+msgid ""
+"If the link does not work use the following code to manually join the space: "
+msgstr ""
+
+#: .\cookbook\views\new.py:230
+msgid "The invitation is valid until "
+msgstr ""
+
+#: .\cookbook\views\new.py:231
+msgid ""
+"Tandoor Recipes is an Open Source recipe manager. Check it out on GitHub "
+msgstr ""
+
+#: .\cookbook\views\new.py:234
+msgid "Tandoor Recipes Invite"
+msgstr ""
+
+#: .\cookbook\views\new.py:241
+msgid "Invite link successfully send to user."
+msgstr ""
+
+#: .\cookbook\views\new.py:244
+msgid ""
+"You have send to many emails, please share the link manually or wait a few "
+"hours."
+msgstr ""
+
+#: .\cookbook\views\new.py:246
+msgid "Email to user could not be send, please share link manually."
+msgstr ""
+
+#: .\cookbook\views\views.py:125
+msgid ""
+"You have successfully created your own recipe space. Start by adding some "
+"recipes or invite other people to join you."
+msgstr ""
+
+#: .\cookbook\views\views.py:173
msgid "You do not have the required permissions to perform this action!"
msgstr ""
-#: .\cookbook\views\views.py:134
+#: .\cookbook\views\views.py:184
msgid "Comment saved!"
msgstr ""
-#: .\cookbook\views\views.py:326
+#: .\cookbook\views\views.py:396
msgid ""
"The setup page can only be used to create the first user! If you have "
"forgotten your superuser credentials please consult the django documentation "
"on how to reset passwords."
msgstr ""
-#: .\cookbook\views\views.py:333 .\cookbook\views\views.py:378
+#: .\cookbook\views\views.py:403
msgid "Passwords dont match!"
msgstr ""
-#: .\cookbook\views\views.py:349 .\cookbook\views\views.py:385
+#: .\cookbook\views\views.py:419
msgid "User has been created, please login!"
msgstr ""
-#: .\cookbook\views\views.py:365
+#: .\cookbook\views\views.py:435
msgid "Malformed Invite Link supplied!"
msgstr ""
-#: .\cookbook\views\views.py:405
+#: .\cookbook\views\views.py:441
+msgid "You are already member of a space and therefore cannot join this one."
+msgstr ""
+
+#: .\cookbook\views\views.py:452
+msgid "Successfully joined space."
+msgstr ""
+
+#: .\cookbook\views\views.py:458
msgid "Invite Link not valid or already used!"
msgstr ""
diff --git a/cookbook/locale/it/LC_MESSAGES/django.po b/cookbook/locale/it/LC_MESSAGES/django.po
index c4578f20..77f10168 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-04-11 15:09+0200\n"
+"POT-Creation-Date: 2021-06-12 20:30+0200\n"
"PO-Revision-Date: 2021-04-11 15:23+0000\n"
"Last-Translator: Oliver Cervera /"
"remote.php/webdav/
è aggiunto automaticamente)"
-#: .\cookbook\forms.py:291
+#: .\cookbook\forms.py:307
msgid "Search String"
msgstr "Stringa di Ricerca"
-#: .\cookbook\forms.py:318
+#: .\cookbook\forms.py:334
msgid "File ID"
msgstr "ID del File"
-#: .\cookbook\forms.py:354
+#: .\cookbook\forms.py:370
msgid "You must provide at least a recipe or a title."
msgstr "Devi fornire almeno una ricetta o un titolo."
-#: .\cookbook\forms.py:367
+#: .\cookbook\forms.py:383
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:368
-#: .\cookbook\templates\forms\edit_internal_recipe.html:377
+#: .\cookbook\forms.py:384
+#: .\cookbook\templates\forms\edit_internal_recipe.html:404
msgid ""
"You can use markdown to format this field. See the docs here"
@@ -219,52 +223,57 @@ msgstr ""
"Puoi usare markdown per formattare questo campo. Guarda la documentazione qui"
-#: .\cookbook\forms.py:393
-msgid "A username is not required, if left blank the new user can choose one."
+#: .\cookbook\forms.py:409
+msgid "Maximum number of users for this space reached."
msgstr ""
-"Non è richiesto un nome utente, se lasciato vuoto il nuovo utente ne può "
-"sceglierne uno."
-#: .\cookbook\helper\permission_helper.py:123
-#: .\cookbook\helper\permission_helper.py:129
-#: .\cookbook\helper\permission_helper.py:151
-#: .\cookbook\helper\permission_helper.py:196
-#: .\cookbook\helper\permission_helper.py:210
-#: .\cookbook\helper\permission_helper.py:221
-#: .\cookbook\helper\permission_helper.py:232 .\cookbook\views\data.py:30
-#: .\cookbook\views\views.py:112 .\cookbook\views\views.py:116
-#: .\cookbook\views\views.py:184
-msgid "You do not have the required permissions to view this page!"
-msgstr "Non hai i permessi necessari per visualizzare questa pagina!"
+#: .\cookbook\forms.py:415
+msgid "Email address already taken!"
+msgstr ""
-#: .\cookbook\helper\permission_helper.py:141
+#: .\cookbook\forms.py:423
+msgid ""
+"An email address is not required but if present the invite link will be send "
+"to the user."
+msgstr ""
+
+#: .\cookbook\forms.py:438
+msgid "Name already taken."
+msgstr ""
+
+#: .\cookbook\forms.py:449
+msgid "Accept Terms and Privacy"
+msgstr ""
+
+#: .\cookbook\helper\AllAuthCustomAdapter.py:30
+msgid ""
+"In order to prevent spam, the requested email was not send. Please wait a "
+"few minutes and try again."
+msgstr ""
+
+#: .\cookbook\helper\permission_helper.py:124
+#: .\cookbook\helper\permission_helper.py:144 .\cookbook\views\views.py:147
msgid "You are not logged in and therefore cannot view this page!"
msgstr "Non hai fatto l'accesso e quindi non puoi visualizzare questa pagina!"
-#: .\cookbook\helper\permission_helper.py:145
-#: .\cookbook\helper\permission_helper.py:167
-#: .\cookbook\helper\permission_helper.py:182
+#: .\cookbook\helper\permission_helper.py:127
+#: .\cookbook\helper\permission_helper.py:132
+#: .\cookbook\helper\permission_helper.py:154
+#: .\cookbook\helper\permission_helper.py:199
+#: .\cookbook\helper\permission_helper.py:213
+#: .\cookbook\helper\permission_helper.py:224
+#: .\cookbook\helper\permission_helper.py:235 .\cookbook\views\data.py:39
+#: .\cookbook\views\views.py:158 .\cookbook\views\views.py:165
+#: .\cookbook\views\views.py:253
+msgid "You do not have the required permissions to view this page!"
+msgstr "Non hai i permessi necessari per visualizzare questa pagina!"
+
+#: .\cookbook\helper\permission_helper.py:148
+#: .\cookbook\helper\permission_helper.py:170
+#: .\cookbook\helper\permission_helper.py:185
msgid "You cannot interact with this object as it is not owned by you!"
msgstr "Non puoi interagire con questo oggetto perché non ne hai i diritti!"
-#: .\cookbook\helper\recipe_url_import.py:40 .\cookbook\views\api.py:549
-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\helper\recipe_url_import.py:54
-msgid ""
-"The requested site does not provide any recognized data format to import the "
-"recipe from."
-msgstr ""
-"Il sito richiesto non fornisce un formato di dati riconosciuto da cui "
-"importare la ricetta."
-
-#: .\cookbook\helper\recipe_url_import.py:160
-msgid "Imported from"
-msgstr "Importato da"
-
#: .\cookbook\helper\template_helper.py:60
#: .\cookbook\helper\template_helper.py:62
msgid "Could not parse template code."
@@ -274,12 +283,16 @@ msgstr "Impossibile elaborare il codice del template."
#: .\cookbook\templates\import.html:14 .\cookbook\templates\import.html:20
#: .\cookbook\templates\import_response.html:7
#: .\cookbook\templates\test.html:14 .\cookbook\templates\test.html:20
-#: .\cookbook\templates\url_import.html:233 .\cookbook\views\delete.py:60
-#: .\cookbook\views\edit.py:190
+#: .\cookbook\templates\url_import.html:27
+#: .\cookbook\templates\url_import.html:101
+#: .\cookbook\templates\url_import.html:123
+#: .\cookbook\templates\url_import.html:317
+#: .\cookbook\templates\url_import.html:604 .\cookbook\views\delete.py:60
+#: .\cookbook\views\edit.py:199
msgid "Import"
msgstr "Importa"
-#: .\cookbook\integration\integration.py:131
+#: .\cookbook\integration\integration.py:162
msgid ""
"Importer expected a .zip file. Did you choose the correct importer type for "
"your data ?"
@@ -287,31 +300,38 @@ msgstr ""
"La procedura di import necessita di un file .zip. Hai scelto il tipo di "
"importazione corretta per i tuoi dati?"
-#: .\cookbook\integration\integration.py:134
+#: .\cookbook\integration\integration.py:165
+msgid ""
+"An unexpected error occurred during the import. Please make sure you have "
+"uploaded a valid file."
+msgstr ""
+
+#: .\cookbook\integration\integration.py:169
msgid "The following recipes were ignored because they already existed:"
msgstr "Le seguenti ricette sono state ignorate perché già esistenti:"
-#: .\cookbook\integration\integration.py:137
+#: .\cookbook\integration\integration.py:173
#, python-format
msgid "Imported %s recipes."
msgstr "Importate %s ricette."
-#: .\cookbook\integration\paprika.py:44
+#: .\cookbook\integration\paprika.py:46
msgid "Notes"
msgstr "Note"
-#: .\cookbook\integration\paprika.py:47
+#: .\cookbook\integration\paprika.py:49
msgid "Nutritional Information"
msgstr "Informazioni nutrizionali"
-#: .\cookbook\integration\paprika.py:50
+#: .\cookbook\integration\paprika.py:53
msgid "Source"
msgstr "Fonte"
#: .\cookbook\integration\safron.py:23
-#: .\cookbook\templates\forms\edit_internal_recipe.html:75
+#: .\cookbook\templates\forms\edit_internal_recipe.html:79
#: .\cookbook\templates\include\log_cooking.html:16
-#: .\cookbook\templates\url_import.html:84
+#: .\cookbook\templates\url_import.html:224
+#: .\cookbook\templates\url_import.html:455
msgid "Servings"
msgstr "Porzioni"
@@ -320,11 +340,11 @@ msgid "Waiting time"
msgstr "Tempo di cottura"
#: .\cookbook\integration\safron.py:27
-#: .\cookbook\templates\forms\edit_internal_recipe.html:69
+#: .\cookbook\templates\forms\edit_internal_recipe.html:73
msgid "Preparation Time"
msgstr "Tempo di preparazione"
-#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:71
+#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:78
#: .\cookbook\templates\forms\ingredients.html:7
#: .\cookbook\templates\index.html:7
msgid "Cookbook"
@@ -350,44 +370,74 @@ msgstr "Cena"
msgid "Other"
msgstr "Altro"
-#: .\cookbook\models.py:110 .\cookbook\templates\shopping_list.html:48
+#: .\cookbook\models.py:71
+msgid ""
+"Maximum file storage for space in MB. 0 for unlimited, -1 to disable file "
+"upload."
+msgstr ""
+
+#: .\cookbook\models.py:121 .\cookbook\templates\search.html:7
+#: .\cookbook\templates\shopping_list.html:52
msgid "Search"
msgstr "Cerca"
-#: .\cookbook\models.py:111 .\cookbook\templates\base.html:85
+#: .\cookbook\models.py:122 .\cookbook\templates\base.html:92
#: .\cookbook\templates\meal_plan.html:5 .\cookbook\views\delete.py:152
-#: .\cookbook\views\edit.py:224 .\cookbook\views\new.py:188
+#: .\cookbook\views\edit.py:233 .\cookbook\views\new.py:201
msgid "Meal-Plan"
msgstr "Piano alimentare"
-#: .\cookbook\models.py:112 .\cookbook\templates\base.html:82
+#: .\cookbook\models.py:123 .\cookbook\templates\base.html:89
msgid "Books"
msgstr "Libri"
-#: .\cookbook\models.py:119
+#: .\cookbook\models.py:131
msgid "Small"
msgstr "Piccolo"
-#: .\cookbook\models.py:119
+#: .\cookbook\models.py:131
msgid "Large"
msgstr "Grande"
-#: .\cookbook\models.py:327
-#: .\cookbook\templates\forms\edit_internal_recipe.html:198
+#: .\cookbook\models.py:131 .\cookbook\templates\generic\new_template.html:6
+#: .\cookbook\templates\generic\new_template.html:14
+#: .\cookbook\templates\meal_plan.html:323
+msgid "New"
+msgstr "Nuovo"
+
+#: .\cookbook\models.py:340
+#: .\cookbook\templates\forms\edit_internal_recipe.html:202
msgid "Text"
msgstr "Testo"
-#: .\cookbook\models.py:327
-#: .\cookbook\templates\forms\edit_internal_recipe.html:199
+#: .\cookbook\models.py:340
+#: .\cookbook\templates\forms\edit_internal_recipe.html:203
msgid "Time"
msgstr "Tempo"
+#: .\cookbook\models.py:340
+#: .\cookbook\templates\forms\edit_internal_recipe.html:204
+#: .\cookbook\templates\forms\edit_internal_recipe.html:218
+#, fuzzy
+#| msgid "File ID"
+msgid "File"
+msgstr "ID del File"
+
+#: .\cookbook\serializer.py:109
+msgid "File uploads are not enabled for this Space."
+msgstr ""
+
+#: .\cookbook\serializer.py:117
+msgid "You have reached your file upload limit."
+msgstr ""
+
#: .\cookbook\tables.py:35 .\cookbook\templates\books.html:36
#: .\cookbook\templates\generic\edit_template.html:6
#: .\cookbook\templates\generic\edit_template.html:14
#: .\cookbook\templates\meal_plan.html:281
#: .\cookbook\templates\recipes_table.html:82
#: .\cookbook\templates\shopping_list.html:33
+#: .\cookbook\templates\space.html:84
msgid "Edit"
msgstr "Modifica"
@@ -401,10 +451,6 @@ msgstr "Modifica"
msgid "Delete"
msgstr "Elimina"
-#: .\cookbook\tables.py:144
-msgid "Link"
-msgstr "Link"
-
#: .\cookbook\templates\404.html:5
msgid "404 Error"
msgstr "Errore 404"
@@ -421,21 +467,126 @@ msgstr "Portami nella Home"
msgid "Report a Bug"
msgstr "Segnala un Bug"
-#: .\cookbook\templates\account\login.html:7
-#: .\cookbook\templates\base.html:170
+#: .\cookbook\templates\account\email.html:6
+#: .\cookbook\templates\account\email.html:9
+msgid "E-mail Addresses"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:11
+msgid "The following e-mail addresses are associated with your account:"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:28
+msgid "Verified"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:30
+msgid "Unverified"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:32
+msgid "Primary"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:39
+#, fuzzy
+#| msgid "Make Header"
+msgid "Make Primary"
+msgstr "Crea Intestazione"
+
+#: .\cookbook\templates\account\email.html:41
+msgid "Re-send Verification"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:42
+#: .\cookbook\templates\socialaccount\connections.html:36
+msgid "Remove"
+msgstr "Rimuovi"
+
+#: .\cookbook\templates\account\email.html:50
+#, fuzzy
+#| msgid "Warning"
+msgid "Warning:"
+msgstr "Avviso"
+
+#: .\cookbook\templates\account\email.html:50
+msgid ""
+"You currently do not have any e-mail address set up. You should really add "
+"an e-mail address so you can receive notifications, reset your password, etc."
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:56
+msgid "Add E-mail Address"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:61
+msgid "Add E-mail"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:71
+msgid "Do you really want to remove the selected e-mail address?"
+msgstr ""
+
+#: .\cookbook\templates\account\email_confirm.html:6
+#: .\cookbook\templates\account\email_confirm.html:10
+msgid "Confirm E-mail Address"
+msgstr ""
+
+#: .\cookbook\templates\account\email_confirm.html:16
+#, python-format
+msgid ""
+"Please confirm that\n"
+" %(email)s is an e-mail address "
+"for user %(user_display)s\n"
+" ."
+msgstr ""
+
+#: .\cookbook\templates\account\email_confirm.html:22
+#: .\cookbook\templates\generic\delete_template.html:21
+msgid "Confirm"
+msgstr "Conferma"
+
+#: .\cookbook\templates\account\email_confirm.html:29
+#, python-format
+msgid ""
+"This e-mail confirmation link expired or is invalid. Please\n"
+" issue a new e-mail confirmation "
+"request."
+msgstr ""
+
+#: .\cookbook\templates\account\login.html:8
+#: .\cookbook\templates\base.html:180
msgid "Login"
msgstr "Login"
-#: .\cookbook\templates\account\login.html:13
-#: .\cookbook\templates\account\login.html:28
+#: .\cookbook\templates\account\login.html:15
+#: .\cookbook\templates\account\login.html:31
+#: .\cookbook\templates\account\signup.html:69
+#: .\cookbook\templates\account\signup_closed.html:15
msgid "Sign In"
msgstr "Accedi"
-#: .\cookbook\templates\account\login.html:38
+#: .\cookbook\templates\account\login.html:32
+#, fuzzy
+#| msgid "Sign In"
+msgid "Sign Up"
+msgstr "Accedi"
+
+#: .\cookbook\templates\account\login.html:36
+#: .\cookbook\templates\account\login.html:37
+#: .\cookbook\templates\account\password_reset.html:29
+msgid "Reset My Password"
+msgstr ""
+
+#: .\cookbook\templates\account\login.html:37
+msgid "Lost your password?"
+msgstr ""
+
+#: .\cookbook\templates\account\login.html:48
msgid "Social Login"
msgstr "Login con social network"
-#: .\cookbook\templates\account\login.html:39
+#: .\cookbook\templates\account\login.html:49
msgid "You can use any of the following providers to sign in."
msgstr "Puoi usare uno dei seguenti provider per accedere."
@@ -449,116 +600,168 @@ msgstr "Esci"
msgid "Are you sure you want to sign out?"
msgstr "Sei sicuro di voler uscire?"
-#: .\cookbook\templates\account\password_reset.html:5
-#: .\cookbook\templates\account\password_reset_done.html:5
+#: .\cookbook\templates\account\password_reset.html:7
+#: .\cookbook\templates\account\password_reset.html:13
+#: .\cookbook\templates\account\password_reset_done.html:7
+#: .\cookbook\templates\account\password_reset_done.html:10
msgid "Password Reset"
msgstr "Recupero password"
-#: .\cookbook\templates\account\password_reset.html:9
-#: .\cookbook\templates\account\password_reset_done.html:9
-msgid "Password reset is not implemented for the time being!"
+#: .\cookbook\templates\account\password_reset.html:24
+msgid ""
+"Forgotten your password? Enter your e-mail address below, and we'll send you "
+"an e-mail allowing you to reset it."
+msgstr ""
+
+#: .\cookbook\templates\account\password_reset.html:32
+#, fuzzy
+#| msgid "Password reset is not implemented for the time being!"
+msgid "Password reset is disabled on this instance."
msgstr "Il recupero della password non è stato ancora implementato!"
-#: .\cookbook\templates\account\signup.html:5
+#: .\cookbook\templates\account\password_reset_done.html:16
+msgid ""
+"We have sent you an e-mail. Please contact us if you do not receive it "
+"within a few minutes."
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:6
msgid "Register"
msgstr "Registrati"
-#: .\cookbook\templates\account\signup.html:9
-msgid "Create your Account"
+#: .\cookbook\templates\account\signup.html:12
+#, fuzzy
+#| msgid "Create your Account"
+msgid "Create an Account"
msgstr "Crea il tuo account"
-#: .\cookbook\templates\account\signup.html:14
+#: .\cookbook\templates\account\signup.html:42
+msgid "I accept the follwoing"
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:45
+msgid "Terms and Conditions"
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:48
+msgid "and"
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:52
+msgid "Privacy Policy"
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:65
msgid "Create User"
msgstr "Crea utente"
-#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:160
+#: .\cookbook\templates\account\signup.html:69
+msgid "Already have an account?"
+msgstr ""
+
+#: .\cookbook\templates\account\signup_closed.html:5
+#: .\cookbook\templates\account\signup_closed.html:11
+msgid "Sign Up Closed"
+msgstr ""
+
+#: .\cookbook\templates\account\signup_closed.html:13
+msgid "We are sorry, but the sign up is currently closed."
+msgstr ""
+
+#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:170
#: .\cookbook\templates\rest_framework\api.html:11
msgid "API Documentation"
msgstr "Documentazione API"
-#: .\cookbook\templates\base.html:78
+#: .\cookbook\templates\base.html:85
msgid "Utensils"
msgstr "Strumenti"
-#: .\cookbook\templates\base.html:88
+#: .\cookbook\templates\base.html:95
msgid "Shopping"
msgstr "Spesa"
-#: .\cookbook\templates\base.html:102 .\cookbook\views\delete.py:84
-#: .\cookbook\views\edit.py:93 .\cookbook\views\lists.py:26
-#: .\cookbook\views\new.py:66
+#: .\cookbook\templates\base.html:109 .\cookbook\views\delete.py:84
+#: .\cookbook\views\edit.py:102 .\cookbook\views\lists.py:26
+#: .\cookbook\views\new.py:78
msgid "Keyword"
msgstr "Parola chiave"
-#: .\cookbook\templates\base.html:104
+#: .\cookbook\templates\base.html:111
msgid "Batch Edit"
msgstr "Modifica in blocco"
-#: .\cookbook\templates\base.html:109
+#: .\cookbook\templates\base.html:116
msgid "Storage Data"
msgstr "Dati e Archiviazione"
-#: .\cookbook\templates\base.html:113
+#: .\cookbook\templates\base.html:120
msgid "Storage Backends"
msgstr "Backend Archiviazione"
-#: .\cookbook\templates\base.html:115
+#: .\cookbook\templates\base.html:122
msgid "Configure Sync"
msgstr "Configura Sincronizzazione"
-#: .\cookbook\templates\base.html:117
+#: .\cookbook\templates\base.html:124
msgid "Discovered Recipes"
msgstr "Ricette trovate"
-#: .\cookbook\templates\base.html:119
+#: .\cookbook\templates\base.html:126
msgid "Discovery Log"
msgstr "Registro ricette trovate"
-#: .\cookbook\templates\base.html:121 .\cookbook\templates\stats.html:10
+#: .\cookbook\templates\base.html:128 .\cookbook\templates\stats.html:10
msgid "Statistics"
msgstr "Statistiche"
-#: .\cookbook\templates\base.html:123
+#: .\cookbook\templates\base.html:130
msgid "Units & Ingredients"
msgstr "Unità di misura & Ingredienti"
-#: .\cookbook\templates\base.html:125
+#: .\cookbook\templates\base.html:132 .\cookbook\templates\index.html:47
msgid "Import Recipe"
msgstr "Importa Ricetta"
-#: .\cookbook\templates\base.html:144 .\cookbook\templates\settings.html:6
+#: .\cookbook\templates\base.html:151 .\cookbook\templates\settings.html:6
#: .\cookbook\templates\settings.html:16
msgid "Settings"
msgstr "Impostazioni"
-#: .\cookbook\templates\base.html:146 .\cookbook\templates\history.html:6
+#: .\cookbook\templates\base.html:153 .\cookbook\templates\history.html:6
#: .\cookbook\templates\history.html:14
msgid "History"
msgstr "Cronologia"
-#: .\cookbook\templates\base.html:150 .\cookbook\templates\system.html:13
+#: .\cookbook\templates\base.html:155 .\cookbook\templates\space.html:7
+#, fuzzy
+#| msgid "Settings"
+msgid "Space Settings"
+msgstr "Impostazioni"
+
+#: .\cookbook\templates\base.html:160 .\cookbook\templates\system.html:13
msgid "System"
msgstr "Sistema"
-#: .\cookbook\templates\base.html:152
+#: .\cookbook\templates\base.html:162
msgid "Admin"
msgstr "Amministratore"
-#: .\cookbook\templates\base.html:156
+#: .\cookbook\templates\base.html:166
msgid "Markdown Guide"
msgstr "Informazioni su Markdown"
-#: .\cookbook\templates\base.html:158
+#: .\cookbook\templates\base.html:168
msgid "GitHub"
msgstr "GitHub"
-#: .\cookbook\templates\base.html:162
+#: .\cookbook\templates\base.html:172
msgid "API Browser"
msgstr "Browser API"
-#: .\cookbook\templates\base.html:165
-msgid "Logout"
-msgstr "Logout"
+#: .\cookbook\templates\base.html:175
+msgid "Log out"
+msgstr ""
#: .\cookbook\templates\batch\edit.html:6
msgid "Batch edit Category"
@@ -574,7 +777,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:76
+#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:85
msgid "Sync"
msgstr "Sincronizza"
@@ -603,7 +806,7 @@ msgstr "Sincronizza Ora!"
msgid "Importing Recipes"
msgstr "Importando Ricette"
-#: .\cookbook\templates\batch\waiting.html:23
+#: .\cookbook\templates\batch\waiting.html:28
msgid ""
"This can take a few minutes, depending on the number of recipes in sync, "
"please wait."
@@ -642,26 +845,33 @@ msgid "Export Recipes"
msgstr "Esporta Ricette"
#: .\cookbook\templates\export.html:14 .\cookbook\templates\export.html:20
-#: .\cookbook\templates\shopping_list.html:347
+#: .\cookbook\templates\shopping_list.html:351
#: .\cookbook\templates\test2.html:14 .\cookbook\templates\test2.html:20
msgid "Export"
msgstr "Esporta"
+#: .\cookbook\templates\files.html:7
+#, fuzzy
+#| msgid "File ID"
+msgid "Files"
+msgstr "ID del File"
+
#: .\cookbook\templates\forms\edit_import_recipe.html:5
#: .\cookbook\templates\forms\edit_import_recipe.html:9
msgid "Import new Recipe"
msgstr "Importa nuova Ricetta"
#: .\cookbook\templates\forms\edit_import_recipe.html:14
-#: .\cookbook\templates\forms\edit_internal_recipe.html:389
-#: .\cookbook\templates\forms\edit_internal_recipe.html:421
+#: .\cookbook\templates\forms\edit_internal_recipe.html:416
+#: .\cookbook\templates\forms\edit_internal_recipe.html:448
#: .\cookbook\templates\generic\edit_template.html:23
#: .\cookbook\templates\generic\new_template.html:23
#: .\cookbook\templates\include\log_cooking.html:28
#: .\cookbook\templates\meal_plan.html:325
-#: .\cookbook\templates\settings.html:28 .\cookbook\templates\settings.html:35
-#: .\cookbook\templates\settings.html:58 .\cookbook\templates\settings.html:73
-#: .\cookbook\templates\shopping_list.html:349
+#: .\cookbook\templates\settings.html:44 .\cookbook\templates\settings.html:52
+#: .\cookbook\templates\settings.html:96
+#: .\cookbook\templates\settings.html:114
+#: .\cookbook\templates\shopping_list.html:353
msgid "Save"
msgstr "Salva"
@@ -670,179 +880,188 @@ msgstr "Salva"
msgid "Edit Recipe"
msgstr "Modifica Ricetta"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:52
+#: .\cookbook\templates\forms\edit_internal_recipe.html:56
+#: .\cookbook\templates\url_import.html:171
msgid "Description"
msgstr "Descrizione"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:72
+#: .\cookbook\templates\forms\edit_internal_recipe.html:76
msgid "Waiting Time"
msgstr "Tempo di cottura"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:78
+#: .\cookbook\templates\forms\edit_internal_recipe.html:82
msgid "Servings Text"
msgstr "Nome delle porzioni"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:89
+#: .\cookbook\templates\forms\edit_internal_recipe.html:93
msgid "Select Keywords"
msgstr "Seleziona parole chiave"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:90
-#: .\cookbook\templates\url_import.html:212
+#: .\cookbook\templates\forms\edit_internal_recipe.html:94
+#: .\cookbook\templates\url_import.html:583
msgid "Add Keyword"
msgstr "Aggiungi parole chiave"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:108
+#: .\cookbook\templates\forms\edit_internal_recipe.html:112
msgid "Nutrition"
msgstr "Nutrienti"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:112
-#: .\cookbook\templates\forms\edit_internal_recipe.html:162
+#: .\cookbook\templates\forms\edit_internal_recipe.html:116
+#: .\cookbook\templates\forms\edit_internal_recipe.html:166
msgid "Delete Step"
msgstr "Elimina Step"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:116
+#: .\cookbook\templates\forms\edit_internal_recipe.html:120
msgid "Calories"
msgstr "Calorie"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:119
+#: .\cookbook\templates\forms\edit_internal_recipe.html:123
msgid "Carbohydrates"
msgstr "Carboidrati"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:122
+#: .\cookbook\templates\forms\edit_internal_recipe.html:126
msgid "Fats"
msgstr "Grassi"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:124
+#: .\cookbook\templates\forms\edit_internal_recipe.html:128
msgid "Proteins"
msgstr "Proteine"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:146
-#: .\cookbook\templates\forms\edit_internal_recipe.html:454
+#: .\cookbook\templates\forms\edit_internal_recipe.html:150
+#: .\cookbook\templates\forms\edit_internal_recipe.html:481
msgid "Step"
msgstr "Step"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:167
+#: .\cookbook\templates\forms\edit_internal_recipe.html:171
msgid "Show as header"
msgstr "Mostra come intestazione"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:173
+#: .\cookbook\templates\forms\edit_internal_recipe.html:177
msgid "Hide as header"
msgstr "Nascondi come intestazione"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:178
+#: .\cookbook\templates\forms\edit_internal_recipe.html:182
msgid "Move Up"
msgstr "Sposta Sopra"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:183
+#: .\cookbook\templates\forms\edit_internal_recipe.html:187
msgid "Move Down"
msgstr "Sposta Sotto"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:192
+#: .\cookbook\templates\forms\edit_internal_recipe.html:196
msgid "Step Name"
msgstr "Nome dello Step"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:196
+#: .\cookbook\templates\forms\edit_internal_recipe.html:200
msgid "Step Type"
msgstr "Tipo dello Step"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:207
+#: .\cookbook\templates\forms\edit_internal_recipe.html:212
msgid "Step time in Minutes"
msgstr "Tempo dello step in minuti"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:261
-#: .\cookbook\templates\shopping_list.html:183
-msgid "Select Unit"
-msgstr "Seleziona unità di misura"
+#: .\cookbook\templates\forms\edit_internal_recipe.html:228
+#, fuzzy
+#| msgid "Select one"
+msgid "Select File"
+msgstr "Seleziona un elemento"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:262
-#: .\cookbook\templates\forms\edit_internal_recipe.html:286
-#: .\cookbook\templates\shopping_list.html:184
-#: .\cookbook\templates\shopping_list.html:206
-msgid "Create"
-msgstr "Crea"
-
-#: .\cookbook\templates\forms\edit_internal_recipe.html:263
-#: .\cookbook\templates\forms\edit_internal_recipe.html:287
-#: .\cookbook\templates\shopping_list.html:185
-#: .\cookbook\templates\shopping_list.html:207
-#: .\cookbook\templates\shopping_list.html:237
-#: .\cookbook\templates\shopping_list.html:261
-#: .\cookbook\templates\url_import.html:124
-#: .\cookbook\templates\url_import.html:156
+#: .\cookbook\templates\forms\edit_internal_recipe.html:229
+#: .\cookbook\templates\forms\edit_internal_recipe.html:290
+#: .\cookbook\templates\forms\edit_internal_recipe.html:314
+#: .\cookbook\templates\shopping_list.html:189
+#: .\cookbook\templates\shopping_list.html:211
+#: .\cookbook\templates\shopping_list.html:241
+#: .\cookbook\templates\shopping_list.html:265
+#: .\cookbook\templates\url_import.html:495
+#: .\cookbook\templates\url_import.html:527
msgid "Select"
msgstr "Seleziona"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:285
-#: .\cookbook\templates\shopping_list.html:205
+#: .\cookbook\templates\forms\edit_internal_recipe.html:288
+#: .\cookbook\templates\shopping_list.html:187
+msgid "Select Unit"
+msgstr "Seleziona unità di misura"
+
+#: .\cookbook\templates\forms\edit_internal_recipe.html:289
+#: .\cookbook\templates\forms\edit_internal_recipe.html:313
+#: .\cookbook\templates\shopping_list.html:188
+#: .\cookbook\templates\shopping_list.html:210
+msgid "Create"
+msgstr "Crea"
+
+#: .\cookbook\templates\forms\edit_internal_recipe.html:312
+#: .\cookbook\templates\shopping_list.html:209
msgid "Select Food"
msgstr "Seleziona alimento"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:302
+#: .\cookbook\templates\forms\edit_internal_recipe.html:329
#: .\cookbook\templates\meal_plan.html:256
-#: .\cookbook\templates\url_import.html:171
+#: .\cookbook\templates\url_import.html:542
msgid "Note"
msgstr "Nota"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:319
+#: .\cookbook\templates\forms\edit_internal_recipe.html:346
msgid "Delete Ingredient"
msgstr "Elimina Ingredienti"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:325
+#: .\cookbook\templates\forms\edit_internal_recipe.html:352
msgid "Make Header"
msgstr "Crea Intestazione"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:331
+#: .\cookbook\templates\forms\edit_internal_recipe.html:358
msgid "Make Ingredient"
msgstr "Crea Ingrediente"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:337
+#: .\cookbook\templates\forms\edit_internal_recipe.html:364
msgid "Disable Amount"
msgstr "Disabilita Quantità"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:343
+#: .\cookbook\templates\forms\edit_internal_recipe.html:370
msgid "Enable Amount"
msgstr "Abilita Quantità"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:348
+#: .\cookbook\templates\forms\edit_internal_recipe.html:375
msgid "Copy Template Reference"
msgstr "Copia riferimento template"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:374
-#: .\cookbook\templates\url_import.html:196
+#: .\cookbook\templates\forms\edit_internal_recipe.html:401
+#: .\cookbook\templates\url_import.html:297
+#: .\cookbook\templates\url_import.html:567
msgid "Instructions"
msgstr "Istruzioni"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:387
-#: .\cookbook\templates\forms\edit_internal_recipe.html:418
+#: .\cookbook\templates\forms\edit_internal_recipe.html:414
+#: .\cookbook\templates\forms\edit_internal_recipe.html:445
msgid "Save & View"
msgstr "Salva & Mostra"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:391
-#: .\cookbook\templates\forms\edit_internal_recipe.html:424
+#: .\cookbook\templates\forms\edit_internal_recipe.html:418
+#: .\cookbook\templates\forms\edit_internal_recipe.html:451
msgid "Add Step"
msgstr "Aggiungi Step"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:394
-#: .\cookbook\templates\forms\edit_internal_recipe.html:428
+#: .\cookbook\templates\forms\edit_internal_recipe.html:421
+#: .\cookbook\templates\forms\edit_internal_recipe.html:455
msgid "Add Nutrition"
msgstr "Aggiungi nutrienti"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:396
-#: .\cookbook\templates\forms\edit_internal_recipe.html:430
+#: .\cookbook\templates\forms\edit_internal_recipe.html:423
+#: .\cookbook\templates\forms\edit_internal_recipe.html:457
msgid "Remove Nutrition"
msgstr "Rimuovi nutrienti"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:398
-#: .\cookbook\templates\forms\edit_internal_recipe.html:433
+#: .\cookbook\templates\forms\edit_internal_recipe.html:425
+#: .\cookbook\templates\forms\edit_internal_recipe.html:460
msgid "View Recipe"
msgstr "Mostra ricetta"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:400
-#: .\cookbook\templates\forms\edit_internal_recipe.html:435
+#: .\cookbook\templates\forms\edit_internal_recipe.html:427
+#: .\cookbook\templates\forms\edit_internal_recipe.html:462
msgid "Delete Recipe"
msgstr "Elimina Ricetta"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:441
+#: .\cookbook\templates\forms\edit_internal_recipe.html:468
msgid "Steps"
msgstr "Step"
@@ -868,7 +1087,7 @@ msgstr ""
"utilizzano."
#: .\cookbook\templates\forms\ingredients.html:24
-#: .\cookbook\templates\stats.html:26
+#: .\cookbook\templates\space.html:35 .\cookbook\templates\stats.html:26
msgid "Units"
msgstr "Unità di misura"
@@ -890,10 +1109,6 @@ msgstr "Sei sicuro di volere unire questi due ingredienti?"
msgid "Are you sure you want to delete the %(title)s: %(object)s "
msgstr "Sei sicuro di volere eliminare %(title)s: %(object)s"
-#: .\cookbook\templates\generic\delete_template.html:21
-msgid "Confirm"
-msgstr "Conferma"
-
#: .\cookbook\templates\generic\edit_template.html:30
msgid "View"
msgstr "Mostra"
@@ -915,12 +1130,6 @@ msgstr "Filtro"
msgid "Import all"
msgstr "Importa tutto"
-#: .\cookbook\templates\generic\new_template.html:6
-#: .\cookbook\templates\generic\new_template.html:14
-#: .\cookbook\templates\meal_plan.html:323
-msgid "New"
-msgstr "Nuovo"
-
#: .\cookbook\templates\generic\table_template.html:76
#: .\cookbook\templates\recipes_table.html:121
msgid "previous"
@@ -965,7 +1174,7 @@ msgstr "Chiudi"
#: .\cookbook\templates\include\recipe_open_modal.html:7
#: .\cookbook\templates\meal_plan.html:247 .\cookbook\views\delete.py:28
-#: .\cookbook\views\edit.py:264 .\cookbook\views\new.py:40
+#: .\cookbook\views\edit.py:273 .\cookbook\views\new.py:52
msgid "Recipe"
msgstr "Ricetta"
@@ -1004,10 +1213,6 @@ msgstr "Cerca ricetta ..."
msgid "New Recipe"
msgstr "Nuova Ricetta"
-#: .\cookbook\templates\index.html:47
-msgid "Website Import"
-msgstr "Importa dal web"
-
#: .\cookbook\templates\index.html:53
msgid "Advanced Search"
msgstr "Ricerca Avanzata"
@@ -1021,7 +1226,7 @@ msgid "Last viewed"
msgstr "Recenti"
#: .\cookbook\templates\index.html:87 .\cookbook\templates\meal_plan.html:178
-#: .\cookbook\templates\stats.html:22
+#: .\cookbook\templates\space.html:29 .\cookbook\templates\stats.html:22
msgid "Recipes"
msgstr "Ricette"
@@ -1190,7 +1395,7 @@ msgid "New Entry"
msgstr "Nuovo Campo"
#: .\cookbook\templates\meal_plan.html:113
-#: .\cookbook\templates\shopping_list.html:52
+#: .\cookbook\templates\shopping_list.html:56
msgid "Search Recipe"
msgstr "Cerca Ricetta"
@@ -1223,7 +1428,7 @@ msgstr "Crea solo una nota"
#: .\cookbook\templates\meal_plan.html:168
#: .\cookbook\templates\shopping_list.html:7
#: .\cookbook\templates\shopping_list.html:29
-#: .\cookbook\templates\shopping_list.html:705
+#: .\cookbook\templates\shopping_list.html:714
msgid "Shopping List"
msgstr "Lista della spesa"
@@ -1275,7 +1480,7 @@ msgstr "Creato da"
#: .\cookbook\templates\meal_plan.html:270
#: .\cookbook\templates\meal_plan_entry.html:20
-#: .\cookbook\templates\shopping_list.html:250
+#: .\cookbook\templates\shopping_list.html:254
msgid "Shared with"
msgstr "Condiviso con"
@@ -1375,7 +1580,6 @@ msgstr ""
#: .\cookbook\templates\no_groups_info.html:18
#: .\cookbook\templates\no_perm_info.html:15
-#: .\cookbook\templates\no_space_info.html:15
msgid "Please contact your administrator."
msgstr "Contatta il tuo amministratore."
@@ -1392,14 +1596,53 @@ msgstr ""
"Non hai i permessi necessari per visualizzare questa pagina o completare "
"l'operazione!"
-#: .\cookbook\templates\no_space_info.html:5
-#: .\cookbook\templates\no_space_info.html:12
+#: .\cookbook\templates\no_space_info.html:6
+#: .\cookbook\templates\no_space_info.html:13
msgid "No Space"
msgstr "Nessuno spazio"
-#: .\cookbook\templates\no_space_info.html:15
-msgid "You are not a member of any space."
-msgstr "Non sei membro di uno spazio."
+#: .\cookbook\templates\no_space_info.html:17
+msgid ""
+"Recipes, foods, shopping lists and more are organized in spaces of one or "
+"more people."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:18
+msgid ""
+"You can either be invited into an existing space or create your own one."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:31
+#: .\cookbook\templates\no_space_info.html:40
+#, fuzzy
+#| msgid "No Space"
+msgid "Join Space"
+msgstr "Nessuno spazio"
+
+#: .\cookbook\templates\no_space_info.html:34
+msgid "Join an existing space."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:35
+msgid ""
+"To join an existing space either enter your invite token or click on the "
+"invite link the space owner send you."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:48
+#: .\cookbook\templates\no_space_info.html:56
+#, fuzzy
+#| msgid "Create User"
+msgid "Create Space"
+msgstr "Crea utente"
+
+#: .\cookbook\templates\no_space_info.html:51
+msgid "Create your own recipe space."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:52
+msgid "Start your own recipe space and invite other users to it."
+msgstr ""
#: .\cookbook\templates\offline.html:6
msgid "Offline"
@@ -1418,28 +1661,29 @@ msgstr ""
"offline perché le hai aperte di recente. Ricorda che queste informazioni "
"potrebbero non essere aggiornate."
-#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\stats.html:47
+#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\space.html:56
+#: .\cookbook\templates\stats.html:47
msgid "Comments"
msgstr "Commenti"
#: .\cookbook\templates\recipe_view.html:44 .\cookbook\views\delete.py:118
-#: .\cookbook\views\edit.py:170
+#: .\cookbook\views\edit.py:179
msgid "Comment"
msgstr "Commento"
#: .\cookbook\templates\recipes_table.html:19
#: .\cookbook\templates\recipes_table.html:23
-#: .\cookbook\templates\url_import.html:69
+#: .\cookbook\templates\url_import.html:440
msgid "Recipe Image"
msgstr "Immagine ricetta"
#: .\cookbook\templates\recipes_table.html:51
-#: .\cookbook\templates\url_import.html:74
+#: .\cookbook\templates\url_import.html:445
msgid "Preparation time ca."
msgstr "Tempo di preparazione circa"
#: .\cookbook\templates\recipes_table.html:57
-#: .\cookbook\templates\url_import.html:79
+#: .\cookbook\templates\url_import.html:450
msgid "Waiting time ca."
msgstr "Tempo di cottura circa"
@@ -1455,27 +1699,67 @@ msgstr "Registo ricette cucinate"
msgid "Recipe Home"
msgstr "Pagina iniziale ricette"
-#: .\cookbook\templates\settings.html:22
+#: .\cookbook\templates\settings.html:23
msgid "Account"
msgstr "Account"
-#: .\cookbook\templates\settings.html:38
-msgid "Link social account"
+#: .\cookbook\templates\settings.html:27
+msgid "Preferences"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:31
+#, fuzzy
+#| msgid "Settings"
+msgid "API-Settings"
+msgstr "Impostazioni"
+
+#: .\cookbook\templates\settings.html:39
+#, fuzzy
+#| msgid "Settings"
+msgid "Name Settings"
+msgstr "Impostazioni"
+
+#: .\cookbook\templates\settings.html:47
+#, fuzzy
+#| msgid "Password Reset"
+msgid "Password Settings"
+msgstr "Recupero password"
+
+#: .\cookbook\templates\settings.html:55
+#, fuzzy
+#| msgid "Settings"
+msgid "Email Settings"
+msgstr "Impostazioni"
+
+#: .\cookbook\templates\settings.html:57
+msgid "Manage Email Settings"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:61
+#, fuzzy
+#| msgid "Social Login"
+msgid "Social"
+msgstr "Login con social network"
+
+#: .\cookbook\templates\settings.html:63
+#, fuzzy
+#| msgid "Link social account"
+msgid "Manage Social Accounts"
msgstr "Collega account social"
-#: .\cookbook\templates\settings.html:42
+#: .\cookbook\templates\settings.html:75
msgid "Language"
msgstr "Lingua"
-#: .\cookbook\templates\settings.html:67
+#: .\cookbook\templates\settings.html:105
msgid "Style"
msgstr "Stile"
-#: .\cookbook\templates\settings.html:79
+#: .\cookbook\templates\settings.html:125
msgid "API Token"
msgstr "Token API"
-#: .\cookbook\templates\settings.html:80
+#: .\cookbook\templates\settings.html:126
msgid ""
"You can use both basic authentication and token based authentication to "
"access the REST API."
@@ -1483,7 +1767,7 @@ msgstr ""
"Per accedere alle API REST puoi usare sia l'autenticazione base sia quella "
"tramite token."
-#: .\cookbook\templates\settings.html:92
+#: .\cookbook\templates\settings.html:143
msgid ""
"Use the token as an Authorization header prefixed by the word token as shown "
"in the following examples:"
@@ -1491,7 +1775,7 @@ msgstr ""
"Usa il token come header Authorization preceduto dalla parola Token come "
"negli esempi seguenti:"
-#: .\cookbook\templates\settings.html:94
+#: .\cookbook\templates\settings.html:145
msgid "or"
msgstr "o"
@@ -1513,58 +1797,55 @@ msgstr ""
msgid "Create Superuser account"
msgstr "Crea super utente"
-#: .\cookbook\templates\shopping_list.html:75
+#: .\cookbook\templates\shopping_list.html:79
msgid "Shopping Recipes"
msgstr "Ricette per la spesa"
-#: .\cookbook\templates\shopping_list.html:79
+#: .\cookbook\templates\shopping_list.html:83
msgid "No recipes selected"
msgstr "Nessuna ricetta selezionata"
-#: .\cookbook\templates\shopping_list.html:146
+#: .\cookbook\templates\shopping_list.html:150
msgid "Entry Mode"
msgstr "Modalità di inserimento"
-#: .\cookbook\templates\shopping_list.html:154
+#: .\cookbook\templates\shopping_list.html:158
msgid "Add Entry"
msgstr "Aggiungi voce"
-#: .\cookbook\templates\shopping_list.html:170
+#: .\cookbook\templates\shopping_list.html:174
msgid "Amount"
msgstr "Quantità"
-#: .\cookbook\templates\shopping_list.html:226
+#: .\cookbook\templates\shopping_list.html:230
+#: .\cookbook\templates\supermarket.html:7
msgid "Supermarket"
msgstr "Supermercato"
-#: .\cookbook\templates\shopping_list.html:236
+#: .\cookbook\templates\shopping_list.html:240
msgid "Select Supermarket"
msgstr "Seleziona supermercato"
-#: .\cookbook\templates\shopping_list.html:260
+#: .\cookbook\templates\shopping_list.html:264
msgid "Select User"
msgstr "Seleziona utente"
-#: .\cookbook\templates\shopping_list.html:279
+#: .\cookbook\templates\shopping_list.html:283
msgid "Finished"
msgstr "Completato"
-#: .\cookbook\templates\shopping_list.html:292
+#: .\cookbook\templates\shopping_list.html:296
msgid "You are offline, shopping list might not syncronize."
msgstr "Sei offline: la lista della spesa potrebbe non sincronizzarsi."
-#: .\cookbook\templates\shopping_list.html:357
+#: .\cookbook\templates\shopping_list.html:361
msgid "Copy/Export"
msgstr "Copia/Esporta"
-#: .\cookbook\templates\shopping_list.html:361
+#: .\cookbook\templates\shopping_list.html:365
msgid "List Prefix"
msgstr "Prefisso lista"
-#: .\cookbook\templates\shopping_list.html:708
-msgid "There was an error creating a resource!"
-msgstr "Si è verificato un errore durante la creazione di una risorsa!"
-
#: .\cookbook\templates\socialaccount\connections.html:4
#: .\cookbook\templates\socialaccount\connections.html:7
msgid "Account Connections"
@@ -1577,10 +1858,6 @@ msgid ""
msgstr ""
"Puoi accedere al tuo account usando uno dei seguenti account di terze parti:"
-#: .\cookbook\templates\socialaccount\connections.html:36
-msgid "Remove"
-msgstr "Rimuovi"
-
#: .\cookbook\templates\socialaccount\connections.html:44
msgid ""
"You currently have no social network accounts connected to this account."
@@ -1590,38 +1867,99 @@ msgstr "Non hai account di social network collegati a questo account."
msgid "Add a 3rd Party Account"
msgstr "Aggiungi un account di terze parti"
-#: .\cookbook\templates\stats.html:4
-msgid "Stats"
-msgstr "Statistiche"
+#: .\cookbook\templates\space.html:18
+#, fuzzy
+#| msgid "Description"
+msgid "Manage Subscription"
+msgstr "Descrizione"
-#: .\cookbook\templates\stats.html:19
+#: .\cookbook\templates\space.html:26 .\cookbook\templates\stats.html:19
msgid "Number of objects"
msgstr "Numero di oggetti"
-#: .\cookbook\templates\stats.html:30
+#: .\cookbook\templates\space.html:39 .\cookbook\templates\stats.html:30
msgid "Recipe Imports"
msgstr "Ricette importate"
-#: .\cookbook\templates\stats.html:38
+#: .\cookbook\templates\space.html:47 .\cookbook\templates\stats.html:38
msgid "Objects stats"
msgstr "Statistiche degli oggetti"
-#: .\cookbook\templates\stats.html:41
+#: .\cookbook\templates\space.html:50 .\cookbook\templates\stats.html:41
msgid "Recipes without Keywords"
msgstr "Ricette senza parole chiave"
-#: .\cookbook\templates\stats.html:43
+#: .\cookbook\templates\space.html:52 .\cookbook\templates\stats.html:43
msgid "External Recipes"
msgstr "Ricette esterne"
-#: .\cookbook\templates\stats.html:45
+#: .\cookbook\templates\space.html:54 .\cookbook\templates\stats.html:45
msgid "Internal Recipes"
msgstr "Ricette interne"
-#: .\cookbook\templates\system.html:21 .\cookbook\views\lists.py:115
+#: .\cookbook\templates\space.html:67
+msgid "Members"
+msgstr ""
+
+#: .\cookbook\templates\space.html:71
+#, fuzzy
+#| msgid "Invite Links"
+msgid "Invite User"
+msgstr "Link di invito"
+
+#: .\cookbook\templates\space.html:82
+msgid "User"
+msgstr ""
+
+#: .\cookbook\templates\space.html:83
+msgid "Groups"
+msgstr ""
+
+#: .\cookbook\templates\space.html:99
+#, fuzzy
+#| msgid "Admin"
+msgid "admin"
+msgstr "Amministratore"
+
+#: .\cookbook\templates\space.html:100
+msgid "user"
+msgstr ""
+
+#: .\cookbook\templates\space.html:101
+msgid "guest"
+msgstr ""
+
+#: .\cookbook\templates\space.html:102
+#, fuzzy
+#| msgid "Remove"
+msgid "remove"
+msgstr "Rimuovi"
+
+#: .\cookbook\templates\space.html:106
+msgid "Update"
+msgstr ""
+
+#: .\cookbook\templates\space.html:110
+#, fuzzy
+#| msgid "You cannot edit this storage!"
+msgid "You cannot edit yourself."
+msgstr "Non puoi modificare questo backend!"
+
+#: .\cookbook\templates\space.html:117
+#, fuzzy
+#| msgid "There are no recipes in this book yet."
+msgid "There are no members in your space yet!"
+msgstr "Non ci sono ancora ricette in questo libro."
+
+#: .\cookbook\templates\space.html:124 .\cookbook\templates\system.html:21
+#: .\cookbook\views\lists.py:115
msgid "Invite Links"
msgstr "Link di invito"
+#: .\cookbook\templates\stats.html:4
+msgid "Stats"
+msgstr "Statistiche"
+
#: .\cookbook\templates\system.html:22
msgid "Show Links"
msgstr "Mostra link"
@@ -1743,45 +2081,157 @@ msgstr ""
"raccomandato perché alcune\n"
"funzionalità sono disponibili solo con un database Posgres."
-#: .\cookbook\templates\url_import.html:5
+#: .\cookbook\templates\url_import.html:6
msgid "URL Import"
msgstr "Importa da URL"
-#: .\cookbook\templates\url_import.html:23
+#: .\cookbook\templates\url_import.html:31
+msgid "Drag me to your bookmarks to import recipes from anywhere"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:32
+#, fuzzy
+#| msgid "Bookmark saved!"
+msgid "Bookmark Me!"
+msgstr "Preferito salvato!"
+
+#: .\cookbook\templates\url_import.html:61
msgid "Enter website URL"
msgstr "Inserisci l'indirizzo del sito web"
-#: .\cookbook\templates\url_import.html:36
-msgid "Enter json directly"
-msgstr "Inserisci direttamente il json"
+#: .\cookbook\templates\url_import.html:97
+msgid "Select recipe files to import or drop them here..."
+msgstr ""
-#: .\cookbook\templates\url_import.html:57
+#: .\cookbook\templates\url_import.html:118
+msgid "Paste json or html source here to load recipe."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:146
+#, fuzzy
+#| msgid "View Recipe"
+msgid "Preview Recipe Data"
+msgstr "Mostra ricetta"
+
+#: .\cookbook\templates\url_import.html:147
+msgid "Drag recipe attributes from the right into the appropriate box below."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:156
+#: .\cookbook\templates\url_import.html:173
+#: .\cookbook\templates\url_import.html:190
+#: .\cookbook\templates\url_import.html:209
+#: .\cookbook\templates\url_import.html:227
+#: .\cookbook\templates\url_import.html:242
+#: .\cookbook\templates\url_import.html:257
+#: .\cookbook\templates\url_import.html:273
+#: .\cookbook\templates\url_import.html:300
+#: .\cookbook\templates\url_import.html:351
+msgid "Clear Contents"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:158
+msgid "Text dragged here will be appended to the name."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:175
+msgid "Text dragged here will be appended to the description."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:192
+msgid "Keywords dragged here will be appended to current list"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:207
+msgid "Image"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:239
+#, fuzzy
+#| msgid "Preparation Time"
+msgid "Prep Time"
+msgstr "Tempo di preparazione"
+
+#: .\cookbook\templates\url_import.html:254
+#, fuzzy
+#| msgid "Time"
+msgid "Cook Time"
+msgstr "Tempo"
+
+#: .\cookbook\templates\url_import.html:275
+msgid "Ingredients dragged here will be appended to current list."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:302
+msgid ""
+"Recipe instructions dragged here will be appended to current instructions."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:325
+#, fuzzy
+#| msgid "Discovered Recipes"
+msgid "Discovered Attributes"
+msgstr "Ricette trovate"
+
+#: .\cookbook\templates\url_import.html:327
+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:344
+#, fuzzy
+#| msgid "Show as header"
+msgid "Show Blank Field"
+msgstr "Mostra come intestazione"
+
+#: .\cookbook\templates\url_import.html:349
+msgid "Blank Field"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:353
+msgid "Items dragged to Blank Field will be appended."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:400
+#, fuzzy
+#| msgid "Delete Step"
+msgid "Delete Text"
+msgstr "Elimina Step"
+
+#: .\cookbook\templates\url_import.html:413
+#, fuzzy
+#| msgid "Delete Recipe"
+msgid "Delete image"
+msgstr "Elimina Ricetta"
+
+#: .\cookbook\templates\url_import.html:429
msgid "Recipe Name"
msgstr "Nome Ricetta"
-#: .\cookbook\templates\url_import.html:62
+#: .\cookbook\templates\url_import.html:433
msgid "Recipe Description"
msgstr "Descrizione ricetta"
-#: .\cookbook\templates\url_import.html:123
-#: .\cookbook\templates\url_import.html:155
-#: .\cookbook\templates\url_import.html:211
+#: .\cookbook\templates\url_import.html:494
+#: .\cookbook\templates\url_import.html:526
+#: .\cookbook\templates\url_import.html:582
msgid "Select one"
msgstr "Seleziona un elemento"
-#: .\cookbook\templates\url_import.html:225
+#: .\cookbook\templates\url_import.html:596
msgid "All Keywords"
msgstr "Tutte le parole chiave"
-#: .\cookbook\templates\url_import.html:228
+#: .\cookbook\templates\url_import.html:599
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:255
+#: .\cookbook\templates\url_import.html:626
msgid "Information"
msgstr "Info"
-#: .\cookbook\templates\url_import.html:257
+#: .\cookbook\templates\url_import.html:628
msgid ""
" Only websites containing ld+json or microdata information can currently\n"
" be imported. Most big recipe pages "
@@ -1797,49 +2247,79 @@ msgstr ""
"Se questo sito non può essere importato ma credi che abbia una qualche tipo "
"di struttura dati, puoi inviare un esempio nella sezione Issues su GitHub."
-#: .\cookbook\templates\url_import.html:265
+#: .\cookbook\templates\url_import.html:636
msgid "Google ld+json Info"
msgstr "Info Google Id+json"
-#: .\cookbook\templates\url_import.html:268
+#: .\cookbook\templates\url_import.html:639
msgid "GitHub Issues"
msgstr "Issues (Problemi aperti) su GitHub"
-#: .\cookbook\templates\url_import.html:270
+#: .\cookbook\templates\url_import.html:641
msgid "Recipe Markup Specification"
msgstr "Specifica di Markup della ricetta"
-#: .\cookbook\views\api.py:71
+#: .\cookbook\views\api.py:77
msgid "Parameter updated_at incorrectly formatted"
msgstr "Il parametro updated_at non è formattato correttamente"
-#: .\cookbook\views\api.py:455 .\cookbook\views\views.py:226
+#: .\cookbook\views\api.py:553 .\cookbook\views\views.py:295
msgid "This feature is not available in the demo version!"
msgstr "Questa funzione non è disponibile nella versione demo!"
-#: .\cookbook\views\api.py:478
+#: .\cookbook\views\api.py:576
msgid "Sync successful!"
msgstr "Sincronizzazione completata con successo!"
-#: .\cookbook\views\api.py:483
+#: .\cookbook\views\api.py:581
msgid "Error synchronizing with Storage"
msgstr "Errore di sincronizzazione con questo backend"
-#: .\cookbook\views\api.py:556 .\cookbook\views\api.py:576
+#: .\cookbook\views\api.py:649
+msgid "Nothing to do."
+msgstr ""
+
+#: .\cookbook\views\api.py:664
+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:671
msgid "The requested page could not be found."
msgstr "La pagina richiesta non è stata trovata."
-#: .\cookbook\views\api.py:585
+#: .\cookbook\views\api.py:680
msgid ""
-"The requested page refused to provide any information (Status Code 403)."
+"The requested site does not provide any recognized data format to import the "
+"recipe from."
msgstr ""
-"La pagina richiesta si è rifiutata di fornire informazioni (Errore 403)."
+"Il sito richiesto non fornisce un formato di dati riconosciuto da cui "
+"importare la ricetta."
-#: .\cookbook\views\api.py:611
-msgid "Could not parse correctly..."
-msgstr "Impossibile elaborare correttamente..."
+#: .\cookbook\views\api.py:694
+#, fuzzy
+#| msgid "The requested page could not be found."
+msgid "No useable data could be found."
+msgstr "La pagina richiesta non è stata trovata."
-#: .\cookbook\views\data.py:94
+#: .\cookbook\views\api.py:710
+msgid "I couldn't find anything to do."
+msgstr ""
+
+#: .\cookbook\views\data.py:30 .\cookbook\views\data.py:121
+#: .\cookbook\views\edit.py:50 .\cookbook\views\import_export.py:67
+#: .\cookbook\views\new.py:32
+msgid "You have reached the maximum number of recipes for your space."
+msgstr ""
+
+#: .\cookbook\views\data.py:34 .\cookbook\views\data.py:125
+#: .\cookbook\views\edit.py:54 .\cookbook\views\import_export.py:71
+#: .\cookbook\views\new.py:36
+msgid "You have more users than allowed in your space."
+msgstr ""
+
+#: .\cookbook\views\data.py:103
#, python-format
msgid "Batch edit done. %(count)d recipe was updated."
msgid_plural "Batch edit done. %(count)d Recipes where updated."
@@ -1852,7 +2332,7 @@ msgid "Monitor"
msgstr "Monitoraggio"
#: .\cookbook\views\delete.py:96 .\cookbook\views\lists.py:102
-#: .\cookbook\views\new.py:86
+#: .\cookbook\views\new.py:98
msgid "Storage Backend"
msgstr "Backend di archiviazione"
@@ -1863,8 +2343,8 @@ msgstr ""
"Non è possibile eliminare questo backend di archiviazione perchè è usato in "
"almeno un monitoraggio."
-#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:204
-#: .\cookbook\views\new.py:144
+#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:213
+#: .\cookbook\views\new.py:156
msgid "Recipe Book"
msgstr "Libro delle ricette"
@@ -1872,57 +2352,57 @@ msgstr "Libro delle ricette"
msgid "Bookmarks"
msgstr "Preferiti"
-#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:214
+#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:252
msgid "Invite Link"
msgstr "Link di invito"
-#: .\cookbook\views\edit.py:110
+#: .\cookbook\views\edit.py:119
msgid "Food"
msgstr "Alimento"
-#: .\cookbook\views\edit.py:119
+#: .\cookbook\views\edit.py:128
msgid "You cannot edit this storage!"
msgstr "Non puoi modificare questo backend!"
-#: .\cookbook\views\edit.py:139
+#: .\cookbook\views\edit.py:148
msgid "Storage saved!"
msgstr "Backend salvato!"
-#: .\cookbook\views\edit.py:145
+#: .\cookbook\views\edit.py:154
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:156
+#: .\cookbook\views\edit.py:165
msgid "Storage"
msgstr "Archiviazione"
-#: .\cookbook\views\edit.py:252
+#: .\cookbook\views\edit.py:261
msgid "Changes saved!"
msgstr "Modifiche salvate!"
-#: .\cookbook\views\edit.py:256
+#: .\cookbook\views\edit.py:265
msgid "Error saving changes!"
msgstr "Si è verificato un errore durante il salvataggio delle modifiche!"
-#: .\cookbook\views\edit.py:289
+#: .\cookbook\views\edit.py:299
msgid "Units merged!"
msgstr "Le unità sono state unite!"
-#: .\cookbook\views\edit.py:291 .\cookbook\views\edit.py:307
+#: .\cookbook\views\edit.py:301 .\cookbook\views\edit.py:317
msgid "Cannot merge with the same object!"
msgstr "Non è possibile unirlo con lo stesso oggetto!"
-#: .\cookbook\views\edit.py:305
+#: .\cookbook\views\edit.py:315
msgid "Foods merged!"
msgstr "Gli alimenti sono stati uniti!"
-#: .\cookbook\views\import_export.py:73
+#: .\cookbook\views\import_export.py:93
msgid "Importing is not implemented for this provider"
msgstr "Questo provider non permette l'importazione"
-#: .\cookbook\views\import_export.py:92
+#: .\cookbook\views\import_export.py:115
msgid "Exporting is not implemented for this provider"
msgstr "Questo provider non permette l'esportazione"
@@ -1938,23 +2418,77 @@ msgstr "Trovate"
msgid "Shopping Lists"
msgstr "Liste della spesa"
-#: .\cookbook\views\new.py:111
+#: .\cookbook\views\new.py:123
msgid "Imported new recipe!"
msgstr "La nuova ricetta è stata importata!"
-#: .\cookbook\views\new.py:114
+#: .\cookbook\views\new.py:126
msgid "There was an error importing this recipe!"
msgstr "Si è verificato un errore durante l'importazione di questa ricetta!"
-#: .\cookbook\views\views.py:123
+#: .\cookbook\views\new.py:226
+msgid "Hello"
+msgstr ""
+
+#: .\cookbook\views\new.py:226
+msgid "You have been invited by "
+msgstr ""
+
+#: .\cookbook\views\new.py:227
+msgid " to join their Tandoor Recipes space "
+msgstr ""
+
+#: .\cookbook\views\new.py:228
+msgid "Click the following link to activate your account: "
+msgstr ""
+
+#: .\cookbook\views\new.py:229
+msgid ""
+"If the link does not work use the following code to manually join the space: "
+msgstr ""
+
+#: .\cookbook\views\new.py:230
+msgid "The invitation is valid until "
+msgstr ""
+
+#: .\cookbook\views\new.py:231
+msgid ""
+"Tandoor Recipes is an Open Source recipe manager. Check it out on GitHub "
+msgstr ""
+
+#: .\cookbook\views\new.py:234
+msgid "Tandoor Recipes Invite"
+msgstr ""
+
+#: .\cookbook\views\new.py:241
+msgid "Invite link successfully send to user."
+msgstr ""
+
+#: .\cookbook\views\new.py:244
+msgid ""
+"You have send to many emails, please share the link manually or wait a few "
+"hours."
+msgstr ""
+
+#: .\cookbook\views\new.py:246
+msgid "Email to user could not be send, please share link manually."
+msgstr ""
+
+#: .\cookbook\views\views.py:125
+msgid ""
+"You have successfully created your own recipe space. Start by adding some "
+"recipes or invite other people to join you."
+msgstr ""
+
+#: .\cookbook\views\views.py:173
msgid "You do not have the required permissions to perform this action!"
msgstr "Non hai i permessi necessari per completare questa operazione!"
-#: .\cookbook\views\views.py:134
+#: .\cookbook\views\views.py:184
msgid "Comment saved!"
msgstr "Commento salvato!"
-#: .\cookbook\views\views.py:326
+#: .\cookbook\views\views.py:396
msgid ""
"The setup page can only be used to create the first user! If you have "
"forgotten your superuser credentials please consult the django documentation "
@@ -1964,22 +2498,67 @@ msgstr ""
"utente! Se hai dimenticato le credenziali del tuo super utente controlla la "
"documentazione di Django per resettare le password. "
-#: .\cookbook\views\views.py:333 .\cookbook\views\views.py:378
+#: .\cookbook\views\views.py:403
msgid "Passwords dont match!"
msgstr "Le password non combaciano!"
-#: .\cookbook\views\views.py:349 .\cookbook\views\views.py:385
+#: .\cookbook\views\views.py:419
msgid "User has been created, please login!"
msgstr "L'utente è stato creato e ora può essere usato per il login!"
-#: .\cookbook\views\views.py:365
+#: .\cookbook\views\views.py:435
msgid "Malformed Invite Link supplied!"
msgstr "È stato fornito un link di invito non valido!"
-#: .\cookbook\views\views.py:405
+#: .\cookbook\views\views.py:441
+#, fuzzy
+#| msgid "You are not logged in and therefore cannot view this page!"
+msgid "You are already member of a space and therefore cannot join this one."
+msgstr "Non hai fatto l'accesso e quindi non puoi visualizzare questa pagina!"
+
+#: .\cookbook\views\views.py:452
+msgid "Successfully joined space."
+msgstr ""
+
+#: .\cookbook\views\views.py:458
msgid "Invite Link not valid or already used!"
msgstr "Il link di invito non è valido o è stato già usato!"
+#~ msgid ""
+#~ "A username is not required, if left blank the new user can choose one."
+#~ msgstr ""
+#~ "Non è richiesto un nome utente, se lasciato vuoto il nuovo utente ne può "
+#~ "sceglierne uno."
+
+#~ msgid "Imported from"
+#~ msgstr "Importato da"
+
+#~ msgid "Link"
+#~ msgstr "Link"
+
+#~ msgid "Logout"
+#~ msgstr "Logout"
+
+#~ msgid "Website Import"
+#~ msgstr "Importa dal web"
+
+#~ msgid "You are not a member of any space."
+#~ msgstr "Non sei membro di uno spazio."
+
+#~ msgid "There was an error creating a resource!"
+#~ msgstr "Si è verificato un errore durante la creazione di una risorsa!"
+
+#~ msgid "Enter json directly"
+#~ msgstr "Inserisci direttamente il json"
+
+#~ msgid ""
+#~ "The requested page refused to provide any information (Status Code 403)."
+#~ msgstr ""
+#~ "La pagina richiesta si è rifiutata di fornire informazioni (Errore 403)."
+
+#~ msgid "Could not parse correctly..."
+#~ msgstr "Impossibile elaborare correttamente..."
+
#~ msgid "Number of servings"
#~ msgstr "Porzioni"
@@ -2001,6 +2580,3 @@ msgstr "Il link di invito non è valido o è stato già usato!"
#~ msgid "This recipe is already linked to the book!"
#~ msgstr "Questa ricetta è già collegata al libro!"
-
-#~ msgid "Bookmark saved!"
-#~ msgstr "Preferito salvato!"
diff --git a/cookbook/locale/lv/LC_MESSAGES/django.po b/cookbook/locale/lv/LC_MESSAGES/django.po
index dcc44959..561861e2 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-04-11 15:09+0200\n"
+"POT-Creation-Date: 2021-06-12 20:30+0200\n"
"PO-Revision-Date: 2020-06-02 19:28+0000\n"
"Last-Translator: vabene1111 /remote."
"php/webdav/
is added automatically)"
@@ -187,26 +191,26 @@ msgstr ""
"Atstājiet tukšu Dropbox un ievadiet tikai Nextcloud bāzes URL (- [ ]
in list for easier usage in markdown based "
#~ "documents."
@@ -1981,6 +2537,3 @@ msgstr "Uzaicinājuma saite nav derīga vai jau izmantota!"
#~ msgid "Preference for given user already exists"
#~ msgstr "Priekšroka konkrētam lietotājam jau pastāv"
-
-#~ msgid "Bookmark saved!"
-#~ msgstr "Grāmatzīme saglabāta!"
diff --git a/cookbook/locale/nl/LC_MESSAGES/django.po b/cookbook/locale/nl/LC_MESSAGES/django.po
index 968a11d1..b4372099 100644
--- a/cookbook/locale/nl/LC_MESSAGES/django.po
+++ b/cookbook/locale/nl/LC_MESSAGES/django.po
@@ -12,11 +12,11 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2021-04-11 15:09+0200\n"
+"POT-Creation-Date: 2021-06-12 20:30+0200\n"
"PO-Revision-Date: 2021-05-04 09:02+0000\n"
"Last-Translator: Jesse /remote."
"php/webdav/
is added automatically)"
@@ -190,26 +194,26 @@ msgstr ""
"Laat leeg voor dropbox en vul enkel de base url voor nextcloud in. (/"
"remote.php/webdav/
wordt automatisch toegevoegd.)"
-#: .\cookbook\forms.py:291
+#: .\cookbook\forms.py:307
msgid "Search String"
msgstr "Zoekopdracht"
-#: .\cookbook\forms.py:318
+#: .\cookbook\forms.py:334
msgid "File ID"
msgstr "Bestands ID"
-#: .\cookbook\forms.py:354
+#: .\cookbook\forms.py:370
msgid "You must provide at least a recipe or a title."
msgstr "Je moet minimaal één recept of titel te specificeren."
-#: .\cookbook\forms.py:367
+#: .\cookbook\forms.py:383
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:368
-#: .\cookbook\templates\forms\edit_internal_recipe.html:377
+#: .\cookbook\forms.py:384
+#: .\cookbook\templates\forms\edit_internal_recipe.html:404
msgid ""
"You can use markdown to format this field. See the docs here"
@@ -217,53 +221,58 @@ msgstr ""
"Je kunt markdown gebruiken om dit veld te op te maken. Bekijk de documentatie hier"
-#: .\cookbook\forms.py:393
-msgid "A username is not required, if left blank the new user can choose one."
+#: .\cookbook\forms.py:409
+msgid "Maximum number of users for this space reached."
msgstr ""
-"Een gebruikersnaam is niet verplicht. Als het veld leeg is kan de gebruiker "
-"er een kiezen."
-#: .\cookbook\helper\permission_helper.py:123
-#: .\cookbook\helper\permission_helper.py:129
-#: .\cookbook\helper\permission_helper.py:151
-#: .\cookbook\helper\permission_helper.py:196
-#: .\cookbook\helper\permission_helper.py:210
-#: .\cookbook\helper\permission_helper.py:221
-#: .\cookbook\helper\permission_helper.py:232 .\cookbook\views\data.py:30
-#: .\cookbook\views\views.py:112 .\cookbook\views\views.py:116
-#: .\cookbook\views\views.py:184
-msgid "You do not have the required permissions to view this page!"
-msgstr "Je hebt niet de benodigde machtigingen om deze pagina te bekijken!"
+#: .\cookbook\forms.py:415
+msgid "Email address already taken!"
+msgstr ""
-#: .\cookbook\helper\permission_helper.py:141
+#: .\cookbook\forms.py:423
+msgid ""
+"An email address is not required but if present the invite link will be send "
+"to the user."
+msgstr ""
+
+#: .\cookbook\forms.py:438
+msgid "Name already taken."
+msgstr ""
+
+#: .\cookbook\forms.py:449
+msgid "Accept Terms and Privacy"
+msgstr ""
+
+#: .\cookbook\helper\AllAuthCustomAdapter.py:30
+msgid ""
+"In order to prevent spam, the requested email was not send. Please wait a "
+"few minutes and try again."
+msgstr ""
+
+#: .\cookbook\helper\permission_helper.py:124
+#: .\cookbook\helper\permission_helper.py:144 .\cookbook\views\views.py:147
msgid "You are not logged in and therefore cannot view this page!"
msgstr "Je bent niet ingelogd en kan deze pagina daarom niet bekijken!"
-#: .\cookbook\helper\permission_helper.py:145
-#: .\cookbook\helper\permission_helper.py:167
-#: .\cookbook\helper\permission_helper.py:182
+#: .\cookbook\helper\permission_helper.py:127
+#: .\cookbook\helper\permission_helper.py:132
+#: .\cookbook\helper\permission_helper.py:154
+#: .\cookbook\helper\permission_helper.py:199
+#: .\cookbook\helper\permission_helper.py:213
+#: .\cookbook\helper\permission_helper.py:224
+#: .\cookbook\helper\permission_helper.py:235 .\cookbook\views\data.py:39
+#: .\cookbook\views\views.py:158 .\cookbook\views\views.py:165
+#: .\cookbook\views\views.py:253
+msgid "You do not have the required permissions to view this page!"
+msgstr "Je hebt niet de benodigde machtigingen om deze pagina te bekijken!"
+
+#: .\cookbook\helper\permission_helper.py:148
+#: .\cookbook\helper\permission_helper.py:170
+#: .\cookbook\helper\permission_helper.py:185
msgid "You cannot interact with this object as it is not owned by you!"
msgstr ""
"Interactie met dit object is niet mogelijk omdat je niet de eigenaar bent!"
-#: .\cookbook\helper\recipe_url_import.py:40 .\cookbook\views\api.py:549
-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\helper\recipe_url_import.py:54
-msgid ""
-"The requested site does not provide any recognized data format to import the "
-"recipe from."
-msgstr ""
-"De opgevraagde site biedt geen bekend gegevensformaat aan om het recept van "
-"te importeren."
-
-#: .\cookbook\helper\recipe_url_import.py:160
-msgid "Imported from"
-msgstr "Geïmporteerd van"
-
#: .\cookbook\helper\template_helper.py:60
#: .\cookbook\helper\template_helper.py:62
msgid "Could not parse template code."
@@ -273,43 +282,54 @@ msgstr "Sjablooncode kon niet verwerkt worden."
#: .\cookbook\templates\import.html:14 .\cookbook\templates\import.html:20
#: .\cookbook\templates\import_response.html:7
#: .\cookbook\templates\test.html:14 .\cookbook\templates\test.html:20
-#: .\cookbook\templates\url_import.html:233 .\cookbook\views\delete.py:60
-#: .\cookbook\views\edit.py:190
+#: .\cookbook\templates\url_import.html:27
+#: .\cookbook\templates\url_import.html:101
+#: .\cookbook\templates\url_import.html:123
+#: .\cookbook\templates\url_import.html:317
+#: .\cookbook\templates\url_import.html:604 .\cookbook\views\delete.py:60
+#: .\cookbook\views\edit.py:199
msgid "Import"
msgstr "Importeer"
-#: .\cookbook\integration\integration.py:131
+#: .\cookbook\integration\integration.py:162
msgid ""
"Importer expected a .zip file. Did you choose the correct importer type for "
"your data ?"
msgstr ""
"De importtool verwachtte een .zip bestand. Heb je het juiste type gekozen?"
-#: .\cookbook\integration\integration.py:134
+#: .\cookbook\integration\integration.py:165
+msgid ""
+"An unexpected error occurred during the import. Please make sure you have "
+"uploaded a valid file."
+msgstr ""
+
+#: .\cookbook\integration\integration.py:169
msgid "The following recipes were ignored because they already existed:"
msgstr "De volgende recepten zijn genegeerd omdat ze al bestonden:"
-#: .\cookbook\integration\integration.py:137
+#: .\cookbook\integration\integration.py:173
#, python-format
msgid "Imported %s recipes."
msgstr "%s recepten geïmporteerd."
-#: .\cookbook\integration\paprika.py:44
+#: .\cookbook\integration\paprika.py:46
msgid "Notes"
msgstr "Notities"
-#: .\cookbook\integration\paprika.py:47
+#: .\cookbook\integration\paprika.py:49
msgid "Nutritional Information"
msgstr "Voedingswaarde"
-#: .\cookbook\integration\paprika.py:50
+#: .\cookbook\integration\paprika.py:53
msgid "Source"
msgstr "Bron"
#: .\cookbook\integration\safron.py:23
-#: .\cookbook\templates\forms\edit_internal_recipe.html:75
+#: .\cookbook\templates\forms\edit_internal_recipe.html:79
#: .\cookbook\templates\include\log_cooking.html:16
-#: .\cookbook\templates\url_import.html:84
+#: .\cookbook\templates\url_import.html:224
+#: .\cookbook\templates\url_import.html:455
msgid "Servings"
msgstr "Porties"
@@ -318,11 +338,11 @@ msgid "Waiting time"
msgstr "Wachttijd"
#: .\cookbook\integration\safron.py:27
-#: .\cookbook\templates\forms\edit_internal_recipe.html:69
+#: .\cookbook\templates\forms\edit_internal_recipe.html:73
msgid "Preparation Time"
msgstr "Bereidingstijd"
-#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:71
+#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:78
#: .\cookbook\templates\forms\ingredients.html:7
#: .\cookbook\templates\index.html:7
msgid "Cookbook"
@@ -348,44 +368,74 @@ msgstr "Avondeten"
msgid "Other"
msgstr "Overige"
-#: .\cookbook\models.py:110 .\cookbook\templates\shopping_list.html:48
+#: .\cookbook\models.py:71
+msgid ""
+"Maximum file storage for space in MB. 0 for unlimited, -1 to disable file "
+"upload."
+msgstr ""
+
+#: .\cookbook\models.py:121 .\cookbook\templates\search.html:7
+#: .\cookbook\templates\shopping_list.html:52
msgid "Search"
msgstr "Zoeken"
-#: .\cookbook\models.py:111 .\cookbook\templates\base.html:85
+#: .\cookbook\models.py:122 .\cookbook\templates\base.html:92
#: .\cookbook\templates\meal_plan.html:5 .\cookbook\views\delete.py:152
-#: .\cookbook\views\edit.py:224 .\cookbook\views\new.py:188
+#: .\cookbook\views\edit.py:233 .\cookbook\views\new.py:201
msgid "Meal-Plan"
msgstr "Maaltijdplan"
-#: .\cookbook\models.py:112 .\cookbook\templates\base.html:82
+#: .\cookbook\models.py:123 .\cookbook\templates\base.html:89
msgid "Books"
msgstr "Boeken"
-#: .\cookbook\models.py:119
+#: .\cookbook\models.py:131
msgid "Small"
msgstr "Klein"
-#: .\cookbook\models.py:119
+#: .\cookbook\models.py:131
msgid "Large"
msgstr "Groot"
-#: .\cookbook\models.py:327
-#: .\cookbook\templates\forms\edit_internal_recipe.html:198
+#: .\cookbook\models.py:131 .\cookbook\templates\generic\new_template.html:6
+#: .\cookbook\templates\generic\new_template.html:14
+#: .\cookbook\templates\meal_plan.html:323
+msgid "New"
+msgstr "Nieuw"
+
+#: .\cookbook\models.py:340
+#: .\cookbook\templates\forms\edit_internal_recipe.html:202
msgid "Text"
msgstr "Tekst"
-#: .\cookbook\models.py:327
-#: .\cookbook\templates\forms\edit_internal_recipe.html:199
+#: .\cookbook\models.py:340
+#: .\cookbook\templates\forms\edit_internal_recipe.html:203
msgid "Time"
msgstr "Tijd"
+#: .\cookbook\models.py:340
+#: .\cookbook\templates\forms\edit_internal_recipe.html:204
+#: .\cookbook\templates\forms\edit_internal_recipe.html:218
+#, fuzzy
+#| msgid "File ID"
+msgid "File"
+msgstr "Bestands ID"
+
+#: .\cookbook\serializer.py:109
+msgid "File uploads are not enabled for this Space."
+msgstr ""
+
+#: .\cookbook\serializer.py:117
+msgid "You have reached your file upload limit."
+msgstr ""
+
#: .\cookbook\tables.py:35 .\cookbook\templates\books.html:36
#: .\cookbook\templates\generic\edit_template.html:6
#: .\cookbook\templates\generic\edit_template.html:14
#: .\cookbook\templates\meal_plan.html:281
#: .\cookbook\templates\recipes_table.html:82
#: .\cookbook\templates\shopping_list.html:33
+#: .\cookbook\templates\space.html:84
msgid "Edit"
msgstr "Bewerken"
@@ -399,10 +449,6 @@ msgstr "Bewerken"
msgid "Delete"
msgstr "Verwijderen"
-#: .\cookbook\tables.py:144
-msgid "Link"
-msgstr "Link"
-
#: .\cookbook\templates\404.html:5
msgid "404 Error"
msgstr "404 Foutmelding"
@@ -419,21 +465,126 @@ msgstr "Breng me Thuis"
msgid "Report a Bug"
msgstr "Rapporteer een bug"
-#: .\cookbook\templates\account\login.html:7
-#: .\cookbook\templates\base.html:170
+#: .\cookbook\templates\account\email.html:6
+#: .\cookbook\templates\account\email.html:9
+msgid "E-mail Addresses"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:11
+msgid "The following e-mail addresses are associated with your account:"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:28
+msgid "Verified"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:30
+msgid "Unverified"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:32
+msgid "Primary"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:39
+#, fuzzy
+#| msgid "Make Header"
+msgid "Make Primary"
+msgstr "Stel in als kop"
+
+#: .\cookbook\templates\account\email.html:41
+msgid "Re-send Verification"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:42
+#: .\cookbook\templates\socialaccount\connections.html:36
+msgid "Remove"
+msgstr "Verwijder"
+
+#: .\cookbook\templates\account\email.html:50
+#, fuzzy
+#| msgid "Warning"
+msgid "Warning:"
+msgstr "Waarschuwing"
+
+#: .\cookbook\templates\account\email.html:50
+msgid ""
+"You currently do not have any e-mail address set up. You should really add "
+"an e-mail address so you can receive notifications, reset your password, etc."
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:56
+msgid "Add E-mail Address"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:61
+msgid "Add E-mail"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:71
+msgid "Do you really want to remove the selected e-mail address?"
+msgstr ""
+
+#: .\cookbook\templates\account\email_confirm.html:6
+#: .\cookbook\templates\account\email_confirm.html:10
+msgid "Confirm E-mail Address"
+msgstr ""
+
+#: .\cookbook\templates\account\email_confirm.html:16
+#, python-format
+msgid ""
+"Please confirm that\n"
+" %(email)s is an e-mail address "
+"for user %(user_display)s\n"
+" ."
+msgstr ""
+
+#: .\cookbook\templates\account\email_confirm.html:22
+#: .\cookbook\templates\generic\delete_template.html:21
+msgid "Confirm"
+msgstr "Bevestigen"
+
+#: .\cookbook\templates\account\email_confirm.html:29
+#, python-format
+msgid ""
+"This e-mail confirmation link expired or is invalid. Please\n"
+" issue a new e-mail confirmation "
+"request."
+msgstr ""
+
+#: .\cookbook\templates\account\login.html:8
+#: .\cookbook\templates\base.html:180
msgid "Login"
msgstr "Inloggen"
-#: .\cookbook\templates\account\login.html:13
-#: .\cookbook\templates\account\login.html:28
+#: .\cookbook\templates\account\login.html:15
+#: .\cookbook\templates\account\login.html:31
+#: .\cookbook\templates\account\signup.html:69
+#: .\cookbook\templates\account\signup_closed.html:15
msgid "Sign In"
msgstr "Log in"
-#: .\cookbook\templates\account\login.html:38
+#: .\cookbook\templates\account\login.html:32
+#, fuzzy
+#| msgid "Sign In"
+msgid "Sign Up"
+msgstr "Log in"
+
+#: .\cookbook\templates\account\login.html:36
+#: .\cookbook\templates\account\login.html:37
+#: .\cookbook\templates\account\password_reset.html:29
+msgid "Reset My Password"
+msgstr ""
+
+#: .\cookbook\templates\account\login.html:37
+msgid "Lost your password?"
+msgstr ""
+
+#: .\cookbook\templates\account\login.html:48
msgid "Social Login"
msgstr "Socials login"
-#: .\cookbook\templates\account\login.html:39
+#: .\cookbook\templates\account\login.html:49
msgid "You can use any of the following providers to sign in."
msgstr "Je kan een van de volgende providers gebruiken om in te loggen."
@@ -447,116 +598,168 @@ msgstr "Log uit"
msgid "Are you sure you want to sign out?"
msgstr "Weet je zeker dat je uit wil loggen?"
-#: .\cookbook\templates\account\password_reset.html:5
-#: .\cookbook\templates\account\password_reset_done.html:5
+#: .\cookbook\templates\account\password_reset.html:7
+#: .\cookbook\templates\account\password_reset.html:13
+#: .\cookbook\templates\account\password_reset_done.html:7
+#: .\cookbook\templates\account\password_reset_done.html:10
msgid "Password Reset"
msgstr "Wachtwoord reset"
-#: .\cookbook\templates\account\password_reset.html:9
-#: .\cookbook\templates\account\password_reset_done.html:9
-msgid "Password reset is not implemented for the time being!"
+#: .\cookbook\templates\account\password_reset.html:24
+msgid ""
+"Forgotten your password? Enter your e-mail address below, and we'll send you "
+"an e-mail allowing you to reset it."
+msgstr ""
+
+#: .\cookbook\templates\account\password_reset.html:32
+#, fuzzy
+#| msgid "Password reset is not implemented for the time being!"
+msgid "Password reset is disabled on this instance."
msgstr "Wachtwoord reset is nog niet geïmplementeerd!"
-#: .\cookbook\templates\account\signup.html:5
+#: .\cookbook\templates\account\password_reset_done.html:16
+msgid ""
+"We have sent you an e-mail. Please contact us if you do not receive it "
+"within a few minutes."
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:6
msgid "Register"
msgstr "Registreer"
-#: .\cookbook\templates\account\signup.html:9
-msgid "Create your Account"
+#: .\cookbook\templates\account\signup.html:12
+#, fuzzy
+#| msgid "Create your Account"
+msgid "Create an Account"
msgstr "Maak je account aan"
-#: .\cookbook\templates\account\signup.html:14
+#: .\cookbook\templates\account\signup.html:42
+msgid "I accept the follwoing"
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:45
+msgid "Terms and Conditions"
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:48
+msgid "and"
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:52
+msgid "Privacy Policy"
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:65
msgid "Create User"
msgstr "Maak gebruiker aan"
-#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:160
+#: .\cookbook\templates\account\signup.html:69
+msgid "Already have an account?"
+msgstr ""
+
+#: .\cookbook\templates\account\signup_closed.html:5
+#: .\cookbook\templates\account\signup_closed.html:11
+msgid "Sign Up Closed"
+msgstr ""
+
+#: .\cookbook\templates\account\signup_closed.html:13
+msgid "We are sorry, but the sign up is currently closed."
+msgstr ""
+
+#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:170
#: .\cookbook\templates\rest_framework\api.html:11
msgid "API Documentation"
msgstr "API documentatie"
-#: .\cookbook\templates\base.html:78
+#: .\cookbook\templates\base.html:85
msgid "Utensils"
msgstr "Kookgerei"
-#: .\cookbook\templates\base.html:88
+#: .\cookbook\templates\base.html:95
msgid "Shopping"
msgstr "Winkelen"
-#: .\cookbook\templates\base.html:102 .\cookbook\views\delete.py:84
-#: .\cookbook\views\edit.py:93 .\cookbook\views\lists.py:26
-#: .\cookbook\views\new.py:66
+#: .\cookbook\templates\base.html:109 .\cookbook\views\delete.py:84
+#: .\cookbook\views\edit.py:102 .\cookbook\views\lists.py:26
+#: .\cookbook\views\new.py:78
msgid "Keyword"
msgstr "Etiket"
-#: .\cookbook\templates\base.html:104
+#: .\cookbook\templates\base.html:111
msgid "Batch Edit"
msgstr "Batchbewerking"
-#: .\cookbook\templates\base.html:109
+#: .\cookbook\templates\base.html:116
msgid "Storage Data"
msgstr "Dataopslag"
-#: .\cookbook\templates\base.html:113
+#: .\cookbook\templates\base.html:120
msgid "Storage Backends"
msgstr "Opslag Backends"
-#: .\cookbook\templates\base.html:115
+#: .\cookbook\templates\base.html:122
msgid "Configure Sync"
msgstr "Synchronisatie configureren"
-#: .\cookbook\templates\base.html:117
+#: .\cookbook\templates\base.html:124
msgid "Discovered Recipes"
msgstr "Ontdekte recepten"
-#: .\cookbook\templates\base.html:119
+#: .\cookbook\templates\base.html:126
msgid "Discovery Log"
msgstr "Ontdekkingslogboek"
-#: .\cookbook\templates\base.html:121 .\cookbook\templates\stats.html:10
+#: .\cookbook\templates\base.html:128 .\cookbook\templates\stats.html:10
msgid "Statistics"
msgstr "Statistieken"
-#: .\cookbook\templates\base.html:123
+#: .\cookbook\templates\base.html:130
msgid "Units & Ingredients"
msgstr "Eenheden & Ingrediënten"
-#: .\cookbook\templates\base.html:125
+#: .\cookbook\templates\base.html:132 .\cookbook\templates\index.html:47
msgid "Import Recipe"
msgstr "Recept importeren"
-#: .\cookbook\templates\base.html:144 .\cookbook\templates\settings.html:6
+#: .\cookbook\templates\base.html:151 .\cookbook\templates\settings.html:6
#: .\cookbook\templates\settings.html:16
msgid "Settings"
msgstr "Instellingen"
-#: .\cookbook\templates\base.html:146 .\cookbook\templates\history.html:6
+#: .\cookbook\templates\base.html:153 .\cookbook\templates\history.html:6
#: .\cookbook\templates\history.html:14
msgid "History"
msgstr "Geschiedenis"
-#: .\cookbook\templates\base.html:150 .\cookbook\templates\system.html:13
+#: .\cookbook\templates\base.html:155 .\cookbook\templates\space.html:7
+#, fuzzy
+#| msgid "Settings"
+msgid "Space Settings"
+msgstr "Instellingen"
+
+#: .\cookbook\templates\base.html:160 .\cookbook\templates\system.html:13
msgid "System"
msgstr "Systeem"
-#: .\cookbook\templates\base.html:152
+#: .\cookbook\templates\base.html:162
msgid "Admin"
msgstr "Beheer"
-#: .\cookbook\templates\base.html:156
+#: .\cookbook\templates\base.html:166
msgid "Markdown Guide"
msgstr "Markdown gids"
-#: .\cookbook\templates\base.html:158
+#: .\cookbook\templates\base.html:168
msgid "GitHub"
msgstr "GitHub"
-#: .\cookbook\templates\base.html:162
+#: .\cookbook\templates\base.html:172
msgid "API Browser"
msgstr "API Browser"
-#: .\cookbook\templates\base.html:165
-msgid "Logout"
-msgstr "Uitloggen"
+#: .\cookbook\templates\base.html:175
+msgid "Log out"
+msgstr ""
#: .\cookbook\templates\batch\edit.html:6
msgid "Batch edit Category"
@@ -572,7 +775,7 @@ msgstr ""
"Voeg de gespecificeerde etiketten toe aan alle recepten die een woord "
"bevatten"
-#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:76
+#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:85
msgid "Sync"
msgstr "Synchroniseren"
@@ -601,7 +804,7 @@ msgstr "Synchroniseer nu!"
msgid "Importing Recipes"
msgstr "Recepten aan het importeren"
-#: .\cookbook\templates\batch\waiting.html:23
+#: .\cookbook\templates\batch\waiting.html:28
msgid ""
"This can take a few minutes, depending on the number of recipes in sync, "
"please wait."
@@ -640,26 +843,33 @@ msgid "Export Recipes"
msgstr "Recepten exporteren"
#: .\cookbook\templates\export.html:14 .\cookbook\templates\export.html:20
-#: .\cookbook\templates\shopping_list.html:347
+#: .\cookbook\templates\shopping_list.html:351
#: .\cookbook\templates\test2.html:14 .\cookbook\templates\test2.html:20
msgid "Export"
msgstr "Exporteren"
+#: .\cookbook\templates\files.html:7
+#, fuzzy
+#| msgid "File ID"
+msgid "Files"
+msgstr "Bestands ID"
+
#: .\cookbook\templates\forms\edit_import_recipe.html:5
#: .\cookbook\templates\forms\edit_import_recipe.html:9
msgid "Import new Recipe"
msgstr "Nieuw recept importeren"
#: .\cookbook\templates\forms\edit_import_recipe.html:14
-#: .\cookbook\templates\forms\edit_internal_recipe.html:389
-#: .\cookbook\templates\forms\edit_internal_recipe.html:421
+#: .\cookbook\templates\forms\edit_internal_recipe.html:416
+#: .\cookbook\templates\forms\edit_internal_recipe.html:448
#: .\cookbook\templates\generic\edit_template.html:23
#: .\cookbook\templates\generic\new_template.html:23
#: .\cookbook\templates\include\log_cooking.html:28
#: .\cookbook\templates\meal_plan.html:325
-#: .\cookbook\templates\settings.html:28 .\cookbook\templates\settings.html:35
-#: .\cookbook\templates\settings.html:58 .\cookbook\templates\settings.html:73
-#: .\cookbook\templates\shopping_list.html:349
+#: .\cookbook\templates\settings.html:44 .\cookbook\templates\settings.html:52
+#: .\cookbook\templates\settings.html:96
+#: .\cookbook\templates\settings.html:114
+#: .\cookbook\templates\shopping_list.html:353
msgid "Save"
msgstr "Opslaan"
@@ -668,179 +878,188 @@ msgstr "Opslaan"
msgid "Edit Recipe"
msgstr "Recept bewerken"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:52
+#: .\cookbook\templates\forms\edit_internal_recipe.html:56
+#: .\cookbook\templates\url_import.html:171
msgid "Description"
msgstr "Beschrijving"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:72
+#: .\cookbook\templates\forms\edit_internal_recipe.html:76
msgid "Waiting Time"
msgstr "Wachttijd"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:78
+#: .\cookbook\templates\forms\edit_internal_recipe.html:82
msgid "Servings Text"
msgstr "Porties tekst"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:89
+#: .\cookbook\templates\forms\edit_internal_recipe.html:93
msgid "Select Keywords"
msgstr "Selecteer etiketten"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:90
-#: .\cookbook\templates\url_import.html:212
+#: .\cookbook\templates\forms\edit_internal_recipe.html:94
+#: .\cookbook\templates\url_import.html:583
msgid "Add Keyword"
msgstr "Voeg Etiket toe"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:108
+#: .\cookbook\templates\forms\edit_internal_recipe.html:112
msgid "Nutrition"
msgstr "Voedingswaarde"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:112
-#: .\cookbook\templates\forms\edit_internal_recipe.html:162
+#: .\cookbook\templates\forms\edit_internal_recipe.html:116
+#: .\cookbook\templates\forms\edit_internal_recipe.html:166
msgid "Delete Step"
msgstr "Verwijder stap"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:116
+#: .\cookbook\templates\forms\edit_internal_recipe.html:120
msgid "Calories"
msgstr "Calorieën"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:119
+#: .\cookbook\templates\forms\edit_internal_recipe.html:123
msgid "Carbohydrates"
msgstr "Koolhydraten"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:122
+#: .\cookbook\templates\forms\edit_internal_recipe.html:126
msgid "Fats"
msgstr "Vetten"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:124
+#: .\cookbook\templates\forms\edit_internal_recipe.html:128
msgid "Proteins"
msgstr "Eiwitten"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:146
-#: .\cookbook\templates\forms\edit_internal_recipe.html:454
+#: .\cookbook\templates\forms\edit_internal_recipe.html:150
+#: .\cookbook\templates\forms\edit_internal_recipe.html:481
msgid "Step"
msgstr "Stap"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:167
+#: .\cookbook\templates\forms\edit_internal_recipe.html:171
msgid "Show as header"
msgstr "Laat als kop zien"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:173
+#: .\cookbook\templates\forms\edit_internal_recipe.html:177
msgid "Hide as header"
msgstr "Verbergen als kop"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:178
+#: .\cookbook\templates\forms\edit_internal_recipe.html:182
msgid "Move Up"
msgstr "Verplaats omhoog"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:183
+#: .\cookbook\templates\forms\edit_internal_recipe.html:187
msgid "Move Down"
msgstr "Verplaats omlaag"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:192
+#: .\cookbook\templates\forms\edit_internal_recipe.html:196
msgid "Step Name"
msgstr "Stap naam"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:196
+#: .\cookbook\templates\forms\edit_internal_recipe.html:200
msgid "Step Type"
msgstr "Stap type"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:207
+#: .\cookbook\templates\forms\edit_internal_recipe.html:212
msgid "Step time in Minutes"
msgstr "Tijdsduur stap in minuten"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:261
-#: .\cookbook\templates\shopping_list.html:183
-msgid "Select Unit"
-msgstr "Selecteer eenheid"
+#: .\cookbook\templates\forms\edit_internal_recipe.html:228
+#, fuzzy
+#| msgid "Select one"
+msgid "Select File"
+msgstr "Selecteer één"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:262
-#: .\cookbook\templates\forms\edit_internal_recipe.html:286
-#: .\cookbook\templates\shopping_list.html:184
-#: .\cookbook\templates\shopping_list.html:206
-msgid "Create"
-msgstr "Maak"
-
-#: .\cookbook\templates\forms\edit_internal_recipe.html:263
-#: .\cookbook\templates\forms\edit_internal_recipe.html:287
-#: .\cookbook\templates\shopping_list.html:185
-#: .\cookbook\templates\shopping_list.html:207
-#: .\cookbook\templates\shopping_list.html:237
-#: .\cookbook\templates\shopping_list.html:261
-#: .\cookbook\templates\url_import.html:124
-#: .\cookbook\templates\url_import.html:156
+#: .\cookbook\templates\forms\edit_internal_recipe.html:229
+#: .\cookbook\templates\forms\edit_internal_recipe.html:290
+#: .\cookbook\templates\forms\edit_internal_recipe.html:314
+#: .\cookbook\templates\shopping_list.html:189
+#: .\cookbook\templates\shopping_list.html:211
+#: .\cookbook\templates\shopping_list.html:241
+#: .\cookbook\templates\shopping_list.html:265
+#: .\cookbook\templates\url_import.html:495
+#: .\cookbook\templates\url_import.html:527
msgid "Select"
msgstr "Selecteer"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:285
-#: .\cookbook\templates\shopping_list.html:205
+#: .\cookbook\templates\forms\edit_internal_recipe.html:288
+#: .\cookbook\templates\shopping_list.html:187
+msgid "Select Unit"
+msgstr "Selecteer eenheid"
+
+#: .\cookbook\templates\forms\edit_internal_recipe.html:289
+#: .\cookbook\templates\forms\edit_internal_recipe.html:313
+#: .\cookbook\templates\shopping_list.html:188
+#: .\cookbook\templates\shopping_list.html:210
+msgid "Create"
+msgstr "Maak"
+
+#: .\cookbook\templates\forms\edit_internal_recipe.html:312
+#: .\cookbook\templates\shopping_list.html:209
msgid "Select Food"
msgstr "Selecteer ingrediënt"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:302
+#: .\cookbook\templates\forms\edit_internal_recipe.html:329
#: .\cookbook\templates\meal_plan.html:256
-#: .\cookbook\templates\url_import.html:171
+#: .\cookbook\templates\url_import.html:542
msgid "Note"
msgstr "Notitie"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:319
+#: .\cookbook\templates\forms\edit_internal_recipe.html:346
msgid "Delete Ingredient"
msgstr "Verwijder ingrediënt"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:325
+#: .\cookbook\templates\forms\edit_internal_recipe.html:352
msgid "Make Header"
msgstr "Stel in als kop"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:331
+#: .\cookbook\templates\forms\edit_internal_recipe.html:358
msgid "Make Ingredient"
msgstr "Maak ingrediënt"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:337
+#: .\cookbook\templates\forms\edit_internal_recipe.html:364
msgid "Disable Amount"
msgstr "Hoeveelheid uitschakelen"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:343
+#: .\cookbook\templates\forms\edit_internal_recipe.html:370
msgid "Enable Amount"
msgstr "Hoeveelheid inschakelen"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:348
+#: .\cookbook\templates\forms\edit_internal_recipe.html:375
msgid "Copy Template Reference"
msgstr "Kopieer sjabloon referentie"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:374
-#: .\cookbook\templates\url_import.html:196
+#: .\cookbook\templates\forms\edit_internal_recipe.html:401
+#: .\cookbook\templates\url_import.html:297
+#: .\cookbook\templates\url_import.html:567
msgid "Instructions"
msgstr "Instructies"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:387
-#: .\cookbook\templates\forms\edit_internal_recipe.html:418
+#: .\cookbook\templates\forms\edit_internal_recipe.html:414
+#: .\cookbook\templates\forms\edit_internal_recipe.html:445
msgid "Save & View"
msgstr "Opslaan & bekijken"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:391
-#: .\cookbook\templates\forms\edit_internal_recipe.html:424
+#: .\cookbook\templates\forms\edit_internal_recipe.html:418
+#: .\cookbook\templates\forms\edit_internal_recipe.html:451
msgid "Add Step"
msgstr "Voeg stap toe"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:394
-#: .\cookbook\templates\forms\edit_internal_recipe.html:428
+#: .\cookbook\templates\forms\edit_internal_recipe.html:421
+#: .\cookbook\templates\forms\edit_internal_recipe.html:455
msgid "Add Nutrition"
msgstr "Voedingswaarde toevoegen"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:396
-#: .\cookbook\templates\forms\edit_internal_recipe.html:430
+#: .\cookbook\templates\forms\edit_internal_recipe.html:423
+#: .\cookbook\templates\forms\edit_internal_recipe.html:457
msgid "Remove Nutrition"
msgstr "Voedingswaarde verwijderen"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:398
-#: .\cookbook\templates\forms\edit_internal_recipe.html:433
+#: .\cookbook\templates\forms\edit_internal_recipe.html:425
+#: .\cookbook\templates\forms\edit_internal_recipe.html:460
msgid "View Recipe"
msgstr "Bekijk recept"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:400
-#: .\cookbook\templates\forms\edit_internal_recipe.html:435
+#: .\cookbook\templates\forms\edit_internal_recipe.html:427
+#: .\cookbook\templates\forms\edit_internal_recipe.html:462
msgid "Delete Recipe"
msgstr "Verwijder recept"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:441
+#: .\cookbook\templates\forms\edit_internal_recipe.html:468
msgid "Steps"
msgstr "Stappen"
@@ -859,15 +1078,15 @@ msgid ""
" "
msgstr ""
"\n"
-" Het volgende formulier kan worden gebruikt wanneer per ongeluk twee ("
-"of meer) eenheden of ingrediënten zijn gemaakt die eigenlijk hetzelfde zijn."
-"\n"
+" Het volgende formulier kan worden gebruikt wanneer per ongeluk twee "
+"(of meer) eenheden of ingrediënten zijn gemaakt die eigenlijk hetzelfde "
+"zijn.\n"
" Het voegt de twee eenheden of ingrediënten samen en past alle bijbehorende "
"recepten aan.\n"
" "
#: .\cookbook\templates\forms\ingredients.html:24
-#: .\cookbook\templates\stats.html:26
+#: .\cookbook\templates\space.html:35 .\cookbook\templates\stats.html:26
msgid "Units"
msgstr "Eenheden"
@@ -889,10 +1108,6 @@ msgstr "Weet je zeker dat je deze ingrediënten wil samenvoegen?"
msgid "Are you sure you want to delete the %(title)s: %(object)s "
msgstr "Weet je zeker dat je %(title)s: %(object)s wil verwijderen "
-#: .\cookbook\templates\generic\delete_template.html:21
-msgid "Confirm"
-msgstr "Bevestigen"
-
#: .\cookbook\templates\generic\edit_template.html:30
msgid "View"
msgstr "Bekijken"
@@ -914,12 +1129,6 @@ msgstr "Filtreren"
msgid "Import all"
msgstr "Alles importeren"
-#: .\cookbook\templates\generic\new_template.html:6
-#: .\cookbook\templates\generic\new_template.html:14
-#: .\cookbook\templates\meal_plan.html:323
-msgid "New"
-msgstr "Nieuw"
-
#: .\cookbook\templates\generic\table_template.html:76
#: .\cookbook\templates\recipes_table.html:121
msgid "previous"
@@ -964,7 +1173,7 @@ msgstr "Sluiten"
#: .\cookbook\templates\include\recipe_open_modal.html:7
#: .\cookbook\templates\meal_plan.html:247 .\cookbook\views\delete.py:28
-#: .\cookbook\views\edit.py:264 .\cookbook\views\new.py:40
+#: .\cookbook\views\edit.py:273 .\cookbook\views\new.py:52
msgid "Recipe"
msgstr "recept"
@@ -1005,10 +1214,6 @@ msgstr "Zoek recept ..."
msgid "New Recipe"
msgstr "Nieuw recept"
-#: .\cookbook\templates\index.html:47
-msgid "Website Import"
-msgstr "Importeer website"
-
#: .\cookbook\templates\index.html:53
msgid "Advanced Search"
msgstr "Geavanceerde zoekopdracht"
@@ -1022,7 +1227,7 @@ msgid "Last viewed"
msgstr "Laatst bekeken"
#: .\cookbook\templates\index.html:87 .\cookbook\templates\meal_plan.html:178
-#: .\cookbook\templates\stats.html:22
+#: .\cookbook\templates\space.html:29 .\cookbook\templates\stats.html:22
msgid "Recipes"
msgstr "Recepten"
@@ -1190,7 +1395,7 @@ msgid "New Entry"
msgstr "Nieuw item"
#: .\cookbook\templates\meal_plan.html:113
-#: .\cookbook\templates\shopping_list.html:52
+#: .\cookbook\templates\shopping_list.html:56
msgid "Search Recipe"
msgstr "Zoek recept"
@@ -1222,7 +1427,7 @@ msgstr "Maak alleen een notitie"
#: .\cookbook\templates\meal_plan.html:168
#: .\cookbook\templates\shopping_list.html:7
#: .\cookbook\templates\shopping_list.html:29
-#: .\cookbook\templates\shopping_list.html:705
+#: .\cookbook\templates\shopping_list.html:714
msgid "Shopping List"
msgstr "Boodschappenlijstje"
@@ -1274,7 +1479,7 @@ msgstr "Gemaakt door"
#: .\cookbook\templates\meal_plan.html:270
#: .\cookbook\templates\meal_plan_entry.html:20
-#: .\cookbook\templates\shopping_list.html:250
+#: .\cookbook\templates\shopping_list.html:254
msgid "Shared with"
msgstr "Gedeeld met"
@@ -1372,7 +1577,6 @@ msgstr "Je hebt geen groepen en kan daarom deze applicatie niet gebruiken."
#: .\cookbook\templates\no_groups_info.html:18
#: .\cookbook\templates\no_perm_info.html:15
-#: .\cookbook\templates\no_space_info.html:15
msgid "Please contact your administrator."
msgstr "Neem contact op met je beheerder."
@@ -1389,14 +1593,53 @@ msgstr ""
"Je beschikt niet over de juiste rechten om deze pagina te bekijken of deze "
"actie uit te voeren."
-#: .\cookbook\templates\no_space_info.html:5
-#: .\cookbook\templates\no_space_info.html:12
+#: .\cookbook\templates\no_space_info.html:6
+#: .\cookbook\templates\no_space_info.html:13
msgid "No Space"
msgstr "Geen ruimte"
-#: .\cookbook\templates\no_space_info.html:15
-msgid "You are not a member of any space."
-msgstr "Je bent geen lid van een ruimte."
+#: .\cookbook\templates\no_space_info.html:17
+msgid ""
+"Recipes, foods, shopping lists and more are organized in spaces of one or "
+"more people."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:18
+msgid ""
+"You can either be invited into an existing space or create your own one."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:31
+#: .\cookbook\templates\no_space_info.html:40
+#, fuzzy
+#| msgid "No Space"
+msgid "Join Space"
+msgstr "Geen ruimte"
+
+#: .\cookbook\templates\no_space_info.html:34
+msgid "Join an existing space."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:35
+msgid ""
+"To join an existing space either enter your invite token or click on the "
+"invite link the space owner send you."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:48
+#: .\cookbook\templates\no_space_info.html:56
+#, fuzzy
+#| msgid "Create User"
+msgid "Create Space"
+msgstr "Maak gebruiker aan"
+
+#: .\cookbook\templates\no_space_info.html:51
+msgid "Create your own recipe space."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:52
+msgid "Start your own recipe space and invite other users to it."
+msgstr ""
#: .\cookbook\templates\offline.html:6
msgid "Offline"
@@ -1414,28 +1657,29 @@ 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\stats.html:47
+#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\space.html:56
+#: .\cookbook\templates\stats.html:47
msgid "Comments"
msgstr "Opmerkingen"
#: .\cookbook\templates\recipe_view.html:44 .\cookbook\views\delete.py:118
-#: .\cookbook\views\edit.py:170
+#: .\cookbook\views\edit.py:179
msgid "Comment"
msgstr "Opmerking"
#: .\cookbook\templates\recipes_table.html:19
#: .\cookbook\templates\recipes_table.html:23
-#: .\cookbook\templates\url_import.html:69
+#: .\cookbook\templates\url_import.html:440
msgid "Recipe Image"
msgstr "Recept afbeelding"
#: .\cookbook\templates\recipes_table.html:51
-#: .\cookbook\templates\url_import.html:74
+#: .\cookbook\templates\url_import.html:445
msgid "Preparation time ca."
msgstr "Geschatte voorbereidingstijd"
#: .\cookbook\templates\recipes_table.html:57
-#: .\cookbook\templates\url_import.html:79
+#: .\cookbook\templates\url_import.html:450
msgid "Waiting time ca."
msgstr "Geschatte wachttijd"
@@ -1451,27 +1695,67 @@ msgstr "Bereiding loggen"
msgid "Recipe Home"
msgstr "Recept thuis"
-#: .\cookbook\templates\settings.html:22
+#: .\cookbook\templates\settings.html:23
msgid "Account"
msgstr "Account"
-#: .\cookbook\templates\settings.html:38
-msgid "Link social account"
+#: .\cookbook\templates\settings.html:27
+msgid "Preferences"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:31
+#, fuzzy
+#| msgid "Settings"
+msgid "API-Settings"
+msgstr "Instellingen"
+
+#: .\cookbook\templates\settings.html:39
+#, fuzzy
+#| msgid "Settings"
+msgid "Name Settings"
+msgstr "Instellingen"
+
+#: .\cookbook\templates\settings.html:47
+#, fuzzy
+#| msgid "Password Reset"
+msgid "Password Settings"
+msgstr "Wachtwoord reset"
+
+#: .\cookbook\templates\settings.html:55
+#, fuzzy
+#| msgid "Settings"
+msgid "Email Settings"
+msgstr "Instellingen"
+
+#: .\cookbook\templates\settings.html:57
+msgid "Manage Email Settings"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:61
+#, fuzzy
+#| msgid "Social Login"
+msgid "Social"
+msgstr "Socials login"
+
+#: .\cookbook\templates\settings.html:63
+#, fuzzy
+#| msgid "Link social account"
+msgid "Manage Social Accounts"
msgstr "Koppel account socials"
-#: .\cookbook\templates\settings.html:42
+#: .\cookbook\templates\settings.html:75
msgid "Language"
msgstr "Taal"
-#: .\cookbook\templates\settings.html:67
+#: .\cookbook\templates\settings.html:105
msgid "Style"
msgstr "Stijl"
-#: .\cookbook\templates\settings.html:79
+#: .\cookbook\templates\settings.html:125
msgid "API Token"
msgstr "API Token"
-#: .\cookbook\templates\settings.html:80
+#: .\cookbook\templates\settings.html:126
msgid ""
"You can use both basic authentication and token based authentication to "
"access the REST API."
@@ -1479,7 +1763,7 @@ msgstr ""
"Je kan zowel basale verificatie als verificatie op basis van tokens "
"gebruiken om toegang tot de REST API te krijgen."
-#: .\cookbook\templates\settings.html:92
+#: .\cookbook\templates\settings.html:143
msgid ""
"Use the token as an Authorization header prefixed by the word token as shown "
"in the following examples:"
@@ -1487,7 +1771,7 @@ msgstr ""
"Gebruik de token als een 'Authorization header'voorafgegaan door het woord "
"token zoals in de volgende voorbeelden:"
-#: .\cookbook\templates\settings.html:94
+#: .\cookbook\templates\settings.html:145
msgid "or"
msgstr "of"
@@ -1509,58 +1793,55 @@ msgstr ""
msgid "Create Superuser account"
msgstr "Maak Superuser acount"
-#: .\cookbook\templates\shopping_list.html:75
+#: .\cookbook\templates\shopping_list.html:79
msgid "Shopping Recipes"
msgstr "Boodschappen recepten"
-#: .\cookbook\templates\shopping_list.html:79
+#: .\cookbook\templates\shopping_list.html:83
msgid "No recipes selected"
msgstr "Geen recepten geselecteerd"
-#: .\cookbook\templates\shopping_list.html:146
+#: .\cookbook\templates\shopping_list.html:150
msgid "Entry Mode"
msgstr "Invoermodus"
-#: .\cookbook\templates\shopping_list.html:154
+#: .\cookbook\templates\shopping_list.html:158
msgid "Add Entry"
msgstr "Zet op lijst"
-#: .\cookbook\templates\shopping_list.html:170
+#: .\cookbook\templates\shopping_list.html:174
msgid "Amount"
msgstr "Hoeveelheid"
-#: .\cookbook\templates\shopping_list.html:226
+#: .\cookbook\templates\shopping_list.html:230
+#: .\cookbook\templates\supermarket.html:7
msgid "Supermarket"
msgstr "Supermarkt"
-#: .\cookbook\templates\shopping_list.html:236
+#: .\cookbook\templates\shopping_list.html:240
msgid "Select Supermarket"
msgstr "Selecteer supermarkt"
-#: .\cookbook\templates\shopping_list.html:260
+#: .\cookbook\templates\shopping_list.html:264
msgid "Select User"
msgstr "Selecteer gebruiker"
-#: .\cookbook\templates\shopping_list.html:279
+#: .\cookbook\templates\shopping_list.html:283
msgid "Finished"
msgstr "Afgerond"
-#: .\cookbook\templates\shopping_list.html:292
+#: .\cookbook\templates\shopping_list.html:296
msgid "You are offline, shopping list might not syncronize."
msgstr "Je bent offline, boodschappenlijst synchroniseert mogelijk niet."
-#: .\cookbook\templates\shopping_list.html:357
+#: .\cookbook\templates\shopping_list.html:361
msgid "Copy/Export"
msgstr "Kopieër/exporteer"
-#: .\cookbook\templates\shopping_list.html:361
+#: .\cookbook\templates\shopping_list.html:365
msgid "List Prefix"
msgstr "Lijst voorvoegsel"
-#: .\cookbook\templates\shopping_list.html:708
-msgid "There was an error creating a resource!"
-msgstr "Er is een fout opgetreden bij het maken van een hulpbron!"
-
#: .\cookbook\templates\socialaccount\connections.html:4
#: .\cookbook\templates\socialaccount\connections.html:7
msgid "Account Connections"
@@ -1574,10 +1855,6 @@ msgstr ""
"Je kan inloggen met een account van een van de onderstaande derde \n"
"partijen:"
-#: .\cookbook\templates\socialaccount\connections.html:36
-msgid "Remove"
-msgstr "Verwijder"
-
#: .\cookbook\templates\socialaccount\connections.html:44
msgid ""
"You currently have no social network accounts connected to this account."
@@ -1588,38 +1865,99 @@ msgstr ""
msgid "Add a 3rd Party Account"
msgstr "Voeg account van een 3e partij toe"
-#: .\cookbook\templates\stats.html:4
-msgid "Stats"
-msgstr "Statistieken"
+#: .\cookbook\templates\space.html:18
+#, fuzzy
+#| msgid "Description"
+msgid "Manage Subscription"
+msgstr "Beschrijving"
-#: .\cookbook\templates\stats.html:19
+#: .\cookbook\templates\space.html:26 .\cookbook\templates\stats.html:19
msgid "Number of objects"
msgstr "Aantal objecten"
-#: .\cookbook\templates\stats.html:30
+#: .\cookbook\templates\space.html:39 .\cookbook\templates\stats.html:30
msgid "Recipe Imports"
msgstr "Geïmporteerde recepten"
-#: .\cookbook\templates\stats.html:38
+#: .\cookbook\templates\space.html:47 .\cookbook\templates\stats.html:38
msgid "Objects stats"
msgstr "Object statistieken"
-#: .\cookbook\templates\stats.html:41
+#: .\cookbook\templates\space.html:50 .\cookbook\templates\stats.html:41
msgid "Recipes without Keywords"
msgstr "Recepten zonder etiketten"
-#: .\cookbook\templates\stats.html:43
+#: .\cookbook\templates\space.html:52 .\cookbook\templates\stats.html:43
msgid "External Recipes"
msgstr "Externe recepten"
-#: .\cookbook\templates\stats.html:45
+#: .\cookbook\templates\space.html:54 .\cookbook\templates\stats.html:45
msgid "Internal Recipes"
msgstr "Interne recepten"
-#: .\cookbook\templates\system.html:21 .\cookbook\views\lists.py:115
+#: .\cookbook\templates\space.html:67
+msgid "Members"
+msgstr ""
+
+#: .\cookbook\templates\space.html:71
+#, fuzzy
+#| msgid "Invite Links"
+msgid "Invite User"
+msgstr "Uitnodigingslink"
+
+#: .\cookbook\templates\space.html:82
+msgid "User"
+msgstr ""
+
+#: .\cookbook\templates\space.html:83
+msgid "Groups"
+msgstr ""
+
+#: .\cookbook\templates\space.html:99
+#, fuzzy
+#| msgid "Admin"
+msgid "admin"
+msgstr "Beheer"
+
+#: .\cookbook\templates\space.html:100
+msgid "user"
+msgstr ""
+
+#: .\cookbook\templates\space.html:101
+msgid "guest"
+msgstr ""
+
+#: .\cookbook\templates\space.html:102
+#, fuzzy
+#| msgid "Remove"
+msgid "remove"
+msgstr "Verwijder"
+
+#: .\cookbook\templates\space.html:106
+msgid "Update"
+msgstr ""
+
+#: .\cookbook\templates\space.html:110
+#, fuzzy
+#| msgid "You cannot edit this storage!"
+msgid "You cannot edit yourself."
+msgstr "Je kan deze opslag niet bewerken!"
+
+#: .\cookbook\templates\space.html:117
+#, fuzzy
+#| msgid "There are no recipes in this book yet."
+msgid "There are no members in your space yet!"
+msgstr "In dit boek bestaan nog geen recepten."
+
+#: .\cookbook\templates\space.html:124 .\cookbook\templates\system.html:21
+#: .\cookbook\views\lists.py:115
msgid "Invite Links"
msgstr "Uitnodigingslink"
+#: .\cookbook\templates\stats.html:4
+msgid "Stats"
+msgstr "Statistieken"
+
#: .\cookbook\templates\system.html:22
msgid "Show Links"
msgstr "Toon links"
@@ -1748,45 +2086,157 @@ msgstr ""
" alleen werken met Postgres databases.\n"
" "
-#: .\cookbook\templates\url_import.html:5
+#: .\cookbook\templates\url_import.html:6
msgid "URL Import"
msgstr "Importeer URL"
-#: .\cookbook\templates\url_import.html:23
+#: .\cookbook\templates\url_import.html:31
+msgid "Drag me to your bookmarks to import recipes from anywhere"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:32
+#, fuzzy
+#| msgid "Bookmark saved!"
+msgid "Bookmark Me!"
+msgstr "Bladwijzer opgeslagen!"
+
+#: .\cookbook\templates\url_import.html:61
msgid "Enter website URL"
msgstr "Vul website URL in"
-#: .\cookbook\templates\url_import.html:36
-msgid "Enter json directly"
-msgstr "Geef json direct op"
+#: .\cookbook\templates\url_import.html:97
+msgid "Select recipe files to import or drop them here..."
+msgstr ""
-#: .\cookbook\templates\url_import.html:57
+#: .\cookbook\templates\url_import.html:118
+msgid "Paste json or html source here to load recipe."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:146
+#, fuzzy
+#| msgid "View Recipe"
+msgid "Preview Recipe Data"
+msgstr "Bekijk recept"
+
+#: .\cookbook\templates\url_import.html:147
+msgid "Drag recipe attributes from the right into the appropriate box below."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:156
+#: .\cookbook\templates\url_import.html:173
+#: .\cookbook\templates\url_import.html:190
+#: .\cookbook\templates\url_import.html:209
+#: .\cookbook\templates\url_import.html:227
+#: .\cookbook\templates\url_import.html:242
+#: .\cookbook\templates\url_import.html:257
+#: .\cookbook\templates\url_import.html:273
+#: .\cookbook\templates\url_import.html:300
+#: .\cookbook\templates\url_import.html:351
+msgid "Clear Contents"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:158
+msgid "Text dragged here will be appended to the name."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:175
+msgid "Text dragged here will be appended to the description."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:192
+msgid "Keywords dragged here will be appended to current list"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:207
+msgid "Image"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:239
+#, fuzzy
+#| msgid "Preparation Time"
+msgid "Prep Time"
+msgstr "Bereidingstijd"
+
+#: .\cookbook\templates\url_import.html:254
+#, fuzzy
+#| msgid "Time"
+msgid "Cook Time"
+msgstr "Tijd"
+
+#: .\cookbook\templates\url_import.html:275
+msgid "Ingredients dragged here will be appended to current list."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:302
+msgid ""
+"Recipe instructions dragged here will be appended to current instructions."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:325
+#, fuzzy
+#| msgid "Discovered Recipes"
+msgid "Discovered Attributes"
+msgstr "Ontdekte recepten"
+
+#: .\cookbook\templates\url_import.html:327
+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:344
+#, fuzzy
+#| msgid "Show as header"
+msgid "Show Blank Field"
+msgstr "Laat als kop zien"
+
+#: .\cookbook\templates\url_import.html:349
+msgid "Blank Field"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:353
+msgid "Items dragged to Blank Field will be appended."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:400
+#, fuzzy
+#| msgid "Delete Step"
+msgid "Delete Text"
+msgstr "Verwijder stap"
+
+#: .\cookbook\templates\url_import.html:413
+#, fuzzy
+#| msgid "Delete Recipe"
+msgid "Delete image"
+msgstr "Verwijder recept"
+
+#: .\cookbook\templates\url_import.html:429
msgid "Recipe Name"
msgstr "Naam Recept"
-#: .\cookbook\templates\url_import.html:62
+#: .\cookbook\templates\url_import.html:433
msgid "Recipe Description"
msgstr "Beschrijving recept"
-#: .\cookbook\templates\url_import.html:123
-#: .\cookbook\templates\url_import.html:155
-#: .\cookbook\templates\url_import.html:211
+#: .\cookbook\templates\url_import.html:494
+#: .\cookbook\templates\url_import.html:526
+#: .\cookbook\templates\url_import.html:582
msgid "Select one"
msgstr "Selecteer één"
-#: .\cookbook\templates\url_import.html:225
+#: .\cookbook\templates\url_import.html:596
msgid "All Keywords"
msgstr "Alle etiketten"
-#: .\cookbook\templates\url_import.html:228
+#: .\cookbook\templates\url_import.html:599
msgid "Import all keywords, not only the ones already existing."
msgstr "Importeer alle etiketten, niet alleen de bestaande."
-#: .\cookbook\templates\url_import.html:255
+#: .\cookbook\templates\url_import.html:626
msgid "Information"
msgstr "Informatie"
-#: .\cookbook\templates\url_import.html:257
+#: .\cookbook\templates\url_import.html:628
msgid ""
" Only websites containing ld+json or microdata information can currently\n"
" be imported. Most big recipe pages "
@@ -1804,49 +2254,79 @@ msgstr ""
"vrij om een voorbeeld te posten in \n"
" de GitHub issues."
-#: .\cookbook\templates\url_import.html:265
+#: .\cookbook\templates\url_import.html:636
msgid "Google ld+json Info"
msgstr "Google Id+json Info"
-#: .\cookbook\templates\url_import.html:268
+#: .\cookbook\templates\url_import.html:639
msgid "GitHub Issues"
msgstr "GitHub issues"
-#: .\cookbook\templates\url_import.html:270
+#: .\cookbook\templates\url_import.html:641
msgid "Recipe Markup Specification"
msgstr "Recept opmaak specificatie"
-#: .\cookbook\views\api.py:71
+#: .\cookbook\views\api.py:77
msgid "Parameter updated_at incorrectly formatted"
msgstr "Parameter updatet_at is onjuist geformateerd"
-#: .\cookbook\views\api.py:455 .\cookbook\views\views.py:226
+#: .\cookbook\views\api.py:553 .\cookbook\views\views.py:295
msgid "This feature is not available in the demo version!"
msgstr "Deze optie is niet beschikbaar in de demo versie!"
-#: .\cookbook\views\api.py:478
+#: .\cookbook\views\api.py:576
msgid "Sync successful!"
msgstr "Synchronisatie succesvol!"
-#: .\cookbook\views\api.py:483
+#: .\cookbook\views\api.py:581
msgid "Error synchronizing with Storage"
msgstr "Er is een fout opgetreden bij het synchroniseren met Opslag"
-#: .\cookbook\views\api.py:556 .\cookbook\views\api.py:576
+#: .\cookbook\views\api.py:649
+msgid "Nothing to do."
+msgstr ""
+
+#: .\cookbook\views\api.py:664
+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:671
msgid "The requested page could not be found."
msgstr "De opgevraagde pagina kon niet gevonden worden."
-#: .\cookbook\views\api.py:585
+#: .\cookbook\views\api.py:680
msgid ""
-"The requested page refused to provide any information (Status Code 403)."
+"The requested site does not provide any recognized data format to import the "
+"recipe from."
msgstr ""
-"De opgevraagde pagina weigert informatie te verstrekken (Statuscode 403)."
+"De opgevraagde site biedt geen bekend gegevensformaat aan om het recept van "
+"te importeren."
-#: .\cookbook\views\api.py:611
-msgid "Could not parse correctly..."
-msgstr "Kon niet goed verwerken.."
+#: .\cookbook\views\api.py:694
+#, fuzzy
+#| msgid "The requested page could not be found."
+msgid "No useable data could be found."
+msgstr "De opgevraagde pagina kon niet gevonden worden."
-#: .\cookbook\views\data.py:94
+#: .\cookbook\views\api.py:710
+msgid "I couldn't find anything to do."
+msgstr ""
+
+#: .\cookbook\views\data.py:30 .\cookbook\views\data.py:121
+#: .\cookbook\views\edit.py:50 .\cookbook\views\import_export.py:67
+#: .\cookbook\views\new.py:32
+msgid "You have reached the maximum number of recipes for your space."
+msgstr ""
+
+#: .\cookbook\views\data.py:34 .\cookbook\views\data.py:125
+#: .\cookbook\views\edit.py:54 .\cookbook\views\import_export.py:71
+#: .\cookbook\views\new.py:36
+msgid "You have more users than allowed in your space."
+msgstr ""
+
+#: .\cookbook\views\data.py:103
#, python-format
msgid "Batch edit done. %(count)d recipe was updated."
msgid_plural "Batch edit done. %(count)d Recipes where updated."
@@ -1858,7 +2338,7 @@ msgid "Monitor"
msgstr "Bewaker"
#: .\cookbook\views\delete.py:96 .\cookbook\views\lists.py:102
-#: .\cookbook\views\new.py:86
+#: .\cookbook\views\new.py:98
msgid "Storage Backend"
msgstr "Opslag backend"
@@ -1869,8 +2349,8 @@ msgstr ""
"Dit Opslag backend kon niet verwijderd worden omdat het gebruikt wordt in "
"tenminste een Bewaker."
-#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:204
-#: .\cookbook\views\new.py:144
+#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:213
+#: .\cookbook\views\new.py:156
msgid "Recipe Book"
msgstr "Kookboek"
@@ -1878,55 +2358,55 @@ msgstr "Kookboek"
msgid "Bookmarks"
msgstr "Bladwijzers"
-#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:214
+#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:252
msgid "Invite Link"
msgstr "Uitnodigingslink"
-#: .\cookbook\views\edit.py:110
+#: .\cookbook\views\edit.py:119
msgid "Food"
msgstr "Ingrediënt"
-#: .\cookbook\views\edit.py:119
+#: .\cookbook\views\edit.py:128
msgid "You cannot edit this storage!"
msgstr "Je kan deze opslag niet bewerken!"
-#: .\cookbook\views\edit.py:139
+#: .\cookbook\views\edit.py:148
msgid "Storage saved!"
msgstr "Opslag opgeslagen!"
-#: .\cookbook\views\edit.py:145
+#: .\cookbook\views\edit.py:154
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:156
+#: .\cookbook\views\edit.py:165
msgid "Storage"
msgstr "Opslag"
-#: .\cookbook\views\edit.py:252
+#: .\cookbook\views\edit.py:261
msgid "Changes saved!"
msgstr "Wijzigingen opgeslagen!"
-#: .\cookbook\views\edit.py:256
+#: .\cookbook\views\edit.py:265
msgid "Error saving changes!"
msgstr "Fout bij het opslaan van de wijzigingen!"
-#: .\cookbook\views\edit.py:289
+#: .\cookbook\views\edit.py:299
msgid "Units merged!"
msgstr "Eenheden samengevoegd!"
-#: .\cookbook\views\edit.py:291 .\cookbook\views\edit.py:307
+#: .\cookbook\views\edit.py:301 .\cookbook\views\edit.py:317
msgid "Cannot merge with the same object!"
msgstr "Kan niet met hetzelfde object samenvoegen!"
-#: .\cookbook\views\edit.py:305
+#: .\cookbook\views\edit.py:315
msgid "Foods merged!"
msgstr "Ingrediënten samengevoegd!"
-#: .\cookbook\views\import_export.py:73
+#: .\cookbook\views\import_export.py:93
msgid "Importing is not implemented for this provider"
msgstr "Importeren is voor deze provider niet geïmplementeerd"
-#: .\cookbook\views\import_export.py:92
+#: .\cookbook\views\import_export.py:115
msgid "Exporting is not implemented for this provider"
msgstr "Exporteren is voor deze provider niet geïmplementeerd"
@@ -1942,23 +2422,77 @@ msgstr "Ontdekken"
msgid "Shopping Lists"
msgstr "Boodschappenlijst"
-#: .\cookbook\views\new.py:111
+#: .\cookbook\views\new.py:123
msgid "Imported new recipe!"
msgstr "Nieuw recept geïmporteerd!"
-#: .\cookbook\views\new.py:114
+#: .\cookbook\views\new.py:126
msgid "There was an error importing this recipe!"
msgstr "Er is een fout opgetreden bij het importeren van dit recept!"
-#: .\cookbook\views\views.py:123
+#: .\cookbook\views\new.py:226
+msgid "Hello"
+msgstr ""
+
+#: .\cookbook\views\new.py:226
+msgid "You have been invited by "
+msgstr ""
+
+#: .\cookbook\views\new.py:227
+msgid " to join their Tandoor Recipes space "
+msgstr ""
+
+#: .\cookbook\views\new.py:228
+msgid "Click the following link to activate your account: "
+msgstr ""
+
+#: .\cookbook\views\new.py:229
+msgid ""
+"If the link does not work use the following code to manually join the space: "
+msgstr ""
+
+#: .\cookbook\views\new.py:230
+msgid "The invitation is valid until "
+msgstr ""
+
+#: .\cookbook\views\new.py:231
+msgid ""
+"Tandoor Recipes is an Open Source recipe manager. Check it out on GitHub "
+msgstr ""
+
+#: .\cookbook\views\new.py:234
+msgid "Tandoor Recipes Invite"
+msgstr ""
+
+#: .\cookbook\views\new.py:241
+msgid "Invite link successfully send to user."
+msgstr ""
+
+#: .\cookbook\views\new.py:244
+msgid ""
+"You have send to many emails, please share the link manually or wait a few "
+"hours."
+msgstr ""
+
+#: .\cookbook\views\new.py:246
+msgid "Email to user could not be send, please share link manually."
+msgstr ""
+
+#: .\cookbook\views\views.py:125
+msgid ""
+"You have successfully created your own recipe space. Start by adding some "
+"recipes or invite other people to join you."
+msgstr ""
+
+#: .\cookbook\views\views.py:173
msgid "You do not have the required permissions to perform this action!"
msgstr "Je beschikt niet over de juiste rechten om deze actie uit te voeren!"
-#: .\cookbook\views\views.py:134
+#: .\cookbook\views\views.py:184
msgid "Comment saved!"
msgstr "Opmerking opgeslagen!"
-#: .\cookbook\views\views.py:326
+#: .\cookbook\views\views.py:396
msgid ""
"The setup page can only be used to create the first user! If you have "
"forgotten your superuser credentials please consult the django documentation "
@@ -1969,22 +2503,67 @@ msgstr ""
"documentatie raad moeten plegen voor een methode om je wachtwoord te "
"resetten."
-#: .\cookbook\views\views.py:333 .\cookbook\views\views.py:378
+#: .\cookbook\views\views.py:403
msgid "Passwords dont match!"
msgstr "Wachtwoorden komen niet overeen!"
-#: .\cookbook\views\views.py:349 .\cookbook\views\views.py:385
+#: .\cookbook\views\views.py:419
msgid "User has been created, please login!"
msgstr "Gebruiker is gecreëerd, Log in alstublieft!"
-#: .\cookbook\views\views.py:365
+#: .\cookbook\views\views.py:435
msgid "Malformed Invite Link supplied!"
msgstr "Onjuiste uitnodigingslink opgegeven!"
-#: .\cookbook\views\views.py:405
+#: .\cookbook\views\views.py:441
+#, fuzzy
+#| msgid "You are not logged in and therefore cannot view this page!"
+msgid "You are already member of a space and therefore cannot join this one."
+msgstr "Je bent niet ingelogd en kan deze pagina daarom niet bekijken!"
+
+#: .\cookbook\views\views.py:452
+msgid "Successfully joined space."
+msgstr ""
+
+#: .\cookbook\views\views.py:458
msgid "Invite Link not valid or already used!"
msgstr "De uitnodigingslink is niet valide of al gebruikt!"
+#~ msgid ""
+#~ "A username is not required, if left blank the new user can choose one."
+#~ msgstr ""
+#~ "Een gebruikersnaam is niet verplicht. Als het veld leeg is kan de "
+#~ "gebruiker er een kiezen."
+
+#~ msgid "Imported from"
+#~ msgstr "Geïmporteerd van"
+
+#~ msgid "Link"
+#~ msgstr "Link"
+
+#~ msgid "Logout"
+#~ msgstr "Uitloggen"
+
+#~ msgid "Website Import"
+#~ msgstr "Importeer website"
+
+#~ msgid "You are not a member of any space."
+#~ msgstr "Je bent geen lid van een ruimte."
+
+#~ msgid "There was an error creating a resource!"
+#~ msgstr "Er is een fout opgetreden bij het maken van een hulpbron!"
+
+#~ msgid "Enter json directly"
+#~ msgstr "Geef json direct op"
+
+#~ msgid ""
+#~ "The requested page refused to provide any information (Status Code 403)."
+#~ msgstr ""
+#~ "De opgevraagde pagina weigert informatie te verstrekken (Statuscode 403)."
+
+#~ msgid "Could not parse correctly..."
+#~ msgstr "Kon niet goed verwerken.."
+
#~ msgid "Number of servings"
#~ msgstr "Porties"
@@ -2006,6 +2585,3 @@ msgstr "De uitnodigingslink is niet valide of al gebruikt!"
#~ msgid "This recipe is already linked to the book!"
#~ msgstr "Dit recept is al aan het boek gekoppeld!"
-
-#~ msgid "Bookmark saved!"
-#~ msgstr "Bladwijzer opgeslagen!"
diff --git a/cookbook/locale/pt/LC_MESSAGES/django.po b/cookbook/locale/pt/LC_MESSAGES/django.po
index d796cbf7..7c50f46e 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-04-11 15:09+0200\n"
+"POT-Creation-Date: 2021-06-12 20:30+0200\n"
"PO-Revision-Date: 2020-06-02 19:28+0000\n"
"Last-Translator: João Cunha /remote."
"php/webdav/
is added automatically)"
@@ -176,26 +180,26 @@ msgstr ""
"Deixar vazio para Dropbox e inserir apenas url base para Nextcloud (/"
"remote.php/webdav/
é adicionado automaticamente). "
-#: .\cookbook\forms.py:291
+#: .\cookbook\forms.py:307
msgid "Search String"
msgstr "Procurar"
-#: .\cookbook\forms.py:318
+#: .\cookbook\forms.py:334
msgid "File ID"
msgstr "ID the ficheiro"
-#: .\cookbook\forms.py:354
+#: .\cookbook\forms.py:370
msgid "You must provide at least a recipe or a title."
msgstr "É necessário inserir uma receita ou um título."
-#: .\cookbook\forms.py:367
+#: .\cookbook\forms.py:383
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:368
-#: .\cookbook\templates\forms\edit_internal_recipe.html:377
+#: .\cookbook\forms.py:384
+#: .\cookbook\templates\forms\edit_internal_recipe.html:404
msgid ""
"You can use markdown to format this field. See the docs here"
@@ -203,48 +207,57 @@ msgstr ""
"É possível utilizar markdown para editar este campo. Documentação disponível aqui"
-#: .\cookbook\forms.py:393
-msgid "A username is not required, if left blank the new user can choose one."
+#: .\cookbook\forms.py:409
+msgid "Maximum number of users for this space reached."
msgstr ""
-"Um nome de utilizador não é obrigatório. Se deixado em branco o novo "
-"utilizador pode escolher o seu nome."
-#: .\cookbook\helper\permission_helper.py:123
-#: .\cookbook\helper\permission_helper.py:129
-#: .\cookbook\helper\permission_helper.py:151
-#: .\cookbook\helper\permission_helper.py:196
-#: .\cookbook\helper\permission_helper.py:210
-#: .\cookbook\helper\permission_helper.py:221
-#: .\cookbook\helper\permission_helper.py:232 .\cookbook\views\data.py:30
-#: .\cookbook\views\views.py:112 .\cookbook\views\views.py:116
-#: .\cookbook\views\views.py:184
-msgid "You do not have the required permissions to view this page!"
-msgstr "Sem permissões para aceder a esta página!"
+#: .\cookbook\forms.py:415
+msgid "Email address already taken!"
+msgstr ""
-#: .\cookbook\helper\permission_helper.py:141
+#: .\cookbook\forms.py:423
+msgid ""
+"An email address is not required but if present the invite link will be send "
+"to the user."
+msgstr ""
+
+#: .\cookbook\forms.py:438
+msgid "Name already taken."
+msgstr ""
+
+#: .\cookbook\forms.py:449
+msgid "Accept Terms and Privacy"
+msgstr ""
+
+#: .\cookbook\helper\AllAuthCustomAdapter.py:30
+msgid ""
+"In order to prevent spam, the requested email was not send. Please wait a "
+"few minutes and try again."
+msgstr ""
+
+#: .\cookbook\helper\permission_helper.py:124
+#: .\cookbook\helper\permission_helper.py:144 .\cookbook\views\views.py:147
msgid "You are not logged in and therefore cannot view this page!"
msgstr "Autenticação necessária para aceder a esta página!"
-#: .\cookbook\helper\permission_helper.py:145
-#: .\cookbook\helper\permission_helper.py:167
-#: .\cookbook\helper\permission_helper.py:182
+#: .\cookbook\helper\permission_helper.py:127
+#: .\cookbook\helper\permission_helper.py:132
+#: .\cookbook\helper\permission_helper.py:154
+#: .\cookbook\helper\permission_helper.py:199
+#: .\cookbook\helper\permission_helper.py:213
+#: .\cookbook\helper\permission_helper.py:224
+#: .\cookbook\helper\permission_helper.py:235 .\cookbook\views\data.py:39
+#: .\cookbook\views\views.py:158 .\cookbook\views\views.py:165
+#: .\cookbook\views\views.py:253
+msgid "You do not have the required permissions to view this page!"
+msgstr "Sem permissões para aceder a esta página!"
+
+#: .\cookbook\helper\permission_helper.py:148
+#: .\cookbook\helper\permission_helper.py:170
+#: .\cookbook\helper\permission_helper.py:185
msgid "You cannot interact with this object as it is not owned by you!"
msgstr ""
-#: .\cookbook\helper\recipe_url_import.py:40 .\cookbook\views\api.py:549
-msgid "The requested site provided malformed data and cannot be read."
-msgstr ""
-
-#: .\cookbook\helper\recipe_url_import.py:54
-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\helper\recipe_url_import.py:160
-msgid "Imported from"
-msgstr ""
-
#: .\cookbook\helper\template_helper.py:60
#: .\cookbook\helper\template_helper.py:62
msgid "Could not parse template code."
@@ -254,45 +267,56 @@ msgstr ""
#: .\cookbook\templates\import.html:14 .\cookbook\templates\import.html:20
#: .\cookbook\templates\import_response.html:7
#: .\cookbook\templates\test.html:14 .\cookbook\templates\test.html:20
-#: .\cookbook\templates\url_import.html:233 .\cookbook\views\delete.py:60
-#: .\cookbook\views\edit.py:190
+#: .\cookbook\templates\url_import.html:27
+#: .\cookbook\templates\url_import.html:101
+#: .\cookbook\templates\url_import.html:123
+#: .\cookbook\templates\url_import.html:317
+#: .\cookbook\templates\url_import.html:604 .\cookbook\views\delete.py:60
+#: .\cookbook\views\edit.py:199
msgid "Import"
msgstr "Importar"
-#: .\cookbook\integration\integration.py:131
+#: .\cookbook\integration\integration.py:162
msgid ""
"Importer expected a .zip file. Did you choose the correct importer type for "
"your data ?"
msgstr ""
-#: .\cookbook\integration\integration.py:134
+#: .\cookbook\integration\integration.py:165
+msgid ""
+"An unexpected error occurred during the import. Please make sure you have "
+"uploaded a valid file."
+msgstr ""
+
+#: .\cookbook\integration\integration.py:169
msgid "The following recipes were ignored because they already existed:"
msgstr ""
-#: .\cookbook\integration\integration.py:137
+#: .\cookbook\integration\integration.py:173
#, fuzzy, python-format
#| msgid "Import Recipes"
msgid "Imported %s recipes."
msgstr "Importar Receitas"
-#: .\cookbook\integration\paprika.py:44
+#: .\cookbook\integration\paprika.py:46
#, fuzzy
#| msgid "Note"
msgid "Notes"
msgstr "Nota"
-#: .\cookbook\integration\paprika.py:47
+#: .\cookbook\integration\paprika.py:49
msgid "Nutritional Information"
msgstr ""
-#: .\cookbook\integration\paprika.py:50
+#: .\cookbook\integration\paprika.py:53
msgid "Source"
msgstr ""
#: .\cookbook\integration\safron.py:23
-#: .\cookbook\templates\forms\edit_internal_recipe.html:75
+#: .\cookbook\templates\forms\edit_internal_recipe.html:79
#: .\cookbook\templates\include\log_cooking.html:16
-#: .\cookbook\templates\url_import.html:84
+#: .\cookbook\templates\url_import.html:224
+#: .\cookbook\templates\url_import.html:455
msgid "Servings"
msgstr "Porções"
@@ -301,11 +325,11 @@ msgid "Waiting time"
msgstr ""
#: .\cookbook\integration\safron.py:27
-#: .\cookbook\templates\forms\edit_internal_recipe.html:69
+#: .\cookbook\templates\forms\edit_internal_recipe.html:73
msgid "Preparation Time"
msgstr ""
-#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:71
+#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:78
#: .\cookbook\templates\forms\ingredients.html:7
#: .\cookbook\templates\index.html:7
msgid "Cookbook"
@@ -331,44 +355,74 @@ msgstr "Jantar"
msgid "Other"
msgstr "Outro"
-#: .\cookbook\models.py:110 .\cookbook\templates\shopping_list.html:48
+#: .\cookbook\models.py:71
+msgid ""
+"Maximum file storage for space in MB. 0 for unlimited, -1 to disable file "
+"upload."
+msgstr ""
+
+#: .\cookbook\models.py:121 .\cookbook\templates\search.html:7
+#: .\cookbook\templates\shopping_list.html:52
msgid "Search"
msgstr "Procurar"
-#: .\cookbook\models.py:111 .\cookbook\templates\base.html:85
+#: .\cookbook\models.py:122 .\cookbook\templates\base.html:92
#: .\cookbook\templates\meal_plan.html:5 .\cookbook\views\delete.py:152
-#: .\cookbook\views\edit.py:224 .\cookbook\views\new.py:188
+#: .\cookbook\views\edit.py:233 .\cookbook\views\new.py:201
msgid "Meal-Plan"
msgstr "Plano de refeição"
-#: .\cookbook\models.py:112 .\cookbook\templates\base.html:82
+#: .\cookbook\models.py:123 .\cookbook\templates\base.html:89
msgid "Books"
msgstr "Livros"
-#: .\cookbook\models.py:119
+#: .\cookbook\models.py:131
msgid "Small"
msgstr "Pequeno"
-#: .\cookbook\models.py:119
+#: .\cookbook\models.py:131
msgid "Large"
msgstr "Grande"
-#: .\cookbook\models.py:327
-#: .\cookbook\templates\forms\edit_internal_recipe.html:198
+#: .\cookbook\models.py:131 .\cookbook\templates\generic\new_template.html:6
+#: .\cookbook\templates\generic\new_template.html:14
+#: .\cookbook\templates\meal_plan.html:323
+msgid "New"
+msgstr "Novo"
+
+#: .\cookbook\models.py:340
+#: .\cookbook\templates\forms\edit_internal_recipe.html:202
msgid "Text"
msgstr "Texto"
-#: .\cookbook\models.py:327
-#: .\cookbook\templates\forms\edit_internal_recipe.html:199
+#: .\cookbook\models.py:340
+#: .\cookbook\templates\forms\edit_internal_recipe.html:203
msgid "Time"
msgstr "Tempo"
+#: .\cookbook\models.py:340
+#: .\cookbook\templates\forms\edit_internal_recipe.html:204
+#: .\cookbook\templates\forms\edit_internal_recipe.html:218
+#, fuzzy
+#| msgid "File ID"
+msgid "File"
+msgstr "ID the ficheiro"
+
+#: .\cookbook\serializer.py:109
+msgid "File uploads are not enabled for this Space."
+msgstr ""
+
+#: .\cookbook\serializer.py:117
+msgid "You have reached your file upload limit."
+msgstr ""
+
#: .\cookbook\tables.py:35 .\cookbook\templates\books.html:36
#: .\cookbook\templates\generic\edit_template.html:6
#: .\cookbook\templates\generic\edit_template.html:14
#: .\cookbook\templates\meal_plan.html:281
#: .\cookbook\templates\recipes_table.html:82
#: .\cookbook\templates\shopping_list.html:33
+#: .\cookbook\templates\space.html:84
msgid "Edit"
msgstr "Editar"
@@ -382,10 +436,6 @@ msgstr "Editar"
msgid "Delete"
msgstr "Apagar"
-#: .\cookbook\tables.py:144
-msgid "Link"
-msgstr "Ligação"
-
#: .\cookbook\templates\404.html:5
msgid "404 Error"
msgstr "Erro 404"
@@ -402,21 +452,122 @@ msgstr "Início"
msgid "Report a Bug"
msgstr "Reportar defeito"
-#: .\cookbook\templates\account\login.html:7
-#: .\cookbook\templates\base.html:170
+#: .\cookbook\templates\account\email.html:6
+#: .\cookbook\templates\account\email.html:9
+msgid "E-mail Addresses"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:11
+msgid "The following e-mail addresses are associated with your account:"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:28
+msgid "Verified"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:30
+msgid "Unverified"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:32
+msgid "Primary"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:39
+#, fuzzy
+#| msgid "Make Header"
+msgid "Make Primary"
+msgstr "Adicionar Cabeçalho"
+
+#: .\cookbook\templates\account\email.html:41
+msgid "Re-send Verification"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:42
+#: .\cookbook\templates\socialaccount\connections.html:36
+msgid "Remove"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:50
+msgid "Warning:"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:50
+msgid ""
+"You currently do not have any e-mail address set up. You should really add "
+"an e-mail address so you can receive notifications, reset your password, etc."
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:56
+msgid "Add E-mail Address"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:61
+msgid "Add E-mail"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:71
+msgid "Do you really want to remove the selected e-mail address?"
+msgstr ""
+
+#: .\cookbook\templates\account\email_confirm.html:6
+#: .\cookbook\templates\account\email_confirm.html:10
+msgid "Confirm E-mail Address"
+msgstr ""
+
+#: .\cookbook\templates\account\email_confirm.html:16
+#, python-format
+msgid ""
+"Please confirm that\n"
+" %(email)s is an e-mail address "
+"for user %(user_display)s\n"
+" ."
+msgstr ""
+
+#: .\cookbook\templates\account\email_confirm.html:22
+#: .\cookbook\templates\generic\delete_template.html:21
+msgid "Confirm"
+msgstr "Confirme"
+
+#: .\cookbook\templates\account\email_confirm.html:29
+#, python-format
+msgid ""
+"This e-mail confirmation link expired or is invalid. Please\n"
+" issue a new e-mail confirmation "
+"request."
+msgstr ""
+
+#: .\cookbook\templates\account\login.html:8
+#: .\cookbook\templates\base.html:180
msgid "Login"
msgstr "Iniciar sessão"
-#: .\cookbook\templates\account\login.html:13
-#: .\cookbook\templates\account\login.html:28
+#: .\cookbook\templates\account\login.html:15
+#: .\cookbook\templates\account\login.html:31
+#: .\cookbook\templates\account\signup.html:69
+#: .\cookbook\templates\account\signup_closed.html:15
msgid "Sign In"
msgstr ""
-#: .\cookbook\templates\account\login.html:38
+#: .\cookbook\templates\account\login.html:32
+msgid "Sign Up"
+msgstr ""
+
+#: .\cookbook\templates\account\login.html:36
+#: .\cookbook\templates\account\login.html:37
+#: .\cookbook\templates\account\password_reset.html:29
+msgid "Reset My Password"
+msgstr ""
+
+#: .\cookbook\templates\account\login.html:37
+msgid "Lost your password?"
+msgstr ""
+
+#: .\cookbook\templates\account\login.html:48
msgid "Social Login"
msgstr ""
-#: .\cookbook\templates\account\login.html:39
+#: .\cookbook\templates\account\login.html:49
msgid "You can use any of the following providers to sign in."
msgstr ""
@@ -430,116 +581,164 @@ msgstr ""
msgid "Are you sure you want to sign out?"
msgstr ""
-#: .\cookbook\templates\account\password_reset.html:5
-#: .\cookbook\templates\account\password_reset_done.html:5
+#: .\cookbook\templates\account\password_reset.html:7
+#: .\cookbook\templates\account\password_reset.html:13
+#: .\cookbook\templates\account\password_reset_done.html:7
+#: .\cookbook\templates\account\password_reset_done.html:10
msgid "Password Reset"
msgstr ""
-#: .\cookbook\templates\account\password_reset.html:9
-#: .\cookbook\templates\account\password_reset_done.html:9
-msgid "Password reset is not implemented for the time being!"
+#: .\cookbook\templates\account\password_reset.html:24
+msgid ""
+"Forgotten your password? Enter your e-mail address below, and we'll send you "
+"an e-mail allowing you to reset it."
msgstr ""
-#: .\cookbook\templates\account\signup.html:5
+#: .\cookbook\templates\account\password_reset.html:32
+msgid "Password reset is disabled on this instance."
+msgstr ""
+
+#: .\cookbook\templates\account\password_reset_done.html:16
+msgid ""
+"We have sent you an e-mail. Please contact us if you do not receive it "
+"within a few minutes."
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:6
msgid "Register"
msgstr ""
-#: .\cookbook\templates\account\signup.html:9
-msgid "Create your Account"
+#: .\cookbook\templates\account\signup.html:12
+msgid "Create an Account"
msgstr ""
-#: .\cookbook\templates\account\signup.html:14
+#: .\cookbook\templates\account\signup.html:42
+msgid "I accept the follwoing"
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:45
+msgid "Terms and Conditions"
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:48
+msgid "and"
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:52
+msgid "Privacy Policy"
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:65
msgid "Create User"
msgstr ""
-#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:160
+#: .\cookbook\templates\account\signup.html:69
+msgid "Already have an account?"
+msgstr ""
+
+#: .\cookbook\templates\account\signup_closed.html:5
+#: .\cookbook\templates\account\signup_closed.html:11
+msgid "Sign Up Closed"
+msgstr ""
+
+#: .\cookbook\templates\account\signup_closed.html:13
+msgid "We are sorry, but the sign up is currently closed."
+msgstr ""
+
+#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:170
#: .\cookbook\templates\rest_framework\api.html:11
msgid "API Documentation"
msgstr "Documentação API"
-#: .\cookbook\templates\base.html:78
+#: .\cookbook\templates\base.html:85
msgid "Utensils"
msgstr "Utensílios"
-#: .\cookbook\templates\base.html:88
+#: .\cookbook\templates\base.html:95
msgid "Shopping"
msgstr "Compras"
-#: .\cookbook\templates\base.html:102 .\cookbook\views\delete.py:84
-#: .\cookbook\views\edit.py:93 .\cookbook\views\lists.py:26
-#: .\cookbook\views\new.py:66
+#: .\cookbook\templates\base.html:109 .\cookbook\views\delete.py:84
+#: .\cookbook\views\edit.py:102 .\cookbook\views\lists.py:26
+#: .\cookbook\views\new.py:78
msgid "Keyword"
msgstr "Palavra-chave"
-#: .\cookbook\templates\base.html:104
+#: .\cookbook\templates\base.html:111
msgid "Batch Edit"
msgstr "Editor em massa"
-#: .\cookbook\templates\base.html:109
+#: .\cookbook\templates\base.html:116
msgid "Storage Data"
msgstr "Dados de armazenamento"
-#: .\cookbook\templates\base.html:113
+#: .\cookbook\templates\base.html:120
msgid "Storage Backends"
msgstr ""
-#: .\cookbook\templates\base.html:115
+#: .\cookbook\templates\base.html:122
msgid "Configure Sync"
msgstr "Configurar sincronização"
-#: .\cookbook\templates\base.html:117
+#: .\cookbook\templates\base.html:124
msgid "Discovered Recipes"
msgstr "Descobrir Receitas"
-#: .\cookbook\templates\base.html:119
+#: .\cookbook\templates\base.html:126
msgid "Discovery Log"
msgstr ""
-#: .\cookbook\templates\base.html:121 .\cookbook\templates\stats.html:10
+#: .\cookbook\templates\base.html:128 .\cookbook\templates\stats.html:10
msgid "Statistics"
msgstr "Estatísticas"
-#: .\cookbook\templates\base.html:123
+#: .\cookbook\templates\base.html:130
msgid "Units & Ingredients"
msgstr "Unidades e Ingredientes"
-#: .\cookbook\templates\base.html:125
+#: .\cookbook\templates\base.html:132 .\cookbook\templates\index.html:47
msgid "Import Recipe"
msgstr "Importar Receita"
-#: .\cookbook\templates\base.html:144 .\cookbook\templates\settings.html:6
+#: .\cookbook\templates\base.html:151 .\cookbook\templates\settings.html:6
#: .\cookbook\templates\settings.html:16
msgid "Settings"
msgstr "Definições"
-#: .\cookbook\templates\base.html:146 .\cookbook\templates\history.html:6
+#: .\cookbook\templates\base.html:153 .\cookbook\templates\history.html:6
#: .\cookbook\templates\history.html:14
msgid "History"
msgstr "Histórico"
-#: .\cookbook\templates\base.html:150 .\cookbook\templates\system.html:13
+#: .\cookbook\templates\base.html:155 .\cookbook\templates\space.html:7
+#, fuzzy
+#| msgid "Settings"
+msgid "Space Settings"
+msgstr "Definições"
+
+#: .\cookbook\templates\base.html:160 .\cookbook\templates\system.html:13
msgid "System"
msgstr "Sistema"
-#: .\cookbook\templates\base.html:152
+#: .\cookbook\templates\base.html:162
msgid "Admin"
msgstr "Administração"
-#: .\cookbook\templates\base.html:156
+#: .\cookbook\templates\base.html:166
msgid "Markdown Guide"
msgstr ""
-#: .\cookbook\templates\base.html:158
+#: .\cookbook\templates\base.html:168
msgid "GitHub"
msgstr "GitHub"
-#: .\cookbook\templates\base.html:162
+#: .\cookbook\templates\base.html:172
msgid "API Browser"
msgstr "Navegador de API"
-#: .\cookbook\templates\base.html:165
-msgid "Logout"
-msgstr "Sair"
+#: .\cookbook\templates\base.html:175
+msgid "Log out"
+msgstr ""
#: .\cookbook\templates\batch\edit.html:6
msgid "Batch edit Category"
@@ -553,7 +752,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:76
+#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:85
msgid "Sync"
msgstr "Sincronizar"
@@ -580,7 +779,7 @@ msgstr "Sincronizar"
msgid "Importing Recipes"
msgstr "A importar Receitas"
-#: .\cookbook\templates\batch\waiting.html:23
+#: .\cookbook\templates\batch\waiting.html:28
msgid ""
"This can take a few minutes, depending on the number of recipes in sync, "
"please wait."
@@ -619,26 +818,33 @@ msgid "Export Recipes"
msgstr "Exportar Receitas"
#: .\cookbook\templates\export.html:14 .\cookbook\templates\export.html:20
-#: .\cookbook\templates\shopping_list.html:347
+#: .\cookbook\templates\shopping_list.html:351
#: .\cookbook\templates\test2.html:14 .\cookbook\templates\test2.html:20
msgid "Export"
msgstr "Exportar"
+#: .\cookbook\templates\files.html:7
+#, fuzzy
+#| msgid "File ID"
+msgid "Files"
+msgstr "ID the ficheiro"
+
#: .\cookbook\templates\forms\edit_import_recipe.html:5
#: .\cookbook\templates\forms\edit_import_recipe.html:9
msgid "Import new Recipe"
msgstr "Importar nova Receita"
#: .\cookbook\templates\forms\edit_import_recipe.html:14
-#: .\cookbook\templates\forms\edit_internal_recipe.html:389
-#: .\cookbook\templates\forms\edit_internal_recipe.html:421
+#: .\cookbook\templates\forms\edit_internal_recipe.html:416
+#: .\cookbook\templates\forms\edit_internal_recipe.html:448
#: .\cookbook\templates\generic\edit_template.html:23
#: .\cookbook\templates\generic\new_template.html:23
#: .\cookbook\templates\include\log_cooking.html:28
#: .\cookbook\templates\meal_plan.html:325
-#: .\cookbook\templates\settings.html:28 .\cookbook\templates\settings.html:35
-#: .\cookbook\templates\settings.html:58 .\cookbook\templates\settings.html:73
-#: .\cookbook\templates\shopping_list.html:349
+#: .\cookbook\templates\settings.html:44 .\cookbook\templates\settings.html:52
+#: .\cookbook\templates\settings.html:96
+#: .\cookbook\templates\settings.html:114
+#: .\cookbook\templates\shopping_list.html:353
msgid "Save"
msgstr "Gravar"
@@ -647,181 +853,190 @@ msgstr "Gravar"
msgid "Edit Recipe"
msgstr "Editar Receita"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:52
+#: .\cookbook\templates\forms\edit_internal_recipe.html:56
+#: .\cookbook\templates\url_import.html:171
msgid "Description"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:72
+#: .\cookbook\templates\forms\edit_internal_recipe.html:76
msgid "Waiting Time"
msgstr "Tempo de Espera"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:78
+#: .\cookbook\templates\forms\edit_internal_recipe.html:82
msgid "Servings Text"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:89
+#: .\cookbook\templates\forms\edit_internal_recipe.html:93
msgid "Select Keywords"
msgstr "Escolher Palavras-chave"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:90
-#: .\cookbook\templates\url_import.html:212
+#: .\cookbook\templates\forms\edit_internal_recipe.html:94
+#: .\cookbook\templates\url_import.html:583
#, fuzzy
#| msgid "Keyword"
msgid "Add Keyword"
msgstr "Palavra-chave"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:108
+#: .\cookbook\templates\forms\edit_internal_recipe.html:112
msgid "Nutrition"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:112
-#: .\cookbook\templates\forms\edit_internal_recipe.html:162
+#: .\cookbook\templates\forms\edit_internal_recipe.html:116
+#: .\cookbook\templates\forms\edit_internal_recipe.html:166
msgid "Delete Step"
msgstr "Apagar Passo"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:116
+#: .\cookbook\templates\forms\edit_internal_recipe.html:120
msgid "Calories"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:119
+#: .\cookbook\templates\forms\edit_internal_recipe.html:123
msgid "Carbohydrates"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:122
+#: .\cookbook\templates\forms\edit_internal_recipe.html:126
msgid "Fats"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:124
+#: .\cookbook\templates\forms\edit_internal_recipe.html:128
msgid "Proteins"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:146
-#: .\cookbook\templates\forms\edit_internal_recipe.html:454
+#: .\cookbook\templates\forms\edit_internal_recipe.html:150
+#: .\cookbook\templates\forms\edit_internal_recipe.html:481
msgid "Step"
msgstr "Passo"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:167
+#: .\cookbook\templates\forms\edit_internal_recipe.html:171
msgid "Show as header"
msgstr "Mostrar como cabeçalho"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:173
+#: .\cookbook\templates\forms\edit_internal_recipe.html:177
msgid "Hide as header"
msgstr "Esconder como cabeçalho"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:178
+#: .\cookbook\templates\forms\edit_internal_recipe.html:182
msgid "Move Up"
msgstr "Mover para cima"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:183
+#: .\cookbook\templates\forms\edit_internal_recipe.html:187
msgid "Move Down"
msgstr "Mover para baixo"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:192
+#: .\cookbook\templates\forms\edit_internal_recipe.html:196
msgid "Step Name"
msgstr "Nome do passo"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:196
+#: .\cookbook\templates\forms\edit_internal_recipe.html:200
msgid "Step Type"
msgstr "Tipo de passo"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:207
+#: .\cookbook\templates\forms\edit_internal_recipe.html:212
msgid "Step time in Minutes"
msgstr "Tempo de passo em minutos"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:261
-#: .\cookbook\templates\shopping_list.html:183
-msgid "Select Unit"
+#: .\cookbook\templates\forms\edit_internal_recipe.html:228
+#, fuzzy
+#| msgid "Select Unit"
+msgid "Select File"
msgstr "Selecionar Unidade"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:262
-#: .\cookbook\templates\forms\edit_internal_recipe.html:286
-#: .\cookbook\templates\shopping_list.html:184
-#: .\cookbook\templates\shopping_list.html:206
-msgid "Create"
-msgstr "Criar"
-
-#: .\cookbook\templates\forms\edit_internal_recipe.html:263
-#: .\cookbook\templates\forms\edit_internal_recipe.html:287
-#: .\cookbook\templates\shopping_list.html:185
-#: .\cookbook\templates\shopping_list.html:207
-#: .\cookbook\templates\shopping_list.html:237
-#: .\cookbook\templates\shopping_list.html:261
-#: .\cookbook\templates\url_import.html:124
-#: .\cookbook\templates\url_import.html:156
+#: .\cookbook\templates\forms\edit_internal_recipe.html:229
+#: .\cookbook\templates\forms\edit_internal_recipe.html:290
+#: .\cookbook\templates\forms\edit_internal_recipe.html:314
+#: .\cookbook\templates\shopping_list.html:189
+#: .\cookbook\templates\shopping_list.html:211
+#: .\cookbook\templates\shopping_list.html:241
+#: .\cookbook\templates\shopping_list.html:265
+#: .\cookbook\templates\url_import.html:495
+#: .\cookbook\templates\url_import.html:527
msgid "Select"
msgstr "Selecionar"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:285
-#: .\cookbook\templates\shopping_list.html:205
+#: .\cookbook\templates\forms\edit_internal_recipe.html:288
+#: .\cookbook\templates\shopping_list.html:187
+msgid "Select Unit"
+msgstr "Selecionar Unidade"
+
+#: .\cookbook\templates\forms\edit_internal_recipe.html:289
+#: .\cookbook\templates\forms\edit_internal_recipe.html:313
+#: .\cookbook\templates\shopping_list.html:188
+#: .\cookbook\templates\shopping_list.html:210
+msgid "Create"
+msgstr "Criar"
+
+#: .\cookbook\templates\forms\edit_internal_recipe.html:312
+#: .\cookbook\templates\shopping_list.html:209
msgid "Select Food"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:302
+#: .\cookbook\templates\forms\edit_internal_recipe.html:329
#: .\cookbook\templates\meal_plan.html:256
-#: .\cookbook\templates\url_import.html:171
+#: .\cookbook\templates\url_import.html:542
msgid "Note"
msgstr "Nota"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:319
+#: .\cookbook\templates\forms\edit_internal_recipe.html:346
msgid "Delete Ingredient"
msgstr "Apagar Ingrediente"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:325
+#: .\cookbook\templates\forms\edit_internal_recipe.html:352
msgid "Make Header"
msgstr "Adicionar Cabeçalho"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:331
+#: .\cookbook\templates\forms\edit_internal_recipe.html:358
msgid "Make Ingredient"
msgstr "Adicionar Ingrediente"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:337
+#: .\cookbook\templates\forms\edit_internal_recipe.html:364
msgid "Disable Amount"
msgstr "Desativar Quantidade"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:343
+#: .\cookbook\templates\forms\edit_internal_recipe.html:370
msgid "Enable Amount"
msgstr "Ativar Quantidade"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:348
+#: .\cookbook\templates\forms\edit_internal_recipe.html:375
msgid "Copy Template Reference"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:374
-#: .\cookbook\templates\url_import.html:196
+#: .\cookbook\templates\forms\edit_internal_recipe.html:401
+#: .\cookbook\templates\url_import.html:297
+#: .\cookbook\templates\url_import.html:567
msgid "Instructions"
msgstr "Instruções"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:387
-#: .\cookbook\templates\forms\edit_internal_recipe.html:418
+#: .\cookbook\templates\forms\edit_internal_recipe.html:414
+#: .\cookbook\templates\forms\edit_internal_recipe.html:445
msgid "Save & View"
msgstr "Gravar e Ver"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:391
-#: .\cookbook\templates\forms\edit_internal_recipe.html:424
+#: .\cookbook\templates\forms\edit_internal_recipe.html:418
+#: .\cookbook\templates\forms\edit_internal_recipe.html:451
msgid "Add Step"
msgstr "Adicionar Passo"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:394
-#: .\cookbook\templates\forms\edit_internal_recipe.html:428
+#: .\cookbook\templates\forms\edit_internal_recipe.html:421
+#: .\cookbook\templates\forms\edit_internal_recipe.html:455
msgid "Add Nutrition"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:396
-#: .\cookbook\templates\forms\edit_internal_recipe.html:430
+#: .\cookbook\templates\forms\edit_internal_recipe.html:423
+#: .\cookbook\templates\forms\edit_internal_recipe.html:457
msgid "Remove Nutrition"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:398
-#: .\cookbook\templates\forms\edit_internal_recipe.html:433
+#: .\cookbook\templates\forms\edit_internal_recipe.html:425
+#: .\cookbook\templates\forms\edit_internal_recipe.html:460
msgid "View Recipe"
msgstr "Ver Receita"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:400
-#: .\cookbook\templates\forms\edit_internal_recipe.html:435
+#: .\cookbook\templates\forms\edit_internal_recipe.html:427
+#: .\cookbook\templates\forms\edit_internal_recipe.html:462
msgid "Delete Recipe"
msgstr "Apagar Receita"
-#: .\cookbook\templates\forms\edit_internal_recipe.html:441
+#: .\cookbook\templates\forms\edit_internal_recipe.html:468
msgid "Steps"
msgstr "Passos"
@@ -846,7 +1061,7 @@ msgstr ""
"estejam a usar. "
#: .\cookbook\templates\forms\ingredients.html:24
-#: .\cookbook\templates\stats.html:26
+#: .\cookbook\templates\space.html:35 .\cookbook\templates\stats.html:26
msgid "Units"
msgstr "Unidades"
@@ -868,10 +1083,6 @@ msgstr ""
msgid "Are you sure you want to delete the %(title)s: %(object)s "
msgstr "Tem a certeza que quer apagar %(title)s: %(object)s"
-#: .\cookbook\templates\generic\delete_template.html:21
-msgid "Confirm"
-msgstr "Confirme"
-
#: .\cookbook\templates\generic\edit_template.html:30
msgid "View"
msgstr "Ver"
@@ -893,12 +1104,6 @@ msgstr "Filtrar"
msgid "Import all"
msgstr "Importar tudo"
-#: .\cookbook\templates\generic\new_template.html:6
-#: .\cookbook\templates\generic\new_template.html:14
-#: .\cookbook\templates\meal_plan.html:323
-msgid "New"
-msgstr "Novo"
-
#: .\cookbook\templates\generic\table_template.html:76
#: .\cookbook\templates\recipes_table.html:121
msgid "previous"
@@ -943,7 +1148,7 @@ msgstr "Fechar"
#: .\cookbook\templates\include\recipe_open_modal.html:7
#: .\cookbook\templates\meal_plan.html:247 .\cookbook\views\delete.py:28
-#: .\cookbook\views\edit.py:264 .\cookbook\views\new.py:40
+#: .\cookbook\views\edit.py:273 .\cookbook\views\new.py:52
msgid "Recipe"
msgstr "Receita"
@@ -984,10 +1189,6 @@ msgstr "Procure receita ..."
msgid "New Recipe"
msgstr "Nova Receita"
-#: .\cookbook\templates\index.html:47
-msgid "Website Import"
-msgstr "Importar Website"
-
#: .\cookbook\templates\index.html:53
msgid "Advanced Search"
msgstr "Procura avançada "
@@ -1001,7 +1202,7 @@ msgid "Last viewed"
msgstr "Ultimo visto"
#: .\cookbook\templates\index.html:87 .\cookbook\templates\meal_plan.html:178
-#: .\cookbook\templates\stats.html:22
+#: .\cookbook\templates\space.html:29 .\cookbook\templates\stats.html:22
msgid "Recipes"
msgstr "Receitas"
@@ -1153,7 +1354,7 @@ msgid "New Entry"
msgstr "Nova Entrada"
#: .\cookbook\templates\meal_plan.html:113
-#: .\cookbook\templates\shopping_list.html:52
+#: .\cookbook\templates\shopping_list.html:56
msgid "Search Recipe"
msgstr "Procure Receita"
@@ -1185,7 +1386,7 @@ msgstr ""
#: .\cookbook\templates\meal_plan.html:168
#: .\cookbook\templates\shopping_list.html:7
#: .\cookbook\templates\shopping_list.html:29
-#: .\cookbook\templates\shopping_list.html:705
+#: .\cookbook\templates\shopping_list.html:714
msgid "Shopping List"
msgstr ""
@@ -1235,7 +1436,7 @@ msgstr ""
#: .\cookbook\templates\meal_plan.html:270
#: .\cookbook\templates\meal_plan_entry.html:20
-#: .\cookbook\templates\shopping_list.html:250
+#: .\cookbook\templates\shopping_list.html:254
msgid "Shared with"
msgstr ""
@@ -1312,7 +1513,6 @@ msgstr "Autenticação necessária para aceder a esta página!"
#: .\cookbook\templates\no_groups_info.html:18
#: .\cookbook\templates\no_perm_info.html:15
-#: .\cookbook\templates\no_space_info.html:15
msgid "Please contact your administrator."
msgstr ""
@@ -1329,13 +1529,50 @@ msgid ""
"action."
msgstr "Sem permissões para aceder a esta página!"
-#: .\cookbook\templates\no_space_info.html:5
-#: .\cookbook\templates\no_space_info.html:12
+#: .\cookbook\templates\no_space_info.html:6
+#: .\cookbook\templates\no_space_info.html:13
msgid "No Space"
msgstr ""
-#: .\cookbook\templates\no_space_info.html:15
-msgid "You are not a member of any space."
+#: .\cookbook\templates\no_space_info.html:17
+msgid ""
+"Recipes, foods, shopping lists and more are organized in spaces of one or "
+"more people."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:18
+msgid ""
+"You can either be invited into an existing space or create your own one."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:31
+#: .\cookbook\templates\no_space_info.html:40
+msgid "Join Space"
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:34
+msgid "Join an existing space."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:35
+msgid ""
+"To join an existing space either enter your invite token or click on the "
+"invite link the space owner send you."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:48
+#: .\cookbook\templates\no_space_info.html:56
+#, fuzzy
+#| msgid "Create"
+msgid "Create Space"
+msgstr "Criar"
+
+#: .\cookbook\templates\no_space_info.html:51
+msgid "Create your own recipe space."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:52
+msgid "Start your own recipe space and invite other users to it."
msgstr ""
#: .\cookbook\templates\offline.html:6
@@ -1352,28 +1589,29 @@ msgid ""
"recently viewed them. Keep in mind that data might be outdated."
msgstr ""
-#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\stats.html:47
+#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\space.html:56
+#: .\cookbook\templates\stats.html:47
msgid "Comments"
msgstr ""
#: .\cookbook\templates\recipe_view.html:44 .\cookbook\views\delete.py:118
-#: .\cookbook\views\edit.py:170
+#: .\cookbook\views\edit.py:179
msgid "Comment"
msgstr ""
#: .\cookbook\templates\recipes_table.html:19
#: .\cookbook\templates\recipes_table.html:23
-#: .\cookbook\templates\url_import.html:69
+#: .\cookbook\templates\url_import.html:440
msgid "Recipe Image"
msgstr ""
#: .\cookbook\templates\recipes_table.html:51
-#: .\cookbook\templates\url_import.html:74
+#: .\cookbook\templates\url_import.html:445
msgid "Preparation time ca."
msgstr ""
#: .\cookbook\templates\recipes_table.html:57
-#: .\cookbook\templates\url_import.html:79
+#: .\cookbook\templates\url_import.html:450
msgid "Waiting time ca."
msgstr ""
@@ -1389,39 +1627,75 @@ msgstr ""
msgid "Recipe Home"
msgstr ""
-#: .\cookbook\templates\settings.html:22
+#: .\cookbook\templates\settings.html:23
msgid "Account"
msgstr ""
-#: .\cookbook\templates\settings.html:38
-msgid "Link social account"
+#: .\cookbook\templates\settings.html:27
+msgid "Preferences"
msgstr ""
-#: .\cookbook\templates\settings.html:42
+#: .\cookbook\templates\settings.html:31
+#, fuzzy
+#| msgid "Settings"
+msgid "API-Settings"
+msgstr "Definições"
+
+#: .\cookbook\templates\settings.html:39
+#, fuzzy
+#| msgid "Settings"
+msgid "Name Settings"
+msgstr "Definições"
+
+#: .\cookbook\templates\settings.html:47
+#, fuzzy
+#| msgid "Settings"
+msgid "Password Settings"
+msgstr "Definições"
+
+#: .\cookbook\templates\settings.html:55
+#, fuzzy
+#| msgid "Settings"
+msgid "Email Settings"
+msgstr "Definições"
+
+#: .\cookbook\templates\settings.html:57
+msgid "Manage Email Settings"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:61
+msgid "Social"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:63
+msgid "Manage Social Accounts"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:75
msgid "Language"
msgstr ""
-#: .\cookbook\templates\settings.html:67
+#: .\cookbook\templates\settings.html:105
msgid "Style"
msgstr ""
-#: .\cookbook\templates\settings.html:79
+#: .\cookbook\templates\settings.html:125
msgid "API Token"
msgstr ""
-#: .\cookbook\templates\settings.html:80
+#: .\cookbook\templates\settings.html:126
msgid ""
"You can use both basic authentication and token based authentication to "
"access the REST API."
msgstr ""
-#: .\cookbook\templates\settings.html:92
+#: .\cookbook\templates\settings.html:143
msgid ""
"Use the token as an Authorization header prefixed by the word token as shown "
"in the following examples:"
msgstr ""
-#: .\cookbook\templates\settings.html:94
+#: .\cookbook\templates\settings.html:145
msgid "or"
msgstr ""
@@ -1442,58 +1716,55 @@ msgstr ""
msgid "Create Superuser account"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:75
+#: .\cookbook\templates\shopping_list.html:79
msgid "Shopping Recipes"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:79
+#: .\cookbook\templates\shopping_list.html:83
msgid "No recipes selected"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:146
+#: .\cookbook\templates\shopping_list.html:150
msgid "Entry Mode"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:154
+#: .\cookbook\templates\shopping_list.html:158
msgid "Add Entry"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:170
+#: .\cookbook\templates\shopping_list.html:174
msgid "Amount"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:226
+#: .\cookbook\templates\shopping_list.html:230
+#: .\cookbook\templates\supermarket.html:7
msgid "Supermarket"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:236
+#: .\cookbook\templates\shopping_list.html:240
msgid "Select Supermarket"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:260
+#: .\cookbook\templates\shopping_list.html:264
msgid "Select User"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:279
+#: .\cookbook\templates\shopping_list.html:283
msgid "Finished"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:292
+#: .\cookbook\templates\shopping_list.html:296
msgid "You are offline, shopping list might not syncronize."
msgstr ""
-#: .\cookbook\templates\shopping_list.html:357
+#: .\cookbook\templates\shopping_list.html:361
msgid "Copy/Export"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:361
+#: .\cookbook\templates\shopping_list.html:365
msgid "List Prefix"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:708
-msgid "There was an error creating a resource!"
-msgstr ""
-
#: .\cookbook\templates\socialaccount\connections.html:4
#: .\cookbook\templates\socialaccount\connections.html:7
msgid "Account Connections"
@@ -1505,10 +1776,6 @@ msgid ""
" accounts:"
msgstr ""
-#: .\cookbook\templates\socialaccount\connections.html:36
-msgid "Remove"
-msgstr ""
-
#: .\cookbook\templates\socialaccount\connections.html:44
msgid ""
"You currently have no social network accounts connected to this account."
@@ -1518,38 +1785,91 @@ msgstr ""
msgid "Add a 3rd Party Account"
msgstr ""
-#: .\cookbook\templates\stats.html:4
-msgid "Stats"
+#: .\cookbook\templates\space.html:18
+msgid "Manage Subscription"
msgstr ""
-#: .\cookbook\templates\stats.html:19
+#: .\cookbook\templates\space.html:26 .\cookbook\templates\stats.html:19
msgid "Number of objects"
msgstr ""
-#: .\cookbook\templates\stats.html:30
+#: .\cookbook\templates\space.html:39 .\cookbook\templates\stats.html:30
msgid "Recipe Imports"
msgstr ""
-#: .\cookbook\templates\stats.html:38
+#: .\cookbook\templates\space.html:47 .\cookbook\templates\stats.html:38
msgid "Objects stats"
msgstr ""
-#: .\cookbook\templates\stats.html:41
+#: .\cookbook\templates\space.html:50 .\cookbook\templates\stats.html:41
msgid "Recipes without Keywords"
msgstr ""
-#: .\cookbook\templates\stats.html:43
+#: .\cookbook\templates\space.html:52 .\cookbook\templates\stats.html:43
msgid "External Recipes"
msgstr ""
-#: .\cookbook\templates\stats.html:45
+#: .\cookbook\templates\space.html:54 .\cookbook\templates\stats.html:45
msgid "Internal Recipes"
msgstr ""
-#: .\cookbook\templates\system.html:21 .\cookbook\views\lists.py:115
+#: .\cookbook\templates\space.html:67
+msgid "Members"
+msgstr ""
+
+#: .\cookbook\templates\space.html:71
+msgid "Invite User"
+msgstr ""
+
+#: .\cookbook\templates\space.html:82
+msgid "User"
+msgstr ""
+
+#: .\cookbook\templates\space.html:83
+msgid "Groups"
+msgstr ""
+
+#: .\cookbook\templates\space.html:99
+#, fuzzy
+#| msgid "Admin"
+msgid "admin"
+msgstr "Administração"
+
+#: .\cookbook\templates\space.html:100
+msgid "user"
+msgstr ""
+
+#: .\cookbook\templates\space.html:101
+msgid "guest"
+msgstr ""
+
+#: .\cookbook\templates\space.html:102
+msgid "remove"
+msgstr ""
+
+#: .\cookbook\templates\space.html:106
+msgid "Update"
+msgstr ""
+
+#: .\cookbook\templates\space.html:110
+msgid "You cannot edit yourself."
+msgstr ""
+
+#: .\cookbook\templates\space.html:117
+#, fuzzy
+#| msgid "There are no recipes in this book yet."
+msgid "There are no members in your space yet!"
+msgstr "Ainda não há receitas neste livro."
+
+#: .\cookbook\templates\space.html:124 .\cookbook\templates\system.html:21
+#: .\cookbook\views\lists.py:115
msgid "Invite Links"
msgstr ""
+#: .\cookbook\templates\stats.html:4
+msgid "Stats"
+msgstr ""
+
#: .\cookbook\templates\system.html:22
msgid "Show Links"
msgstr ""
@@ -1647,45 +1967,155 @@ msgid ""
" "
msgstr ""
-#: .\cookbook\templates\url_import.html:5
+#: .\cookbook\templates\url_import.html:6
msgid "URL Import"
msgstr ""
-#: .\cookbook\templates\url_import.html:23
+#: .\cookbook\templates\url_import.html:31
+msgid "Drag me to your bookmarks to import recipes from anywhere"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:32
+msgid "Bookmark Me!"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:61
msgid "Enter website URL"
msgstr ""
-#: .\cookbook\templates\url_import.html:36
-msgid "Enter json directly"
+#: .\cookbook\templates\url_import.html:97
+msgid "Select recipe files to import or drop them here..."
msgstr ""
-#: .\cookbook\templates\url_import.html:57
+#: .\cookbook\templates\url_import.html:118
+msgid "Paste json or html source here to load recipe."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:146
+#, fuzzy
+#| msgid "View Recipe"
+msgid "Preview Recipe Data"
+msgstr "Ver Receita"
+
+#: .\cookbook\templates\url_import.html:147
+msgid "Drag recipe attributes from the right into the appropriate box below."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:156
+#: .\cookbook\templates\url_import.html:173
+#: .\cookbook\templates\url_import.html:190
+#: .\cookbook\templates\url_import.html:209
+#: .\cookbook\templates\url_import.html:227
+#: .\cookbook\templates\url_import.html:242
+#: .\cookbook\templates\url_import.html:257
+#: .\cookbook\templates\url_import.html:273
+#: .\cookbook\templates\url_import.html:300
+#: .\cookbook\templates\url_import.html:351
+msgid "Clear Contents"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:158
+msgid "Text dragged here will be appended to the name."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:175
+msgid "Text dragged here will be appended to the description."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:192
+msgid "Keywords dragged here will be appended to current list"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:207
+msgid "Image"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:239
+#, fuzzy
+#| msgid "Time"
+msgid "Prep Time"
+msgstr "Tempo"
+
+#: .\cookbook\templates\url_import.html:254
+#, fuzzy
+#| msgid "Time"
+msgid "Cook Time"
+msgstr "Tempo"
+
+#: .\cookbook\templates\url_import.html:275
+msgid "Ingredients dragged here will be appended to current list."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:302
+msgid ""
+"Recipe instructions dragged here will be appended to current instructions."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:325
+#, fuzzy
+#| msgid "Discovered Recipes"
+msgid "Discovered Attributes"
+msgstr "Descobrir Receitas"
+
+#: .\cookbook\templates\url_import.html:327
+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:344
+#, fuzzy
+#| msgid "Show as header"
+msgid "Show Blank Field"
+msgstr "Mostrar como cabeçalho"
+
+#: .\cookbook\templates\url_import.html:349
+msgid "Blank Field"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:353
+msgid "Items dragged to Blank Field will be appended."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:400
+#, fuzzy
+#| msgid "Delete Step"
+msgid "Delete Text"
+msgstr "Apagar Passo"
+
+#: .\cookbook\templates\url_import.html:413
+#, fuzzy
+#| msgid "Delete Recipe"
+msgid "Delete image"
+msgstr "Apagar Receita"
+
+#: .\cookbook\templates\url_import.html:429
msgid "Recipe Name"
msgstr ""
-#: .\cookbook\templates\url_import.html:62
+#: .\cookbook\templates\url_import.html:433
msgid "Recipe Description"
msgstr ""
-#: .\cookbook\templates\url_import.html:123
-#: .\cookbook\templates\url_import.html:155
-#: .\cookbook\templates\url_import.html:211
+#: .\cookbook\templates\url_import.html:494
+#: .\cookbook\templates\url_import.html:526
+#: .\cookbook\templates\url_import.html:582
msgid "Select one"
msgstr ""
-#: .\cookbook\templates\url_import.html:225
+#: .\cookbook\templates\url_import.html:596
msgid "All Keywords"
msgstr ""
-#: .\cookbook\templates\url_import.html:228
+#: .\cookbook\templates\url_import.html:599
msgid "Import all keywords, not only the ones already existing."
msgstr ""
-#: .\cookbook\templates\url_import.html:255
+#: .\cookbook\templates\url_import.html:626
msgid "Information"
msgstr ""
-#: .\cookbook\templates\url_import.html:257
+#: .\cookbook\templates\url_import.html:628
msgid ""
" Only websites containing ld+json or microdata information can currently\n"
" be imported. Most big recipe pages "
@@ -1696,48 +2126,73 @@ msgid ""
" github issues."
msgstr ""
-#: .\cookbook\templates\url_import.html:265
+#: .\cookbook\templates\url_import.html:636
msgid "Google ld+json Info"
msgstr ""
-#: .\cookbook\templates\url_import.html:268
+#: .\cookbook\templates\url_import.html:639
msgid "GitHub Issues"
msgstr ""
-#: .\cookbook\templates\url_import.html:270
+#: .\cookbook\templates\url_import.html:641
msgid "Recipe Markup Specification"
msgstr ""
-#: .\cookbook\views\api.py:71
+#: .\cookbook\views\api.py:77
msgid "Parameter updated_at incorrectly formatted"
msgstr ""
-#: .\cookbook\views\api.py:455 .\cookbook\views\views.py:226
+#: .\cookbook\views\api.py:553 .\cookbook\views\views.py:295
msgid "This feature is not available in the demo version!"
msgstr ""
-#: .\cookbook\views\api.py:478
+#: .\cookbook\views\api.py:576
msgid "Sync successful!"
msgstr ""
-#: .\cookbook\views\api.py:483
+#: .\cookbook\views\api.py:581
msgid "Error synchronizing with Storage"
msgstr ""
-#: .\cookbook\views\api.py:556 .\cookbook\views\api.py:576
+#: .\cookbook\views\api.py:649
+msgid "Nothing to do."
+msgstr ""
+
+#: .\cookbook\views\api.py:664
+msgid "The requested site provided malformed data and cannot be read."
+msgstr ""
+
+#: .\cookbook\views\api.py:671
msgid "The requested page could not be found."
msgstr ""
-#: .\cookbook\views\api.py:585
+#: .\cookbook\views\api.py:680
msgid ""
-"The requested page refused to provide any information (Status Code 403)."
+"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:694
+msgid "No useable data could be found."
msgstr ""
-#: .\cookbook\views\api.py:611
-msgid "Could not parse correctly..."
+#: .\cookbook\views\api.py:710
+msgid "I couldn't find anything to do."
msgstr ""
-#: .\cookbook\views\data.py:94
+#: .\cookbook\views\data.py:30 .\cookbook\views\data.py:121
+#: .\cookbook\views\edit.py:50 .\cookbook\views\import_export.py:67
+#: .\cookbook\views\new.py:32
+msgid "You have reached the maximum number of recipes for your space."
+msgstr ""
+
+#: .\cookbook\views\data.py:34 .\cookbook\views\data.py:125
+#: .\cookbook\views\edit.py:54 .\cookbook\views\import_export.py:71
+#: .\cookbook\views\new.py:36
+msgid "You have more users than allowed in your space."
+msgstr ""
+
+#: .\cookbook\views\data.py:103
#, python-format
msgid "Batch edit done. %(count)d recipe was updated."
msgid_plural "Batch edit done. %(count)d Recipes where updated."
@@ -1749,7 +2204,7 @@ msgid "Monitor"
msgstr ""
#: .\cookbook\views\delete.py:96 .\cookbook\views\lists.py:102
-#: .\cookbook\views\new.py:86
+#: .\cookbook\views\new.py:98
msgid "Storage Backend"
msgstr ""
@@ -1758,8 +2213,8 @@ msgid ""
"Could not delete this storage backend as it is used in at least one monitor."
msgstr ""
-#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:204
-#: .\cookbook\views\new.py:144
+#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:213
+#: .\cookbook\views\new.py:156
msgid "Recipe Book"
msgstr ""
@@ -1767,55 +2222,55 @@ msgstr ""
msgid "Bookmarks"
msgstr ""
-#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:214
+#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:252
msgid "Invite Link"
msgstr ""
-#: .\cookbook\views\edit.py:110
+#: .\cookbook\views\edit.py:119
msgid "Food"
msgstr ""
-#: .\cookbook\views\edit.py:119
+#: .\cookbook\views\edit.py:128
msgid "You cannot edit this storage!"
msgstr ""
-#: .\cookbook\views\edit.py:139
+#: .\cookbook\views\edit.py:148
msgid "Storage saved!"
msgstr ""
-#: .\cookbook\views\edit.py:145
+#: .\cookbook\views\edit.py:154
msgid "There was an error updating this storage backend!"
msgstr ""
-#: .\cookbook\views\edit.py:156
+#: .\cookbook\views\edit.py:165
msgid "Storage"
msgstr ""
-#: .\cookbook\views\edit.py:252
+#: .\cookbook\views\edit.py:261
msgid "Changes saved!"
msgstr ""
-#: .\cookbook\views\edit.py:256
+#: .\cookbook\views\edit.py:265
msgid "Error saving changes!"
msgstr ""
-#: .\cookbook\views\edit.py:289
+#: .\cookbook\views\edit.py:299
msgid "Units merged!"
msgstr ""
-#: .\cookbook\views\edit.py:291 .\cookbook\views\edit.py:307
+#: .\cookbook\views\edit.py:301 .\cookbook\views\edit.py:317
msgid "Cannot merge with the same object!"
msgstr ""
-#: .\cookbook\views\edit.py:305
+#: .\cookbook\views\edit.py:315
msgid "Foods merged!"
msgstr ""
-#: .\cookbook\views\import_export.py:73
+#: .\cookbook\views\import_export.py:93
msgid "Importing is not implemented for this provider"
msgstr ""
-#: .\cookbook\views\import_export.py:92
+#: .\cookbook\views\import_export.py:115
msgid "Exporting is not implemented for this provider"
msgstr ""
@@ -1831,45 +2286,124 @@ msgstr ""
msgid "Shopping Lists"
msgstr ""
-#: .\cookbook\views\new.py:111
+#: .\cookbook\views\new.py:123
msgid "Imported new recipe!"
msgstr ""
-#: .\cookbook\views\new.py:114
+#: .\cookbook\views\new.py:126
msgid "There was an error importing this recipe!"
msgstr ""
-#: .\cookbook\views\views.py:123
+#: .\cookbook\views\new.py:226
+msgid "Hello"
+msgstr ""
+
+#: .\cookbook\views\new.py:226
+msgid "You have been invited by "
+msgstr ""
+
+#: .\cookbook\views\new.py:227
+msgid " to join their Tandoor Recipes space "
+msgstr ""
+
+#: .\cookbook\views\new.py:228
+msgid "Click the following link to activate your account: "
+msgstr ""
+
+#: .\cookbook\views\new.py:229
+msgid ""
+"If the link does not work use the following code to manually join the space: "
+msgstr ""
+
+#: .\cookbook\views\new.py:230
+msgid "The invitation is valid until "
+msgstr ""
+
+#: .\cookbook\views\new.py:231
+msgid ""
+"Tandoor Recipes is an Open Source recipe manager. Check it out on GitHub "
+msgstr ""
+
+#: .\cookbook\views\new.py:234
+msgid "Tandoor Recipes Invite"
+msgstr ""
+
+#: .\cookbook\views\new.py:241
+msgid "Invite link successfully send to user."
+msgstr ""
+
+#: .\cookbook\views\new.py:244
+msgid ""
+"You have send to many emails, please share the link manually or wait a few "
+"hours."
+msgstr ""
+
+#: .\cookbook\views\new.py:246
+msgid "Email to user could not be send, please share link manually."
+msgstr ""
+
+#: .\cookbook\views\views.py:125
+msgid ""
+"You have successfully created your own recipe space. Start by adding some "
+"recipes or invite other people to join you."
+msgstr ""
+
+#: .\cookbook\views\views.py:173
msgid "You do not have the required permissions to perform this action!"
msgstr ""
-#: .\cookbook\views\views.py:134
+#: .\cookbook\views\views.py:184
msgid "Comment saved!"
msgstr ""
-#: .\cookbook\views\views.py:326
+#: .\cookbook\views\views.py:396
msgid ""
"The setup page can only be used to create the first user! If you have "
"forgotten your superuser credentials please consult the django documentation "
"on how to reset passwords."
msgstr ""
-#: .\cookbook\views\views.py:333 .\cookbook\views\views.py:378
+#: .\cookbook\views\views.py:403
msgid "Passwords dont match!"
msgstr ""
-#: .\cookbook\views\views.py:349 .\cookbook\views\views.py:385
+#: .\cookbook\views\views.py:419
msgid "User has been created, please login!"
msgstr ""
-#: .\cookbook\views\views.py:365
+#: .\cookbook\views\views.py:435
msgid "Malformed Invite Link supplied!"
msgstr ""
-#: .\cookbook\views\views.py:405
+#: .\cookbook\views\views.py:441
+#, fuzzy
+#| msgid "You are not logged in and therefore cannot view this page!"
+msgid "You are already member of a space and therefore cannot join this one."
+msgstr "Autenticação necessária para aceder a esta página!"
+
+#: .\cookbook\views\views.py:452
+msgid "Successfully joined space."
+msgstr ""
+
+#: .\cookbook\views\views.py:458
msgid "Invite Link not valid or already used!"
msgstr ""
+#~ msgid ""
+#~ "A username is not required, if left blank the new user can choose one."
+#~ msgstr ""
+#~ "Um nome de utilizador não é obrigatório. Se deixado em branco o novo "
+#~ "utilizador pode escolher o seu nome."
+
+#~ msgid "Link"
+#~ msgstr "Ligação"
+
+#~ msgid "Logout"
+#~ msgstr "Sair"
+
+#~ msgid "Website Import"
+#~ msgstr "Importar Website"
+
#~ msgid ""
#~ "Include - [ ]
in list for easier usage in markdown based "
#~ "documents."
diff --git a/cookbook/locale/rn/LC_MESSAGES/django.po b/cookbook/locale/rn/LC_MESSAGES/django.po
index a0a54d56..404178a1 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-04-11 15:09+0200\n"
+"POT-Creation-Date: 2021-06-12 20:30+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME /remote."
"php/webdav/
is added automatically)"
msgstr ""
-#: .\cookbook\forms.py:291
+#: .\cookbook\forms.py:307
msgid "Search String"
msgstr ""
-#: .\cookbook\forms.py:318
+#: .\cookbook\forms.py:334
msgid "File ID"
msgstr ""
-#: .\cookbook\forms.py:354
+#: .\cookbook\forms.py:370
msgid "You must provide at least a recipe or a title."
msgstr ""
-#: .\cookbook\forms.py:367
+#: .\cookbook\forms.py:383
msgid "You can list default users to share recipes with in the settings."
msgstr ""
-#: .\cookbook\forms.py:368
-#: .\cookbook\templates\forms\edit_internal_recipe.html:377
+#: .\cookbook\forms.py:384
+#: .\cookbook\templates\forms\edit_internal_recipe.html:404
msgid ""
"You can use markdown to format this field. See the docs here"
msgstr ""
-#: .\cookbook\forms.py:393
-msgid "A username is not required, if left blank the new user can choose one."
+#: .\cookbook\forms.py:409
+msgid "Maximum number of users for this space reached."
msgstr ""
-#: .\cookbook\helper\permission_helper.py:123
-#: .\cookbook\helper\permission_helper.py:129
-#: .\cookbook\helper\permission_helper.py:151
-#: .\cookbook\helper\permission_helper.py:196
-#: .\cookbook\helper\permission_helper.py:210
-#: .\cookbook\helper\permission_helper.py:221
-#: .\cookbook\helper\permission_helper.py:232 .\cookbook\views\data.py:30
-#: .\cookbook\views\views.py:112 .\cookbook\views\views.py:116
-#: .\cookbook\views\views.py:184
-msgid "You do not have the required permissions to view this page!"
+#: .\cookbook\forms.py:415
+msgid "Email address already taken!"
msgstr ""
-#: .\cookbook\helper\permission_helper.py:141
+#: .\cookbook\forms.py:423
+msgid ""
+"An email address is not required but if present the invite link will be send "
+"to the user."
+msgstr ""
+
+#: .\cookbook\forms.py:438
+msgid "Name already taken."
+msgstr ""
+
+#: .\cookbook\forms.py:449
+msgid "Accept Terms and Privacy"
+msgstr ""
+
+#: .\cookbook\helper\AllAuthCustomAdapter.py:30
+msgid ""
+"In order to prevent spam, the requested email was not send. Please wait a "
+"few minutes and try again."
+msgstr ""
+
+#: .\cookbook\helper\permission_helper.py:124
+#: .\cookbook\helper\permission_helper.py:144 .\cookbook\views\views.py:147
msgid "You are not logged in and therefore cannot view this page!"
msgstr ""
-#: .\cookbook\helper\permission_helper.py:145
-#: .\cookbook\helper\permission_helper.py:167
-#: .\cookbook\helper\permission_helper.py:182
+#: .\cookbook\helper\permission_helper.py:127
+#: .\cookbook\helper\permission_helper.py:132
+#: .\cookbook\helper\permission_helper.py:154
+#: .\cookbook\helper\permission_helper.py:199
+#: .\cookbook\helper\permission_helper.py:213
+#: .\cookbook\helper\permission_helper.py:224
+#: .\cookbook\helper\permission_helper.py:235 .\cookbook\views\data.py:39
+#: .\cookbook\views\views.py:158 .\cookbook\views\views.py:165
+#: .\cookbook\views\views.py:253
+msgid "You do not have the required permissions to view this page!"
+msgstr ""
+
+#: .\cookbook\helper\permission_helper.py:148
+#: .\cookbook\helper\permission_helper.py:170
+#: .\cookbook\helper\permission_helper.py:185
msgid "You cannot interact with this object as it is not owned by you!"
msgstr ""
-#: .\cookbook\helper\recipe_url_import.py:40 .\cookbook\views\api.py:549
-msgid "The requested site provided malformed data and cannot be read."
-msgstr ""
-
-#: .\cookbook\helper\recipe_url_import.py:54
-msgid ""
-"The requested site does not provide any recognized data format to import the "
-"recipe from."
-msgstr ""
-
-#: .\cookbook\helper\recipe_url_import.py:160
-msgid "Imported from"
-msgstr ""
-
#: .\cookbook\helper\template_helper.py:60
#: .\cookbook\helper\template_helper.py:62
msgid "Could not parse template code."
@@ -237,42 +252,53 @@ msgstr ""
#: .\cookbook\templates\import.html:14 .\cookbook\templates\import.html:20
#: .\cookbook\templates\import_response.html:7
#: .\cookbook\templates\test.html:14 .\cookbook\templates\test.html:20
-#: .\cookbook\templates\url_import.html:233 .\cookbook\views\delete.py:60
-#: .\cookbook\views\edit.py:190
+#: .\cookbook\templates\url_import.html:27
+#: .\cookbook\templates\url_import.html:101
+#: .\cookbook\templates\url_import.html:123
+#: .\cookbook\templates\url_import.html:317
+#: .\cookbook\templates\url_import.html:604 .\cookbook\views\delete.py:60
+#: .\cookbook\views\edit.py:199
msgid "Import"
msgstr ""
-#: .\cookbook\integration\integration.py:131
+#: .\cookbook\integration\integration.py:162
msgid ""
"Importer expected a .zip file. Did you choose the correct importer type for "
"your data ?"
msgstr ""
-#: .\cookbook\integration\integration.py:134
+#: .\cookbook\integration\integration.py:165
+msgid ""
+"An unexpected error occurred during the import. Please make sure you have "
+"uploaded a valid file."
+msgstr ""
+
+#: .\cookbook\integration\integration.py:169
msgid "The following recipes were ignored because they already existed:"
msgstr ""
-#: .\cookbook\integration\integration.py:137
+#: .\cookbook\integration\integration.py:173
#, python-format
msgid "Imported %s recipes."
msgstr ""
-#: .\cookbook\integration\paprika.py:44
+#: .\cookbook\integration\paprika.py:46
msgid "Notes"
msgstr ""
-#: .\cookbook\integration\paprika.py:47
+#: .\cookbook\integration\paprika.py:49
msgid "Nutritional Information"
msgstr ""
-#: .\cookbook\integration\paprika.py:50
+#: .\cookbook\integration\paprika.py:53
msgid "Source"
msgstr ""
#: .\cookbook\integration\safron.py:23
-#: .\cookbook\templates\forms\edit_internal_recipe.html:75
+#: .\cookbook\templates\forms\edit_internal_recipe.html:79
#: .\cookbook\templates\include\log_cooking.html:16
-#: .\cookbook\templates\url_import.html:84
+#: .\cookbook\templates\url_import.html:224
+#: .\cookbook\templates\url_import.html:455
msgid "Servings"
msgstr ""
@@ -281,11 +307,11 @@ msgid "Waiting time"
msgstr ""
#: .\cookbook\integration\safron.py:27
-#: .\cookbook\templates\forms\edit_internal_recipe.html:69
+#: .\cookbook\templates\forms\edit_internal_recipe.html:73
msgid "Preparation Time"
msgstr ""
-#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:71
+#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:78
#: .\cookbook\templates\forms\ingredients.html:7
#: .\cookbook\templates\index.html:7
msgid "Cookbook"
@@ -311,44 +337,72 @@ msgstr ""
msgid "Other"
msgstr ""
-#: .\cookbook\models.py:110 .\cookbook\templates\shopping_list.html:48
+#: .\cookbook\models.py:71
+msgid ""
+"Maximum file storage for space in MB. 0 for unlimited, -1 to disable file "
+"upload."
+msgstr ""
+
+#: .\cookbook\models.py:121 .\cookbook\templates\search.html:7
+#: .\cookbook\templates\shopping_list.html:52
msgid "Search"
msgstr ""
-#: .\cookbook\models.py:111 .\cookbook\templates\base.html:85
+#: .\cookbook\models.py:122 .\cookbook\templates\base.html:92
#: .\cookbook\templates\meal_plan.html:5 .\cookbook\views\delete.py:152
-#: .\cookbook\views\edit.py:224 .\cookbook\views\new.py:188
+#: .\cookbook\views\edit.py:233 .\cookbook\views\new.py:201
msgid "Meal-Plan"
msgstr ""
-#: .\cookbook\models.py:112 .\cookbook\templates\base.html:82
+#: .\cookbook\models.py:123 .\cookbook\templates\base.html:89
msgid "Books"
msgstr ""
-#: .\cookbook\models.py:119
+#: .\cookbook\models.py:131
msgid "Small"
msgstr ""
-#: .\cookbook\models.py:119
+#: .\cookbook\models.py:131
msgid "Large"
msgstr ""
-#: .\cookbook\models.py:327
-#: .\cookbook\templates\forms\edit_internal_recipe.html:198
+#: .\cookbook\models.py:131 .\cookbook\templates\generic\new_template.html:6
+#: .\cookbook\templates\generic\new_template.html:14
+#: .\cookbook\templates\meal_plan.html:323
+msgid "New"
+msgstr ""
+
+#: .\cookbook\models.py:340
+#: .\cookbook\templates\forms\edit_internal_recipe.html:202
msgid "Text"
msgstr ""
-#: .\cookbook\models.py:327
-#: .\cookbook\templates\forms\edit_internal_recipe.html:199
+#: .\cookbook\models.py:340
+#: .\cookbook\templates\forms\edit_internal_recipe.html:203
msgid "Time"
msgstr ""
+#: .\cookbook\models.py:340
+#: .\cookbook\templates\forms\edit_internal_recipe.html:204
+#: .\cookbook\templates\forms\edit_internal_recipe.html:218
+msgid "File"
+msgstr ""
+
+#: .\cookbook\serializer.py:109
+msgid "File uploads are not enabled for this Space."
+msgstr ""
+
+#: .\cookbook\serializer.py:117
+msgid "You have reached your file upload limit."
+msgstr ""
+
#: .\cookbook\tables.py:35 .\cookbook\templates\books.html:36
#: .\cookbook\templates\generic\edit_template.html:6
#: .\cookbook\templates\generic\edit_template.html:14
#: .\cookbook\templates\meal_plan.html:281
#: .\cookbook\templates\recipes_table.html:82
#: .\cookbook\templates\shopping_list.html:33
+#: .\cookbook\templates\space.html:84
msgid "Edit"
msgstr ""
@@ -362,10 +416,6 @@ msgstr ""
msgid "Delete"
msgstr ""
-#: .\cookbook\tables.py:144
-msgid "Link"
-msgstr ""
-
#: .\cookbook\templates\404.html:5
msgid "404 Error"
msgstr ""
@@ -382,21 +432,120 @@ msgstr ""
msgid "Report a Bug"
msgstr ""
-#: .\cookbook\templates\account\login.html:7
-#: .\cookbook\templates\base.html:170
+#: .\cookbook\templates\account\email.html:6
+#: .\cookbook\templates\account\email.html:9
+msgid "E-mail Addresses"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:11
+msgid "The following e-mail addresses are associated with your account:"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:28
+msgid "Verified"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:30
+msgid "Unverified"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:32
+msgid "Primary"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:39
+msgid "Make Primary"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:41
+msgid "Re-send Verification"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:42
+#: .\cookbook\templates\socialaccount\connections.html:36
+msgid "Remove"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:50
+msgid "Warning:"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:50
+msgid ""
+"You currently do not have any e-mail address set up. You should really add "
+"an e-mail address so you can receive notifications, reset your password, etc."
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:56
+msgid "Add E-mail Address"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:61
+msgid "Add E-mail"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:71
+msgid "Do you really want to remove the selected e-mail address?"
+msgstr ""
+
+#: .\cookbook\templates\account\email_confirm.html:6
+#: .\cookbook\templates\account\email_confirm.html:10
+msgid "Confirm E-mail Address"
+msgstr ""
+
+#: .\cookbook\templates\account\email_confirm.html:16
+#, python-format
+msgid ""
+"Please confirm that\n"
+" %(email)s is an e-mail address "
+"for user %(user_display)s\n"
+" ."
+msgstr ""
+
+#: .\cookbook\templates\account\email_confirm.html:22
+#: .\cookbook\templates\generic\delete_template.html:21
+msgid "Confirm"
+msgstr ""
+
+#: .\cookbook\templates\account\email_confirm.html:29
+#, python-format
+msgid ""
+"This e-mail confirmation link expired or is invalid. Please\n"
+" issue a new e-mail confirmation "
+"request."
+msgstr ""
+
+#: .\cookbook\templates\account\login.html:8
+#: .\cookbook\templates\base.html:180
msgid "Login"
msgstr ""
-#: .\cookbook\templates\account\login.html:13
-#: .\cookbook\templates\account\login.html:28
+#: .\cookbook\templates\account\login.html:15
+#: .\cookbook\templates\account\login.html:31
+#: .\cookbook\templates\account\signup.html:69
+#: .\cookbook\templates\account\signup_closed.html:15
msgid "Sign In"
msgstr ""
-#: .\cookbook\templates\account\login.html:38
+#: .\cookbook\templates\account\login.html:32
+msgid "Sign Up"
+msgstr ""
+
+#: .\cookbook\templates\account\login.html:36
+#: .\cookbook\templates\account\login.html:37
+#: .\cookbook\templates\account\password_reset.html:29
+msgid "Reset My Password"
+msgstr ""
+
+#: .\cookbook\templates\account\login.html:37
+msgid "Lost your password?"
+msgstr ""
+
+#: .\cookbook\templates\account\login.html:48
msgid "Social Login"
msgstr ""
-#: .\cookbook\templates\account\login.html:39
+#: .\cookbook\templates\account\login.html:49
msgid "You can use any of the following providers to sign in."
msgstr ""
@@ -410,115 +559,161 @@ msgstr ""
msgid "Are you sure you want to sign out?"
msgstr ""
-#: .\cookbook\templates\account\password_reset.html:5
-#: .\cookbook\templates\account\password_reset_done.html:5
+#: .\cookbook\templates\account\password_reset.html:7
+#: .\cookbook\templates\account\password_reset.html:13
+#: .\cookbook\templates\account\password_reset_done.html:7
+#: .\cookbook\templates\account\password_reset_done.html:10
msgid "Password Reset"
msgstr ""
-#: .\cookbook\templates\account\password_reset.html:9
-#: .\cookbook\templates\account\password_reset_done.html:9
-msgid "Password reset is not implemented for the time being!"
+#: .\cookbook\templates\account\password_reset.html:24
+msgid ""
+"Forgotten your password? Enter your e-mail address below, and we'll send you "
+"an e-mail allowing you to reset it."
msgstr ""
-#: .\cookbook\templates\account\signup.html:5
+#: .\cookbook\templates\account\password_reset.html:32
+msgid "Password reset is disabled on this instance."
+msgstr ""
+
+#: .\cookbook\templates\account\password_reset_done.html:16
+msgid ""
+"We have sent you an e-mail. Please contact us if you do not receive it "
+"within a few minutes."
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:6
msgid "Register"
msgstr ""
-#: .\cookbook\templates\account\signup.html:9
-msgid "Create your Account"
+#: .\cookbook\templates\account\signup.html:12
+msgid "Create an Account"
msgstr ""
-#: .\cookbook\templates\account\signup.html:14
+#: .\cookbook\templates\account\signup.html:42
+msgid "I accept the follwoing"
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:45
+msgid "Terms and Conditions"
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:48
+msgid "and"
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:52
+msgid "Privacy Policy"
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:65
msgid "Create User"
msgstr ""
-#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:160
+#: .\cookbook\templates\account\signup.html:69
+msgid "Already have an account?"
+msgstr ""
+
+#: .\cookbook\templates\account\signup_closed.html:5
+#: .\cookbook\templates\account\signup_closed.html:11
+msgid "Sign Up Closed"
+msgstr ""
+
+#: .\cookbook\templates\account\signup_closed.html:13
+msgid "We are sorry, but the sign up is currently closed."
+msgstr ""
+
+#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:170
#: .\cookbook\templates\rest_framework\api.html:11
msgid "API Documentation"
msgstr ""
-#: .\cookbook\templates\base.html:78
+#: .\cookbook\templates\base.html:85
msgid "Utensils"
msgstr ""
-#: .\cookbook\templates\base.html:88
+#: .\cookbook\templates\base.html:95
msgid "Shopping"
msgstr ""
-#: .\cookbook\templates\base.html:102 .\cookbook\views\delete.py:84
-#: .\cookbook\views\edit.py:93 .\cookbook\views\lists.py:26
-#: .\cookbook\views\new.py:66
+#: .\cookbook\templates\base.html:109 .\cookbook\views\delete.py:84
+#: .\cookbook\views\edit.py:102 .\cookbook\views\lists.py:26
+#: .\cookbook\views\new.py:78
msgid "Keyword"
msgstr ""
-#: .\cookbook\templates\base.html:104
+#: .\cookbook\templates\base.html:111
msgid "Batch Edit"
msgstr ""
-#: .\cookbook\templates\base.html:109
+#: .\cookbook\templates\base.html:116
msgid "Storage Data"
msgstr ""
-#: .\cookbook\templates\base.html:113
+#: .\cookbook\templates\base.html:120
msgid "Storage Backends"
msgstr ""
-#: .\cookbook\templates\base.html:115
+#: .\cookbook\templates\base.html:122
msgid "Configure Sync"
msgstr ""
-#: .\cookbook\templates\base.html:117
+#: .\cookbook\templates\base.html:124
msgid "Discovered Recipes"
msgstr ""
-#: .\cookbook\templates\base.html:119
+#: .\cookbook\templates\base.html:126
msgid "Discovery Log"
msgstr ""
-#: .\cookbook\templates\base.html:121 .\cookbook\templates\stats.html:10
+#: .\cookbook\templates\base.html:128 .\cookbook\templates\stats.html:10
msgid "Statistics"
msgstr ""
-#: .\cookbook\templates\base.html:123
+#: .\cookbook\templates\base.html:130
msgid "Units & Ingredients"
msgstr ""
-#: .\cookbook\templates\base.html:125
+#: .\cookbook\templates\base.html:132 .\cookbook\templates\index.html:47
msgid "Import Recipe"
msgstr ""
-#: .\cookbook\templates\base.html:144 .\cookbook\templates\settings.html:6
+#: .\cookbook\templates\base.html:151 .\cookbook\templates\settings.html:6
#: .\cookbook\templates\settings.html:16
msgid "Settings"
msgstr ""
-#: .\cookbook\templates\base.html:146 .\cookbook\templates\history.html:6
+#: .\cookbook\templates\base.html:153 .\cookbook\templates\history.html:6
#: .\cookbook\templates\history.html:14
msgid "History"
msgstr ""
-#: .\cookbook\templates\base.html:150 .\cookbook\templates\system.html:13
+#: .\cookbook\templates\base.html:155 .\cookbook\templates\space.html:7
+msgid "Space Settings"
+msgstr ""
+
+#: .\cookbook\templates\base.html:160 .\cookbook\templates\system.html:13
msgid "System"
msgstr ""
-#: .\cookbook\templates\base.html:152
+#: .\cookbook\templates\base.html:162
msgid "Admin"
msgstr ""
-#: .\cookbook\templates\base.html:156
+#: .\cookbook\templates\base.html:166
msgid "Markdown Guide"
msgstr ""
-#: .\cookbook\templates\base.html:158
+#: .\cookbook\templates\base.html:168
msgid "GitHub"
msgstr ""
-#: .\cookbook\templates\base.html:162
+#: .\cookbook\templates\base.html:172
msgid "API Browser"
msgstr ""
-#: .\cookbook\templates\base.html:165
-msgid "Logout"
+#: .\cookbook\templates\base.html:175
+msgid "Log out"
msgstr ""
#: .\cookbook\templates\batch\edit.html:6
@@ -533,7 +728,7 @@ msgstr ""
msgid "Add the specified keywords to all recipes containing a word"
msgstr ""
-#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:76
+#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:85
msgid "Sync"
msgstr ""
@@ -560,7 +755,7 @@ msgstr ""
msgid "Importing Recipes"
msgstr ""
-#: .\cookbook\templates\batch\waiting.html:23
+#: .\cookbook\templates\batch\waiting.html:28
msgid ""
"This can take a few minutes, depending on the number of recipes in sync, "
"please wait."
@@ -597,26 +792,31 @@ msgid "Export Recipes"
msgstr ""
#: .\cookbook\templates\export.html:14 .\cookbook\templates\export.html:20
-#: .\cookbook\templates\shopping_list.html:347
+#: .\cookbook\templates\shopping_list.html:351
#: .\cookbook\templates\test2.html:14 .\cookbook\templates\test2.html:20
msgid "Export"
msgstr ""
+#: .\cookbook\templates\files.html:7
+msgid "Files"
+msgstr ""
+
#: .\cookbook\templates\forms\edit_import_recipe.html:5
#: .\cookbook\templates\forms\edit_import_recipe.html:9
msgid "Import new Recipe"
msgstr ""
#: .\cookbook\templates\forms\edit_import_recipe.html:14
-#: .\cookbook\templates\forms\edit_internal_recipe.html:389
-#: .\cookbook\templates\forms\edit_internal_recipe.html:421
+#: .\cookbook\templates\forms\edit_internal_recipe.html:416
+#: .\cookbook\templates\forms\edit_internal_recipe.html:448
#: .\cookbook\templates\generic\edit_template.html:23
#: .\cookbook\templates\generic\new_template.html:23
#: .\cookbook\templates\include\log_cooking.html:28
#: .\cookbook\templates\meal_plan.html:325
-#: .\cookbook\templates\settings.html:28 .\cookbook\templates\settings.html:35
-#: .\cookbook\templates\settings.html:58 .\cookbook\templates\settings.html:73
-#: .\cookbook\templates\shopping_list.html:349
+#: .\cookbook\templates\settings.html:44 .\cookbook\templates\settings.html:52
+#: .\cookbook\templates\settings.html:96
+#: .\cookbook\templates\settings.html:114
+#: .\cookbook\templates\shopping_list.html:353
msgid "Save"
msgstr ""
@@ -625,179 +825,186 @@ msgstr ""
msgid "Edit Recipe"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:52
+#: .\cookbook\templates\forms\edit_internal_recipe.html:56
+#: .\cookbook\templates\url_import.html:171
msgid "Description"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:72
+#: .\cookbook\templates\forms\edit_internal_recipe.html:76
msgid "Waiting Time"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:78
+#: .\cookbook\templates\forms\edit_internal_recipe.html:82
msgid "Servings Text"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:89
+#: .\cookbook\templates\forms\edit_internal_recipe.html:93
msgid "Select Keywords"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:90
-#: .\cookbook\templates\url_import.html:212
+#: .\cookbook\templates\forms\edit_internal_recipe.html:94
+#: .\cookbook\templates\url_import.html:583
msgid "Add Keyword"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:108
+#: .\cookbook\templates\forms\edit_internal_recipe.html:112
msgid "Nutrition"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:112
-#: .\cookbook\templates\forms\edit_internal_recipe.html:162
+#: .\cookbook\templates\forms\edit_internal_recipe.html:116
+#: .\cookbook\templates\forms\edit_internal_recipe.html:166
msgid "Delete Step"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:116
+#: .\cookbook\templates\forms\edit_internal_recipe.html:120
msgid "Calories"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:119
+#: .\cookbook\templates\forms\edit_internal_recipe.html:123
msgid "Carbohydrates"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:122
+#: .\cookbook\templates\forms\edit_internal_recipe.html:126
msgid "Fats"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:124
+#: .\cookbook\templates\forms\edit_internal_recipe.html:128
msgid "Proteins"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:146
-#: .\cookbook\templates\forms\edit_internal_recipe.html:454
+#: .\cookbook\templates\forms\edit_internal_recipe.html:150
+#: .\cookbook\templates\forms\edit_internal_recipe.html:481
msgid "Step"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:167
+#: .\cookbook\templates\forms\edit_internal_recipe.html:171
msgid "Show as header"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:173
+#: .\cookbook\templates\forms\edit_internal_recipe.html:177
msgid "Hide as header"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:178
+#: .\cookbook\templates\forms\edit_internal_recipe.html:182
msgid "Move Up"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:183
+#: .\cookbook\templates\forms\edit_internal_recipe.html:187
msgid "Move Down"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:192
+#: .\cookbook\templates\forms\edit_internal_recipe.html:196
msgid "Step Name"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:196
+#: .\cookbook\templates\forms\edit_internal_recipe.html:200
msgid "Step Type"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:207
+#: .\cookbook\templates\forms\edit_internal_recipe.html:212
msgid "Step time in Minutes"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:261
-#: .\cookbook\templates\shopping_list.html:183
-msgid "Select Unit"
+#: .\cookbook\templates\forms\edit_internal_recipe.html:228
+msgid "Select File"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:262
-#: .\cookbook\templates\forms\edit_internal_recipe.html:286
-#: .\cookbook\templates\shopping_list.html:184
-#: .\cookbook\templates\shopping_list.html:206
-msgid "Create"
-msgstr ""
-
-#: .\cookbook\templates\forms\edit_internal_recipe.html:263
-#: .\cookbook\templates\forms\edit_internal_recipe.html:287
-#: .\cookbook\templates\shopping_list.html:185
-#: .\cookbook\templates\shopping_list.html:207
-#: .\cookbook\templates\shopping_list.html:237
-#: .\cookbook\templates\shopping_list.html:261
-#: .\cookbook\templates\url_import.html:124
-#: .\cookbook\templates\url_import.html:156
+#: .\cookbook\templates\forms\edit_internal_recipe.html:229
+#: .\cookbook\templates\forms\edit_internal_recipe.html:290
+#: .\cookbook\templates\forms\edit_internal_recipe.html:314
+#: .\cookbook\templates\shopping_list.html:189
+#: .\cookbook\templates\shopping_list.html:211
+#: .\cookbook\templates\shopping_list.html:241
+#: .\cookbook\templates\shopping_list.html:265
+#: .\cookbook\templates\url_import.html:495
+#: .\cookbook\templates\url_import.html:527
msgid "Select"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:285
-#: .\cookbook\templates\shopping_list.html:205
+#: .\cookbook\templates\forms\edit_internal_recipe.html:288
+#: .\cookbook\templates\shopping_list.html:187
+msgid "Select Unit"
+msgstr ""
+
+#: .\cookbook\templates\forms\edit_internal_recipe.html:289
+#: .\cookbook\templates\forms\edit_internal_recipe.html:313
+#: .\cookbook\templates\shopping_list.html:188
+#: .\cookbook\templates\shopping_list.html:210
+msgid "Create"
+msgstr ""
+
+#: .\cookbook\templates\forms\edit_internal_recipe.html:312
+#: .\cookbook\templates\shopping_list.html:209
msgid "Select Food"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:302
+#: .\cookbook\templates\forms\edit_internal_recipe.html:329
#: .\cookbook\templates\meal_plan.html:256
-#: .\cookbook\templates\url_import.html:171
+#: .\cookbook\templates\url_import.html:542
msgid "Note"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:319
+#: .\cookbook\templates\forms\edit_internal_recipe.html:346
msgid "Delete Ingredient"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:325
+#: .\cookbook\templates\forms\edit_internal_recipe.html:352
msgid "Make Header"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:331
+#: .\cookbook\templates\forms\edit_internal_recipe.html:358
msgid "Make Ingredient"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:337
+#: .\cookbook\templates\forms\edit_internal_recipe.html:364
msgid "Disable Amount"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:343
+#: .\cookbook\templates\forms\edit_internal_recipe.html:370
msgid "Enable Amount"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:348
+#: .\cookbook\templates\forms\edit_internal_recipe.html:375
msgid "Copy Template Reference"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:374
-#: .\cookbook\templates\url_import.html:196
+#: .\cookbook\templates\forms\edit_internal_recipe.html:401
+#: .\cookbook\templates\url_import.html:297
+#: .\cookbook\templates\url_import.html:567
msgid "Instructions"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:387
-#: .\cookbook\templates\forms\edit_internal_recipe.html:418
+#: .\cookbook\templates\forms\edit_internal_recipe.html:414
+#: .\cookbook\templates\forms\edit_internal_recipe.html:445
msgid "Save & View"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:391
-#: .\cookbook\templates\forms\edit_internal_recipe.html:424
+#: .\cookbook\templates\forms\edit_internal_recipe.html:418
+#: .\cookbook\templates\forms\edit_internal_recipe.html:451
msgid "Add Step"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:394
-#: .\cookbook\templates\forms\edit_internal_recipe.html:428
+#: .\cookbook\templates\forms\edit_internal_recipe.html:421
+#: .\cookbook\templates\forms\edit_internal_recipe.html:455
msgid "Add Nutrition"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:396
-#: .\cookbook\templates\forms\edit_internal_recipe.html:430
+#: .\cookbook\templates\forms\edit_internal_recipe.html:423
+#: .\cookbook\templates\forms\edit_internal_recipe.html:457
msgid "Remove Nutrition"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:398
-#: .\cookbook\templates\forms\edit_internal_recipe.html:433
+#: .\cookbook\templates\forms\edit_internal_recipe.html:425
+#: .\cookbook\templates\forms\edit_internal_recipe.html:460
msgid "View Recipe"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:400
-#: .\cookbook\templates\forms\edit_internal_recipe.html:435
+#: .\cookbook\templates\forms\edit_internal_recipe.html:427
+#: .\cookbook\templates\forms\edit_internal_recipe.html:462
msgid "Delete Recipe"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:441
+#: .\cookbook\templates\forms\edit_internal_recipe.html:468
msgid "Steps"
msgstr ""
@@ -817,7 +1024,7 @@ msgid ""
msgstr ""
#: .\cookbook\templates\forms\ingredients.html:24
-#: .\cookbook\templates\stats.html:26
+#: .\cookbook\templates\space.html:35 .\cookbook\templates\stats.html:26
msgid "Units"
msgstr ""
@@ -839,10 +1046,6 @@ msgstr ""
msgid "Are you sure you want to delete the %(title)s: %(object)s "
msgstr ""
-#: .\cookbook\templates\generic\delete_template.html:21
-msgid "Confirm"
-msgstr ""
-
#: .\cookbook\templates\generic\edit_template.html:30
msgid "View"
msgstr ""
@@ -864,12 +1067,6 @@ msgstr ""
msgid "Import all"
msgstr ""
-#: .\cookbook\templates\generic\new_template.html:6
-#: .\cookbook\templates\generic\new_template.html:14
-#: .\cookbook\templates\meal_plan.html:323
-msgid "New"
-msgstr ""
-
#: .\cookbook\templates\generic\table_template.html:76
#: .\cookbook\templates\recipes_table.html:121
msgid "previous"
@@ -914,7 +1111,7 @@ msgstr ""
#: .\cookbook\templates\include\recipe_open_modal.html:7
#: .\cookbook\templates\meal_plan.html:247 .\cookbook\views\delete.py:28
-#: .\cookbook\views\edit.py:264 .\cookbook\views\new.py:40
+#: .\cookbook\views\edit.py:273 .\cookbook\views\new.py:52
msgid "Recipe"
msgstr ""
@@ -947,10 +1144,6 @@ msgstr ""
msgid "New Recipe"
msgstr ""
-#: .\cookbook\templates\index.html:47
-msgid "Website Import"
-msgstr ""
-
#: .\cookbook\templates\index.html:53
msgid "Advanced Search"
msgstr ""
@@ -964,7 +1157,7 @@ msgid "Last viewed"
msgstr ""
#: .\cookbook\templates\index.html:87 .\cookbook\templates\meal_plan.html:178
-#: .\cookbook\templates\stats.html:22
+#: .\cookbook\templates\space.html:29 .\cookbook\templates\stats.html:22
msgid "Recipes"
msgstr ""
@@ -1112,7 +1305,7 @@ msgid "New Entry"
msgstr ""
#: .\cookbook\templates\meal_plan.html:113
-#: .\cookbook\templates\shopping_list.html:52
+#: .\cookbook\templates\shopping_list.html:56
msgid "Search Recipe"
msgstr ""
@@ -1142,7 +1335,7 @@ msgstr ""
#: .\cookbook\templates\meal_plan.html:168
#: .\cookbook\templates\shopping_list.html:7
#: .\cookbook\templates\shopping_list.html:29
-#: .\cookbook\templates\shopping_list.html:705
+#: .\cookbook\templates\shopping_list.html:714
msgid "Shopping List"
msgstr ""
@@ -1192,7 +1385,7 @@ msgstr ""
#: .\cookbook\templates\meal_plan.html:270
#: .\cookbook\templates\meal_plan_entry.html:20
-#: .\cookbook\templates\shopping_list.html:250
+#: .\cookbook\templates\shopping_list.html:254
msgid "Shared with"
msgstr ""
@@ -1267,7 +1460,6 @@ msgstr ""
#: .\cookbook\templates\no_groups_info.html:18
#: .\cookbook\templates\no_perm_info.html:15
-#: .\cookbook\templates\no_space_info.html:15
msgid "Please contact your administrator."
msgstr ""
@@ -1282,13 +1474,48 @@ msgid ""
"action."
msgstr ""
-#: .\cookbook\templates\no_space_info.html:5
-#: .\cookbook\templates\no_space_info.html:12
+#: .\cookbook\templates\no_space_info.html:6
+#: .\cookbook\templates\no_space_info.html:13
msgid "No Space"
msgstr ""
-#: .\cookbook\templates\no_space_info.html:15
-msgid "You are not a member of any space."
+#: .\cookbook\templates\no_space_info.html:17
+msgid ""
+"Recipes, foods, shopping lists and more are organized in spaces of one or "
+"more people."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:18
+msgid ""
+"You can either be invited into an existing space or create your own one."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:31
+#: .\cookbook\templates\no_space_info.html:40
+msgid "Join Space"
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:34
+msgid "Join an existing space."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:35
+msgid ""
+"To join an existing space either enter your invite token or click on the "
+"invite link the space owner send you."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:48
+#: .\cookbook\templates\no_space_info.html:56
+msgid "Create Space"
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:51
+msgid "Create your own recipe space."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:52
+msgid "Start your own recipe space and invite other users to it."
msgstr ""
#: .\cookbook\templates\offline.html:6
@@ -1305,28 +1532,29 @@ msgid ""
"recently viewed them. Keep in mind that data might be outdated."
msgstr ""
-#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\stats.html:47
+#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\space.html:56
+#: .\cookbook\templates\stats.html:47
msgid "Comments"
msgstr ""
#: .\cookbook\templates\recipe_view.html:44 .\cookbook\views\delete.py:118
-#: .\cookbook\views\edit.py:170
+#: .\cookbook\views\edit.py:179
msgid "Comment"
msgstr ""
#: .\cookbook\templates\recipes_table.html:19
#: .\cookbook\templates\recipes_table.html:23
-#: .\cookbook\templates\url_import.html:69
+#: .\cookbook\templates\url_import.html:440
msgid "Recipe Image"
msgstr ""
#: .\cookbook\templates\recipes_table.html:51
-#: .\cookbook\templates\url_import.html:74
+#: .\cookbook\templates\url_import.html:445
msgid "Preparation time ca."
msgstr ""
#: .\cookbook\templates\recipes_table.html:57
-#: .\cookbook\templates\url_import.html:79
+#: .\cookbook\templates\url_import.html:450
msgid "Waiting time ca."
msgstr ""
@@ -1342,39 +1570,67 @@ msgstr ""
msgid "Recipe Home"
msgstr ""
-#: .\cookbook\templates\settings.html:22
+#: .\cookbook\templates\settings.html:23
msgid "Account"
msgstr ""
-#: .\cookbook\templates\settings.html:38
-msgid "Link social account"
+#: .\cookbook\templates\settings.html:27
+msgid "Preferences"
msgstr ""
-#: .\cookbook\templates\settings.html:42
+#: .\cookbook\templates\settings.html:31
+msgid "API-Settings"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:39
+msgid "Name Settings"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:47
+msgid "Password Settings"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:55
+msgid "Email Settings"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:57
+msgid "Manage Email Settings"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:61
+msgid "Social"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:63
+msgid "Manage Social Accounts"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:75
msgid "Language"
msgstr ""
-#: .\cookbook\templates\settings.html:67
+#: .\cookbook\templates\settings.html:105
msgid "Style"
msgstr ""
-#: .\cookbook\templates\settings.html:79
+#: .\cookbook\templates\settings.html:125
msgid "API Token"
msgstr ""
-#: .\cookbook\templates\settings.html:80
+#: .\cookbook\templates\settings.html:126
msgid ""
"You can use both basic authentication and token based authentication to "
"access the REST API."
msgstr ""
-#: .\cookbook\templates\settings.html:92
+#: .\cookbook\templates\settings.html:143
msgid ""
"Use the token as an Authorization header prefixed by the word token as shown "
"in the following examples:"
msgstr ""
-#: .\cookbook\templates\settings.html:94
+#: .\cookbook\templates\settings.html:145
msgid "or"
msgstr ""
@@ -1395,58 +1651,55 @@ msgstr ""
msgid "Create Superuser account"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:75
+#: .\cookbook\templates\shopping_list.html:79
msgid "Shopping Recipes"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:79
+#: .\cookbook\templates\shopping_list.html:83
msgid "No recipes selected"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:146
+#: .\cookbook\templates\shopping_list.html:150
msgid "Entry Mode"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:154
+#: .\cookbook\templates\shopping_list.html:158
msgid "Add Entry"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:170
+#: .\cookbook\templates\shopping_list.html:174
msgid "Amount"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:226
+#: .\cookbook\templates\shopping_list.html:230
+#: .\cookbook\templates\supermarket.html:7
msgid "Supermarket"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:236
+#: .\cookbook\templates\shopping_list.html:240
msgid "Select Supermarket"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:260
+#: .\cookbook\templates\shopping_list.html:264
msgid "Select User"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:279
+#: .\cookbook\templates\shopping_list.html:283
msgid "Finished"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:292
+#: .\cookbook\templates\shopping_list.html:296
msgid "You are offline, shopping list might not syncronize."
msgstr ""
-#: .\cookbook\templates\shopping_list.html:357
+#: .\cookbook\templates\shopping_list.html:361
msgid "Copy/Export"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:361
+#: .\cookbook\templates\shopping_list.html:365
msgid "List Prefix"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:708
-msgid "There was an error creating a resource!"
-msgstr ""
-
#: .\cookbook\templates\socialaccount\connections.html:4
#: .\cookbook\templates\socialaccount\connections.html:7
msgid "Account Connections"
@@ -1458,10 +1711,6 @@ msgid ""
" accounts:"
msgstr ""
-#: .\cookbook\templates\socialaccount\connections.html:36
-msgid "Remove"
-msgstr ""
-
#: .\cookbook\templates\socialaccount\connections.html:44
msgid ""
"You currently have no social network accounts connected to this account."
@@ -1471,38 +1720,87 @@ msgstr ""
msgid "Add a 3rd Party Account"
msgstr ""
-#: .\cookbook\templates\stats.html:4
-msgid "Stats"
+#: .\cookbook\templates\space.html:18
+msgid "Manage Subscription"
msgstr ""
-#: .\cookbook\templates\stats.html:19
+#: .\cookbook\templates\space.html:26 .\cookbook\templates\stats.html:19
msgid "Number of objects"
msgstr ""
-#: .\cookbook\templates\stats.html:30
+#: .\cookbook\templates\space.html:39 .\cookbook\templates\stats.html:30
msgid "Recipe Imports"
msgstr ""
-#: .\cookbook\templates\stats.html:38
+#: .\cookbook\templates\space.html:47 .\cookbook\templates\stats.html:38
msgid "Objects stats"
msgstr ""
-#: .\cookbook\templates\stats.html:41
+#: .\cookbook\templates\space.html:50 .\cookbook\templates\stats.html:41
msgid "Recipes without Keywords"
msgstr ""
-#: .\cookbook\templates\stats.html:43
+#: .\cookbook\templates\space.html:52 .\cookbook\templates\stats.html:43
msgid "External Recipes"
msgstr ""
-#: .\cookbook\templates\stats.html:45
+#: .\cookbook\templates\space.html:54 .\cookbook\templates\stats.html:45
msgid "Internal Recipes"
msgstr ""
-#: .\cookbook\templates\system.html:21 .\cookbook\views\lists.py:115
+#: .\cookbook\templates\space.html:67
+msgid "Members"
+msgstr ""
+
+#: .\cookbook\templates\space.html:71
+msgid "Invite User"
+msgstr ""
+
+#: .\cookbook\templates\space.html:82
+msgid "User"
+msgstr ""
+
+#: .\cookbook\templates\space.html:83
+msgid "Groups"
+msgstr ""
+
+#: .\cookbook\templates\space.html:99
+msgid "admin"
+msgstr ""
+
+#: .\cookbook\templates\space.html:100
+msgid "user"
+msgstr ""
+
+#: .\cookbook\templates\space.html:101
+msgid "guest"
+msgstr ""
+
+#: .\cookbook\templates\space.html:102
+msgid "remove"
+msgstr ""
+
+#: .\cookbook\templates\space.html:106
+msgid "Update"
+msgstr ""
+
+#: .\cookbook\templates\space.html:110
+msgid "You cannot edit yourself."
+msgstr ""
+
+#: .\cookbook\templates\space.html:117
+msgid "There are no members in your space yet!"
+msgstr ""
+
+#: .\cookbook\templates\space.html:124 .\cookbook\templates\system.html:21
+#: .\cookbook\views\lists.py:115
msgid "Invite Links"
msgstr ""
+#: .\cookbook\templates\stats.html:4
+msgid "Stats"
+msgstr ""
+
#: .\cookbook\templates\system.html:22
msgid "Show Links"
msgstr ""
@@ -1600,45 +1898,141 @@ msgid ""
" "
msgstr ""
-#: .\cookbook\templates\url_import.html:5
+#: .\cookbook\templates\url_import.html:6
msgid "URL Import"
msgstr ""
-#: .\cookbook\templates\url_import.html:23
+#: .\cookbook\templates\url_import.html:31
+msgid "Drag me to your bookmarks to import recipes from anywhere"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:32
+msgid "Bookmark Me!"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:61
msgid "Enter website URL"
msgstr ""
-#: .\cookbook\templates\url_import.html:36
-msgid "Enter json directly"
+#: .\cookbook\templates\url_import.html:97
+msgid "Select recipe files to import or drop them here..."
msgstr ""
-#: .\cookbook\templates\url_import.html:57
+#: .\cookbook\templates\url_import.html:118
+msgid "Paste json or html source here to load recipe."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:146
+msgid "Preview Recipe Data"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:147
+msgid "Drag recipe attributes from the right into the appropriate box below."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:156
+#: .\cookbook\templates\url_import.html:173
+#: .\cookbook\templates\url_import.html:190
+#: .\cookbook\templates\url_import.html:209
+#: .\cookbook\templates\url_import.html:227
+#: .\cookbook\templates\url_import.html:242
+#: .\cookbook\templates\url_import.html:257
+#: .\cookbook\templates\url_import.html:273
+#: .\cookbook\templates\url_import.html:300
+#: .\cookbook\templates\url_import.html:351
+msgid "Clear Contents"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:158
+msgid "Text dragged here will be appended to the name."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:175
+msgid "Text dragged here will be appended to the description."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:192
+msgid "Keywords dragged here will be appended to current list"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:207
+msgid "Image"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:239
+msgid "Prep Time"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:254
+msgid "Cook Time"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:275
+msgid "Ingredients dragged here will be appended to current list."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:302
+msgid ""
+"Recipe instructions dragged here will be appended to current instructions."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:325
+msgid "Discovered Attributes"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:327
+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:344
+msgid "Show Blank Field"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:349
+msgid "Blank Field"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:353
+msgid "Items dragged to Blank Field will be appended."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:400
+msgid "Delete Text"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:413
+msgid "Delete image"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:429
msgid "Recipe Name"
msgstr ""
-#: .\cookbook\templates\url_import.html:62
+#: .\cookbook\templates\url_import.html:433
msgid "Recipe Description"
msgstr ""
-#: .\cookbook\templates\url_import.html:123
-#: .\cookbook\templates\url_import.html:155
-#: .\cookbook\templates\url_import.html:211
+#: .\cookbook\templates\url_import.html:494
+#: .\cookbook\templates\url_import.html:526
+#: .\cookbook\templates\url_import.html:582
msgid "Select one"
msgstr ""
-#: .\cookbook\templates\url_import.html:225
+#: .\cookbook\templates\url_import.html:596
msgid "All Keywords"
msgstr ""
-#: .\cookbook\templates\url_import.html:228
+#: .\cookbook\templates\url_import.html:599
msgid "Import all keywords, not only the ones already existing."
msgstr ""
-#: .\cookbook\templates\url_import.html:255
+#: .\cookbook\templates\url_import.html:626
msgid "Information"
msgstr ""
-#: .\cookbook\templates\url_import.html:257
+#: .\cookbook\templates\url_import.html:628
msgid ""
" Only websites containing ld+json or microdata information can currently\n"
" be imported. Most big recipe pages "
@@ -1649,48 +2043,73 @@ msgid ""
" github issues."
msgstr ""
-#: .\cookbook\templates\url_import.html:265
+#: .\cookbook\templates\url_import.html:636
msgid "Google ld+json Info"
msgstr ""
-#: .\cookbook\templates\url_import.html:268
+#: .\cookbook\templates\url_import.html:639
msgid "GitHub Issues"
msgstr ""
-#: .\cookbook\templates\url_import.html:270
+#: .\cookbook\templates\url_import.html:641
msgid "Recipe Markup Specification"
msgstr ""
-#: .\cookbook\views\api.py:71
+#: .\cookbook\views\api.py:77
msgid "Parameter updated_at incorrectly formatted"
msgstr ""
-#: .\cookbook\views\api.py:455 .\cookbook\views\views.py:226
+#: .\cookbook\views\api.py:553 .\cookbook\views\views.py:295
msgid "This feature is not available in the demo version!"
msgstr ""
-#: .\cookbook\views\api.py:478
+#: .\cookbook\views\api.py:576
msgid "Sync successful!"
msgstr ""
-#: .\cookbook\views\api.py:483
+#: .\cookbook\views\api.py:581
msgid "Error synchronizing with Storage"
msgstr ""
-#: .\cookbook\views\api.py:556 .\cookbook\views\api.py:576
+#: .\cookbook\views\api.py:649
+msgid "Nothing to do."
+msgstr ""
+
+#: .\cookbook\views\api.py:664
+msgid "The requested site provided malformed data and cannot be read."
+msgstr ""
+
+#: .\cookbook\views\api.py:671
msgid "The requested page could not be found."
msgstr ""
-#: .\cookbook\views\api.py:585
+#: .\cookbook\views\api.py:680
msgid ""
-"The requested page refused to provide any information (Status Code 403)."
+"The requested site does not provide any recognized data format to import the "
+"recipe from."
msgstr ""
-#: .\cookbook\views\api.py:611
-msgid "Could not parse correctly..."
+#: .\cookbook\views\api.py:694
+msgid "No useable data could be found."
msgstr ""
-#: .\cookbook\views\data.py:94
+#: .\cookbook\views\api.py:710
+msgid "I couldn't find anything to do."
+msgstr ""
+
+#: .\cookbook\views\data.py:30 .\cookbook\views\data.py:121
+#: .\cookbook\views\edit.py:50 .\cookbook\views\import_export.py:67
+#: .\cookbook\views\new.py:32
+msgid "You have reached the maximum number of recipes for your space."
+msgstr ""
+
+#: .\cookbook\views\data.py:34 .\cookbook\views\data.py:125
+#: .\cookbook\views\edit.py:54 .\cookbook\views\import_export.py:71
+#: .\cookbook\views\new.py:36
+msgid "You have more users than allowed in your space."
+msgstr ""
+
+#: .\cookbook\views\data.py:103
#, python-format
msgid "Batch edit done. %(count)d recipe was updated."
msgid_plural "Batch edit done. %(count)d Recipes where updated."
@@ -1702,7 +2121,7 @@ msgid "Monitor"
msgstr ""
#: .\cookbook\views\delete.py:96 .\cookbook\views\lists.py:102
-#: .\cookbook\views\new.py:86
+#: .\cookbook\views\new.py:98
msgid "Storage Backend"
msgstr ""
@@ -1711,8 +2130,8 @@ msgid ""
"Could not delete this storage backend as it is used in at least one monitor."
msgstr ""
-#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:204
-#: .\cookbook\views\new.py:144
+#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:213
+#: .\cookbook\views\new.py:156
msgid "Recipe Book"
msgstr ""
@@ -1720,55 +2139,55 @@ msgstr ""
msgid "Bookmarks"
msgstr ""
-#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:214
+#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:252
msgid "Invite Link"
msgstr ""
-#: .\cookbook\views\edit.py:110
+#: .\cookbook\views\edit.py:119
msgid "Food"
msgstr ""
-#: .\cookbook\views\edit.py:119
+#: .\cookbook\views\edit.py:128
msgid "You cannot edit this storage!"
msgstr ""
-#: .\cookbook\views\edit.py:139
+#: .\cookbook\views\edit.py:148
msgid "Storage saved!"
msgstr ""
-#: .\cookbook\views\edit.py:145
+#: .\cookbook\views\edit.py:154
msgid "There was an error updating this storage backend!"
msgstr ""
-#: .\cookbook\views\edit.py:156
+#: .\cookbook\views\edit.py:165
msgid "Storage"
msgstr ""
-#: .\cookbook\views\edit.py:252
+#: .\cookbook\views\edit.py:261
msgid "Changes saved!"
msgstr ""
-#: .\cookbook\views\edit.py:256
+#: .\cookbook\views\edit.py:265
msgid "Error saving changes!"
msgstr ""
-#: .\cookbook\views\edit.py:289
+#: .\cookbook\views\edit.py:299
msgid "Units merged!"
msgstr ""
-#: .\cookbook\views\edit.py:291 .\cookbook\views\edit.py:307
+#: .\cookbook\views\edit.py:301 .\cookbook\views\edit.py:317
msgid "Cannot merge with the same object!"
msgstr ""
-#: .\cookbook\views\edit.py:305
+#: .\cookbook\views\edit.py:315
msgid "Foods merged!"
msgstr ""
-#: .\cookbook\views\import_export.py:73
+#: .\cookbook\views\import_export.py:93
msgid "Importing is not implemented for this provider"
msgstr ""
-#: .\cookbook\views\import_export.py:92
+#: .\cookbook\views\import_export.py:115
msgid "Exporting is not implemented for this provider"
msgstr ""
@@ -1784,41 +2203,103 @@ msgstr ""
msgid "Shopping Lists"
msgstr ""
-#: .\cookbook\views\new.py:111
+#: .\cookbook\views\new.py:123
msgid "Imported new recipe!"
msgstr ""
-#: .\cookbook\views\new.py:114
+#: .\cookbook\views\new.py:126
msgid "There was an error importing this recipe!"
msgstr ""
-#: .\cookbook\views\views.py:123
+#: .\cookbook\views\new.py:226
+msgid "Hello"
+msgstr ""
+
+#: .\cookbook\views\new.py:226
+msgid "You have been invited by "
+msgstr ""
+
+#: .\cookbook\views\new.py:227
+msgid " to join their Tandoor Recipes space "
+msgstr ""
+
+#: .\cookbook\views\new.py:228
+msgid "Click the following link to activate your account: "
+msgstr ""
+
+#: .\cookbook\views\new.py:229
+msgid ""
+"If the link does not work use the following code to manually join the space: "
+msgstr ""
+
+#: .\cookbook\views\new.py:230
+msgid "The invitation is valid until "
+msgstr ""
+
+#: .\cookbook\views\new.py:231
+msgid ""
+"Tandoor Recipes is an Open Source recipe manager. Check it out on GitHub "
+msgstr ""
+
+#: .\cookbook\views\new.py:234
+msgid "Tandoor Recipes Invite"
+msgstr ""
+
+#: .\cookbook\views\new.py:241
+msgid "Invite link successfully send to user."
+msgstr ""
+
+#: .\cookbook\views\new.py:244
+msgid ""
+"You have send to many emails, please share the link manually or wait a few "
+"hours."
+msgstr ""
+
+#: .\cookbook\views\new.py:246
+msgid "Email to user could not be send, please share link manually."
+msgstr ""
+
+#: .\cookbook\views\views.py:125
+msgid ""
+"You have successfully created your own recipe space. Start by adding some "
+"recipes or invite other people to join you."
+msgstr ""
+
+#: .\cookbook\views\views.py:173
msgid "You do not have the required permissions to perform this action!"
msgstr ""
-#: .\cookbook\views\views.py:134
+#: .\cookbook\views\views.py:184
msgid "Comment saved!"
msgstr ""
-#: .\cookbook\views\views.py:326
+#: .\cookbook\views\views.py:396
msgid ""
"The setup page can only be used to create the first user! If you have "
"forgotten your superuser credentials please consult the django documentation "
"on how to reset passwords."
msgstr ""
-#: .\cookbook\views\views.py:333 .\cookbook\views\views.py:378
+#: .\cookbook\views\views.py:403
msgid "Passwords dont match!"
msgstr ""
-#: .\cookbook\views\views.py:349 .\cookbook\views\views.py:385
+#: .\cookbook\views\views.py:419
msgid "User has been created, please login!"
msgstr ""
-#: .\cookbook\views\views.py:365
+#: .\cookbook\views\views.py:435
msgid "Malformed Invite Link supplied!"
msgstr ""
-#: .\cookbook\views\views.py:405
+#: .\cookbook\views\views.py:441
+msgid "You are already member of a space and therefore cannot join this one."
+msgstr ""
+
+#: .\cookbook\views\views.py:452
+msgid "Successfully joined space."
+msgstr ""
+
+#: .\cookbook\views\views.py:458
msgid "Invite Link not valid or already used!"
msgstr ""
diff --git a/cookbook/locale/tr/LC_MESSAGES/django.po b/cookbook/locale/tr/LC_MESSAGES/django.po
index 979d1713..0eb932b3 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-04-11 15:09+0200\n"
+"POT-Creation-Date: 2021-06-12 20:30+0200\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/"
@@ -22,14 +22,15 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-#: .\cookbook\filters.py:23 .\cookbook\templates\base.html:91
-#: .\cookbook\templates\forms\edit_internal_recipe.html:219
+#: .\cookbook\filters.py:23 .\cookbook\templates\base.html:98
+#: .\cookbook\templates\forms\edit_internal_recipe.html:246
#: .\cookbook\templates\forms\ingredients.html:34
-#: .\cookbook\templates\stats.html:28 .\cookbook\views\lists.py:67
+#: .\cookbook\templates\space.html:37 .\cookbook\templates\stats.html:28
+#: .\cookbook\templates\url_import.html:270 .\cookbook\views\lists.py:67
msgid "Ingredients"
msgstr "Malzemeler"
-#: .\cookbook\forms.py:45
+#: .\cookbook\forms.py:49
msgid ""
"Color of the top navigation bar. Not all colors work with all themes, just "
"try them out!"
@@ -37,35 +38,35 @@ msgstr ""
"Gezinti çubuğunun rengi. Bütün renkeler bütün temalarla çalışmayabilir, önce "
"deneyin!"
-#: .\cookbook\forms.py:46
+#: .\cookbook\forms.py:51
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:47
+#: .\cookbook\forms.py:53
msgid ""
"Enables support for fractions in ingredient amounts (e.g. convert decimals "
"to fractions automatically)"
msgstr ""
-#: .\cookbook\forms.py:48
+#: .\cookbook\forms.py:56
msgid ""
"Users with whom newly created meal plan/shopping list entries should be "
"shared by default."
msgstr ""
-#: .\cookbook\forms.py:49
+#: .\cookbook\forms.py:58
msgid "Show recently viewed recipes on search page."
msgstr "Son görüntülenen tarifleri arama sayfasında göster."
-#: .\cookbook\forms.py:50
+#: .\cookbook\forms.py:59
msgid "Number of decimals to round ingredients."
msgstr "Malzeme birimleri için yuvarlanma basamağı."
-#: .\cookbook\forms.py:51
+#: .\cookbook\forms.py:60
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:53
+#: .\cookbook\forms.py:62
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. "
@@ -78,167 +79,181 @@ 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:56
+#: .\cookbook\forms.py:65
msgid "Makes the navbar stick to the top of the page."
msgstr ""
-#: .\cookbook\forms.py:72
+#: .\cookbook\forms.py:81
msgid ""
"Both fields are optional. If none are given the username will be displayed "
"instead"
msgstr ""
-#: .\cookbook\forms.py:93 .\cookbook\forms.py:315
-#: .\cookbook\templates\forms\edit_internal_recipe.html:45
+#: .\cookbook\forms.py:102 .\cookbook\forms.py:331
+#: .\cookbook\templates\forms\edit_internal_recipe.html:49
+#: .\cookbook\templates\url_import.html:154
msgid "Name"
msgstr "İsim"
-#: .\cookbook\forms.py:94 .\cookbook\forms.py:316
-#: .\cookbook\templates\base.html:98
-#: .\cookbook\templates\forms\edit_internal_recipe.html:81
-#: .\cookbook\templates\stats.html:24 .\cookbook\templates\url_import.html:202
+#: .\cookbook\forms.py:103 .\cookbook\forms.py:332
+#: .\cookbook\templates\base.html:105
+#: .\cookbook\templates\forms\edit_internal_recipe.html:85
+#: .\cookbook\templates\space.html:33 .\cookbook\templates\stats.html:24
+#: .\cookbook\templates\url_import.html:188
+#: .\cookbook\templates\url_import.html:573
msgid "Keywords"
msgstr ""
-#: .\cookbook\forms.py:95
+#: .\cookbook\forms.py:104
msgid "Preparation time in minutes"
msgstr ""
-#: .\cookbook\forms.py:96
+#: .\cookbook\forms.py:105
msgid "Waiting time (cooking/baking) in minutes"
msgstr ""
-#: .\cookbook\forms.py:97 .\cookbook\forms.py:317
+#: .\cookbook\forms.py:106 .\cookbook\forms.py:333
msgid "Path"
msgstr ""
-#: .\cookbook\forms.py:98
+#: .\cookbook\forms.py:107
msgid "Storage UID"
msgstr ""
-#: .\cookbook\forms.py:121
+#: .\cookbook\forms.py:133
msgid "Default"
msgstr ""
-#: .\cookbook\forms.py:130
+#: .\cookbook\forms.py:144 .\cookbook\templates\url_import.html:90
msgid ""
"To prevent duplicates recipes with the same name as existing ones are "
"ignored. Check this box to import everything."
msgstr ""
-#: .\cookbook\forms.py:149
+#: .\cookbook\forms.py:164
msgid "New Unit"
msgstr ""
-#: .\cookbook\forms.py:150
+#: .\cookbook\forms.py:165
msgid "New unit that other gets replaced by."
msgstr ""
-#: .\cookbook\forms.py:155
+#: .\cookbook\forms.py:170
msgid "Old Unit"
msgstr ""
-#: .\cookbook\forms.py:156
+#: .\cookbook\forms.py:171
msgid "Unit that should be replaced."
msgstr ""
-#: .\cookbook\forms.py:172
+#: .\cookbook\forms.py:187
msgid "New Food"
msgstr ""
-#: .\cookbook\forms.py:173
+#: .\cookbook\forms.py:188
msgid "New food that other gets replaced by."
msgstr ""
-#: .\cookbook\forms.py:178
+#: .\cookbook\forms.py:193
msgid "Old Food"
msgstr ""
-#: .\cookbook\forms.py:179
+#: .\cookbook\forms.py:194
msgid "Food that should be replaced."
msgstr ""
-#: .\cookbook\forms.py:197
+#: .\cookbook\forms.py:212
msgid "Add your comment: "
msgstr ""
-#: .\cookbook\forms.py:238
+#: .\cookbook\forms.py:253
msgid "Leave empty for dropbox and enter app password for nextcloud."
msgstr ""
-#: .\cookbook\forms.py:245
+#: .\cookbook\forms.py:260
msgid "Leave empty for nextcloud and enter api token for dropbox."
msgstr ""
-#: .\cookbook\forms.py:253
+#: .\cookbook\forms.py:269
msgid ""
"Leave empty for dropbox and enter only base url for nextcloud (/remote."
"php/webdav/
is added automatically)"
msgstr ""
-#: .\cookbook\forms.py:291
+#: .\cookbook\forms.py:307
msgid "Search String"
msgstr ""
-#: .\cookbook\forms.py:318
+#: .\cookbook\forms.py:334
msgid "File ID"
msgstr ""
-#: .\cookbook\forms.py:354
+#: .\cookbook\forms.py:370
msgid "You must provide at least a recipe or a title."
msgstr ""
-#: .\cookbook\forms.py:367
+#: .\cookbook\forms.py:383
msgid "You can list default users to share recipes with in the settings."
msgstr ""
-#: .\cookbook\forms.py:368
-#: .\cookbook\templates\forms\edit_internal_recipe.html:377
+#: .\cookbook\forms.py:384
+#: .\cookbook\templates\forms\edit_internal_recipe.html:404
msgid ""
"You can use markdown to format this field. See the docs here"
msgstr ""
-#: .\cookbook\forms.py:393
-msgid "A username is not required, if left blank the new user can choose one."
+#: .\cookbook\forms.py:409
+msgid "Maximum number of users for this space reached."
msgstr ""
-#: .\cookbook\helper\permission_helper.py:123
-#: .\cookbook\helper\permission_helper.py:129
-#: .\cookbook\helper\permission_helper.py:151
-#: .\cookbook\helper\permission_helper.py:196
-#: .\cookbook\helper\permission_helper.py:210
-#: .\cookbook\helper\permission_helper.py:221
-#: .\cookbook\helper\permission_helper.py:232 .\cookbook\views\data.py:30
-#: .\cookbook\views\views.py:112 .\cookbook\views\views.py:116
-#: .\cookbook\views\views.py:184
-msgid "You do not have the required permissions to view this page!"
+#: .\cookbook\forms.py:415
+msgid "Email address already taken!"
msgstr ""
-#: .\cookbook\helper\permission_helper.py:141
+#: .\cookbook\forms.py:423
+msgid ""
+"An email address is not required but if present the invite link will be send "
+"to the user."
+msgstr ""
+
+#: .\cookbook\forms.py:438
+msgid "Name already taken."
+msgstr ""
+
+#: .\cookbook\forms.py:449
+msgid "Accept Terms and Privacy"
+msgstr ""
+
+#: .\cookbook\helper\AllAuthCustomAdapter.py:30
+msgid ""
+"In order to prevent spam, the requested email was not send. Please wait a "
+"few minutes and try again."
+msgstr ""
+
+#: .\cookbook\helper\permission_helper.py:124
+#: .\cookbook\helper\permission_helper.py:144 .\cookbook\views\views.py:147
msgid "You are not logged in and therefore cannot view this page!"
msgstr ""
-#: .\cookbook\helper\permission_helper.py:145
-#: .\cookbook\helper\permission_helper.py:167
-#: .\cookbook\helper\permission_helper.py:182
+#: .\cookbook\helper\permission_helper.py:127
+#: .\cookbook\helper\permission_helper.py:132
+#: .\cookbook\helper\permission_helper.py:154
+#: .\cookbook\helper\permission_helper.py:199
+#: .\cookbook\helper\permission_helper.py:213
+#: .\cookbook\helper\permission_helper.py:224
+#: .\cookbook\helper\permission_helper.py:235 .\cookbook\views\data.py:39
+#: .\cookbook\views\views.py:158 .\cookbook\views\views.py:165
+#: .\cookbook\views\views.py:253
+msgid "You do not have the required permissions to view this page!"
+msgstr ""
+
+#: .\cookbook\helper\permission_helper.py:148
+#: .\cookbook\helper\permission_helper.py:170
+#: .\cookbook\helper\permission_helper.py:185
msgid "You cannot interact with this object as it is not owned by you!"
msgstr ""
-#: .\cookbook\helper\recipe_url_import.py:40 .\cookbook\views\api.py:549
-msgid "The requested site provided malformed data and cannot be read."
-msgstr ""
-
-#: .\cookbook\helper\recipe_url_import.py:54
-msgid ""
-"The requested site does not provide any recognized data format to import the "
-"recipe from."
-msgstr ""
-
-#: .\cookbook\helper\recipe_url_import.py:160
-msgid "Imported from"
-msgstr ""
-
#: .\cookbook\helper\template_helper.py:60
#: .\cookbook\helper\template_helper.py:62
msgid "Could not parse template code."
@@ -248,42 +263,53 @@ msgstr ""
#: .\cookbook\templates\import.html:14 .\cookbook\templates\import.html:20
#: .\cookbook\templates\import_response.html:7
#: .\cookbook\templates\test.html:14 .\cookbook\templates\test.html:20
-#: .\cookbook\templates\url_import.html:233 .\cookbook\views\delete.py:60
-#: .\cookbook\views\edit.py:190
+#: .\cookbook\templates\url_import.html:27
+#: .\cookbook\templates\url_import.html:101
+#: .\cookbook\templates\url_import.html:123
+#: .\cookbook\templates\url_import.html:317
+#: .\cookbook\templates\url_import.html:604 .\cookbook\views\delete.py:60
+#: .\cookbook\views\edit.py:199
msgid "Import"
msgstr ""
-#: .\cookbook\integration\integration.py:131
+#: .\cookbook\integration\integration.py:162
msgid ""
"Importer expected a .zip file. Did you choose the correct importer type for "
"your data ?"
msgstr ""
-#: .\cookbook\integration\integration.py:134
+#: .\cookbook\integration\integration.py:165
+msgid ""
+"An unexpected error occurred during the import. Please make sure you have "
+"uploaded a valid file."
+msgstr ""
+
+#: .\cookbook\integration\integration.py:169
msgid "The following recipes were ignored because they already existed:"
msgstr ""
-#: .\cookbook\integration\integration.py:137
+#: .\cookbook\integration\integration.py:173
#, python-format
msgid "Imported %s recipes."
msgstr ""
-#: .\cookbook\integration\paprika.py:44
+#: .\cookbook\integration\paprika.py:46
msgid "Notes"
msgstr ""
-#: .\cookbook\integration\paprika.py:47
+#: .\cookbook\integration\paprika.py:49
msgid "Nutritional Information"
msgstr ""
-#: .\cookbook\integration\paprika.py:50
+#: .\cookbook\integration\paprika.py:53
msgid "Source"
msgstr ""
#: .\cookbook\integration\safron.py:23
-#: .\cookbook\templates\forms\edit_internal_recipe.html:75
+#: .\cookbook\templates\forms\edit_internal_recipe.html:79
#: .\cookbook\templates\include\log_cooking.html:16
-#: .\cookbook\templates\url_import.html:84
+#: .\cookbook\templates\url_import.html:224
+#: .\cookbook\templates\url_import.html:455
msgid "Servings"
msgstr ""
@@ -292,11 +318,11 @@ msgid "Waiting time"
msgstr ""
#: .\cookbook\integration\safron.py:27
-#: .\cookbook\templates\forms\edit_internal_recipe.html:69
+#: .\cookbook\templates\forms\edit_internal_recipe.html:73
msgid "Preparation Time"
msgstr ""
-#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:71
+#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:78
#: .\cookbook\templates\forms\ingredients.html:7
#: .\cookbook\templates\index.html:7
msgid "Cookbook"
@@ -322,44 +348,72 @@ msgstr ""
msgid "Other"
msgstr ""
-#: .\cookbook\models.py:110 .\cookbook\templates\shopping_list.html:48
+#: .\cookbook\models.py:71
+msgid ""
+"Maximum file storage for space in MB. 0 for unlimited, -1 to disable file "
+"upload."
+msgstr ""
+
+#: .\cookbook\models.py:121 .\cookbook\templates\search.html:7
+#: .\cookbook\templates\shopping_list.html:52
msgid "Search"
msgstr ""
-#: .\cookbook\models.py:111 .\cookbook\templates\base.html:85
+#: .\cookbook\models.py:122 .\cookbook\templates\base.html:92
#: .\cookbook\templates\meal_plan.html:5 .\cookbook\views\delete.py:152
-#: .\cookbook\views\edit.py:224 .\cookbook\views\new.py:188
+#: .\cookbook\views\edit.py:233 .\cookbook\views\new.py:201
msgid "Meal-Plan"
msgstr ""
-#: .\cookbook\models.py:112 .\cookbook\templates\base.html:82
+#: .\cookbook\models.py:123 .\cookbook\templates\base.html:89
msgid "Books"
msgstr ""
-#: .\cookbook\models.py:119
+#: .\cookbook\models.py:131
msgid "Small"
msgstr ""
-#: .\cookbook\models.py:119
+#: .\cookbook\models.py:131
msgid "Large"
msgstr ""
-#: .\cookbook\models.py:327
-#: .\cookbook\templates\forms\edit_internal_recipe.html:198
+#: .\cookbook\models.py:131 .\cookbook\templates\generic\new_template.html:6
+#: .\cookbook\templates\generic\new_template.html:14
+#: .\cookbook\templates\meal_plan.html:323
+msgid "New"
+msgstr ""
+
+#: .\cookbook\models.py:340
+#: .\cookbook\templates\forms\edit_internal_recipe.html:202
msgid "Text"
msgstr ""
-#: .\cookbook\models.py:327
-#: .\cookbook\templates\forms\edit_internal_recipe.html:199
+#: .\cookbook\models.py:340
+#: .\cookbook\templates\forms\edit_internal_recipe.html:203
msgid "Time"
msgstr ""
+#: .\cookbook\models.py:340
+#: .\cookbook\templates\forms\edit_internal_recipe.html:204
+#: .\cookbook\templates\forms\edit_internal_recipe.html:218
+msgid "File"
+msgstr ""
+
+#: .\cookbook\serializer.py:109
+msgid "File uploads are not enabled for this Space."
+msgstr ""
+
+#: .\cookbook\serializer.py:117
+msgid "You have reached your file upload limit."
+msgstr ""
+
#: .\cookbook\tables.py:35 .\cookbook\templates\books.html:36
#: .\cookbook\templates\generic\edit_template.html:6
#: .\cookbook\templates\generic\edit_template.html:14
#: .\cookbook\templates\meal_plan.html:281
#: .\cookbook\templates\recipes_table.html:82
#: .\cookbook\templates\shopping_list.html:33
+#: .\cookbook\templates\space.html:84
msgid "Edit"
msgstr ""
@@ -373,10 +427,6 @@ msgstr ""
msgid "Delete"
msgstr ""
-#: .\cookbook\tables.py:144
-msgid "Link"
-msgstr ""
-
#: .\cookbook\templates\404.html:5
msgid "404 Error"
msgstr ""
@@ -393,21 +443,120 @@ msgstr ""
msgid "Report a Bug"
msgstr ""
-#: .\cookbook\templates\account\login.html:7
-#: .\cookbook\templates\base.html:170
+#: .\cookbook\templates\account\email.html:6
+#: .\cookbook\templates\account\email.html:9
+msgid "E-mail Addresses"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:11
+msgid "The following e-mail addresses are associated with your account:"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:28
+msgid "Verified"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:30
+msgid "Unverified"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:32
+msgid "Primary"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:39
+msgid "Make Primary"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:41
+msgid "Re-send Verification"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:42
+#: .\cookbook\templates\socialaccount\connections.html:36
+msgid "Remove"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:50
+msgid "Warning:"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:50
+msgid ""
+"You currently do not have any e-mail address set up. You should really add "
+"an e-mail address so you can receive notifications, reset your password, etc."
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:56
+msgid "Add E-mail Address"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:61
+msgid "Add E-mail"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:71
+msgid "Do you really want to remove the selected e-mail address?"
+msgstr ""
+
+#: .\cookbook\templates\account\email_confirm.html:6
+#: .\cookbook\templates\account\email_confirm.html:10
+msgid "Confirm E-mail Address"
+msgstr ""
+
+#: .\cookbook\templates\account\email_confirm.html:16
+#, python-format
+msgid ""
+"Please confirm that\n"
+" %(email)s is an e-mail address "
+"for user %(user_display)s\n"
+" ."
+msgstr ""
+
+#: .\cookbook\templates\account\email_confirm.html:22
+#: .\cookbook\templates\generic\delete_template.html:21
+msgid "Confirm"
+msgstr ""
+
+#: .\cookbook\templates\account\email_confirm.html:29
+#, python-format
+msgid ""
+"This e-mail confirmation link expired or is invalid. Please\n"
+" issue a new e-mail confirmation "
+"request."
+msgstr ""
+
+#: .\cookbook\templates\account\login.html:8
+#: .\cookbook\templates\base.html:180
msgid "Login"
msgstr ""
-#: .\cookbook\templates\account\login.html:13
-#: .\cookbook\templates\account\login.html:28
+#: .\cookbook\templates\account\login.html:15
+#: .\cookbook\templates\account\login.html:31
+#: .\cookbook\templates\account\signup.html:69
+#: .\cookbook\templates\account\signup_closed.html:15
msgid "Sign In"
msgstr ""
-#: .\cookbook\templates\account\login.html:38
+#: .\cookbook\templates\account\login.html:32
+msgid "Sign Up"
+msgstr ""
+
+#: .\cookbook\templates\account\login.html:36
+#: .\cookbook\templates\account\login.html:37
+#: .\cookbook\templates\account\password_reset.html:29
+msgid "Reset My Password"
+msgstr ""
+
+#: .\cookbook\templates\account\login.html:37
+msgid "Lost your password?"
+msgstr ""
+
+#: .\cookbook\templates\account\login.html:48
msgid "Social Login"
msgstr ""
-#: .\cookbook\templates\account\login.html:39
+#: .\cookbook\templates\account\login.html:49
msgid "You can use any of the following providers to sign in."
msgstr ""
@@ -421,115 +570,161 @@ msgstr ""
msgid "Are you sure you want to sign out?"
msgstr ""
-#: .\cookbook\templates\account\password_reset.html:5
-#: .\cookbook\templates\account\password_reset_done.html:5
+#: .\cookbook\templates\account\password_reset.html:7
+#: .\cookbook\templates\account\password_reset.html:13
+#: .\cookbook\templates\account\password_reset_done.html:7
+#: .\cookbook\templates\account\password_reset_done.html:10
msgid "Password Reset"
msgstr ""
-#: .\cookbook\templates\account\password_reset.html:9
-#: .\cookbook\templates\account\password_reset_done.html:9
-msgid "Password reset is not implemented for the time being!"
+#: .\cookbook\templates\account\password_reset.html:24
+msgid ""
+"Forgotten your password? Enter your e-mail address below, and we'll send you "
+"an e-mail allowing you to reset it."
msgstr ""
-#: .\cookbook\templates\account\signup.html:5
+#: .\cookbook\templates\account\password_reset.html:32
+msgid "Password reset is disabled on this instance."
+msgstr ""
+
+#: .\cookbook\templates\account\password_reset_done.html:16
+msgid ""
+"We have sent you an e-mail. Please contact us if you do not receive it "
+"within a few minutes."
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:6
msgid "Register"
msgstr ""
-#: .\cookbook\templates\account\signup.html:9
-msgid "Create your Account"
+#: .\cookbook\templates\account\signup.html:12
+msgid "Create an Account"
msgstr ""
-#: .\cookbook\templates\account\signup.html:14
+#: .\cookbook\templates\account\signup.html:42
+msgid "I accept the follwoing"
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:45
+msgid "Terms and Conditions"
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:48
+msgid "and"
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:52
+msgid "Privacy Policy"
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:65
msgid "Create User"
msgstr ""
-#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:160
+#: .\cookbook\templates\account\signup.html:69
+msgid "Already have an account?"
+msgstr ""
+
+#: .\cookbook\templates\account\signup_closed.html:5
+#: .\cookbook\templates\account\signup_closed.html:11
+msgid "Sign Up Closed"
+msgstr ""
+
+#: .\cookbook\templates\account\signup_closed.html:13
+msgid "We are sorry, but the sign up is currently closed."
+msgstr ""
+
+#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:170
#: .\cookbook\templates\rest_framework\api.html:11
msgid "API Documentation"
msgstr ""
-#: .\cookbook\templates\base.html:78
+#: .\cookbook\templates\base.html:85
msgid "Utensils"
msgstr ""
-#: .\cookbook\templates\base.html:88
+#: .\cookbook\templates\base.html:95
msgid "Shopping"
msgstr ""
-#: .\cookbook\templates\base.html:102 .\cookbook\views\delete.py:84
-#: .\cookbook\views\edit.py:93 .\cookbook\views\lists.py:26
-#: .\cookbook\views\new.py:66
+#: .\cookbook\templates\base.html:109 .\cookbook\views\delete.py:84
+#: .\cookbook\views\edit.py:102 .\cookbook\views\lists.py:26
+#: .\cookbook\views\new.py:78
msgid "Keyword"
msgstr ""
-#: .\cookbook\templates\base.html:104
+#: .\cookbook\templates\base.html:111
msgid "Batch Edit"
msgstr ""
-#: .\cookbook\templates\base.html:109
+#: .\cookbook\templates\base.html:116
msgid "Storage Data"
msgstr ""
-#: .\cookbook\templates\base.html:113
+#: .\cookbook\templates\base.html:120
msgid "Storage Backends"
msgstr ""
-#: .\cookbook\templates\base.html:115
+#: .\cookbook\templates\base.html:122
msgid "Configure Sync"
msgstr ""
-#: .\cookbook\templates\base.html:117
+#: .\cookbook\templates\base.html:124
msgid "Discovered Recipes"
msgstr ""
-#: .\cookbook\templates\base.html:119
+#: .\cookbook\templates\base.html:126
msgid "Discovery Log"
msgstr ""
-#: .\cookbook\templates\base.html:121 .\cookbook\templates\stats.html:10
+#: .\cookbook\templates\base.html:128 .\cookbook\templates\stats.html:10
msgid "Statistics"
msgstr ""
-#: .\cookbook\templates\base.html:123
+#: .\cookbook\templates\base.html:130
msgid "Units & Ingredients"
msgstr ""
-#: .\cookbook\templates\base.html:125
+#: .\cookbook\templates\base.html:132 .\cookbook\templates\index.html:47
msgid "Import Recipe"
msgstr ""
-#: .\cookbook\templates\base.html:144 .\cookbook\templates\settings.html:6
+#: .\cookbook\templates\base.html:151 .\cookbook\templates\settings.html:6
#: .\cookbook\templates\settings.html:16
msgid "Settings"
msgstr ""
-#: .\cookbook\templates\base.html:146 .\cookbook\templates\history.html:6
+#: .\cookbook\templates\base.html:153 .\cookbook\templates\history.html:6
#: .\cookbook\templates\history.html:14
msgid "History"
msgstr ""
-#: .\cookbook\templates\base.html:150 .\cookbook\templates\system.html:13
+#: .\cookbook\templates\base.html:155 .\cookbook\templates\space.html:7
+msgid "Space Settings"
+msgstr ""
+
+#: .\cookbook\templates\base.html:160 .\cookbook\templates\system.html:13
msgid "System"
msgstr ""
-#: .\cookbook\templates\base.html:152
+#: .\cookbook\templates\base.html:162
msgid "Admin"
msgstr ""
-#: .\cookbook\templates\base.html:156
+#: .\cookbook\templates\base.html:166
msgid "Markdown Guide"
msgstr ""
-#: .\cookbook\templates\base.html:158
+#: .\cookbook\templates\base.html:168
msgid "GitHub"
msgstr ""
-#: .\cookbook\templates\base.html:162
+#: .\cookbook\templates\base.html:172
msgid "API Browser"
msgstr ""
-#: .\cookbook\templates\base.html:165
-msgid "Logout"
+#: .\cookbook\templates\base.html:175
+msgid "Log out"
msgstr ""
#: .\cookbook\templates\batch\edit.html:6
@@ -544,7 +739,7 @@ msgstr ""
msgid "Add the specified keywords to all recipes containing a word"
msgstr ""
-#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:76
+#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:85
msgid "Sync"
msgstr ""
@@ -571,7 +766,7 @@ msgstr ""
msgid "Importing Recipes"
msgstr ""
-#: .\cookbook\templates\batch\waiting.html:23
+#: .\cookbook\templates\batch\waiting.html:28
msgid ""
"This can take a few minutes, depending on the number of recipes in sync, "
"please wait."
@@ -608,26 +803,31 @@ msgid "Export Recipes"
msgstr ""
#: .\cookbook\templates\export.html:14 .\cookbook\templates\export.html:20
-#: .\cookbook\templates\shopping_list.html:347
+#: .\cookbook\templates\shopping_list.html:351
#: .\cookbook\templates\test2.html:14 .\cookbook\templates\test2.html:20
msgid "Export"
msgstr ""
+#: .\cookbook\templates\files.html:7
+msgid "Files"
+msgstr ""
+
#: .\cookbook\templates\forms\edit_import_recipe.html:5
#: .\cookbook\templates\forms\edit_import_recipe.html:9
msgid "Import new Recipe"
msgstr ""
#: .\cookbook\templates\forms\edit_import_recipe.html:14
-#: .\cookbook\templates\forms\edit_internal_recipe.html:389
-#: .\cookbook\templates\forms\edit_internal_recipe.html:421
+#: .\cookbook\templates\forms\edit_internal_recipe.html:416
+#: .\cookbook\templates\forms\edit_internal_recipe.html:448
#: .\cookbook\templates\generic\edit_template.html:23
#: .\cookbook\templates\generic\new_template.html:23
#: .\cookbook\templates\include\log_cooking.html:28
#: .\cookbook\templates\meal_plan.html:325
-#: .\cookbook\templates\settings.html:28 .\cookbook\templates\settings.html:35
-#: .\cookbook\templates\settings.html:58 .\cookbook\templates\settings.html:73
-#: .\cookbook\templates\shopping_list.html:349
+#: .\cookbook\templates\settings.html:44 .\cookbook\templates\settings.html:52
+#: .\cookbook\templates\settings.html:96
+#: .\cookbook\templates\settings.html:114
+#: .\cookbook\templates\shopping_list.html:353
msgid "Save"
msgstr ""
@@ -636,179 +836,186 @@ msgstr ""
msgid "Edit Recipe"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:52
+#: .\cookbook\templates\forms\edit_internal_recipe.html:56
+#: .\cookbook\templates\url_import.html:171
msgid "Description"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:72
+#: .\cookbook\templates\forms\edit_internal_recipe.html:76
msgid "Waiting Time"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:78
+#: .\cookbook\templates\forms\edit_internal_recipe.html:82
msgid "Servings Text"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:89
+#: .\cookbook\templates\forms\edit_internal_recipe.html:93
msgid "Select Keywords"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:90
-#: .\cookbook\templates\url_import.html:212
+#: .\cookbook\templates\forms\edit_internal_recipe.html:94
+#: .\cookbook\templates\url_import.html:583
msgid "Add Keyword"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:108
+#: .\cookbook\templates\forms\edit_internal_recipe.html:112
msgid "Nutrition"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:112
-#: .\cookbook\templates\forms\edit_internal_recipe.html:162
+#: .\cookbook\templates\forms\edit_internal_recipe.html:116
+#: .\cookbook\templates\forms\edit_internal_recipe.html:166
msgid "Delete Step"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:116
+#: .\cookbook\templates\forms\edit_internal_recipe.html:120
msgid "Calories"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:119
+#: .\cookbook\templates\forms\edit_internal_recipe.html:123
msgid "Carbohydrates"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:122
+#: .\cookbook\templates\forms\edit_internal_recipe.html:126
msgid "Fats"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:124
+#: .\cookbook\templates\forms\edit_internal_recipe.html:128
msgid "Proteins"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:146
-#: .\cookbook\templates\forms\edit_internal_recipe.html:454
+#: .\cookbook\templates\forms\edit_internal_recipe.html:150
+#: .\cookbook\templates\forms\edit_internal_recipe.html:481
msgid "Step"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:167
+#: .\cookbook\templates\forms\edit_internal_recipe.html:171
msgid "Show as header"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:173
+#: .\cookbook\templates\forms\edit_internal_recipe.html:177
msgid "Hide as header"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:178
+#: .\cookbook\templates\forms\edit_internal_recipe.html:182
msgid "Move Up"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:183
+#: .\cookbook\templates\forms\edit_internal_recipe.html:187
msgid "Move Down"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:192
+#: .\cookbook\templates\forms\edit_internal_recipe.html:196
msgid "Step Name"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:196
+#: .\cookbook\templates\forms\edit_internal_recipe.html:200
msgid "Step Type"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:207
+#: .\cookbook\templates\forms\edit_internal_recipe.html:212
msgid "Step time in Minutes"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:261
-#: .\cookbook\templates\shopping_list.html:183
-msgid "Select Unit"
+#: .\cookbook\templates\forms\edit_internal_recipe.html:228
+msgid "Select File"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:262
-#: .\cookbook\templates\forms\edit_internal_recipe.html:286
-#: .\cookbook\templates\shopping_list.html:184
-#: .\cookbook\templates\shopping_list.html:206
-msgid "Create"
-msgstr ""
-
-#: .\cookbook\templates\forms\edit_internal_recipe.html:263
-#: .\cookbook\templates\forms\edit_internal_recipe.html:287
-#: .\cookbook\templates\shopping_list.html:185
-#: .\cookbook\templates\shopping_list.html:207
-#: .\cookbook\templates\shopping_list.html:237
-#: .\cookbook\templates\shopping_list.html:261
-#: .\cookbook\templates\url_import.html:124
-#: .\cookbook\templates\url_import.html:156
+#: .\cookbook\templates\forms\edit_internal_recipe.html:229
+#: .\cookbook\templates\forms\edit_internal_recipe.html:290
+#: .\cookbook\templates\forms\edit_internal_recipe.html:314
+#: .\cookbook\templates\shopping_list.html:189
+#: .\cookbook\templates\shopping_list.html:211
+#: .\cookbook\templates\shopping_list.html:241
+#: .\cookbook\templates\shopping_list.html:265
+#: .\cookbook\templates\url_import.html:495
+#: .\cookbook\templates\url_import.html:527
msgid "Select"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:285
-#: .\cookbook\templates\shopping_list.html:205
+#: .\cookbook\templates\forms\edit_internal_recipe.html:288
+#: .\cookbook\templates\shopping_list.html:187
+msgid "Select Unit"
+msgstr ""
+
+#: .\cookbook\templates\forms\edit_internal_recipe.html:289
+#: .\cookbook\templates\forms\edit_internal_recipe.html:313
+#: .\cookbook\templates\shopping_list.html:188
+#: .\cookbook\templates\shopping_list.html:210
+msgid "Create"
+msgstr ""
+
+#: .\cookbook\templates\forms\edit_internal_recipe.html:312
+#: .\cookbook\templates\shopping_list.html:209
msgid "Select Food"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:302
+#: .\cookbook\templates\forms\edit_internal_recipe.html:329
#: .\cookbook\templates\meal_plan.html:256
-#: .\cookbook\templates\url_import.html:171
+#: .\cookbook\templates\url_import.html:542
msgid "Note"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:319
+#: .\cookbook\templates\forms\edit_internal_recipe.html:346
msgid "Delete Ingredient"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:325
+#: .\cookbook\templates\forms\edit_internal_recipe.html:352
msgid "Make Header"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:331
+#: .\cookbook\templates\forms\edit_internal_recipe.html:358
msgid "Make Ingredient"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:337
+#: .\cookbook\templates\forms\edit_internal_recipe.html:364
msgid "Disable Amount"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:343
+#: .\cookbook\templates\forms\edit_internal_recipe.html:370
msgid "Enable Amount"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:348
+#: .\cookbook\templates\forms\edit_internal_recipe.html:375
msgid "Copy Template Reference"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:374
-#: .\cookbook\templates\url_import.html:196
+#: .\cookbook\templates\forms\edit_internal_recipe.html:401
+#: .\cookbook\templates\url_import.html:297
+#: .\cookbook\templates\url_import.html:567
msgid "Instructions"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:387
-#: .\cookbook\templates\forms\edit_internal_recipe.html:418
+#: .\cookbook\templates\forms\edit_internal_recipe.html:414
+#: .\cookbook\templates\forms\edit_internal_recipe.html:445
msgid "Save & View"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:391
-#: .\cookbook\templates\forms\edit_internal_recipe.html:424
+#: .\cookbook\templates\forms\edit_internal_recipe.html:418
+#: .\cookbook\templates\forms\edit_internal_recipe.html:451
msgid "Add Step"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:394
-#: .\cookbook\templates\forms\edit_internal_recipe.html:428
+#: .\cookbook\templates\forms\edit_internal_recipe.html:421
+#: .\cookbook\templates\forms\edit_internal_recipe.html:455
msgid "Add Nutrition"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:396
-#: .\cookbook\templates\forms\edit_internal_recipe.html:430
+#: .\cookbook\templates\forms\edit_internal_recipe.html:423
+#: .\cookbook\templates\forms\edit_internal_recipe.html:457
msgid "Remove Nutrition"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:398
-#: .\cookbook\templates\forms\edit_internal_recipe.html:433
+#: .\cookbook\templates\forms\edit_internal_recipe.html:425
+#: .\cookbook\templates\forms\edit_internal_recipe.html:460
msgid "View Recipe"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:400
-#: .\cookbook\templates\forms\edit_internal_recipe.html:435
+#: .\cookbook\templates\forms\edit_internal_recipe.html:427
+#: .\cookbook\templates\forms\edit_internal_recipe.html:462
msgid "Delete Recipe"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:441
+#: .\cookbook\templates\forms\edit_internal_recipe.html:468
msgid "Steps"
msgstr ""
@@ -828,7 +1035,7 @@ msgid ""
msgstr ""
#: .\cookbook\templates\forms\ingredients.html:24
-#: .\cookbook\templates\stats.html:26
+#: .\cookbook\templates\space.html:35 .\cookbook\templates\stats.html:26
msgid "Units"
msgstr ""
@@ -850,10 +1057,6 @@ msgstr ""
msgid "Are you sure you want to delete the %(title)s: %(object)s "
msgstr ""
-#: .\cookbook\templates\generic\delete_template.html:21
-msgid "Confirm"
-msgstr ""
-
#: .\cookbook\templates\generic\edit_template.html:30
msgid "View"
msgstr ""
@@ -875,12 +1078,6 @@ msgstr ""
msgid "Import all"
msgstr ""
-#: .\cookbook\templates\generic\new_template.html:6
-#: .\cookbook\templates\generic\new_template.html:14
-#: .\cookbook\templates\meal_plan.html:323
-msgid "New"
-msgstr ""
-
#: .\cookbook\templates\generic\table_template.html:76
#: .\cookbook\templates\recipes_table.html:121
msgid "previous"
@@ -925,7 +1122,7 @@ msgstr ""
#: .\cookbook\templates\include\recipe_open_modal.html:7
#: .\cookbook\templates\meal_plan.html:247 .\cookbook\views\delete.py:28
-#: .\cookbook\views\edit.py:264 .\cookbook\views\new.py:40
+#: .\cookbook\views\edit.py:273 .\cookbook\views\new.py:52
msgid "Recipe"
msgstr ""
@@ -958,10 +1155,6 @@ msgstr ""
msgid "New Recipe"
msgstr ""
-#: .\cookbook\templates\index.html:47
-msgid "Website Import"
-msgstr ""
-
#: .\cookbook\templates\index.html:53
msgid "Advanced Search"
msgstr ""
@@ -975,7 +1168,7 @@ msgid "Last viewed"
msgstr ""
#: .\cookbook\templates\index.html:87 .\cookbook\templates\meal_plan.html:178
-#: .\cookbook\templates\stats.html:22
+#: .\cookbook\templates\space.html:29 .\cookbook\templates\stats.html:22
msgid "Recipes"
msgstr ""
@@ -1123,7 +1316,7 @@ msgid "New Entry"
msgstr ""
#: .\cookbook\templates\meal_plan.html:113
-#: .\cookbook\templates\shopping_list.html:52
+#: .\cookbook\templates\shopping_list.html:56
msgid "Search Recipe"
msgstr ""
@@ -1153,7 +1346,7 @@ msgstr ""
#: .\cookbook\templates\meal_plan.html:168
#: .\cookbook\templates\shopping_list.html:7
#: .\cookbook\templates\shopping_list.html:29
-#: .\cookbook\templates\shopping_list.html:705
+#: .\cookbook\templates\shopping_list.html:714
msgid "Shopping List"
msgstr ""
@@ -1203,7 +1396,7 @@ msgstr ""
#: .\cookbook\templates\meal_plan.html:270
#: .\cookbook\templates\meal_plan_entry.html:20
-#: .\cookbook\templates\shopping_list.html:250
+#: .\cookbook\templates\shopping_list.html:254
msgid "Shared with"
msgstr ""
@@ -1278,7 +1471,6 @@ msgstr ""
#: .\cookbook\templates\no_groups_info.html:18
#: .\cookbook\templates\no_perm_info.html:15
-#: .\cookbook\templates\no_space_info.html:15
msgid "Please contact your administrator."
msgstr ""
@@ -1293,13 +1485,48 @@ msgid ""
"action."
msgstr ""
-#: .\cookbook\templates\no_space_info.html:5
-#: .\cookbook\templates\no_space_info.html:12
+#: .\cookbook\templates\no_space_info.html:6
+#: .\cookbook\templates\no_space_info.html:13
msgid "No Space"
msgstr ""
-#: .\cookbook\templates\no_space_info.html:15
-msgid "You are not a member of any space."
+#: .\cookbook\templates\no_space_info.html:17
+msgid ""
+"Recipes, foods, shopping lists and more are organized in spaces of one or "
+"more people."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:18
+msgid ""
+"You can either be invited into an existing space or create your own one."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:31
+#: .\cookbook\templates\no_space_info.html:40
+msgid "Join Space"
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:34
+msgid "Join an existing space."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:35
+msgid ""
+"To join an existing space either enter your invite token or click on the "
+"invite link the space owner send you."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:48
+#: .\cookbook\templates\no_space_info.html:56
+msgid "Create Space"
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:51
+msgid "Create your own recipe space."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:52
+msgid "Start your own recipe space and invite other users to it."
msgstr ""
#: .\cookbook\templates\offline.html:6
@@ -1316,28 +1543,29 @@ msgid ""
"recently viewed them. Keep in mind that data might be outdated."
msgstr ""
-#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\stats.html:47
+#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\space.html:56
+#: .\cookbook\templates\stats.html:47
msgid "Comments"
msgstr ""
#: .\cookbook\templates\recipe_view.html:44 .\cookbook\views\delete.py:118
-#: .\cookbook\views\edit.py:170
+#: .\cookbook\views\edit.py:179
msgid "Comment"
msgstr ""
#: .\cookbook\templates\recipes_table.html:19
#: .\cookbook\templates\recipes_table.html:23
-#: .\cookbook\templates\url_import.html:69
+#: .\cookbook\templates\url_import.html:440
msgid "Recipe Image"
msgstr ""
#: .\cookbook\templates\recipes_table.html:51
-#: .\cookbook\templates\url_import.html:74
+#: .\cookbook\templates\url_import.html:445
msgid "Preparation time ca."
msgstr ""
#: .\cookbook\templates\recipes_table.html:57
-#: .\cookbook\templates\url_import.html:79
+#: .\cookbook\templates\url_import.html:450
msgid "Waiting time ca."
msgstr ""
@@ -1353,39 +1581,67 @@ msgstr ""
msgid "Recipe Home"
msgstr ""
-#: .\cookbook\templates\settings.html:22
+#: .\cookbook\templates\settings.html:23
msgid "Account"
msgstr ""
-#: .\cookbook\templates\settings.html:38
-msgid "Link social account"
+#: .\cookbook\templates\settings.html:27
+msgid "Preferences"
msgstr ""
-#: .\cookbook\templates\settings.html:42
+#: .\cookbook\templates\settings.html:31
+msgid "API-Settings"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:39
+msgid "Name Settings"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:47
+msgid "Password Settings"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:55
+msgid "Email Settings"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:57
+msgid "Manage Email Settings"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:61
+msgid "Social"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:63
+msgid "Manage Social Accounts"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:75
msgid "Language"
msgstr ""
-#: .\cookbook\templates\settings.html:67
+#: .\cookbook\templates\settings.html:105
msgid "Style"
msgstr ""
-#: .\cookbook\templates\settings.html:79
+#: .\cookbook\templates\settings.html:125
msgid "API Token"
msgstr ""
-#: .\cookbook\templates\settings.html:80
+#: .\cookbook\templates\settings.html:126
msgid ""
"You can use both basic authentication and token based authentication to "
"access the REST API."
msgstr ""
-#: .\cookbook\templates\settings.html:92
+#: .\cookbook\templates\settings.html:143
msgid ""
"Use the token as an Authorization header prefixed by the word token as shown "
"in the following examples:"
msgstr ""
-#: .\cookbook\templates\settings.html:94
+#: .\cookbook\templates\settings.html:145
msgid "or"
msgstr ""
@@ -1406,58 +1662,55 @@ msgstr ""
msgid "Create Superuser account"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:75
+#: .\cookbook\templates\shopping_list.html:79
msgid "Shopping Recipes"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:79
+#: .\cookbook\templates\shopping_list.html:83
msgid "No recipes selected"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:146
+#: .\cookbook\templates\shopping_list.html:150
msgid "Entry Mode"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:154
+#: .\cookbook\templates\shopping_list.html:158
msgid "Add Entry"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:170
+#: .\cookbook\templates\shopping_list.html:174
msgid "Amount"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:226
+#: .\cookbook\templates\shopping_list.html:230
+#: .\cookbook\templates\supermarket.html:7
msgid "Supermarket"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:236
+#: .\cookbook\templates\shopping_list.html:240
msgid "Select Supermarket"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:260
+#: .\cookbook\templates\shopping_list.html:264
msgid "Select User"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:279
+#: .\cookbook\templates\shopping_list.html:283
msgid "Finished"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:292
+#: .\cookbook\templates\shopping_list.html:296
msgid "You are offline, shopping list might not syncronize."
msgstr ""
-#: .\cookbook\templates\shopping_list.html:357
+#: .\cookbook\templates\shopping_list.html:361
msgid "Copy/Export"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:361
+#: .\cookbook\templates\shopping_list.html:365
msgid "List Prefix"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:708
-msgid "There was an error creating a resource!"
-msgstr ""
-
#: .\cookbook\templates\socialaccount\connections.html:4
#: .\cookbook\templates\socialaccount\connections.html:7
msgid "Account Connections"
@@ -1469,10 +1722,6 @@ msgid ""
" accounts:"
msgstr ""
-#: .\cookbook\templates\socialaccount\connections.html:36
-msgid "Remove"
-msgstr ""
-
#: .\cookbook\templates\socialaccount\connections.html:44
msgid ""
"You currently have no social network accounts connected to this account."
@@ -1482,38 +1731,87 @@ msgstr ""
msgid "Add a 3rd Party Account"
msgstr ""
-#: .\cookbook\templates\stats.html:4
-msgid "Stats"
+#: .\cookbook\templates\space.html:18
+msgid "Manage Subscription"
msgstr ""
-#: .\cookbook\templates\stats.html:19
+#: .\cookbook\templates\space.html:26 .\cookbook\templates\stats.html:19
msgid "Number of objects"
msgstr ""
-#: .\cookbook\templates\stats.html:30
+#: .\cookbook\templates\space.html:39 .\cookbook\templates\stats.html:30
msgid "Recipe Imports"
msgstr ""
-#: .\cookbook\templates\stats.html:38
+#: .\cookbook\templates\space.html:47 .\cookbook\templates\stats.html:38
msgid "Objects stats"
msgstr ""
-#: .\cookbook\templates\stats.html:41
+#: .\cookbook\templates\space.html:50 .\cookbook\templates\stats.html:41
msgid "Recipes without Keywords"
msgstr ""
-#: .\cookbook\templates\stats.html:43
+#: .\cookbook\templates\space.html:52 .\cookbook\templates\stats.html:43
msgid "External Recipes"
msgstr ""
-#: .\cookbook\templates\stats.html:45
+#: .\cookbook\templates\space.html:54 .\cookbook\templates\stats.html:45
msgid "Internal Recipes"
msgstr ""
-#: .\cookbook\templates\system.html:21 .\cookbook\views\lists.py:115
+#: .\cookbook\templates\space.html:67
+msgid "Members"
+msgstr ""
+
+#: .\cookbook\templates\space.html:71
+msgid "Invite User"
+msgstr ""
+
+#: .\cookbook\templates\space.html:82
+msgid "User"
+msgstr ""
+
+#: .\cookbook\templates\space.html:83
+msgid "Groups"
+msgstr ""
+
+#: .\cookbook\templates\space.html:99
+msgid "admin"
+msgstr ""
+
+#: .\cookbook\templates\space.html:100
+msgid "user"
+msgstr ""
+
+#: .\cookbook\templates\space.html:101
+msgid "guest"
+msgstr ""
+
+#: .\cookbook\templates\space.html:102
+msgid "remove"
+msgstr ""
+
+#: .\cookbook\templates\space.html:106
+msgid "Update"
+msgstr ""
+
+#: .\cookbook\templates\space.html:110
+msgid "You cannot edit yourself."
+msgstr ""
+
+#: .\cookbook\templates\space.html:117
+msgid "There are no members in your space yet!"
+msgstr ""
+
+#: .\cookbook\templates\space.html:124 .\cookbook\templates\system.html:21
+#: .\cookbook\views\lists.py:115
msgid "Invite Links"
msgstr ""
+#: .\cookbook\templates\stats.html:4
+msgid "Stats"
+msgstr ""
+
#: .\cookbook\templates\system.html:22
msgid "Show Links"
msgstr ""
@@ -1611,45 +1909,141 @@ msgid ""
" "
msgstr ""
-#: .\cookbook\templates\url_import.html:5
+#: .\cookbook\templates\url_import.html:6
msgid "URL Import"
msgstr ""
-#: .\cookbook\templates\url_import.html:23
+#: .\cookbook\templates\url_import.html:31
+msgid "Drag me to your bookmarks to import recipes from anywhere"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:32
+msgid "Bookmark Me!"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:61
msgid "Enter website URL"
msgstr ""
-#: .\cookbook\templates\url_import.html:36
-msgid "Enter json directly"
+#: .\cookbook\templates\url_import.html:97
+msgid "Select recipe files to import or drop them here..."
msgstr ""
-#: .\cookbook\templates\url_import.html:57
+#: .\cookbook\templates\url_import.html:118
+msgid "Paste json or html source here to load recipe."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:146
+msgid "Preview Recipe Data"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:147
+msgid "Drag recipe attributes from the right into the appropriate box below."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:156
+#: .\cookbook\templates\url_import.html:173
+#: .\cookbook\templates\url_import.html:190
+#: .\cookbook\templates\url_import.html:209
+#: .\cookbook\templates\url_import.html:227
+#: .\cookbook\templates\url_import.html:242
+#: .\cookbook\templates\url_import.html:257
+#: .\cookbook\templates\url_import.html:273
+#: .\cookbook\templates\url_import.html:300
+#: .\cookbook\templates\url_import.html:351
+msgid "Clear Contents"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:158
+msgid "Text dragged here will be appended to the name."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:175
+msgid "Text dragged here will be appended to the description."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:192
+msgid "Keywords dragged here will be appended to current list"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:207
+msgid "Image"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:239
+msgid "Prep Time"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:254
+msgid "Cook Time"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:275
+msgid "Ingredients dragged here will be appended to current list."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:302
+msgid ""
+"Recipe instructions dragged here will be appended to current instructions."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:325
+msgid "Discovered Attributes"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:327
+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:344
+msgid "Show Blank Field"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:349
+msgid "Blank Field"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:353
+msgid "Items dragged to Blank Field will be appended."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:400
+msgid "Delete Text"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:413
+msgid "Delete image"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:429
msgid "Recipe Name"
msgstr ""
-#: .\cookbook\templates\url_import.html:62
+#: .\cookbook\templates\url_import.html:433
msgid "Recipe Description"
msgstr ""
-#: .\cookbook\templates\url_import.html:123
-#: .\cookbook\templates\url_import.html:155
-#: .\cookbook\templates\url_import.html:211
+#: .\cookbook\templates\url_import.html:494
+#: .\cookbook\templates\url_import.html:526
+#: .\cookbook\templates\url_import.html:582
msgid "Select one"
msgstr ""
-#: .\cookbook\templates\url_import.html:225
+#: .\cookbook\templates\url_import.html:596
msgid "All Keywords"
msgstr ""
-#: .\cookbook\templates\url_import.html:228
+#: .\cookbook\templates\url_import.html:599
msgid "Import all keywords, not only the ones already existing."
msgstr ""
-#: .\cookbook\templates\url_import.html:255
+#: .\cookbook\templates\url_import.html:626
msgid "Information"
msgstr ""
-#: .\cookbook\templates\url_import.html:257
+#: .\cookbook\templates\url_import.html:628
msgid ""
" Only websites containing ld+json or microdata information can currently\n"
" be imported. Most big recipe pages "
@@ -1660,48 +2054,73 @@ msgid ""
" github issues."
msgstr ""
-#: .\cookbook\templates\url_import.html:265
+#: .\cookbook\templates\url_import.html:636
msgid "Google ld+json Info"
msgstr ""
-#: .\cookbook\templates\url_import.html:268
+#: .\cookbook\templates\url_import.html:639
msgid "GitHub Issues"
msgstr ""
-#: .\cookbook\templates\url_import.html:270
+#: .\cookbook\templates\url_import.html:641
msgid "Recipe Markup Specification"
msgstr ""
-#: .\cookbook\views\api.py:71
+#: .\cookbook\views\api.py:77
msgid "Parameter updated_at incorrectly formatted"
msgstr ""
-#: .\cookbook\views\api.py:455 .\cookbook\views\views.py:226
+#: .\cookbook\views\api.py:553 .\cookbook\views\views.py:295
msgid "This feature is not available in the demo version!"
msgstr ""
-#: .\cookbook\views\api.py:478
+#: .\cookbook\views\api.py:576
msgid "Sync successful!"
msgstr ""
-#: .\cookbook\views\api.py:483
+#: .\cookbook\views\api.py:581
msgid "Error synchronizing with Storage"
msgstr ""
-#: .\cookbook\views\api.py:556 .\cookbook\views\api.py:576
+#: .\cookbook\views\api.py:649
+msgid "Nothing to do."
+msgstr ""
+
+#: .\cookbook\views\api.py:664
+msgid "The requested site provided malformed data and cannot be read."
+msgstr ""
+
+#: .\cookbook\views\api.py:671
msgid "The requested page could not be found."
msgstr ""
-#: .\cookbook\views\api.py:585
+#: .\cookbook\views\api.py:680
msgid ""
-"The requested page refused to provide any information (Status Code 403)."
+"The requested site does not provide any recognized data format to import the "
+"recipe from."
msgstr ""
-#: .\cookbook\views\api.py:611
-msgid "Could not parse correctly..."
+#: .\cookbook\views\api.py:694
+msgid "No useable data could be found."
msgstr ""
-#: .\cookbook\views\data.py:94
+#: .\cookbook\views\api.py:710
+msgid "I couldn't find anything to do."
+msgstr ""
+
+#: .\cookbook\views\data.py:30 .\cookbook\views\data.py:121
+#: .\cookbook\views\edit.py:50 .\cookbook\views\import_export.py:67
+#: .\cookbook\views\new.py:32
+msgid "You have reached the maximum number of recipes for your space."
+msgstr ""
+
+#: .\cookbook\views\data.py:34 .\cookbook\views\data.py:125
+#: .\cookbook\views\edit.py:54 .\cookbook\views\import_export.py:71
+#: .\cookbook\views\new.py:36
+msgid "You have more users than allowed in your space."
+msgstr ""
+
+#: .\cookbook\views\data.py:103
#, python-format
msgid "Batch edit done. %(count)d recipe was updated."
msgid_plural "Batch edit done. %(count)d Recipes where updated."
@@ -1713,7 +2132,7 @@ msgid "Monitor"
msgstr ""
#: .\cookbook\views\delete.py:96 .\cookbook\views\lists.py:102
-#: .\cookbook\views\new.py:86
+#: .\cookbook\views\new.py:98
msgid "Storage Backend"
msgstr ""
@@ -1722,8 +2141,8 @@ msgid ""
"Could not delete this storage backend as it is used in at least one monitor."
msgstr ""
-#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:204
-#: .\cookbook\views\new.py:144
+#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:213
+#: .\cookbook\views\new.py:156
msgid "Recipe Book"
msgstr ""
@@ -1731,55 +2150,55 @@ msgstr ""
msgid "Bookmarks"
msgstr ""
-#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:214
+#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:252
msgid "Invite Link"
msgstr ""
-#: .\cookbook\views\edit.py:110
+#: .\cookbook\views\edit.py:119
msgid "Food"
msgstr ""
-#: .\cookbook\views\edit.py:119
+#: .\cookbook\views\edit.py:128
msgid "You cannot edit this storage!"
msgstr ""
-#: .\cookbook\views\edit.py:139
+#: .\cookbook\views\edit.py:148
msgid "Storage saved!"
msgstr ""
-#: .\cookbook\views\edit.py:145
+#: .\cookbook\views\edit.py:154
msgid "There was an error updating this storage backend!"
msgstr ""
-#: .\cookbook\views\edit.py:156
+#: .\cookbook\views\edit.py:165
msgid "Storage"
msgstr ""
-#: .\cookbook\views\edit.py:252
+#: .\cookbook\views\edit.py:261
msgid "Changes saved!"
msgstr ""
-#: .\cookbook\views\edit.py:256
+#: .\cookbook\views\edit.py:265
msgid "Error saving changes!"
msgstr ""
-#: .\cookbook\views\edit.py:289
+#: .\cookbook\views\edit.py:299
msgid "Units merged!"
msgstr ""
-#: .\cookbook\views\edit.py:291 .\cookbook\views\edit.py:307
+#: .\cookbook\views\edit.py:301 .\cookbook\views\edit.py:317
msgid "Cannot merge with the same object!"
msgstr ""
-#: .\cookbook\views\edit.py:305
+#: .\cookbook\views\edit.py:315
msgid "Foods merged!"
msgstr ""
-#: .\cookbook\views\import_export.py:73
+#: .\cookbook\views\import_export.py:93
msgid "Importing is not implemented for this provider"
msgstr ""
-#: .\cookbook\views\import_export.py:92
+#: .\cookbook\views\import_export.py:115
msgid "Exporting is not implemented for this provider"
msgstr ""
@@ -1795,41 +2214,103 @@ msgstr ""
msgid "Shopping Lists"
msgstr ""
-#: .\cookbook\views\new.py:111
+#: .\cookbook\views\new.py:123
msgid "Imported new recipe!"
msgstr ""
-#: .\cookbook\views\new.py:114
+#: .\cookbook\views\new.py:126
msgid "There was an error importing this recipe!"
msgstr ""
-#: .\cookbook\views\views.py:123
+#: .\cookbook\views\new.py:226
+msgid "Hello"
+msgstr ""
+
+#: .\cookbook\views\new.py:226
+msgid "You have been invited by "
+msgstr ""
+
+#: .\cookbook\views\new.py:227
+msgid " to join their Tandoor Recipes space "
+msgstr ""
+
+#: .\cookbook\views\new.py:228
+msgid "Click the following link to activate your account: "
+msgstr ""
+
+#: .\cookbook\views\new.py:229
+msgid ""
+"If the link does not work use the following code to manually join the space: "
+msgstr ""
+
+#: .\cookbook\views\new.py:230
+msgid "The invitation is valid until "
+msgstr ""
+
+#: .\cookbook\views\new.py:231
+msgid ""
+"Tandoor Recipes is an Open Source recipe manager. Check it out on GitHub "
+msgstr ""
+
+#: .\cookbook\views\new.py:234
+msgid "Tandoor Recipes Invite"
+msgstr ""
+
+#: .\cookbook\views\new.py:241
+msgid "Invite link successfully send to user."
+msgstr ""
+
+#: .\cookbook\views\new.py:244
+msgid ""
+"You have send to many emails, please share the link manually or wait a few "
+"hours."
+msgstr ""
+
+#: .\cookbook\views\new.py:246
+msgid "Email to user could not be send, please share link manually."
+msgstr ""
+
+#: .\cookbook\views\views.py:125
+msgid ""
+"You have successfully created your own recipe space. Start by adding some "
+"recipes or invite other people to join you."
+msgstr ""
+
+#: .\cookbook\views\views.py:173
msgid "You do not have the required permissions to perform this action!"
msgstr ""
-#: .\cookbook\views\views.py:134
+#: .\cookbook\views\views.py:184
msgid "Comment saved!"
msgstr ""
-#: .\cookbook\views\views.py:326
+#: .\cookbook\views\views.py:396
msgid ""
"The setup page can only be used to create the first user! If you have "
"forgotten your superuser credentials please consult the django documentation "
"on how to reset passwords."
msgstr ""
-#: .\cookbook\views\views.py:333 .\cookbook\views\views.py:378
+#: .\cookbook\views\views.py:403
msgid "Passwords dont match!"
msgstr ""
-#: .\cookbook\views\views.py:349 .\cookbook\views\views.py:385
+#: .\cookbook\views\views.py:419
msgid "User has been created, please login!"
msgstr ""
-#: .\cookbook\views\views.py:365
+#: .\cookbook\views\views.py:435
msgid "Malformed Invite Link supplied!"
msgstr ""
-#: .\cookbook\views\views.py:405
+#: .\cookbook\views\views.py:441
+msgid "You are already member of a space and therefore cannot join this one."
+msgstr ""
+
+#: .\cookbook\views\views.py:452
+msgid "Successfully joined space."
+msgstr ""
+
+#: .\cookbook\views\views.py:458
msgid "Invite Link not valid or already used!"
msgstr ""
diff --git a/cookbook/locale/zh_CN/LC_MESSAGES/django.po b/cookbook/locale/zh_CN/LC_MESSAGES/django.po
index a0a54d56..404178a1 100644
--- a/cookbook/locale/zh_CN/LC_MESSAGES/django.po
+++ b/cookbook/locale/zh_CN/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-04-11 15:09+0200\n"
+"POT-Creation-Date: 2021-06-12 20:30+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME /remote."
"php/webdav/
is added automatically)"
msgstr ""
-#: .\cookbook\forms.py:291
+#: .\cookbook\forms.py:307
msgid "Search String"
msgstr ""
-#: .\cookbook\forms.py:318
+#: .\cookbook\forms.py:334
msgid "File ID"
msgstr ""
-#: .\cookbook\forms.py:354
+#: .\cookbook\forms.py:370
msgid "You must provide at least a recipe or a title."
msgstr ""
-#: .\cookbook\forms.py:367
+#: .\cookbook\forms.py:383
msgid "You can list default users to share recipes with in the settings."
msgstr ""
-#: .\cookbook\forms.py:368
-#: .\cookbook\templates\forms\edit_internal_recipe.html:377
+#: .\cookbook\forms.py:384
+#: .\cookbook\templates\forms\edit_internal_recipe.html:404
msgid ""
"You can use markdown to format this field. See the docs here"
msgstr ""
-#: .\cookbook\forms.py:393
-msgid "A username is not required, if left blank the new user can choose one."
+#: .\cookbook\forms.py:409
+msgid "Maximum number of users for this space reached."
msgstr ""
-#: .\cookbook\helper\permission_helper.py:123
-#: .\cookbook\helper\permission_helper.py:129
-#: .\cookbook\helper\permission_helper.py:151
-#: .\cookbook\helper\permission_helper.py:196
-#: .\cookbook\helper\permission_helper.py:210
-#: .\cookbook\helper\permission_helper.py:221
-#: .\cookbook\helper\permission_helper.py:232 .\cookbook\views\data.py:30
-#: .\cookbook\views\views.py:112 .\cookbook\views\views.py:116
-#: .\cookbook\views\views.py:184
-msgid "You do not have the required permissions to view this page!"
+#: .\cookbook\forms.py:415
+msgid "Email address already taken!"
msgstr ""
-#: .\cookbook\helper\permission_helper.py:141
+#: .\cookbook\forms.py:423
+msgid ""
+"An email address is not required but if present the invite link will be send "
+"to the user."
+msgstr ""
+
+#: .\cookbook\forms.py:438
+msgid "Name already taken."
+msgstr ""
+
+#: .\cookbook\forms.py:449
+msgid "Accept Terms and Privacy"
+msgstr ""
+
+#: .\cookbook\helper\AllAuthCustomAdapter.py:30
+msgid ""
+"In order to prevent spam, the requested email was not send. Please wait a "
+"few minutes and try again."
+msgstr ""
+
+#: .\cookbook\helper\permission_helper.py:124
+#: .\cookbook\helper\permission_helper.py:144 .\cookbook\views\views.py:147
msgid "You are not logged in and therefore cannot view this page!"
msgstr ""
-#: .\cookbook\helper\permission_helper.py:145
-#: .\cookbook\helper\permission_helper.py:167
-#: .\cookbook\helper\permission_helper.py:182
+#: .\cookbook\helper\permission_helper.py:127
+#: .\cookbook\helper\permission_helper.py:132
+#: .\cookbook\helper\permission_helper.py:154
+#: .\cookbook\helper\permission_helper.py:199
+#: .\cookbook\helper\permission_helper.py:213
+#: .\cookbook\helper\permission_helper.py:224
+#: .\cookbook\helper\permission_helper.py:235 .\cookbook\views\data.py:39
+#: .\cookbook\views\views.py:158 .\cookbook\views\views.py:165
+#: .\cookbook\views\views.py:253
+msgid "You do not have the required permissions to view this page!"
+msgstr ""
+
+#: .\cookbook\helper\permission_helper.py:148
+#: .\cookbook\helper\permission_helper.py:170
+#: .\cookbook\helper\permission_helper.py:185
msgid "You cannot interact with this object as it is not owned by you!"
msgstr ""
-#: .\cookbook\helper\recipe_url_import.py:40 .\cookbook\views\api.py:549
-msgid "The requested site provided malformed data and cannot be read."
-msgstr ""
-
-#: .\cookbook\helper\recipe_url_import.py:54
-msgid ""
-"The requested site does not provide any recognized data format to import the "
-"recipe from."
-msgstr ""
-
-#: .\cookbook\helper\recipe_url_import.py:160
-msgid "Imported from"
-msgstr ""
-
#: .\cookbook\helper\template_helper.py:60
#: .\cookbook\helper\template_helper.py:62
msgid "Could not parse template code."
@@ -237,42 +252,53 @@ msgstr ""
#: .\cookbook\templates\import.html:14 .\cookbook\templates\import.html:20
#: .\cookbook\templates\import_response.html:7
#: .\cookbook\templates\test.html:14 .\cookbook\templates\test.html:20
-#: .\cookbook\templates\url_import.html:233 .\cookbook\views\delete.py:60
-#: .\cookbook\views\edit.py:190
+#: .\cookbook\templates\url_import.html:27
+#: .\cookbook\templates\url_import.html:101
+#: .\cookbook\templates\url_import.html:123
+#: .\cookbook\templates\url_import.html:317
+#: .\cookbook\templates\url_import.html:604 .\cookbook\views\delete.py:60
+#: .\cookbook\views\edit.py:199
msgid "Import"
msgstr ""
-#: .\cookbook\integration\integration.py:131
+#: .\cookbook\integration\integration.py:162
msgid ""
"Importer expected a .zip file. Did you choose the correct importer type for "
"your data ?"
msgstr ""
-#: .\cookbook\integration\integration.py:134
+#: .\cookbook\integration\integration.py:165
+msgid ""
+"An unexpected error occurred during the import. Please make sure you have "
+"uploaded a valid file."
+msgstr ""
+
+#: .\cookbook\integration\integration.py:169
msgid "The following recipes were ignored because they already existed:"
msgstr ""
-#: .\cookbook\integration\integration.py:137
+#: .\cookbook\integration\integration.py:173
#, python-format
msgid "Imported %s recipes."
msgstr ""
-#: .\cookbook\integration\paprika.py:44
+#: .\cookbook\integration\paprika.py:46
msgid "Notes"
msgstr ""
-#: .\cookbook\integration\paprika.py:47
+#: .\cookbook\integration\paprika.py:49
msgid "Nutritional Information"
msgstr ""
-#: .\cookbook\integration\paprika.py:50
+#: .\cookbook\integration\paprika.py:53
msgid "Source"
msgstr ""
#: .\cookbook\integration\safron.py:23
-#: .\cookbook\templates\forms\edit_internal_recipe.html:75
+#: .\cookbook\templates\forms\edit_internal_recipe.html:79
#: .\cookbook\templates\include\log_cooking.html:16
-#: .\cookbook\templates\url_import.html:84
+#: .\cookbook\templates\url_import.html:224
+#: .\cookbook\templates\url_import.html:455
msgid "Servings"
msgstr ""
@@ -281,11 +307,11 @@ msgid "Waiting time"
msgstr ""
#: .\cookbook\integration\safron.py:27
-#: .\cookbook\templates\forms\edit_internal_recipe.html:69
+#: .\cookbook\templates\forms\edit_internal_recipe.html:73
msgid "Preparation Time"
msgstr ""
-#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:71
+#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:78
#: .\cookbook\templates\forms\ingredients.html:7
#: .\cookbook\templates\index.html:7
msgid "Cookbook"
@@ -311,44 +337,72 @@ msgstr ""
msgid "Other"
msgstr ""
-#: .\cookbook\models.py:110 .\cookbook\templates\shopping_list.html:48
+#: .\cookbook\models.py:71
+msgid ""
+"Maximum file storage for space in MB. 0 for unlimited, -1 to disable file "
+"upload."
+msgstr ""
+
+#: .\cookbook\models.py:121 .\cookbook\templates\search.html:7
+#: .\cookbook\templates\shopping_list.html:52
msgid "Search"
msgstr ""
-#: .\cookbook\models.py:111 .\cookbook\templates\base.html:85
+#: .\cookbook\models.py:122 .\cookbook\templates\base.html:92
#: .\cookbook\templates\meal_plan.html:5 .\cookbook\views\delete.py:152
-#: .\cookbook\views\edit.py:224 .\cookbook\views\new.py:188
+#: .\cookbook\views\edit.py:233 .\cookbook\views\new.py:201
msgid "Meal-Plan"
msgstr ""
-#: .\cookbook\models.py:112 .\cookbook\templates\base.html:82
+#: .\cookbook\models.py:123 .\cookbook\templates\base.html:89
msgid "Books"
msgstr ""
-#: .\cookbook\models.py:119
+#: .\cookbook\models.py:131
msgid "Small"
msgstr ""
-#: .\cookbook\models.py:119
+#: .\cookbook\models.py:131
msgid "Large"
msgstr ""
-#: .\cookbook\models.py:327
-#: .\cookbook\templates\forms\edit_internal_recipe.html:198
+#: .\cookbook\models.py:131 .\cookbook\templates\generic\new_template.html:6
+#: .\cookbook\templates\generic\new_template.html:14
+#: .\cookbook\templates\meal_plan.html:323
+msgid "New"
+msgstr ""
+
+#: .\cookbook\models.py:340
+#: .\cookbook\templates\forms\edit_internal_recipe.html:202
msgid "Text"
msgstr ""
-#: .\cookbook\models.py:327
-#: .\cookbook\templates\forms\edit_internal_recipe.html:199
+#: .\cookbook\models.py:340
+#: .\cookbook\templates\forms\edit_internal_recipe.html:203
msgid "Time"
msgstr ""
+#: .\cookbook\models.py:340
+#: .\cookbook\templates\forms\edit_internal_recipe.html:204
+#: .\cookbook\templates\forms\edit_internal_recipe.html:218
+msgid "File"
+msgstr ""
+
+#: .\cookbook\serializer.py:109
+msgid "File uploads are not enabled for this Space."
+msgstr ""
+
+#: .\cookbook\serializer.py:117
+msgid "You have reached your file upload limit."
+msgstr ""
+
#: .\cookbook\tables.py:35 .\cookbook\templates\books.html:36
#: .\cookbook\templates\generic\edit_template.html:6
#: .\cookbook\templates\generic\edit_template.html:14
#: .\cookbook\templates\meal_plan.html:281
#: .\cookbook\templates\recipes_table.html:82
#: .\cookbook\templates\shopping_list.html:33
+#: .\cookbook\templates\space.html:84
msgid "Edit"
msgstr ""
@@ -362,10 +416,6 @@ msgstr ""
msgid "Delete"
msgstr ""
-#: .\cookbook\tables.py:144
-msgid "Link"
-msgstr ""
-
#: .\cookbook\templates\404.html:5
msgid "404 Error"
msgstr ""
@@ -382,21 +432,120 @@ msgstr ""
msgid "Report a Bug"
msgstr ""
-#: .\cookbook\templates\account\login.html:7
-#: .\cookbook\templates\base.html:170
+#: .\cookbook\templates\account\email.html:6
+#: .\cookbook\templates\account\email.html:9
+msgid "E-mail Addresses"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:11
+msgid "The following e-mail addresses are associated with your account:"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:28
+msgid "Verified"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:30
+msgid "Unverified"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:32
+msgid "Primary"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:39
+msgid "Make Primary"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:41
+msgid "Re-send Verification"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:42
+#: .\cookbook\templates\socialaccount\connections.html:36
+msgid "Remove"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:50
+msgid "Warning:"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:50
+msgid ""
+"You currently do not have any e-mail address set up. You should really add "
+"an e-mail address so you can receive notifications, reset your password, etc."
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:56
+msgid "Add E-mail Address"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:61
+msgid "Add E-mail"
+msgstr ""
+
+#: .\cookbook\templates\account\email.html:71
+msgid "Do you really want to remove the selected e-mail address?"
+msgstr ""
+
+#: .\cookbook\templates\account\email_confirm.html:6
+#: .\cookbook\templates\account\email_confirm.html:10
+msgid "Confirm E-mail Address"
+msgstr ""
+
+#: .\cookbook\templates\account\email_confirm.html:16
+#, python-format
+msgid ""
+"Please confirm that\n"
+" %(email)s is an e-mail address "
+"for user %(user_display)s\n"
+" ."
+msgstr ""
+
+#: .\cookbook\templates\account\email_confirm.html:22
+#: .\cookbook\templates\generic\delete_template.html:21
+msgid "Confirm"
+msgstr ""
+
+#: .\cookbook\templates\account\email_confirm.html:29
+#, python-format
+msgid ""
+"This e-mail confirmation link expired or is invalid. Please\n"
+" issue a new e-mail confirmation "
+"request."
+msgstr ""
+
+#: .\cookbook\templates\account\login.html:8
+#: .\cookbook\templates\base.html:180
msgid "Login"
msgstr ""
-#: .\cookbook\templates\account\login.html:13
-#: .\cookbook\templates\account\login.html:28
+#: .\cookbook\templates\account\login.html:15
+#: .\cookbook\templates\account\login.html:31
+#: .\cookbook\templates\account\signup.html:69
+#: .\cookbook\templates\account\signup_closed.html:15
msgid "Sign In"
msgstr ""
-#: .\cookbook\templates\account\login.html:38
+#: .\cookbook\templates\account\login.html:32
+msgid "Sign Up"
+msgstr ""
+
+#: .\cookbook\templates\account\login.html:36
+#: .\cookbook\templates\account\login.html:37
+#: .\cookbook\templates\account\password_reset.html:29
+msgid "Reset My Password"
+msgstr ""
+
+#: .\cookbook\templates\account\login.html:37
+msgid "Lost your password?"
+msgstr ""
+
+#: .\cookbook\templates\account\login.html:48
msgid "Social Login"
msgstr ""
-#: .\cookbook\templates\account\login.html:39
+#: .\cookbook\templates\account\login.html:49
msgid "You can use any of the following providers to sign in."
msgstr ""
@@ -410,115 +559,161 @@ msgstr ""
msgid "Are you sure you want to sign out?"
msgstr ""
-#: .\cookbook\templates\account\password_reset.html:5
-#: .\cookbook\templates\account\password_reset_done.html:5
+#: .\cookbook\templates\account\password_reset.html:7
+#: .\cookbook\templates\account\password_reset.html:13
+#: .\cookbook\templates\account\password_reset_done.html:7
+#: .\cookbook\templates\account\password_reset_done.html:10
msgid "Password Reset"
msgstr ""
-#: .\cookbook\templates\account\password_reset.html:9
-#: .\cookbook\templates\account\password_reset_done.html:9
-msgid "Password reset is not implemented for the time being!"
+#: .\cookbook\templates\account\password_reset.html:24
+msgid ""
+"Forgotten your password? Enter your e-mail address below, and we'll send you "
+"an e-mail allowing you to reset it."
msgstr ""
-#: .\cookbook\templates\account\signup.html:5
+#: .\cookbook\templates\account\password_reset.html:32
+msgid "Password reset is disabled on this instance."
+msgstr ""
+
+#: .\cookbook\templates\account\password_reset_done.html:16
+msgid ""
+"We have sent you an e-mail. Please contact us if you do not receive it "
+"within a few minutes."
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:6
msgid "Register"
msgstr ""
-#: .\cookbook\templates\account\signup.html:9
-msgid "Create your Account"
+#: .\cookbook\templates\account\signup.html:12
+msgid "Create an Account"
msgstr ""
-#: .\cookbook\templates\account\signup.html:14
+#: .\cookbook\templates\account\signup.html:42
+msgid "I accept the follwoing"
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:45
+msgid "Terms and Conditions"
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:48
+msgid "and"
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:52
+msgid "Privacy Policy"
+msgstr ""
+
+#: .\cookbook\templates\account\signup.html:65
msgid "Create User"
msgstr ""
-#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:160
+#: .\cookbook\templates\account\signup.html:69
+msgid "Already have an account?"
+msgstr ""
+
+#: .\cookbook\templates\account\signup_closed.html:5
+#: .\cookbook\templates\account\signup_closed.html:11
+msgid "Sign Up Closed"
+msgstr ""
+
+#: .\cookbook\templates\account\signup_closed.html:13
+msgid "We are sorry, but the sign up is currently closed."
+msgstr ""
+
+#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:170
#: .\cookbook\templates\rest_framework\api.html:11
msgid "API Documentation"
msgstr ""
-#: .\cookbook\templates\base.html:78
+#: .\cookbook\templates\base.html:85
msgid "Utensils"
msgstr ""
-#: .\cookbook\templates\base.html:88
+#: .\cookbook\templates\base.html:95
msgid "Shopping"
msgstr ""
-#: .\cookbook\templates\base.html:102 .\cookbook\views\delete.py:84
-#: .\cookbook\views\edit.py:93 .\cookbook\views\lists.py:26
-#: .\cookbook\views\new.py:66
+#: .\cookbook\templates\base.html:109 .\cookbook\views\delete.py:84
+#: .\cookbook\views\edit.py:102 .\cookbook\views\lists.py:26
+#: .\cookbook\views\new.py:78
msgid "Keyword"
msgstr ""
-#: .\cookbook\templates\base.html:104
+#: .\cookbook\templates\base.html:111
msgid "Batch Edit"
msgstr ""
-#: .\cookbook\templates\base.html:109
+#: .\cookbook\templates\base.html:116
msgid "Storage Data"
msgstr ""
-#: .\cookbook\templates\base.html:113
+#: .\cookbook\templates\base.html:120
msgid "Storage Backends"
msgstr ""
-#: .\cookbook\templates\base.html:115
+#: .\cookbook\templates\base.html:122
msgid "Configure Sync"
msgstr ""
-#: .\cookbook\templates\base.html:117
+#: .\cookbook\templates\base.html:124
msgid "Discovered Recipes"
msgstr ""
-#: .\cookbook\templates\base.html:119
+#: .\cookbook\templates\base.html:126
msgid "Discovery Log"
msgstr ""
-#: .\cookbook\templates\base.html:121 .\cookbook\templates\stats.html:10
+#: .\cookbook\templates\base.html:128 .\cookbook\templates\stats.html:10
msgid "Statistics"
msgstr ""
-#: .\cookbook\templates\base.html:123
+#: .\cookbook\templates\base.html:130
msgid "Units & Ingredients"
msgstr ""
-#: .\cookbook\templates\base.html:125
+#: .\cookbook\templates\base.html:132 .\cookbook\templates\index.html:47
msgid "Import Recipe"
msgstr ""
-#: .\cookbook\templates\base.html:144 .\cookbook\templates\settings.html:6
+#: .\cookbook\templates\base.html:151 .\cookbook\templates\settings.html:6
#: .\cookbook\templates\settings.html:16
msgid "Settings"
msgstr ""
-#: .\cookbook\templates\base.html:146 .\cookbook\templates\history.html:6
+#: .\cookbook\templates\base.html:153 .\cookbook\templates\history.html:6
#: .\cookbook\templates\history.html:14
msgid "History"
msgstr ""
-#: .\cookbook\templates\base.html:150 .\cookbook\templates\system.html:13
+#: .\cookbook\templates\base.html:155 .\cookbook\templates\space.html:7
+msgid "Space Settings"
+msgstr ""
+
+#: .\cookbook\templates\base.html:160 .\cookbook\templates\system.html:13
msgid "System"
msgstr ""
-#: .\cookbook\templates\base.html:152
+#: .\cookbook\templates\base.html:162
msgid "Admin"
msgstr ""
-#: .\cookbook\templates\base.html:156
+#: .\cookbook\templates\base.html:166
msgid "Markdown Guide"
msgstr ""
-#: .\cookbook\templates\base.html:158
+#: .\cookbook\templates\base.html:168
msgid "GitHub"
msgstr ""
-#: .\cookbook\templates\base.html:162
+#: .\cookbook\templates\base.html:172
msgid "API Browser"
msgstr ""
-#: .\cookbook\templates\base.html:165
-msgid "Logout"
+#: .\cookbook\templates\base.html:175
+msgid "Log out"
msgstr ""
#: .\cookbook\templates\batch\edit.html:6
@@ -533,7 +728,7 @@ msgstr ""
msgid "Add the specified keywords to all recipes containing a word"
msgstr ""
-#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:76
+#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:85
msgid "Sync"
msgstr ""
@@ -560,7 +755,7 @@ msgstr ""
msgid "Importing Recipes"
msgstr ""
-#: .\cookbook\templates\batch\waiting.html:23
+#: .\cookbook\templates\batch\waiting.html:28
msgid ""
"This can take a few minutes, depending on the number of recipes in sync, "
"please wait."
@@ -597,26 +792,31 @@ msgid "Export Recipes"
msgstr ""
#: .\cookbook\templates\export.html:14 .\cookbook\templates\export.html:20
-#: .\cookbook\templates\shopping_list.html:347
+#: .\cookbook\templates\shopping_list.html:351
#: .\cookbook\templates\test2.html:14 .\cookbook\templates\test2.html:20
msgid "Export"
msgstr ""
+#: .\cookbook\templates\files.html:7
+msgid "Files"
+msgstr ""
+
#: .\cookbook\templates\forms\edit_import_recipe.html:5
#: .\cookbook\templates\forms\edit_import_recipe.html:9
msgid "Import new Recipe"
msgstr ""
#: .\cookbook\templates\forms\edit_import_recipe.html:14
-#: .\cookbook\templates\forms\edit_internal_recipe.html:389
-#: .\cookbook\templates\forms\edit_internal_recipe.html:421
+#: .\cookbook\templates\forms\edit_internal_recipe.html:416
+#: .\cookbook\templates\forms\edit_internal_recipe.html:448
#: .\cookbook\templates\generic\edit_template.html:23
#: .\cookbook\templates\generic\new_template.html:23
#: .\cookbook\templates\include\log_cooking.html:28
#: .\cookbook\templates\meal_plan.html:325
-#: .\cookbook\templates\settings.html:28 .\cookbook\templates\settings.html:35
-#: .\cookbook\templates\settings.html:58 .\cookbook\templates\settings.html:73
-#: .\cookbook\templates\shopping_list.html:349
+#: .\cookbook\templates\settings.html:44 .\cookbook\templates\settings.html:52
+#: .\cookbook\templates\settings.html:96
+#: .\cookbook\templates\settings.html:114
+#: .\cookbook\templates\shopping_list.html:353
msgid "Save"
msgstr ""
@@ -625,179 +825,186 @@ msgstr ""
msgid "Edit Recipe"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:52
+#: .\cookbook\templates\forms\edit_internal_recipe.html:56
+#: .\cookbook\templates\url_import.html:171
msgid "Description"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:72
+#: .\cookbook\templates\forms\edit_internal_recipe.html:76
msgid "Waiting Time"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:78
+#: .\cookbook\templates\forms\edit_internal_recipe.html:82
msgid "Servings Text"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:89
+#: .\cookbook\templates\forms\edit_internal_recipe.html:93
msgid "Select Keywords"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:90
-#: .\cookbook\templates\url_import.html:212
+#: .\cookbook\templates\forms\edit_internal_recipe.html:94
+#: .\cookbook\templates\url_import.html:583
msgid "Add Keyword"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:108
+#: .\cookbook\templates\forms\edit_internal_recipe.html:112
msgid "Nutrition"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:112
-#: .\cookbook\templates\forms\edit_internal_recipe.html:162
+#: .\cookbook\templates\forms\edit_internal_recipe.html:116
+#: .\cookbook\templates\forms\edit_internal_recipe.html:166
msgid "Delete Step"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:116
+#: .\cookbook\templates\forms\edit_internal_recipe.html:120
msgid "Calories"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:119
+#: .\cookbook\templates\forms\edit_internal_recipe.html:123
msgid "Carbohydrates"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:122
+#: .\cookbook\templates\forms\edit_internal_recipe.html:126
msgid "Fats"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:124
+#: .\cookbook\templates\forms\edit_internal_recipe.html:128
msgid "Proteins"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:146
-#: .\cookbook\templates\forms\edit_internal_recipe.html:454
+#: .\cookbook\templates\forms\edit_internal_recipe.html:150
+#: .\cookbook\templates\forms\edit_internal_recipe.html:481
msgid "Step"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:167
+#: .\cookbook\templates\forms\edit_internal_recipe.html:171
msgid "Show as header"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:173
+#: .\cookbook\templates\forms\edit_internal_recipe.html:177
msgid "Hide as header"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:178
+#: .\cookbook\templates\forms\edit_internal_recipe.html:182
msgid "Move Up"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:183
+#: .\cookbook\templates\forms\edit_internal_recipe.html:187
msgid "Move Down"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:192
+#: .\cookbook\templates\forms\edit_internal_recipe.html:196
msgid "Step Name"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:196
+#: .\cookbook\templates\forms\edit_internal_recipe.html:200
msgid "Step Type"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:207
+#: .\cookbook\templates\forms\edit_internal_recipe.html:212
msgid "Step time in Minutes"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:261
-#: .\cookbook\templates\shopping_list.html:183
-msgid "Select Unit"
+#: .\cookbook\templates\forms\edit_internal_recipe.html:228
+msgid "Select File"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:262
-#: .\cookbook\templates\forms\edit_internal_recipe.html:286
-#: .\cookbook\templates\shopping_list.html:184
-#: .\cookbook\templates\shopping_list.html:206
-msgid "Create"
-msgstr ""
-
-#: .\cookbook\templates\forms\edit_internal_recipe.html:263
-#: .\cookbook\templates\forms\edit_internal_recipe.html:287
-#: .\cookbook\templates\shopping_list.html:185
-#: .\cookbook\templates\shopping_list.html:207
-#: .\cookbook\templates\shopping_list.html:237
-#: .\cookbook\templates\shopping_list.html:261
-#: .\cookbook\templates\url_import.html:124
-#: .\cookbook\templates\url_import.html:156
+#: .\cookbook\templates\forms\edit_internal_recipe.html:229
+#: .\cookbook\templates\forms\edit_internal_recipe.html:290
+#: .\cookbook\templates\forms\edit_internal_recipe.html:314
+#: .\cookbook\templates\shopping_list.html:189
+#: .\cookbook\templates\shopping_list.html:211
+#: .\cookbook\templates\shopping_list.html:241
+#: .\cookbook\templates\shopping_list.html:265
+#: .\cookbook\templates\url_import.html:495
+#: .\cookbook\templates\url_import.html:527
msgid "Select"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:285
-#: .\cookbook\templates\shopping_list.html:205
+#: .\cookbook\templates\forms\edit_internal_recipe.html:288
+#: .\cookbook\templates\shopping_list.html:187
+msgid "Select Unit"
+msgstr ""
+
+#: .\cookbook\templates\forms\edit_internal_recipe.html:289
+#: .\cookbook\templates\forms\edit_internal_recipe.html:313
+#: .\cookbook\templates\shopping_list.html:188
+#: .\cookbook\templates\shopping_list.html:210
+msgid "Create"
+msgstr ""
+
+#: .\cookbook\templates\forms\edit_internal_recipe.html:312
+#: .\cookbook\templates\shopping_list.html:209
msgid "Select Food"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:302
+#: .\cookbook\templates\forms\edit_internal_recipe.html:329
#: .\cookbook\templates\meal_plan.html:256
-#: .\cookbook\templates\url_import.html:171
+#: .\cookbook\templates\url_import.html:542
msgid "Note"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:319
+#: .\cookbook\templates\forms\edit_internal_recipe.html:346
msgid "Delete Ingredient"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:325
+#: .\cookbook\templates\forms\edit_internal_recipe.html:352
msgid "Make Header"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:331
+#: .\cookbook\templates\forms\edit_internal_recipe.html:358
msgid "Make Ingredient"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:337
+#: .\cookbook\templates\forms\edit_internal_recipe.html:364
msgid "Disable Amount"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:343
+#: .\cookbook\templates\forms\edit_internal_recipe.html:370
msgid "Enable Amount"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:348
+#: .\cookbook\templates\forms\edit_internal_recipe.html:375
msgid "Copy Template Reference"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:374
-#: .\cookbook\templates\url_import.html:196
+#: .\cookbook\templates\forms\edit_internal_recipe.html:401
+#: .\cookbook\templates\url_import.html:297
+#: .\cookbook\templates\url_import.html:567
msgid "Instructions"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:387
-#: .\cookbook\templates\forms\edit_internal_recipe.html:418
+#: .\cookbook\templates\forms\edit_internal_recipe.html:414
+#: .\cookbook\templates\forms\edit_internal_recipe.html:445
msgid "Save & View"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:391
-#: .\cookbook\templates\forms\edit_internal_recipe.html:424
+#: .\cookbook\templates\forms\edit_internal_recipe.html:418
+#: .\cookbook\templates\forms\edit_internal_recipe.html:451
msgid "Add Step"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:394
-#: .\cookbook\templates\forms\edit_internal_recipe.html:428
+#: .\cookbook\templates\forms\edit_internal_recipe.html:421
+#: .\cookbook\templates\forms\edit_internal_recipe.html:455
msgid "Add Nutrition"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:396
-#: .\cookbook\templates\forms\edit_internal_recipe.html:430
+#: .\cookbook\templates\forms\edit_internal_recipe.html:423
+#: .\cookbook\templates\forms\edit_internal_recipe.html:457
msgid "Remove Nutrition"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:398
-#: .\cookbook\templates\forms\edit_internal_recipe.html:433
+#: .\cookbook\templates\forms\edit_internal_recipe.html:425
+#: .\cookbook\templates\forms\edit_internal_recipe.html:460
msgid "View Recipe"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:400
-#: .\cookbook\templates\forms\edit_internal_recipe.html:435
+#: .\cookbook\templates\forms\edit_internal_recipe.html:427
+#: .\cookbook\templates\forms\edit_internal_recipe.html:462
msgid "Delete Recipe"
msgstr ""
-#: .\cookbook\templates\forms\edit_internal_recipe.html:441
+#: .\cookbook\templates\forms\edit_internal_recipe.html:468
msgid "Steps"
msgstr ""
@@ -817,7 +1024,7 @@ msgid ""
msgstr ""
#: .\cookbook\templates\forms\ingredients.html:24
-#: .\cookbook\templates\stats.html:26
+#: .\cookbook\templates\space.html:35 .\cookbook\templates\stats.html:26
msgid "Units"
msgstr ""
@@ -839,10 +1046,6 @@ msgstr ""
msgid "Are you sure you want to delete the %(title)s: %(object)s "
msgstr ""
-#: .\cookbook\templates\generic\delete_template.html:21
-msgid "Confirm"
-msgstr ""
-
#: .\cookbook\templates\generic\edit_template.html:30
msgid "View"
msgstr ""
@@ -864,12 +1067,6 @@ msgstr ""
msgid "Import all"
msgstr ""
-#: .\cookbook\templates\generic\new_template.html:6
-#: .\cookbook\templates\generic\new_template.html:14
-#: .\cookbook\templates\meal_plan.html:323
-msgid "New"
-msgstr ""
-
#: .\cookbook\templates\generic\table_template.html:76
#: .\cookbook\templates\recipes_table.html:121
msgid "previous"
@@ -914,7 +1111,7 @@ msgstr ""
#: .\cookbook\templates\include\recipe_open_modal.html:7
#: .\cookbook\templates\meal_plan.html:247 .\cookbook\views\delete.py:28
-#: .\cookbook\views\edit.py:264 .\cookbook\views\new.py:40
+#: .\cookbook\views\edit.py:273 .\cookbook\views\new.py:52
msgid "Recipe"
msgstr ""
@@ -947,10 +1144,6 @@ msgstr ""
msgid "New Recipe"
msgstr ""
-#: .\cookbook\templates\index.html:47
-msgid "Website Import"
-msgstr ""
-
#: .\cookbook\templates\index.html:53
msgid "Advanced Search"
msgstr ""
@@ -964,7 +1157,7 @@ msgid "Last viewed"
msgstr ""
#: .\cookbook\templates\index.html:87 .\cookbook\templates\meal_plan.html:178
-#: .\cookbook\templates\stats.html:22
+#: .\cookbook\templates\space.html:29 .\cookbook\templates\stats.html:22
msgid "Recipes"
msgstr ""
@@ -1112,7 +1305,7 @@ msgid "New Entry"
msgstr ""
#: .\cookbook\templates\meal_plan.html:113
-#: .\cookbook\templates\shopping_list.html:52
+#: .\cookbook\templates\shopping_list.html:56
msgid "Search Recipe"
msgstr ""
@@ -1142,7 +1335,7 @@ msgstr ""
#: .\cookbook\templates\meal_plan.html:168
#: .\cookbook\templates\shopping_list.html:7
#: .\cookbook\templates\shopping_list.html:29
-#: .\cookbook\templates\shopping_list.html:705
+#: .\cookbook\templates\shopping_list.html:714
msgid "Shopping List"
msgstr ""
@@ -1192,7 +1385,7 @@ msgstr ""
#: .\cookbook\templates\meal_plan.html:270
#: .\cookbook\templates\meal_plan_entry.html:20
-#: .\cookbook\templates\shopping_list.html:250
+#: .\cookbook\templates\shopping_list.html:254
msgid "Shared with"
msgstr ""
@@ -1267,7 +1460,6 @@ msgstr ""
#: .\cookbook\templates\no_groups_info.html:18
#: .\cookbook\templates\no_perm_info.html:15
-#: .\cookbook\templates\no_space_info.html:15
msgid "Please contact your administrator."
msgstr ""
@@ -1282,13 +1474,48 @@ msgid ""
"action."
msgstr ""
-#: .\cookbook\templates\no_space_info.html:5
-#: .\cookbook\templates\no_space_info.html:12
+#: .\cookbook\templates\no_space_info.html:6
+#: .\cookbook\templates\no_space_info.html:13
msgid "No Space"
msgstr ""
-#: .\cookbook\templates\no_space_info.html:15
-msgid "You are not a member of any space."
+#: .\cookbook\templates\no_space_info.html:17
+msgid ""
+"Recipes, foods, shopping lists and more are organized in spaces of one or "
+"more people."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:18
+msgid ""
+"You can either be invited into an existing space or create your own one."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:31
+#: .\cookbook\templates\no_space_info.html:40
+msgid "Join Space"
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:34
+msgid "Join an existing space."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:35
+msgid ""
+"To join an existing space either enter your invite token or click on the "
+"invite link the space owner send you."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:48
+#: .\cookbook\templates\no_space_info.html:56
+msgid "Create Space"
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:51
+msgid "Create your own recipe space."
+msgstr ""
+
+#: .\cookbook\templates\no_space_info.html:52
+msgid "Start your own recipe space and invite other users to it."
msgstr ""
#: .\cookbook\templates\offline.html:6
@@ -1305,28 +1532,29 @@ msgid ""
"recently viewed them. Keep in mind that data might be outdated."
msgstr ""
-#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\stats.html:47
+#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\space.html:56
+#: .\cookbook\templates\stats.html:47
msgid "Comments"
msgstr ""
#: .\cookbook\templates\recipe_view.html:44 .\cookbook\views\delete.py:118
-#: .\cookbook\views\edit.py:170
+#: .\cookbook\views\edit.py:179
msgid "Comment"
msgstr ""
#: .\cookbook\templates\recipes_table.html:19
#: .\cookbook\templates\recipes_table.html:23
-#: .\cookbook\templates\url_import.html:69
+#: .\cookbook\templates\url_import.html:440
msgid "Recipe Image"
msgstr ""
#: .\cookbook\templates\recipes_table.html:51
-#: .\cookbook\templates\url_import.html:74
+#: .\cookbook\templates\url_import.html:445
msgid "Preparation time ca."
msgstr ""
#: .\cookbook\templates\recipes_table.html:57
-#: .\cookbook\templates\url_import.html:79
+#: .\cookbook\templates\url_import.html:450
msgid "Waiting time ca."
msgstr ""
@@ -1342,39 +1570,67 @@ msgstr ""
msgid "Recipe Home"
msgstr ""
-#: .\cookbook\templates\settings.html:22
+#: .\cookbook\templates\settings.html:23
msgid "Account"
msgstr ""
-#: .\cookbook\templates\settings.html:38
-msgid "Link social account"
+#: .\cookbook\templates\settings.html:27
+msgid "Preferences"
msgstr ""
-#: .\cookbook\templates\settings.html:42
+#: .\cookbook\templates\settings.html:31
+msgid "API-Settings"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:39
+msgid "Name Settings"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:47
+msgid "Password Settings"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:55
+msgid "Email Settings"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:57
+msgid "Manage Email Settings"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:61
+msgid "Social"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:63
+msgid "Manage Social Accounts"
+msgstr ""
+
+#: .\cookbook\templates\settings.html:75
msgid "Language"
msgstr ""
-#: .\cookbook\templates\settings.html:67
+#: .\cookbook\templates\settings.html:105
msgid "Style"
msgstr ""
-#: .\cookbook\templates\settings.html:79
+#: .\cookbook\templates\settings.html:125
msgid "API Token"
msgstr ""
-#: .\cookbook\templates\settings.html:80
+#: .\cookbook\templates\settings.html:126
msgid ""
"You can use both basic authentication and token based authentication to "
"access the REST API."
msgstr ""
-#: .\cookbook\templates\settings.html:92
+#: .\cookbook\templates\settings.html:143
msgid ""
"Use the token as an Authorization header prefixed by the word token as shown "
"in the following examples:"
msgstr ""
-#: .\cookbook\templates\settings.html:94
+#: .\cookbook\templates\settings.html:145
msgid "or"
msgstr ""
@@ -1395,58 +1651,55 @@ msgstr ""
msgid "Create Superuser account"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:75
+#: .\cookbook\templates\shopping_list.html:79
msgid "Shopping Recipes"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:79
+#: .\cookbook\templates\shopping_list.html:83
msgid "No recipes selected"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:146
+#: .\cookbook\templates\shopping_list.html:150
msgid "Entry Mode"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:154
+#: .\cookbook\templates\shopping_list.html:158
msgid "Add Entry"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:170
+#: .\cookbook\templates\shopping_list.html:174
msgid "Amount"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:226
+#: .\cookbook\templates\shopping_list.html:230
+#: .\cookbook\templates\supermarket.html:7
msgid "Supermarket"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:236
+#: .\cookbook\templates\shopping_list.html:240
msgid "Select Supermarket"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:260
+#: .\cookbook\templates\shopping_list.html:264
msgid "Select User"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:279
+#: .\cookbook\templates\shopping_list.html:283
msgid "Finished"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:292
+#: .\cookbook\templates\shopping_list.html:296
msgid "You are offline, shopping list might not syncronize."
msgstr ""
-#: .\cookbook\templates\shopping_list.html:357
+#: .\cookbook\templates\shopping_list.html:361
msgid "Copy/Export"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:361
+#: .\cookbook\templates\shopping_list.html:365
msgid "List Prefix"
msgstr ""
-#: .\cookbook\templates\shopping_list.html:708
-msgid "There was an error creating a resource!"
-msgstr ""
-
#: .\cookbook\templates\socialaccount\connections.html:4
#: .\cookbook\templates\socialaccount\connections.html:7
msgid "Account Connections"
@@ -1458,10 +1711,6 @@ msgid ""
" accounts:"
msgstr ""
-#: .\cookbook\templates\socialaccount\connections.html:36
-msgid "Remove"
-msgstr ""
-
#: .\cookbook\templates\socialaccount\connections.html:44
msgid ""
"You currently have no social network accounts connected to this account."
@@ -1471,38 +1720,87 @@ msgstr ""
msgid "Add a 3rd Party Account"
msgstr ""
-#: .\cookbook\templates\stats.html:4
-msgid "Stats"
+#: .\cookbook\templates\space.html:18
+msgid "Manage Subscription"
msgstr ""
-#: .\cookbook\templates\stats.html:19
+#: .\cookbook\templates\space.html:26 .\cookbook\templates\stats.html:19
msgid "Number of objects"
msgstr ""
-#: .\cookbook\templates\stats.html:30
+#: .\cookbook\templates\space.html:39 .\cookbook\templates\stats.html:30
msgid "Recipe Imports"
msgstr ""
-#: .\cookbook\templates\stats.html:38
+#: .\cookbook\templates\space.html:47 .\cookbook\templates\stats.html:38
msgid "Objects stats"
msgstr ""
-#: .\cookbook\templates\stats.html:41
+#: .\cookbook\templates\space.html:50 .\cookbook\templates\stats.html:41
msgid "Recipes without Keywords"
msgstr ""
-#: .\cookbook\templates\stats.html:43
+#: .\cookbook\templates\space.html:52 .\cookbook\templates\stats.html:43
msgid "External Recipes"
msgstr ""
-#: .\cookbook\templates\stats.html:45
+#: .\cookbook\templates\space.html:54 .\cookbook\templates\stats.html:45
msgid "Internal Recipes"
msgstr ""
-#: .\cookbook\templates\system.html:21 .\cookbook\views\lists.py:115
+#: .\cookbook\templates\space.html:67
+msgid "Members"
+msgstr ""
+
+#: .\cookbook\templates\space.html:71
+msgid "Invite User"
+msgstr ""
+
+#: .\cookbook\templates\space.html:82
+msgid "User"
+msgstr ""
+
+#: .\cookbook\templates\space.html:83
+msgid "Groups"
+msgstr ""
+
+#: .\cookbook\templates\space.html:99
+msgid "admin"
+msgstr ""
+
+#: .\cookbook\templates\space.html:100
+msgid "user"
+msgstr ""
+
+#: .\cookbook\templates\space.html:101
+msgid "guest"
+msgstr ""
+
+#: .\cookbook\templates\space.html:102
+msgid "remove"
+msgstr ""
+
+#: .\cookbook\templates\space.html:106
+msgid "Update"
+msgstr ""
+
+#: .\cookbook\templates\space.html:110
+msgid "You cannot edit yourself."
+msgstr ""
+
+#: .\cookbook\templates\space.html:117
+msgid "There are no members in your space yet!"
+msgstr ""
+
+#: .\cookbook\templates\space.html:124 .\cookbook\templates\system.html:21
+#: .\cookbook\views\lists.py:115
msgid "Invite Links"
msgstr ""
+#: .\cookbook\templates\stats.html:4
+msgid "Stats"
+msgstr ""
+
#: .\cookbook\templates\system.html:22
msgid "Show Links"
msgstr ""
@@ -1600,45 +1898,141 @@ msgid ""
" "
msgstr ""
-#: .\cookbook\templates\url_import.html:5
+#: .\cookbook\templates\url_import.html:6
msgid "URL Import"
msgstr ""
-#: .\cookbook\templates\url_import.html:23
+#: .\cookbook\templates\url_import.html:31
+msgid "Drag me to your bookmarks to import recipes from anywhere"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:32
+msgid "Bookmark Me!"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:61
msgid "Enter website URL"
msgstr ""
-#: .\cookbook\templates\url_import.html:36
-msgid "Enter json directly"
+#: .\cookbook\templates\url_import.html:97
+msgid "Select recipe files to import or drop them here..."
msgstr ""
-#: .\cookbook\templates\url_import.html:57
+#: .\cookbook\templates\url_import.html:118
+msgid "Paste json or html source here to load recipe."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:146
+msgid "Preview Recipe Data"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:147
+msgid "Drag recipe attributes from the right into the appropriate box below."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:156
+#: .\cookbook\templates\url_import.html:173
+#: .\cookbook\templates\url_import.html:190
+#: .\cookbook\templates\url_import.html:209
+#: .\cookbook\templates\url_import.html:227
+#: .\cookbook\templates\url_import.html:242
+#: .\cookbook\templates\url_import.html:257
+#: .\cookbook\templates\url_import.html:273
+#: .\cookbook\templates\url_import.html:300
+#: .\cookbook\templates\url_import.html:351
+msgid "Clear Contents"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:158
+msgid "Text dragged here will be appended to the name."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:175
+msgid "Text dragged here will be appended to the description."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:192
+msgid "Keywords dragged here will be appended to current list"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:207
+msgid "Image"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:239
+msgid "Prep Time"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:254
+msgid "Cook Time"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:275
+msgid "Ingredients dragged here will be appended to current list."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:302
+msgid ""
+"Recipe instructions dragged here will be appended to current instructions."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:325
+msgid "Discovered Attributes"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:327
+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:344
+msgid "Show Blank Field"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:349
+msgid "Blank Field"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:353
+msgid "Items dragged to Blank Field will be appended."
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:400
+msgid "Delete Text"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:413
+msgid "Delete image"
+msgstr ""
+
+#: .\cookbook\templates\url_import.html:429
msgid "Recipe Name"
msgstr ""
-#: .\cookbook\templates\url_import.html:62
+#: .\cookbook\templates\url_import.html:433
msgid "Recipe Description"
msgstr ""
-#: .\cookbook\templates\url_import.html:123
-#: .\cookbook\templates\url_import.html:155
-#: .\cookbook\templates\url_import.html:211
+#: .\cookbook\templates\url_import.html:494
+#: .\cookbook\templates\url_import.html:526
+#: .\cookbook\templates\url_import.html:582
msgid "Select one"
msgstr ""
-#: .\cookbook\templates\url_import.html:225
+#: .\cookbook\templates\url_import.html:596
msgid "All Keywords"
msgstr ""
-#: .\cookbook\templates\url_import.html:228
+#: .\cookbook\templates\url_import.html:599
msgid "Import all keywords, not only the ones already existing."
msgstr ""
-#: .\cookbook\templates\url_import.html:255
+#: .\cookbook\templates\url_import.html:626
msgid "Information"
msgstr ""
-#: .\cookbook\templates\url_import.html:257
+#: .\cookbook\templates\url_import.html:628
msgid ""
" Only websites containing ld+json or microdata information can currently\n"
" be imported. Most big recipe pages "
@@ -1649,48 +2043,73 @@ msgid ""
" github issues."
msgstr ""
-#: .\cookbook\templates\url_import.html:265
+#: .\cookbook\templates\url_import.html:636
msgid "Google ld+json Info"
msgstr ""
-#: .\cookbook\templates\url_import.html:268
+#: .\cookbook\templates\url_import.html:639
msgid "GitHub Issues"
msgstr ""
-#: .\cookbook\templates\url_import.html:270
+#: .\cookbook\templates\url_import.html:641
msgid "Recipe Markup Specification"
msgstr ""
-#: .\cookbook\views\api.py:71
+#: .\cookbook\views\api.py:77
msgid "Parameter updated_at incorrectly formatted"
msgstr ""
-#: .\cookbook\views\api.py:455 .\cookbook\views\views.py:226
+#: .\cookbook\views\api.py:553 .\cookbook\views\views.py:295
msgid "This feature is not available in the demo version!"
msgstr ""
-#: .\cookbook\views\api.py:478
+#: .\cookbook\views\api.py:576
msgid "Sync successful!"
msgstr ""
-#: .\cookbook\views\api.py:483
+#: .\cookbook\views\api.py:581
msgid "Error synchronizing with Storage"
msgstr ""
-#: .\cookbook\views\api.py:556 .\cookbook\views\api.py:576
+#: .\cookbook\views\api.py:649
+msgid "Nothing to do."
+msgstr ""
+
+#: .\cookbook\views\api.py:664
+msgid "The requested site provided malformed data and cannot be read."
+msgstr ""
+
+#: .\cookbook\views\api.py:671
msgid "The requested page could not be found."
msgstr ""
-#: .\cookbook\views\api.py:585
+#: .\cookbook\views\api.py:680
msgid ""
-"The requested page refused to provide any information (Status Code 403)."
+"The requested site does not provide any recognized data format to import the "
+"recipe from."
msgstr ""
-#: .\cookbook\views\api.py:611
-msgid "Could not parse correctly..."
+#: .\cookbook\views\api.py:694
+msgid "No useable data could be found."
msgstr ""
-#: .\cookbook\views\data.py:94
+#: .\cookbook\views\api.py:710
+msgid "I couldn't find anything to do."
+msgstr ""
+
+#: .\cookbook\views\data.py:30 .\cookbook\views\data.py:121
+#: .\cookbook\views\edit.py:50 .\cookbook\views\import_export.py:67
+#: .\cookbook\views\new.py:32
+msgid "You have reached the maximum number of recipes for your space."
+msgstr ""
+
+#: .\cookbook\views\data.py:34 .\cookbook\views\data.py:125
+#: .\cookbook\views\edit.py:54 .\cookbook\views\import_export.py:71
+#: .\cookbook\views\new.py:36
+msgid "You have more users than allowed in your space."
+msgstr ""
+
+#: .\cookbook\views\data.py:103
#, python-format
msgid "Batch edit done. %(count)d recipe was updated."
msgid_plural "Batch edit done. %(count)d Recipes where updated."
@@ -1702,7 +2121,7 @@ msgid "Monitor"
msgstr ""
#: .\cookbook\views\delete.py:96 .\cookbook\views\lists.py:102
-#: .\cookbook\views\new.py:86
+#: .\cookbook\views\new.py:98
msgid "Storage Backend"
msgstr ""
@@ -1711,8 +2130,8 @@ msgid ""
"Could not delete this storage backend as it is used in at least one monitor."
msgstr ""
-#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:204
-#: .\cookbook\views\new.py:144
+#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:213
+#: .\cookbook\views\new.py:156
msgid "Recipe Book"
msgstr ""
@@ -1720,55 +2139,55 @@ msgstr ""
msgid "Bookmarks"
msgstr ""
-#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:214
+#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:252
msgid "Invite Link"
msgstr ""
-#: .\cookbook\views\edit.py:110
+#: .\cookbook\views\edit.py:119
msgid "Food"
msgstr ""
-#: .\cookbook\views\edit.py:119
+#: .\cookbook\views\edit.py:128
msgid "You cannot edit this storage!"
msgstr ""
-#: .\cookbook\views\edit.py:139
+#: .\cookbook\views\edit.py:148
msgid "Storage saved!"
msgstr ""
-#: .\cookbook\views\edit.py:145
+#: .\cookbook\views\edit.py:154
msgid "There was an error updating this storage backend!"
msgstr ""
-#: .\cookbook\views\edit.py:156
+#: .\cookbook\views\edit.py:165
msgid "Storage"
msgstr ""
-#: .\cookbook\views\edit.py:252
+#: .\cookbook\views\edit.py:261
msgid "Changes saved!"
msgstr ""
-#: .\cookbook\views\edit.py:256
+#: .\cookbook\views\edit.py:265
msgid "Error saving changes!"
msgstr ""
-#: .\cookbook\views\edit.py:289
+#: .\cookbook\views\edit.py:299
msgid "Units merged!"
msgstr ""
-#: .\cookbook\views\edit.py:291 .\cookbook\views\edit.py:307
+#: .\cookbook\views\edit.py:301 .\cookbook\views\edit.py:317
msgid "Cannot merge with the same object!"
msgstr ""
-#: .\cookbook\views\edit.py:305
+#: .\cookbook\views\edit.py:315
msgid "Foods merged!"
msgstr ""
-#: .\cookbook\views\import_export.py:73
+#: .\cookbook\views\import_export.py:93
msgid "Importing is not implemented for this provider"
msgstr ""
-#: .\cookbook\views\import_export.py:92
+#: .\cookbook\views\import_export.py:115
msgid "Exporting is not implemented for this provider"
msgstr ""
@@ -1784,41 +2203,103 @@ msgstr ""
msgid "Shopping Lists"
msgstr ""
-#: .\cookbook\views\new.py:111
+#: .\cookbook\views\new.py:123
msgid "Imported new recipe!"
msgstr ""
-#: .\cookbook\views\new.py:114
+#: .\cookbook\views\new.py:126
msgid "There was an error importing this recipe!"
msgstr ""
-#: .\cookbook\views\views.py:123
+#: .\cookbook\views\new.py:226
+msgid "Hello"
+msgstr ""
+
+#: .\cookbook\views\new.py:226
+msgid "You have been invited by "
+msgstr ""
+
+#: .\cookbook\views\new.py:227
+msgid " to join their Tandoor Recipes space "
+msgstr ""
+
+#: .\cookbook\views\new.py:228
+msgid "Click the following link to activate your account: "
+msgstr ""
+
+#: .\cookbook\views\new.py:229
+msgid ""
+"If the link does not work use the following code to manually join the space: "
+msgstr ""
+
+#: .\cookbook\views\new.py:230
+msgid "The invitation is valid until "
+msgstr ""
+
+#: .\cookbook\views\new.py:231
+msgid ""
+"Tandoor Recipes is an Open Source recipe manager. Check it out on GitHub "
+msgstr ""
+
+#: .\cookbook\views\new.py:234
+msgid "Tandoor Recipes Invite"
+msgstr ""
+
+#: .\cookbook\views\new.py:241
+msgid "Invite link successfully send to user."
+msgstr ""
+
+#: .\cookbook\views\new.py:244
+msgid ""
+"You have send to many emails, please share the link manually or wait a few "
+"hours."
+msgstr ""
+
+#: .\cookbook\views\new.py:246
+msgid "Email to user could not be send, please share link manually."
+msgstr ""
+
+#: .\cookbook\views\views.py:125
+msgid ""
+"You have successfully created your own recipe space. Start by adding some "
+"recipes or invite other people to join you."
+msgstr ""
+
+#: .\cookbook\views\views.py:173
msgid "You do not have the required permissions to perform this action!"
msgstr ""
-#: .\cookbook\views\views.py:134
+#: .\cookbook\views\views.py:184
msgid "Comment saved!"
msgstr ""
-#: .\cookbook\views\views.py:326
+#: .\cookbook\views\views.py:396
msgid ""
"The setup page can only be used to create the first user! If you have "
"forgotten your superuser credentials please consult the django documentation "
"on how to reset passwords."
msgstr ""
-#: .\cookbook\views\views.py:333 .\cookbook\views\views.py:378
+#: .\cookbook\views\views.py:403
msgid "Passwords dont match!"
msgstr ""
-#: .\cookbook\views\views.py:349 .\cookbook\views\views.py:385
+#: .\cookbook\views\views.py:419
msgid "User has been created, please login!"
msgstr ""
-#: .\cookbook\views\views.py:365
+#: .\cookbook\views\views.py:435
msgid "Malformed Invite Link supplied!"
msgstr ""
-#: .\cookbook\views\views.py:405
+#: .\cookbook\views\views.py:441
+msgid "You are already member of a space and therefore cannot join this one."
+msgstr ""
+
+#: .\cookbook\views\views.py:452
+msgid "Successfully joined space."
+msgstr ""
+
+#: .\cookbook\views\views.py:458
msgid "Invite Link not valid or already used!"
msgstr ""
diff --git a/recipes/locale/ca/LC_MESSAGES/django.po b/recipes/locale/ca/LC_MESSAGES/django.po
index 6a8cfc86..38116825 100644
--- a/recipes/locale/ca/LC_MESSAGES/django.po
+++ b/recipes/locale/ca/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-04-11 15:09+0200\n"
+"POT-Creation-Date: 2021-06-12 20:30+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME t&&(i=a,n=o),!r)return[0,n,i];var c=Math.floor(n/i);return[c,n-c*i,i]}var o={methods:{makeToast:function(e,t){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;return a(e,t,r)}}};function a(e,t){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,i=new n["a"];i.$bvToast.toast(t,{title:e,variant:r,toaster:"b-toaster-top-center",solid:!0})}var s={methods:{_:function(e){return c(e)}}};function c(e){return window.gettext(e)}var u={methods:{resolveDjangoUrl:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;return d(e,t)}}};function d(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;return null!==t?window.Urls[e](t):window.Urls[e]()}function p(e){return window.USER_PREF[e]}function h(e,t){if(p("use_fractions")){var r="",n=i(e*t,9,!0);return n[0]>0&&(r+=n[0]),n[1]>0&&(r+=" ".concat(n[1],"⁄").concat(n[2],"")),r}return b(e*t)}function b(e){var t=p("user_fractions")?p("user_fractions"):2;return+(Math.round(e+"e+".concat(t))+"e-".concat(t))}},fc0d:function(e,t,r){"use strict";var n=function(){var e=this,t=e.$createElement,r=e._self._c||t;return r("div",[r("div",{staticClass:"dropdown"},[e._m(0),r("div",{staticClass:"dropdown-menu dropdown-menu-right",attrs:{"aria-labelledby":"dropdownMenuLink"}},[r("a",{staticClass:"dropdown-item",attrs:{href:e.resolveDjangoUrl("edit_recipe",e.recipe.id)}},[r("i",{staticClass:"fas fa-pencil-alt fa-fw"}),e._v(" "+e._s(e.$t("Edit")))]),e.recipe.internal?e._e():r("a",{staticClass:"dropdown-item",attrs:{href:e.resolveDjangoUrl("edit_convert_recipe",e.recipe.id)}},[r("i",{staticClass:"fas fa-exchange-alt fa-fw"}),e._v(" "+e._s(e.$t("convert_internal")))]),r("button",{staticClass:"dropdown-item",on:{click:function(t){return e.$bvModal.show("id_modal_add_book")}}},[r("i",{staticClass:"fas fa-bookmark fa-fw"}),e._v(" "+e._s(e.$t("Add_to_Book"))+" ")]),e.recipe.internal?r("a",{staticClass:"dropdown-item",attrs:{href:e.resolveDjangoUrl("view_shopping")+"?r=["+e.recipe.id+","+e.servings_value+"]",target:"_blank",rel:"noopener noreferrer"}},[r("i",{staticClass:"fas fa-shopping-cart fa-fw"}),e._v(" "+e._s(e.$t("Add_to_Shopping"))+" ")]):e._e(),r("a",{staticClass:"dropdown-item",attrs:{href:e.resolveDjangoUrl("new_meal_plan")+"?recipe="+e.recipe.id,target:"_blank",rel:"noopener noreferrer"}},[r("i",{staticClass:"fas fa-calendar fa-fw"}),e._v(" "+e._s(e.$t("Add_to_Plan"))+" ")]),r("button",{staticClass:"dropdown-item",on:{click:function(t){return e.$bvModal.show("id_modal_cook_log")}}},[r("i",{staticClass:"fas fa-clipboard-list fa-fw"}),e._v(" "+e._s(e.$t("Log_Cooking"))+" ")]),r("button",{staticClass:"dropdown-item",attrs:{onclick:"window.print()"}},[r("i",{staticClass:"fas fa-print fa-fw"}),e._v(" "+e._s(e.$t("Print"))+" ")]),r("a",{staticClass:"dropdown-item",attrs:{href:e.resolveDjangoUrl("view_export")+"?r="+e.recipe.id,target:"_blank",rel:"noopener noreferrer"}},[r("i",{staticClass:"fas fa-file-export fa-fw"}),e._v(" "+e._s(e.$t("Export")))]),e.recipe.internal?r("a",{staticClass:"dropdown-item",attrs:{href:e.resolveDjangoUrl("new_share_link",e.recipe.id),target:"_blank",rel:"noopener noreferrer"}},[r("i",{staticClass:"fas fa-share-alt fa-fw"}),e._v(" "+e._s(e.$t("Share")))]):e._e()])]),r("cook-log",{attrs:{recipe:e.recipe}})],1)},i=[function(){var e=this,t=e.$createElement,r=e._self._c||t;return r("a",{staticClass:"btn shadow-none",attrs:{href:"#",role:"button",id:"dropdownMenuLink","data-toggle":"dropdown","aria-haspopup":"true","aria-expanded":"false"}},[r("i",{staticClass:"fas fa-ellipsis-v"})])}],o=(r("a9e3"),r("fa7d")),a=function(){var e=this,t=e.$createElement,r=e._self._c||t;return r("div",[r("b-modal",{staticClass:"modal",attrs:{id:"id_modal_cook_log",title:e.$t("Log_Recipe_Cooking"),"ok-title":e.$t("Save"),"cancel-title":e.$t("Close")},on:{ok:function(t){return e.logCook()}}},[r("p",[e._v(e._s(e.$t("all_fields_optional")))]),r("form",[r("label",{attrs:{for:"id_log_servings"}},[e._v(e._s(e.$t("Servings")))]),r("input",{directives:[{name:"model",rawName:"v-model",value:e.logObject.servings,expression:"logObject.servings"}],staticClass:"form-control",attrs:{type:"number",id:"id_log_servings"},domProps:{value:e.logObject.servings},on:{input:function(t){t.target.composing||e.$set(e.logObject,"servings",t.target.value)}}}),r("label",{staticStyle:{"margin-top":"2vh"}},[e._v(e._s(e.$t("Rating"))+" - "),r("span",{attrs:{id:"id_rating_show"}},[e._v(e._s(e.logObject.rating)+"/5")])]),r("b-form-rating",{model:{value:e.logObject.rating,callback:function(t){e.$set(e.logObject,"rating",t)},expression:"logObject.rating"}}),r("label",{staticStyle:{"margin-top":"2vh"},attrs:{for:"id_date"}},[e._v(e._s(e.$t("Date")))]),r("input",{directives:[{name:"model",rawName:"v-model",value:e.logObject.created_at,expression:"logObject.created_at"}],staticClass:"form-control",attrs:{type:"datetime-local",id:"id_date"},domProps:{value:e.logObject.created_at},on:{input:function(t){t.target.composing||e.$set(e.logObject,"created_at",t.target.value)}}})],1)])],1)},s=[],c=r("c1df"),u=r.n(c),d=r("a026"),p=r("5f5b"),h=r("7c15");d["default"].prototype.moment=u.a,d["default"].use(p["a"]);var b={name:"CookLog",props:{recipe:Object},data:function(){return{logObject:{recipe:this.recipe.id,servings:0,rating:0,created_at:u()().format("yyyy-MM-DDTHH:mm")}}},methods:{logCook:function(){Object(h["d"])(this.logObject)}}},l=b,f=r("2877"),j=Object(f["a"])(l,a,s,!1,null,null,null),O=j.exports,v={name:"RecipeContextMenu",mixins:[o["b"]],components:{CookLog:O},data:function(){return{servings_value:0}},props:{recipe:Object,servings:{type:Number,default:-1}},mounted:function(){this.servings_value=-1===this.servings?this.recipe.servings:this.servings}},g=v,m=Object(f["a"])(g,n,i,!1,null,null,null);t["a"]=m.exports}});
\ No newline at end of file
+(function(e){function t(t){for(var n,a,s=t[0],c=t[1],u=t[2],p=0,h=[];pt&&(i=a,n=o),!r)return[0,n,i];var c=Math.floor(n/i);return[c,n-c*i,i]}var o={methods:{makeToast:function(e,t){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;return a(e,t,r)}}};function a(e,t){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,i=new n["a"];i.$bvToast.toast(t,{title:e,variant:r,toaster:"b-toaster-top-center",solid:!0})}var s={methods:{_:function(e){return c(e)}}};function c(e){return window.gettext(e)}var u={methods:{resolveDjangoUrl:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;return d(e,t)}}};function d(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;return null!==t?window.Urls[e](t):window.Urls[e]()}function p(e){return window.USER_PREF[e]}function h(e,t){if(p("use_fractions")){var r="",n=i(e*t,9,!0);return n[0]>0&&(r+=n[0]),n[1]>0&&(r+=" ".concat(n[1],"⁄").concat(n[2],"")),r}return b(e*t)}function b(e){var t=p("user_fractions")?p("user_fractions"):2;return+(Math.round(e+"e+".concat(t))+"e-".concat(t))}},fc0d:function(e,t,r){"use strict";var n=function(){var e=this,t=e.$createElement,r=e._self._c||t;return r("div",[r("div",{staticClass:"dropdown d-print-none"},[e._m(0),r("div",{staticClass:"dropdown-menu dropdown-menu-right",attrs:{"aria-labelledby":"dropdownMenuLink"}},[r("a",{staticClass:"dropdown-item",attrs:{href:e.resolveDjangoUrl("edit_recipe",e.recipe.id)}},[r("i",{staticClass:"fas fa-pencil-alt fa-fw"}),e._v(" "+e._s(e.$t("Edit")))]),e.recipe.internal?e._e():r("a",{staticClass:"dropdown-item",attrs:{href:e.resolveDjangoUrl("edit_convert_recipe",e.recipe.id)}},[r("i",{staticClass:"fas fa-exchange-alt fa-fw"}),e._v(" "+e._s(e.$t("convert_internal")))]),r("button",{staticClass:"dropdown-item",on:{click:function(t){return e.$bvModal.show("id_modal_add_book")}}},[r("i",{staticClass:"fas fa-bookmark fa-fw"}),e._v(" "+e._s(e.$t("Add_to_Book"))+" ")]),e.recipe.internal?r("a",{staticClass:"dropdown-item",attrs:{href:e.resolveDjangoUrl("view_shopping")+"?r=["+e.recipe.id+","+e.servings_value+"]",target:"_blank",rel:"noopener noreferrer"}},[r("i",{staticClass:"fas fa-shopping-cart fa-fw"}),e._v(" "+e._s(e.$t("Add_to_Shopping"))+" ")]):e._e(),r("a",{staticClass:"dropdown-item",attrs:{href:e.resolveDjangoUrl("new_meal_plan")+"?recipe="+e.recipe.id,target:"_blank",rel:"noopener noreferrer"}},[r("i",{staticClass:"fas fa-calendar fa-fw"}),e._v(" "+e._s(e.$t("Add_to_Plan"))+" ")]),r("button",{staticClass:"dropdown-item",on:{click:function(t){return e.$bvModal.show("id_modal_cook_log")}}},[r("i",{staticClass:"fas fa-clipboard-list fa-fw"}),e._v(" "+e._s(e.$t("Log_Cooking"))+" ")]),r("button",{staticClass:"dropdown-item",attrs:{onclick:"window.print()"}},[r("i",{staticClass:"fas fa-print fa-fw"}),e._v(" "+e._s(e.$t("Print"))+" ")]),r("a",{staticClass:"dropdown-item",attrs:{href:e.resolveDjangoUrl("view_export")+"?r="+e.recipe.id,target:"_blank",rel:"noopener noreferrer"}},[r("i",{staticClass:"fas fa-file-export fa-fw"}),e._v(" "+e._s(e.$t("Export")))]),e.recipe.internal?r("a",{staticClass:"dropdown-item",attrs:{href:e.resolveDjangoUrl("new_share_link",e.recipe.id),target:"_blank",rel:"noopener noreferrer"}},[r("i",{staticClass:"fas fa-share-alt fa-fw"}),e._v(" "+e._s(e.$t("Share")))]):e._e()])]),r("cook-log",{attrs:{recipe:e.recipe}})],1)},i=[function(){var e=this,t=e.$createElement,r=e._self._c||t;return r("a",{staticClass:"btn shadow-none",attrs:{href:"#",role:"button",id:"dropdownMenuLink","data-toggle":"dropdown","aria-haspopup":"true","aria-expanded":"false"}},[r("i",{staticClass:"fas fa-ellipsis-v"})])}],o=(r("a9e3"),r("fa7d")),a=function(){var e=this,t=e.$createElement,r=e._self._c||t;return r("div",[r("b-modal",{staticClass:"modal",attrs:{id:"id_modal_cook_log",title:e.$t("Log_Recipe_Cooking"),"ok-title":e.$t("Save"),"cancel-title":e.$t("Close")},on:{ok:function(t){return e.logCook()}}},[r("p",[e._v(e._s(e.$t("all_fields_optional")))]),r("form",[r("label",{attrs:{for:"id_log_servings"}},[e._v(e._s(e.$t("Servings")))]),r("input",{directives:[{name:"model",rawName:"v-model",value:e.logObject.servings,expression:"logObject.servings"}],staticClass:"form-control",attrs:{type:"number",id:"id_log_servings"},domProps:{value:e.logObject.servings},on:{input:function(t){t.target.composing||e.$set(e.logObject,"servings",t.target.value)}}}),r("label",{staticStyle:{"margin-top":"2vh"}},[e._v(e._s(e.$t("Rating"))+" - "),r("span",{attrs:{id:"id_rating_show"}},[e._v(e._s(e.logObject.rating)+"/5")])]),r("b-form-rating",{model:{value:e.logObject.rating,callback:function(t){e.$set(e.logObject,"rating",t)},expression:"logObject.rating"}}),r("label",{staticStyle:{"margin-top":"2vh"},attrs:{for:"id_date"}},[e._v(e._s(e.$t("Date")))]),r("input",{directives:[{name:"model",rawName:"v-model",value:e.logObject.created_at,expression:"logObject.created_at"}],staticClass:"form-control",attrs:{type:"datetime-local",id:"id_date"},domProps:{value:e.logObject.created_at},on:{input:function(t){t.target.composing||e.$set(e.logObject,"created_at",t.target.value)}}})],1)])],1)},s=[],c=r("c1df"),u=r.n(c),d=r("a026"),p=r("5f5b"),h=r("7c15");d["default"].prototype.moment=u.a,d["default"].use(p["a"]);var b={name:"CookLog",props:{recipe:Object},data:function(){return{logObject:{recipe:this.recipe.id,servings:0,rating:0,created_at:u()().format("yyyy-MM-DDTHH:mm")}}},methods:{logCook:function(){Object(h["d"])(this.logObject)}}},l=b,f=r("2877"),j=Object(f["a"])(l,a,s,!1,null,null,null),O=j.exports,v={name:"RecipeContextMenu",mixins:[o["b"]],components:{CookLog:O},data:function(){return{servings_value:0}},props:{recipe:Object,servings:{type:Number,default:-1}},mounted:function(){this.servings_value=-1===this.servings?this.recipe.servings:this.servings}},g=v,m=Object(f["a"])(g,n,i,!1,null,null,null);t["a"]=m.exports}});
\ No newline at end of file
diff --git a/cookbook/static/vue/js/recipe_view.js b/cookbook/static/vue/js/recipe_view.js
index 64158707..8df00f37 100644
--- a/cookbook/static/vue/js/recipe_view.js
+++ b/cookbook/static/vue/js/recipe_view.js
@@ -1 +1 @@
-(function(e){function t(t){for(var n,s,o=t[0],c=t[1],l=t[2],p=0,u=[];p
+
@@ -31,7 +31,7 @@
t&&(i=a,n=o),!r)return[0,n,i];var c=Math.floor(n/i);return[c,n-c*i,i]}var o={methods:{makeToast:function(e,t){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;return a(e,t,r)}}};function a(e,t){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,i=new n["a"];i.$bvToast.toast(t,{title:e,variant:r,toaster:"b-toaster-top-center",solid:!0})}var s={methods:{_:function(e){return c(e)}}};function c(e){return window.gettext(e)}var u={methods:{resolveDjangoUrl:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;return d(e,t)}}};function d(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;return null!==t?window.Urls[e](t):window.Urls[e]()}function p(e){return window.USER_PREF[e]}function h(e,t){if(p("use_fractions")){var r="",n=i(e*t,9,!0);return n[0]>0&&(r+=n[0]),n[1]>0&&(r+=" ".concat(n[1],"⁄").concat(n[2],"")),r}return b(e*t)}function b(e){var t=p("user_fractions")?p("user_fractions"):2;return+(Math.round(e+"e+".concat(t))+"e-".concat(t))}},fc0d:function(e,t,r){"use strict";var n=function(){var e=this,t=e.$createElement,r=e._self._c||t;return r("div",[r("div",{staticClass:"dropdown d-print-none"},[e._m(0),r("div",{staticClass:"dropdown-menu dropdown-menu-right",attrs:{"aria-labelledby":"dropdownMenuLink"}},[r("a",{staticClass:"dropdown-item",attrs:{href:e.resolveDjangoUrl("edit_recipe",e.recipe.id)}},[r("i",{staticClass:"fas fa-pencil-alt fa-fw"}),e._v(" "+e._s(e.$t("Edit")))]),e.recipe.internal?e._e():r("a",{staticClass:"dropdown-item",attrs:{href:e.resolveDjangoUrl("edit_convert_recipe",e.recipe.id)}},[r("i",{staticClass:"fas fa-exchange-alt fa-fw"}),e._v(" "+e._s(e.$t("convert_internal")))]),r("button",{staticClass:"dropdown-item",on:{click:function(t){return e.$bvModal.show("id_modal_add_book")}}},[r("i",{staticClass:"fas fa-bookmark fa-fw"}),e._v(" "+e._s(e.$t("Add_to_Book"))+" ")]),e.recipe.internal?r("a",{staticClass:"dropdown-item",attrs:{href:e.resolveDjangoUrl("view_shopping")+"?r=["+e.recipe.id+","+e.servings_value+"]",target:"_blank",rel:"noopener noreferrer"}},[r("i",{staticClass:"fas fa-shopping-cart fa-fw"}),e._v(" "+e._s(e.$t("Add_to_Shopping"))+" ")]):e._e(),r("a",{staticClass:"dropdown-item",attrs:{href:e.resolveDjangoUrl("new_meal_plan")+"?recipe="+e.recipe.id,target:"_blank",rel:"noopener noreferrer"}},[r("i",{staticClass:"fas fa-calendar fa-fw"}),e._v(" "+e._s(e.$t("Add_to_Plan"))+" ")]),r("button",{staticClass:"dropdown-item",on:{click:function(t){return e.$bvModal.show("id_modal_cook_log")}}},[r("i",{staticClass:"fas fa-clipboard-list fa-fw"}),e._v(" "+e._s(e.$t("Log_Cooking"))+" ")]),r("button",{staticClass:"dropdown-item",attrs:{onclick:"window.print()"}},[r("i",{staticClass:"fas fa-print fa-fw"}),e._v(" "+e._s(e.$t("Print"))+" ")]),r("a",{staticClass:"dropdown-item",attrs:{href:e.resolveDjangoUrl("view_export")+"?r="+e.recipe.id,target:"_blank",rel:"noopener noreferrer"}},[r("i",{staticClass:"fas fa-file-export fa-fw"}),e._v(" "+e._s(e.$t("Export")))]),e.recipe.internal?r("a",{staticClass:"dropdown-item",attrs:{href:e.resolveDjangoUrl("new_share_link",e.recipe.id),target:"_blank",rel:"noopener noreferrer"}},[r("i",{staticClass:"fas fa-share-alt fa-fw"}),e._v(" "+e._s(e.$t("Share")))]):e._e()])]),r("cook-log",{attrs:{recipe:e.recipe}})],1)},i=[function(){var e=this,t=e.$createElement,r=e._self._c||t;return r("a",{staticClass:"btn shadow-none",attrs:{href:"#",role:"button",id:"dropdownMenuLink","data-toggle":"dropdown","aria-haspopup":"true","aria-expanded":"false"}},[r("i",{staticClass:"fas fa-ellipsis-v"})])}],o=(r("a9e3"),r("fa7d")),a=function(){var e=this,t=e.$createElement,r=e._self._c||t;return r("div",[r("b-modal",{staticClass:"modal",attrs:{id:"id_modal_cook_log",title:e.$t("Log_Recipe_Cooking"),"ok-title":e.$t("Save"),"cancel-title":e.$t("Close")},on:{ok:function(t){return e.logCook()}}},[r("p",[e._v(e._s(e.$t("all_fields_optional")))]),r("form",[r("label",{attrs:{for:"id_log_servings"}},[e._v(e._s(e.$t("Servings")))]),r("input",{directives:[{name:"model",rawName:"v-model",value:e.logObject.servings,expression:"logObject.servings"}],staticClass:"form-control",attrs:{type:"number",id:"id_log_servings"},domProps:{value:e.logObject.servings},on:{input:function(t){t.target.composing||e.$set(e.logObject,"servings",t.target.value)}}}),r("label",{staticStyle:{"margin-top":"2vh"}},[e._v(e._s(e.$t("Rating"))+" - "),r("span",{attrs:{id:"id_rating_show"}},[e._v(e._s(e.logObject.rating)+"/5")])]),r("b-form-rating",{model:{value:e.logObject.rating,callback:function(t){e.$set(e.logObject,"rating",t)},expression:"logObject.rating"}}),r("label",{staticStyle:{"margin-top":"2vh"},attrs:{for:"id_date"}},[e._v(e._s(e.$t("Date")))]),r("input",{directives:[{name:"model",rawName:"v-model",value:e.logObject.created_at,expression:"logObject.created_at"}],staticClass:"form-control",attrs:{type:"datetime-local",id:"id_date"},domProps:{value:e.logObject.created_at},on:{input:function(t){t.target.composing||e.$set(e.logObject,"created_at",t.target.value)}}})],1)])],1)},s=[],c=r("c1df"),u=r.n(c),d=r("a026"),p=r("5f5b"),h=r("7c15");d["default"].prototype.moment=u.a,d["default"].use(p["a"]);var b={name:"CookLog",props:{recipe:Object},data:function(){return{logObject:{recipe:this.recipe.id,servings:0,rating:0,created_at:u()().format("yyyy-MM-DDTHH:mm")}}},methods:{logCook:function(){Object(h["d"])(this.logObject)}}},l=b,f=r("2877"),j=Object(f["a"])(l,a,s,!1,null,null,null),O=j.exports,v={name:"RecipeContextMenu",mixins:[o["b"]],components:{CookLog:O},data:function(){return{servings_value:0}},props:{recipe:Object,servings:{type:Number,default:-1}},mounted:function(){this.servings_value=-1===this.servings?this.recipe.servings:this.servings}},g=v,m=Object(f["a"])(g,n,i,!1,null,null,null);t["a"]=m.exports}});
\ No newline at end of file
+(function(e){function t(t){for(var n,a,s=t[0],c=t[1],u=t[2],p=0,h=[];pt&&(i=a,n=o),!r)return[0,n,i];var c=Math.floor(n/i);return[c,n-c*i,i]}var o={methods:{makeToast:function(e,t){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;return a(e,t,r)}}};function a(e,t){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,i=new n["a"];i.$bvToast.toast(t,{title:e,variant:r,toaster:"b-toaster-top-center",solid:!0})}var s={methods:{_:function(e){return c(e)}}};function c(e){return window.gettext(e)}var u={methods:{resolveDjangoUrl:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;return d(e,t)}}};function d(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;return null!==t?window.Urls[e](t):window.Urls[e]()}function p(e){return window.USER_PREF[e]}function h(e,t){if(p("use_fractions")){var r="",n=i(e*t,9,!0);return n[0]>0&&(r+=n[0]),n[1]>0&&(r+=" ".concat(n[1],"⁄").concat(n[2],"")),r}return b(e*t)}function b(e){var t=p("user_fractions")?p("user_fractions"):2;return+(Math.round(e+"e+".concat(t))+"e-".concat(t))}},fc0d:function(e,t,r){"use strict";var n=function(){var e=this,t=e.$createElement,r=e._self._c||t;return r("div",[r("div",{staticClass:"dropdown d-print-none"},[e._m(0),r("div",{staticClass:"dropdown-menu dropdown-menu-right",attrs:{"aria-labelledby":"dropdownMenuLink"}},[r("a",{staticClass:"dropdown-item",attrs:{href:e.resolveDjangoUrl("edit_recipe",e.recipe.id)}},[r("i",{staticClass:"fas fa-pencil-alt fa-fw"}),e._v(" "+e._s(e.$t("Edit")))]),e.recipe.internal?e._e():r("a",{staticClass:"dropdown-item",attrs:{href:e.resolveDjangoUrl("edit_convert_recipe",e.recipe.id)}},[r("i",{staticClass:"fas fa-exchange-alt fa-fw"}),e._v(" "+e._s(e.$t("convert_internal")))]),r("button",{staticClass:"dropdown-item",on:{click:function(t){return e.$bvModal.show("id_modal_add_book")}}},[r("i",{staticClass:"fas fa-bookmark fa-fw"}),e._v(" "+e._s(e.$t("Add_to_Book"))+" ")]),e.recipe.internal?r("a",{staticClass:"dropdown-item",attrs:{href:e.resolveDjangoUrl("view_shopping")+"?r=["+e.recipe.id+","+e.servings_value+"]",target:"_blank",rel:"noopener noreferrer"}},[r("i",{staticClass:"fas fa-shopping-cart fa-fw"}),e._v(" "+e._s(e.$t("Add_to_Shopping"))+" ")]):e._e(),r("a",{staticClass:"dropdown-item",attrs:{href:e.resolveDjangoUrl("new_meal_plan")+"?recipe="+e.recipe.id,target:"_blank",rel:"noopener noreferrer"}},[r("i",{staticClass:"fas fa-calendar fa-fw"}),e._v(" "+e._s(e.$t("Add_to_Plan"))+" ")]),r("a",{staticClass:"dropdown-item",on:{click:function(t){return e.$bvModal.show("id_modal_cook_log")}}},[r("i",{staticClass:"fas fa-clipboard-list fa-fw"}),e._v(" "+e._s(e.$t("Log_Cooking"))+" ")]),r("button",{staticClass:"dropdown-item",attrs:{onclick:"window.print()"}},[r("i",{staticClass:"fas fa-print fa-fw"}),e._v(" "+e._s(e.$t("Print"))+" ")]),r("a",{staticClass:"dropdown-item",attrs:{href:e.resolveDjangoUrl("view_export")+"?r="+e.recipe.id,target:"_blank",rel:"noopener noreferrer"}},[r("i",{staticClass:"fas fa-file-export fa-fw"}),e._v(" "+e._s(e.$t("Export")))]),e.recipe.internal?r("a",{staticClass:"dropdown-item",attrs:{href:e.resolveDjangoUrl("new_share_link",e.recipe.id),target:"_blank",rel:"noopener noreferrer"}},[r("i",{staticClass:"fas fa-share-alt fa-fw"}),e._v(" "+e._s(e.$t("Share")))]):e._e()])]),r("cook-log",{attrs:{recipe:e.recipe}})],1)},i=[function(){var e=this,t=e.$createElement,r=e._self._c||t;return r("a",{staticClass:"btn shadow-none",attrs:{href:"#",role:"button",id:"dropdownMenuLink","data-toggle":"dropdown","aria-haspopup":"true","aria-expanded":"false"}},[r("i",{staticClass:"fas fa-ellipsis-v"})])}],o=(r("a9e3"),r("fa7d")),a=function(){var e=this,t=e.$createElement,r=e._self._c||t;return r("div",[r("b-modal",{staticClass:"modal",attrs:{id:"id_modal_cook_log",title:e.$t("Log_Recipe_Cooking"),"ok-title":e.$t("Save"),"cancel-title":e.$t("Close")},on:{ok:function(t){return e.logCook()}}},[r("p",[e._v(e._s(e.$t("all_fields_optional")))]),r("form",[r("label",{attrs:{for:"id_log_servings"}},[e._v(e._s(e.$t("Servings")))]),r("input",{directives:[{name:"model",rawName:"v-model",value:e.logObject.servings,expression:"logObject.servings"}],staticClass:"form-control",attrs:{type:"number",id:"id_log_servings"},domProps:{value:e.logObject.servings},on:{input:function(t){t.target.composing||e.$set(e.logObject,"servings",t.target.value)}}}),r("label",{staticStyle:{"margin-top":"2vh"}},[e._v(e._s(e.$t("Rating"))+" - "),r("span",{attrs:{id:"id_rating_show"}},[e._v(e._s(e.logObject.rating)+"/5")])]),r("b-form-rating",{model:{value:e.logObject.rating,callback:function(t){e.$set(e.logObject,"rating",t)},expression:"logObject.rating"}}),r("label",{staticStyle:{"margin-top":"2vh"},attrs:{for:"id_date"}},[e._v(e._s(e.$t("Date")))]),r("input",{directives:[{name:"model",rawName:"v-model",value:e.logObject.created_at,expression:"logObject.created_at"}],staticClass:"form-control",attrs:{type:"datetime-local",id:"id_date"},domProps:{value:e.logObject.created_at},on:{input:function(t){t.target.composing||e.$set(e.logObject,"created_at",t.target.value)}}})],1)])],1)},s=[],c=r("c1df"),u=r.n(c),d=r("a026"),p=r("5f5b"),h=r("7c15");d["default"].prototype.moment=u.a,d["default"].use(p["a"]);var b={name:"CookLog",props:{recipe:Object},data:function(){return{logObject:{recipe:this.recipe.id,servings:0,rating:0,created_at:u()().format("yyyy-MM-DDTHH:mm")}}},methods:{logCook:function(){Object(h["d"])(this.logObject)}}},l=b,f=r("2877"),j=Object(f["a"])(l,a,s,!1,null,null,null),O=j.exports,v={name:"RecipeContextMenu",mixins:[o["b"]],components:{CookLog:O},data:function(){return{servings_value:0}},props:{recipe:Object,servings:{type:Number,default:-1}},mounted:function(){this.servings_value=-1===this.servings?this.recipe.servings:this.servings}},g=v,m=Object(f["a"])(g,n,i,!1,null,null,null);t["a"]=m.exports}});
\ No newline at end of file
diff --git a/cookbook/static/vue/js/recipe_view.js b/cookbook/static/vue/js/recipe_view.js
index 8df00f37..6b9e891e 100644
--- a/cookbook/static/vue/js/recipe_view.js
+++ b/cookbook/static/vue/js/recipe_view.js
@@ -1 +1 @@
-(function(e){function t(t){for(var n,s,o=t[0],c=t[1],l=t[2],p=0,u=[];pt&&(i=a,n=o),!r)return[0,n,i];var c=Math.floor(n/i);return[c,n-c*i,i]}var o={methods:{makeToast:function(e,t){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;return a(e,t,r)}}};function a(e,t){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,i=new n["a"];i.$bvToast.toast(t,{title:e,variant:r,toaster:"b-toaster-top-center",solid:!0})}var s={methods:{_:function(e){return c(e)}}};function c(e){return window.gettext(e)}var u={methods:{resolveDjangoUrl:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;return d(e,t)}}};function d(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;return null!==t?window.Urls[e](t):window.Urls[e]()}function p(e){return window.USER_PREF[e]}function h(e,t){if(p("use_fractions")){var r="",n=i(e*t,9,!0);return n[0]>0&&(r+=n[0]),n[1]>0&&(r+=" ".concat(n[1],"⁄").concat(n[2],"")),r}return b(e*t)}function b(e){var t=p("user_fractions")?p("user_fractions"):2;return+(Math.round(e+"e+".concat(t))+"e-".concat(t))}},fc0d:function(e,t,r){"use strict";var n=function(){var e=this,t=e.$createElement,r=e._self._c||t;return r("div",[r("div",{staticClass:"dropdown d-print-none"},[e._m(0),r("div",{staticClass:"dropdown-menu dropdown-menu-right",attrs:{"aria-labelledby":"dropdownMenuLink"}},[r("a",{staticClass:"dropdown-item",attrs:{href:e.resolveDjangoUrl("edit_recipe",e.recipe.id)}},[r("i",{staticClass:"fas fa-pencil-alt fa-fw"}),e._v(" "+e._s(e.$t("Edit")))]),e.recipe.internal?e._e():r("a",{staticClass:"dropdown-item",attrs:{href:e.resolveDjangoUrl("edit_convert_recipe",e.recipe.id)}},[r("i",{staticClass:"fas fa-exchange-alt fa-fw"}),e._v(" "+e._s(e.$t("convert_internal")))]),r("button",{staticClass:"dropdown-item",on:{click:function(t){return e.$bvModal.show("id_modal_add_book")}}},[r("i",{staticClass:"fas fa-bookmark fa-fw"}),e._v(" "+e._s(e.$t("Add_to_Book"))+" ")]),e.recipe.internal?r("a",{staticClass:"dropdown-item",attrs:{href:e.resolveDjangoUrl("view_shopping")+"?r=["+e.recipe.id+","+e.servings_value+"]",target:"_blank",rel:"noopener noreferrer"}},[r("i",{staticClass:"fas fa-shopping-cart fa-fw"}),e._v(" "+e._s(e.$t("Add_to_Shopping"))+" ")]):e._e(),r("a",{staticClass:"dropdown-item",attrs:{href:e.resolveDjangoUrl("new_meal_plan")+"?recipe="+e.recipe.id,target:"_blank",rel:"noopener noreferrer"}},[r("i",{staticClass:"fas fa-calendar fa-fw"}),e._v(" "+e._s(e.$t("Add_to_Plan"))+" ")]),r("button",{staticClass:"dropdown-item",on:{click:function(t){return e.$bvModal.show("id_modal_cook_log")}}},[r("i",{staticClass:"fas fa-clipboard-list fa-fw"}),e._v(" "+e._s(e.$t("Log_Cooking"))+" ")]),r("button",{staticClass:"dropdown-item",attrs:{onclick:"window.print()"}},[r("i",{staticClass:"fas fa-print fa-fw"}),e._v(" "+e._s(e.$t("Print"))+" ")]),r("a",{staticClass:"dropdown-item",attrs:{href:e.resolveDjangoUrl("view_export")+"?r="+e.recipe.id,target:"_blank",rel:"noopener noreferrer"}},[r("i",{staticClass:"fas fa-file-export fa-fw"}),e._v(" "+e._s(e.$t("Export")))]),e.recipe.internal?r("button",{staticClass:"dropdown-item",on:{click:function(t){return e.createShareLink()}}},[r("i",{staticClass:"fas fa-share-alt fa-fw"}),e._v(" "+e._s(e.$t("Share")))]):e._e()])]),r("cook-log",{attrs:{recipe:e.recipe}}),r("b-modal",{attrs:{id:"modal-share-link",title:e.$t("Share"),"hide-footer":""}},[r("div",{staticClass:"row"},[r("div",{staticClass:"col col-md-12"},[void 0!==e.recipe_share_link?r("label",[e._v(" "+e._s(e.$t("Link"))+" "),r("input",{directives:[{name:"model",rawName:"v-model",value:e.recipe_share_link,expression:"recipe_share_link"}],ref:"share_link_ref",staticClass:"form-control",domProps:{value:e.recipe_share_link},on:{input:function(t){t.target.composing||(e.recipe_share_link=t.target.value)}}})]):e._e(),r("br"),r("br"),r("b-button",{staticStyle:{"margin-right":"1vh"},attrs:{variant:"success"},on:{click:function(t){return e.copyShareLink()}}},[e._v(e._s(e.$t("Copy")))]),r("b-button",{on:{click:function(t){return e.$bvModal.hide("modal-share-link")}}},[e._v(e._s(e.$t("Close")))]),r("br"),r("br")],1)])])],1)},i=[function(){var e=this,t=e.$createElement,r=e._self._c||t;return r("a",{staticClass:"btn shadow-none",attrs:{href:"#",role:"button",id:"dropdownMenuLink","data-toggle":"dropdown","aria-haspopup":"true","aria-expanded":"false"}},[r("i",{staticClass:"fas fa-ellipsis-v"})])}],o=(r("a9e3"),r("9911"),r("fa7d")),a=function(){var e=this,t=e.$createElement,r=e._self._c||t;return r("div",[r("b-modal",{staticClass:"modal",attrs:{id:"id_modal_cook_log",title:e.$t("Log_Recipe_Cooking"),"ok-title":e.$t("Save"),"cancel-title":e.$t("Close")},on:{ok:function(t){return e.logCook()}}},[r("p",[e._v(e._s(e.$t("all_fields_optional")))]),r("form",[r("label",{attrs:{for:"id_log_servings"}},[e._v(e._s(e.$t("Servings")))]),r("input",{directives:[{name:"model",rawName:"v-model",value:e.logObject.servings,expression:"logObject.servings"}],staticClass:"form-control",attrs:{type:"number",id:"id_log_servings"},domProps:{value:e.logObject.servings},on:{input:function(t){t.target.composing||e.$set(e.logObject,"servings",t.target.value)}}}),r("label",{staticStyle:{"margin-top":"2vh"}},[e._v(e._s(e.$t("Rating"))+" - "),r("span",{attrs:{id:"id_rating_show"}},[e._v(e._s(e.logObject.rating)+"/5")])]),r("b-form-rating",{model:{value:e.logObject.rating,callback:function(t){e.$set(e.logObject,"rating",t)},expression:"logObject.rating"}}),r("label",{staticStyle:{"margin-top":"2vh"},attrs:{for:"id_date"}},[e._v(e._s(e.$t("Date")))]),r("input",{directives:[{name:"model",rawName:"v-model",value:e.logObject.created_at,expression:"logObject.created_at"}],staticClass:"form-control",attrs:{type:"datetime-local",id:"id_date"},domProps:{value:e.logObject.created_at},on:{input:function(t){t.target.composing||e.$set(e.logObject,"created_at",t.target.value)}}})],1)])],1)},s=[],c=r("c1df"),u=r.n(c),d=r("a026"),p=r("5f5b"),h=r("7c15");d["default"].prototype.moment=u.a,d["default"].use(p["a"]);var b={name:"CookLog",props:{recipe:Object},data:function(){return{logObject:{recipe:this.recipe.id,servings:0,rating:0,created_at:u()().format("yyyy-MM-DDTHH:mm")}}},methods:{logCook:function(){Object(h["d"])(this.logObject)}}},l=b,f=r("2877"),j=Object(f["a"])(l,a,s,!1,null,null,null),O=j.exports,v=r("bc3a"),g=r.n(v),m={name:"RecipeContextMenu",mixins:[o["b"]],components:{CookLog:O},data:function(){return{servings_value:0,recipe_share_link:void 0}},props:{recipe:Object,servings:{type:Number,default:-1}},mounted:function(){this.servings_value=-1===this.servings?this.recipe.servings:this.servings},methods:{createShareLink:function(){var e=this;this.$bvModal.show("modal-share-link"),g.a.get(Object(o["g"])("api_share_link",this.recipe.id)).then((function(t){e.recipe_share_link=t.data.link,console.log("GET",t)}))},copyShareLink:function(){var e=this.$refs.share_link_ref;e.select(),document.execCommand("copy")}}},y=m,S=Object(f["a"])(y,n,i,!1,null,null,null);t["a"]=S.exports}});
\ No newline at end of file
+(function(e){function t(t){for(var n,a,s=t[0],c=t[1],u=t[2],p=0,h=[];pt&&(i=a,n=o),!r)return[0,n,i];var c=Math.floor(n/i);return[c,n-c*i,i]}var o={methods:{makeToast:function(e,t){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;return a(e,t,r)}}};function a(e,t){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,i=new n["a"];i.$bvToast.toast(t,{title:e,variant:r,toaster:"b-toaster-top-center",solid:!0})}var s={methods:{_:function(e){return c(e)}}};function c(e){return window.gettext(e)}var u={methods:{resolveDjangoUrl:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;return d(e,t)}}};function d(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;return null!==t?window.Urls[e](t):window.Urls[e]()}function p(e){return window.USER_PREF[e]}function h(e,t){if(p("use_fractions")){var r="",n=i(e*t,9,!0);return n[0]>0&&(r+=n[0]),n[1]>0&&(r+=" ".concat(n[1],"⁄").concat(n[2],"")),r}return b(e*t)}function b(e){var t=p("user_fractions")?p("user_fractions"):2;return+(Math.round(e+"e+".concat(t))+"e-".concat(t))}},fc0d:function(e,t,r){"use strict";var n=function(){var e=this,t=e.$createElement,r=e._self._c||t;return r("div",[r("div",{staticClass:"dropdown d-print-none"},[e._m(0),r("div",{staticClass:"dropdown-menu dropdown-menu-right",attrs:{"aria-labelledby":"dropdownMenuLink"}},[r("a",{staticClass:"dropdown-item",attrs:{href:e.resolveDjangoUrl("edit_recipe",e.recipe.id)}},[r("i",{staticClass:"fas fa-pencil-alt fa-fw"}),e._v(" "+e._s(e.$t("Edit")))]),e.recipe.internal?e._e():r("a",{staticClass:"dropdown-item",attrs:{href:e.resolveDjangoUrl("edit_convert_recipe",e.recipe.id)}},[r("i",{staticClass:"fas fa-exchange-alt fa-fw"}),e._v(" "+e._s(e.$t("convert_internal")))]),r("button",{staticClass:"dropdown-item",on:{click:function(t){return e.$bvModal.show("id_modal_add_book")}}},[r("i",{staticClass:"fas fa-bookmark fa-fw"}),e._v(" "+e._s(e.$t("Add_to_Book"))+" ")]),e.recipe.internal?r("a",{staticClass:"dropdown-item",attrs:{href:e.resolveDjangoUrl("view_shopping")+"?r=["+e.recipe.id+","+e.servings_value+"]",target:"_blank",rel:"noopener noreferrer"}},[r("i",{staticClass:"fas fa-shopping-cart fa-fw"}),e._v(" "+e._s(e.$t("Add_to_Shopping"))+" ")]):e._e(),r("a",{staticClass:"dropdown-item",attrs:{href:e.resolveDjangoUrl("new_meal_plan")+"?recipe="+e.recipe.id,target:"_blank",rel:"noopener noreferrer"}},[r("i",{staticClass:"fas fa-calendar fa-fw"}),e._v(" "+e._s(e.$t("Add_to_Plan"))+" ")]),r("button",{staticClass:"dropdown-item",on:{click:function(t){return e.$bvModal.show("id_modal_cook_log")}}},[r("i",{staticClass:"fas fa-clipboard-list fa-fw"}),e._v(" "+e._s(e.$t("Log_Cooking"))+" ")]),r("button",{staticClass:"dropdown-item",attrs:{onclick:"window.print()"}},[r("i",{staticClass:"fas fa-print fa-fw"}),e._v(" "+e._s(e.$t("Print"))+" ")]),r("a",{staticClass:"dropdown-item",attrs:{href:e.resolveDjangoUrl("view_export")+"?r="+e.recipe.id,target:"_blank",rel:"noopener noreferrer"}},[r("i",{staticClass:"fas fa-file-export fa-fw"}),e._v(" "+e._s(e.$t("Export")))]),e.recipe.internal?r("button",{staticClass:"dropdown-item",on:{click:function(t){return e.createShareLink()}}},[r("i",{staticClass:"fas fa-share-alt fa-fw"}),e._v(" "+e._s(e.$t("Share"))+" ")]):e._e()])]),r("cook-log",{attrs:{recipe:e.recipe}}),r("b-modal",{attrs:{id:"modal-share-link",title:e.$t("Share"),"hide-footer":""}},[r("div",{staticClass:"row"},[r("div",{staticClass:"col col-md-12"},[void 0!==e.recipe_share_link?r("label",[e._v(" "+e._s(e.$t("Link"))+" "),r("input",{directives:[{name:"model",rawName:"v-model",value:e.recipe_share_link,expression:"recipe_share_link"}],ref:"share_link_ref",staticClass:"form-control",domProps:{value:e.recipe_share_link},on:{input:function(t){t.target.composing||(e.recipe_share_link=t.target.value)}}})]):e._e(),r("br"),r("br"),r("b-button",{staticStyle:{"margin-right":"1vh"},attrs:{variant:"success"},on:{click:function(t){return e.copyShareLink()}}},[e._v(e._s(e.$t("Copy")))]),r("b-button",{on:{click:function(t){return e.$bvModal.hide("modal-share-link")}}},[e._v(e._s(e.$t("Close")))]),r("br"),r("br")],1)])])],1)},i=[function(){var e=this,t=e.$createElement,r=e._self._c||t;return r("a",{staticClass:"btn shadow-none",attrs:{href:"#",role:"button",id:"dropdownMenuLink","data-toggle":"dropdown","aria-haspopup":"true","aria-expanded":"false"}},[r("i",{staticClass:"fas fa-ellipsis-v"})])}],o=(r("a9e3"),r("9911"),r("fa7d")),a=function(){var e=this,t=e.$createElement,r=e._self._c||t;return r("div",[r("b-modal",{staticClass:"modal",attrs:{id:"id_modal_cook_log",title:e.$t("Log_Recipe_Cooking"),"ok-title":e.$t("Save"),"cancel-title":e.$t("Close")},on:{ok:function(t){return e.logCook()}}},[r("p",[e._v(e._s(e.$t("all_fields_optional")))]),r("form",[r("label",{attrs:{for:"id_log_servings"}},[e._v(e._s(e.$t("Servings")))]),r("input",{directives:[{name:"model",rawName:"v-model",value:e.logObject.servings,expression:"logObject.servings"}],staticClass:"form-control",attrs:{type:"number",id:"id_log_servings"},domProps:{value:e.logObject.servings},on:{input:function(t){t.target.composing||e.$set(e.logObject,"servings",t.target.value)}}}),r("label",{staticStyle:{"margin-top":"2vh"}},[e._v(e._s(e.$t("Rating"))+" - "),r("span",{attrs:{id:"id_rating_show"}},[e._v(e._s(e.logObject.rating)+"/5")])]),r("b-form-rating",{model:{value:e.logObject.rating,callback:function(t){e.$set(e.logObject,"rating",t)},expression:"logObject.rating"}}),r("label",{staticStyle:{"margin-top":"2vh"},attrs:{for:"id_date"}},[e._v(e._s(e.$t("Date")))]),r("input",{directives:[{name:"model",rawName:"v-model",value:e.logObject.created_at,expression:"logObject.created_at"}],staticClass:"form-control",attrs:{type:"datetime-local",id:"id_date"},domProps:{value:e.logObject.created_at},on:{input:function(t){t.target.composing||e.$set(e.logObject,"created_at",t.target.value)}}})],1)])],1)},s=[],c=r("c1df"),u=r.n(c),d=r("a026"),p=r("5f5b"),h=r("7c15");d["default"].prototype.moment=u.a,d["default"].use(p["a"]);var b={name:"CookLog",props:{recipe:Object},data:function(){return{logObject:{recipe:this.recipe.id,servings:0,rating:0,created_at:u()().format("yyyy-MM-DDTHH:mm")}}},methods:{logCook:function(){Object(h["d"])(this.logObject)}}},l=b,f=r("2877"),j=Object(f["a"])(l,a,s,!1,null,null,null),O=j.exports,v=r("bc3a"),g=r.n(v),m={name:"RecipeContextMenu",mixins:[o["b"]],components:{CookLog:O},data:function(){return{servings_value:0,recipe_share_link:void 0}},props:{recipe:Object,servings:{type:Number,default:-1}},mounted:function(){this.servings_value=-1===this.servings?this.recipe.servings:this.servings},methods:{createShareLink:function(){var e=this;g.a.get(Object(o["g"])("api_share_link",this.recipe.id)).then((function(t){e.$bvModal.show("modal-share-link"),e.recipe_share_link=t.data.link})).catch((function(t){403===t.response.status&&Object(o["f"])(e.$t("Share"),e.$t("Sharing is not enabled for this space."),"danger")}))},copyShareLink:function(){var e=this.$refs.share_link_ref;e.select(),document.execCommand("copy")}}},y=m,S=Object(f["a"])(y,n,i,!1,null,null,null);t["a"]=S.exports}});
\ No newline at end of file
diff --git a/cookbook/static/vue/js/recipe_view.js b/cookbook/static/vue/js/recipe_view.js
index 6e4b16d3..21af484c 100644
--- a/cookbook/static/vue/js/recipe_view.js
+++ b/cookbook/static/vue/js/recipe_view.js
@@ -1 +1 @@
-(function(e){function t(t){for(var n,s,o=t[0],c=t[1],l=t[2],p=0,u=[];p
-
{% trans "Change Password" %}
+
+
+{% endblock %}
\ No newline at end of file
diff --git a/cookbook/templates/account/password_set.html b/cookbook/templates/account/password_set.html
new file mode 100644
index 00000000..d7747a66
--- /dev/null
+++ b/cookbook/templates/account/password_set.html
@@ -0,0 +1,16 @@
+{% extends "base.html" %}
+{% load crispy_forms_filters %}
+
+{% load i18n %}
+
+{% block head_title %}{% trans "Set Password" %}{% endblock %}
+
+{% block content %}
+ {% trans "Set Password" %}
+
+
+{% endblock %}
\ No newline at end of file
diff --git a/cookbook/templates/socialaccount/signup.html b/cookbook/templates/socialaccount/signup.html
new file mode 100644
index 00000000..ca8c1ab2
--- /dev/null
+++ b/cookbook/templates/socialaccount/signup.html
@@ -0,0 +1,21 @@
+{% extends "base.html" %}
+{% load i18n %}
+
+{% block head_title %}{% trans "Signup" %}{% endblock %}
+
+{% block content %}
+ {% trans "Sign Up" %}
+
+{% trans "E-mail Addresses" %}
{% if user.emailaddress_set.all %}
{% trans "Change Password" %}
- {% trans 'Password Settings' %}
-
+ {% trans 'Account Settings' %}
- {% trans 'Email Settings' %}
+ {% trans 'Emails' %}
+ {% trans 'Password' %}
- {% trans 'Manage Email Settings' %}
-
-
-
- {% trans 'Social' %}
-
- {% trans 'Manage Social Accounts' %}
+ {% trans 'Social' %}
diff --git a/cookbook/templates/socialaccount/connections.html b/cookbook/templates/socialaccount/connections.html
index d90fb949..21630287 100644
--- a/cookbook/templates/socialaccount/connections.html
+++ b/cookbook/templates/socialaccount/connections.html
@@ -4,6 +4,14 @@
{% block head_title %}{% trans "Account Connections" %}{% endblock %}
{% block content %}
+
+
+
{% trans "Account Connections" %}
{% if form.accounts %}
diff --git a/cookbook/templates/socialaccount/signup.html b/cookbook/templates/socialaccount/signup.html
index ca8c1ab2..6779752f 100644
--- a/cookbook/templates/socialaccount/signup.html
+++ b/cookbook/templates/socialaccount/signup.html
@@ -1,4 +1,5 @@
{% extends "base.html" %}
+{% load crispy_forms_filters %}
{% load i18n %}
{% block head_title %}{% trans "Signup" %}{% endblock %}
@@ -6,16 +7,54 @@
{% block content %}
{% trans "Sign Up" %}
-
-Installation • +Installation • Documentation • Demo
From 1af06b64805719ec1622ba587db145037997d064 Mon Sep 17 00:00:00 2001 From: Marc Ole Bulling-Installation • +Installation • Documentation • Demo
@@ -70,4 +70,4 @@ Over the time tons of features have been added making this the most comprehensiv I am just a single developer with many other interests and obligations so development and support might be slow at times, but I try my best to constantly improve this application. -If you have any wishes, feature requests, problems or ideas feel free to open an issue on GitHub. \ No newline at end of file +If you have any wishes, feature requests, problems or ideas feel free to open an issue on GitHub. From a88d7625dc1363b43efee24de06e453afbc75aa4 Mon Sep 17 00:00:00 2001 From: Kaibu