Merge branch 'develop'

This commit is contained in:
vabene1111
2023-06-26 20:25:58 +02:00
13 changed files with 873 additions and 151 deletions

View File

@ -1,4 +1,5 @@
import json import json
import traceback
from io import BytesIO, StringIO from io import BytesIO, StringIO
from re import match from re import match
from zipfile import ZipFile from zipfile import ZipFile
@ -19,7 +20,10 @@ class Default(Integration):
recipe = self.decode_recipe(recipe_string) recipe = self.decode_recipe(recipe_string)
images = list(filter(lambda v: match('image.*', v), recipe_zip.namelist())) images = list(filter(lambda v: match('image.*', v), recipe_zip.namelist()))
if images: if images:
self.import_recipe_image(recipe, BytesIO(recipe_zip.read(images[0])), filetype=get_filetype(images[0])) try:
self.import_recipe_image(recipe, BytesIO(recipe_zip.read(images[0])), filetype=get_filetype(images[0]))
except AttributeError as e:
traceback.print_exc()
return recipe return recipe
def decode_recipe(self, string): def decode_recipe(self, string):

View File

@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-07-12 19:20+0200\n" "POT-Creation-Date: 2022-07-12 19:20+0200\n"
"PO-Revision-Date: 2023-06-23 09:19+0000\n" "PO-Revision-Date: 2023-06-25 14:19+0000\n"
"Last-Translator: sweeney <sweeneytodd91@protonmail.com>\n" "Last-Translator: sweeney <sweeneytodd91@protonmail.com>\n"
"Language-Team: Greek <http://translate.tandoor.dev/projects/tandoor/" "Language-Team: Greek <http://translate.tandoor.dev/projects/tandoor/"
"recipes-backend/el/>\n" "recipes-backend/el/>\n"
@ -262,6 +262,8 @@ msgid ""
"You can use markdown to format this field. See the <a href=\"/docs/markdown/" "You can use markdown to format this field. See the <a href=\"/docs/markdown/"
"\">docs here</a>" "\">docs here</a>"
msgstr "" msgstr ""
"Μπορείτε να χρησιμοποιήσετε τη μορφοποίηση Markdown για να διαμορφώσετε αυτό "
"το πεδίο. Δείτε τα <a href=\"/docs/markdown/\">έγγραφα εδώ</a>"
#: .\cookbook\forms.py:366 #: .\cookbook\forms.py:366
msgid "Maximum number of users for this space reached." msgid "Maximum number of users for this space reached."
@ -309,6 +311,8 @@ msgid ""
"Use fuzzy matching on units, keywords and ingredients when editing and " "Use fuzzy matching on units, keywords and ingredients when editing and "
"importing recipes." "importing recipes."
msgstr "" msgstr ""
"Χρησιμοποιήστε ασαφείς (fuzzy) αντιστοιχίες σε μονάδες μέτρησης, λέξεις-"
"κλειδιά και συστατικά κατά την επεξεργασία και εισαγωγή συνταγών."
#: .\cookbook\forms.py:451 #: .\cookbook\forms.py:451
msgid "" msgid ""
@ -323,6 +327,8 @@ msgid ""
"Fields to search for partial matches. (e.g. searching for 'Pie' will return " "Fields to search for partial matches. (e.g. searching for 'Pie' will return "
"'pie' and 'piece' and 'soapie')" "'pie' and 'piece' and 'soapie')"
msgstr "" msgstr ""
"Πεδία για αναζήτηση μερικών αντιστοιχιών. (π.χ. αναζήτηση για 'πίτα' τα "
"'τυρόπιτα' και 'απιτα' θα βρίσκονται στα αποτελέσματα)"
#: .\cookbook\forms.py:455 #: .\cookbook\forms.py:455
msgid "" msgid ""
@ -420,7 +426,7 @@ msgstr ""
#: .\cookbook\forms.py:506 #: .\cookbook\forms.py:506
msgid "Delimiter to use for CSV exports." msgid "Delimiter to use for CSV exports."
msgstr "" msgstr "Το σημείο στίξης διαχωρισμού δεκαδικών για τις εξαγωγές σε αρχεία CSV."
#: .\cookbook\forms.py:507 #: .\cookbook\forms.py:507
msgid "Prefix to add when copying list to the clipboard." msgid "Prefix to add when copying list to the clipboard."
@ -454,7 +460,7 @@ msgstr "Προεπιλεγμένες ώρες καθυστέρησης"
#: .\cookbook\forms.py:517 #: .\cookbook\forms.py:517
msgid "Filter to Supermarket" msgid "Filter to Supermarket"
msgstr "" msgstr "Ταξινόμηση ανά Supermarket"
#: .\cookbook\forms.py:518 #: .\cookbook\forms.py:518
msgid "Recent Days" msgid "Recent Days"
@ -462,7 +468,7 @@ msgstr "Πρόσφατες ημέρες"
#: .\cookbook\forms.py:519 #: .\cookbook\forms.py:519
msgid "CSV Delimiter" msgid "CSV Delimiter"
msgstr "" msgstr "CSV σημείο στίξης διαχωρισμού δεκαδικών"
#: .\cookbook\forms.py:520 #: .\cookbook\forms.py:520
msgid "List Prefix" msgid "List Prefix"
@ -474,7 +480,7 @@ msgstr "Αυτόματα διαθέσιμο"
#: .\cookbook\forms.py:531 #: .\cookbook\forms.py:531
msgid "Reset Food Inheritance" msgid "Reset Food Inheritance"
msgstr "" msgstr "Επαναφορά κληρονομιάς φαγητών"
#: .\cookbook\forms.py:532 #: .\cookbook\forms.py:532
msgid "Reset all food to inherit the fields configured." msgid "Reset all food to inherit the fields configured."
@ -531,7 +537,7 @@ msgstr "Έχετε περισσότερους χρήστες από το επι
#: .\cookbook\helper\recipe_search.py:565 #: .\cookbook\helper\recipe_search.py:565
msgid "One of queryset or hash_key must be provided" msgid "One of queryset or hash_key must be provided"
msgstr "" msgstr "Πρέπει να παρέχετε είτε το queryset είτε το hash_key"
#: .\cookbook\helper\shopping_helper.py:152 #: .\cookbook\helper\shopping_helper.py:152
msgid "You must supply a servings size" msgid "You must supply a servings size"
@ -619,6 +625,8 @@ msgstr "Αναδόμηση πλήρους ευρετηρίου αναζήτησ
#: .\cookbook\management\commands\rebuildindex.py:18 #: .\cookbook\management\commands\rebuildindex.py:18
msgid "Only Postgresql databases use full text search, no index to rebuild" msgid "Only Postgresql databases use full text search, no index to rebuild"
msgstr "" msgstr ""
"Μόνο οι βάσεις δεδομένων Postgresql χρησιμοποιούν αναζήτηση πλήρους "
"κειμένου, δεν υπάρχει ανάγκη ανασύνθεσης των ευρετηρίων"
#: .\cookbook\management\commands\rebuildindex.py:29 #: .\cookbook\management\commands\rebuildindex.py:29
msgid "Recipe index rebuild complete." msgid "Recipe index rebuild complete."
@ -780,13 +788,15 @@ msgstr "Πρόσκληση στο Tandoor Recipes"
#: .\cookbook\serializer.py:1209 #: .\cookbook\serializer.py:1209
msgid "Existing shopping list to update" msgid "Existing shopping list to update"
msgstr "" msgstr "Υπάρχουσα λίστα αγορών για ενημέρωση"
#: .\cookbook\serializer.py:1211 #: .\cookbook\serializer.py:1211
msgid "" msgid ""
"List of ingredient IDs from the recipe to add, if not provided all " "List of ingredient IDs from the recipe to add, if not provided all "
"ingredients will be added." "ingredients will be added."
msgstr "" msgstr ""
"Λίστα αναγνωριστικών συστατικών (ID) από τη συνταγή προς προσθήκη. Εάν δεν "
"παρέχονται όλα τα συστατικά θα προστεθούν."
#: .\cookbook\serializer.py:1213 #: .\cookbook\serializer.py:1213
msgid "" msgid ""
@ -795,21 +805,23 @@ msgstr ""
#: .\cookbook\serializer.py:1222 #: .\cookbook\serializer.py:1222
msgid "Amount of food to add to the shopping list" msgid "Amount of food to add to the shopping list"
msgstr "" msgstr "Ποσότητα του φαγητού που θα προστεθεί στη λίστα αγορών"
#: .\cookbook\serializer.py:1224 #: .\cookbook\serializer.py:1224
msgid "ID of unit to use for the shopping list" msgid "ID of unit to use for the shopping list"
msgstr "" msgstr "Το ID της μονάδας μέτρησης που θα χρησιμοποιείται στη λίστα αγορών"
#: .\cookbook\serializer.py:1226 #: .\cookbook\serializer.py:1226
msgid "When set to true will delete all food from active shopping lists." msgid "When set to true will delete all food from active shopping lists."
msgstr "" msgstr ""
"Όταν οριστεί σε true, θα διαγραφούν όλα τα τρόφιμα από τις ενεργές λίστες "
"αγορών."
#: .\cookbook\tables.py:36 .\cookbook\templates\generic\edit_template.html:6 #: .\cookbook\tables.py:36 .\cookbook\templates\generic\edit_template.html:6
#: .\cookbook\templates\generic\edit_template.html:14 #: .\cookbook\templates\generic\edit_template.html:14
#: .\cookbook\templates\recipes_table.html:82 #: .\cookbook\templates\recipes_table.html:82
msgid "Edit" msgid "Edit"
msgstr "" msgstr "Τροποποίηση"
#: .\cookbook\tables.py:116 .\cookbook\tables.py:131 #: .\cookbook\tables.py:116 .\cookbook\tables.py:131
#: .\cookbook\templates\generic\delete_template.html:7 #: .\cookbook\templates\generic\delete_template.html:7
@ -817,28 +829,28 @@ msgstr ""
#: .\cookbook\templates\generic\edit_template.html:28 #: .\cookbook\templates\generic\edit_template.html:28
#: .\cookbook\templates\recipes_table.html:90 #: .\cookbook\templates\recipes_table.html:90
msgid "Delete" msgid "Delete"
msgstr "" msgstr "Διαγραφή"
#: .\cookbook\templates\404.html:5 #: .\cookbook\templates\404.html:5
msgid "404 Error" msgid "404 Error"
msgstr "" msgstr "404 Error"
#: .\cookbook\templates\404.html:18 #: .\cookbook\templates\404.html:18
msgid "The page you are looking for could not be found." msgid "The page you are looking for could not be found."
msgstr "" msgstr "Η σελίδα που αναζητάτε δεν μπορεί να βρεθεί."
#: .\cookbook\templates\404.html:33 #: .\cookbook\templates\404.html:33
msgid "Take me Home" msgid "Take me Home"
msgstr "" msgstr "Πήγαινε με στη αρχική σελίδα"
#: .\cookbook\templates\404.html:35 #: .\cookbook\templates\404.html:35
msgid "Report a Bug" msgid "Report a Bug"
msgstr "" msgstr "Αναφορά σφάλματος"
#: .\cookbook\templates\account\email.html:6 #: .\cookbook\templates\account\email.html:6
#: .\cookbook\templates\account\email.html:17 #: .\cookbook\templates\account\email.html:17
msgid "E-mail Addresses" msgid "E-mail Addresses"
msgstr "" msgstr "Διευθύνσεις e-mail"
#: .\cookbook\templates\account\email.html:12 #: .\cookbook\templates\account\email.html:12
#: .\cookbook\templates\account\password_change.html:11 #: .\cookbook\templates\account\password_change.html:11
@ -847,68 +859,71 @@ msgstr ""
#: .\cookbook\templates\settings.html:17 #: .\cookbook\templates\settings.html:17
#: .\cookbook\templates\socialaccount\connections.html:10 #: .\cookbook\templates\socialaccount\connections.html:10
msgid "Settings" msgid "Settings"
msgstr "" msgstr "Ρυθμίσεις"
#: .\cookbook\templates\account\email.html:13 #: .\cookbook\templates\account\email.html:13
msgid "Email" msgid "Email"
msgstr "" msgstr "Email"
#: .\cookbook\templates\account\email.html:19 #: .\cookbook\templates\account\email.html:19
msgid "The following e-mail addresses are associated with your account:" msgid "The following e-mail addresses are associated with your account:"
msgstr "" msgstr "Οι παρακάτω διευθύνσεις e-mail συνδέονται με τον λογαριασμό σας:"
#: .\cookbook\templates\account\email.html:36 #: .\cookbook\templates\account\email.html:36
msgid "Verified" msgid "Verified"
msgstr "" msgstr "Πιστοποιημένο"
#: .\cookbook\templates\account\email.html:38 #: .\cookbook\templates\account\email.html:38
msgid "Unverified" msgid "Unverified"
msgstr "" msgstr "Μη πιστοποιημένο"
#: .\cookbook\templates\account\email.html:40 #: .\cookbook\templates\account\email.html:40
msgid "Primary" msgid "Primary"
msgstr "" msgstr "Κύριο"
#: .\cookbook\templates\account\email.html:47 #: .\cookbook\templates\account\email.html:47
msgid "Make Primary" msgid "Make Primary"
msgstr "" msgstr "Μετατροπή σε κύριο"
#: .\cookbook\templates\account\email.html:49 #: .\cookbook\templates\account\email.html:49
msgid "Re-send Verification" msgid "Re-send Verification"
msgstr "" msgstr "Επαναποστολή της επαλήθευσης"
#: .\cookbook\templates\account\email.html:50 #: .\cookbook\templates\account\email.html:50
#: .\cookbook\templates\generic\delete_template.html:57 #: .\cookbook\templates\generic\delete_template.html:57
#: .\cookbook\templates\socialaccount\connections.html:44 #: .\cookbook\templates\socialaccount\connections.html:44
msgid "Remove" msgid "Remove"
msgstr "" msgstr "Αφαίρεση"
#: .\cookbook\templates\account\email.html:58 #: .\cookbook\templates\account\email.html:58
msgid "Warning:" msgid "Warning:"
msgstr "" msgstr "Προειδοποίηση:"
#: .\cookbook\templates\account\email.html:58 #: .\cookbook\templates\account\email.html:58
msgid "" msgid ""
"You currently do not have any e-mail address set up. You should really add " "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." "an e-mail address so you can receive notifications, reset your password, etc."
msgstr "" msgstr ""
"Προς το παρόν, δεν έχετε καμία διεύθυνση e-mail καταχωρημένη. Θα πρέπει να "
"προσθέσετε μια διεύθυνση ηλεκτρονικού ταχυδρομείου, ώστε να μπορείτε να "
"λαμβάνετε ειδοποιήσεις, να επαναφέρετε τον κωδικό πρόσβασης, κ.λπ."
#: .\cookbook\templates\account\email.html:64 #: .\cookbook\templates\account\email.html:64
msgid "Add E-mail Address" msgid "Add E-mail Address"
msgstr "" msgstr "Προσθήκη διεύθυνσης e-mail"
#: .\cookbook\templates\account\email.html:69 #: .\cookbook\templates\account\email.html:69
msgid "Add E-mail" msgid "Add E-mail"
msgstr "" msgstr "Προσθήκη e-mail"
#: .\cookbook\templates\account\email.html:79 #: .\cookbook\templates\account\email.html:79
msgid "Do you really want to remove the selected e-mail address?" msgid "Do you really want to remove the selected e-mail address?"
msgstr "" msgstr "Θέλετε πραγματικά να αφαιρέσετε την επιλεγμένη διεύθυνση e-mail;"
#: .\cookbook\templates\account\email_confirm.html:6 #: .\cookbook\templates\account\email_confirm.html:6
#: .\cookbook\templates\account\email_confirm.html:10 #: .\cookbook\templates\account\email_confirm.html:10
msgid "Confirm E-mail Address" msgid "Confirm E-mail Address"
msgstr "" msgstr "Επιβεβαίωση διεύθυνσης e-mail"
#: .\cookbook\templates\account\email_confirm.html:16 #: .\cookbook\templates\account\email_confirm.html:16
#, python-format #, python-format
@ -918,11 +933,15 @@ msgid ""
"for user %(user_display)s\n" "for user %(user_display)s\n"
" ." " ."
msgstr "" msgstr ""
"Παρακαλώ επιβεβαιώστε ότι το\n"
" <a href=\"mailto:%(email)s\">%(email)s</a> είναι μια διεύθυνση "
"e-mail για τον χρήστη %(user_display)s\n"
" ."
#: .\cookbook\templates\account\email_confirm.html:22 #: .\cookbook\templates\account\email_confirm.html:22
#: .\cookbook\templates\generic\delete_template.html:72 #: .\cookbook\templates\generic\delete_template.html:72
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr "Επιβεβαίωση"
#: .\cookbook\templates\account\email_confirm.html:29 #: .\cookbook\templates\account\email_confirm.html:29
#, python-format #, python-format
@ -931,11 +950,15 @@ msgid ""
" <a href=\"%(email_url)s\">issue a new e-mail confirmation " " <a href=\"%(email_url)s\">issue a new e-mail confirmation "
"request</a>." "request</a>."
msgstr "" msgstr ""
"Αυτός ο σύνδεσμος επιβεβαίωσης έχει λήξει είναι δεν είναι έγκυρος. Παρακαλώ "
"\n"
" <a href=\"%(email_url)s\">κάντε ένα νέο αίτημα για επιβεβαιωτικό "
"e-mail</a>."
#: .\cookbook\templates\account\login.html:8 #: .\cookbook\templates\account\login.html:8
#: .\cookbook\templates\base.html:340 .\cookbook\templates\openid\login.html:8 #: .\cookbook\templates\base.html:340 .\cookbook\templates\openid\login.html:8
msgid "Login" msgid "Login"
msgstr "" msgstr "Σύνδεση"
#: .\cookbook\templates\account\login.html:15 #: .\cookbook\templates\account\login.html:15
#: .\cookbook\templates\account\login.html:31 #: .\cookbook\templates\account\login.html:31
@ -945,41 +968,43 @@ msgstr ""
#: .\cookbook\templates\openid\login.html:26 #: .\cookbook\templates\openid\login.html:26
#: .\cookbook\templates\socialaccount\authentication_error.html:15 #: .\cookbook\templates\socialaccount\authentication_error.html:15
msgid "Sign In" msgid "Sign In"
msgstr "" msgstr "Σύνδεση"
#: .\cookbook\templates\account\login.html:34 #: .\cookbook\templates\account\login.html:34
#: .\cookbook\templates\socialaccount\signup.html:8 #: .\cookbook\templates\socialaccount\signup.html:8
#: .\cookbook\templates\socialaccount\signup.html:57 #: .\cookbook\templates\socialaccount\signup.html:57
msgid "Sign Up" msgid "Sign Up"
msgstr "" msgstr "Εγγραφή"
#: .\cookbook\templates\account\login.html:39 #: .\cookbook\templates\account\login.html:39
#: .\cookbook\templates\account\login.html:41 #: .\cookbook\templates\account\login.html:41
#: .\cookbook\templates\account\password_reset.html:29 #: .\cookbook\templates\account\password_reset.html:29
msgid "Reset My Password" msgid "Reset My Password"
msgstr "" msgstr "Επαναφορά κωδικού πρόσβασης"
#: .\cookbook\templates\account\login.html:40 #: .\cookbook\templates\account\login.html:40
msgid "Lost your password?" msgid "Lost your password?"
msgstr "" msgstr "Χασάτε τον κωδικό πρόσβασης;"
#: .\cookbook\templates\account\login.html:52 #: .\cookbook\templates\account\login.html:52
msgid "Social Login" msgid "Social Login"
msgstr "" msgstr "Σύνδεση με social media"
#: .\cookbook\templates\account\login.html:53 #: .\cookbook\templates\account\login.html:53
msgid "You can use any of the following providers to sign in." msgid "You can use any of the following providers to sign in."
msgstr "" msgstr ""
"Μπορείτε να χρησιμοποιήσετε οποιονδήποτε από τους παρακάτω παρόχους για να "
"συνδεθείτε."
#: .\cookbook\templates\account\logout.html:5 #: .\cookbook\templates\account\logout.html:5
#: .\cookbook\templates\account\logout.html:9 #: .\cookbook\templates\account\logout.html:9
#: .\cookbook\templates\account\logout.html:18 #: .\cookbook\templates\account\logout.html:18
msgid "Sign Out" msgid "Sign Out"
msgstr "" msgstr "Αποσύνδεση"
#: .\cookbook\templates\account\logout.html:11 #: .\cookbook\templates\account\logout.html:11
msgid "Are you sure you want to sign out?" msgid "Are you sure you want to sign out?"
msgstr "" msgstr "Είστε σίγουροι ότι θέλετε να αποσυνδεθείτε;"
#: .\cookbook\templates\account\password_change.html:6 #: .\cookbook\templates\account\password_change.html:6
#: .\cookbook\templates\account\password_change.html:16 #: .\cookbook\templates\account\password_change.html:16
@ -989,44 +1014,50 @@ msgstr ""
#: .\cookbook\templates\account\password_reset_from_key_done.html:7 #: .\cookbook\templates\account\password_reset_from_key_done.html:7
#: .\cookbook\templates\account\password_reset_from_key_done.html:13 #: .\cookbook\templates\account\password_reset_from_key_done.html:13
msgid "Change Password" msgid "Change Password"
msgstr "" msgstr "Αλλαγή κωδικού πρόσβασης"
#: .\cookbook\templates\account\password_change.html:12 #: .\cookbook\templates\account\password_change.html:12
#: .\cookbook\templates\account\password_set.html:12 #: .\cookbook\templates\account\password_set.html:12
#: .\cookbook\templates\settings.html:76 #: .\cookbook\templates\settings.html:76
msgid "Password" msgid "Password"
msgstr "" msgstr "Κωδικός πρόσβασης"
#: .\cookbook\templates\account\password_change.html:22 #: .\cookbook\templates\account\password_change.html:22
msgid "Forgot Password?" msgid "Forgot Password?"
msgstr "" msgstr "Ξεχάσατε τον κωδικό πρόσβασης;"
#: .\cookbook\templates\account\password_reset.html:7 #: .\cookbook\templates\account\password_reset.html:7
#: .\cookbook\templates\account\password_reset.html:13 #: .\cookbook\templates\account\password_reset.html:13
#: .\cookbook\templates\account\password_reset_done.html:7 #: .\cookbook\templates\account\password_reset_done.html:7
#: .\cookbook\templates\account\password_reset_done.html:10 #: .\cookbook\templates\account\password_reset_done.html:10
msgid "Password Reset" msgid "Password Reset"
msgstr "" msgstr "Επαναφορά κωδικού πρόσβασης"
#: .\cookbook\templates\account\password_reset.html:24 #: .\cookbook\templates\account\password_reset.html:24
msgid "" msgid ""
"Forgotten your password? Enter your e-mail address below, and we'll send you " "Forgotten your password? Enter your e-mail address below, and we'll send you "
"an e-mail allowing you to reset it." "an e-mail allowing you to reset it."
msgstr "" msgstr ""
"Ξεχάσατε τον κωδικό πρόσβασης σας; Εισάγετε τη διεύθυνση ηλεκτρονικού "
"ταχυδρομείου σας παρακάτω και θα σας στείλουμε ένα email που θα σας "
"επιτρέψει να τον επαναφέρετε."
#: .\cookbook\templates\account\password_reset.html:32 #: .\cookbook\templates\account\password_reset.html:32
msgid "Password reset is disabled on this instance." msgid "Password reset is disabled on this instance."
msgstr "" msgstr ""
"Η επαναφορά κωδικού πρόσβασης είναι απενεργοποιημένη σε αυτήν την πλατφόρμα."
#: .\cookbook\templates\account\password_reset_done.html:16 #: .\cookbook\templates\account\password_reset_done.html:16
msgid "" msgid ""
"We have sent you an e-mail. Please contact us if you do not receive it " "We have sent you an e-mail. Please contact us if you do not receive it "
"within a few minutes." "within a few minutes."
msgstr "" msgstr ""
"Σας έχουμε στείλει ένα email. Παρακαλούμε επικοινωνήστε μαζί μας αν δεν το "
"λάβετε εντός λίγων λεπτών."
#: .\cookbook\templates\account\password_reset_from_key.html:13 #: .\cookbook\templates\account\password_reset_from_key.html:13
msgid "Bad Token" msgid "Bad Token"
msgstr "" msgstr "Μη έγκυρο token"
#: .\cookbook\templates\account\password_reset_from_key.html:25 #: .\cookbook\templates\account\password_reset_from_key.html:25
#, python-format #, python-format
@ -1036,168 +1067,172 @@ msgid ""
" Please request a <a href=\"%(passwd_reset_url)s\">new " " Please request a <a href=\"%(passwd_reset_url)s\">new "
"password reset</a>." "password reset</a>."
msgstr "" msgstr ""
"Ο σύνδεσμος επαναφοράς κωδικού πρόσβασης ήταν άκυρος, πιθανώς επειδή έχει "
"ήδη χρησιμοποιηθεί.\n"
" Παρακαλώ ζητήστε έναν <a href=\"%(passwd_reset_url)s\""
">νέο σύνδεσμο επαναφοράς κωδικού πρόσβασης</a>."
#: .\cookbook\templates\account\password_reset_from_key.html:33 #: .\cookbook\templates\account\password_reset_from_key.html:33
msgid "change password" msgid "change password"
msgstr "" msgstr "Αλλαγή κωδικού πρόσβασης"
#: .\cookbook\templates\account\password_reset_from_key.html:36 #: .\cookbook\templates\account\password_reset_from_key.html:36
#: .\cookbook\templates\account\password_reset_from_key_done.html:19 #: .\cookbook\templates\account\password_reset_from_key_done.html:19
msgid "Your password is now changed." msgid "Your password is now changed."
msgstr "" msgstr "Ο κωδικός πρόσβασης σας έχει αλλάξει."
#: .\cookbook\templates\account\password_set.html:6 #: .\cookbook\templates\account\password_set.html:6
#: .\cookbook\templates\account\password_set.html:16 #: .\cookbook\templates\account\password_set.html:16
#: .\cookbook\templates\account\password_set.html:21 #: .\cookbook\templates\account\password_set.html:21
msgid "Set Password" msgid "Set Password"
msgstr "" msgstr "Ορισμός Κωδικού Πρόσβασης"
#: .\cookbook\templates\account\signup.html:6 #: .\cookbook\templates\account\signup.html:6
msgid "Register" msgid "Register"
msgstr "" msgstr "Εγγραφή"
#: .\cookbook\templates\account\signup.html:12 #: .\cookbook\templates\account\signup.html:12
msgid "Create an Account" msgid "Create an Account"
msgstr "" msgstr "Δημιουργία λογαριασμού"
#: .\cookbook\templates\account\signup.html:42 #: .\cookbook\templates\account\signup.html:42
#: .\cookbook\templates\socialaccount\signup.html:33 #: .\cookbook\templates\socialaccount\signup.html:33
msgid "I accept the follwoing" msgid "I accept the follwoing"
msgstr "" msgstr "Αποδέχομαι τα παρακάτω"
#: .\cookbook\templates\account\signup.html:45 #: .\cookbook\templates\account\signup.html:45
#: .\cookbook\templates\socialaccount\signup.html:36 #: .\cookbook\templates\socialaccount\signup.html:36
msgid "Terms and Conditions" msgid "Terms and Conditions"
msgstr "" msgstr "Όροι και προϋποθέσεις"
#: .\cookbook\templates\account\signup.html:48 #: .\cookbook\templates\account\signup.html:48
#: .\cookbook\templates\socialaccount\signup.html:39 #: .\cookbook\templates\socialaccount\signup.html:39
msgid "and" msgid "and"
msgstr "" msgstr "και"
#: .\cookbook\templates\account\signup.html:52 #: .\cookbook\templates\account\signup.html:52
#: .\cookbook\templates\socialaccount\signup.html:43 #: .\cookbook\templates\socialaccount\signup.html:43
msgid "Privacy Policy" msgid "Privacy Policy"
msgstr "" msgstr "Πολιτική απορρήτου"
#: .\cookbook\templates\account\signup.html:65 #: .\cookbook\templates\account\signup.html:65
msgid "Create User" msgid "Create User"
msgstr "" msgstr "Δημιουργία χρήστη"
#: .\cookbook\templates\account\signup.html:69 #: .\cookbook\templates\account\signup.html:69
msgid "Already have an account?" msgid "Already have an account?"
msgstr "" msgstr "Έχετε ήδη λογαριασμό;"
#: .\cookbook\templates\account\signup_closed.html:5 #: .\cookbook\templates\account\signup_closed.html:5
#: .\cookbook\templates\account\signup_closed.html:11 #: .\cookbook\templates\account\signup_closed.html:11
msgid "Sign Up Closed" msgid "Sign Up Closed"
msgstr "" msgstr "Οι εγγραφές έκλεισαν"
#: .\cookbook\templates\account\signup_closed.html:13 #: .\cookbook\templates\account\signup_closed.html:13
msgid "We are sorry, but the sign up is currently closed." msgid "We are sorry, but the sign up is currently closed."
msgstr "" msgstr "Λυπούμαστε, αλλά οι εγγραφές έχουν ήδη κλείσει."
#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:330 #: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:330
#: .\cookbook\templates\rest_framework\api.html:11 #: .\cookbook\templates\rest_framework\api.html:11
msgid "API Documentation" msgid "API Documentation"
msgstr "" msgstr "Τεκμηρίωση API"
#: .\cookbook\templates\base.html:103 .\cookbook\templates\index.html:87 #: .\cookbook\templates\base.html:103 .\cookbook\templates\index.html:87
#: .\cookbook\templates\stats.html:22 #: .\cookbook\templates\stats.html:22
msgid "Recipes" msgid "Recipes"
msgstr "" msgstr "Συνταγές"
#: .\cookbook\templates\base.html:111 #: .\cookbook\templates\base.html:111
msgid "Shopping" msgid "Shopping"
msgstr "" msgstr "Αγορές"
#: .\cookbook\templates\base.html:150 .\cookbook\views\lists.py:105 #: .\cookbook\templates\base.html:150 .\cookbook\views\lists.py:105
msgid "Foods" msgid "Foods"
msgstr "" msgstr "Φαγητά"
#: .\cookbook\templates\base.html:162 #: .\cookbook\templates\base.html:162
#: .\cookbook\templates\forms\ingredients.html:24 #: .\cookbook\templates\forms\ingredients.html:24
#: .\cookbook\templates\stats.html:26 .\cookbook\views\lists.py:122 #: .\cookbook\templates\stats.html:26 .\cookbook\views\lists.py:122
msgid "Units" msgid "Units"
msgstr "" msgstr "Μονάδες μέτρησης"
#: .\cookbook\templates\base.html:176 .\cookbook\templates\supermarket.html:7 #: .\cookbook\templates\base.html:176 .\cookbook\templates\supermarket.html:7
msgid "Supermarket" msgid "Supermarket"
msgstr "" msgstr "Supermarket"
#: .\cookbook\templates\base.html:188 #: .\cookbook\templates\base.html:188
msgid "Supermarket Category" msgid "Supermarket Category"
msgstr "" msgstr "Κατηγορία Supermarket"
#: .\cookbook\templates\base.html:200 .\cookbook\views\lists.py:171 #: .\cookbook\templates\base.html:200 .\cookbook\views\lists.py:171
msgid "Automations" msgid "Automations"
msgstr "" msgstr "Αυτοματισμοί"
#: .\cookbook\templates\base.html:214 .\cookbook\views\lists.py:207 #: .\cookbook\templates\base.html:214 .\cookbook\views\lists.py:207
msgid "Files" msgid "Files"
msgstr "" msgstr "Αρχεία"
#: .\cookbook\templates\base.html:226 #: .\cookbook\templates\base.html:226
msgid "Batch Edit" msgid "Batch Edit"
msgstr "" msgstr "Μαζική Επεξεργασία"
#: .\cookbook\templates\base.html:238 .\cookbook\templates\history.html:6 #: .\cookbook\templates\base.html:238 .\cookbook\templates\history.html:6
#: .\cookbook\templates\history.html:14 #: .\cookbook\templates\history.html:14
msgid "History" msgid "History"
msgstr "" msgstr "Ιστορικό"
#: .\cookbook\templates\base.html:252 #: .\cookbook\templates\base.html:252
#: .\cookbook\templates\ingredient_editor.html:7 #: .\cookbook\templates\ingredient_editor.html:7
#: .\cookbook\templates\ingredient_editor.html:13 #: .\cookbook\templates\ingredient_editor.html:13
msgid "Ingredient Editor" msgid "Ingredient Editor"
msgstr "" msgstr "Επεξεργαστής Συστατικών"
#: .\cookbook\templates\base.html:264 #: .\cookbook\templates\base.html:264
#: .\cookbook\templates\export_response.html:7 #: .\cookbook\templates\export_response.html:7
#: .\cookbook\templates\test2.html:14 .\cookbook\templates\test2.html:20 #: .\cookbook\templates\test2.html:14 .\cookbook\templates\test2.html:20
msgid "Export" msgid "Export"
msgstr "" msgstr "Εξαγωγή"
#: .\cookbook\templates\base.html:280 .\cookbook\templates\index.html:47 #: .\cookbook\templates\base.html:280 .\cookbook\templates\index.html:47
msgid "Import Recipe" msgid "Import Recipe"
msgstr "" msgstr "Εισαγωγή συνταγής"
#: .\cookbook\templates\base.html:282 #: .\cookbook\templates\base.html:282
msgid "Create" msgid "Create"
msgstr "" msgstr "Δημιουργία"
#: .\cookbook\templates\base.html:295 #: .\cookbook\templates\base.html:295
#: .\cookbook\templates\generic\list_template.html:14 #: .\cookbook\templates\generic\list_template.html:14
#: .\cookbook\templates\stats.html:43 #: .\cookbook\templates\stats.html:43
msgid "External Recipes" msgid "External Recipes"
msgstr "" msgstr "Εξωτερικές Συνταγές"
#: .\cookbook\templates\base.html:298 #: .\cookbook\templates\base.html:298
#: .\cookbook\templates\space_manage.html:15 #: .\cookbook\templates\space_manage.html:15
msgid "Space Settings" msgid "Space Settings"
msgstr "" msgstr "Ρυθμίσεις χώρου"
#: .\cookbook\templates\base.html:303 .\cookbook\templates\system.html:13 #: .\cookbook\templates\base.html:303 .\cookbook\templates\system.html:13
msgid "System" msgid "System"
msgstr "" msgstr "Σύστημα"
#: .\cookbook\templates\base.html:305 #: .\cookbook\templates\base.html:305
msgid "Admin" msgid "Admin"
msgstr "" msgstr "Διαχειριστής"
#: .\cookbook\templates\base.html:309 #: .\cookbook\templates\base.html:309
#: .\cookbook\templates\space_overview.html:25 #: .\cookbook\templates\space_overview.html:25
msgid "Your Spaces" msgid "Your Spaces"
msgstr "" msgstr "Οι χώροι σας"
#: .\cookbook\templates\base.html:320 #: .\cookbook\templates\base.html:320
#: .\cookbook\templates\space_overview.html:6 #: .\cookbook\templates\space_overview.html:6
msgid "Overview" msgid "Overview"
msgstr "" msgstr "Σύνοψη"
#: .\cookbook\templates\base.html:324 #: .\cookbook\templates\base.html:324
msgid "Markdown Guide" msgid "Markdown Guide"
msgstr "" msgstr "Οδηγός χρήσης του Markdown"
#: .\cookbook\templates\base.html:326 #: .\cookbook\templates\base.html:326
msgid "GitHub" msgid "GitHub"
@ -1205,53 +1240,57 @@ msgstr "GitHub"
#: .\cookbook\templates\base.html:328 #: .\cookbook\templates\base.html:328
msgid "Translate Tandoor" msgid "Translate Tandoor"
msgstr "" msgstr "Μεταφράστε το Tandoor"
#: .\cookbook\templates\base.html:332 #: .\cookbook\templates\base.html:332
msgid "API Browser" msgid "API Browser"
msgstr "" msgstr "Περιηγητής API"
#: .\cookbook\templates\base.html:335 #: .\cookbook\templates\base.html:335
msgid "Log out" msgid "Log out"
msgstr "" msgstr "Αποσύνδεση"
#: .\cookbook\templates\base.html:357 #: .\cookbook\templates\base.html:357
msgid "You are using the free version of Tandor" msgid "You are using the free version of Tandor"
msgstr "" msgstr "Χρησιμοποιείται την δωρεάν έκδοση του Tandoor"
#: .\cookbook\templates\base.html:358 #: .\cookbook\templates\base.html:358
msgid "Upgrade Now" msgid "Upgrade Now"
msgstr "" msgstr "Αναβαθμιστείτε τώρα"
#: .\cookbook\templates\batch\edit.html:6 #: .\cookbook\templates\batch\edit.html:6
msgid "Batch edit Category" msgid "Batch edit Category"
msgstr "" msgstr "Μαζική τροποποίηση κατηγοριών"
#: .\cookbook\templates\batch\edit.html:15 #: .\cookbook\templates\batch\edit.html:15
msgid "Batch edit Recipes" msgid "Batch edit Recipes"
msgstr "" msgstr "Μαζική τροποποίηση Συνταγών"
#: .\cookbook\templates\batch\edit.html:20 #: .\cookbook\templates\batch\edit.html:20
msgid "Add the specified keywords to all recipes containing a word" msgid "Add the specified keywords to all recipes containing a word"
msgstr "" msgstr ""
"Προσθέστε τις καθορισμένες λέξεις-κλειδιά σε όλες τις συνταγές που περιέχουν "
"μια λέξη"
#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:73 #: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:73
msgid "Sync" msgid "Sync"
msgstr "" msgstr "Συγχρονισμός"
#: .\cookbook\templates\batch\monitor.html:10 #: .\cookbook\templates\batch\monitor.html:10
msgid "Manage watched Folders" msgid "Manage watched Folders"
msgstr "" msgstr "Διαχείριση φακέλων που έχουν προβληθεί"
#: .\cookbook\templates\batch\monitor.html:14 #: .\cookbook\templates\batch\monitor.html:14
msgid "" msgid ""
"On this Page you can manage all storage folder locations that should be " "On this Page you can manage all storage folder locations that should be "
"monitored and synced." "monitored and synced."
msgstr "" msgstr ""
"Σε αυτήν τη σελίδα μπορείτε να διαχειριστείτε όλες τις τοποθεσίες "
"αποθήκευσης φακέλων που πρέπει να παρακολουθούνται και να συγχρονίζονται."
#: .\cookbook\templates\batch\monitor.html:16 #: .\cookbook\templates\batch\monitor.html:16
msgid "The path must be in the following format" msgid "The path must be in the following format"
msgstr "" msgstr "Η διαδρομή (path) πρέπει να είναι στην ακόλουθη μορφή"
#: .\cookbook\templates\batch\monitor.html:20 #: .\cookbook\templates\batch\monitor.html:20
#: .\cookbook\templates\forms\edit_import_recipe.html:14 #: .\cookbook\templates\forms\edit_import_recipe.html:14
@ -1263,55 +1302,57 @@ msgstr ""
#: .\cookbook\templates\settings.html:202 #: .\cookbook\templates\settings.html:202
#: .\cookbook\templates\settings.html:213 #: .\cookbook\templates\settings.html:213
msgid "Save" msgid "Save"
msgstr "" msgstr "Αποθήκευση"
#: .\cookbook\templates\batch\monitor.html:21 #: .\cookbook\templates\batch\monitor.html:21
msgid "Manage External Storage" msgid "Manage External Storage"
msgstr "" msgstr "Διαχείριση εξωτερικού χώρου αποθήκευσης"
#: .\cookbook\templates\batch\monitor.html:28 #: .\cookbook\templates\batch\monitor.html:28
msgid "Sync Now!" msgid "Sync Now!"
msgstr "" msgstr "Συγχρονισμός τώρα!"
#: .\cookbook\templates\batch\monitor.html:29 #: .\cookbook\templates\batch\monitor.html:29
msgid "Show Recipes" msgid "Show Recipes"
msgstr "" msgstr "Προβολή Συνταγών"
#: .\cookbook\templates\batch\monitor.html:30 #: .\cookbook\templates\batch\monitor.html:30
msgid "Show Log" msgid "Show Log"
msgstr "" msgstr "Προβολή αρχείων καταγραφής"
#: .\cookbook\templates\batch\waiting.html:4 #: .\cookbook\templates\batch\waiting.html:4
#: .\cookbook\templates\batch\waiting.html:10 #: .\cookbook\templates\batch\waiting.html:10
msgid "Importing Recipes" msgid "Importing Recipes"
msgstr "" msgstr "Οι συνταγές εισάγονται"
#: .\cookbook\templates\batch\waiting.html:28 #: .\cookbook\templates\batch\waiting.html:28
msgid "" msgid ""
"This can take a few minutes, depending on the number of recipes in sync, " "This can take a few minutes, depending on the number of recipes in sync, "
"please wait." "please wait."
msgstr "" msgstr ""
"Αυτή η διαδικασία μπορεί να πάρει μερικά λεπτά, ανάλογα με τον αριθμό των "
"συνταγών που πρέπει να συγχρονιστούν, παρακαλώ περιμένετε."
#: .\cookbook\templates\books.html:7 #: .\cookbook\templates\books.html:7
msgid "Recipe Books" msgid "Recipe Books"
msgstr "" msgstr "Βιβλία Συνταγών"
#: .\cookbook\templates\export.html:8 .\cookbook\templates\test2.html:6 #: .\cookbook\templates\export.html:8 .\cookbook\templates\test2.html:6
msgid "Export Recipes" msgid "Export Recipes"
msgstr "" msgstr "Εξαγωγή Συνταγών"
#: .\cookbook\templates\forms\edit_import_recipe.html:5 #: .\cookbook\templates\forms\edit_import_recipe.html:5
#: .\cookbook\templates\forms\edit_import_recipe.html:9 #: .\cookbook\templates\forms\edit_import_recipe.html:9
msgid "Import new Recipe" msgid "Import new Recipe"
msgstr "" msgstr "Εισαγωγή μια νέας συνταγή"
#: .\cookbook\templates\forms\edit_internal_recipe.html:7 #: .\cookbook\templates\forms\edit_internal_recipe.html:7
msgid "Edit Recipe" msgid "Edit Recipe"
msgstr "" msgstr "Τροποποίηση συνταγής"
#: .\cookbook\templates\forms\ingredients.html:15 #: .\cookbook\templates\forms\ingredients.html:15
msgid "Edit Ingredients" msgid "Edit Ingredients"
msgstr "" msgstr "Τροποποίηση υλικών"
#: .\cookbook\templates\forms\ingredients.html:16 #: .\cookbook\templates\forms\ingredients.html:16
msgid "" msgid ""
@ -1323,32 +1364,41 @@ msgid ""
"them.\n" "them.\n"
" " " "
msgstr "" msgstr ""
"\n"
" Την παρακάτω φόρμα μπορεί να χρησιμοποιηθεί στην περίπτωση που, κατά "
"λάθος, δημιουργήθηκαν δύο (ή περισσότερες) μονάδες μέτρησης ή συστατικά που "
"θα έπρεπε να είναι\n"
" τα ίδια.\n"
" Αυτή η φόρμα συγχωνεύει δύο μονάδες ή συστατικά και ενημερώνει όλες "
"τις συνταγές που τα χρησιμοποιούν.\n"
" "
#: .\cookbook\templates\forms\ingredients.html:26 #: .\cookbook\templates\forms\ingredients.html:26
msgid "Are you sure that you want to merge these two units?" msgid "Are you sure that you want to merge these two units?"
msgstr "" msgstr "Είστε βέβαιος ότι θέλετε να συγχωνεύσετε αυτές τις δύο μονάδες;"
#: .\cookbook\templates\forms\ingredients.html:31 #: .\cookbook\templates\forms\ingredients.html:31
#: .\cookbook\templates\forms\ingredients.html:40 #: .\cookbook\templates\forms\ingredients.html:40
msgid "Merge" msgid "Merge"
msgstr "" msgstr "Συγχώνευση"
#: .\cookbook\templates\forms\ingredients.html:36 #: .\cookbook\templates\forms\ingredients.html:36
msgid "Are you sure that you want to merge these two ingredients?" msgid "Are you sure that you want to merge these two ingredients?"
msgstr "" msgstr "Είστε βέβαιος ότι θέλετε να συγχωνεύσετε αυτά τα δύο υλικά;"
#: .\cookbook\templates\generic\delete_template.html:21 #: .\cookbook\templates\generic\delete_template.html:21
#, python-format #, python-format
msgid "Are you sure you want to delete the %(title)s: <b>%(object)s</b> " msgid "Are you sure you want to delete the %(title)s: <b>%(object)s</b> "
msgstr "" msgstr ""
"Είστε σίγουροι ότι θέλετε να διαγράψετε τα %(title)s: <b>%(object)s</b> "
#: .\cookbook\templates\generic\delete_template.html:22 #: .\cookbook\templates\generic\delete_template.html:22
msgid "This cannot be undone!" msgid "This cannot be undone!"
msgstr "" msgstr "Αυτό δεν μπορεί να αναιρεθεί!"
#: .\cookbook\templates\generic\delete_template.html:27 #: .\cookbook\templates\generic\delete_template.html:27
msgid "Protected" msgid "Protected"
msgstr "" msgstr "Προστατευμένο"
#: .\cookbook\templates\generic\delete_template.html:42 #: .\cookbook\templates\generic\delete_template.html:42
msgid "Cascade" msgid "Cascade"
@ -1356,68 +1406,68 @@ msgstr ""
#: .\cookbook\templates\generic\delete_template.html:73 #: .\cookbook\templates\generic\delete_template.html:73
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr "Ακύρωση"
#: .\cookbook\templates\generic\edit_template.html:32 #: .\cookbook\templates\generic\edit_template.html:32
msgid "View" msgid "View"
msgstr "" msgstr "Προβολή"
#: .\cookbook\templates\generic\edit_template.html:36 #: .\cookbook\templates\generic\edit_template.html:36
msgid "Delete original file" msgid "Delete original file"
msgstr "" msgstr "Διαγραφή πρωτότυπου αρχείου"
#: .\cookbook\templates\generic\list_template.html:6 #: .\cookbook\templates\generic\list_template.html:6
#: .\cookbook\templates\generic\list_template.html:22 #: .\cookbook\templates\generic\list_template.html:22
msgid "List" msgid "List"
msgstr "" msgstr "Λίστα"
#: .\cookbook\templates\generic\list_template.html:36 #: .\cookbook\templates\generic\list_template.html:36
msgid "Filter" msgid "Filter"
msgstr "" msgstr "Φίλτρο"
#: .\cookbook\templates\generic\list_template.html:41 #: .\cookbook\templates\generic\list_template.html:41
msgid "Import all" msgid "Import all"
msgstr "" msgstr "Εισαγωγή όλων"
#: .\cookbook\templates\generic\table_template.html:76 #: .\cookbook\templates\generic\table_template.html:76
#: .\cookbook\templates\recipes_table.html:121 #: .\cookbook\templates\recipes_table.html:121
msgid "previous" msgid "previous"
msgstr "" msgstr "προηγούμενο"
#: .\cookbook\templates\generic\table_template.html:98 #: .\cookbook\templates\generic\table_template.html:98
#: .\cookbook\templates\recipes_table.html:143 #: .\cookbook\templates\recipes_table.html:143
msgid "next" msgid "next"
msgstr "" msgstr "επόμενο"
#: .\cookbook\templates\history.html:20 #: .\cookbook\templates\history.html:20
msgid "View Log" msgid "View Log"
msgstr "" msgstr "Προβολή αρχείων καταγραφής"
#: .\cookbook\templates\history.html:24 #: .\cookbook\templates\history.html:24
msgid "Cook Log" msgid "Cook Log"
msgstr "" msgstr "Αρχείο καταγραφής μαγειρέματος"
#: .\cookbook\templates\import.html:6 #: .\cookbook\templates\import.html:6
msgid "Import Recipes" msgid "Import Recipes"
msgstr "" msgstr "Εισαγωγή Συνταγών"
#: .\cookbook\templates\import.html:14 .\cookbook\templates\import.html:20 #: .\cookbook\templates\import.html:14 .\cookbook\templates\import.html:20
#: .\cookbook\templates\import_response.html:7 .\cookbook\views\delete.py:86 #: .\cookbook\templates\import_response.html:7 .\cookbook\views\delete.py:86
#: .\cookbook\views\edit.py:191 #: .\cookbook\views\edit.py:191
msgid "Import" msgid "Import"
msgstr "" msgstr "Εισαγωγή"
#: .\cookbook\templates\include\recipe_open_modal.html:18 #: .\cookbook\templates\include\recipe_open_modal.html:18
msgid "Close" msgid "Close"
msgstr "" msgstr "Κλείσιμο"
#: .\cookbook\templates\include\recipe_open_modal.html:32 #: .\cookbook\templates\include\recipe_open_modal.html:32
msgid "Open Recipe" msgid "Open Recipe"
msgstr "" msgstr "Άνοιγμα Συνταγής"
#: .\cookbook\templates\include\storage_backend_warning.html:4 #: .\cookbook\templates\include\storage_backend_warning.html:4
msgid "Security Warning" msgid "Security Warning"
msgstr "" msgstr "Προειδοποίηση ασφαλείας"
#: .\cookbook\templates\include\storage_backend_warning.html:5 #: .\cookbook\templates\include\storage_backend_warning.html:5
msgid "" msgid ""
@ -1434,32 +1484,32 @@ msgstr ""
#: .\cookbook\templates\index.html:29 #: .\cookbook\templates\index.html:29
msgid "Search recipe ..." msgid "Search recipe ..."
msgstr "" msgstr "Αναζήτηση συνταγής ..."
#: .\cookbook\templates\index.html:44 #: .\cookbook\templates\index.html:44
msgid "New Recipe" msgid "New Recipe"
msgstr "" msgstr "Νέα συνταγή"
#: .\cookbook\templates\index.html:53 #: .\cookbook\templates\index.html:53
msgid "Advanced Search" msgid "Advanced Search"
msgstr "" msgstr "Αναζήτηση για προχωρημένους"
#: .\cookbook\templates\index.html:57 #: .\cookbook\templates\index.html:57
msgid "Reset Search" msgid "Reset Search"
msgstr "" msgstr "Επαναφορά αναζήτησης"
#: .\cookbook\templates\index.html:85 #: .\cookbook\templates\index.html:85
msgid "Last viewed" msgid "Last viewed"
msgstr "" msgstr "Τελευταίες προβολές"
#: .\cookbook\templates\index.html:94 #: .\cookbook\templates\index.html:94
msgid "Log in to view recipes" msgid "Log in to view recipes"
msgstr "" msgstr "Συνδεθείτε για να δείτε τις συνταγές"
#: .\cookbook\templates\markdown_info.html:5 #: .\cookbook\templates\markdown_info.html:5
#: .\cookbook\templates\markdown_info.html:13 #: .\cookbook\templates\markdown_info.html:13
msgid "Markdown Info" msgid "Markdown Info"
msgstr "" msgstr "Πληροφορίες για το Markdown"
#: .\cookbook\templates\markdown_info.html:14 #: .\cookbook\templates\markdown_info.html:14
msgid "" msgid ""
@ -1479,31 +1529,33 @@ msgstr ""
#: .\cookbook\templates\markdown_info.html:25 #: .\cookbook\templates\markdown_info.html:25
msgid "Headers" msgid "Headers"
msgstr "" msgstr "Επικεφαλίδες"
#: .\cookbook\templates\markdown_info.html:54 #: .\cookbook\templates\markdown_info.html:54
msgid "Formatting" msgid "Formatting"
msgstr "" msgstr "Μορφοποίηση"
#: .\cookbook\templates\markdown_info.html:56 #: .\cookbook\templates\markdown_info.html:56
#: .\cookbook\templates\markdown_info.html:72 #: .\cookbook\templates\markdown_info.html:72
msgid "Line breaks are inserted by adding two spaces after the end of a line" msgid "Line breaks are inserted by adding two spaces after the end of a line"
msgstr "" msgstr ""
"Οι αλλαγές γραμμής εισάγονται προσθέτοντας δύο κενά μετά το τέλος μιας "
"γραμμής"
#: .\cookbook\templates\markdown_info.html:57 #: .\cookbook\templates\markdown_info.html:57
#: .\cookbook\templates\markdown_info.html:73 #: .\cookbook\templates\markdown_info.html:73
msgid "or by leaving a blank line in between." msgid "or by leaving a blank line in between."
msgstr "" msgstr "ή αφήνοντας μια κενή γραμμή μεταξύ τους."
#: .\cookbook\templates\markdown_info.html:59 #: .\cookbook\templates\markdown_info.html:59
#: .\cookbook\templates\markdown_info.html:74 #: .\cookbook\templates\markdown_info.html:74
msgid "This text is bold" msgid "This text is bold"
msgstr "" msgstr "Το κείμενο είναι έντονο (bold)"
#: .\cookbook\templates\markdown_info.html:60 #: .\cookbook\templates\markdown_info.html:60
#: .\cookbook\templates\markdown_info.html:75 #: .\cookbook\templates\markdown_info.html:75
msgid "This text is italic" msgid "This text is italic"
msgstr "" msgstr "Αυτό το κείμενο είναι πλάγιο (italic)"
#: .\cookbook\templates\markdown_info.html:61 #: .\cookbook\templates\markdown_info.html:61
#: .\cookbook\templates\markdown_info.html:77 #: .\cookbook\templates\markdown_info.html:77
@ -1512,7 +1564,7 @@ msgstr ""
#: .\cookbook\templates\markdown_info.html:84 #: .\cookbook\templates\markdown_info.html:84
msgid "Lists" msgid "Lists"
msgstr "" msgstr "Λίστες"
#: .\cookbook\templates\markdown_info.html:85 #: .\cookbook\templates\markdown_info.html:85
msgid "" msgid ""
@ -1550,7 +1602,7 @@ msgstr ""
#: .\cookbook\templates\markdown_info.html:125 #: .\cookbook\templates\markdown_info.html:125
msgid "Images & Links" msgid "Images & Links"
msgstr "" msgstr "Φωτογραφίες και σύνδεσμοι"
#: .\cookbook\templates\markdown_info.html:126 #: .\cookbook\templates\markdown_info.html:126
msgid "" msgid ""

