Merge branch 'develop' into feature/vue3

This commit is contained in:
vabene1111
2024-03-15 19:11:24 +01:00
121 changed files with 40153 additions and 27126 deletions

18
.vscode/launch.json vendored
View File

@@ -13,6 +13,22 @@
"args": ["runserver"],
"django": true,
"justMyCode": true
}
},
{
"name": "Python: Debug Tests",
"type": "debugpy",
"request": "launch",
"program": "${file}",
"purpose": [
"debug-test"
],
"console": "integratedTerminal",
"env": {
"//comment": "coverage and pytest can't both be running at the same time",
"PYTEST_ADDOPTS": "--no-cov -n 2"
},
"django": true,
"justMyCode": true
},
]
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -1,88 +1,88 @@
from datetime import datetime, timedelta
import pytest
from django.contrib import auth
from django.urls import reverse
from icalendar import Calendar
from cookbook.models import MealPlan, MealType
BOUND_URL = 'api_get_plan_ical'
FROM_URL = 'api_get_plan_ical_from'
FUTURE_URL = 'api_get_plan_ical_future'
@pytest.fixture()
def meal_type(space_1, u1_s1):
return MealType.objects.get_or_create(name='test', space=space_1, created_by=auth.get_user(u1_s1))[0]
@pytest.fixture()
def obj_1(space_1, recipe_1_s1, meal_type, u1_s1):
return MealPlan.objects.create(recipe=recipe_1_s1, space=space_1, meal_type=meal_type, from_date=datetime.now(), to_date=datetime.now(),
created_by=auth.get_user(u1_s1))
@pytest.fixture
def obj_2(space_1, recipe_1_s1, meal_type, u1_s1):
return MealPlan.objects.create(recipe=recipe_1_s1, space=space_1, meal_type=meal_type, from_date=datetime.now()+timedelta(days=30), to_date=datetime.now()+timedelta(days=30),
created_by=auth.get_user(u1_s1))
@pytest.fixture
def obj_3(space_1, recipe_1_s1, meal_type, u1_s1):
return MealPlan.objects.create(recipe=recipe_1_s1, space=space_1, meal_type=meal_type, from_date=datetime.now()+timedelta(days=-30), to_date=datetime.now()+timedelta(days=-1),
created_by=auth.get_user(u1_s1))
@pytest.mark.parametrize("arg", [
['a_u', 403],
['g1_s1', 403],
['u1_s1', 200],
['a1_s1', 200],
])
def test_permissions(arg, request):
c = request.getfixturevalue(arg[0])
assert c.get(reverse(FUTURE_URL)).status_code == arg[1]
def test_future(obj_1, obj_2, obj_3, u1_s1):
r = u1_s1.get(reverse(FUTURE_URL))
assert r.status_code == 200
cal = Calendar.from_ical(r.getvalue().decode('UTF-8'))
events = cal.walk('VEVENT')
assert len(events) == 2
def test_from(obj_1, obj_2, obj_3, u1_s1):
from_date_slug = (datetime.now()+timedelta(days=1)).strftime("%Y-%m-%d")
r = u1_s1.get(reverse(FROM_URL, kwargs={'from_date': from_date_slug}))
assert r.status_code == 200
cal = Calendar.from_ical(r.getvalue().decode('UTF-8'))
events = cal.walk('VEVENT')
assert len(events) == 1
def test_bound(obj_1, obj_2, obj_3, u1_s1):
from_date_slug = (datetime.now()+timedelta(days=-1)).strftime("%Y-%m-%d")
to_date_slug = (datetime.now()+timedelta(days=1)).strftime("%Y-%m-%d")
r = u1_s1.get(reverse(BOUND_URL, kwargs={'from_date': from_date_slug, 'to_date': to_date_slug}))
assert r.status_code == 200
cal = Calendar.from_ical(r.getvalue().decode('UTF-8'))
events = cal.walk('VEVENT')
assert len(events) == 1
def test_event(obj_1, u1_s1):
from_date_slug = (datetime.now()+timedelta(days=-1)).strftime("%Y-%m-%d")
to_date_slug = (datetime.now()+timedelta(days=1)).strftime("%Y-%m-%d")
r = u1_s1.get(reverse(BOUND_URL, kwargs={'from_date': from_date_slug, 'to_date': to_date_slug}))
cal = Calendar.from_ical(r.getvalue().decode('UTF-8'))
events = cal.walk('VEVENT')
assert len(events) == 1
event = events[0]
assert int(event['uid']) == obj_1.id
assert event['summary'] == f'{obj_1.meal_type.name}: {obj_1.get_label()}'
assert event['description'] == obj_1.note
assert event.decoded('dtstart') == datetime.now().date()
assert event.decoded('dtend') == datetime.now().date()
# from datetime import datetime, timedelta
#
# import pytest
# from django.contrib import auth
# from django.urls import reverse
# from icalendar import Calendar
#
# from cookbook.models import MealPlan, MealType
#
# BOUND_URL = 'api_get_plan_ical'
# FROM_URL = 'api_get_plan_ical'
# FUTURE_URL = 'api_get_plan_ical'
#
#
# @pytest.fixture()
# def meal_type(space_1, u1_s1):
# return MealType.objects.get_or_create(name='test', space=space_1, created_by=auth.get_user(u1_s1))[0]
#
#
# @pytest.fixture()
# def obj_1(space_1, recipe_1_s1, meal_type, u1_s1):
# return MealPlan.objects.create(recipe=recipe_1_s1, space=space_1, meal_type=meal_type, from_date=datetime.now(), to_date=datetime.now(),
# created_by=auth.get_user(u1_s1))
#
#
# @pytest.fixture
# def obj_2(space_1, recipe_1_s1, meal_type, u1_s1):
# return MealPlan.objects.create(recipe=recipe_1_s1, space=space_1, meal_type=meal_type, from_date=datetime.now()+timedelta(days=30), to_date=datetime.now()+timedelta(days=30),
# created_by=auth.get_user(u1_s1))
#
# @pytest.fixture
# def obj_3(space_1, recipe_1_s1, meal_type, u1_s1):
# return MealPlan.objects.create(recipe=recipe_1_s1, space=space_1, meal_type=meal_type, from_date=datetime.now()+timedelta(days=-30), to_date=datetime.now()+timedelta(days=-1),
# created_by=auth.get_user(u1_s1))
#
#
# @pytest.mark.parametrize("arg", [
# ['a_u', 403],
# ['g1_s1', 403],
# ['u1_s1', 200],
# ['a1_s1', 200],
# ])
# def test_permissions(arg, request):
# c = request.getfixturevalue(arg[0])
# assert c.get(reverse(FUTURE_URL)).status_code == arg[1]
#
# def test_future(obj_1, obj_2, obj_3, u1_s1):
# r = u1_s1.get(reverse(FUTURE_URL))
# assert r.status_code == 200
#
# cal = Calendar.from_ical(r.getvalue().decode('UTF-8'))
# events = cal.walk('VEVENT')
# assert len(events) == 2
#
# def test_from(obj_1, obj_2, obj_3, u1_s1):
# from_date_slug = (datetime.now()+timedelta(days=1)).strftime("%Y-%m-%d")
# r = u1_s1.get(reverse(FROM_URL, kwargs={'from_date': from_date_slug}))
# assert r.status_code == 200
#
# cal = Calendar.from_ical(r.getvalue().decode('UTF-8'))
# events = cal.walk('VEVENT')
# assert len(events) == 1
#
# def test_bound(obj_1, obj_2, obj_3, u1_s1):
# from_date_slug = (datetime.now()+timedelta(days=-1)).strftime("%Y-%m-%d")
# to_date_slug = (datetime.now()+timedelta(days=1)).strftime("%Y-%m-%d")
# r = u1_s1.get(reverse(BOUND_URL, kwargs={'from_date': from_date_slug, 'to_date': to_date_slug}))
# assert r.status_code == 200
#
# cal = Calendar.from_ical(r.getvalue().decode('UTF-8'))
# events = cal.walk('VEVENT')
# assert len(events) == 1
#
# def test_event(obj_1, u1_s1):
# from_date_slug = (datetime.now()+timedelta(days=-1)).strftime("%Y-%m-%d")
# to_date_slug = (datetime.now()+timedelta(days=1)).strftime("%Y-%m-%d")
# r = u1_s1.get(reverse(BOUND_URL, kwargs={'from_date': from_date_slug, 'to_date': to_date_slug}))
#
# cal = Calendar.from_ical(r.getvalue().decode('UTF-8'))
# events = cal.walk('VEVENT')
# assert len(events) == 1
#
# event = events[0]
# assert int(event['uid']) == obj_1.id
# assert event['summary'] == f'{obj_1.meal_type.name}: {obj_1.get_label()}'
# assert event['description'] == obj_1.note
# assert event.decoded('dtstart') == datetime.now().date()
# assert event.decoded('dtend') == datetime.now().date()