View File

@ -0,0 +1,18 @@
# Generated by Django 4.1.9 on 2023-06-26 13:28
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('cookbook', '0193_space_internal_note'),
]
operations = [
migrations.AlterField(
model_name='food',
name='properties_food_amount',
field=models.DecimalField(blank=True, decimal_places=2, default=100, max_digits=16),
),
]

View File

@ -585,7 +585,7 @@ class Food(ExportModelOperationsMixin('food'), TreeModel, PermissionModelMixin):
child_inherit_fields = models.ManyToManyField(FoodInheritField, blank=True, related_name='child_inherit') child_inherit_fields = models.ManyToManyField(FoodInheritField, blank=True, related_name='child_inherit')
properties = models.ManyToManyField("Property", blank=True, through='FoodProperty') properties = models.ManyToManyField("Property", blank=True, through='FoodProperty')
properties_food_amount = models.IntegerField(default=100, blank=True) properties_food_amount = models.DecimalField(default=100, max_digits=16, decimal_places=2, blank=True)
properties_food_unit = models.ForeignKey(Unit, on_delete=models.PROTECT, blank=True, null=True) properties_food_unit = models.ForeignKey(Unit, on_delete=models.PROTECT, blank=True, null=True)
preferred_unit = models.ForeignKey(Unit, on_delete=models.SET_NULL, null=True, blank=True, default=None, related_name='preferred_unit') preferred_unit = models.ForeignKey(Unit, on_delete=models.SET_NULL, null=True, blank=True, default=None, related_name='preferred_unit')

View File

@ -109,7 +109,7 @@ class CustomDecimalField(serializers.Field):
if data == '': if data == '':
return 0 return 0
try: try:
return float(data.replace(',', '')) return float(data.replace(',', '.'))
except ValueError: except ValueError:
raise ValidationError('A valid number is required') raise ValidationError('A valid number is required')
@ -514,11 +514,13 @@ class SupermarketSerializer(UniqueFieldsMixin, SpacedModelSerializer, OpenDataMo
fields = ('id', 'name', 'description', 'category_to_supermarket', 'open_data_slug') fields = ('id', 'name', 'description', 'category_to_supermarket', 'open_data_slug')
class PropertyTypeSerializer(OpenDataModelMixin): class PropertyTypeSerializer(OpenDataModelMixin, WritableNestedModelSerializer, UniqueFieldsMixin):
id = serializers.IntegerField(required=False)
def create(self, validated_data): def create(self, validated_data):
validated_data['space'] = self.context['request'].space validated_data['space'] = self.context['request'].space
if property_type := PropertyType.objects.filter(Q(name=validated_data['name'])).first(): if property_type := PropertyType.objects.filter(Q(name=validated_data['name'])).filter(space=self.context['request'].space).first():
return property_type return property_type
return super().create(validated_data) return super().create(validated_data)
@ -532,8 +534,6 @@ class PropertySerializer(UniqueFieldsMixin, WritableNestedModelSerializer):
property_type = PropertyTypeSerializer() property_type = PropertyTypeSerializer()
property_amount = CustomDecimalField() property_amount = CustomDecimalField()
# TODO prevent updates
def create(self, validated_data): def create(self, validated_data):
validated_data['space'] = self.context['request'].space validated_data['space'] = self.context['request'].space
return super().create(validated_data) return super().create(validated_data)
@ -541,7 +541,6 @@ class PropertySerializer(UniqueFieldsMixin, WritableNestedModelSerializer):
class Meta: class Meta:
model = Property model = Property
fields = ('id', 'property_amount', 'property_type') fields = ('id', 'property_amount', 'property_type')
read_only_fields = ('id',)
class RecipeSimpleSerializer(WritableNestedModelSerializer): class RecipeSimpleSerializer(WritableNestedModelSerializer):
@ -582,6 +581,7 @@ class FoodSerializer(UniqueFieldsMixin, WritableNestedModelSerializer, ExtendedR
properties = PropertySerializer(many=True, allow_null=True, required=False) properties = PropertySerializer(many=True, allow_null=True, required=False)
properties_food_unit = UnitSerializer(allow_null=True, required=False) properties_food_unit = UnitSerializer(allow_null=True, required=False)
properties_food_amount = CustomDecimalField(required=False)
recipe_filter = 'steps__ingredients__food' recipe_filter = 'steps__ingredients__food'
images = ['recipe__image'] images = ['recipe__image']
@ -649,8 +649,15 @@ class FoodSerializer(UniqueFieldsMixin, WritableNestedModelSerializer, ExtendedR
if properties_food_unit := validated_data.pop('properties_food_unit', None): if properties_food_unit := validated_data.pop('properties_food_unit', None):
properties_food_unit = Unit.objects.filter(name=properties_food_unit['name']).first() properties_food_unit = Unit.objects.filter(name=properties_food_unit['name']).first()
properties = validated_data.pop('properties', None)
obj, created = Food.objects.get_or_create(name=name, plural_name=plural_name, space=space, properties_food_unit=properties_food_unit, obj, created = Food.objects.get_or_create(name=name, plural_name=plural_name, space=space, properties_food_unit=properties_food_unit,
defaults=validated_data) defaults=validated_data)
if properties and len(properties) > 0:
for p in properties:
obj.properties.add(Property.objects.create(property_type_id=p['property_type']['id'], property_amount=p['property_amount'], space=space))
return obj return obj
def update(self, instance, validated_data): def update(self, instance, validated_data):

View File

@ -73,7 +73,7 @@
</head> </head>
<body> <body>
<nav class="navbar navbar-expand-lg navbar-dark bg-{% nav_color request %}" <nav class="navbar navbar-expand-lg {% nav_color request %}"
id="id_main_nav" id="id_main_nav"
style="{% sticky_nav request %}"> style="{% sticky_nav request %}">

View File

@ -27,7 +27,11 @@ def theme_url(request):
def nav_color(request): def nav_color(request):
if not request.user.is_authenticated: if not request.user.is_authenticated:
return 'primary' return 'primary'
return request.user.userpreference.nav_color.lower()
if request.user.userpreference.nav_color.lower() in ['light', 'warning', 'info', 'success']:
return f'navbar-light bg-{request.user.userpreference.nav_color.lower()}'
else:
return f'navbar-dark bg-{request.user.userpreference.nav_color.lower()}'
@register.simple_tag @register.simple_tag

View File

@ -1308,8 +1308,12 @@ def recipe_from_source(request):
}, status=status.HTTP_400_BAD_REQUEST) }, status=status.HTTP_400_BAD_REQUEST)
else: else:
try: try:
json.loads(data) data_json = json.loads(data)
data = "<script type='application/ld+json'>" + data + "</script>" if '@context' not in data_json:
data_json['@context'] = 'https://schema.org'
if '@type' not in data_json:
data_json['@type'] = 'Recipe'
data = "<script type='application/ld+json'>" + json.dumps(data_json) + "</script>"
except JSONDecodeError: except JSONDecodeError:
pass pass
scrape = text_scraper(text=data, url=url) scrape = text_scraper(text=data, url=url)