View File

@@ -123,7 +123,7 @@ urlpatterns = [
path('api/sync_all/', api.sync_all, name='api_sync'),
path('api/log_cooking/<int:recipe_id>/', api.log_cooking, name='api_log_cooking'),
path('api/plan-ical/', api.get_plan_ical, kwargs={'from_date': datetime.date.today(), 'to_date': None}, name='api_get_plan_ical_future'),
path('api/plan-ical/<slug:from_date>/<slug:to_date>/', api.get_plan_ical, name='api_get_plan_ical'),
path('api/recipe-from-source/', api.RecipeUrlImportView.as_view(), name='api_recipe_from_source'),
path('api/backup/', api.get_backup, name='api_backup'),

32
make_compile_messages.py Normal file
View File

@@ -0,0 +1,32 @@
import os
def detect_languages(folder_path):
languages = []
for root, dirs, files in os.walk(folder_path):
for dir in dirs:
languages.append(dir)
return languages
def call_makemessages(languages):
command = "python manage.py makemessages -i venv -i staticfiles -i static -i vue -i vue3 "
for lang in languages:
command += f"-l {lang} "
os.system(command)
def call_compilemessages():
os.system('python manage.py compilemessages -i venv -i staticfiles -i static -i vue -i vue3')
if __name__ == "__main__":
# Specify the path to the folder containing language directories
folder_path = "cookbook/locale"
# Detect languages in the folder
languages = detect_languages(folder_path)
# Call makemessages for each language
call_makemessages(languages)
call_compilemessages()

View File

@@ -1,2 +0,0 @@
CALL venv\Scripts\activate.bat
python manage.py makemessages -i venv -i staticfiles -i static -i vue -l ca -l de -l en -l es -l fr -l hu_HU -l it -l lv -l nl -l pt -l rn -l tr -l zh_CN

Binary file not shown.

View File

@@ -0,0 +1,125 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-03-10 07:18+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:58
msgid ""
"You do not have the required permissions to view this page! You need to have "
"the following modules licensed: "
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:76
msgid "You are not logged in and therefore cannot view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:79
msgid "You do not have the required modules to view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:90
msgid "You do not have the required module to view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Recipe"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Recipe Keyword"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Meal Plan"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Shopping"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Book"
msgstr ""
#: .\recipes\settings.py:402
msgid "Armenian "
msgstr ""
#: .\recipes\settings.py:402
msgid "Bulgarian"
msgstr ""
#: .\recipes\settings.py:402
msgid "Catalan"
msgstr ""
#: .\recipes\settings.py:402
msgid "Czech"
msgstr ""
#: .\recipes\settings.py:402
msgid "Danish"
msgstr ""
#: .\recipes\settings.py:402
msgid "Dutch"
msgstr ""
#: .\recipes\settings.py:402
msgid "English"
msgstr ""
#: .\recipes\settings.py:403
msgid "French"
msgstr ""
#: .\recipes\settings.py:403
msgid "German"
msgstr ""
#: .\recipes\settings.py:403
msgid "Hungarian"
msgstr ""
#: .\recipes\settings.py:403
msgid "Italian"
msgstr ""
#: .\recipes\settings.py:403
msgid "Latvian"
msgstr ""
#: .\recipes\settings.py:403
msgid "Norwegian "
msgstr ""
#: .\recipes\settings.py:403
msgid "Polish"
msgstr ""
#: .\recipes\settings.py:404
msgid "Russian"
msgstr ""
#: .\recipes\settings.py:404
msgid "Spanish"
msgstr ""
#: .\recipes\settings.py:404
msgid "Swedish"
msgstr ""

Binary file not shown.

View File

@@ -0,0 +1,124 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-03-10 07:18+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:58
msgid ""
"You do not have the required permissions to view this page! You need to have "
"the following modules licensed: "
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:76
msgid "You are not logged in and therefore cannot view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:79
msgid "You do not have the required modules to view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:90
msgid "You do not have the required module to view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Recipe"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Recipe Keyword"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Meal Plan"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Shopping"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Book"
msgstr ""
#: .\recipes\settings.py:402
msgid "Armenian "
msgstr ""
#: .\recipes\settings.py:402
msgid "Bulgarian"
msgstr ""
#: .\recipes\settings.py:402
msgid "Catalan"
msgstr ""
#: .\recipes\settings.py:402
msgid "Czech"
msgstr ""
#: .\recipes\settings.py:402
msgid "Danish"
msgstr ""
#: .\recipes\settings.py:402
msgid "Dutch"
msgstr ""
#: .\recipes\settings.py:402
msgid "English"
msgstr ""
#: .\recipes\settings.py:403
msgid "French"
msgstr ""
#: .\recipes\settings.py:403
msgid "German"
msgstr ""
#: .\recipes\settings.py:403
msgid "Hungarian"
msgstr ""
#: .\recipes\settings.py:403
msgid "Italian"
msgstr ""
#: .\recipes\settings.py:403
msgid "Latvian"
msgstr ""
#: .\recipes\settings.py:403
msgid "Norwegian "
msgstr ""
#: .\recipes\settings.py:403
msgid "Polish"
msgstr ""
#: .\recipes\settings.py:404
msgid "Russian"
msgstr ""
#: .\recipes\settings.py:404
msgid "Spanish"
msgstr ""
#: .\recipes\settings.py:404
msgid "Swedish"
msgstr ""

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-04-26 07:46+0200\n"
"POT-Creation-Date: 2024-03-10 07:18+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,66 +18,108 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: .\recipes\settings.py:436
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:58
msgid ""
"You do not have the required permissions to view this page! You need to have "
"the following modules licensed: "
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:76
msgid "You are not logged in and therefore cannot view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:79
msgid "You do not have the required modules to view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:90
msgid "You do not have the required module to view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Recipe"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Recipe Keyword"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Meal Plan"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Shopping"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Book"
msgstr ""
#: .\recipes\settings.py:402
msgid "Armenian "
msgstr ""
#: .\recipes\settings.py:437
#: .\recipes\settings.py:402
msgid "Bulgarian"
msgstr ""
#: .\recipes\settings.py:438
#: .\recipes\settings.py:402
msgid "Catalan"
msgstr ""
#: .\recipes\settings.py:439
#: .\recipes\settings.py:402
msgid "Czech"
msgstr ""
#: .\recipes\settings.py:440
#: .\recipes\settings.py:402
msgid "Danish"
msgstr ""
#: .\recipes\settings.py:441
#: .\recipes\settings.py:402
msgid "Dutch"
msgstr ""
#: .\recipes\settings.py:442
#: .\recipes\settings.py:402
msgid "English"
msgstr ""
#: .\recipes\settings.py:443
#: .\recipes\settings.py:403
msgid "French"
msgstr ""
#: .\recipes\settings.py:444
#: .\recipes\settings.py:403
msgid "German"
msgstr ""
#: .\recipes\settings.py:445
#: .\recipes\settings.py:403
msgid "Hungarian"
msgstr ""
#: .\recipes\settings.py:446
#: .\recipes\settings.py:403
msgid "Italian"
msgstr ""
#: .\recipes\settings.py:447
#: .\recipes\settings.py:403
msgid "Latvian"
msgstr ""
#: .\recipes\settings.py:448
#: .\recipes\settings.py:403
msgid "Norwegian "
msgstr ""
#: .\recipes\settings.py:403
msgid "Polish"
msgstr ""
#: .\recipes\settings.py:449
#: .\recipes\settings.py:404
msgid "Russian"
msgstr ""
#: .\recipes\settings.py:450
#: .\recipes\settings.py:404
msgid "Spanish"
msgstr ""
#: .\recipes\settings.py:451
#: .\recipes\settings.py:404
msgid "Swedish"
msgstr ""

Binary file not shown.

View File

@@ -0,0 +1,125 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-03-10 07:18+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n "
"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:58
msgid ""
"You do not have the required permissions to view this page! You need to have "
"the following modules licensed: "
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:76
msgid "You are not logged in and therefore cannot view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:79
msgid "You do not have the required modules to view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:90
msgid "You do not have the required module to view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Recipe"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Recipe Keyword"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Meal Plan"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Shopping"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Book"
msgstr ""
#: .\recipes\settings.py:402
msgid "Armenian "
msgstr ""
#: .\recipes\settings.py:402
msgid "Bulgarian"
msgstr ""
#: .\recipes\settings.py:402
msgid "Catalan"
msgstr ""
#: .\recipes\settings.py:402
msgid "Czech"
msgstr ""
#: .\recipes\settings.py:402
msgid "Danish"
msgstr ""
#: .\recipes\settings.py:402
msgid "Dutch"
msgstr ""
#: .\recipes\settings.py:402
msgid "English"
msgstr ""
#: .\recipes\settings.py:403
msgid "French"
msgstr ""
#: .\recipes\settings.py:403
msgid "German"
msgstr ""
#: .\recipes\settings.py:403
msgid "Hungarian"
msgstr ""
#: .\recipes\settings.py:403
msgid "Italian"
msgstr ""
#: .\recipes\settings.py:403
msgid "Latvian"
msgstr ""
#: .\recipes\settings.py:403
msgid "Norwegian "
msgstr ""
#: .\recipes\settings.py:403
msgid "Polish"
msgstr ""
#: .\recipes\settings.py:404
msgid "Russian"
msgstr ""
#: .\recipes\settings.py:404
msgid "Spanish"
msgstr ""
#: .\recipes\settings.py:404
msgid "Swedish"
msgstr ""

Binary file not shown.

View File

@@ -0,0 +1,124 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-03-10 07:18+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:58
msgid ""
"You do not have the required permissions to view this page! You need to have "
"the following modules licensed: "
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:76
msgid "You are not logged in and therefore cannot view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:79
msgid "You do not have the required modules to view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:90
msgid "You do not have the required module to view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Recipe"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Recipe Keyword"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Meal Plan"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Shopping"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Book"
msgstr ""
#: .\recipes\settings.py:402
msgid "Armenian "
msgstr ""
#: .\recipes\settings.py:402
msgid "Bulgarian"
msgstr ""
#: .\recipes\settings.py:402
msgid "Catalan"
msgstr ""
#: .\recipes\settings.py:402
msgid "Czech"
msgstr ""
#: .\recipes\settings.py:402
msgid "Danish"
msgstr ""
#: .\recipes\settings.py:402
msgid "Dutch"
msgstr ""
#: .\recipes\settings.py:402
msgid "English"
msgstr ""
#: .\recipes\settings.py:403
msgid "French"
msgstr ""
#: .\recipes\settings.py:403
msgid "German"
msgstr ""
#: .\recipes\settings.py:403
msgid "Hungarian"
msgstr ""
#: .\recipes\settings.py:403
msgid "Italian"
msgstr ""
#: .\recipes\settings.py:403
msgid "Latvian"
msgstr ""
#: .\recipes\settings.py:403
msgid "Norwegian "
msgstr ""
#: .\recipes\settings.py:403
msgid "Polish"
msgstr ""
#: .\recipes\settings.py:404
msgid "Russian"
msgstr ""
#: .\recipes\settings.py:404
msgid "Spanish"
msgstr ""
#: .\recipes\settings.py:404
msgid "Swedish"
msgstr ""

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-04-26 07:46+0200\n"
"POT-Creation-Date: 2024-03-10 07:18+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,68 +18,110 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: .\recipes\settings.py:436
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:58
msgid ""
"You do not have the required permissions to view this page! You need to have "
"the following modules licensed: "
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:76
msgid "You are not logged in and therefore cannot view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:79
msgid "You do not have the required modules to view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:90
msgid "You do not have the required module to view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Recipe"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Recipe Keyword"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Meal Plan"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Shopping"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Book"
msgstr ""
#: .\recipes\settings.py:402
msgid "Armenian "
msgstr ""
#: .\recipes\settings.py:437
#: .\recipes\settings.py:402
msgid "Bulgarian"
msgstr ""
#: .\recipes\settings.py:438
#: .\recipes\settings.py:402
msgid "Catalan"
msgstr ""
#: .\recipes\settings.py:439
#: .\recipes\settings.py:402
msgid "Czech"
msgstr ""
#: .\recipes\settings.py:440
#: .\recipes\settings.py:402
msgid "Danish"
msgstr ""
#: .\recipes\settings.py:441
#: .\recipes\settings.py:402
msgid "Dutch"
msgstr ""
#: .\recipes\settings.py:442
#: .\recipes\settings.py:402
msgid "English"
msgstr "Englisch"
#: .\recipes\settings.py:443
#: .\recipes\settings.py:403
msgid "French"
msgstr ""
#: .\recipes\settings.py:444
#: .\recipes\settings.py:403
msgid "German"
msgstr "Deutsch"
#: .\recipes\settings.py:445
#: .\recipes\settings.py:403
msgid "Hungarian"
msgstr ""
#: .\recipes\settings.py:446
#: .\recipes\settings.py:403
msgid "Italian"
msgstr ""
#: .\recipes\settings.py:447
#: .\recipes\settings.py:403
msgid "Latvian"
msgstr ""
#: .\recipes\settings.py:448
#: .\recipes\settings.py:403
msgid "Norwegian "
msgstr ""
#: .\recipes\settings.py:403
#, fuzzy
#| msgid "English"
msgid "Polish"
msgstr "Englisch"
#: .\recipes\settings.py:449
#: .\recipes\settings.py:404
msgid "Russian"
msgstr ""
#: .\recipes\settings.py:450
#: .\recipes\settings.py:404
msgid "Spanish"
msgstr ""
#: .\recipes\settings.py:451
#: .\recipes\settings.py:404
msgid "Swedish"
msgstr ""

Binary file not shown.

View File

@@ -0,0 +1,124 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-03-10 07:18+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:58
msgid ""
"You do not have the required permissions to view this page! You need to have "
"the following modules licensed: "
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:76
msgid "You are not logged in and therefore cannot view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:79
msgid "You do not have the required modules to view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:90
msgid "You do not have the required module to view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Recipe"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Recipe Keyword"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Meal Plan"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Shopping"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Book"
msgstr ""
#: .\recipes\settings.py:402
msgid "Armenian "
msgstr ""
#: .\recipes\settings.py:402
msgid "Bulgarian"
msgstr ""
#: .\recipes\settings.py:402
msgid "Catalan"
msgstr ""
#: .\recipes\settings.py:402
msgid "Czech"
msgstr ""
#: .\recipes\settings.py:402
msgid "Danish"
msgstr ""
#: .\recipes\settings.py:402
msgid "Dutch"
msgstr ""
#: .\recipes\settings.py:402
msgid "English"
msgstr ""
#: .\recipes\settings.py:403
msgid "French"
msgstr ""
#: .\recipes\settings.py:403
msgid "German"
msgstr ""
#: .\recipes\settings.py:403
msgid "Hungarian"
msgstr ""
#: .\recipes\settings.py:403
msgid "Italian"
msgstr ""
#: .\recipes\settings.py:403
msgid "Latvian"
msgstr ""
#: .\recipes\settings.py:403
msgid "Norwegian "
msgstr ""
#: .\recipes\settings.py:403
msgid "Polish"
msgstr ""
#: .\recipes\settings.py:404
msgid "Russian"
msgstr ""
#: .\recipes\settings.py:404
msgid "Spanish"
msgstr ""
#: .\recipes\settings.py:404
msgid "Swedish"
msgstr ""

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-08-29 13:09+0200\n"
"POT-Creation-Date: 2024-03-10 07:18+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -36,102 +36,90 @@ msgstr ""
msgid "You do not have the required module to view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:32
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Recipe"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:32
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Recipe Keyword"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:32
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Meal Plan"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:32
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Shopping"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:32
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Book"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:37
msgid "start"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:37
msgid "center"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:37
msgid "end"
msgstr ""
#: .\recipes\settings.py:455
#: .\recipes\settings.py:402
msgid "Armenian "
msgstr ""
#: .\recipes\settings.py:456
#: .\recipes\settings.py:402
msgid "Bulgarian"
msgstr ""
#: .\recipes\settings.py:457
#: .\recipes\settings.py:402
msgid "Catalan"
msgstr ""
#: .\recipes\settings.py:458
#: .\recipes\settings.py:402
msgid "Czech"
msgstr ""
#: .\recipes\settings.py:459
#: .\recipes\settings.py:402
msgid "Danish"
msgstr ""
#: .\recipes\settings.py:460
#: .\recipes\settings.py:402
msgid "Dutch"
msgstr ""
#: .\recipes\settings.py:461
#: .\recipes\settings.py:402
msgid "English"
msgstr ""
#: .\recipes\settings.py:462
#: .\recipes\settings.py:403
msgid "French"
msgstr ""
#: .\recipes\settings.py:463
#: .\recipes\settings.py:403
msgid "German"
msgstr ""
#: .\recipes\settings.py:464
#: .\recipes\settings.py:403
msgid "Hungarian"
msgstr ""
#: .\recipes\settings.py:465
#: .\recipes\settings.py:403
msgid "Italian"
msgstr ""
#: .\recipes\settings.py:466
#: .\recipes\settings.py:403
msgid "Latvian"
msgstr ""
#: .\recipes\settings.py:467
#: .\recipes\settings.py:403
msgid "Norwegian "
msgstr ""
#: .\recipes\settings.py:468
#: .\recipes\settings.py:403
msgid "Polish"
msgstr ""
#: .\recipes\settings.py:469
#: .\recipes\settings.py:404
msgid "Russian"
msgstr ""
#: .\recipes\settings.py:470
#: .\recipes\settings.py:404
msgid "Spanish"
msgstr ""
#: .\recipes\settings.py:471
#: .\recipes\settings.py:404
msgid "Swedish"
msgstr ""

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-04-26 07:46+0200\n"
"POT-Creation-Date: 2024-03-10 07:18+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,66 +18,108 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: .\recipes\settings.py:436
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:58
msgid ""
"You do not have the required permissions to view this page! You need to have "
"the following modules licensed: "
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:76
msgid "You are not logged in and therefore cannot view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:79
msgid "You do not have the required modules to view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:90
msgid "You do not have the required module to view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Recipe"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Recipe Keyword"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Meal Plan"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Shopping"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Book"
msgstr ""
#: .\recipes\settings.py:402
msgid "Armenian "
msgstr ""
#: .\recipes\settings.py:437
#: .\recipes\settings.py:402
msgid "Bulgarian"
msgstr ""
#: .\recipes\settings.py:438
#: .\recipes\settings.py:402
msgid "Catalan"
msgstr ""
#: .\recipes\settings.py:439
#: .\recipes\settings.py:402
msgid "Czech"
msgstr ""
#: .\recipes\settings.py:440
#: .\recipes\settings.py:402
msgid "Danish"
msgstr ""
#: .\recipes\settings.py:441
#: .\recipes\settings.py:402
msgid "Dutch"
msgstr ""
#: .\recipes\settings.py:442
#: .\recipes\settings.py:402
msgid "English"
msgstr ""
#: .\recipes\settings.py:443
#: .\recipes\settings.py:403
msgid "French"
msgstr ""
#: .\recipes\settings.py:444
#: .\recipes\settings.py:403
msgid "German"
msgstr ""
#: .\recipes\settings.py:445
#: .\recipes\settings.py:403
msgid "Hungarian"
msgstr ""
#: .\recipes\settings.py:446
#: .\recipes\settings.py:403
msgid "Italian"
msgstr ""
#: .\recipes\settings.py:447
#: .\recipes\settings.py:403
msgid "Latvian"
msgstr ""
#: .\recipes\settings.py:448
#: .\recipes\settings.py:403
msgid "Norwegian "
msgstr ""
#: .\recipes\settings.py:403
msgid "Polish"
msgstr ""
#: .\recipes\settings.py:449
#: .\recipes\settings.py:404
msgid "Russian"
msgstr ""
#: .\recipes\settings.py:450
#: .\recipes\settings.py:404
msgid "Spanish"
msgstr ""
#: .\recipes\settings.py:451
#: .\recipes\settings.py:404
msgid "Swedish"
msgstr ""

Binary file not shown.

View File

@@ -0,0 +1,124 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-03-10 07:18+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:58
msgid ""
"You do not have the required permissions to view this page! You need to have "
"the following modules licensed: "
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:76
msgid "You are not logged in and therefore cannot view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:79
msgid "You do not have the required modules to view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:90
msgid "You do not have the required module to view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Recipe"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Recipe Keyword"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Meal Plan"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Shopping"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Book"
msgstr ""
#: .\recipes\settings.py:402
msgid "Armenian "
msgstr ""
#: .\recipes\settings.py:402
msgid "Bulgarian"
msgstr ""
#: .\recipes\settings.py:402
msgid "Catalan"
msgstr ""
#: .\recipes\settings.py:402
msgid "Czech"
msgstr ""
#: .\recipes\settings.py:402
msgid "Danish"
msgstr ""
#: .\recipes\settings.py:402
msgid "Dutch"
msgstr ""
#: .\recipes\settings.py:402
msgid "English"
msgstr ""
#: .\recipes\settings.py:403
msgid "French"
msgstr ""
#: .\recipes\settings.py:403
msgid "German"
msgstr ""
#: .\recipes\settings.py:403
msgid "Hungarian"
msgstr ""
#: .\recipes\settings.py:403
msgid "Italian"
msgstr ""
#: .\recipes\settings.py:403
msgid "Latvian"
msgstr ""
#: .\recipes\settings.py:403
msgid "Norwegian "
msgstr ""
#: .\recipes\settings.py:403
msgid "Polish"
msgstr ""
#: .\recipes\settings.py:404
msgid "Russian"
msgstr ""
#: .\recipes\settings.py:404
msgid "Spanish"
msgstr ""
#: .\recipes\settings.py:404
msgid "Swedish"
msgstr ""

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-04-26 07:46+0200\n"
"POT-Creation-Date: 2024-03-10 07:18+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,66 +18,108 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#: .\recipes\settings.py:436
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:58
msgid ""
"You do not have the required permissions to view this page! You need to have "
"the following modules licensed: "
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:76
msgid "You are not logged in and therefore cannot view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:79
msgid "You do not have the required modules to view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:90
msgid "You do not have the required module to view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Recipe"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Recipe Keyword"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Meal Plan"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Shopping"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Book"
msgstr ""
#: .\recipes\settings.py:402
msgid "Armenian "
msgstr ""
#: .\recipes\settings.py:437
#: .\recipes\settings.py:402
msgid "Bulgarian"
msgstr ""
#: .\recipes\settings.py:438
#: .\recipes\settings.py:402
msgid "Catalan"
msgstr ""
#: .\recipes\settings.py:439
#: .\recipes\settings.py:402
msgid "Czech"
msgstr ""
#: .\recipes\settings.py:440
#: .\recipes\settings.py:402
msgid "Danish"
msgstr ""
#: .\recipes\settings.py:441
#: .\recipes\settings.py:402
msgid "Dutch"
msgstr ""
#: .\recipes\settings.py:442
#: .\recipes\settings.py:402
msgid "English"
msgstr ""
#: .\recipes\settings.py:443
#: .\recipes\settings.py:403
msgid "French"
msgstr ""
#: .\recipes\settings.py:444
#: .\recipes\settings.py:403
msgid "German"
msgstr ""
#: .\recipes\settings.py:445
#: .\recipes\settings.py:403
msgid "Hungarian"
msgstr ""
#: .\recipes\settings.py:446
#: .\recipes\settings.py:403
msgid "Italian"
msgstr ""
#: .\recipes\settings.py:447
#: .\recipes\settings.py:403
msgid "Latvian"
msgstr ""
#: .\recipes\settings.py:448
#: .\recipes\settings.py:403
msgid "Norwegian "
msgstr ""
#: .\recipes\settings.py:403
msgid "Polish"
msgstr ""
#: .\recipes\settings.py:449
#: .\recipes\settings.py:404
msgid "Russian"
msgstr ""
#: .\recipes\settings.py:450
#: .\recipes\settings.py:404
msgid "Spanish"
msgstr ""
#: .\recipes\settings.py:451
#: .\recipes\settings.py:404
msgid "Swedish"
msgstr ""

Binary file not shown.

View File

@@ -0,0 +1,125 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-03-10 07:18+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % "
"1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n"
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:58
msgid ""
"You do not have the required permissions to view this page! You need to have "
"the following modules licensed: "
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:76
msgid "You are not logged in and therefore cannot view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:79
msgid "You do not have the required modules to view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:90
msgid "You do not have the required module to view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Recipe"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Recipe Keyword"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Meal Plan"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Shopping"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Book"
msgstr ""
#: .\recipes\settings.py:402
msgid "Armenian "
msgstr ""
#: .\recipes\settings.py:402
msgid "Bulgarian"
msgstr ""
#: .\recipes\settings.py:402
msgid "Catalan"
msgstr ""
#: .\recipes\settings.py:402
msgid "Czech"
msgstr ""
#: .\recipes\settings.py:402
msgid "Danish"
msgstr ""
#: .\recipes\settings.py:402
msgid "Dutch"
msgstr ""
#: .\recipes\settings.py:402
msgid "English"
msgstr ""
#: .\recipes\settings.py:403
msgid "French"
msgstr ""
#: .\recipes\settings.py:403
msgid "German"
msgstr ""
#: .\recipes\settings.py:403
msgid "Hungarian"
msgstr ""
#: .\recipes\settings.py:403
msgid "Italian"
msgstr ""
#: .\recipes\settings.py:403
msgid "Latvian"
msgstr ""
#: .\recipes\settings.py:403
msgid "Norwegian "
msgstr ""
#: .\recipes\settings.py:403
msgid "Polish"
msgstr ""
#: .\recipes\settings.py:404
msgid "Russian"
msgstr ""
#: .\recipes\settings.py:404
msgid "Spanish"
msgstr ""
#: .\recipes\settings.py:404
msgid "Swedish"
msgstr ""

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-04-26 07:46+0200\n"
"POT-Creation-Date: 2024-03-10 07:18+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17,66 +17,108 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: .\recipes\settings.py:436
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:58
msgid ""
"You do not have the required permissions to view this page! You need to have "
"the following modules licensed: "
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:76
msgid "You are not logged in and therefore cannot view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:79
msgid "You do not have the required modules to view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:90
msgid "You do not have the required module to view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Recipe"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Recipe Keyword"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Meal Plan"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Shopping"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Book"
msgstr ""
#: .\recipes\settings.py:402
msgid "Armenian "
msgstr ""
#: .\recipes\settings.py:437
#: .\recipes\settings.py:402
msgid "Bulgarian"
msgstr ""
#: .\recipes\settings.py:438
#: .\recipes\settings.py:402
msgid "Catalan"
msgstr ""
#: .\recipes\settings.py:439
#: .\recipes\settings.py:402
msgid "Czech"
msgstr ""
#: .\recipes\settings.py:440
#: .\recipes\settings.py:402
msgid "Danish"
msgstr ""
#: .\recipes\settings.py:441
#: .\recipes\settings.py:402
msgid "Dutch"
msgstr ""
#: .\recipes\settings.py:442
#: .\recipes\settings.py:402
msgid "English"
msgstr ""
#: .\recipes\settings.py:443
#: .\recipes\settings.py:403
msgid "French"
msgstr ""
#: .\recipes\settings.py:444
#: .\recipes\settings.py:403
msgid "German"
msgstr ""
#: .\recipes\settings.py:445
#: .\recipes\settings.py:403
msgid "Hungarian"
msgstr ""
#: .\recipes\settings.py:446
#: .\recipes\settings.py:403
msgid "Italian"
msgstr ""
#: .\recipes\settings.py:447
#: .\recipes\settings.py:403
msgid "Latvian"
msgstr ""
#: .\recipes\settings.py:448
#: .\recipes\settings.py:403
msgid "Norwegian "
msgstr ""
#: .\recipes\settings.py:403
msgid "Polish"
msgstr ""
#: .\recipes\settings.py:449
#: .\recipes\settings.py:404
msgid "Russian"
msgstr ""
#: .\recipes\settings.py:450
#: .\recipes\settings.py:404
msgid "Spanish"
msgstr ""
#: .\recipes\settings.py:451
#: .\recipes\settings.py:404
msgid "Swedish"
msgstr ""

Binary file not shown.

View File

@@ -0,0 +1,124 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-03-10 07:18+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:58
msgid ""
"You do not have the required permissions to view this page! You need to have "
"the following modules licensed: "
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:76
msgid "You are not logged in and therefore cannot view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:79
msgid "You do not have the required modules to view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:90
msgid "You do not have the required module to view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Recipe"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Recipe Keyword"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Meal Plan"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Shopping"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Book"
msgstr ""
#: .\recipes\settings.py:402
msgid "Armenian "
msgstr ""
#: .\recipes\settings.py:402
msgid "Bulgarian"
msgstr ""
#: .\recipes\settings.py:402
msgid "Catalan"
msgstr ""
#: .\recipes\settings.py:402
msgid "Czech"
msgstr ""
#: .\recipes\settings.py:402
msgid "Danish"
msgstr ""
#: .\recipes\settings.py:402
msgid "Dutch"
msgstr ""
#: .\recipes\settings.py:402
msgid "English"
msgstr ""
#: .\recipes\settings.py:403
msgid "French"
msgstr ""
#: .\recipes\settings.py:403
msgid "German"
msgstr ""
#: .\recipes\settings.py:403
msgid "Hungarian"
msgstr ""
#: .\recipes\settings.py:403
msgid "Italian"
msgstr ""
#: .\recipes\settings.py:403
msgid "Latvian"
msgstr ""
#: .\recipes\settings.py:403
msgid "Norwegian "
msgstr ""
#: .\recipes\settings.py:403
msgid "Polish"
msgstr ""
#: .\recipes\settings.py:404
msgid "Russian"
msgstr ""
#: .\recipes\settings.py:404
msgid "Spanish"
msgstr ""
#: .\recipes\settings.py:404
msgid "Swedish"
msgstr ""

Binary file not shown.

View File

@@ -0,0 +1,124 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-03-10 07:18+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:58
msgid ""
"You do not have the required permissions to view this page! You need to have "
"the following modules licensed: "
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:76
msgid "You are not logged in and therefore cannot view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:79
msgid "You do not have the required modules to view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:90
msgid "You do not have the required module to view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Recipe"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Recipe Keyword"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Meal Plan"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Shopping"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Book"
msgstr ""
#: .\recipes\settings.py:402
msgid "Armenian "
msgstr ""
#: .\recipes\settings.py:402
msgid "Bulgarian"
msgstr ""
#: .\recipes\settings.py:402
msgid "Catalan"
msgstr ""
#: .\recipes\settings.py:402
msgid "Czech"
msgstr ""
#: .\recipes\settings.py:402
msgid "Danish"
msgstr ""
#: .\recipes\settings.py:402
msgid "Dutch"
msgstr ""
#: .\recipes\settings.py:402
msgid "English"
msgstr ""
#: .\recipes\settings.py:403
msgid "French"
msgstr ""
#: .\recipes\settings.py:403
msgid "German"
msgstr ""
#: .\recipes\settings.py:403
msgid "Hungarian"
msgstr ""
#: .\recipes\settings.py:403
msgid "Italian"
msgstr ""
#: .\recipes\settings.py:403
msgid "Latvian"
msgstr ""
#: .\recipes\settings.py:403
msgid "Norwegian "
msgstr ""
#: .\recipes\settings.py:403
msgid "Polish"
msgstr ""
#: .\recipes\settings.py:404
msgid "Russian"
msgstr ""
#: .\recipes\settings.py:404
msgid "Spanish"
msgstr ""
#: .\recipes\settings.py:404
msgid "Swedish"
msgstr ""

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-04-26 07:46+0200\n"
"POT-Creation-Date: 2024-03-10 07:18+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,66 +18,108 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: .\recipes\settings.py:436
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:58
msgid ""
"You do not have the required permissions to view this page! You need to have "
"the following modules licensed: "
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:76
msgid "You are not logged in and therefore cannot view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:79
msgid "You do not have the required modules to view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:90
msgid "You do not have the required module to view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Recipe"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Recipe Keyword"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Meal Plan"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Shopping"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Book"
msgstr ""
#: .\recipes\settings.py:402
msgid "Armenian "
msgstr ""
#: .\recipes\settings.py:437
#: .\recipes\settings.py:402
msgid "Bulgarian"
msgstr ""
#: .\recipes\settings.py:438
#: .\recipes\settings.py:402
msgid "Catalan"
msgstr ""
#: .\recipes\settings.py:439
#: .\recipes\settings.py:402
msgid "Czech"
msgstr ""
#: .\recipes\settings.py:440
#: .\recipes\settings.py:402
msgid "Danish"
msgstr ""
#: .\recipes\settings.py:441
#: .\recipes\settings.py:402
msgid "Dutch"
msgstr ""
#: .\recipes\settings.py:442
#: .\recipes\settings.py:402
msgid "English"
msgstr ""
#: .\recipes\settings.py:443
#: .\recipes\settings.py:403
msgid "French"
msgstr ""
#: .\recipes\settings.py:444
#: .\recipes\settings.py:403
msgid "German"
msgstr ""
#: .\recipes\settings.py:445
#: .\recipes\settings.py:403
msgid "Hungarian"
msgstr ""
#: .\recipes\settings.py:446
#: .\recipes\settings.py:403
msgid "Italian"
msgstr ""
#: .\recipes\settings.py:447
#: .\recipes\settings.py:403
msgid "Latvian"
msgstr ""
#: .\recipes\settings.py:448
#: .\recipes\settings.py:403
msgid "Norwegian "
msgstr ""
#: .\recipes\settings.py:403
msgid "Polish"
msgstr ""
#: .\recipes\settings.py:449
#: .\recipes\settings.py:404
msgid "Russian"
msgstr ""
#: .\recipes\settings.py:450
#: .\recipes\settings.py:404
msgid "Spanish"
msgstr ""
#: .\recipes\settings.py:451
#: .\recipes\settings.py:404
msgid "Swedish"
msgstr ""

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-04-26 07:46+0200\n"
"POT-Creation-Date: 2024-03-10 07:18+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -19,66 +19,108 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : "
"2);\n"
#: .\recipes\settings.py:436
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:58
msgid ""
"You do not have the required permissions to view this page! You need to have "
"the following modules licensed: "
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:76
msgid "You are not logged in and therefore cannot view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:79
msgid "You do not have the required modules to view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:90
msgid "You do not have the required module to view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Recipe"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Recipe Keyword"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Meal Plan"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Shopping"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Book"
msgstr ""
#: .\recipes\settings.py:402
msgid "Armenian "
msgstr ""
#: .\recipes\settings.py:437
#: .\recipes\settings.py:402
msgid "Bulgarian"
msgstr ""
#: .\recipes\settings.py:438
#: .\recipes\settings.py:402
msgid "Catalan"
msgstr ""
#: .\recipes\settings.py:439
#: .\recipes\settings.py:402
msgid "Czech"
msgstr ""
#: .\recipes\settings.py:440
#: .\recipes\settings.py:402
msgid "Danish"
msgstr ""
#: .\recipes\settings.py:441
#: .\recipes\settings.py:402
msgid "Dutch"
msgstr ""
#: .\recipes\settings.py:442
#: .\recipes\settings.py:402
msgid "English"
msgstr ""
#: .\recipes\settings.py:443
#: .\recipes\settings.py:403
msgid "French"
msgstr ""
#: .\recipes\settings.py:444
#: .\recipes\settings.py:403
msgid "German"
msgstr ""
#: .\recipes\settings.py:445
#: .\recipes\settings.py:403
msgid "Hungarian"
msgstr ""
#: .\recipes\settings.py:446
#: .\recipes\settings.py:403
msgid "Italian"
msgstr ""
#: .\recipes\settings.py:447
#: .\recipes\settings.py:403
msgid "Latvian"
msgstr ""
#: .\recipes\settings.py:448
#: .\recipes\settings.py:403
msgid "Norwegian "
msgstr ""
#: .\recipes\settings.py:403
msgid "Polish"
msgstr ""
#: .\recipes\settings.py:449
#: .\recipes\settings.py:404
msgid "Russian"
msgstr ""
#: .\recipes\settings.py:450
#: .\recipes\settings.py:404
msgid "Spanish"
msgstr ""
#: .\recipes\settings.py:451
#: .\recipes\settings.py:404
msgid "Swedish"
msgstr ""

Binary file not shown.

View File

@@ -0,0 +1,124 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-03-10 07:18+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:58
msgid ""
"You do not have the required permissions to view this page! You need to have "
"the following modules licensed: "
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:76
msgid "You are not logged in and therefore cannot view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:79
msgid "You do not have the required modules to view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:90
msgid "You do not have the required module to view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Recipe"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Recipe Keyword"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Meal Plan"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Shopping"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Book"
msgstr ""
#: .\recipes\settings.py:402
msgid "Armenian "
msgstr ""
#: .\recipes\settings.py:402
msgid "Bulgarian"
msgstr ""
#: .\recipes\settings.py:402
msgid "Catalan"
msgstr ""
#: .\recipes\settings.py:402
msgid "Czech"
msgstr ""
#: .\recipes\settings.py:402
msgid "Danish"
msgstr ""
#: .\recipes\settings.py:402
msgid "Dutch"
msgstr ""
#: .\recipes\settings.py:402
msgid "English"
msgstr ""
#: .\recipes\settings.py:403
msgid "French"
msgstr ""
#: .\recipes\settings.py:403
msgid "German"
msgstr ""
#: .\recipes\settings.py:403
msgid "Hungarian"
msgstr ""
#: .\recipes\settings.py:403
msgid "Italian"
msgstr ""
#: .\recipes\settings.py:403
msgid "Latvian"
msgstr ""
#: .\recipes\settings.py:403
msgid "Norwegian "
msgstr ""
#: .\recipes\settings.py:403
msgid "Polish"
msgstr ""
#: .\recipes\settings.py:404
msgid "Russian"
msgstr ""
#: .\recipes\settings.py:404
msgid "Spanish"
msgstr ""
#: .\recipes\settings.py:404
msgid "Swedish"
msgstr ""

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-04-26 07:46+0200\n"
"POT-Creation-Date: 2024-03-10 07:18+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,66 +18,108 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: .\recipes\settings.py:436
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:58
msgid ""
"You do not have the required permissions to view this page! You need to have "
"the following modules licensed: "
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:76
msgid "You are not logged in and therefore cannot view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:79
msgid "You do not have the required modules to view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:90
msgid "You do not have the required module to view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Recipe"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Recipe Keyword"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Meal Plan"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Shopping"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Book"
msgstr ""
#: .\recipes\settings.py:402
msgid "Armenian "
msgstr ""
#: .\recipes\settings.py:437
#: .\recipes\settings.py:402
msgid "Bulgarian"
msgstr ""
#: .\recipes\settings.py:438
#: .\recipes\settings.py:402
msgid "Catalan"
msgstr ""
#: .\recipes\settings.py:439
#: .\recipes\settings.py:402
msgid "Czech"
msgstr ""
#: .\recipes\settings.py:440
#: .\recipes\settings.py:402
msgid "Danish"
msgstr ""
#: .\recipes\settings.py:441
#: .\recipes\settings.py:402
msgid "Dutch"
msgstr ""
#: .\recipes\settings.py:442
#: .\recipes\settings.py:402
msgid "English"
msgstr ""
#: .\recipes\settings.py:443
#: .\recipes\settings.py:403
msgid "French"
msgstr ""
#: .\recipes\settings.py:444
#: .\recipes\settings.py:403
msgid "German"
msgstr ""
#: .\recipes\settings.py:445
#: .\recipes\settings.py:403
msgid "Hungarian"
msgstr ""
#: .\recipes\settings.py:446
#: .\recipes\settings.py:403
msgid "Italian"
msgstr ""
#: .\recipes\settings.py:447
#: .\recipes\settings.py:403
msgid "Latvian"
msgstr ""
#: .\recipes\settings.py:448
#: .\recipes\settings.py:403
msgid "Norwegian "
msgstr ""
#: .\recipes\settings.py:403
msgid "Polish"
msgstr ""
#: .\recipes\settings.py:449
#: .\recipes\settings.py:404
msgid "Russian"
msgstr ""
#: .\recipes\settings.py:450
#: .\recipes\settings.py:404
msgid "Spanish"
msgstr ""
#: .\recipes\settings.py:451
#: .\recipes\settings.py:404
msgid "Swedish"
msgstr ""

Binary file not shown.

View File

@@ -0,0 +1,126 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-03-10 07:18+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && "
"(n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && "
"n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:58
msgid ""
"You do not have the required permissions to view this page! You need to have "
"the following modules licensed: "
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:76
msgid "You are not logged in and therefore cannot view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:79
msgid "You do not have the required modules to view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:90
msgid "You do not have the required module to view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Recipe"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Recipe Keyword"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Meal Plan"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Shopping"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Book"
msgstr ""
#: .\recipes\settings.py:402
msgid "Armenian "
msgstr ""
#: .\recipes\settings.py:402
msgid "Bulgarian"
msgstr ""
#: .\recipes\settings.py:402
msgid "Catalan"
msgstr ""
#: .\recipes\settings.py:402
msgid "Czech"
msgstr ""
#: .\recipes\settings.py:402
msgid "Danish"
msgstr ""
#: .\recipes\settings.py:402
msgid "Dutch"
msgstr ""
#: .\recipes\settings.py:402
msgid "English"
msgstr ""
#: .\recipes\settings.py:403
msgid "French"
msgstr ""
#: .\recipes\settings.py:403
msgid "German"
msgstr ""
#: .\recipes\settings.py:403
msgid "Hungarian"
msgstr ""
#: .\recipes\settings.py:403
msgid "Italian"
msgstr ""
#: .\recipes\settings.py:403
msgid "Latvian"
msgstr ""
#: .\recipes\settings.py:403
msgid "Norwegian "
msgstr ""
#: .\recipes\settings.py:403
msgid "Polish"
msgstr ""
#: .\recipes\settings.py:404
msgid "Russian"
msgstr ""
#: .\recipes\settings.py:404
msgid "Spanish"
msgstr ""
#: .\recipes\settings.py:404
msgid "Swedish"
msgstr ""

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-04-26 07:46+0200\n"
"POT-Creation-Date: 2024-03-10 07:18+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,66 +18,108 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: .\recipes\settings.py:436
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:58
msgid ""
"You do not have the required permissions to view this page! You need to have "
"the following modules licensed: "
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:76
msgid "You are not logged in and therefore cannot view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:79
msgid "You do not have the required modules to view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\helper\permission_helper.py:90
msgid "You do not have the required module to view this page!"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Recipe"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Recipe Keyword"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Meal Plan"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Shopping"
msgstr ""
#: .\recipes\plugins\enterprise_plugin\models.py:35
msgid "Book"
msgstr ""
#: .\recipes\settings.py:402
msgid "Armenian "
msgstr ""
#: .\recipes\settings.py:437
#: .\recipes\settings.py:402
msgid "Bulgarian"
msgstr ""
#: .\recipes\settings.py:438
#: .\recipes\settings.py:402
msgid "Catalan"
msgstr ""
#: .\recipes\settings.py:439
#: .\recipes\settings.py:402
msgid "Czech"
msgstr ""
#: .\recipes\settings.py:440
#: .\recipes\settings.py:402
msgid "Danish"
msgstr ""
#: .\recipes\settings.py:441
#: .\recipes\settings.py:402
msgid "Dutch"
msgstr ""
#: .\recipes\settings.py:442
#: .\recipes\settings.py:402
msgid "English"
msgstr ""
#: .\recipes\settings.py:443
#: .\recipes\settings.py:403
msgid "French"
msgstr ""
#: .\recipes\settings.py:444
#: .\recipes\settings.py:403
msgid "German"
msgstr ""
#: .\recipes\settings.py:445
#: .\recipes\settings.py:403
msgid "Hungarian"
msgstr ""
#: .\recipes\settings.py:446
#: .\recipes\settings.py:403
msgid "Italian"
msgstr ""
#: .\recipes\settings.py:447
#: .\recipes\settings.py:403
msgid "Latvian"
msgstr ""
#: .\recipes\settings.py:448
#: .\recipes\settings.py:403
msgid "Norwegian "
msgstr ""
#: .\recipes\settings.py:403
msgid "Polish"
msgstr ""
#: .\recipes\settings.py:449
#: .\recipes\settings.py:404
msgid "Russian"
msgstr ""
#: .\recipes\settings.py:450
#: .\recipes\settings.py:404
msgid "Spanish"
msgstr ""
#: .\recipes\settings.py:451
#: .\recipes\settings.py:404
msgid "Swedish"
msgstr ""

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More