View File

@ -0,0 +1,131 @@
!!! info "Community Contributed"
This guide was contributed by the community and is neither officially supported, nor updated or tested.
This guide is to assist those installing Tandoor Recipes on Truenas Core using Docker and or Portainer
Docker install instructions adapted from [PhasedLogix IT Services's guide](https://getmethegeek.com/blog/2021-01-07-add-docker-capabilities-to-truenas-core/). Portainer install instructions adopted from the [Portainer Official Documentation](https://docs.portainer.io/start/install-ce/server/docker/linux). Tandoor installation on Portainer provided by users `Szeraax` and `TransatlanticFoe` on Discord (Thank you two!)
## **Instructions**
Basic guide to setup Docker and Portainer TrueNAS Core.
### 1. Login to TrueNAS through your browser
- Go to the Virtual Machines Menu
![Screenshot of TrueNAS VM Menu[(https://d33wubrfki0l68.cloudfront.net/e5bc016268e41fadea77fd91a35c40d52280d221/c9daf/images/blog/truenasvmpage.png)
- Click Add to add a new virtual machine. You will want the following settings:
-Guest operating system: Linux
-Name: UBUDocker (or whatever you want it to be)
-System Clock: Local
-Boot method: UEFI
-Shutdown time: 90
-Start on boot enabled
-Enable VNC enabled
![Screenshot of Add VM Menu](https://d33wubrfki0l68.cloudfront.net/d366b2c17d8e8515c9b266ff5451d2b35413cca3/1e0fa/images/blog/vmsetupscreen.png)
- Click next to dedicate resources to the VM (see below image of authors setup, you may need to change resources to fit your needs)
![Screenshot of Suggested VM resources](https://d33wubrfki0l68.cloudfront.net/b96ec49a4ba0c3a5577d5f22275e31d7dbdebe52/81017/images/blog/dockerresourcesetup.png)
- Hit next to go to disk setup
-You want to create a new disk, here are the settings you should use
-Disk Type: AHCI
-Zvol location: tank/vm (Or wherever you have your VM memory located at)
-Size: Atleast 30 gigs
![Screenshot of Disk Setup](https://d33wubrfki0l68.cloudfront.net/adb782ea4ec5531710e69bfefde641927ebdce00/a8cde/images/blog/dockerdisksetup.png)
-Hit next to go to network interface (The defaults are fine but make sure you select the right network adapter)
-Hit next to go to installation
-Navigate to your ubuntu ISO file (The original author and this author used Ubuntu Server. This OS uses less resources than some other OS's and can be ran Headless with either VNC or SSH access. You can use other OS's, but this guide was written with Ubuntu Server)
-Hit next, then submit, you have made the virtual machine!
-Open the virtual machine then hit VNC to open ubuntu
![Screenshot of VM Options](https://d33wubrfki0l68.cloudfront.net/93d874e9630735f8a8d851a220b0411446149c6a/5deb3/images/blog/docketvmpage.png)
-Once its up choose your language and go through the installer
-Once you are done with the setup we want to SSH into the ubuntu VM to setup docker
-Open powershell and type SSH "user"@(ip) (replace "user" with the user you setup in the OS installation)
-Enter your Password if requested
-Close the VNC Console
-Go back into the SSH console and get ready to type some commands. Type these commands in order:
`sudo apt update`
`sudo apt install apt-transport-https ca-certificates curl software-properties-common`
`y` (If prompted with a question)
`curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -`
`sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu focal stable"`
`sudo apt update`
`apt-cache policy docker-ce`
-To make it so you dont have to use sudo for every docker command run this command
`sudo usermod -aG docker ${USER}`
`su - ${USER}`
### 2. Install Portainer
!!! Note: By default, Portainer Server will expose the UI over port 9443 and expose a TCP tunnel server over port 8000. The latter is optional and is only required if you plan to use the Edge compute features with Edge agents.
-First, create the volume that Portainer Server will use to store its database:
`docker volume create portainer_data`
-Then, download and install the Portainer Server container:
`docker run -d -p 8000:8000 -p 9443:9443 --name portainer --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer-ce:latest`
-Portainer Server has now been installed. You can check to see whether the Portainer Server container has started by running `docker ps`
-Now that the installation is complete, you can log into your Portainer Server instance by opening a web browser and going to:
`https://localhost:9443`
-Replace `localhost` with the relevant IP address or FQDN if needed, and adjust the port if you changed it earlier.
-You will be presented with the initial setup page for Portainer Server.
-Create your first user
-Your first user will be an administrator. The username defaults to admin but you can change it if you prefer. The password must be at least 12 characters long and meet the listed password requirements.
-Connect Portainer to your environments.
-Once the admin user has been created, the "Environment Wizard" will automatically launch. The wizard will help get you started with Portainer.
-Select "Get Started" to use the Enviroment Portainer is running in
![Screenshot of Enviroment Wizard](https://2914113074-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FiZWHJxqQsgWYd9sI88sO%2Fuploads%2Fsig45vFliINvOKGKVStk%2F2.15-install-server-setup-wizard.png?alt=media&token=cd21d9e8-0632-40db-af9a-581365f98209)
### 3. Install Tandoor Recipies VIA Portainer Web Editor
-From the menu select Stacks, click Add stack, give the stack a descriptive name then select Web editor.
![Screenshot of Stack List](https://2914113074-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FiZWHJxqQsgWYd9sI88sO%2Fuploads%2FnBx62EIPhmUy1L0S1iKI%2F2.15-docker_add_stack_web_editor.gif?alt=media&token=c45c0151-9c15-4d79-b229-1a90a7a86b84)
-Use the below code and input it into the Web Editor:
`version: "3"
services:
db_recipes:
restart: always
image: postgres:11-alpine
volumes:
- ./postgresql:/var/lib/postgresql/data
env_file:
- stack.env
web_recipes:
# image: vabene1111/recipes:latest
image: vabene1111/recipes:beta
env_file:
- stack.env
volumes:
- staticfiles:/opt/recipes/staticfiles
- nginx_config:/opt/recipes/nginx/conf.d
- ./mediafiles:/opt/recipes/mediafiles
depends_on:
- db_recipes
nginx_recipes:
image: nginx:mainline-alpine
restart: always
ports:
- 12008:80
env_file:
- stack.env
depends_on:
- web_recipes
volumes:
- nginx_config:/etc/nginx/conf.d:ro
- staticfiles:/static
- ./mediafiles:/media
volumes:
nginx_config:
staticfiles:`
-Download the .env template from [HERE](https://raw.githubusercontent.com/vabene1111/recipes/develop/.env.template) and load this file by pressing the "Load Variables from .env File" button:
![Screenshot of Add Stack screen](https://www.portainer.io/hubfs/image-png-Feb-21-2022-06-21-15-88-PM.png)
-You will need to change the following variables:
-`SECRET_KEY` needs to be replaced with a new key. This can be generated from websites like [Djecrety](https://djecrety.ir/)
-`TIMEZONE` needs to be replaced with the appropriate code for your timezone. Accepted values can be found at [TimezoneDB](https://timezonedb.com/time-zones)
-`POSTGRES_USER` and `POSTGRES_PASSWORD` needs to be replaced with your username and password from [PostgreSQL](https://www.postgresql.org/) !!!NOTE Do not sign in using social media. You need to sign up using Email and Password.
-After those veriables are changed, you may press the `Deploy the Stack` button at the bottom of the page. This will create the needed containers to run Tandoor Recipes.
### 4. Login and Setup your new server!
- You need to access your Tandoor Server through its Webpage: `https://localhost:xxxx` replacing `localhost` with the IP of the VM running Docker and `xxxx` with the port you chose in the Web Editor for `nginx_recipes` above. In this case, `12008`.
!!! While the containers are starting and doing whatever they need to do, you might still get HTTP errors e.g. 500 or 502. Just be patient and try again in a moment
-You will now need to set up the Tandoor Server through the WebGUI.

View File

@ -33,6 +33,7 @@ nav:
- Synology: install/synology.md - Synology: install/synology.md
- Kubernetes: install/kubernetes.md - Kubernetes: install/kubernetes.md
- KubeSail or PiBox: install/kubesail.md - KubeSail or PiBox: install/kubesail.md
- TrueNAS Portainer: install/truenas_portainer.md
- WSL: install/wsl.md - WSL: install/wsl.md
- Manual: install/manual.md - Manual: install/manual.md
- Other setups: install/other.md - Other setups: install/other.md

View File

@ -2,7 +2,7 @@
<div> <div>
<div class="card p-4 pb-2" v-if="recipe !== undefined"> <div class="card p-4 pb-2" v-if="recipe !== undefined && property_list.length > 0">
<b-row> <b-row>
<b-col> <b-col>
<h5><i class="fas fa-database"></i> {{ $t('Properties') }}</h5> <h5><i class="fas fa-database"></i> {{ $t('Properties') }}</h5>

501
vue/src/locales/el.json Normal file
View File

@ -0,0 +1,501 @@
{
"warning_feature_beta": "Αυτή η λειτουργία βρίσκεται αυτήν τη στιγμή σε κατάσταση BETA (δοκιμαστική). Παρακαλούμε να αναμένετε σφάλματα και πιθανές αλλαγές που μπορεί να προκαλέσουν απώλεια δεδομένων που σχετίζονται με τις διάφορες λειτουργίες στο μέλλον.",
"err_fetching_resource": "",
"err_creating_resource": "",
"err_updating_resource": "",
"err_deleting_resource": "",
"err_deleting_protected_resource": "",
"err_moving_resource": "",
"err_merging_resource": "",
"success_fetching_resource": "",
"success_creating_resource": "",
"success_updating_resource": "",
"success_deleting_resource": "",
"success_moving_resource": "",
"success_merging_resource": "",
"file_upload_disabled": "",
"recipe_property_info": "",
"warning_space_delete": "",
"food_inherit_info": "",
"facet_count_info": "",
"step_time_minutes": "",
"confirm_delete": "",
"import_running": "",
"all_fields_optional": "",
"convert_internal": "",
"show_only_internal": "",
"show_split_screen": "",
"Log_Recipe_Cooking": "",
"External_Recipe_Image": "",
"Add_to_Shopping": "",
"Add_to_Plan": "",
"Step_start_time": "",
"Sort_by_new": "",
"Table_of_Contents": "",
"Recipes_per_page": "",
"Show_as_header": "",
"Hide_as_header": "",
"Add_nutrition_recipe": "",
"Remove_nutrition_recipe": "",
"Copy_template_reference": "",
"per_serving": "",
"Save_and_View": "",
"Manage_Books": "",
"Meal_Plan": "",
"Select_Book": "",
"Select_File": "",
"Recipe_Image": "",
"Import_finished": "",
"View_Recipes": "",
"Log_Cooking": "",
"New_Recipe": "",
"Url_Import": "",
"Reset_Search": "",
"Recently_Viewed": "",
"Load_More": "",
"New_Keyword": "",
"Delete_Keyword": "",
"Edit_Keyword": "",
"Edit_Recipe": "",
"Move_Keyword": "",
"Merge_Keyword": "",
"Hide_Keywords": "",
"Hide_Recipes": "",
"Move_Up": "",
"Move_Down": "",
"Step_Name": "",
"Step_Type": "",
"Make_Header": "",
"Make_Ingredient": "",
"Amount": "",
"Enable_Amount": "",
"Disable_Amount": "",
"Ingredient Editor": "",
"Description_Replace": "",
"Instruction_Replace": "",
"Auto_Sort": "",
"Auto_Sort_Help": "",
"Private_Recipe": "",
"Private_Recipe_Help": "",
"reusable_help_text": "",
"open_data_help_text": "",
"Open_Data_Slug": "",
"Open_Data_Import": "",
"Data_Import_Info": "",
"Update_Existing_Data": "",
"Use_Metric": "",
"Learn_More": "",
"converted_unit": "",
"converted_amount": "",
"base_unit": "",
"base_amount": "",
"Datatype": "",
"Number of Objects": "",
"Add_Step": "",
"Keywords": "Λέξεις κλειδιά",
"Books": "Βιβλία",
"Proteins": "",
"Fats": "",
"Carbohydrates": "",
"Calories": "",
"Energy": "",
"Nutrition": "",
"Date": "",
"Share": "",
"Automation": "",
"Parameter": "",
"Export": "",
"Copy": "",
"Rating": "",
"Close": "",
"Cancel": "",
"Link": "",
"Add": "",
"New": "",
"Note": "",
"Success": "",
"Failure": "",
"Protected": "",
"Ingredients": "",
"Supermarket": "",
"Categories": "",
"Category": "",
"Selected": "",
"min": "",
"Servings": "Μερίδες",
"Waiting": "",
"Preparation": "",
"External": "",
"Size": "",
"Files": "",
"File": "",
"Edit": "",
"Image": "",
"Delete": "",
"Open": "",
"Ok": "",
"Save": "",
"Step": "",
"Search": "",
"Import": "",
"Print": "",
"Settings": "Ρυθμίσεις",
"or": "",
"and": "",
"Information": "",
"Download": "",
"Create": "",
"Search Settings": "",
"View": "",
"Recipes": "",
"Move": "",
"Merge": "",
"Parent": "",
"Copy Link": "",
"Copy Token": "",
"delete_confirmation": "",
"move_confirmation": "",
"merge_confirmation": "",
"create_rule": "",
"move_selection": "",
"merge_selection": "",
"Root": "",
"Ignore_Shopping": "",
"Shopping_Category": "",
"Shopping_Categories": "",
"Edit_Food": "",
"Move_Food": "",
"New_Food": "",
"Hide_Food": "",
"Food_Alias": "",
"Unit_Alias": "",
"Keyword_Alias": "",
"Delete_Food": "",
"No_ID": "",
"Meal_Plan_Days": "",
"merge_title": "",
"move_title": "",
"Food": "Φαγητό",
"Property": "",
"Conversion": "",
"Original_Text": "",
"Recipe_Book": "",
"del_confirmation_tree": "",
"delete_title": "",
"create_title": "",
"edit_title": "",
"Name": "",
"Properties": "",
"Type": "",
"Description": "",
"Recipe": "",
"tree_root": "",
"Icon": "",
"Unit": "",
"Decimals": "",
"Default_Unit": "",
"No_Results": "",
"New_Unit": "",
"Create_New_Shopping Category": "",
"Create_New_Food": "",
"Create_New_Keyword": "",
"Create_New_Unit": "",
"Create_New_Meal_Type": "",
"Create_New_Shopping_Category": "",
"and_up": "",
"and_down": "",
"Instructions": "",
"Unrated": "",
"Automate": "",
"Empty": "",
"Key_Ctrl": "",
"Key_Shift": "",
"Time": "",
"Text": "",
"Shopping_list": "",
"Added_by": "",
"Added_on": "",
"AddToShopping": "",
"IngredientInShopping": "",
"NotInShopping": "",
"OnHand": "",
"FoodOnHand": "",
"FoodNotOnHand": "",
"Undefined": "",
"Create_Meal_Plan_Entry": "",
"Edit_Meal_Plan_Entry": "",
"Title": "",
"Week": "",
"Month": "",
"Year": "",
"Planner": "",
"Planner_Settings": "",
"Period": "",
"Plan_Period_To_Show": "",
"Periods": "",
"Plan_Show_How_Many_Periods": "",
"Starting_Day": "",
"Meal_Types": "",
"Meal_Type": "",
"New_Entry": "",
"Clone": "",
"Drag_Here_To_Delete": "",
"Meal_Type_Required": "",
"Title_or_Recipe_Required": "",
"Color": "",
"New_Meal_Type": "",
"Use_Fractions": "",
"Use_Fractions_Help": "",
"AddFoodToShopping": "",
"RemoveFoodFromShopping": "",
"DeleteShoppingConfirm": "",
"IgnoredFood": "",
"Add_Servings_to_Shopping": "",
"Week_Numbers": "",
"Show_Week_Numbers": "",
"Export_As_ICal": "",
"Export_To_ICal": "",
"Cannot_Add_Notes_To_Shopping": "",
"Added_To_Shopping_List": "",
"Shopping_List_Empty": "",
"Next_Period": "",
"Previous_Period": "",
"Current_Period": "",
"Next_Day": "",
"Previous_Day": "",
"Inherit": "",
"InheritFields": "",
"FoodInherit": "",
"ShowUncategorizedFood": "",
"GroupBy": "",
"Language": "",
"Theme": "",
"SupermarketCategoriesOnly": "",
"MoveCategory": "",
"CountMore": "",
"IgnoreThis": "",
"DelayFor": "",
"Warning": "",
"NoCategory": "",
"InheritWarning": "",
"ShowDelayed": "",
"Completed": "",
"OfflineAlert": "",
"shopping_share": "",
"shopping_auto_sync": "",
"one_url_per_line": "",
"mealplan_autoadd_shopping": "",
"mealplan_autoexclude_onhand": "",
"mealplan_autoinclude_related": "",
"default_delay": "",
"plan_share_desc": "",
"shopping_share_desc": "",
"shopping_auto_sync_desc": "",
"mealplan_autoadd_shopping_desc": "",
"mealplan_autoexclude_onhand_desc": "",
"mealplan_autoinclude_related_desc": "",
"default_delay_desc": "",
"filter_to_supermarket": "",
"Coming_Soon": "",
"Auto_Planner": "",
"New_Cookbook": "",
"Hide_Keyword": "",
"Hour": "",
"Hours": "",
"Day": "",
"Days": "",
"Second": "",
"Seconds": "",
"Clear": "",
"Users": "",
"Invites": "",
"err_move_self": "",
"nothing": "",
"err_merge_self": "",
"show_sql": "",
"filter_to_supermarket_desc": "",
"CategoryName": "",
"SupermarketName": "",
"CategoryInstruction": "",
"shopping_recent_days_desc": "",
"shopping_recent_days": "",
"download_pdf": "",
"download_csv": "",
"csv_delim_help": "",
"csv_delim_label": "",
"SuccessClipboard": "",
"copy_to_clipboard": "",
"csv_prefix_help": "",
"csv_prefix_label": "",
"copy_markdown_table": "",
"in_shopping": "",
"DelayUntil": "",
"Pin": "",
"Unpin": "",
"PinnedConfirmation": "",
"UnpinnedConfirmation": "",
"mark_complete": "",
"QuickEntry": "",
"shopping_add_onhand_desc": "",
"shopping_add_onhand": "",
"related_recipes": "",
"today_recipes": "",
"sql_debug": "",
"remember_search": "",
"remember_hours": "",
"tree_select": "",
"OnHand_help": "",
"ignore_shopping_help": "",
"shopping_category_help": "",
"food_recipe_help": "",
"Foods": "",
"Account": "",
"Cosmetic": "",
"API": "",
"enable_expert": "",
"expert_mode": "",
"simple_mode": "",
"advanced": "",
"fields": "",
"show_keywords": "",
"show_foods": "",
"show_books": "",
"show_rating": "",
"show_units": "",
"show_filters": "",
"not": "",
"save_filter": "",
"filter_name": "",
"left_handed": "",
"left_handed_help": "",
"Custom Filter": "",
"shared_with": "",
"sort_by": "",
"asc": "",
"desc": "",
"date_viewed": "",
"last_cooked": "",
"times_cooked": "",
"date_created": "",
"show_sortby": "",
"search_rank": "",
"make_now": "",
"recipe_filter": "",
"book_filter_help": "",
"review_shopping": "",
"view_recipe": "",
"copy_to_new": "",
"recipe_name": "",
"paste_ingredients_placeholder": "",
"paste_ingredients": "",
"ingredient_list": "",
"explain": "",
"filter": "",
"Website": "",
"App": "",
"Message": "",
"Bookmarklet": "",
"Sticky_Nav": "",
"Sticky_Nav_Help": "",
"Nav_Color": "",
"Nav_Color_Help": "",
"Use_Kj": "",
"Comments_setting": "",
"click_image_import": "",
"no_more_images_found": "",
"import_duplicates": "",
"paste_json": "",
"Click_To_Edit": "",
"search_no_recipes": "",
"search_import_help_text": "",
"search_create_help_text": "",
"warning_duplicate_filter": "",
"reset_children": "",
"reset_children_help": "",
"reset_food_inheritance": "",
"reset_food_inheritance_info": "",
"substitute_help": "",
"substitute_siblings_help": "",
"substitute_children_help": "",
"substitute_siblings": "",
"substitute_children": "",
"SubstituteOnHand": "",
"ChildInheritFields": "",
"ChildInheritFields_help": "",
"InheritFields_help": "",
"show_ingredient_overview": "",
"Ingredient Overview": "",
"last_viewed": "",
"created_on": "",
"updatedon": "",
"Imported_From": "",
"advanced_search_settings": "",
"nothing_planned_today": "",
"no_pinned_recipes": "",
"Planned": "",
"Pinned": "",
"Imported": "",
"Quick actions": "",
"Ratings": "",
"Internal": "",
"Units": "",
"Manage_Emails": "",
"Change_Password": "",
"Social_Authentication": "",
"Random Recipes": "",
"parameter_count": "",
"select_keyword": "",
"add_keyword": "",
"select_file": "",
"select_recipe": "",
"select_unit": "",
"select_food": "",
"remove_selection": "",
"empty_list": "",
"Select": "",
"Supermarkets": "",
"User": "",
"Username": "",
"First_name": "",
"Last_name": "",
"Keyword": "Λέξη κλειδί",
"Advanced": "",
"Page": "",
"Single": "",
"Multiple": "",
"Reset": "",
"Disabled": "",
"Disable": "",
"Options": "",
"Create Food": "",
"create_food_desc": "",
"additional_options": "",
"Importer_Help": "",
"Documentation": "",
"Select_App_To_Import": "",
"Import_Supported": "",
"Export_Supported": "",
"Import_Not_Yet_Supported": "",
"Export_Not_Yet_Supported": "",
"Import_Result_Info": "",
"Recipes_In_Import": "",
"Toggle": "",
"total": "",
"Import_Error": "",
"Warning_Delete_Supermarket_Category": "",
"New_Supermarket": "",
"New_Supermarket_Category": "",
"Are_You_Sure": "",
"Valid Until": "",
"Split_All_Steps": "",
"Combine_All_Steps": "",
"Plural": "",
"plural_short": "",
"Use_Plural_Unit_Always": "",
"Use_Plural_Unit_Simple": "",
"Use_Plural_Food_Always": "",
"Use_Plural_Food_Simple": "",
"plural_usage_info": "",
"Create Recipe": "",
"Import Recipe": ""
}

View File

@ -471,10 +471,10 @@ export interface Food {
properties?: Array<FoodProperties> | null; properties?: Array<FoodProperties> | null;
/** /**
* *
* @type {number} * @type {string}
* @memberof Food * @memberof Food
*/ */
properties_food_amount?: number; properties_food_amount: string;
/** /**
* *
* @type {FoodPropertiesFoodUnit} * @type {FoodPropertiesFoodUnit}
@ -1112,10 +1112,10 @@ export interface IngredientFood {
properties?: Array<FoodProperties> | null; properties?: Array<FoodProperties> | null;
/** /**
* *
* @type {number} * @type {string}
* @memberof IngredientFood * @memberof IngredientFood
*/ */
properties_food_amount?: number; properties_food_amount: string;
/** /**
* *
* @type {FoodPropertiesFoodUnit} * @type {FoodPropertiesFoodUnit}