diff --git a/.env.template b/.env.template index ace276fc..0456ca9e 100644 --- a/.env.template +++ b/.env.template @@ -83,7 +83,8 @@ REVERSE_PROXY_AUTH=0 # Default settings for spaces, apply per space and can be changed in the admin view # SPACE_DEFAULT_MAX_RECIPES=0 # 0=unlimited recipes # SPACE_DEFAULT_MAX_USERS=0 # 0=unlimited users per space -# SPACE_DEFAULT_FILES=1 # 1=can upload files (images, etc.) NOT IMPLEMENTED YET +# SPACE_DEFAULT_MAX_FILES=0 # Maximum file storage for space in MB. 0 for unlimited, -1 to disable file upload. +# SPACE_DEFAULT_ALLOW_SHARING=1 # Allow users to share recipes with public links # allow people to create accounts on your application instance (without an invite link) # when unset: 0 (false) @@ -113,4 +114,9 @@ REVERSE_PROXY_AUTH=0 # SOCIAL_DEFAULT_ACCESS = 1 # if SOCIAL_DEFAULT_ACCESS is used, which group should be added -# SOCIAL_DEFAULT_GROUP=guest \ No newline at end of file +# SOCIAL_DEFAULT_GROUP=guest + +# Django session cookie settings. Can be changed to allow a single django application to authenticate several applications +# when running under the same database +# SESSION_COOKIE_DOMAIN=.example.com +# SESSION_COOKIE_NAME=sessionid # use this only to not interfere with non unified django applications under the same top level domain \ No newline at end of file diff --git a/README.md b/README.md index 25e4b902..3f2c6d58 100644 --- a/README.md +++ b/README.md @@ -9,18 +9,17 @@

The recipe manager that allows you to manage your ever growing collection of digital recipes.

- - - - - - + + + + +

-Installation • +InstallationDocumentation • -Demo +Demo

![Preview](docs/preview.png) diff --git a/cookbook/admin.py b/cookbook/admin.py index f9585589..e3d46fee 100644 --- a/cookbook/admin.py +++ b/cookbook/admin.py @@ -31,14 +31,20 @@ admin.site.unregister(Group) class SpaceAdmin(admin.ModelAdmin): - list_display = ('name', 'created_by', 'message') + list_display = ('name', 'created_by', 'max_recipes', 'max_users', 'max_file_storage_mb', 'allow_sharing') + search_fields = ('name', 'created_by__username') + list_filter = ('max_recipes', 'max_users', 'max_file_storage_mb', 'allow_sharing') + date_hierarchy = 'created_at' admin.site.register(Space, SpaceAdmin) class UserPreferenceAdmin(admin.ModelAdmin): - list_display = ('name', 'space', 'theme', 'nav_color', 'default_page', 'search_style',) + list_display = ('name', 'space', 'theme', 'nav_color', 'default_page', 'search_style',) # TODO add new fields + search_fields = ('user__username', 'space__name') + list_filter = ('theme', 'nav_color', 'default_page', 'search_style') + date_hierarchy = 'created_at' @staticmethod def name(obj): @@ -50,6 +56,7 @@ admin.site.register(UserPreference, UserPreferenceAdmin) class StorageAdmin(admin.ModelAdmin): list_display = ('name', 'method') + search_fields = ('name',) admin.site.register(Storage, StorageAdmin) @@ -57,6 +64,7 @@ admin.site.register(Storage, StorageAdmin) class SyncAdmin(admin.ModelAdmin): list_display = ('storage', 'path', 'active', 'last_checked') + search_fields = ('storage__name', 'path') admin.site.register(Sync, SyncAdmin) @@ -102,6 +110,7 @@ admin.site.register(Keyword, KeywordAdmin) class StepAdmin(admin.ModelAdmin): list_display = ('name', 'type', 'order') + search_fields = ('name', 'type') admin.site.register(Step, StepAdmin) @@ -120,6 +129,9 @@ def rebuild_index(modeladmin, request, queryset): class RecipeAdmin(admin.ModelAdmin): list_display = ('name', 'internal', 'created_by', 'storage') + search_fields = ('name', 'created_by__username') + list_filter = ('internal',) + date_hierarchy = 'created_at' @staticmethod def created_by(obj): @@ -137,6 +149,7 @@ admin.site.register(Food) class IngredientAdmin(admin.ModelAdmin): list_display = ('food', 'amount', 'unit') + search_fields = ('food__name', 'unit__name') admin.site.register(Ingredient, IngredientAdmin) @@ -144,6 +157,8 @@ admin.site.register(Ingredient, IngredientAdmin) class CommentAdmin(admin.ModelAdmin): list_display = ('recipe', 'name', 'created_at') + search_fields = ('text', 'user__username') + date_hierarchy = 'created_at' @staticmethod def name(obj): @@ -162,6 +177,7 @@ admin.site.register(RecipeImport, RecipeImportAdmin) class RecipeBookAdmin(admin.ModelAdmin): list_display = ('name', 'user_name') + search_fields = ('name', 'created_by__username') @staticmethod def user_name(obj): @@ -191,6 +207,7 @@ admin.site.register(MealPlan, MealPlanAdmin) class MealTypeAdmin(admin.ModelAdmin): list_display = ('name', 'created_by', 'order') + search_fields = ('name', 'created_by__username') admin.site.register(MealType, MealTypeAdmin) diff --git a/cookbook/helper/AllAuthCustomAdapter.py b/cookbook/helper/AllAuthCustomAdapter.py index 9587cf2a..a78f6072 100644 --- a/cookbook/helper/AllAuthCustomAdapter.py +++ b/cookbook/helper/AllAuthCustomAdapter.py @@ -7,6 +7,8 @@ from django.contrib import messages from django.core.cache import caches from gettext import gettext as _ +from cookbook.models import InviteLink + class AllAuthCustomAdapter(DefaultAccountAdapter): @@ -14,7 +16,11 @@ class AllAuthCustomAdapter(DefaultAccountAdapter): """ Whether to allow sign ups. """ - if request.resolver_match.view_name == 'account_signup' and not settings.ENABLE_SIGNUP: + signup_token = False + if 'signup_token' in request.session and InviteLink.objects.filter(valid_until__gte=datetime.datetime.today(), used_by=None, uuid=request.session['signup_token']).exists(): + signup_token = True + + if (request.resolver_match.view_name == 'account_signup' or request.resolver_match.view_name == 'socialaccount_signup') and not settings.ENABLE_SIGNUP and not signup_token: return False else: return super(AllAuthCustomAdapter, self).is_open_for_signup(request) diff --git a/cookbook/helper/image_processing.py b/cookbook/helper/image_processing.py new file mode 100644 index 00000000..610f5868 --- /dev/null +++ b/cookbook/helper/image_processing.py @@ -0,0 +1,45 @@ +import os +import sys + +from PIL import Image +from io import BytesIO + + +def rescale_image_jpeg(image_object, base_width=720): + img = Image.open(image_object) + icc_profile = img.info.get('icc_profile') # remember color profile to not mess up colors + width_percent = (base_width / float(img.size[0])) + height = int((float(img.size[1]) * float(width_percent))) + + img = img.resize((base_width, height), Image.ANTIALIAS) + img_bytes = BytesIO() + img.save(img_bytes, 'JPEG', quality=75, optimize=True, icc_profile=icc_profile) + + return img_bytes + + +def rescale_image_png(image_object, base_width=720): + basewidth = 720 + wpercent = (basewidth / float(image_object.size[0])) + hsize = int((float(image_object.size[1]) * float(wpercent))) + img = image_object.resize((basewidth, hsize), Image.ANTIALIAS) + + im_io = BytesIO() + img.save(im_io, 'PNG', quality=70) + return img + + +def get_filetype(name): + try: + return os.path.splitext(name)[1] + except: + return '.jpeg' + + +def handle_image(request, image_object, filetype='.jpeg'): + if sys.getsizeof(image_object) / 8 > 500: + if filetype == '.jpeg': + return rescale_image_jpeg(image_object), filetype + if filetype == '.png': + return rescale_image_png(image_object), filetype + return image_object, filetype diff --git a/cookbook/helper/ingredient_parser.py b/cookbook/helper/ingredient_parser.py index 61d2a9db..a6172852 100644 --- a/cookbook/helper/ingredient_parser.py +++ b/cookbook/helper/ingredient_parser.py @@ -1,3 +1,4 @@ +import re import string import unicodedata @@ -22,20 +23,16 @@ def parse_fraction(x): def parse_amount(x): amount = 0 unit = '' + note = '' did_check_frac = False end = 0 - while ( - end < len(x) - and ( - x[end] in string.digits - or ( - (x[end] == '.' or x[end] == ',' or x[end] == '/') - and end + 1 < len(x) - and x[end + 1] in string.digits - ) - ) - ): + while (end < len(x) and (x[end] in string.digits + or ( + (x[end] == '.' or x[end] == ',' or x[end] == '/') + and end + 1 < len(x) + and x[end + 1] in string.digits + ))): end += 1 if end > 0: if "/" in x[:end]: @@ -55,7 +52,11 @@ def parse_amount(x): unit = x[end + 1:] except ValueError: unit = x[end:] - return amount, unit + + if unit.startswith('(') or unit.startswith('-'): # i dont know any unit that starts with ( or - so its likely an alternative like 1L (500ml) Water or 2-3 + unit = '' + note = x + return amount, unit, note def parse_ingredient_with_comma(tokens): @@ -106,6 +107,13 @@ def parse(x): unit = '' ingredient = '' note = '' + unit_note = '' + + # if the string contains parenthesis early on remove it and place it at the end + # because its likely some kind of note + if re.match('(.){1,6}\s\((.[^\(\)])+\)\s', x): + match = re.search('\((.[^\(])+\)', x) + x = x[:match.start()] + x[match.end():] + ' ' + x[match.start():match.end()] tokens = x.split() if len(tokens) == 1: @@ -114,17 +122,17 @@ def parse(x): else: try: # try to parse first argument as amount - amount, unit = parse_amount(tokens[0]) + amount, unit, unit_note = parse_amount(tokens[0]) # only try to parse second argument as amount if there are at least # three arguments if it already has a unit there can't be # a fraction for the amount if len(tokens) > 2: try: if not unit == '': - # a unit is already found, no need to try the second argument for a fraction # noqa: E501 + # a unit is already found, no need to try the second argument for a fraction # probably not the best method to do it, but I didn't want to make an if check and paste the exact same thing in the else as already is in the except # noqa: E501 raise ValueError - # try to parse second argument as amount and add that, in case of '2 1/2' or '2 ½' # noqa: E501 + # try to parse second argument as amount and add that, in case of '2 1/2' or '2 ½' amount += parse_fraction(tokens[1]) # assume that units can't end with a comma if len(tokens) > 3 and not tokens[2].endswith(','): @@ -142,7 +150,10 @@ def parse(x): # try to use second argument as unit and everything else as ingredient, use everything as ingredient if it fails # noqa: E501 try: ingredient, note = parse_ingredient(tokens[2:]) - unit = tokens[1] + if unit == '': + unit = tokens[1] + else: + note = tokens[1] except ValueError: ingredient, note = parse_ingredient(tokens[1:]) else: @@ -158,11 +169,16 @@ def parse(x): ingredient, note = parse_ingredient(tokens) except ValueError: ingredient = ' '.join(tokens[1:]) + + if unit_note not in note: + note += ' ' + unit_note return amount, unit.strip(), ingredient.strip(), note.strip() # small utility functions to prevent emtpy unit/food creation def get_unit(unit, space): + if not unit: + return None if len(unit) > 0: u, created = Unit.objects.get_or_create(name=unit, space=space) return u @@ -170,6 +186,8 @@ def get_unit(unit, space): def get_food(food, space): + if not food: + return None if len(food) > 0: f, created = Food.objects.get_or_create(name=food, space=space) return f diff --git a/cookbook/helper/permission_helper.py b/cookbook/helper/permission_helper.py index 1ac842cd..73946853 100644 --- a/cookbook/helper/permission_helper.py +++ b/cookbook/helper/permission_helper.py @@ -1,6 +1,8 @@ """ Source: https://djangosnippets.org/snippets/1703/ """ +from django.conf import settings +from django.core.cache import caches from django.views.generic.detail import SingleObjectTemplateResponseMixin from django.views.generic.edit import ModelFormMixin @@ -90,7 +92,18 @@ def share_link_valid(recipe, share): :return: true if a share link with the given recipe and uuid exists """ try: - return True if ShareLink.objects.filter(recipe=recipe, uuid=share).exists() else False + CACHE_KEY = f'recipe_share_{recipe.pk}_{share}' + if c := caches['default'].get(CACHE_KEY, False): + return c + + if link := ShareLink.objects.filter(recipe=recipe, uuid=share, abuse_blocked=False).first(): + if 0 < settings.SHARING_LIMIT < link.request_count: + return False + link.request_count += 1 + link.save() + caches['default'].set(CACHE_KEY, True, timeout=3) + return True + return False except ValidationError: return False @@ -121,15 +134,18 @@ class GroupRequiredMixin(object): def dispatch(self, request, *args, **kwargs): if not has_group_permission(request.user, self.groups_required): if not request.user.is_authenticated: - messages.add_message(request, messages.ERROR, _('You are not logged in and therefore cannot view this page!')) + messages.add_message(request, messages.ERROR, + _('You are not logged in and therefore cannot view this page!')) return HttpResponseRedirect(reverse_lazy('account_login') + '?next=' + request.path) else: - messages.add_message(request, messages.ERROR, _('You do not have the required permissions to view this page!')) + messages.add_message(request, messages.ERROR, + _('You do not have the required permissions to view this page!')) return HttpResponseRedirect(reverse_lazy('index')) try: obj = self.get_object() if obj.get_space() != request.space: - messages.add_message(request, messages.ERROR, _('You do not have the required permissions to view this page!')) + messages.add_message(request, messages.ERROR, + _('You do not have the required permissions to view this page!')) return HttpResponseRedirect(reverse_lazy('index')) except AttributeError: pass @@ -141,17 +157,20 @@ class OwnerRequiredMixin(object): def dispatch(self, request, *args, **kwargs): if not request.user.is_authenticated: - messages.add_message(request, messages.ERROR, _('You are not logged in and therefore cannot view this page!')) + messages.add_message(request, messages.ERROR, + _('You are not logged in and therefore cannot view this page!')) return HttpResponseRedirect(reverse_lazy('account_login') + '?next=' + request.path) else: if not is_object_owner(request.user, self.get_object()): - messages.add_message(request, messages.ERROR, _('You cannot interact with this object as it is not owned by you!')) + messages.add_message(request, messages.ERROR, + _('You cannot interact with this object as it is not owned by you!')) return HttpResponseRedirect(reverse('index')) try: obj = self.get_object() if obj.get_space() != request.space: - messages.add_message(request, messages.ERROR, _('You do not have the required permissions to view this page!')) + messages.add_message(request, messages.ERROR, + _('You do not have the required permissions to view this page!')) return HttpResponseRedirect(reverse_lazy('index')) except AttributeError: pass diff --git a/cookbook/integration/Pepperplate.py b/cookbook/integration/Pepperplate.py index f5d463dd..76615570 100644 --- a/cookbook/integration/Pepperplate.py +++ b/cookbook/integration/Pepperplate.py @@ -40,7 +40,7 @@ class Pepperplate(Integration): recipe = Recipe.objects.create(name=title, description=description, created_by=self.request.user, internal=True, space=self.request.space) step = Step.objects.create( - instruction='\n'.join(directions) + '\n\n' + instruction='\n'.join(directions) + '\n\n', space=self.request.space, ) for ingredient in ingredients: @@ -49,7 +49,7 @@ class Pepperplate(Integration): f = get_food(ingredient, self.request.space) u = get_unit(unit, self.request.space) step.ingredients.add(Ingredient.objects.create( - food=f, unit=u, amount=amount, note=note + food=f, unit=u, amount=amount, note=note, space=self.request.space, )) recipe.steps.add(step) diff --git a/cookbook/integration/cheftap.py b/cookbook/integration/cheftap.py index 095ba103..4dd67830 100644 --- a/cookbook/integration/cheftap.py +++ b/cookbook/integration/cheftap.py @@ -38,7 +38,7 @@ class ChefTap(Integration): recipe = Recipe.objects.create(name=title, created_by=self.request.user, internal=True, space=self.request.space, ) - step = Step.objects.create(instruction='\n'.join(directions)) + step = Step.objects.create(instruction='\n'.join(directions), space=self.request.space,) if source_url != '': step.instruction += '\n' + source_url @@ -50,7 +50,7 @@ class ChefTap(Integration): f = get_food(ingredient, self.request.space) u = get_unit(unit, self.request.space) step.ingredients.add(Ingredient.objects.create( - food=f, unit=u, amount=amount, note=note + food=f, unit=u, amount=amount, note=note, space=self.request.space, )) recipe.steps.add(step) diff --git a/cookbook/integration/chowdown.py b/cookbook/integration/chowdown.py index 05e28355..4b36e3b2 100644 --- a/cookbook/integration/chowdown.py +++ b/cookbook/integration/chowdown.py @@ -3,6 +3,7 @@ import re from io import BytesIO from zipfile import ZipFile +from cookbook.helper.image_processing import get_filetype from cookbook.helper.ingredient_parser import parse, get_food, get_unit from cookbook.integration.integration import Integration from cookbook.models import Recipe, Step, Food, Unit, Ingredient, Keyword @@ -54,7 +55,7 @@ class Chowdown(Integration): recipe.keywords.add(keyword) step = Step.objects.create( - instruction='\n'.join(directions) + '\n\n' + '\n'.join(descriptions) + instruction='\n'.join(directions) + '\n\n' + '\n'.join(descriptions), space=self.request.space, ) for ingredient in ingredients: @@ -62,7 +63,7 @@ class Chowdown(Integration): f = get_food(ingredient, self.request.space) u = get_unit(unit, self.request.space) step.ingredients.add(Ingredient.objects.create( - food=f, unit=u, amount=amount, note=note + food=f, unit=u, amount=amount, note=note, space=self.request.space, )) recipe.steps.add(step) @@ -71,7 +72,7 @@ class Chowdown(Integration): import_zip = ZipFile(f['file']) for z in import_zip.filelist: if re.match(f'^images/{image}$', z.filename): - self.import_recipe_image(recipe, BytesIO(import_zip.read(z.filename))) + self.import_recipe_image(recipe, BytesIO(import_zip.read(z.filename)), filetype=get_filetype(z.filename)) return recipe diff --git a/cookbook/integration/default.py b/cookbook/integration/default.py index 7140290e..1fb16e7f 100644 --- a/cookbook/integration/default.py +++ b/cookbook/integration/default.py @@ -1,9 +1,11 @@ import json from io import BytesIO +from re import match from zipfile import ZipFile from rest_framework.renderers import JSONRenderer +from cookbook.helper.image_processing import get_filetype from cookbook.integration.integration import Integration from cookbook.serializer import RecipeExportSerializer @@ -15,8 +17,9 @@ class Default(Integration): recipe_string = recipe_zip.read('recipe.json').decode("utf-8") recipe = self.decode_recipe(recipe_string) - if 'image.png' in recipe_zip.namelist(): - self.import_recipe_image(recipe, BytesIO(recipe_zip.read('image.png'))) + images = list(filter(lambda v: match('image.*', v), recipe_zip.namelist())) + if images: + self.import_recipe_image(recipe, BytesIO(recipe_zip.read(images[0])), filetype=get_filetype(images[0])) return recipe def decode_recipe(self, string): diff --git a/cookbook/integration/domestica.py b/cookbook/integration/domestica.py index ec9f5ce2..da55e7c3 100644 --- a/cookbook/integration/domestica.py +++ b/cookbook/integration/domestica.py @@ -28,7 +28,7 @@ class Domestica(Integration): recipe.save() step = Step.objects.create( - instruction=file['directions'] + instruction=file['directions'], space=self.request.space, ) if file['source'] != '': @@ -40,12 +40,12 @@ class Domestica(Integration): f = get_food(ingredient, self.request.space) u = get_unit(unit, self.request.space) step.ingredients.add(Ingredient.objects.create( - food=f, unit=u, amount=amount, note=note + food=f, unit=u, amount=amount, note=note, space=self.request.space, )) recipe.steps.add(step) if file['image'] != '': - self.import_recipe_image(recipe, BytesIO(base64.b64decode(file['image'].replace('data:image/jpeg;base64,', '')))) + self.import_recipe_image(recipe, BytesIO(base64.b64decode(file['image'].replace('data:image/jpeg;base64,', ''))), filetype='.jpeg') return recipe diff --git a/cookbook/integration/integration.py b/cookbook/integration/integration.py index fb48308c..b7ee9f29 100644 --- a/cookbook/integration/integration.py +++ b/cookbook/integration/integration.py @@ -1,5 +1,6 @@ import datetime import json +import os import re import uuid from io import BytesIO, StringIO @@ -12,6 +13,7 @@ from django.utils.translation import gettext as _ from django_scopes import scope from cookbook.forms import ImportExportBase +from cookbook.helper.image_processing import get_filetype from cookbook.models import Keyword, Recipe @@ -59,7 +61,7 @@ class Integration: recipe_zip_obj.writestr(filename, recipe_stream.getvalue()) recipe_stream.close() try: - recipe_zip_obj.writestr('image.png', r.image.file.read()) + recipe_zip_obj.writestr(f'image{get_filetype(r.image.file.name)}', r.image.file.read()) except ValueError: pass @@ -107,35 +109,52 @@ class Integration: for f in files: if 'RecipeKeeper' in f['name']: import_zip = ZipFile(f['file']) + file_list = [] for z in import_zip.filelist: if self.import_file_name_filter(z): - data_list = self.split_recipe_file(import_zip.read(z.filename).decode('utf-8')) - for d in data_list: - recipe = self.get_recipe_from_file(d) - recipe.keywords.add(self.keyword) - il.msg += f'{recipe.pk} - {recipe.name} \n' - self.handle_duplicates(recipe, import_duplicates) + file_list.append(z) + il.total_recipes += len(file_list) + + for z in file_list: + data_list = self.split_recipe_file(import_zip.read(z.filename).decode('utf-8')) + for d in data_list: + recipe = self.get_recipe_from_file(d) + recipe.keywords.add(self.keyword) + il.msg += f'{recipe.pk} - {recipe.name} \n' + self.handle_duplicates(recipe, import_duplicates) + il.imported_recipes += 1 + il.save() import_zip.close() elif '.zip' in f['name'] or '.paprikarecipes' in f['name']: import_zip = ZipFile(f['file']) + file_list = [] for z in import_zip.filelist: if self.import_file_name_filter(z): - try: - recipe = self.get_recipe_from_file(BytesIO(import_zip.read(z.filename))) - recipe.keywords.add(self.keyword) - il.msg += f'{recipe.pk} - {recipe.name} \n' - self.handle_duplicates(recipe, import_duplicates) - except Exception as e: - il.msg += f'-------------------- \n ERROR \n{e}\n--------------------\n' + file_list.append(z) + il.total_recipes += len(file_list) + + for z in file_list: + try: + recipe = self.get_recipe_from_file(BytesIO(import_zip.read(z.filename))) + recipe.keywords.add(self.keyword) + il.msg += f'{recipe.pk} - {recipe.name} \n' + self.handle_duplicates(recipe, import_duplicates) + il.imported_recipes += 1 + il.save() + except Exception as e: + il.msg += f'-------------------- \n ERROR \n{e}\n--------------------\n' import_zip.close() elif '.json' in f['name'] or '.txt' in f['name']: data_list = self.split_recipe_file(f['file']) + il.total_recipes += len(data_list) for d in data_list: try: recipe = self.get_recipe_from_file(d) recipe.keywords.add(self.keyword) il.msg += f'{recipe.pk} - {recipe.name} \n' self.handle_duplicates(recipe, import_duplicates) + il.imported_recipes += 1 + il.save() except Exception as e: il.msg += f'-------------------- \n ERROR \n{e}\n--------------------\n' elif '.rtk' in f['name']: @@ -143,12 +162,16 @@ class Integration: for z in import_zip.filelist: if self.import_file_name_filter(z): data_list = self.split_recipe_file(import_zip.read(z.filename).decode('utf-8')) + il.total_recipes += len(data_list) + for d in data_list: try: recipe = self.get_recipe_from_file(d) recipe.keywords.add(self.keyword) il.msg += f'{recipe.pk} - {recipe.name} \n' self.handle_duplicates(recipe, import_duplicates) + il.imported_recipes += 1 + il.save() except Exception as e: il.msg += f'-------------------- \n ERROR \n{e}\n--------------------\n' import_zip.close() @@ -160,6 +183,9 @@ class Integration: except BadZipFile: il.msg += 'ERROR ' + _( 'Importer expected a .zip file. Did you choose the correct importer type for your data ?') + '\n' + except: + il.msg += 'ERROR ' + _( + 'An unexpected error occurred during the import. Please make sure you have uploaded a valid file.') + '\n' if len(self.ignored_recipes) > 0: il.msg += '\n' + _( @@ -182,13 +208,14 @@ class Integration: self.ignored_recipes.append(recipe.name) @staticmethod - def import_recipe_image(recipe, image_file): + def import_recipe_image(recipe, image_file, filetype='.jpeg'): """ Adds an image to a recipe naming it correctly :param recipe: Recipe object :param image_file: ByteIO stream containing the image + :param filetype: type of file to write bytes to, default to .jpeg if unknown """ - recipe.image = File(image_file, name=f'{uuid.uuid4()}_{recipe.pk}.png') + recipe.image = File(image_file, name=f'{uuid.uuid4()}_{recipe.pk}{filetype}') recipe.save() def get_recipe_from_file(self, file): @@ -217,4 +244,3 @@ class Integration: - data - string content for file to get created in export zip """ raise NotImplementedError('Method not implemented in integration') - diff --git a/cookbook/integration/mealie.py b/cookbook/integration/mealie.py index a67640e0..e1144472 100644 --- a/cookbook/integration/mealie.py +++ b/cookbook/integration/mealie.py @@ -3,6 +3,7 @@ import re from io import BytesIO from zipfile import ZipFile +from cookbook.helper.image_processing import get_filetype from cookbook.helper.ingredient_parser import parse, get_food, get_unit from cookbook.integration.integration import Integration from cookbook.models import Recipe, Step, Food, Unit, Ingredient @@ -11,7 +12,7 @@ from cookbook.models import Recipe, Step, Food, Unit, Ingredient class Mealie(Integration): def import_file_name_filter(self, zip_info_object): - return re.match(r'^recipes/([A-Za-z\d-])+.json$', zip_info_object.filename) + return re.match(r'^recipes/([A-Za-z\d-])+/([A-Za-z\d-])+.json$', zip_info_object.filename) def get_recipe_from_file(self, file): recipe_json = json.loads(file.getvalue().decode("utf-8")) @@ -25,9 +26,9 @@ class Mealie(Integration): # TODO parse times (given in PT2H3M ) ingredients_added = False - for s in recipe_json['recipeInstructions']: + for s in recipe_json['recipe_instructions']: step = Step.objects.create( - instruction=s['text'] + instruction=s['text'], space=self.request.space, ) if not ingredients_added: ingredients_added = True @@ -35,21 +36,31 @@ class Mealie(Integration): if len(recipe_json['description'].strip()) > 500: step.instruction = recipe_json['description'].strip() + '\n\n' + step.instruction - for ingredient in recipe_json['recipeIngredient']: - amount, unit, ingredient, note = parse(ingredient) - f = get_food(ingredient, self.request.space) - u = get_unit(unit, self.request.space) - step.ingredients.add(Ingredient.objects.create( - food=f, unit=u, amount=amount, note=note - )) + for ingredient in recipe_json['recipe_ingredient']: + try: + if ingredient['food']: + f = get_food(ingredient['food'], self.request.space) + u = get_unit(ingredient['unit'], self.request.space) + amount = ingredient['quantity'] + note = ingredient['note'] + else: + amount, unit, ingredient, note = parse(ingredient['note']) + f = get_food(ingredient, self.request.space) + u = get_unit(unit, self.request.space) + step.ingredients.add(Ingredient.objects.create( + food=f, unit=u, amount=amount, note=note, space=self.request.space, + )) + except: + pass recipe.steps.add(step) for f in self.files: if '.zip' in f['name']: import_zip = ZipFile(f['file']) - for z in import_zip.filelist: - if re.match(f'^images/{recipe_json["slug"]}.jpg$', z.filename): - self.import_recipe_image(recipe, BytesIO(import_zip.read(z.filename))) + try: + self.import_recipe_image(recipe, BytesIO(import_zip.read(f'recipes/{recipe_json["slug"]}/images/min-original.webp')), filetype=get_filetype(f'recipes/{recipe_json["slug"]}/images/original')) + except: + pass return recipe diff --git a/cookbook/integration/mealmaster.py b/cookbook/integration/mealmaster.py index 01f58331..0baf4157 100644 --- a/cookbook/integration/mealmaster.py +++ b/cookbook/integration/mealmaster.py @@ -44,7 +44,7 @@ class MealMaster(Integration): recipe.keywords.add(keyword) step = Step.objects.create( - instruction='\n'.join(directions) + '\n\n' + instruction='\n'.join(directions) + '\n\n', space=self.request.space, ) for ingredient in ingredients: @@ -53,7 +53,7 @@ class MealMaster(Integration): f = get_food(ingredient, self.request.space) u = get_unit(unit, self.request.space) step.ingredients.add(Ingredient.objects.create( - food=f, unit=u, amount=amount, note=note + food=f, unit=u, amount=amount, note=note, space=self.request.space, )) recipe.steps.add(step) diff --git a/cookbook/integration/nextcloud_cookbook.py b/cookbook/integration/nextcloud_cookbook.py index e52e383f..2e668f7e 100644 --- a/cookbook/integration/nextcloud_cookbook.py +++ b/cookbook/integration/nextcloud_cookbook.py @@ -3,6 +3,7 @@ import re from io import BytesIO from zipfile import ZipFile +from cookbook.helper.image_processing import get_filetype from cookbook.helper.ingredient_parser import parse, get_food, get_unit from cookbook.integration.integration import Integration from cookbook.models import Recipe, Step, Food, Unit, Ingredient @@ -29,7 +30,7 @@ class NextcloudCookbook(Integration): ingredients_added = False for s in recipe_json['recipeInstructions']: step = Step.objects.create( - instruction=s + instruction=s, space=self.request.space, ) if not ingredients_added: if len(recipe_json['description'].strip()) > 500: @@ -42,7 +43,7 @@ class NextcloudCookbook(Integration): f = get_food(ingredient, self.request.space) u = get_unit(unit, self.request.space) step.ingredients.add(Ingredient.objects.create( - food=f, unit=u, amount=amount, note=note + food=f, unit=u, amount=amount, note=note, space=self.request.space, )) recipe.steps.add(step) @@ -51,7 +52,7 @@ class NextcloudCookbook(Integration): import_zip = ZipFile(f['file']) for z in import_zip.filelist: if re.match(f'^Recipes/{recipe.name}/full.jpg$', z.filename): - self.import_recipe_image(recipe, BytesIO(import_zip.read(z.filename))) + self.import_recipe_image(recipe, BytesIO(import_zip.read(z.filename)), filetype=get_filetype(z.filename)) return recipe diff --git a/cookbook/integration/openeats.py b/cookbook/integration/openeats.py index 09edef68..e258becb 100644 --- a/cookbook/integration/openeats.py +++ b/cookbook/integration/openeats.py @@ -24,13 +24,13 @@ class OpenEats(Integration): if file["source"] != '': instructions += file["source"] - step = Step.objects.create(instruction=instructions) + step = Step.objects.create(instruction=instructions, space=self.request.space,) for ingredient in file['ingredients']: f = get_food(ingredient['food'], self.request.space) u = get_unit(ingredient['unit'], self.request.space) step.ingredients.add(Ingredient.objects.create( - food=f, unit=u, amount=ingredient['amount'] + food=f, unit=u, amount=ingredient['amount'], space=self.request.space, )) recipe.steps.add(step) diff --git a/cookbook/integration/paprika.py b/cookbook/integration/paprika.py index 40dcc0e8..6a8c5076 100644 --- a/cookbook/integration/paprika.py +++ b/cookbook/integration/paprika.py @@ -55,7 +55,7 @@ class Paprika(Integration): pass step = Step.objects.create( - instruction=instructions + instruction=instructions, space=self.request.space, ) if len(recipe_json['description'].strip()) > 500: @@ -73,7 +73,7 @@ class Paprika(Integration): f = get_food(ingredient, self.request.space) u = get_unit(unit, self.request.space) step.ingredients.add(Ingredient.objects.create( - food=f, unit=u, amount=amount, note=note + food=f, unit=u, amount=amount, note=note, space=self.request.space, )) except AttributeError: pass @@ -81,6 +81,6 @@ class Paprika(Integration): recipe.steps.add(step) if recipe_json.get("photo_data", None): - self.import_recipe_image(recipe, BytesIO(base64.b64decode(recipe_json['photo_data']))) + self.import_recipe_image(recipe, BytesIO(base64.b64decode(recipe_json['photo_data'])), filetype='.jpeg') return recipe diff --git a/cookbook/integration/recettetek.py b/cookbook/integration/recettetek.py index 2f51f47c..c6443e0a 100644 --- a/cookbook/integration/recettetek.py +++ b/cookbook/integration/recettetek.py @@ -7,6 +7,7 @@ from zipfile import ZipFile import imghdr from django.utils.translation import gettext as _ +from cookbook.helper.image_processing import get_filetype from cookbook.helper.ingredient_parser import parse, get_food, get_unit from cookbook.integration.integration import Integration from cookbook.models import Recipe, Step, Food, Unit, Ingredient, Keyword @@ -25,7 +26,7 @@ class RecetteTek(Integration): recipe_list = [r for r in recipe_json] return recipe_list - + def get_recipe_from_file(self, file): # Create initial recipe with just a title and a decription @@ -44,7 +45,7 @@ class RecetteTek(Integration): if not instructions: instructions = '' - step = Step.objects.create(instruction=instructions) + step = Step.objects.create(instruction=instructions, space=self.request.space,) # Append the original import url to the step (if it exists) try: @@ -53,7 +54,7 @@ class RecetteTek(Integration): step.save() except Exception as e: print(recipe.name, ': failed to import source url ', str(e)) - + try: # Process the ingredients. Assumes 1 ingredient per line. for ingredient in file['ingredients'].split('\n'): @@ -62,7 +63,7 @@ class RecetteTek(Integration): f = get_food(ingredient, self.request.space) u = get_unit(unit, self.request.space) step.ingredients.add(Ingredient.objects.create( - food=f, unit=u, amount=amount, note=note + food=f, unit=u, amount=amount, note=note, space=self.request.space, )) except Exception as e: print(recipe.name, ': failed to parse recipe ingredients ', str(e)) @@ -96,7 +97,7 @@ class RecetteTek(Integration): recipe.waiting_time = int(file['cookingTime']) except Exception as e: print(recipe.name, ': failed to parse cooking time ', str(e)) - + recipe.save() # Import the recipe keywords @@ -110,20 +111,20 @@ class RecetteTek(Integration): pass # TODO: Parse Nutritional Information - + # Import the original image from the zip file, if we cannot do that, attempt to download it again. try: - if file['pictures'][0] !='': + if file['pictures'][0] != '': image_file_name = file['pictures'][0].split('/')[-1] for f in self.files: if '.rtk' in f['name']: import_zip = ZipFile(f['file']) - self.import_recipe_image(recipe, BytesIO(import_zip.read(image_file_name))) + self.import_recipe_image(recipe, BytesIO(import_zip.read(image_file_name)), filetype=get_filetype(image_file_name)) else: if file['originalPicture'] != '': - response=requests.get(file['originalPicture']) + response = requests.get(file['originalPicture']) if imghdr.what(BytesIO(response.content)) != None: - self.import_recipe_image(recipe, BytesIO(response.content)) + self.import_recipe_image(recipe, BytesIO(response.content), filetype=get_filetype(file['originalPicture'])) else: raise Exception("Original image failed to download.") except Exception as e: diff --git a/cookbook/integration/recipekeeper.py b/cookbook/integration/recipekeeper.py index bd5e241f..f819a772 100644 --- a/cookbook/integration/recipekeeper.py +++ b/cookbook/integration/recipekeeper.py @@ -41,7 +41,7 @@ class RecipeKeeper(Integration): except AttributeError: pass - step = Step.objects.create(instruction='') + step = Step.objects.create(instruction='', space=self.request.space,) for ingredient in file.find("div", {"itemprop": "recipeIngredients"}).findChildren("p"): if ingredient.text == "": @@ -50,7 +50,7 @@ class RecipeKeeper(Integration): f = get_food(ingredient, self.request.space) u = get_unit(unit, self.request.space) step.ingredients.add(Ingredient.objects.create( - food=f, unit=u, amount=amount, note=note + food=f, unit=u, amount=amount, note=note, space=self.request.space, )) for s in file.find("div", {"itemprop": "recipeDirections"}).find_all("p"): @@ -70,7 +70,7 @@ class RecipeKeeper(Integration): for f in self.files: if '.zip' in f['name']: import_zip = ZipFile(f['file']) - self.import_recipe_image(recipe, BytesIO(import_zip.read(file.find("img", class_="recipe-photo").get("src")))) + self.import_recipe_image(recipe, BytesIO(import_zip.read(file.find("img", class_="recipe-photo").get("src"))), filetype='.jpeg') except Exception as e: pass diff --git a/cookbook/integration/recipesage.py b/cookbook/integration/recipesage.py index bba76d08..a76a88fb 100644 --- a/cookbook/integration/recipesage.py +++ b/cookbook/integration/recipesage.py @@ -36,7 +36,7 @@ class RecipeSage(Integration): ingredients_added = False for s in file['recipeInstructions']: step = Step.objects.create( - instruction=s['text'] + instruction=s['text'], space=self.request.space, ) if not ingredients_added: ingredients_added = True @@ -46,7 +46,7 @@ class RecipeSage(Integration): f = get_food(ingredient, self.request.space) u = get_unit(unit, self.request.space) step.ingredients.add(Ingredient.objects.create( - food=f, unit=u, amount=amount, note=note + food=f, unit=u, amount=amount, note=note, space=self.request.space, )) recipe.steps.add(step) diff --git a/cookbook/integration/rezkonv.py b/cookbook/integration/rezkonv.py index 2a2bbe18..51145f05 100644 --- a/cookbook/integration/rezkonv.py +++ b/cookbook/integration/rezkonv.py @@ -43,7 +43,7 @@ class RezKonv(Integration): recipe.keywords.add(keyword) step = Step.objects.create( - instruction='\n'.join(directions) + '\n\n' + instruction='\n'.join(directions) + '\n\n', space=self.request.space, ) for ingredient in ingredients: @@ -52,7 +52,7 @@ class RezKonv(Integration): f = get_food(ingredient, self.request.space) u = get_unit(unit, self.request.space) step.ingredients.add(Ingredient.objects.create( - food=f, unit=u, amount=amount, note=note + food=f, unit=u, amount=amount, note=note, space=self.request.space, )) recipe.steps.add(step) diff --git a/cookbook/integration/safron.py b/cookbook/integration/safron.py index f3c439a3..b0a30be3 100644 --- a/cookbook/integration/safron.py +++ b/cookbook/integration/safron.py @@ -43,14 +43,14 @@ class Safron(Integration): recipe = Recipe.objects.create(name=title, description=description, created_by=self.request.user, internal=True, space=self.request.space, ) - step = Step.objects.create(instruction='\n'.join(directions)) + step = Step.objects.create(instruction='\n'.join(directions), space=self.request.space,) for ingredient in ingredients: amount, unit, ingredient, note = parse(ingredient) f = get_food(ingredient, self.request.space) u = get_unit(unit, self.request.space) step.ingredients.add(Ingredient.objects.create( - food=f, unit=u, amount=amount, note=note + food=f, unit=u, amount=amount, note=note, space=self.request.space, )) recipe.steps.add(step) diff --git a/cookbook/locale/ca/LC_MESSAGES/django.po b/cookbook/locale/ca/LC_MESSAGES/django.po index c8c04e8f..293d5a71 100644 --- a/cookbook/locale/ca/LC_MESSAGES/django.po +++ b/cookbook/locale/ca/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-04-11 15:09+0200\n" +"POT-Creation-Date: 2021-06-12 20:30+0200\n" "PO-Revision-Date: 2020-06-02 19:28+0000\n" "Last-Translator: Miguel Canteras , 2021\n" "Language-Team: Catalan (https://www.transifex.com/django-recipes/" @@ -24,14 +24,15 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: .\cookbook\filters.py:23 .\cookbook\templates\base.html:91 -#: .\cookbook\templates\forms\edit_internal_recipe.html:219 +#: .\cookbook\filters.py:23 .\cookbook\templates\base.html:98 +#: .\cookbook\templates\forms\edit_internal_recipe.html:246 #: .\cookbook\templates\forms\ingredients.html:34 -#: .\cookbook\templates\stats.html:28 .\cookbook\views\lists.py:67 +#: .\cookbook\templates\space.html:37 .\cookbook\templates\stats.html:28 +#: .\cookbook\templates\url_import.html:270 .\cookbook\views\lists.py:67 msgid "Ingredients" msgstr "Ingredients" -#: .\cookbook\forms.py:45 +#: .\cookbook\forms.py:49 msgid "" "Color of the top navigation bar. Not all colors work with all themes, just " "try them out!" @@ -39,13 +40,13 @@ msgstr "" "Color de la barra de navegació superior. No tots els colors funcionen amb " "tots els temes, només cal provar-los." -#: .\cookbook\forms.py:46 +#: .\cookbook\forms.py:51 msgid "Default Unit to be used when inserting a new ingredient into a recipe." msgstr "" "Unitat per defecte que s'utilitzarà quan s'insereixi un ingredient nou en " "una recepta." -#: .\cookbook\forms.py:47 +#: .\cookbook\forms.py:53 msgid "" "Enables support for fractions in ingredient amounts (e.g. convert decimals " "to fractions automatically)" @@ -53,7 +54,7 @@ msgstr "" "Permet l'ús de fraccions de quantitats d'ingredients (p.ex.: converteix els " "decimals a fraccions automàticament)" -#: .\cookbook\forms.py:48 +#: .\cookbook\forms.py:56 msgid "" "Users with whom newly created meal plan/shopping list entries should be " "shared by default." @@ -61,19 +62,19 @@ msgstr "" "Els usuaris que han creat elements d'un pla de menjars/llistat de compra " "s'haurien de compartir per defecte." -#: .\cookbook\forms.py:49 +#: .\cookbook\forms.py:58 msgid "Show recently viewed recipes on search page." msgstr "Mostra les receptes vistes recentment a la pàgina de cerca." -#: .\cookbook\forms.py:50 +#: .\cookbook\forms.py:59 msgid "Number of decimals to round ingredients." msgstr "Nombre de decimals dels ingredients." -#: .\cookbook\forms.py:51 +#: .\cookbook\forms.py:60 msgid "If you want to be able to create and see comments underneath recipes." msgstr "Si vols poder crear i veure comentaris a sota de les receptes." -#: .\cookbook\forms.py:53 +#: .\cookbook\forms.py:62 msgid "" "Setting to 0 will disable auto sync. When viewing a shopping list the list " "is updated every set seconds to sync changes someone else might have made. " @@ -86,11 +87,11 @@ msgstr "" "diverses persones, però pot fer servir una mica de dades mòbils. Si és " "inferior al límit d’instància, es restablirà quan es desa." -#: .\cookbook\forms.py:56 +#: .\cookbook\forms.py:65 msgid "Makes the navbar stick to the top of the page." msgstr "" -#: .\cookbook\forms.py:72 +#: .\cookbook\forms.py:81 msgid "" "Both fields are optional. If none are given the username will be displayed " "instead" @@ -98,91 +99,94 @@ msgstr "" "Tots dos camps són opcionals. Si no se'n dóna cap, es mostrarà el nom " "d'usuari" -#: .\cookbook\forms.py:93 .\cookbook\forms.py:315 -#: .\cookbook\templates\forms\edit_internal_recipe.html:45 +#: .\cookbook\forms.py:102 .\cookbook\forms.py:331 +#: .\cookbook\templates\forms\edit_internal_recipe.html:49 +#: .\cookbook\templates\url_import.html:154 msgid "Name" msgstr "Nom" -#: .\cookbook\forms.py:94 .\cookbook\forms.py:316 -#: .\cookbook\templates\base.html:98 -#: .\cookbook\templates\forms\edit_internal_recipe.html:81 -#: .\cookbook\templates\stats.html:24 .\cookbook\templates\url_import.html:202 +#: .\cookbook\forms.py:103 .\cookbook\forms.py:332 +#: .\cookbook\templates\base.html:105 +#: .\cookbook\templates\forms\edit_internal_recipe.html:85 +#: .\cookbook\templates\space.html:33 .\cookbook\templates\stats.html:24 +#: .\cookbook\templates\url_import.html:188 +#: .\cookbook\templates\url_import.html:573 msgid "Keywords" msgstr "Paraules clau" -#: .\cookbook\forms.py:95 +#: .\cookbook\forms.py:104 msgid "Preparation time in minutes" msgstr "Temps de preparació en minuts" -#: .\cookbook\forms.py:96 +#: .\cookbook\forms.py:105 msgid "Waiting time (cooking/baking) in minutes" msgstr "Temps d'espera (cocció/fornejat) en minuts" -#: .\cookbook\forms.py:97 .\cookbook\forms.py:317 +#: .\cookbook\forms.py:106 .\cookbook\forms.py:333 msgid "Path" msgstr "Ruta" -#: .\cookbook\forms.py:98 +#: .\cookbook\forms.py:107 msgid "Storage UID" msgstr "UID Emmagatzematge" -#: .\cookbook\forms.py:121 +#: .\cookbook\forms.py:133 msgid "Default" msgstr "Per defecte" -#: .\cookbook\forms.py:130 +#: .\cookbook\forms.py:144 .\cookbook\templates\url_import.html:90 msgid "" "To prevent duplicates recipes with the same name as existing ones are " "ignored. Check this box to import everything." msgstr "" -#: .\cookbook\forms.py:149 +#: .\cookbook\forms.py:164 msgid "New Unit" msgstr "Nova Unitat" -#: .\cookbook\forms.py:150 +#: .\cookbook\forms.py:165 msgid "New unit that other gets replaced by." msgstr "Nova unitat per la qual se substitueix una altra." -#: .\cookbook\forms.py:155 +#: .\cookbook\forms.py:170 msgid "Old Unit" msgstr "Unitat Antiga" -#: .\cookbook\forms.py:156 +#: .\cookbook\forms.py:171 msgid "Unit that should be replaced." msgstr "Unitat que s’hauria de substituir." -#: .\cookbook\forms.py:172 +#: .\cookbook\forms.py:187 msgid "New Food" msgstr "Menjar Nou" -#: .\cookbook\forms.py:173 +#: .\cookbook\forms.py:188 msgid "New food that other gets replaced by." msgstr "Nou menjar que altres substitueixen." -#: .\cookbook\forms.py:178 +#: .\cookbook\forms.py:193 msgid "Old Food" msgstr "Antic Menjar" -#: .\cookbook\forms.py:179 +#: .\cookbook\forms.py:194 msgid "Food that should be replaced." msgstr "Menjar que s’hauria de substituir." -#: .\cookbook\forms.py:197 +#: .\cookbook\forms.py:212 msgid "Add your comment: " msgstr "Afegir el teu comentari:" -#: .\cookbook\forms.py:238 +#: .\cookbook\forms.py:253 msgid "Leave empty for dropbox and enter app password for nextcloud." msgstr "" "Deixeu-lo buit per a Dropbox i introduïu la contrasenya de l'aplicació per a " "nextcloud." -#: .\cookbook\forms.py:245 +#: .\cookbook\forms.py:260 msgid "Leave empty for nextcloud and enter api token for dropbox." msgstr "Deixeu-lo buit per a nextcloud i introduïu el token API per a Dropbox." -#: .\cookbook\forms.py:253 +#: .\cookbook\forms.py:269 msgid "" "Leave empty for dropbox and enter only base url for nextcloud (/remote." "php/webdav/ is added automatically)" @@ -190,26 +194,26 @@ msgstr "" "Deixeu-lo buit per a Dropbox i introduïu només l'URL base per a nextcloud " "(/remote.php/webdav/ s'afegeix automàticament)" -#: .\cookbook\forms.py:291 +#: .\cookbook\forms.py:307 msgid "Search String" msgstr "Cerca Cadena" -#: .\cookbook\forms.py:318 +#: .\cookbook\forms.py:334 msgid "File ID" msgstr "ID d'Arxiu" -#: .\cookbook\forms.py:354 +#: .\cookbook\forms.py:370 msgid "You must provide at least a recipe or a title." msgstr "Has de proporcionar com a mínim una recepta o un títol." -#: .\cookbook\forms.py:367 +#: .\cookbook\forms.py:383 msgid "You can list default users to share recipes with in the settings." msgstr "" "Podeu llistar els usuaris predeterminats amb els quals voleu compartir " "receptes a la configuració." -#: .\cookbook\forms.py:368 -#: .\cookbook\templates\forms\edit_internal_recipe.html:377 +#: .\cookbook\forms.py:384 +#: .\cookbook\templates\forms\edit_internal_recipe.html:404 msgid "" "You can use markdown to format this field. See the docs here" @@ -217,51 +221,58 @@ msgstr "" "Podeu utilitzar el marcador per donar format a aquest camp. Consulteu els documents aquí " -#: .\cookbook\forms.py:393 -msgid "A username is not required, if left blank the new user can choose one." +#: .\cookbook\forms.py:409 +msgid "Maximum number of users for this space reached." msgstr "" -"No cal un nom d’usuari, si es deixa en blanc el nou usuari en pot triar un." -#: .\cookbook\helper\permission_helper.py:123 -#: .\cookbook\helper\permission_helper.py:129 -#: .\cookbook\helper\permission_helper.py:151 -#: .\cookbook\helper\permission_helper.py:196 -#: .\cookbook\helper\permission_helper.py:210 -#: .\cookbook\helper\permission_helper.py:221 -#: .\cookbook\helper\permission_helper.py:232 .\cookbook\views\data.py:30 -#: .\cookbook\views\views.py:112 .\cookbook\views\views.py:116 -#: .\cookbook\views\views.py:184 -msgid "You do not have the required permissions to view this page!" -msgstr "No teniu els permisos necessaris per veure aquesta pàgina!" +#: .\cookbook\forms.py:415 +msgid "Email address already taken!" +msgstr "" -#: .\cookbook\helper\permission_helper.py:141 +#: .\cookbook\forms.py:423 +msgid "" +"An email address is not required but if present the invite link will be send " +"to the user." +msgstr "" + +#: .\cookbook\forms.py:438 +msgid "Name already taken." +msgstr "" + +#: .\cookbook\forms.py:449 +msgid "Accept Terms and Privacy" +msgstr "" + +#: .\cookbook\helper\AllAuthCustomAdapter.py:30 +msgid "" +"In order to prevent spam, the requested email was not send. Please wait a " +"few minutes and try again." +msgstr "" + +#: .\cookbook\helper\permission_helper.py:124 +#: .\cookbook\helper\permission_helper.py:144 .\cookbook\views\views.py:147 msgid "You are not logged in and therefore cannot view this page!" msgstr "No heu iniciat la sessió i, per tant, no podeu veure aquesta pàgina." -#: .\cookbook\helper\permission_helper.py:145 -#: .\cookbook\helper\permission_helper.py:167 -#: .\cookbook\helper\permission_helper.py:182 +#: .\cookbook\helper\permission_helper.py:127 +#: .\cookbook\helper\permission_helper.py:132 +#: .\cookbook\helper\permission_helper.py:154 +#: .\cookbook\helper\permission_helper.py:199 +#: .\cookbook\helper\permission_helper.py:213 +#: .\cookbook\helper\permission_helper.py:224 +#: .\cookbook\helper\permission_helper.py:235 .\cookbook\views\data.py:39 +#: .\cookbook\views\views.py:158 .\cookbook\views\views.py:165 +#: .\cookbook\views\views.py:253 +msgid "You do not have the required permissions to view this page!" +msgstr "No teniu els permisos necessaris per veure aquesta pàgina!" + +#: .\cookbook\helper\permission_helper.py:148 +#: .\cookbook\helper\permission_helper.py:170 +#: .\cookbook\helper\permission_helper.py:185 msgid "You cannot interact with this object as it is not owned by you!" msgstr "" "No pots interaccionar amb aquest objecte ja que no és de la teva propietat!" -#: .\cookbook\helper\recipe_url_import.py:40 .\cookbook\views\api.py:549 -msgid "The requested site provided malformed data and cannot be read." -msgstr "" -"El lloc sol·licitat proporcionava dades malformades i no es pot llegir." - -#: .\cookbook\helper\recipe_url_import.py:54 -msgid "" -"The requested site does not provide any recognized data format to import the " -"recipe from." -msgstr "" -"El lloc sol·licitat no proporciona cap format de dades reconegut des d’on " -"importar la recepta." - -#: .\cookbook\helper\recipe_url_import.py:160 -msgid "Imported from" -msgstr "Importat des de" - #: .\cookbook\helper\template_helper.py:60 #: .\cookbook\helper\template_helper.py:62 msgid "Could not parse template code." @@ -271,47 +282,58 @@ msgstr "" #: .\cookbook\templates\import.html:14 .\cookbook\templates\import.html:20 #: .\cookbook\templates\import_response.html:7 #: .\cookbook\templates\test.html:14 .\cookbook\templates\test.html:20 -#: .\cookbook\templates\url_import.html:233 .\cookbook\views\delete.py:60 -#: .\cookbook\views\edit.py:190 +#: .\cookbook\templates\url_import.html:27 +#: .\cookbook\templates\url_import.html:101 +#: .\cookbook\templates\url_import.html:123 +#: .\cookbook\templates\url_import.html:317 +#: .\cookbook\templates\url_import.html:604 .\cookbook\views\delete.py:60 +#: .\cookbook\views\edit.py:199 msgid "Import" msgstr "Importar" -#: .\cookbook\integration\integration.py:131 +#: .\cookbook\integration\integration.py:162 msgid "" "Importer expected a .zip file. Did you choose the correct importer type for " "your data ?" msgstr "" -#: .\cookbook\integration\integration.py:134 +#: .\cookbook\integration\integration.py:165 +msgid "" +"An unexpected error occurred during the import. Please make sure you have " +"uploaded a valid file." +msgstr "" + +#: .\cookbook\integration\integration.py:169 msgid "The following recipes were ignored because they already existed:" msgstr "" -#: .\cookbook\integration\integration.py:137 +#: .\cookbook\integration\integration.py:173 #, fuzzy, python-format #| msgid "Imported new recipe!" msgid "Imported %s recipes." msgstr "Nova Recepta importada!" -#: .\cookbook\integration\paprika.py:44 +#: .\cookbook\integration\paprika.py:46 #, fuzzy #| msgid "Note" msgid "Notes" msgstr "Nota" -#: .\cookbook\integration\paprika.py:47 +#: .\cookbook\integration\paprika.py:49 #, fuzzy #| msgid "Information" msgid "Nutritional Information" msgstr "Informació" -#: .\cookbook\integration\paprika.py:50 +#: .\cookbook\integration\paprika.py:53 msgid "Source" msgstr "" #: .\cookbook\integration\safron.py:23 -#: .\cookbook\templates\forms\edit_internal_recipe.html:75 +#: .\cookbook\templates\forms\edit_internal_recipe.html:79 #: .\cookbook\templates\include\log_cooking.html:16 -#: .\cookbook\templates\url_import.html:84 +#: .\cookbook\templates\url_import.html:224 +#: .\cookbook\templates\url_import.html:455 msgid "Servings" msgstr "Racions" @@ -320,11 +342,11 @@ msgid "Waiting time" msgstr "Temps d'espera" #: .\cookbook\integration\safron.py:27 -#: .\cookbook\templates\forms\edit_internal_recipe.html:69 +#: .\cookbook\templates\forms\edit_internal_recipe.html:73 msgid "Preparation Time" msgstr "Temps de preparació" -#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:71 +#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:78 #: .\cookbook\templates\forms\ingredients.html:7 #: .\cookbook\templates\index.html:7 msgid "Cookbook" @@ -350,44 +372,74 @@ msgstr "Sopar" msgid "Other" msgstr "Un altre" -#: .\cookbook\models.py:110 .\cookbook\templates\shopping_list.html:48 +#: .\cookbook\models.py:71 +msgid "" +"Maximum file storage for space in MB. 0 for unlimited, -1 to disable file " +"upload." +msgstr "" + +#: .\cookbook\models.py:121 .\cookbook\templates\search.html:7 +#: .\cookbook\templates\shopping_list.html:52 msgid "Search" msgstr "Cerca" -#: .\cookbook\models.py:111 .\cookbook\templates\base.html:85 +#: .\cookbook\models.py:122 .\cookbook\templates\base.html:92 #: .\cookbook\templates\meal_plan.html:5 .\cookbook\views\delete.py:152 -#: .\cookbook\views\edit.py:224 .\cookbook\views\new.py:188 +#: .\cookbook\views\edit.py:233 .\cookbook\views\new.py:201 msgid "Meal-Plan" msgstr "Plans de Menjar" -#: .\cookbook\models.py:112 .\cookbook\templates\base.html:82 +#: .\cookbook\models.py:123 .\cookbook\templates\base.html:89 msgid "Books" msgstr "Receptes" -#: .\cookbook\models.py:119 +#: .\cookbook\models.py:131 msgid "Small" msgstr "Petit" -#: .\cookbook\models.py:119 +#: .\cookbook\models.py:131 msgid "Large" msgstr "Gran" -#: .\cookbook\models.py:327 -#: .\cookbook\templates\forms\edit_internal_recipe.html:198 +#: .\cookbook\models.py:131 .\cookbook\templates\generic\new_template.html:6 +#: .\cookbook\templates\generic\new_template.html:14 +#: .\cookbook\templates\meal_plan.html:323 +msgid "New" +msgstr "Nova" + +#: .\cookbook\models.py:340 +#: .\cookbook\templates\forms\edit_internal_recipe.html:202 msgid "Text" msgstr "Text" -#: .\cookbook\models.py:327 -#: .\cookbook\templates\forms\edit_internal_recipe.html:199 +#: .\cookbook\models.py:340 +#: .\cookbook\templates\forms\edit_internal_recipe.html:203 msgid "Time" msgstr "Temps" +#: .\cookbook\models.py:340 +#: .\cookbook\templates\forms\edit_internal_recipe.html:204 +#: .\cookbook\templates\forms\edit_internal_recipe.html:218 +#, fuzzy +#| msgid "File ID" +msgid "File" +msgstr "ID d'Arxiu" + +#: .\cookbook\serializer.py:109 +msgid "File uploads are not enabled for this Space." +msgstr "" + +#: .\cookbook\serializer.py:117 +msgid "You have reached your file upload limit." +msgstr "" + #: .\cookbook\tables.py:35 .\cookbook\templates\books.html:36 #: .\cookbook\templates\generic\edit_template.html:6 #: .\cookbook\templates\generic\edit_template.html:14 #: .\cookbook\templates\meal_plan.html:281 #: .\cookbook\templates\recipes_table.html:82 #: .\cookbook\templates\shopping_list.html:33 +#: .\cookbook\templates\space.html:84 msgid "Edit" msgstr "Edita" @@ -401,10 +453,6 @@ msgstr "Edita" msgid "Delete" msgstr "Esborra" -#: .\cookbook\tables.py:144 -msgid "Link" -msgstr "Enllaç" - #: .\cookbook\templates\404.html:5 msgid "404 Error" msgstr "Error 404" @@ -421,21 +469,124 @@ msgstr "Porta'm a Casa" msgid "Report a Bug" msgstr "Reporta Errada" -#: .\cookbook\templates\account\login.html:7 -#: .\cookbook\templates\base.html:170 +#: .\cookbook\templates\account\email.html:6 +#: .\cookbook\templates\account\email.html:9 +msgid "E-mail Addresses" +msgstr "" + +#: .\cookbook\templates\account\email.html:11 +msgid "The following e-mail addresses are associated with your account:" +msgstr "" + +#: .\cookbook\templates\account\email.html:28 +msgid "Verified" +msgstr "" + +#: .\cookbook\templates\account\email.html:30 +msgid "Unverified" +msgstr "" + +#: .\cookbook\templates\account\email.html:32 +msgid "Primary" +msgstr "" + +#: .\cookbook\templates\account\email.html:39 +#, fuzzy +#| msgid "Make Header" +msgid "Make Primary" +msgstr "Crea Capçalera" + +#: .\cookbook\templates\account\email.html:41 +msgid "Re-send Verification" +msgstr "" + +#: .\cookbook\templates\account\email.html:42 +#: .\cookbook\templates\socialaccount\connections.html:36 +msgid "Remove" +msgstr "Eliminar" + +#: .\cookbook\templates\account\email.html:50 +#, fuzzy +#| msgid "Warning" +msgid "Warning:" +msgstr "Advertència" + +#: .\cookbook\templates\account\email.html:50 +msgid "" +"You currently do not have any e-mail address set up. You should really add " +"an e-mail address so you can receive notifications, reset your password, etc." +msgstr "" + +#: .\cookbook\templates\account\email.html:56 +msgid "Add E-mail Address" +msgstr "" + +#: .\cookbook\templates\account\email.html:61 +msgid "Add E-mail" +msgstr "" + +#: .\cookbook\templates\account\email.html:71 +msgid "Do you really want to remove the selected e-mail address?" +msgstr "" + +#: .\cookbook\templates\account\email_confirm.html:6 +#: .\cookbook\templates\account\email_confirm.html:10 +msgid "Confirm E-mail Address" +msgstr "" + +#: .\cookbook\templates\account\email_confirm.html:16 +#, python-format +msgid "" +"Please confirm that\n" +" %(email)s is an e-mail address " +"for user %(user_display)s\n" +" ." +msgstr "" + +#: .\cookbook\templates\account\email_confirm.html:22 +#: .\cookbook\templates\generic\delete_template.html:21 +msgid "Confirm" +msgstr "Confirma" + +#: .\cookbook\templates\account\email_confirm.html:29 +#, python-format +msgid "" +"This e-mail confirmation link expired or is invalid. Please\n" +" issue a new e-mail confirmation " +"request." +msgstr "" + +#: .\cookbook\templates\account\login.html:8 +#: .\cookbook\templates\base.html:180 msgid "Login" msgstr "Iniciar Sessió" -#: .\cookbook\templates\account\login.html:13 -#: .\cookbook\templates\account\login.html:28 +#: .\cookbook\templates\account\login.html:15 +#: .\cookbook\templates\account\login.html:31 +#: .\cookbook\templates\account\signup.html:69 +#: .\cookbook\templates\account\signup_closed.html:15 msgid "Sign In" msgstr "" -#: .\cookbook\templates\account\login.html:38 +#: .\cookbook\templates\account\login.html:32 +msgid "Sign Up" +msgstr "" + +#: .\cookbook\templates\account\login.html:36 +#: .\cookbook\templates\account\login.html:37 +#: .\cookbook\templates\account\password_reset.html:29 +msgid "Reset My Password" +msgstr "" + +#: .\cookbook\templates\account\login.html:37 +msgid "Lost your password?" +msgstr "" + +#: .\cookbook\templates\account\login.html:48 msgid "Social Login" msgstr "" -#: .\cookbook\templates\account\login.html:39 +#: .\cookbook\templates\account\login.html:49 msgid "You can use any of the following providers to sign in." msgstr "" @@ -449,116 +600,166 @@ msgstr "" msgid "Are you sure you want to sign out?" msgstr "" -#: .\cookbook\templates\account\password_reset.html:5 -#: .\cookbook\templates\account\password_reset_done.html:5 +#: .\cookbook\templates\account\password_reset.html:7 +#: .\cookbook\templates\account\password_reset.html:13 +#: .\cookbook\templates\account\password_reset_done.html:7 +#: .\cookbook\templates\account\password_reset_done.html:10 msgid "Password Reset" msgstr "" -#: .\cookbook\templates\account\password_reset.html:9 -#: .\cookbook\templates\account\password_reset_done.html:9 -msgid "Password reset is not implemented for the time being!" +#: .\cookbook\templates\account\password_reset.html:24 +msgid "" +"Forgotten your password? Enter your e-mail address below, and we'll send you " +"an e-mail allowing you to reset it." msgstr "" -#: .\cookbook\templates\account\signup.html:5 +#: .\cookbook\templates\account\password_reset.html:32 +msgid "Password reset is disabled on this instance." +msgstr "" + +#: .\cookbook\templates\account\password_reset_done.html:16 +msgid "" +"We have sent you an e-mail. Please contact us if you do not receive it " +"within a few minutes." +msgstr "" + +#: .\cookbook\templates\account\signup.html:6 msgid "Register" msgstr "Registre" -#: .\cookbook\templates\account\signup.html:9 -msgid "Create your Account" +#: .\cookbook\templates\account\signup.html:12 +#, fuzzy +#| msgid "Create your Account" +msgid "Create an Account" msgstr "Crear Compte" -#: .\cookbook\templates\account\signup.html:14 +#: .\cookbook\templates\account\signup.html:42 +msgid "I accept the follwoing" +msgstr "" + +#: .\cookbook\templates\account\signup.html:45 +msgid "Terms and Conditions" +msgstr "" + +#: .\cookbook\templates\account\signup.html:48 +msgid "and" +msgstr "" + +#: .\cookbook\templates\account\signup.html:52 +msgid "Privacy Policy" +msgstr "" + +#: .\cookbook\templates\account\signup.html:65 msgid "Create User" msgstr "Crear Usuari" -#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:160 +#: .\cookbook\templates\account\signup.html:69 +msgid "Already have an account?" +msgstr "" + +#: .\cookbook\templates\account\signup_closed.html:5 +#: .\cookbook\templates\account\signup_closed.html:11 +msgid "Sign Up Closed" +msgstr "" + +#: .\cookbook\templates\account\signup_closed.html:13 +msgid "We are sorry, but the sign up is currently closed." +msgstr "" + +#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:170 #: .\cookbook\templates\rest_framework\api.html:11 msgid "API Documentation" msgstr "Documentació API " -#: .\cookbook\templates\base.html:78 +#: .\cookbook\templates\base.html:85 msgid "Utensils" msgstr "Estris" -#: .\cookbook\templates\base.html:88 +#: .\cookbook\templates\base.html:95 msgid "Shopping" msgstr "Compres" -#: .\cookbook\templates\base.html:102 .\cookbook\views\delete.py:84 -#: .\cookbook\views\edit.py:93 .\cookbook\views\lists.py:26 -#: .\cookbook\views\new.py:66 +#: .\cookbook\templates\base.html:109 .\cookbook\views\delete.py:84 +#: .\cookbook\views\edit.py:102 .\cookbook\views\lists.py:26 +#: .\cookbook\views\new.py:78 msgid "Keyword" msgstr "Paraula Clau" -#: .\cookbook\templates\base.html:104 +#: .\cookbook\templates\base.html:111 msgid "Batch Edit" msgstr "Edició per lots" -#: .\cookbook\templates\base.html:109 +#: .\cookbook\templates\base.html:116 msgid "Storage Data" msgstr "Emmagatzematge de dades" -#: .\cookbook\templates\base.html:113 +#: .\cookbook\templates\base.html:120 msgid "Storage Backends" msgstr "Backends d'emmagatzematge" -#: .\cookbook\templates\base.html:115 +#: .\cookbook\templates\base.html:122 msgid "Configure Sync" msgstr "Configurar Sync" -#: .\cookbook\templates\base.html:117 +#: .\cookbook\templates\base.html:124 msgid "Discovered Recipes" msgstr "Receptes Descobertes" -#: .\cookbook\templates\base.html:119 +#: .\cookbook\templates\base.html:126 msgid "Discovery Log" msgstr "Registre de descobriment" -#: .\cookbook\templates\base.html:121 .\cookbook\templates\stats.html:10 +#: .\cookbook\templates\base.html:128 .\cookbook\templates\stats.html:10 msgid "Statistics" msgstr "Estadístiques" -#: .\cookbook\templates\base.html:123 +#: .\cookbook\templates\base.html:130 msgid "Units & Ingredients" msgstr "Unitats i ingredients" -#: .\cookbook\templates\base.html:125 +#: .\cookbook\templates\base.html:132 .\cookbook\templates\index.html:47 msgid "Import Recipe" msgstr "Importa recepta" -#: .\cookbook\templates\base.html:144 .\cookbook\templates\settings.html:6 +#: .\cookbook\templates\base.html:151 .\cookbook\templates\settings.html:6 #: .\cookbook\templates\settings.html:16 msgid "Settings" msgstr "Opcions" -#: .\cookbook\templates\base.html:146 .\cookbook\templates\history.html:6 +#: .\cookbook\templates\base.html:153 .\cookbook\templates\history.html:6 #: .\cookbook\templates\history.html:14 msgid "History" msgstr "Historial" -#: .\cookbook\templates\base.html:150 .\cookbook\templates\system.html:13 +#: .\cookbook\templates\base.html:155 .\cookbook\templates\space.html:7 +#, fuzzy +#| msgid "Settings" +msgid "Space Settings" +msgstr "Opcions" + +#: .\cookbook\templates\base.html:160 .\cookbook\templates\system.html:13 msgid "System" msgstr "Sistema" -#: .\cookbook\templates\base.html:152 +#: .\cookbook\templates\base.html:162 msgid "Admin" msgstr "Admin" -#: .\cookbook\templates\base.html:156 +#: .\cookbook\templates\base.html:166 msgid "Markdown Guide" msgstr "Guia Markdown" -#: .\cookbook\templates\base.html:158 +#: .\cookbook\templates\base.html:168 msgid "GitHub" msgstr "GitHub" -#: .\cookbook\templates\base.html:162 +#: .\cookbook\templates\base.html:172 msgid "API Browser" msgstr "Navegador API" -#: .\cookbook\templates\base.html:165 -msgid "Logout" -msgstr "Tancar Sessió" +#: .\cookbook\templates\base.html:175 +msgid "Log out" +msgstr "" #: .\cookbook\templates\batch\edit.html:6 msgid "Batch edit Category" @@ -574,7 +775,7 @@ msgstr "" "Afegiu les paraules clau especificades a totes les receptes que continguin " "la paraula" -#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:76 +#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:85 msgid "Sync" msgstr "Sync" @@ -603,7 +804,7 @@ msgstr "Sincronitza Ara!" msgid "Importing Recipes" msgstr "Important Receptes" -#: .\cookbook\templates\batch\waiting.html:23 +#: .\cookbook\templates\batch\waiting.html:28 msgid "" "This can take a few minutes, depending on the number of recipes in sync, " "please wait." @@ -642,26 +843,33 @@ msgid "Export Recipes" msgstr "Exporta Receptes" #: .\cookbook\templates\export.html:14 .\cookbook\templates\export.html:20 -#: .\cookbook\templates\shopping_list.html:347 +#: .\cookbook\templates\shopping_list.html:351 #: .\cookbook\templates\test2.html:14 .\cookbook\templates\test2.html:20 msgid "Export" msgstr "Exporta" +#: .\cookbook\templates\files.html:7 +#, fuzzy +#| msgid "File ID" +msgid "Files" +msgstr "ID d'Arxiu" + #: .\cookbook\templates\forms\edit_import_recipe.html:5 #: .\cookbook\templates\forms\edit_import_recipe.html:9 msgid "Import new Recipe" msgstr "Importa nova Recepta" #: .\cookbook\templates\forms\edit_import_recipe.html:14 -#: .\cookbook\templates\forms\edit_internal_recipe.html:389 -#: .\cookbook\templates\forms\edit_internal_recipe.html:421 +#: .\cookbook\templates\forms\edit_internal_recipe.html:416 +#: .\cookbook\templates\forms\edit_internal_recipe.html:448 #: .\cookbook\templates\generic\edit_template.html:23 #: .\cookbook\templates\generic\new_template.html:23 #: .\cookbook\templates\include\log_cooking.html:28 #: .\cookbook\templates\meal_plan.html:325 -#: .\cookbook\templates\settings.html:28 .\cookbook\templates\settings.html:35 -#: .\cookbook\templates\settings.html:58 .\cookbook\templates\settings.html:73 -#: .\cookbook\templates\shopping_list.html:349 +#: .\cookbook\templates\settings.html:44 .\cookbook\templates\settings.html:52 +#: .\cookbook\templates\settings.html:96 +#: .\cookbook\templates\settings.html:114 +#: .\cookbook\templates\shopping_list.html:353 msgid "Save" msgstr "Desa" @@ -670,181 +878,190 @@ msgstr "Desa" msgid "Edit Recipe" msgstr "Edita Recepta" -#: .\cookbook\templates\forms\edit_internal_recipe.html:52 +#: .\cookbook\templates\forms\edit_internal_recipe.html:56 +#: .\cookbook\templates\url_import.html:171 msgid "Description" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:72 +#: .\cookbook\templates\forms\edit_internal_recipe.html:76 msgid "Waiting Time" msgstr "Temps d'Espera" -#: .\cookbook\templates\forms\edit_internal_recipe.html:78 +#: .\cookbook\templates\forms\edit_internal_recipe.html:82 msgid "Servings Text" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:89 +#: .\cookbook\templates\forms\edit_internal_recipe.html:93 msgid "Select Keywords" msgstr "Selecciona Paraules clau" -#: .\cookbook\templates\forms\edit_internal_recipe.html:90 -#: .\cookbook\templates\url_import.html:212 +#: .\cookbook\templates\forms\edit_internal_recipe.html:94 +#: .\cookbook\templates\url_import.html:583 #, fuzzy #| msgid "All Keywords" msgid "Add Keyword" msgstr "Totes les paraules clau" -#: .\cookbook\templates\forms\edit_internal_recipe.html:108 +#: .\cookbook\templates\forms\edit_internal_recipe.html:112 msgid "Nutrition" msgstr "Nutrició" -#: .\cookbook\templates\forms\edit_internal_recipe.html:112 -#: .\cookbook\templates\forms\edit_internal_recipe.html:162 +#: .\cookbook\templates\forms\edit_internal_recipe.html:116 +#: .\cookbook\templates\forms\edit_internal_recipe.html:166 msgid "Delete Step" msgstr "Esborra Pas" -#: .\cookbook\templates\forms\edit_internal_recipe.html:116 +#: .\cookbook\templates\forms\edit_internal_recipe.html:120 msgid "Calories" msgstr "Calories" -#: .\cookbook\templates\forms\edit_internal_recipe.html:119 +#: .\cookbook\templates\forms\edit_internal_recipe.html:123 msgid "Carbohydrates" msgstr "Hidrats de carboni" -#: .\cookbook\templates\forms\edit_internal_recipe.html:122 +#: .\cookbook\templates\forms\edit_internal_recipe.html:126 msgid "Fats" msgstr "Greixos" -#: .\cookbook\templates\forms\edit_internal_recipe.html:124 +#: .\cookbook\templates\forms\edit_internal_recipe.html:128 msgid "Proteins" msgstr "Proteïnes" -#: .\cookbook\templates\forms\edit_internal_recipe.html:146 -#: .\cookbook\templates\forms\edit_internal_recipe.html:454 +#: .\cookbook\templates\forms\edit_internal_recipe.html:150 +#: .\cookbook\templates\forms\edit_internal_recipe.html:481 msgid "Step" msgstr "Pas" -#: .\cookbook\templates\forms\edit_internal_recipe.html:167 +#: .\cookbook\templates\forms\edit_internal_recipe.html:171 msgid "Show as header" msgstr "Mostra com a capçalera" -#: .\cookbook\templates\forms\edit_internal_recipe.html:173 +#: .\cookbook\templates\forms\edit_internal_recipe.html:177 msgid "Hide as header" msgstr "Amaga com a capçalera" -#: .\cookbook\templates\forms\edit_internal_recipe.html:178 +#: .\cookbook\templates\forms\edit_internal_recipe.html:182 msgid "Move Up" msgstr "Mou Amunt" -#: .\cookbook\templates\forms\edit_internal_recipe.html:183 +#: .\cookbook\templates\forms\edit_internal_recipe.html:187 msgid "Move Down" msgstr "Mou Avall" -#: .\cookbook\templates\forms\edit_internal_recipe.html:192 +#: .\cookbook\templates\forms\edit_internal_recipe.html:196 msgid "Step Name" msgstr "Nom del Pas" -#: .\cookbook\templates\forms\edit_internal_recipe.html:196 +#: .\cookbook\templates\forms\edit_internal_recipe.html:200 msgid "Step Type" msgstr "Tipus de Pas" -#: .\cookbook\templates\forms\edit_internal_recipe.html:207 +#: .\cookbook\templates\forms\edit_internal_recipe.html:212 msgid "Step time in Minutes" msgstr "Temps de pas en Minuts" -#: .\cookbook\templates\forms\edit_internal_recipe.html:261 -#: .\cookbook\templates\shopping_list.html:183 -msgid "Select Unit" -msgstr "Selecciona Unitat" +#: .\cookbook\templates\forms\edit_internal_recipe.html:228 +#, fuzzy +#| msgid "Select one" +msgid "Select File" +msgstr "Sel·lecciona un" -#: .\cookbook\templates\forms\edit_internal_recipe.html:262 -#: .\cookbook\templates\forms\edit_internal_recipe.html:286 -#: .\cookbook\templates\shopping_list.html:184 -#: .\cookbook\templates\shopping_list.html:206 -msgid "Create" -msgstr "Crea" - -#: .\cookbook\templates\forms\edit_internal_recipe.html:263 -#: .\cookbook\templates\forms\edit_internal_recipe.html:287 -#: .\cookbook\templates\shopping_list.html:185 -#: .\cookbook\templates\shopping_list.html:207 -#: .\cookbook\templates\shopping_list.html:237 -#: .\cookbook\templates\shopping_list.html:261 -#: .\cookbook\templates\url_import.html:124 -#: .\cookbook\templates\url_import.html:156 +#: .\cookbook\templates\forms\edit_internal_recipe.html:229 +#: .\cookbook\templates\forms\edit_internal_recipe.html:290 +#: .\cookbook\templates\forms\edit_internal_recipe.html:314 +#: .\cookbook\templates\shopping_list.html:189 +#: .\cookbook\templates\shopping_list.html:211 +#: .\cookbook\templates\shopping_list.html:241 +#: .\cookbook\templates\shopping_list.html:265 +#: .\cookbook\templates\url_import.html:495 +#: .\cookbook\templates\url_import.html:527 msgid "Select" msgstr "Selecciona" -#: .\cookbook\templates\forms\edit_internal_recipe.html:285 -#: .\cookbook\templates\shopping_list.html:205 +#: .\cookbook\templates\forms\edit_internal_recipe.html:288 +#: .\cookbook\templates\shopping_list.html:187 +msgid "Select Unit" +msgstr "Selecciona Unitat" + +#: .\cookbook\templates\forms\edit_internal_recipe.html:289 +#: .\cookbook\templates\forms\edit_internal_recipe.html:313 +#: .\cookbook\templates\shopping_list.html:188 +#: .\cookbook\templates\shopping_list.html:210 +msgid "Create" +msgstr "Crea" + +#: .\cookbook\templates\forms\edit_internal_recipe.html:312 +#: .\cookbook\templates\shopping_list.html:209 msgid "Select Food" msgstr "Selecciona Menjar" -#: .\cookbook\templates\forms\edit_internal_recipe.html:302 +#: .\cookbook\templates\forms\edit_internal_recipe.html:329 #: .\cookbook\templates\meal_plan.html:256 -#: .\cookbook\templates\url_import.html:171 +#: .\cookbook\templates\url_import.html:542 msgid "Note" msgstr "Nota" -#: .\cookbook\templates\forms\edit_internal_recipe.html:319 +#: .\cookbook\templates\forms\edit_internal_recipe.html:346 msgid "Delete Ingredient" msgstr "Esborra Ingredient" -#: .\cookbook\templates\forms\edit_internal_recipe.html:325 +#: .\cookbook\templates\forms\edit_internal_recipe.html:352 msgid "Make Header" msgstr "Crea Capçalera" -#: .\cookbook\templates\forms\edit_internal_recipe.html:331 +#: .\cookbook\templates\forms\edit_internal_recipe.html:358 msgid "Make Ingredient" msgstr "Crea Ingredient" -#: .\cookbook\templates\forms\edit_internal_recipe.html:337 +#: .\cookbook\templates\forms\edit_internal_recipe.html:364 msgid "Disable Amount" msgstr "Deshabilita Quantitat" -#: .\cookbook\templates\forms\edit_internal_recipe.html:343 +#: .\cookbook\templates\forms\edit_internal_recipe.html:370 msgid "Enable Amount" msgstr "Habilita Quantitat" -#: .\cookbook\templates\forms\edit_internal_recipe.html:348 +#: .\cookbook\templates\forms\edit_internal_recipe.html:375 msgid "Copy Template Reference" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:374 -#: .\cookbook\templates\url_import.html:196 +#: .\cookbook\templates\forms\edit_internal_recipe.html:401 +#: .\cookbook\templates\url_import.html:297 +#: .\cookbook\templates\url_import.html:567 msgid "Instructions" msgstr "Instruccions" -#: .\cookbook\templates\forms\edit_internal_recipe.html:387 -#: .\cookbook\templates\forms\edit_internal_recipe.html:418 +#: .\cookbook\templates\forms\edit_internal_recipe.html:414 +#: .\cookbook\templates\forms\edit_internal_recipe.html:445 msgid "Save & View" msgstr "Desa i Comprova" -#: .\cookbook\templates\forms\edit_internal_recipe.html:391 -#: .\cookbook\templates\forms\edit_internal_recipe.html:424 +#: .\cookbook\templates\forms\edit_internal_recipe.html:418 +#: .\cookbook\templates\forms\edit_internal_recipe.html:451 msgid "Add Step" msgstr "Afegir Pas" -#: .\cookbook\templates\forms\edit_internal_recipe.html:394 -#: .\cookbook\templates\forms\edit_internal_recipe.html:428 +#: .\cookbook\templates\forms\edit_internal_recipe.html:421 +#: .\cookbook\templates\forms\edit_internal_recipe.html:455 msgid "Add Nutrition" msgstr "Afegeix nutrients" -#: .\cookbook\templates\forms\edit_internal_recipe.html:396 -#: .\cookbook\templates\forms\edit_internal_recipe.html:430 +#: .\cookbook\templates\forms\edit_internal_recipe.html:423 +#: .\cookbook\templates\forms\edit_internal_recipe.html:457 msgid "Remove Nutrition" msgstr "Elimina nutrients" -#: .\cookbook\templates\forms\edit_internal_recipe.html:398 -#: .\cookbook\templates\forms\edit_internal_recipe.html:433 +#: .\cookbook\templates\forms\edit_internal_recipe.html:425 +#: .\cookbook\templates\forms\edit_internal_recipe.html:460 msgid "View Recipe" msgstr "Veure Recepta" -#: .\cookbook\templates\forms\edit_internal_recipe.html:400 -#: .\cookbook\templates\forms\edit_internal_recipe.html:435 +#: .\cookbook\templates\forms\edit_internal_recipe.html:427 +#: .\cookbook\templates\forms\edit_internal_recipe.html:462 msgid "Delete Recipe" msgstr "Esborra Recepta" -#: .\cookbook\templates\forms\edit_internal_recipe.html:441 +#: .\cookbook\templates\forms\edit_internal_recipe.html:468 msgid "Steps" msgstr "Passos" @@ -868,7 +1085,7 @@ msgstr "" "Combina dues unitats o ingredients i actualitza totes les receptes amb ells" #: .\cookbook\templates\forms\ingredients.html:24 -#: .\cookbook\templates\stats.html:26 +#: .\cookbook\templates\space.html:35 .\cookbook\templates\stats.html:26 msgid "Units" msgstr "Unitats" @@ -890,10 +1107,6 @@ msgstr "Estàs segur que vols combinar aquests dos ingredients?" msgid "Are you sure you want to delete the %(title)s: %(object)s " msgstr "Segur que vols esborrar el %(title)s:%(object)s" -#: .\cookbook\templates\generic\delete_template.html:21 -msgid "Confirm" -msgstr "Confirma" - #: .\cookbook\templates\generic\edit_template.html:30 msgid "View" msgstr "Veure" @@ -915,12 +1128,6 @@ msgstr "Filtre" msgid "Import all" msgstr "Importa tot" -#: .\cookbook\templates\generic\new_template.html:6 -#: .\cookbook\templates\generic\new_template.html:14 -#: .\cookbook\templates\meal_plan.html:323 -msgid "New" -msgstr "Nova" - #: .\cookbook\templates\generic\table_template.html:76 #: .\cookbook\templates\recipes_table.html:121 msgid "previous" @@ -965,7 +1172,7 @@ msgstr "Tanca" #: .\cookbook\templates\include\recipe_open_modal.html:7 #: .\cookbook\templates\meal_plan.html:247 .\cookbook\views\delete.py:28 -#: .\cookbook\views\edit.py:264 .\cookbook\views\new.py:40 +#: .\cookbook\views\edit.py:273 .\cookbook\views\new.py:52 msgid "Recipe" msgstr "Recepta" @@ -1005,10 +1212,6 @@ msgstr "Cerca Recepta..." msgid "New Recipe" msgstr "Nova Recepta" -#: .\cookbook\templates\index.html:47 -msgid "Website Import" -msgstr "Importa desde Web" - #: .\cookbook\templates\index.html:53 msgid "Advanced Search" msgstr "Cerca Avançada" @@ -1022,7 +1225,7 @@ msgid "Last viewed" msgstr "Darrera visualització" #: .\cookbook\templates\index.html:87 .\cookbook\templates\meal_plan.html:178 -#: .\cookbook\templates\stats.html:22 +#: .\cookbook\templates\space.html:29 .\cookbook\templates\stats.html:22 msgid "Recipes" msgstr "Receptes" @@ -1186,7 +1389,7 @@ msgid "New Entry" msgstr "Nova Entrada" #: .\cookbook\templates\meal_plan.html:113 -#: .\cookbook\templates\shopping_list.html:52 +#: .\cookbook\templates\shopping_list.html:56 msgid "Search Recipe" msgstr "Cerca Recepta" @@ -1219,7 +1422,7 @@ msgstr "Crear només nota" #: .\cookbook\templates\meal_plan.html:168 #: .\cookbook\templates\shopping_list.html:7 #: .\cookbook\templates\shopping_list.html:29 -#: .\cookbook\templates\shopping_list.html:705 +#: .\cookbook\templates\shopping_list.html:714 msgid "Shopping List" msgstr "Llista de la Compra" @@ -1271,7 +1474,7 @@ msgstr "Creat per" #: .\cookbook\templates\meal_plan.html:270 #: .\cookbook\templates\meal_plan_entry.html:20 -#: .\cookbook\templates\shopping_list.html:250 +#: .\cookbook\templates\shopping_list.html:254 msgid "Shared with" msgstr "Compartit per" @@ -1348,7 +1551,6 @@ msgstr "No heu iniciat la sessió i, per tant, no podeu veure aquesta pàgina." #: .\cookbook\templates\no_groups_info.html:18 #: .\cookbook\templates\no_perm_info.html:15 -#: .\cookbook\templates\no_space_info.html:15 msgid "Please contact your administrator." msgstr "" @@ -1365,13 +1567,50 @@ msgid "" "action." msgstr "No teniu els permisos necessaris per dur a terme aquesta acció!" -#: .\cookbook\templates\no_space_info.html:5 -#: .\cookbook\templates\no_space_info.html:12 +#: .\cookbook\templates\no_space_info.html:6 +#: .\cookbook\templates\no_space_info.html:13 msgid "No Space" msgstr "" -#: .\cookbook\templates\no_space_info.html:15 -msgid "You are not a member of any space." +#: .\cookbook\templates\no_space_info.html:17 +msgid "" +"Recipes, foods, shopping lists and more are organized in spaces of one or " +"more people." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:18 +msgid "" +"You can either be invited into an existing space or create your own one." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:31 +#: .\cookbook\templates\no_space_info.html:40 +msgid "Join Space" +msgstr "" + +#: .\cookbook\templates\no_space_info.html:34 +msgid "Join an existing space." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:35 +msgid "" +"To join an existing space either enter your invite token or click on the " +"invite link the space owner send you." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:48 +#: .\cookbook\templates\no_space_info.html:56 +#, fuzzy +#| msgid "Create User" +msgid "Create Space" +msgstr "Crear Usuari" + +#: .\cookbook\templates\no_space_info.html:51 +msgid "Create your own recipe space." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:52 +msgid "Start your own recipe space and invite other users to it." msgstr "" #: .\cookbook\templates\offline.html:6 @@ -1388,28 +1627,29 @@ msgid "" "recently viewed them. Keep in mind that data might be outdated." msgstr "" -#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\stats.html:47 +#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\space.html:56 +#: .\cookbook\templates\stats.html:47 msgid "Comments" msgstr "Comentaris" #: .\cookbook\templates\recipe_view.html:44 .\cookbook\views\delete.py:118 -#: .\cookbook\views\edit.py:170 +#: .\cookbook\views\edit.py:179 msgid "Comment" msgstr "Comentari" #: .\cookbook\templates\recipes_table.html:19 #: .\cookbook\templates\recipes_table.html:23 -#: .\cookbook\templates\url_import.html:69 +#: .\cookbook\templates\url_import.html:440 msgid "Recipe Image" msgstr "Imatge de la Recepta" #: .\cookbook\templates\recipes_table.html:51 -#: .\cookbook\templates\url_import.html:74 +#: .\cookbook\templates\url_import.html:445 msgid "Preparation time ca." msgstr "Temps de Preparació ca." #: .\cookbook\templates\recipes_table.html:57 -#: .\cookbook\templates\url_import.html:79 +#: .\cookbook\templates\url_import.html:450 msgid "Waiting time ca." msgstr "Temps d'Espera ca." @@ -1425,27 +1665,63 @@ msgstr "Registre de Cuines" msgid "Recipe Home" msgstr "Receptes" -#: .\cookbook\templates\settings.html:22 +#: .\cookbook\templates\settings.html:23 msgid "Account" msgstr "Compte" -#: .\cookbook\templates\settings.html:38 -msgid "Link social account" +#: .\cookbook\templates\settings.html:27 +msgid "Preferences" msgstr "" -#: .\cookbook\templates\settings.html:42 +#: .\cookbook\templates\settings.html:31 +#, fuzzy +#| msgid "Settings" +msgid "API-Settings" +msgstr "Opcions" + +#: .\cookbook\templates\settings.html:39 +#, fuzzy +#| msgid "Settings" +msgid "Name Settings" +msgstr "Opcions" + +#: .\cookbook\templates\settings.html:47 +#, fuzzy +#| msgid "Settings" +msgid "Password Settings" +msgstr "Opcions" + +#: .\cookbook\templates\settings.html:55 +#, fuzzy +#| msgid "Settings" +msgid "Email Settings" +msgstr "Opcions" + +#: .\cookbook\templates\settings.html:57 +msgid "Manage Email Settings" +msgstr "" + +#: .\cookbook\templates\settings.html:61 +msgid "Social" +msgstr "" + +#: .\cookbook\templates\settings.html:63 +msgid "Manage Social Accounts" +msgstr "" + +#: .\cookbook\templates\settings.html:75 msgid "Language" msgstr "Idioma" -#: .\cookbook\templates\settings.html:67 +#: .\cookbook\templates\settings.html:105 msgid "Style" msgstr "Estil" -#: .\cookbook\templates\settings.html:79 +#: .\cookbook\templates\settings.html:125 msgid "API Token" msgstr "Token API" -#: .\cookbook\templates\settings.html:80 +#: .\cookbook\templates\settings.html:126 msgid "" "You can use both basic authentication and token based authentication to " "access the REST API." @@ -1453,7 +1729,7 @@ msgstr "" "Podeu utilitzar tant l’autenticació bàsica com l’autenticació basada en " "token per accedir a l’API REST." -#: .\cookbook\templates\settings.html:92 +#: .\cookbook\templates\settings.html:143 msgid "" "Use the token as an Authorization header prefixed by the word token as shown " "in the following examples:" @@ -1461,7 +1737,7 @@ msgstr "" "Utilitzeu el testimoni com a capçalera d'autorització prefixada per la " "paraula símbol tal com es mostra als exemples següents:" -#: .\cookbook\templates\settings.html:94 +#: .\cookbook\templates\settings.html:145 msgid "or" msgstr "o" @@ -1484,59 +1760,56 @@ msgstr "" msgid "Create Superuser account" msgstr "Crear compte de superusuari" -#: .\cookbook\templates\shopping_list.html:75 +#: .\cookbook\templates\shopping_list.html:79 msgid "Shopping Recipes" msgstr "Llista de Compra de Receptes" -#: .\cookbook\templates\shopping_list.html:79 +#: .\cookbook\templates\shopping_list.html:83 msgid "No recipes selected" msgstr "Recepta no sel·leccionada" -#: .\cookbook\templates\shopping_list.html:146 +#: .\cookbook\templates\shopping_list.html:150 msgid "Entry Mode" msgstr "" -#: .\cookbook\templates\shopping_list.html:154 +#: .\cookbook\templates\shopping_list.html:158 msgid "Add Entry" msgstr "" -#: .\cookbook\templates\shopping_list.html:170 +#: .\cookbook\templates\shopping_list.html:174 msgid "Amount" msgstr "Quantitat" -#: .\cookbook\templates\shopping_list.html:226 +#: .\cookbook\templates\shopping_list.html:230 +#: .\cookbook\templates\supermarket.html:7 msgid "Supermarket" msgstr "Supermercat" -#: .\cookbook\templates\shopping_list.html:236 +#: .\cookbook\templates\shopping_list.html:240 msgid "Select Supermarket" msgstr "Seleccioni supermercat" -#: .\cookbook\templates\shopping_list.html:260 +#: .\cookbook\templates\shopping_list.html:264 msgid "Select User" msgstr "Selecciona usuari" -#: .\cookbook\templates\shopping_list.html:279 +#: .\cookbook\templates\shopping_list.html:283 msgid "Finished" msgstr "Acabat" -#: .\cookbook\templates\shopping_list.html:292 +#: .\cookbook\templates\shopping_list.html:296 msgid "You are offline, shopping list might not syncronize." msgstr "" "Estàs fora de línia, és possible que la llista de compra no es sincronitzi." -#: .\cookbook\templates\shopping_list.html:357 +#: .\cookbook\templates\shopping_list.html:361 msgid "Copy/Export" msgstr "Copia/Exporta" -#: .\cookbook\templates\shopping_list.html:361 +#: .\cookbook\templates\shopping_list.html:365 msgid "List Prefix" msgstr "Prefix de Llista" -#: .\cookbook\templates\shopping_list.html:708 -msgid "There was an error creating a resource!" -msgstr "S'ha produït un error en crear un recurs." - #: .\cookbook\templates\socialaccount\connections.html:4 #: .\cookbook\templates\socialaccount\connections.html:7 msgid "Account Connections" @@ -1548,10 +1821,6 @@ msgid "" " accounts:" msgstr "" -#: .\cookbook\templates\socialaccount\connections.html:36 -msgid "Remove" -msgstr "Eliminar" - #: .\cookbook\templates\socialaccount\connections.html:44 msgid "" "You currently have no social network accounts connected to this account." @@ -1561,38 +1830,97 @@ msgstr "" msgid "Add a 3rd Party Account" msgstr "" -#: .\cookbook\templates\stats.html:4 -msgid "Stats" -msgstr "Estadístiques" +#: .\cookbook\templates\space.html:18 +msgid "Manage Subscription" +msgstr "" -#: .\cookbook\templates\stats.html:19 +#: .\cookbook\templates\space.html:26 .\cookbook\templates\stats.html:19 msgid "Number of objects" msgstr "Nombre d'objectes" -#: .\cookbook\templates\stats.html:30 +#: .\cookbook\templates\space.html:39 .\cookbook\templates\stats.html:30 msgid "Recipe Imports" msgstr "Importacions de receptes" -#: .\cookbook\templates\stats.html:38 +#: .\cookbook\templates\space.html:47 .\cookbook\templates\stats.html:38 msgid "Objects stats" msgstr "Estadístiques d'objectes" -#: .\cookbook\templates\stats.html:41 +#: .\cookbook\templates\space.html:50 .\cookbook\templates\stats.html:41 msgid "Recipes without Keywords" msgstr "Receptes sense paraules clau" -#: .\cookbook\templates\stats.html:43 +#: .\cookbook\templates\space.html:52 .\cookbook\templates\stats.html:43 msgid "External Recipes" msgstr "Receptes Externes" -#: .\cookbook\templates\stats.html:45 +#: .\cookbook\templates\space.html:54 .\cookbook\templates\stats.html:45 msgid "Internal Recipes" msgstr "Receptes Internes" -#: .\cookbook\templates\system.html:21 .\cookbook\views\lists.py:115 +#: .\cookbook\templates\space.html:67 +msgid "Members" +msgstr "" + +#: .\cookbook\templates\space.html:71 +#, fuzzy +#| msgid "Invite Links" +msgid "Invite User" +msgstr "Enllaços Invitació" + +#: .\cookbook\templates\space.html:82 +msgid "User" +msgstr "" + +#: .\cookbook\templates\space.html:83 +msgid "Groups" +msgstr "" + +#: .\cookbook\templates\space.html:99 +#, fuzzy +#| msgid "Admin" +msgid "admin" +msgstr "Admin" + +#: .\cookbook\templates\space.html:100 +msgid "user" +msgstr "" + +#: .\cookbook\templates\space.html:101 +msgid "guest" +msgstr "" + +#: .\cookbook\templates\space.html:102 +#, fuzzy +#| msgid "Remove" +msgid "remove" +msgstr "Eliminar" + +#: .\cookbook\templates\space.html:106 +msgid "Update" +msgstr "" + +#: .\cookbook\templates\space.html:110 +#, fuzzy +#| msgid "You cannot edit this storage!" +msgid "You cannot edit yourself." +msgstr "No podeu editar aquest emmagatzematge." + +#: .\cookbook\templates\space.html:117 +#, fuzzy +#| msgid "There are no recipes in this book yet." +msgid "There are no members in your space yet!" +msgstr "Encara no hi ha receptes en aquest llibre." + +#: .\cookbook\templates\space.html:124 .\cookbook\templates\system.html:21 +#: .\cookbook\views\lists.py:115 msgid "Invite Links" msgstr "Enllaços Invitació" +#: .\cookbook\templates\stats.html:4 +msgid "Stats" +msgstr "Estadístiques" + #: .\cookbook\templates\system.html:22 msgid "Show Links" msgstr "Mostra Enllaços" @@ -1718,47 +2046,159 @@ msgstr "" "Això està bé, però no es recomana com alguns\n" "les funcions només funcionen amb bases de dades postgres." -#: .\cookbook\templates\url_import.html:5 +#: .\cookbook\templates\url_import.html:6 msgid "URL Import" msgstr "Importació d’URL" -#: .\cookbook\templates\url_import.html:23 +#: .\cookbook\templates\url_import.html:31 +msgid "Drag me to your bookmarks to import recipes from anywhere" +msgstr "" + +#: .\cookbook\templates\url_import.html:32 +#, fuzzy +#| msgid "Bookmark saved!" +msgid "Bookmark Me!" +msgstr "Marcador desat!" + +#: .\cookbook\templates\url_import.html:61 msgid "Enter website URL" msgstr "Introduïu l'URL del lloc web" -#: .\cookbook\templates\url_import.html:36 -msgid "Enter json directly" +#: .\cookbook\templates\url_import.html:97 +msgid "Select recipe files to import or drop them here..." msgstr "" -#: .\cookbook\templates\url_import.html:57 +#: .\cookbook\templates\url_import.html:118 +msgid "Paste json or html source here to load recipe." +msgstr "" + +#: .\cookbook\templates\url_import.html:146 +#, fuzzy +#| msgid "View Recipe" +msgid "Preview Recipe Data" +msgstr "Veure Recepta" + +#: .\cookbook\templates\url_import.html:147 +msgid "Drag recipe attributes from the right into the appropriate box below." +msgstr "" + +#: .\cookbook\templates\url_import.html:156 +#: .\cookbook\templates\url_import.html:173 +#: .\cookbook\templates\url_import.html:190 +#: .\cookbook\templates\url_import.html:209 +#: .\cookbook\templates\url_import.html:227 +#: .\cookbook\templates\url_import.html:242 +#: .\cookbook\templates\url_import.html:257 +#: .\cookbook\templates\url_import.html:273 +#: .\cookbook\templates\url_import.html:300 +#: .\cookbook\templates\url_import.html:351 +msgid "Clear Contents" +msgstr "" + +#: .\cookbook\templates\url_import.html:158 +msgid "Text dragged here will be appended to the name." +msgstr "" + +#: .\cookbook\templates\url_import.html:175 +msgid "Text dragged here will be appended to the description." +msgstr "" + +#: .\cookbook\templates\url_import.html:192 +msgid "Keywords dragged here will be appended to current list" +msgstr "" + +#: .\cookbook\templates\url_import.html:207 +msgid "Image" +msgstr "" + +#: .\cookbook\templates\url_import.html:239 +#, fuzzy +#| msgid "Preparation Time" +msgid "Prep Time" +msgstr "Temps de preparació" + +#: .\cookbook\templates\url_import.html:254 +#, fuzzy +#| msgid "Time" +msgid "Cook Time" +msgstr "Temps" + +#: .\cookbook\templates\url_import.html:275 +msgid "Ingredients dragged here will be appended to current list." +msgstr "" + +#: .\cookbook\templates\url_import.html:302 +msgid "" +"Recipe instructions dragged here will be appended to current instructions." +msgstr "" + +#: .\cookbook\templates\url_import.html:325 +#, fuzzy +#| msgid "Discovered Recipes" +msgid "Discovered Attributes" +msgstr "Receptes Descobertes" + +#: .\cookbook\templates\url_import.html:327 +msgid "" +"Drag recipe attributes from below into the appropriate box on the left. " +"Click any node to display its full properties." +msgstr "" + +#: .\cookbook\templates\url_import.html:344 +#, fuzzy +#| msgid "Show as header" +msgid "Show Blank Field" +msgstr "Mostra com a capçalera" + +#: .\cookbook\templates\url_import.html:349 +msgid "Blank Field" +msgstr "" + +#: .\cookbook\templates\url_import.html:353 +msgid "Items dragged to Blank Field will be appended." +msgstr "" + +#: .\cookbook\templates\url_import.html:400 +#, fuzzy +#| msgid "Delete Step" +msgid "Delete Text" +msgstr "Esborra Pas" + +#: .\cookbook\templates\url_import.html:413 +#, fuzzy +#| msgid "Delete Recipe" +msgid "Delete image" +msgstr "Esborra Recepta" + +#: .\cookbook\templates\url_import.html:429 msgid "Recipe Name" msgstr "Nom de la Recepta" -#: .\cookbook\templates\url_import.html:62 +#: .\cookbook\templates\url_import.html:433 #, fuzzy #| msgid "Recipe Markup Specification" msgid "Recipe Description" msgstr "Especificació de marcatge de receptes" -#: .\cookbook\templates\url_import.html:123 -#: .\cookbook\templates\url_import.html:155 -#: .\cookbook\templates\url_import.html:211 +#: .\cookbook\templates\url_import.html:494 +#: .\cookbook\templates\url_import.html:526 +#: .\cookbook\templates\url_import.html:582 msgid "Select one" msgstr "Sel·lecciona un" -#: .\cookbook\templates\url_import.html:225 +#: .\cookbook\templates\url_import.html:596 msgid "All Keywords" msgstr "Totes les paraules clau" -#: .\cookbook\templates\url_import.html:228 +#: .\cookbook\templates\url_import.html:599 msgid "Import all keywords, not only the ones already existing." msgstr "Importa totes les paraules clau, no només les ja existents." -#: .\cookbook\templates\url_import.html:255 +#: .\cookbook\templates\url_import.html:626 msgid "Information" msgstr "Informació" -#: .\cookbook\templates\url_import.html:257 +#: .\cookbook\templates\url_import.html:628 msgid "" " Only websites containing ld+json or microdata information can currently\n" " be imported. Most big recipe pages " @@ -1777,52 +2217,80 @@ msgstr "" "un exemple a\n" "problemes de github." -#: .\cookbook\templates\url_import.html:265 +#: .\cookbook\templates\url_import.html:636 msgid "Google ld+json Info" msgstr "Google ld+json Info" -#: .\cookbook\templates\url_import.html:268 +#: .\cookbook\templates\url_import.html:639 msgid "GitHub Issues" msgstr "Problemes de GitHub" -#: .\cookbook\templates\url_import.html:270 +#: .\cookbook\templates\url_import.html:641 msgid "Recipe Markup Specification" msgstr "Especificació de marcatge de receptes" -#: .\cookbook\views\api.py:71 +#: .\cookbook\views\api.py:77 #, fuzzy #| msgid "Parameter filter_list incorrectly formatted" msgid "Parameter updated_at incorrectly formatted" msgstr "El paràmetre filter_list té un format incorrecte" -#: .\cookbook\views\api.py:455 .\cookbook\views\views.py:226 +#: .\cookbook\views\api.py:553 .\cookbook\views\views.py:295 msgid "This feature is not available in the demo version!" msgstr "" -#: .\cookbook\views\api.py:478 +#: .\cookbook\views\api.py:576 msgid "Sync successful!" msgstr "Sincronització correcte" -#: .\cookbook\views\api.py:483 +#: .\cookbook\views\api.py:581 msgid "Error synchronizing with Storage" msgstr "Error de sincronització amb emmagatzematge" -#: .\cookbook\views\api.py:556 .\cookbook\views\api.py:576 +#: .\cookbook\views\api.py:649 +msgid "Nothing to do." +msgstr "" + +#: .\cookbook\views\api.py:664 +msgid "The requested site provided malformed data and cannot be read." +msgstr "" +"El lloc sol·licitat proporcionava dades malformades i no es pot llegir." + +#: .\cookbook\views\api.py:671 msgid "The requested page could not be found." msgstr "No s'ha pogut trobar la pàgina sol·licitada." -#: .\cookbook\views\api.py:585 +#: .\cookbook\views\api.py:680 msgid "" -"The requested page refused to provide any information (Status Code 403)." +"The requested site does not provide any recognized data format to import the " +"recipe from." msgstr "" -"La pàgina sol·licitada refusa a proporcionar cap informació (Codi d’estat " -"403)." +"El lloc sol·licitat no proporciona cap format de dades reconegut des d’on " +"importar la recepta." -#: .\cookbook\views\api.py:611 -msgid "Could not parse correctly..." +#: .\cookbook\views\api.py:694 +#, fuzzy +#| msgid "The requested page could not be found." +msgid "No useable data could be found." +msgstr "No s'ha pogut trobar la pàgina sol·licitada." + +#: .\cookbook\views\api.py:710 +msgid "I couldn't find anything to do." msgstr "" -#: .\cookbook\views\data.py:94 +#: .\cookbook\views\data.py:30 .\cookbook\views\data.py:121 +#: .\cookbook\views\edit.py:50 .\cookbook\views\import_export.py:67 +#: .\cookbook\views\new.py:32 +msgid "You have reached the maximum number of recipes for your space." +msgstr "" + +#: .\cookbook\views\data.py:34 .\cookbook\views\data.py:125 +#: .\cookbook\views\edit.py:54 .\cookbook\views\import_export.py:71 +#: .\cookbook\views\new.py:36 +msgid "You have more users than allowed in your space." +msgstr "" + +#: .\cookbook\views\data.py:103 #, python-format msgid "Batch edit done. %(count)d recipe was updated." msgid_plural "Batch edit done. %(count)d Recipes where updated." @@ -1835,7 +2303,7 @@ msgid "Monitor" msgstr "Monitoratge" #: .\cookbook\views\delete.py:96 .\cookbook\views\lists.py:102 -#: .\cookbook\views\new.py:86 +#: .\cookbook\views\new.py:98 msgid "Storage Backend" msgstr "Backend d'emmagatzematge" @@ -1846,8 +2314,8 @@ msgstr "" "No s'ha pogut suprimir aquest fons d'emmagatzematge, ja que s'utilitza en " "almenys un monitor." -#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:204 -#: .\cookbook\views\new.py:144 +#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:213 +#: .\cookbook\views\new.py:156 msgid "Recipe Book" msgstr "Llibre de Receptes" @@ -1855,55 +2323,55 @@ msgstr "Llibre de Receptes" msgid "Bookmarks" msgstr "Marcadors" -#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:214 +#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:252 msgid "Invite Link" msgstr "Enllaç de invitació" -#: .\cookbook\views\edit.py:110 +#: .\cookbook\views\edit.py:119 msgid "Food" msgstr "Menjar" -#: .\cookbook\views\edit.py:119 +#: .\cookbook\views\edit.py:128 msgid "You cannot edit this storage!" msgstr "No podeu editar aquest emmagatzematge." -#: .\cookbook\views\edit.py:139 +#: .\cookbook\views\edit.py:148 msgid "Storage saved!" msgstr "Emmagatzematge desat." -#: .\cookbook\views\edit.py:145 +#: .\cookbook\views\edit.py:154 msgid "There was an error updating this storage backend!" msgstr "S'ha produït un error en actualitzar aquest backend d'emmagatzematge." -#: .\cookbook\views\edit.py:156 +#: .\cookbook\views\edit.py:165 msgid "Storage" msgstr "Emmagatzematge" -#: .\cookbook\views\edit.py:252 +#: .\cookbook\views\edit.py:261 msgid "Changes saved!" msgstr "Canvis desats!" -#: .\cookbook\views\edit.py:256 +#: .\cookbook\views\edit.py:265 msgid "Error saving changes!" msgstr "Error al desar canvis!" -#: .\cookbook\views\edit.py:289 +#: .\cookbook\views\edit.py:299 msgid "Units merged!" msgstr "Unitats fusionades!" -#: .\cookbook\views\edit.py:291 .\cookbook\views\edit.py:307 +#: .\cookbook\views\edit.py:301 .\cookbook\views\edit.py:317 msgid "Cannot merge with the same object!" msgstr "" -#: .\cookbook\views\edit.py:305 +#: .\cookbook\views\edit.py:315 msgid "Foods merged!" msgstr "Menjars Fusionats!" -#: .\cookbook\views\import_export.py:73 +#: .\cookbook\views\import_export.py:93 msgid "Importing is not implemented for this provider" msgstr "" -#: .\cookbook\views\import_export.py:92 +#: .\cookbook\views\import_export.py:115 msgid "Exporting is not implemented for this provider" msgstr "" @@ -1919,23 +2387,77 @@ msgstr "Descobriment" msgid "Shopping Lists" msgstr "Llistes de Compra" -#: .\cookbook\views\new.py:111 +#: .\cookbook\views\new.py:123 msgid "Imported new recipe!" msgstr "Nova Recepta importada!" -#: .\cookbook\views\new.py:114 +#: .\cookbook\views\new.py:126 msgid "There was an error importing this recipe!" msgstr "S'ha produït un error en importar la recepta!" -#: .\cookbook\views\views.py:123 +#: .\cookbook\views\new.py:226 +msgid "Hello" +msgstr "" + +#: .\cookbook\views\new.py:226 +msgid "You have been invited by " +msgstr "" + +#: .\cookbook\views\new.py:227 +msgid " to join their Tandoor Recipes space " +msgstr "" + +#: .\cookbook\views\new.py:228 +msgid "Click the following link to activate your account: " +msgstr "" + +#: .\cookbook\views\new.py:229 +msgid "" +"If the link does not work use the following code to manually join the space: " +msgstr "" + +#: .\cookbook\views\new.py:230 +msgid "The invitation is valid until " +msgstr "" + +#: .\cookbook\views\new.py:231 +msgid "" +"Tandoor Recipes is an Open Source recipe manager. Check it out on GitHub " +msgstr "" + +#: .\cookbook\views\new.py:234 +msgid "Tandoor Recipes Invite" +msgstr "" + +#: .\cookbook\views\new.py:241 +msgid "Invite link successfully send to user." +msgstr "" + +#: .\cookbook\views\new.py:244 +msgid "" +"You have send to many emails, please share the link manually or wait a few " +"hours." +msgstr "" + +#: .\cookbook\views\new.py:246 +msgid "Email to user could not be send, please share link manually." +msgstr "" + +#: .\cookbook\views\views.py:125 +msgid "" +"You have successfully created your own recipe space. Start by adding some " +"recipes or invite other people to join you." +msgstr "" + +#: .\cookbook\views\views.py:173 msgid "You do not have the required permissions to perform this action!" msgstr "No teniu els permisos necessaris per dur a terme aquesta acció!" -#: .\cookbook\views\views.py:134 +#: .\cookbook\views\views.py:184 msgid "Comment saved!" msgstr "Comentari Desat!" -#: .\cookbook\views\views.py:326 +#: .\cookbook\views\views.py:396 msgid "" "The setup page can only be used to create the first user! If you have " "forgotten your superuser credentials please consult the django documentation " @@ -1945,22 +2467,59 @@ msgstr "" "Si heu oblidat les vostres credencials de superusuari, consulteu la " "documentació de django sobre com restablir les contrasenyes." -#: .\cookbook\views\views.py:333 .\cookbook\views\views.py:378 +#: .\cookbook\views\views.py:403 msgid "Passwords dont match!" msgstr "Les contrasenyes no coincideixen!" -#: .\cookbook\views\views.py:349 .\cookbook\views\views.py:385 +#: .\cookbook\views\views.py:419 msgid "User has been created, please login!" msgstr "L'usuari s'ha creat, si us plau inicieu la sessió!" -#: .\cookbook\views\views.py:365 +#: .\cookbook\views\views.py:435 msgid "Malformed Invite Link supplied!" msgstr "S'ha proporcionat un enllaç d'invitació mal format." -#: .\cookbook\views\views.py:405 +#: .\cookbook\views\views.py:441 +#, fuzzy +#| msgid "You are not logged in and therefore cannot view this page!" +msgid "You are already member of a space and therefore cannot join this one." +msgstr "No heu iniciat la sessió i, per tant, no podeu veure aquesta pàgina." + +#: .\cookbook\views\views.py:452 +msgid "Successfully joined space." +msgstr "" + +#: .\cookbook\views\views.py:458 msgid "Invite Link not valid or already used!" msgstr "L'enllaç d'invitació no és vàlid o ja s'ha utilitzat." +#~ msgid "" +#~ "A username is not required, if left blank the new user can choose one." +#~ msgstr "" +#~ "No cal un nom d’usuari, si es deixa en blanc el nou usuari en pot triar " +#~ "un." + +#~ msgid "Imported from" +#~ msgstr "Importat des de" + +#~ msgid "Link" +#~ msgstr "Enllaç" + +#~ msgid "Logout" +#~ msgstr "Tancar Sessió" + +#~ msgid "Website Import" +#~ msgstr "Importa desde Web" + +#~ msgid "There was an error creating a resource!" +#~ msgstr "S'ha produït un error en crear un recurs." + +#~ msgid "" +#~ "The requested page refused to provide any information (Status Code 403)." +#~ msgstr "" +#~ "La pàgina sol·licitada refusa a proporcionar cap informació (Codi d’estat " +#~ "403)." + #~ msgid "Number of servings" #~ msgstr "Nombre de racions" @@ -1979,6 +2538,3 @@ msgstr "L'enllaç d'invitació no és vàlid o ja s'ha utilitzat." #~ msgid "Preference for given user already exists" #~ msgstr "Ja existeix la preferència per a l'usuari" - -#~ msgid "Bookmark saved!" -#~ msgstr "Marcador desat!" diff --git a/cookbook/locale/de/LC_MESSAGES/django.po b/cookbook/locale/de/LC_MESSAGES/django.po index 9393eca9..44df09b1 100644 --- a/cookbook/locale/de/LC_MESSAGES/django.po +++ b/cookbook/locale/de/LC_MESSAGES/django.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-04-11 15:09+0200\n" -"PO-Revision-Date: 2021-05-01 13:01+0000\n" -"Last-Translator: Marcel Paluch \n" +"POT-Creation-Date: 2021-06-12 20:30+0200\n" +"PO-Revision-Date: 2021-06-24 15:49+0000\n" +"Last-Translator: Maximilian J \n" "Language-Team: German \n" "Language: de\n" @@ -24,16 +24,17 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.5.3\n" +"X-Generator: Weblate 4.7\n" -#: .\cookbook\filters.py:23 .\cookbook\templates\base.html:91 -#: .\cookbook\templates\forms\edit_internal_recipe.html:219 +#: .\cookbook\filters.py:23 .\cookbook\templates\base.html:98 +#: .\cookbook\templates\forms\edit_internal_recipe.html:246 #: .\cookbook\templates\forms\ingredients.html:34 -#: .\cookbook\templates\stats.html:28 .\cookbook\views\lists.py:67 +#: .\cookbook\templates\space.html:37 .\cookbook\templates\stats.html:28 +#: .\cookbook\templates\url_import.html:270 .\cookbook\views\lists.py:67 msgid "Ingredients" msgstr "Zutaten" -#: .\cookbook\forms.py:45 +#: .\cookbook\forms.py:49 msgid "" "Color of the top navigation bar. Not all colors work with all themes, just " "try them out!" @@ -41,13 +42,13 @@ msgstr "" "Farbe der oberen Navigationsleiste. Nicht alle Farben passen, daher einfach " "mal ausprobieren!" -#: .\cookbook\forms.py:46 +#: .\cookbook\forms.py:51 msgid "Default Unit to be used when inserting a new ingredient into a recipe." msgstr "" "Standardeinheit, die beim Einfügen einer neuen Zutat in ein Rezept zu " "verwenden ist." -#: .\cookbook\forms.py:47 +#: .\cookbook\forms.py:53 msgid "" "Enables support for fractions in ingredient amounts (e.g. convert decimals " "to fractions automatically)" @@ -55,7 +56,7 @@ msgstr "" "Unterstützung für Brüche in Zutaten aktivieren. Dadurch werden Dezimalzahlen " "mit Brüchen ersetzt, z.B. 0.5 mit ½." -#: .\cookbook\forms.py:48 +#: .\cookbook\forms.py:56 msgid "" "Users with whom newly created meal plan/shopping list entries should be " "shared by default." @@ -63,21 +64,21 @@ msgstr "" "Nutzer, mit denen neue Pläne und Einkaufslisten standardmäßig geteilt werden " "sollen." -#: .\cookbook\forms.py:49 +#: .\cookbook\forms.py:58 msgid "Show recently viewed recipes on search page." msgstr "Zuletzt angeschaute Rezepte bei der Suche anzeigen." -#: .\cookbook\forms.py:50 +#: .\cookbook\forms.py:59 msgid "Number of decimals to round ingredients." msgstr "Anzahl an Dezimalstellen, auf die gerundet werden soll." -#: .\cookbook\forms.py:51 +#: .\cookbook\forms.py:60 msgid "If you want to be able to create and see comments underneath recipes." msgstr "" "Wenn du in der Lage sein willst, Kommentare unter Rezepten zu erstellen und " "zu sehen." -#: .\cookbook\forms.py:53 +#: .\cookbook\forms.py:62 msgid "" "Setting to 0 will disable auto sync. When viewing a shopping list the list " "is updated every set seconds to sync changes someone else might have made. " @@ -89,11 +90,11 @@ msgstr "" "aktualisiert. Dies ist nützlich, wenn mehrere Personen eine Liste beim " "Einkaufen verwenden, benötigt jedoch etwas Datenvolumen." -#: .\cookbook\forms.py:56 +#: .\cookbook\forms.py:65 msgid "Makes the navbar stick to the top of the page." msgstr "Navigationsleiste wird oben angeheftet." -#: .\cookbook\forms.py:72 +#: .\cookbook\forms.py:81 msgid "" "Both fields are optional. If none are given the username will be displayed " "instead" @@ -101,39 +102,42 @@ msgstr "" "Beide Felder sind optional. Wenn keins von beiden gegeben ist, wird der " "Nutzername angezeigt" -#: .\cookbook\forms.py:93 .\cookbook\forms.py:315 -#: .\cookbook\templates\forms\edit_internal_recipe.html:45 +#: .\cookbook\forms.py:102 .\cookbook\forms.py:331 +#: .\cookbook\templates\forms\edit_internal_recipe.html:49 +#: .\cookbook\templates\url_import.html:154 msgid "Name" msgstr "Name" -#: .\cookbook\forms.py:94 .\cookbook\forms.py:316 -#: .\cookbook\templates\base.html:98 -#: .\cookbook\templates\forms\edit_internal_recipe.html:81 -#: .\cookbook\templates\stats.html:24 .\cookbook\templates\url_import.html:202 +#: .\cookbook\forms.py:103 .\cookbook\forms.py:332 +#: .\cookbook\templates\base.html:105 +#: .\cookbook\templates\forms\edit_internal_recipe.html:85 +#: .\cookbook\templates\space.html:33 .\cookbook\templates\stats.html:24 +#: .\cookbook\templates\url_import.html:188 +#: .\cookbook\templates\url_import.html:573 msgid "Keywords" -msgstr "Schlagwörter" +msgstr "Stichwörter" -#: .\cookbook\forms.py:95 +#: .\cookbook\forms.py:104 msgid "Preparation time in minutes" msgstr "Zubereitungszeit in Minuten" -#: .\cookbook\forms.py:96 +#: .\cookbook\forms.py:105 msgid "Waiting time (cooking/baking) in minutes" msgstr "Wartezeit (kochen/backen) in Minuten" -#: .\cookbook\forms.py:97 .\cookbook\forms.py:317 +#: .\cookbook\forms.py:106 .\cookbook\forms.py:333 msgid "Path" msgstr "Pfad" -#: .\cookbook\forms.py:98 +#: .\cookbook\forms.py:107 msgid "Storage UID" msgstr "Speicher-UID" -#: .\cookbook\forms.py:121 +#: .\cookbook\forms.py:133 msgid "Default" msgstr "Standard" -#: .\cookbook\forms.py:130 +#: .\cookbook\forms.py:144 .\cookbook\templates\url_import.html:90 msgid "" "To prevent duplicates recipes with the same name as existing ones are " "ignored. Check this box to import everything." @@ -141,51 +145,51 @@ msgstr "" "Um Duplikate zu vermeiden werden Rezepte mit dem gleichen Namen ignoriert. " "Aktivieren Sie dieses Kontrollkästchen, um alles zu importieren." -#: .\cookbook\forms.py:149 +#: .\cookbook\forms.py:164 msgid "New Unit" msgstr "Neue Einheit" -#: .\cookbook\forms.py:150 +#: .\cookbook\forms.py:165 msgid "New unit that other gets replaced by." msgstr "Neue Einheit, die die alte ersetzt." -#: .\cookbook\forms.py:155 +#: .\cookbook\forms.py:170 msgid "Old Unit" msgstr "Alte Einheit" -#: .\cookbook\forms.py:156 +#: .\cookbook\forms.py:171 msgid "Unit that should be replaced." msgstr "Einheit, die ersetzt werden soll." -#: .\cookbook\forms.py:172 +#: .\cookbook\forms.py:187 msgid "New Food" msgstr "Neue Zutat" -#: .\cookbook\forms.py:173 +#: .\cookbook\forms.py:188 msgid "New food that other gets replaced by." msgstr "Neue Zutat, die die alte ersetzt." -#: .\cookbook\forms.py:178 +#: .\cookbook\forms.py:193 msgid "Old Food" msgstr "Alte Zutat" -#: .\cookbook\forms.py:179 +#: .\cookbook\forms.py:194 msgid "Food that should be replaced." msgstr "Zutat, die ersetzt werden soll." -#: .\cookbook\forms.py:197 +#: .\cookbook\forms.py:212 msgid "Add your comment: " msgstr "Schreibe einen Kommentar: " -#: .\cookbook\forms.py:238 +#: .\cookbook\forms.py:253 msgid "Leave empty for dropbox and enter app password for nextcloud." msgstr "Für Dropbox leer lassen, bei Nextcloud App-Passwort eingeben." -#: .\cookbook\forms.py:245 +#: .\cookbook\forms.py:260 msgid "Leave empty for nextcloud and enter api token for dropbox." msgstr "Für Nextcloud leer lassen, für Dropbox API-Token eingeben." -#: .\cookbook\forms.py:253 +#: .\cookbook\forms.py:269 msgid "" "Leave empty for dropbox and enter only base url for nextcloud (/remote." "php/webdav/ is added automatically)" @@ -193,79 +197,89 @@ msgstr "" "Für Dropbox leer lassen, für Nextcloud Server-URL angeben (/remote.php/" "webdav/ wird automatisch hinzugefügt)" -#: .\cookbook\forms.py:291 +#: .\cookbook\forms.py:307 msgid "Search String" msgstr "Suchwort" -#: .\cookbook\forms.py:318 +#: .\cookbook\forms.py:334 msgid "File ID" msgstr "Datei-ID" -#: .\cookbook\forms.py:354 +#: .\cookbook\forms.py:370 msgid "You must provide at least a recipe or a title." msgstr "Mindestens ein Rezept oder ein Titel müssen angegeben werden." -#: .\cookbook\forms.py:367 +#: .\cookbook\forms.py:383 msgid "You can list default users to share recipes with in the settings." msgstr "" "Sie können in den Einstellungen Standardbenutzer auflisten, für die Sie " "Rezepte freigeben möchten." -#: .\cookbook\forms.py:368 -#: .\cookbook\templates\forms\edit_internal_recipe.html:377 +#: .\cookbook\forms.py:384 +#: .\cookbook\templates\forms\edit_internal_recipe.html:404 msgid "" "You can use markdown to format this field. See the docs here" msgstr "" -"Markdown kann genutzt werden, um dieses Feld zu formatieren. Siehe hier für weitere Information" +"Markdown kann genutzt werden, um dieses Feld zu formatieren. Siehe hier für weitere Information" -#: .\cookbook\forms.py:393 -msgid "A username is not required, if left blank the new user can choose one." +#: .\cookbook\forms.py:409 +msgid "Maximum number of users for this space reached." +msgstr "Maximale Nutzer-Anzahl wurde für diesen Space erreicht." + +#: .\cookbook\forms.py:415 +msgid "Email address already taken!" +msgstr "Email-Adresse ist bereits vergeben!" + +#: .\cookbook\forms.py:423 +msgid "" +"An email address is not required but if present the invite link will be send " +"to the user." msgstr "" -"Kein Benutzername benötigt. Wenn leer gelassen, kann der neue Benutzer einen " -"wählen." +"Eine Email-Adresse wird nicht benötigt, aber falls vorhanden, wird der " +"Einladungslink zum Benutzer geschickt." -#: .\cookbook\helper\permission_helper.py:123 -#: .\cookbook\helper\permission_helper.py:129 -#: .\cookbook\helper\permission_helper.py:151 -#: .\cookbook\helper\permission_helper.py:196 -#: .\cookbook\helper\permission_helper.py:210 -#: .\cookbook\helper\permission_helper.py:221 -#: .\cookbook\helper\permission_helper.py:232 .\cookbook\views\data.py:30 -#: .\cookbook\views\views.py:112 .\cookbook\views\views.py:116 -#: .\cookbook\views\views.py:184 -msgid "You do not have the required permissions to view this page!" -msgstr "Du hast nicht die notwendigen Rechte um diese Seite zu sehen!" +#: .\cookbook\forms.py:438 +msgid "Name already taken." +msgstr "Name wird bereits verwendet." -#: .\cookbook\helper\permission_helper.py:141 +#: .\cookbook\forms.py:449 +msgid "Accept Terms and Privacy" +msgstr "AGBs und Datenschutz akzeptieren" + +#: .\cookbook\helper\AllAuthCustomAdapter.py:30 +msgid "" +"In order to prevent spam, the requested email was not send. Please wait a " +"few minutes and try again." +msgstr "" +"Um Spam zu vermeiden, wurde die angeforderte Email nicht gesendet. Bitte " +"warte ein paar Minuten und versuche es erneut." + +#: .\cookbook\helper\permission_helper.py:124 +#: .\cookbook\helper\permission_helper.py:144 .\cookbook\views\views.py:147 msgid "You are not logged in and therefore cannot view this page!" msgstr "Du bist nicht angemeldet, daher kannst du diese Seite nicht sehen!" -#: .\cookbook\helper\permission_helper.py:145 -#: .\cookbook\helper\permission_helper.py:167 -#: .\cookbook\helper\permission_helper.py:182 +#: .\cookbook\helper\permission_helper.py:127 +#: .\cookbook\helper\permission_helper.py:132 +#: .\cookbook\helper\permission_helper.py:154 +#: .\cookbook\helper\permission_helper.py:199 +#: .\cookbook\helper\permission_helper.py:213 +#: .\cookbook\helper\permission_helper.py:224 +#: .\cookbook\helper\permission_helper.py:235 .\cookbook\views\data.py:39 +#: .\cookbook\views\views.py:158 .\cookbook\views\views.py:165 +#: .\cookbook\views\views.py:253 +msgid "You do not have the required permissions to view this page!" +msgstr "Du hast nicht die notwendigen Rechte um diese Seite zu sehen!" + +#: .\cookbook\helper\permission_helper.py:148 +#: .\cookbook\helper\permission_helper.py:170 +#: .\cookbook\helper\permission_helper.py:185 msgid "You cannot interact with this object as it is not owned by you!" msgstr "" "Du kannst mit diesem Objekt nicht interagieren, da es dir nicht gehört!" -#: .\cookbook\helper\recipe_url_import.py:40 .\cookbook\views\api.py:549 -msgid "The requested site provided malformed data and cannot be read." -msgstr "" -"Die angefragte Seite hat ungültige Daten zurückgegeben oder die Daten " -"konnten nicht verarbeitet werden." - -#: .\cookbook\helper\recipe_url_import.py:54 -msgid "" -"The requested site does not provide any recognized data format to import the " -"recipe from." -msgstr "" -"Die angefragte Seite stellt keine bekannten Datenformate zur Verfügung." - -#: .\cookbook\helper\recipe_url_import.py:160 -msgid "Imported from" -msgstr "Importiert von" - #: .\cookbook\helper\template_helper.py:60 #: .\cookbook\helper\template_helper.py:62 msgid "Could not parse template code." @@ -275,12 +289,16 @@ msgstr "Konnte den Template code nicht verarbeiten." #: .\cookbook\templates\import.html:14 .\cookbook\templates\import.html:20 #: .\cookbook\templates\import_response.html:7 #: .\cookbook\templates\test.html:14 .\cookbook\templates\test.html:20 -#: .\cookbook\templates\url_import.html:233 .\cookbook\views\delete.py:60 -#: .\cookbook\views\edit.py:190 +#: .\cookbook\templates\url_import.html:27 +#: .\cookbook\templates\url_import.html:101 +#: .\cookbook\templates\url_import.html:123 +#: .\cookbook\templates\url_import.html:317 +#: .\cookbook\templates\url_import.html:604 .\cookbook\views\delete.py:60 +#: .\cookbook\views\edit.py:199 msgid "Import" msgstr "Importieren" -#: .\cookbook\integration\integration.py:131 +#: .\cookbook\integration\integration.py:162 msgid "" "Importer expected a .zip file. Did you choose the correct importer type for " "your data ?" @@ -288,31 +306,40 @@ msgstr "" "Importer erwartet eine .zip Datei. Hast du den richtigen Importer-Typ für " "deine Daten ausgewählt?" -#: .\cookbook\integration\integration.py:134 +#: .\cookbook\integration\integration.py:165 +msgid "" +"An unexpected error occurred during the import. Please make sure you have " +"uploaded a valid file." +msgstr "" +"Ein unerwarteter Fehler trat beim Importieren auf. Bitte stelle sicher, dass " +"die hochgeladene Datei gültig ist." + +#: .\cookbook\integration\integration.py:169 msgid "The following recipes were ignored because they already existed:" msgstr "Die folgenden Rezepte wurden ignoriert da sie bereits existieren:" -#: .\cookbook\integration\integration.py:137 +#: .\cookbook\integration\integration.py:173 #, python-format msgid "Imported %s recipes." msgstr "%s Rezepte importiert." -#: .\cookbook\integration\paprika.py:44 +#: .\cookbook\integration\paprika.py:46 msgid "Notes" msgstr "Notizen" -#: .\cookbook\integration\paprika.py:47 +#: .\cookbook\integration\paprika.py:49 msgid "Nutritional Information" msgstr "Nährwert Informationen" -#: .\cookbook\integration\paprika.py:50 +#: .\cookbook\integration\paprika.py:53 msgid "Source" msgstr "Quelle" #: .\cookbook\integration\safron.py:23 -#: .\cookbook\templates\forms\edit_internal_recipe.html:75 +#: .\cookbook\templates\forms\edit_internal_recipe.html:79 #: .\cookbook\templates\include\log_cooking.html:16 -#: .\cookbook\templates\url_import.html:84 +#: .\cookbook\templates\url_import.html:224 +#: .\cookbook\templates\url_import.html:455 #, fuzzy msgid "Servings" msgstr "Portionen" @@ -322,11 +349,11 @@ msgid "Waiting time" msgstr "Wartezeit" #: .\cookbook\integration\safron.py:27 -#: .\cookbook\templates\forms\edit_internal_recipe.html:69 +#: .\cookbook\templates\forms\edit_internal_recipe.html:73 msgid "Preparation Time" msgstr "Vorbereitungszeit" -#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:71 +#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:78 #: .\cookbook\templates\forms\ingredients.html:7 #: .\cookbook\templates\index.html:7 msgid "Cookbook" @@ -352,44 +379,76 @@ msgstr "Abendessen" msgid "Other" msgstr "Andere" -#: .\cookbook\models.py:110 .\cookbook\templates\shopping_list.html:48 +#: .\cookbook\models.py:71 +msgid "" +"Maximum file storage for space in MB. 0 for unlimited, -1 to disable file " +"upload." +msgstr "" +"Maximale Datei-Speichergröße in MB. 0 für unbegrenzt, -1 um den Datei-Upload " +"zu deaktivieren." + +#: .\cookbook\models.py:121 .\cookbook\templates\search.html:7 +#: .\cookbook\templates\shopping_list.html:52 msgid "Search" msgstr "Suche" -#: .\cookbook\models.py:111 .\cookbook\templates\base.html:85 +#: .\cookbook\models.py:122 .\cookbook\templates\base.html:92 #: .\cookbook\templates\meal_plan.html:5 .\cookbook\views\delete.py:152 -#: .\cookbook\views\edit.py:224 .\cookbook\views\new.py:188 +#: .\cookbook\views\edit.py:233 .\cookbook\views\new.py:201 msgid "Meal-Plan" msgstr "Essensplan" -#: .\cookbook\models.py:112 .\cookbook\templates\base.html:82 +#: .\cookbook\models.py:123 .\cookbook\templates\base.html:89 msgid "Books" msgstr "Bücher" -#: .\cookbook\models.py:119 +#: .\cookbook\models.py:131 msgid "Small" msgstr "Klein" -#: .\cookbook\models.py:119 +#: .\cookbook\models.py:131 msgid "Large" msgstr "Groß" -#: .\cookbook\models.py:327 -#: .\cookbook\templates\forms\edit_internal_recipe.html:198 +#: .\cookbook\models.py:131 .\cookbook\templates\generic\new_template.html:6 +#: .\cookbook\templates\generic\new_template.html:14 +#: .\cookbook\templates\meal_plan.html:323 +msgid "New" +msgstr "Neu" + +#: .\cookbook\models.py:340 +#: .\cookbook\templates\forms\edit_internal_recipe.html:202 msgid "Text" msgstr "Text" -#: .\cookbook\models.py:327 -#: .\cookbook\templates\forms\edit_internal_recipe.html:199 +#: .\cookbook\models.py:340 +#: .\cookbook\templates\forms\edit_internal_recipe.html:203 msgid "Time" msgstr "Zeit" +#: .\cookbook\models.py:340 +#: .\cookbook\templates\forms\edit_internal_recipe.html:204 +#: .\cookbook\templates\forms\edit_internal_recipe.html:218 +#, fuzzy +#| msgid "File ID" +msgid "File" +msgstr "Datei-ID" + +#: .\cookbook\serializer.py:109 +msgid "File uploads are not enabled for this Space." +msgstr "Datei-Uploads sind in diesem Space nicht aktiviert." + +#: .\cookbook\serializer.py:117 +msgid "You have reached your file upload limit." +msgstr "Du hast Dein Datei-Uploadlimit erreicht." + #: .\cookbook\tables.py:35 .\cookbook\templates\books.html:36 #: .\cookbook\templates\generic\edit_template.html:6 #: .\cookbook\templates\generic\edit_template.html:14 #: .\cookbook\templates\meal_plan.html:281 #: .\cookbook\templates\recipes_table.html:82 #: .\cookbook\templates\shopping_list.html:33 +#: .\cookbook\templates\space.html:84 msgid "Edit" msgstr "Bearbeiten" @@ -403,10 +462,6 @@ msgstr "Bearbeiten" msgid "Delete" msgstr "Löschen" -#: .\cookbook\tables.py:144 -msgid "Link" -msgstr "Link" - #: .\cookbook\templates\404.html:5 msgid "404 Error" msgstr "404 Fehler" @@ -423,21 +478,132 @@ msgstr "Zur Hauptseite" msgid "Report a Bug" msgstr "Fehler melden" -#: .\cookbook\templates\account\login.html:7 -#: .\cookbook\templates\base.html:170 +#: .\cookbook\templates\account\email.html:6 +#: .\cookbook\templates\account\email.html:9 +msgid "E-mail Addresses" +msgstr "Email-Adressen" + +#: .\cookbook\templates\account\email.html:11 +msgid "The following e-mail addresses are associated with your account:" +msgstr "Die folgenden Email-Adressen sind mit deinem Account verknüpft:" + +#: .\cookbook\templates\account\email.html:28 +msgid "Verified" +msgstr "Verfiziert" + +#: .\cookbook\templates\account\email.html:30 +msgid "Unverified" +msgstr "Unverfiziert" + +#: .\cookbook\templates\account\email.html:32 +msgid "Primary" +msgstr "" + +#: .\cookbook\templates\account\email.html:39 +#, fuzzy +#| msgid "Make Header" +msgid "Make Primary" +msgstr "Überschrift erstellen" + +#: .\cookbook\templates\account\email.html:41 +msgid "Re-send Verification" +msgstr "Verifikation erneut senden" + +#: .\cookbook\templates\account\email.html:42 +#: .\cookbook\templates\socialaccount\connections.html:36 +msgid "Remove" +msgstr "Entfernen" + +#: .\cookbook\templates\account\email.html:50 +msgid "Warning:" +msgstr "Warnung:" + +#: .\cookbook\templates\account\email.html:50 +msgid "" +"You currently do not have any e-mail address set up. You should really add " +"an e-mail address so you can receive notifications, reset your password, etc." +msgstr "" +"Du hast aktuell keine Email-Adressen eingerichtet. Du solltest eine Email-" +"Adresse hinzufügen, um Benachrichtigungen, Passwort-Rücksetzungen, etc. " +"empfangen zu können." + +#: .\cookbook\templates\account\email.html:56 +msgid "Add E-mail Address" +msgstr "Email-Adresse hinzufügen" + +#: .\cookbook\templates\account\email.html:61 +msgid "Add E-mail" +msgstr "Email hinzufügen" + +#: .\cookbook\templates\account\email.html:71 +msgid "Do you really want to remove the selected e-mail address?" +msgstr "Möchtest Du wirklich die ausgewählte Email-Adresse entfernen?" + +#: .\cookbook\templates\account\email_confirm.html:6 +#: .\cookbook\templates\account\email_confirm.html:10 +msgid "Confirm E-mail Address" +msgstr "Email-Adresse bestätigen" + +#: .\cookbook\templates\account\email_confirm.html:16 +#, python-format +msgid "" +"Please confirm that\n" +" %(email)s is an e-mail address " +"for user %(user_display)s\n" +" ." +msgstr "" +"Bitte bestätige, dass\n" +" %(email)s für den Benutzer " +"%(user_display)s\n" +" ist." + +#: .\cookbook\templates\account\email_confirm.html:22 +#: .\cookbook\templates\generic\delete_template.html:21 +msgid "Confirm" +msgstr "Bestätigen" + +#: .\cookbook\templates\account\email_confirm.html:29 +#, python-format +msgid "" +"This e-mail confirmation link expired or is invalid. Please\n" +" issue a new e-mail confirmation " +"request." +msgstr "" +"Dieser Email-Bestätigungslink ist abgelaufen oder ungültig. Bitte \n" +" beantrage einen neuen Email-" +"Bestätigungslink." + +#: .\cookbook\templates\account\login.html:8 +#: .\cookbook\templates\base.html:180 msgid "Login" msgstr "Anmelden" -#: .\cookbook\templates\account\login.html:13 -#: .\cookbook\templates\account\login.html:28 +#: .\cookbook\templates\account\login.html:15 +#: .\cookbook\templates\account\login.html:31 +#: .\cookbook\templates\account\signup.html:69 +#: .\cookbook\templates\account\signup_closed.html:15 msgid "Sign In" msgstr "Einloggen" -#: .\cookbook\templates\account\login.html:38 +#: .\cookbook\templates\account\login.html:32 +msgid "Sign Up" +msgstr "Registrieren" + +#: .\cookbook\templates\account\login.html:36 +#: .\cookbook\templates\account\login.html:37 +#: .\cookbook\templates\account\password_reset.html:29 +msgid "Reset My Password" +msgstr "Passwort zurücksetzen" + +#: .\cookbook\templates\account\login.html:37 +msgid "Lost your password?" +msgstr "Passwort vergessen?" + +#: .\cookbook\templates\account\login.html:48 msgid "Social Login" msgstr "Social Login" -#: .\cookbook\templates\account\login.html:39 +#: .\cookbook\templates\account\login.html:49 msgid "You can use any of the following providers to sign in." msgstr "Du kannst jeden der folgenden Anbieter zum Einloggen verwenden." @@ -451,116 +617,166 @@ msgstr "Ausloggen" msgid "Are you sure you want to sign out?" msgstr "Willst du dich wirklich ausloggen?" -#: .\cookbook\templates\account\password_reset.html:5 -#: .\cookbook\templates\account\password_reset_done.html:5 +#: .\cookbook\templates\account\password_reset.html:7 +#: .\cookbook\templates\account\password_reset.html:13 +#: .\cookbook\templates\account\password_reset_done.html:7 +#: .\cookbook\templates\account\password_reset_done.html:10 msgid "Password Reset" msgstr "Passwort Reset" -#: .\cookbook\templates\account\password_reset.html:9 -#: .\cookbook\templates\account\password_reset_done.html:9 -msgid "Password reset is not implemented for the time being!" -msgstr "Passwort-Rücksetzung ist derzeit noch nicht implementiert!" +#: .\cookbook\templates\account\password_reset.html:24 +msgid "" +"Forgotten your password? Enter your e-mail address below, and we'll send you " +"an e-mail allowing you to reset it." +msgstr "" +"Passwort vergessen? Gebe Deine Email-Adresse unten ein und wir senden Dir " +"eine Email zur Passwort-Rücksetzung." -#: .\cookbook\templates\account\signup.html:5 +#: .\cookbook\templates\account\password_reset.html:32 +msgid "Password reset is disabled on this instance." +msgstr "Passwort-Rücksetzung ist in dieser Instanz deaktiviert." + +#: .\cookbook\templates\account\password_reset_done.html:16 +msgid "" +"We have sent you an e-mail. Please contact us if you do not receive it " +"within a few minutes." +msgstr "" +"Wir haben Dir eine Email gesendet. Bitte kontaktiere uns, falls du sie nicht " +"innerhalb der nächsten Minuten erhältst." + +#: .\cookbook\templates\account\signup.html:6 msgid "Register" msgstr "Registrieren" -#: .\cookbook\templates\account\signup.html:9 -msgid "Create your Account" +#: .\cookbook\templates\account\signup.html:12 +msgid "Create an Account" msgstr "Account erstellen" -#: .\cookbook\templates\account\signup.html:14 +#: .\cookbook\templates\account\signup.html:42 +msgid "I accept the follwoing" +msgstr "Ich akzeptiere folgendes" + +#: .\cookbook\templates\account\signup.html:45 +msgid "Terms and Conditions" +msgstr "Bedingungen und Bestimmungen" + +#: .\cookbook\templates\account\signup.html:48 +msgid "and" +msgstr "und" + +#: .\cookbook\templates\account\signup.html:52 +msgid "Privacy Policy" +msgstr "Datenschutzbelehrung" + +#: .\cookbook\templates\account\signup.html:65 msgid "Create User" msgstr "Nutzer erstellen" -#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:160 +#: .\cookbook\templates\account\signup.html:69 +msgid "Already have an account?" +msgstr "Hast Du bereits einen Account?" + +#: .\cookbook\templates\account\signup_closed.html:5 +#: .\cookbook\templates\account\signup_closed.html:11 +msgid "Sign Up Closed" +msgstr "Registrierung geschlossen" + +#: .\cookbook\templates\account\signup_closed.html:13 +msgid "We are sorry, but the sign up is currently closed." +msgstr "Es tut uns Leid, aber die Registrierung ist derzeit geschlossen." + +#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:170 #: .\cookbook\templates\rest_framework\api.html:11 msgid "API Documentation" msgstr "API-Dokumentation" -#: .\cookbook\templates\base.html:78 +#: .\cookbook\templates\base.html:85 msgid "Utensils" msgstr "Utensilien" -#: .\cookbook\templates\base.html:88 +#: .\cookbook\templates\base.html:95 msgid "Shopping" msgstr "Einkaufsliste" -#: .\cookbook\templates\base.html:102 .\cookbook\views\delete.py:84 -#: .\cookbook\views\edit.py:93 .\cookbook\views\lists.py:26 -#: .\cookbook\views\new.py:66 +#: .\cookbook\templates\base.html:109 .\cookbook\views\delete.py:84 +#: .\cookbook\views\edit.py:102 .\cookbook\views\lists.py:26 +#: .\cookbook\views\new.py:78 msgid "Keyword" msgstr "Schlagwort" -#: .\cookbook\templates\base.html:104 +#: .\cookbook\templates\base.html:111 msgid "Batch Edit" msgstr "Massenbearbeitung" -#: .\cookbook\templates\base.html:109 +#: .\cookbook\templates\base.html:116 msgid "Storage Data" msgstr "Datenquellen" -#: .\cookbook\templates\base.html:113 +#: .\cookbook\templates\base.html:120 msgid "Storage Backends" msgstr "Speicherquellen" -#: .\cookbook\templates\base.html:115 +#: .\cookbook\templates\base.html:122 msgid "Configure Sync" msgstr "Synchronisation einstellen" -#: .\cookbook\templates\base.html:117 +#: .\cookbook\templates\base.html:124 msgid "Discovered Recipes" msgstr "Entdeckte Rezepte" -#: .\cookbook\templates\base.html:119 +#: .\cookbook\templates\base.html:126 msgid "Discovery Log" msgstr "Entdeckungsverlauf" -#: .\cookbook\templates\base.html:121 .\cookbook\templates\stats.html:10 +#: .\cookbook\templates\base.html:128 .\cookbook\templates\stats.html:10 msgid "Statistics" msgstr "Statistiken" -#: .\cookbook\templates\base.html:123 +#: .\cookbook\templates\base.html:130 msgid "Units & Ingredients" msgstr "Einheiten & Zutaten" -#: .\cookbook\templates\base.html:125 +#: .\cookbook\templates\base.html:132 .\cookbook\templates\index.html:47 msgid "Import Recipe" msgstr "Rezept importieren" -#: .\cookbook\templates\base.html:144 .\cookbook\templates\settings.html:6 +#: .\cookbook\templates\base.html:151 .\cookbook\templates\settings.html:6 #: .\cookbook\templates\settings.html:16 msgid "Settings" msgstr "Einstellungen" -#: .\cookbook\templates\base.html:146 .\cookbook\templates\history.html:6 +#: .\cookbook\templates\base.html:153 .\cookbook\templates\history.html:6 #: .\cookbook\templates\history.html:14 msgid "History" msgstr "Verlauf" -#: .\cookbook\templates\base.html:150 .\cookbook\templates\system.html:13 +#: .\cookbook\templates\base.html:155 .\cookbook\templates\space.html:7 +msgid "Space Settings" +msgstr "Space Einstellungen" + +#: .\cookbook\templates\base.html:160 .\cookbook\templates\system.html:13 msgid "System" msgstr "System" -#: .\cookbook\templates\base.html:152 +#: .\cookbook\templates\base.html:162 msgid "Admin" msgstr "Admin" -#: .\cookbook\templates\base.html:156 +#: .\cookbook\templates\base.html:166 msgid "Markdown Guide" msgstr "Markdown-Anleitung" -#: .\cookbook\templates\base.html:158 +#: .\cookbook\templates\base.html:168 msgid "GitHub" msgstr "GitHub" -#: .\cookbook\templates\base.html:162 +#: .\cookbook\templates\base.html:172 msgid "API Browser" msgstr "API Browser" -#: .\cookbook\templates\base.html:165 -msgid "Logout" -msgstr "Abmelden" +#: .\cookbook\templates\base.html:175 +msgid "Log out" +msgstr "Ausloggen" #: .\cookbook\templates\batch\edit.html:6 msgid "Batch edit Category" @@ -576,7 +792,7 @@ msgstr "" "Ausgewählte Schlagwörter zu allen Rezepten, die das Suchwort enthalten, " "hinzufügen" -#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:76 +#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:85 msgid "Sync" msgstr "Synchronisieren" @@ -605,7 +821,7 @@ msgstr "Jetzt Synchronisieren!" msgid "Importing Recipes" msgstr "Rezepte werden importiert" -#: .\cookbook\templates\batch\waiting.html:23 +#: .\cookbook\templates\batch\waiting.html:28 msgid "" "This can take a few minutes, depending on the number of recipes in sync, " "please wait." @@ -644,26 +860,31 @@ msgid "Export Recipes" msgstr "Rezepte exportieren" #: .\cookbook\templates\export.html:14 .\cookbook\templates\export.html:20 -#: .\cookbook\templates\shopping_list.html:347 +#: .\cookbook\templates\shopping_list.html:351 #: .\cookbook\templates\test2.html:14 .\cookbook\templates\test2.html:20 msgid "Export" msgstr "Exportieren" +#: .\cookbook\templates\files.html:7 +msgid "Files" +msgstr "Dateien" + #: .\cookbook\templates\forms\edit_import_recipe.html:5 #: .\cookbook\templates\forms\edit_import_recipe.html:9 msgid "Import new Recipe" msgstr "Rezept importieren" #: .\cookbook\templates\forms\edit_import_recipe.html:14 -#: .\cookbook\templates\forms\edit_internal_recipe.html:389 -#: .\cookbook\templates\forms\edit_internal_recipe.html:421 +#: .\cookbook\templates\forms\edit_internal_recipe.html:416 +#: .\cookbook\templates\forms\edit_internal_recipe.html:448 #: .\cookbook\templates\generic\edit_template.html:23 #: .\cookbook\templates\generic\new_template.html:23 #: .\cookbook\templates\include\log_cooking.html:28 #: .\cookbook\templates\meal_plan.html:325 -#: .\cookbook\templates\settings.html:28 .\cookbook\templates\settings.html:35 -#: .\cookbook\templates\settings.html:58 .\cookbook\templates\settings.html:73 -#: .\cookbook\templates\shopping_list.html:349 +#: .\cookbook\templates\settings.html:44 .\cookbook\templates\settings.html:52 +#: .\cookbook\templates\settings.html:96 +#: .\cookbook\templates\settings.html:114 +#: .\cookbook\templates\shopping_list.html:353 msgid "Save" msgstr "Speichern" @@ -672,179 +893,186 @@ msgstr "Speichern" msgid "Edit Recipe" msgstr "Rezept bearbeiten" -#: .\cookbook\templates\forms\edit_internal_recipe.html:52 +#: .\cookbook\templates\forms\edit_internal_recipe.html:56 +#: .\cookbook\templates\url_import.html:171 msgid "Description" msgstr "Beschreibung" -#: .\cookbook\templates\forms\edit_internal_recipe.html:72 +#: .\cookbook\templates\forms\edit_internal_recipe.html:76 msgid "Waiting Time" msgstr "Wartezeit" -#: .\cookbook\templates\forms\edit_internal_recipe.html:78 +#: .\cookbook\templates\forms\edit_internal_recipe.html:82 msgid "Servings Text" msgstr "Portionen-Text" -#: .\cookbook\templates\forms\edit_internal_recipe.html:89 +#: .\cookbook\templates\forms\edit_internal_recipe.html:93 msgid "Select Keywords" msgstr "Schlagwörter wählen" -#: .\cookbook\templates\forms\edit_internal_recipe.html:90 -#: .\cookbook\templates\url_import.html:212 +#: .\cookbook\templates\forms\edit_internal_recipe.html:94 +#: .\cookbook\templates\url_import.html:583 msgid "Add Keyword" msgstr "Schlagwort hinzufügen" -#: .\cookbook\templates\forms\edit_internal_recipe.html:108 +#: .\cookbook\templates\forms\edit_internal_recipe.html:112 msgid "Nutrition" msgstr "Nährwerte" -#: .\cookbook\templates\forms\edit_internal_recipe.html:112 -#: .\cookbook\templates\forms\edit_internal_recipe.html:162 +#: .\cookbook\templates\forms\edit_internal_recipe.html:116 +#: .\cookbook\templates\forms\edit_internal_recipe.html:166 msgid "Delete Step" msgstr "Schritt löschen" -#: .\cookbook\templates\forms\edit_internal_recipe.html:116 +#: .\cookbook\templates\forms\edit_internal_recipe.html:120 msgid "Calories" msgstr "Kalorien" -#: .\cookbook\templates\forms\edit_internal_recipe.html:119 +#: .\cookbook\templates\forms\edit_internal_recipe.html:123 msgid "Carbohydrates" msgstr "Kohlenhydrate" -#: .\cookbook\templates\forms\edit_internal_recipe.html:122 +#: .\cookbook\templates\forms\edit_internal_recipe.html:126 msgid "Fats" msgstr "Fette" -#: .\cookbook\templates\forms\edit_internal_recipe.html:124 +#: .\cookbook\templates\forms\edit_internal_recipe.html:128 msgid "Proteins" msgstr "Proteine" -#: .\cookbook\templates\forms\edit_internal_recipe.html:146 -#: .\cookbook\templates\forms\edit_internal_recipe.html:454 +#: .\cookbook\templates\forms\edit_internal_recipe.html:150 +#: .\cookbook\templates\forms\edit_internal_recipe.html:481 msgid "Step" msgstr "Schritt" -#: .\cookbook\templates\forms\edit_internal_recipe.html:167 +#: .\cookbook\templates\forms\edit_internal_recipe.html:171 msgid "Show as header" msgstr "Als Überschrift anzeigen" -#: .\cookbook\templates\forms\edit_internal_recipe.html:173 +#: .\cookbook\templates\forms\edit_internal_recipe.html:177 msgid "Hide as header" msgstr "Nicht als Überschrift anzeigen" -#: .\cookbook\templates\forms\edit_internal_recipe.html:178 +#: .\cookbook\templates\forms\edit_internal_recipe.html:182 msgid "Move Up" msgstr "Nach oben" -#: .\cookbook\templates\forms\edit_internal_recipe.html:183 +#: .\cookbook\templates\forms\edit_internal_recipe.html:187 msgid "Move Down" msgstr "Nach unten" -#: .\cookbook\templates\forms\edit_internal_recipe.html:192 +#: .\cookbook\templates\forms\edit_internal_recipe.html:196 msgid "Step Name" msgstr "Name des Schritts" -#: .\cookbook\templates\forms\edit_internal_recipe.html:196 +#: .\cookbook\templates\forms\edit_internal_recipe.html:200 msgid "Step Type" msgstr "Art des Schritts" -#: .\cookbook\templates\forms\edit_internal_recipe.html:207 +#: .\cookbook\templates\forms\edit_internal_recipe.html:212 msgid "Step time in Minutes" msgstr "Zeit in Minuten" -#: .\cookbook\templates\forms\edit_internal_recipe.html:261 -#: .\cookbook\templates\shopping_list.html:183 -msgid "Select Unit" -msgstr "Einheit wählen" +#: .\cookbook\templates\forms\edit_internal_recipe.html:228 +msgid "Select File" +msgstr "Datei auswählen" -#: .\cookbook\templates\forms\edit_internal_recipe.html:262 -#: .\cookbook\templates\forms\edit_internal_recipe.html:286 -#: .\cookbook\templates\shopping_list.html:184 -#: .\cookbook\templates\shopping_list.html:206 -msgid "Create" -msgstr "Erstellen" - -#: .\cookbook\templates\forms\edit_internal_recipe.html:263 -#: .\cookbook\templates\forms\edit_internal_recipe.html:287 -#: .\cookbook\templates\shopping_list.html:185 -#: .\cookbook\templates\shopping_list.html:207 -#: .\cookbook\templates\shopping_list.html:237 -#: .\cookbook\templates\shopping_list.html:261 -#: .\cookbook\templates\url_import.html:124 -#: .\cookbook\templates\url_import.html:156 +#: .\cookbook\templates\forms\edit_internal_recipe.html:229 +#: .\cookbook\templates\forms\edit_internal_recipe.html:290 +#: .\cookbook\templates\forms\edit_internal_recipe.html:314 +#: .\cookbook\templates\shopping_list.html:189 +#: .\cookbook\templates\shopping_list.html:211 +#: .\cookbook\templates\shopping_list.html:241 +#: .\cookbook\templates\shopping_list.html:265 +#: .\cookbook\templates\url_import.html:495 +#: .\cookbook\templates\url_import.html:527 msgid "Select" msgstr "Auswählen" -#: .\cookbook\templates\forms\edit_internal_recipe.html:285 -#: .\cookbook\templates\shopping_list.html:205 +#: .\cookbook\templates\forms\edit_internal_recipe.html:288 +#: .\cookbook\templates\shopping_list.html:187 +msgid "Select Unit" +msgstr "Einheit wählen" + +#: .\cookbook\templates\forms\edit_internal_recipe.html:289 +#: .\cookbook\templates\forms\edit_internal_recipe.html:313 +#: .\cookbook\templates\shopping_list.html:188 +#: .\cookbook\templates\shopping_list.html:210 +msgid "Create" +msgstr "Erstellen" + +#: .\cookbook\templates\forms\edit_internal_recipe.html:312 +#: .\cookbook\templates\shopping_list.html:209 msgid "Select Food" msgstr "Zutat auswählen" -#: .\cookbook\templates\forms\edit_internal_recipe.html:302 +#: .\cookbook\templates\forms\edit_internal_recipe.html:329 #: .\cookbook\templates\meal_plan.html:256 -#: .\cookbook\templates\url_import.html:171 +#: .\cookbook\templates\url_import.html:542 msgid "Note" msgstr "Notiz" -#: .\cookbook\templates\forms\edit_internal_recipe.html:319 +#: .\cookbook\templates\forms\edit_internal_recipe.html:346 msgid "Delete Ingredient" msgstr "Zutat löschen" -#: .\cookbook\templates\forms\edit_internal_recipe.html:325 +#: .\cookbook\templates\forms\edit_internal_recipe.html:352 msgid "Make Header" msgstr "Überschrift erstellen" -#: .\cookbook\templates\forms\edit_internal_recipe.html:331 +#: .\cookbook\templates\forms\edit_internal_recipe.html:358 msgid "Make Ingredient" msgstr "Zutat erstellen" -#: .\cookbook\templates\forms\edit_internal_recipe.html:337 +#: .\cookbook\templates\forms\edit_internal_recipe.html:364 msgid "Disable Amount" msgstr "Menge deaktivieren" -#: .\cookbook\templates\forms\edit_internal_recipe.html:343 +#: .\cookbook\templates\forms\edit_internal_recipe.html:370 msgid "Enable Amount" msgstr "Menge aktivieren" -#: .\cookbook\templates\forms\edit_internal_recipe.html:348 +#: .\cookbook\templates\forms\edit_internal_recipe.html:375 msgid "Copy Template Reference" msgstr "Kopiere Vorlagen-Referenz" -#: .\cookbook\templates\forms\edit_internal_recipe.html:374 -#: .\cookbook\templates\url_import.html:196 +#: .\cookbook\templates\forms\edit_internal_recipe.html:401 +#: .\cookbook\templates\url_import.html:297 +#: .\cookbook\templates\url_import.html:567 msgid "Instructions" msgstr "Anleitung" -#: .\cookbook\templates\forms\edit_internal_recipe.html:387 -#: .\cookbook\templates\forms\edit_internal_recipe.html:418 +#: .\cookbook\templates\forms\edit_internal_recipe.html:414 +#: .\cookbook\templates\forms\edit_internal_recipe.html:445 msgid "Save & View" msgstr "Speichern & Ansehen" -#: .\cookbook\templates\forms\edit_internal_recipe.html:391 -#: .\cookbook\templates\forms\edit_internal_recipe.html:424 +#: .\cookbook\templates\forms\edit_internal_recipe.html:418 +#: .\cookbook\templates\forms\edit_internal_recipe.html:451 msgid "Add Step" msgstr "Schritt hinzufügen" -#: .\cookbook\templates\forms\edit_internal_recipe.html:394 -#: .\cookbook\templates\forms\edit_internal_recipe.html:428 +#: .\cookbook\templates\forms\edit_internal_recipe.html:421 +#: .\cookbook\templates\forms\edit_internal_recipe.html:455 msgid "Add Nutrition" msgstr "Nährwerte hinzufügen" -#: .\cookbook\templates\forms\edit_internal_recipe.html:396 -#: .\cookbook\templates\forms\edit_internal_recipe.html:430 +#: .\cookbook\templates\forms\edit_internal_recipe.html:423 +#: .\cookbook\templates\forms\edit_internal_recipe.html:457 msgid "Remove Nutrition" msgstr "Nährwerte entfernen" -#: .\cookbook\templates\forms\edit_internal_recipe.html:398 -#: .\cookbook\templates\forms\edit_internal_recipe.html:433 +#: .\cookbook\templates\forms\edit_internal_recipe.html:425 +#: .\cookbook\templates\forms\edit_internal_recipe.html:460 msgid "View Recipe" msgstr "Rezept ansehen" -#: .\cookbook\templates\forms\edit_internal_recipe.html:400 -#: .\cookbook\templates\forms\edit_internal_recipe.html:435 +#: .\cookbook\templates\forms\edit_internal_recipe.html:427 +#: .\cookbook\templates\forms\edit_internal_recipe.html:462 msgid "Delete Recipe" msgstr "Rezept löschen" -#: .\cookbook\templates\forms\edit_internal_recipe.html:441 +#: .\cookbook\templates\forms\edit_internal_recipe.html:468 msgid "Steps" msgstr "Schritte" @@ -871,7 +1099,7 @@ msgstr "" " " #: .\cookbook\templates\forms\ingredients.html:24 -#: .\cookbook\templates\stats.html:26 +#: .\cookbook\templates\space.html:35 .\cookbook\templates\stats.html:26 msgid "Units" msgstr "Einheiten" @@ -896,10 +1124,6 @@ msgid "Are you sure you want to delete the %(title)s: %(object)s " msgstr "" "Bist du sicher, dass %(title)s: %(object)s gelöscht werden soll?" -#: .\cookbook\templates\generic\delete_template.html:21 -msgid "Confirm" -msgstr "Bestätigen" - #: .\cookbook\templates\generic\edit_template.html:30 msgid "View" msgstr "Anschauen" @@ -921,12 +1145,6 @@ msgstr "Filter" msgid "Import all" msgstr "Alle importieren" -#: .\cookbook\templates\generic\new_template.html:6 -#: .\cookbook\templates\generic\new_template.html:14 -#: .\cookbook\templates\meal_plan.html:323 -msgid "New" -msgstr "Neu" - #: .\cookbook\templates\generic\table_template.html:76 #: .\cookbook\templates\recipes_table.html:121 msgid "previous" @@ -971,7 +1189,7 @@ msgstr "Schließen" #: .\cookbook\templates\include\recipe_open_modal.html:7 #: .\cookbook\templates\meal_plan.html:247 .\cookbook\views\delete.py:28 -#: .\cookbook\views\edit.py:264 .\cookbook\views\new.py:40 +#: .\cookbook\views\edit.py:273 .\cookbook\views\new.py:52 msgid "Recipe" msgstr "Rezept" @@ -1013,10 +1231,6 @@ msgstr "Rezept suchen..." msgid "New Recipe" msgstr "Neues Rezept" -#: .\cookbook\templates\index.html:47 -msgid "Website Import" -msgstr "Webseiten-Import" - #: .\cookbook\templates\index.html:53 msgid "Advanced Search" msgstr "Erweiterte Suche" @@ -1030,7 +1244,7 @@ msgid "Last viewed" msgstr "Zuletzt angesehen" #: .\cookbook\templates\index.html:87 .\cookbook\templates\meal_plan.html:178 -#: .\cookbook\templates\stats.html:22 +#: .\cookbook\templates\space.html:29 .\cookbook\templates\stats.html:22 msgid "Recipes" msgstr "Rezepte" @@ -1192,7 +1406,7 @@ msgid "New Entry" msgstr "Neuer Eintrag" #: .\cookbook\templates\meal_plan.html:113 -#: .\cookbook\templates\shopping_list.html:52 +#: .\cookbook\templates\shopping_list.html:56 msgid "Search Recipe" msgstr "Rezept suchen" @@ -1224,7 +1438,7 @@ msgstr "Nur Notiz erstellen" #: .\cookbook\templates\meal_plan.html:168 #: .\cookbook\templates\shopping_list.html:7 #: .\cookbook\templates\shopping_list.html:29 -#: .\cookbook\templates\shopping_list.html:705 +#: .\cookbook\templates\shopping_list.html:714 msgid "Shopping List" msgstr "Einkaufsliste" @@ -1276,7 +1490,7 @@ msgstr "Erstellt von" #: .\cookbook\templates\meal_plan.html:270 #: .\cookbook\templates\meal_plan_entry.html:20 -#: .\cookbook\templates\shopping_list.html:250 +#: .\cookbook\templates\shopping_list.html:254 msgid "Shared with" msgstr "Geteilt mit" @@ -1374,7 +1588,6 @@ msgstr "Du hast keine Gruppe und kannst daher diese Anwendung nicht nutzen." #: .\cookbook\templates\no_groups_info.html:18 #: .\cookbook\templates\no_perm_info.html:15 -#: .\cookbook\templates\no_space_info.html:15 msgid "Please contact your administrator." msgstr "Bitte kontaktiere einen Administrator." @@ -1389,16 +1602,56 @@ msgid "" "action." msgstr "" "Du hast nicht die notwendige Berechtigung, um diese Seite anzusehen oder " -"diese Aktion durchzuführen!" +"diese Aktion durchzuführen." -#: .\cookbook\templates\no_space_info.html:5 -#: .\cookbook\templates\no_space_info.html:12 +#: .\cookbook\templates\no_space_info.html:6 +#: .\cookbook\templates\no_space_info.html:13 msgid "No Space" msgstr "Kein Space" -#: .\cookbook\templates\no_space_info.html:15 -msgid "You are not a member of any space." -msgstr "Du bist kein Mitglied von einem Space." +#: .\cookbook\templates\no_space_info.html:17 +msgid "" +"Recipes, foods, shopping lists and more are organized in spaces of one or " +"more people." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:18 +msgid "" +"You can either be invited into an existing space or create your own one." +msgstr "" +"Du kannst entweder in einen existierenden Space eingeladen werden oder " +"Deinen eigenen erstellen." + +#: .\cookbook\templates\no_space_info.html:31 +#: .\cookbook\templates\no_space_info.html:40 +msgid "Join Space" +msgstr "Space beitreten" + +#: .\cookbook\templates\no_space_info.html:34 +msgid "Join an existing space." +msgstr "Existierenden Space beitreten." + +#: .\cookbook\templates\no_space_info.html:35 +msgid "" +"To join an existing space either enter your invite token or click on the " +"invite link the space owner send you." +msgstr "" +"Um einem existierenden Space beizutreten, kannst Du entweder den " +"Einladungstoken eingeben oder auf den Einladungslink des Space-Eigentümers " +"klicken." + +#: .\cookbook\templates\no_space_info.html:48 +#: .\cookbook\templates\no_space_info.html:56 +msgid "Create Space" +msgstr "Space erstellen" + +#: .\cookbook\templates\no_space_info.html:51 +msgid "Create your own recipe space." +msgstr "Erstelle Deinen eigenen Rezept-Space." + +#: .\cookbook\templates\no_space_info.html:52 +msgid "Start your own recipe space and invite other users to it." +msgstr "Starte deinen eigenen Rezept-Space und lade andere Benutzer ein." #: .\cookbook\templates\offline.html:6 msgid "Offline" @@ -1416,28 +1669,29 @@ msgstr "" "Die unterhalb aufgelisteten Rezepte sind offline verfügbar, da du sie vor " "kurzem angesehen hast. Beachte, dass die Daten veraltetet sein könnten." -#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\stats.html:47 +#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\space.html:56 +#: .\cookbook\templates\stats.html:47 msgid "Comments" msgstr "Kommentare" #: .\cookbook\templates\recipe_view.html:44 .\cookbook\views\delete.py:118 -#: .\cookbook\views\edit.py:170 +#: .\cookbook\views\edit.py:179 msgid "Comment" msgstr "Kommentar" #: .\cookbook\templates\recipes_table.html:19 #: .\cookbook\templates\recipes_table.html:23 -#: .\cookbook\templates\url_import.html:69 +#: .\cookbook\templates\url_import.html:440 msgid "Recipe Image" msgstr "Rezeptbild" #: .\cookbook\templates\recipes_table.html:51 -#: .\cookbook\templates\url_import.html:74 +#: .\cookbook\templates\url_import.html:445 msgid "Preparation time ca." msgstr "Zubereitungszeit ca." #: .\cookbook\templates\recipes_table.html:57 -#: .\cookbook\templates\url_import.html:79 +#: .\cookbook\templates\url_import.html:450 msgid "Waiting time ca." msgstr "Wartezeit ca." @@ -1453,27 +1707,57 @@ msgstr "Kochen protokollieren" msgid "Recipe Home" msgstr "Rezept-Hauptseite" -#: .\cookbook\templates\settings.html:22 +#: .\cookbook\templates\settings.html:23 msgid "Account" msgstr "Account" -#: .\cookbook\templates\settings.html:38 -msgid "Link social account" -msgstr "Social Account verlinken" +#: .\cookbook\templates\settings.html:27 +msgid "Preferences" +msgstr "Präferenzen" -#: .\cookbook\templates\settings.html:42 +#: .\cookbook\templates\settings.html:31 +msgid "API-Settings" +msgstr "API-Einstellungen" + +#: .\cookbook\templates\settings.html:39 +msgid "Name Settings" +msgstr "Namen-Einstellungen" + +#: .\cookbook\templates\settings.html:47 +msgid "Password Settings" +msgstr "Passwort-Einstellungen" + +#: .\cookbook\templates\settings.html:55 +msgid "Email Settings" +msgstr "Email-Einstellungen" + +#: .\cookbook\templates\settings.html:57 +msgid "Manage Email Settings" +msgstr "Email-Einstellungen verwalten" + +#: .\cookbook\templates\settings.html:61 +#, fuzzy +#| msgid "Social Login" +msgid "Social" +msgstr "Social Login" + +#: .\cookbook\templates\settings.html:63 +msgid "Manage Social Accounts" +msgstr "Social Accounts verwalten" + +#: .\cookbook\templates\settings.html:75 msgid "Language" msgstr "Sprache" -#: .\cookbook\templates\settings.html:67 +#: .\cookbook\templates\settings.html:105 msgid "Style" msgstr "Stil" -#: .\cookbook\templates\settings.html:79 +#: .\cookbook\templates\settings.html:125 msgid "API Token" msgstr "API-Token" -#: .\cookbook\templates\settings.html:80 +#: .\cookbook\templates\settings.html:126 msgid "" "You can use both basic authentication and token based authentication to " "access the REST API." @@ -1481,7 +1765,7 @@ msgstr "" "Sowohl Basic Authentication als auch tokenbasierte Authentifizierung können " "für die REST-API verwendet werden." -#: .\cookbook\templates\settings.html:92 +#: .\cookbook\templates\settings.html:143 msgid "" "Use the token as an Authorization header prefixed by the word token as shown " "in the following examples:" @@ -1489,7 +1773,7 @@ msgstr "" "Nutz den Token als Authorization-Header mit der Präfix \"Token\" wie in " "folgendem Beispiel:" -#: .\cookbook\templates\settings.html:94 +#: .\cookbook\templates\settings.html:145 msgid "or" msgstr "oder" @@ -1512,58 +1796,55 @@ msgstr "" msgid "Create Superuser account" msgstr "Administrator-Account Erstellen" -#: .\cookbook\templates\shopping_list.html:75 +#: .\cookbook\templates\shopping_list.html:79 msgid "Shopping Recipes" msgstr "Einkaufs-Rezepte" -#: .\cookbook\templates\shopping_list.html:79 +#: .\cookbook\templates\shopping_list.html:83 msgid "No recipes selected" msgstr "Keine Rezepte ausgewählt" -#: .\cookbook\templates\shopping_list.html:146 +#: .\cookbook\templates\shopping_list.html:150 msgid "Entry Mode" msgstr "Eintrags-Modus" -#: .\cookbook\templates\shopping_list.html:154 +#: .\cookbook\templates\shopping_list.html:158 msgid "Add Entry" msgstr "Eintrag hinzufügen" -#: .\cookbook\templates\shopping_list.html:170 +#: .\cookbook\templates\shopping_list.html:174 msgid "Amount" msgstr "Menge" -#: .\cookbook\templates\shopping_list.html:226 +#: .\cookbook\templates\shopping_list.html:230 +#: .\cookbook\templates\supermarket.html:7 msgid "Supermarket" msgstr "Supermarkt" -#: .\cookbook\templates\shopping_list.html:236 +#: .\cookbook\templates\shopping_list.html:240 msgid "Select Supermarket" msgstr "Supermarkt auswählen" -#: .\cookbook\templates\shopping_list.html:260 +#: .\cookbook\templates\shopping_list.html:264 msgid "Select User" msgstr "Nutzer auswählen" -#: .\cookbook\templates\shopping_list.html:279 +#: .\cookbook\templates\shopping_list.html:283 msgid "Finished" msgstr "Erledigt" -#: .\cookbook\templates\shopping_list.html:292 +#: .\cookbook\templates\shopping_list.html:296 msgid "You are offline, shopping list might not syncronize." msgstr "Du bist offline, die Einkaufsliste wird ggf. nicht synchronisiert." -#: .\cookbook\templates\shopping_list.html:357 +#: .\cookbook\templates\shopping_list.html:361 msgid "Copy/Export" msgstr "Kopieren/Exportieren" -#: .\cookbook\templates\shopping_list.html:361 +#: .\cookbook\templates\shopping_list.html:365 msgid "List Prefix" msgstr "Listenpräfix" -#: .\cookbook\templates\shopping_list.html:708 -msgid "There was an error creating a resource!" -msgstr "Es gab einen Fehler beim Erstellen einer Ressource!" - #: .\cookbook\templates\socialaccount\connections.html:4 #: .\cookbook\templates\socialaccount\connections.html:7 msgid "Account Connections" @@ -1577,10 +1858,6 @@ msgstr "" "Du kannst dich mit den folgenden Drittanbieter-Accounts\n" " anmelden:" -#: .\cookbook\templates\socialaccount\connections.html:36 -msgid "Remove" -msgstr "Entfernen" - #: .\cookbook\templates\socialaccount\connections.html:44 msgid "" "You currently have no social network accounts connected to this account." @@ -1591,38 +1868,93 @@ msgstr "" msgid "Add a 3rd Party Account" msgstr "Fremden Account hinzufügen" -#: .\cookbook\templates\stats.html:4 -msgid "Stats" -msgstr "Statistiken" +#: .\cookbook\templates\space.html:18 +#, fuzzy +#| msgid "Description" +msgid "Manage Subscription" +msgstr "Beschreibung" -#: .\cookbook\templates\stats.html:19 +#: .\cookbook\templates\space.html:26 .\cookbook\templates\stats.html:19 msgid "Number of objects" msgstr "Anzahl an Objekten" -#: .\cookbook\templates\stats.html:30 +#: .\cookbook\templates\space.html:39 .\cookbook\templates\stats.html:30 msgid "Recipe Imports" msgstr "Importierte Rezepte" -#: .\cookbook\templates\stats.html:38 +#: .\cookbook\templates\space.html:47 .\cookbook\templates\stats.html:38 msgid "Objects stats" msgstr "Objekt-Statistiken" -#: .\cookbook\templates\stats.html:41 +#: .\cookbook\templates\space.html:50 .\cookbook\templates\stats.html:41 msgid "Recipes without Keywords" msgstr "Rezepte ohne Schlagwort" -#: .\cookbook\templates\stats.html:43 +#: .\cookbook\templates\space.html:52 .\cookbook\templates\stats.html:43 msgid "External Recipes" msgstr "Externe Rezepte" -#: .\cookbook\templates\stats.html:45 +#: .\cookbook\templates\space.html:54 .\cookbook\templates\stats.html:45 msgid "Internal Recipes" msgstr "Interne Rezepte" -#: .\cookbook\templates\system.html:21 .\cookbook\views\lists.py:115 +#: .\cookbook\templates\space.html:67 +msgid "Members" +msgstr "Mitglieder" + +#: .\cookbook\templates\space.html:71 +msgid "Invite User" +msgstr "Benutzer einladen" + +#: .\cookbook\templates\space.html:82 +msgid "User" +msgstr "Benutzer" + +#: .\cookbook\templates\space.html:83 +msgid "Groups" +msgstr "Gruppen" + +#: .\cookbook\templates\space.html:99 +#, fuzzy +#| msgid "Admin" +msgid "admin" +msgstr "Admin" + +#: .\cookbook\templates\space.html:100 +msgid "user" +msgstr "" + +#: .\cookbook\templates\space.html:101 +msgid "guest" +msgstr "" + +#: .\cookbook\templates\space.html:102 +#, fuzzy +#| msgid "Remove" +msgid "remove" +msgstr "Entfernen" + +#: .\cookbook\templates\space.html:106 +msgid "Update" +msgstr "" + +#: .\cookbook\templates\space.html:110 +msgid "You cannot edit yourself." +msgstr "Du kannst dies nicht selbst bearbeiten." + +#: .\cookbook\templates\space.html:117 +msgid "There are no members in your space yet!" +msgstr "In diesem Space sind bisher noch keine Mitglieder!" + +#: .\cookbook\templates\space.html:124 .\cookbook\templates\system.html:21 +#: .\cookbook\views\lists.py:115 msgid "Invite Links" msgstr "Einladungslinks" +#: .\cookbook\templates\stats.html:4 +msgid "Stats" +msgstr "Statistiken" + #: .\cookbook\templates\system.html:22 msgid "Show Links" msgstr "Links anzeigen" @@ -1746,45 +2078,144 @@ msgstr "" "Ordnung, wird aber nicht empfohlen, da einige\n" "Funktionen nur mit einer Postgres-Datenbanken funktionieren." -#: .\cookbook\templates\url_import.html:5 +#: .\cookbook\templates\url_import.html:6 msgid "URL Import" msgstr "URL-Import" -#: .\cookbook\templates\url_import.html:23 +#: .\cookbook\templates\url_import.html:31 +msgid "Drag me to your bookmarks to import recipes from anywhere" +msgstr "Ziehe mich in deine Lesezeichen, um Rezepte von überall zu importieren" + +#: .\cookbook\templates\url_import.html:32 +#, fuzzy +#| msgid "Bookmark saved!" +msgid "Bookmark Me!" +msgstr "Lesezeichen speichern!" + +#: .\cookbook\templates\url_import.html:61 msgid "Enter website URL" msgstr "Webseite-URL eingeben" -#: .\cookbook\templates\url_import.html:36 -msgid "Enter json directly" -msgstr "JSON direkt eingeben" +#: .\cookbook\templates\url_import.html:97 +#, fuzzy +msgid "Select recipe files to import or drop them here..." +msgstr "Wähle Rezept-Dateien zum Importieren oder platziere sie hier..." -#: .\cookbook\templates\url_import.html:57 +#: .\cookbook\templates\url_import.html:118 +msgid "Paste json or html source here to load recipe." +msgstr "Füge JSON- oder HTML-Daten hier ein um das Rezept zu laden." + +#: .\cookbook\templates\url_import.html:146 +msgid "Preview Recipe Data" +msgstr "Rezept-Daten ansehen" + +#: .\cookbook\templates\url_import.html:147 +msgid "Drag recipe attributes from the right into the appropriate box below." +msgstr "" + +#: .\cookbook\templates\url_import.html:156 +#: .\cookbook\templates\url_import.html:173 +#: .\cookbook\templates\url_import.html:190 +#: .\cookbook\templates\url_import.html:209 +#: .\cookbook\templates\url_import.html:227 +#: .\cookbook\templates\url_import.html:242 +#: .\cookbook\templates\url_import.html:257 +#: .\cookbook\templates\url_import.html:273 +#: .\cookbook\templates\url_import.html:300 +#: .\cookbook\templates\url_import.html:351 +msgid "Clear Contents" +msgstr "" + +#: .\cookbook\templates\url_import.html:158 +msgid "Text dragged here will be appended to the name." +msgstr "" + +#: .\cookbook\templates\url_import.html:175 +msgid "Text dragged here will be appended to the description." +msgstr "" + +#: .\cookbook\templates\url_import.html:192 +msgid "Keywords dragged here will be appended to current list" +msgstr "" + +#: .\cookbook\templates\url_import.html:207 +msgid "Image" +msgstr "Bild" + +#: .\cookbook\templates\url_import.html:239 +msgid "Prep Time" +msgstr "Vorbereitungszeit" + +#: .\cookbook\templates\url_import.html:254 +msgid "Cook Time" +msgstr "Kochzeit" + +#: .\cookbook\templates\url_import.html:275 +msgid "Ingredients dragged here will be appended to current list." +msgstr "" + +#: .\cookbook\templates\url_import.html:302 +msgid "" +"Recipe instructions dragged here will be appended to current instructions." +msgstr "" + +#: .\cookbook\templates\url_import.html:325 +msgid "Discovered Attributes" +msgstr "Entdeckte Attribute" + +#: .\cookbook\templates\url_import.html:327 +msgid "" +"Drag recipe attributes from below into the appropriate box on the left. " +"Click any node to display its full properties." +msgstr "" + +#: .\cookbook\templates\url_import.html:344 +msgid "Show Blank Field" +msgstr "Leeres Feld anzeigen" + +#: .\cookbook\templates\url_import.html:349 +msgid "Blank Field" +msgstr "Leeres Feld" + +#: .\cookbook\templates\url_import.html:353 +msgid "Items dragged to Blank Field will be appended." +msgstr "" + +#: .\cookbook\templates\url_import.html:400 +msgid "Delete Text" +msgstr "Text löschen" + +#: .\cookbook\templates\url_import.html:413 +msgid "Delete image" +msgstr "Bild löschen" + +#: .\cookbook\templates\url_import.html:429 msgid "Recipe Name" msgstr "Rezeptname" -#: .\cookbook\templates\url_import.html:62 +#: .\cookbook\templates\url_import.html:433 msgid "Recipe Description" msgstr "Rezept Beschreibung" -#: .\cookbook\templates\url_import.html:123 -#: .\cookbook\templates\url_import.html:155 -#: .\cookbook\templates\url_import.html:211 +#: .\cookbook\templates\url_import.html:494 +#: .\cookbook\templates\url_import.html:526 +#: .\cookbook\templates\url_import.html:582 msgid "Select one" msgstr "Auswählen" -#: .\cookbook\templates\url_import.html:225 +#: .\cookbook\templates\url_import.html:596 msgid "All Keywords" msgstr "Alle Schlagwörter" -#: .\cookbook\templates\url_import.html:228 +#: .\cookbook\templates\url_import.html:599 msgid "Import all keywords, not only the ones already existing." msgstr "Alle Schlagwörter importieren, nicht nur die bereits bestehenden." -#: .\cookbook\templates\url_import.html:255 +#: .\cookbook\templates\url_import.html:626 msgid "Information" msgstr "Information" -#: .\cookbook\templates\url_import.html:257 +#: .\cookbook\templates\url_import.html:628 msgid "" " Only websites containing ld+json or microdata information can currently\n" " be imported. Most big recipe pages " @@ -1799,48 +2230,76 @@ msgstr "" "importiert werden kann, sie aber strukturierte Daten aufweist, kann ein " "GitHub-Issue geöffnet werden." -#: .\cookbook\templates\url_import.html:265 +#: .\cookbook\templates\url_import.html:636 msgid "Google ld+json Info" msgstr "Google ld+json Informationen" -#: .\cookbook\templates\url_import.html:268 +#: .\cookbook\templates\url_import.html:639 msgid "GitHub Issues" msgstr "GitHub-Issues" -#: .\cookbook\templates\url_import.html:270 +#: .\cookbook\templates\url_import.html:641 msgid "Recipe Markup Specification" msgstr "Rezept-Markup-Spezifikation" -#: .\cookbook\views\api.py:71 +#: .\cookbook\views\api.py:77 msgid "Parameter updated_at incorrectly formatted" msgstr "Der Parameter updated_at ist falsch formatiert" -#: .\cookbook\views\api.py:455 .\cookbook\views\views.py:226 +#: .\cookbook\views\api.py:553 .\cookbook\views\views.py:295 msgid "This feature is not available in the demo version!" msgstr "Diese Funktion ist in der Demo-Version nicht verfügbar!" -#: .\cookbook\views\api.py:478 +#: .\cookbook\views\api.py:576 msgid "Sync successful!" msgstr "Synchronisation erfolgreich!" -#: .\cookbook\views\api.py:483 +#: .\cookbook\views\api.py:581 msgid "Error synchronizing with Storage" msgstr "Fehler beim Synchronisieren" -#: .\cookbook\views\api.py:556 .\cookbook\views\api.py:576 +#: .\cookbook\views\api.py:649 +msgid "Nothing to do." +msgstr "Nichts zu tun." + +#: .\cookbook\views\api.py:664 +msgid "The requested site provided malformed data and cannot be read." +msgstr "" +"Die angefragte Seite hat ungültige Daten zurückgegeben oder die Daten " +"konnten nicht verarbeitet werden." + +#: .\cookbook\views\api.py:671 msgid "The requested page could not be found." msgstr "Die angefragte Seite konnte nicht gefunden werden." -#: .\cookbook\views\api.py:585 +#: .\cookbook\views\api.py:680 msgid "" -"The requested page refused to provide any information (Status Code 403)." -msgstr "Die angefragte Seite hat die Anfrage abgelehnt (Status-Code 403)." +"The requested site does not provide any recognized data format to import the " +"recipe from." +msgstr "" +"Die angefragte Seite stellt keine bekannten Datenformate zur Verfügung." -#: .\cookbook\views\api.py:611 -msgid "Could not parse correctly..." -msgstr "Konnte Inhalt nicht korrekt parsen..." +#: .\cookbook\views\api.py:694 +msgid "No useable data could be found." +msgstr "Es konnten keine nutzbaren Daten gefunden werden." -#: .\cookbook\views\data.py:94 +#: .\cookbook\views\api.py:710 +msgid "I couldn't find anything to do." +msgstr "Ich konnte nichts zu tun finden." + +#: .\cookbook\views\data.py:30 .\cookbook\views\data.py:121 +#: .\cookbook\views\edit.py:50 .\cookbook\views\import_export.py:67 +#: .\cookbook\views\new.py:32 +msgid "You have reached the maximum number of recipes for your space." +msgstr "Du hast die maximale Anzahl an Rezepten für Deinen Space erreicht." + +#: .\cookbook\views\data.py:34 .\cookbook\views\data.py:125 +#: .\cookbook\views\edit.py:54 .\cookbook\views\import_export.py:71 +#: .\cookbook\views\new.py:36 +msgid "You have more users than allowed in your space." +msgstr "Du hast mehr Benutzer in Deinem Space als erlaubt." + +#: .\cookbook\views\data.py:103 #, python-format msgid "Batch edit done. %(count)d recipe was updated." msgid_plural "Batch edit done. %(count)d Recipes where updated." @@ -1853,7 +2312,7 @@ msgid "Monitor" msgstr "Überwachen" #: .\cookbook\views\delete.py:96 .\cookbook\views\lists.py:102 -#: .\cookbook\views\new.py:86 +#: .\cookbook\views\new.py:98 msgid "Storage Backend" msgstr "Speicherquelle" @@ -1864,8 +2323,8 @@ msgstr "" "Speicherquelle konnte nicht gelöscht werden, da sie in mindestens einem " "Monitor verwendet wird." -#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:204 -#: .\cookbook\views\new.py:144 +#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:213 +#: .\cookbook\views\new.py:156 msgid "Recipe Book" msgstr "Rezeptbuch" @@ -1873,55 +2332,55 @@ msgstr "Rezeptbuch" msgid "Bookmarks" msgstr "Lesezeichen" -#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:214 +#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:252 msgid "Invite Link" msgstr "Einladungslink" -#: .\cookbook\views\edit.py:110 +#: .\cookbook\views\edit.py:119 msgid "Food" msgstr "Lebensmittel" -#: .\cookbook\views\edit.py:119 +#: .\cookbook\views\edit.py:128 msgid "You cannot edit this storage!" msgstr "Du kannst diese Speicherquelle nicht bearbeiten!" -#: .\cookbook\views\edit.py:139 +#: .\cookbook\views\edit.py:148 msgid "Storage saved!" msgstr "Speicherquelle gespeichert!" -#: .\cookbook\views\edit.py:145 +#: .\cookbook\views\edit.py:154 msgid "There was an error updating this storage backend!" msgstr "Es gab einen Fehler beim Aktualisieren dieser Speicherquelle!" -#: .\cookbook\views\edit.py:156 +#: .\cookbook\views\edit.py:165 msgid "Storage" msgstr "Speicher" -#: .\cookbook\views\edit.py:252 +#: .\cookbook\views\edit.py:261 msgid "Changes saved!" msgstr "Änderungen gespeichert!" -#: .\cookbook\views\edit.py:256 +#: .\cookbook\views\edit.py:265 msgid "Error saving changes!" msgstr "Fehler beim Speichern der Daten!" -#: .\cookbook\views\edit.py:289 +#: .\cookbook\views\edit.py:299 msgid "Units merged!" msgstr "Einheiten zusammengeführt!" -#: .\cookbook\views\edit.py:291 .\cookbook\views\edit.py:307 +#: .\cookbook\views\edit.py:301 .\cookbook\views\edit.py:317 msgid "Cannot merge with the same object!" msgstr "Zusammenführen mit selben Objekt nicht möglich!" -#: .\cookbook\views\edit.py:305 +#: .\cookbook\views\edit.py:315 msgid "Foods merged!" msgstr "Zutaten zusammengeführt!" -#: .\cookbook\views\import_export.py:73 +#: .\cookbook\views\import_export.py:93 msgid "Importing is not implemented for this provider" msgstr "Importieren ist für diesen Anbieter noch nicht implementiert" -#: .\cookbook\views\import_export.py:92 +#: .\cookbook\views\import_export.py:115 msgid "Exporting is not implemented for this provider" msgstr "Exportieren ist für diesen Anbieter noch nicht implementiert" @@ -1937,24 +2396,91 @@ msgstr "Entdecken" msgid "Shopping Lists" msgstr "Einkaufslisten" -#: .\cookbook\views\new.py:111 +#: .\cookbook\views\new.py:123 msgid "Imported new recipe!" msgstr "Neues Rezept importiert!" -#: .\cookbook\views\new.py:114 +#: .\cookbook\views\new.py:126 msgid "There was an error importing this recipe!" msgstr "Beim Importieren des Rezeptes ist ein Fehler aufgetreten!" -#: .\cookbook\views\views.py:123 +#: .\cookbook\views\new.py:226 +msgid "Hello" +msgstr "Hallo" + +#: .\cookbook\views\new.py:226 +msgid "You have been invited by " +msgstr "Du wurdest eingeladen von " + +#: .\cookbook\views\new.py:227 +#, fuzzy +msgid " to join their Tandoor Recipes space " +msgstr " um deren Tandoor Recipes Space " + +#: .\cookbook\views\new.py:228 +msgid "Click the following link to activate your account: " +msgstr "Klicke auf den folgenden Link, um deinen Account zu aktivieren: " + +#: .\cookbook\views\new.py:229 +msgid "" +"If the link does not work use the following code to manually join the space: " +msgstr "" +"Falls der Link nicht funktioniert, benutze den folgenden Code um dem Space " +"manuell beizutreten: " + +#: .\cookbook\views\new.py:230 +msgid "The invitation is valid until " +msgstr "Die Einladung ist gültig bis " + +#: .\cookbook\views\new.py:231 +#, fuzzy +msgid "" +"Tandoor Recipes is an Open Source recipe manager. Check it out on GitHub " +msgstr "" +"Tandoor Recipes ist ein Open-Source Rezept-Manager. Sieh es Dir auf GitHub " +"an " + +#: .\cookbook\views\new.py:234 +#, fuzzy +msgid "Tandoor Recipes Invite" +msgstr "Tandoor Recipes Einladung" + +#: .\cookbook\views\new.py:241 +msgid "Invite link successfully send to user." +msgstr "Einladungslink erfolgreich an Benutzer gesendet." + +#: .\cookbook\views\new.py:244 +msgid "" +"You have send to many emails, please share the link manually or wait a few " +"hours." +msgstr "" +"Du hast zu viele Email gesendet. Bitte teile den Link manuell oder warte ein " +"paar Stunden." + +#: .\cookbook\views\new.py:246 +msgid "Email to user could not be send, please share link manually." +msgstr "" +"Email konnte an den Benutzer nicht gesendet werden. Bitte teile den Link " +"manuell." + +#: .\cookbook\views\views.py:125 +msgid "" +"You have successfully created your own recipe space. Start by adding some " +"recipes or invite other people to join you." +msgstr "" +"Du hast erfolgreich deinen eigenen Rezept-Space erstellt. Beginne, indem Du " +"ein paar Rezepte hinzufügst oder weitere Leute einlädst." + +#: .\cookbook\views\views.py:173 msgid "You do not have the required permissions to perform this action!" msgstr "" "Du hast nicht die notwendige Berechtigung, um diese Aktion durchzuführen!" -#: .\cookbook\views\views.py:134 +#: .\cookbook\views\views.py:184 msgid "Comment saved!" msgstr "Kommentar gespeichert!" -#: .\cookbook\views\views.py:326 +#: .\cookbook\views\views.py:396 msgid "" "The setup page can only be used to create the first user! If you have " "forgotten your superuser credentials please consult the django documentation " @@ -1963,22 +2489,66 @@ msgstr "" "Die Setup-Seite kann nur für den ersten Nutzer verwendet werden. Zum " "Zurücksetzen von Passwörtern bitte der Django-Dokumentation folgen." -#: .\cookbook\views\views.py:333 .\cookbook\views\views.py:378 +#: .\cookbook\views\views.py:403 msgid "Passwords dont match!" msgstr "Passwörter stimmen nicht überein!" -#: .\cookbook\views\views.py:349 .\cookbook\views\views.py:385 +#: .\cookbook\views\views.py:419 msgid "User has been created, please login!" msgstr "Benutzer wurde erstellt, bitte einloggen!" -#: .\cookbook\views\views.py:365 +#: .\cookbook\views\views.py:435 msgid "Malformed Invite Link supplied!" msgstr "Fehlerhafter Einladungslink angegeben!" -#: .\cookbook\views\views.py:405 +#: .\cookbook\views\views.py:441 +msgid "You are already member of a space and therefore cannot join this one." +msgstr "" +"Du bist bereits Mitglied eines Space, daher kannst du diesem Space nicht " +"beitreten." + +#: .\cookbook\views\views.py:452 +msgid "Successfully joined space." +msgstr "Space erfolgreich beigetreten." + +#: .\cookbook\views\views.py:458 msgid "Invite Link not valid or already used!" msgstr "Einladungslink ungültig oder bereits genutzt!" +#~ msgid "" +#~ "A username is not required, if left blank the new user can choose one." +#~ msgstr "" +#~ "Kein Benutzername benötigt. Wenn leer gelassen, kann der neue Benutzer " +#~ "einen wählen." + +#~ msgid "Imported from" +#~ msgstr "Importiert von" + +#~ msgid "Link" +#~ msgstr "Link" + +#~ msgid "Logout" +#~ msgstr "Abmelden" + +#~ msgid "Website Import" +#~ msgstr "Webseiten-Import" + +#~ msgid "You are not a member of any space." +#~ msgstr "Du bist kein Mitglied von einem Space." + +#~ msgid "There was an error creating a resource!" +#~ msgstr "Es gab einen Fehler beim Erstellen einer Ressource!" + +#~ msgid "Enter json directly" +#~ msgstr "JSON direkt eingeben" + +#~ msgid "" +#~ "The requested page refused to provide any information (Status Code 403)." +#~ msgstr "Die angefragte Seite hat die Anfrage abgelehnt (Status-Code 403)." + +#~ msgid "Could not parse correctly..." +#~ msgstr "Konnte Inhalt nicht korrekt parsen..." + #~ msgid "Number of servings" #~ msgstr "Anzahl der Portionen" @@ -2000,6 +2570,3 @@ msgstr "Einladungslink ungültig oder bereits genutzt!" #~ msgid "This recipe is already linked to the book!" #~ msgstr "Dieses Rezept ist bereits mit dem Buch verlinkt!" - -#~ msgid "Bookmark saved!" -#~ msgstr "Lesezeichen gespeichert!" diff --git a/cookbook/locale/en/LC_MESSAGES/django.po b/cookbook/locale/en/LC_MESSAGES/django.po index 984625e1..48414be4 100644 --- a/cookbook/locale/en/LC_MESSAGES/django.po +++ b/cookbook/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-04-11 15:09+0200\n" +"POT-Creation-Date: 2021-06-12 20:30+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,48 +18,49 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: .\cookbook\filters.py:23 .\cookbook\templates\base.html:91 -#: .\cookbook\templates\forms\edit_internal_recipe.html:219 +#: .\cookbook\filters.py:23 .\cookbook\templates\base.html:98 +#: .\cookbook\templates\forms\edit_internal_recipe.html:246 #: .\cookbook\templates\forms\ingredients.html:34 -#: .\cookbook\templates\stats.html:28 .\cookbook\views\lists.py:67 +#: .\cookbook\templates\space.html:37 .\cookbook\templates\stats.html:28 +#: .\cookbook\templates\url_import.html:270 .\cookbook\views\lists.py:67 msgid "Ingredients" msgstr "" -#: .\cookbook\forms.py:45 +#: .\cookbook\forms.py:49 msgid "" "Color of the top navigation bar. Not all colors work with all themes, just " "try them out!" msgstr "" -#: .\cookbook\forms.py:46 +#: .\cookbook\forms.py:51 msgid "Default Unit to be used when inserting a new ingredient into a recipe." msgstr "" -#: .\cookbook\forms.py:47 +#: .\cookbook\forms.py:53 msgid "" "Enables support for fractions in ingredient amounts (e.g. convert decimals " "to fractions automatically)" msgstr "" -#: .\cookbook\forms.py:48 +#: .\cookbook\forms.py:56 msgid "" "Users with whom newly created meal plan/shopping list entries should be " "shared by default." msgstr "" -#: .\cookbook\forms.py:49 +#: .\cookbook\forms.py:58 msgid "Show recently viewed recipes on search page." msgstr "" -#: .\cookbook\forms.py:50 +#: .\cookbook\forms.py:59 msgid "Number of decimals to round ingredients." msgstr "" -#: .\cookbook\forms.py:51 +#: .\cookbook\forms.py:60 msgid "If you want to be able to create and see comments underneath recipes." msgstr "" -#: .\cookbook\forms.py:53 +#: .\cookbook\forms.py:62 msgid "" "Setting to 0 will disable auto sync. When viewing a shopping list the list " "is updated every set seconds to sync changes someone else might have made. " @@ -67,167 +68,181 @@ msgid "" "mobile data. If lower than instance limit it is reset when saving." msgstr "" -#: .\cookbook\forms.py:56 +#: .\cookbook\forms.py:65 msgid "Makes the navbar stick to the top of the page." msgstr "" -#: .\cookbook\forms.py:72 +#: .\cookbook\forms.py:81 msgid "" "Both fields are optional. If none are given the username will be displayed " "instead" msgstr "" -#: .\cookbook\forms.py:93 .\cookbook\forms.py:315 -#: .\cookbook\templates\forms\edit_internal_recipe.html:45 +#: .\cookbook\forms.py:102 .\cookbook\forms.py:331 +#: .\cookbook\templates\forms\edit_internal_recipe.html:49 +#: .\cookbook\templates\url_import.html:154 msgid "Name" msgstr "" -#: .\cookbook\forms.py:94 .\cookbook\forms.py:316 -#: .\cookbook\templates\base.html:98 -#: .\cookbook\templates\forms\edit_internal_recipe.html:81 -#: .\cookbook\templates\stats.html:24 .\cookbook\templates\url_import.html:202 +#: .\cookbook\forms.py:103 .\cookbook\forms.py:332 +#: .\cookbook\templates\base.html:105 +#: .\cookbook\templates\forms\edit_internal_recipe.html:85 +#: .\cookbook\templates\space.html:33 .\cookbook\templates\stats.html:24 +#: .\cookbook\templates\url_import.html:188 +#: .\cookbook\templates\url_import.html:573 msgid "Keywords" msgstr "" -#: .\cookbook\forms.py:95 +#: .\cookbook\forms.py:104 msgid "Preparation time in minutes" msgstr "" -#: .\cookbook\forms.py:96 +#: .\cookbook\forms.py:105 msgid "Waiting time (cooking/baking) in minutes" msgstr "" -#: .\cookbook\forms.py:97 .\cookbook\forms.py:317 +#: .\cookbook\forms.py:106 .\cookbook\forms.py:333 msgid "Path" msgstr "" -#: .\cookbook\forms.py:98 +#: .\cookbook\forms.py:107 msgid "Storage UID" msgstr "" -#: .\cookbook\forms.py:121 +#: .\cookbook\forms.py:133 msgid "Default" msgstr "" -#: .\cookbook\forms.py:130 +#: .\cookbook\forms.py:144 .\cookbook\templates\url_import.html:90 msgid "" "To prevent duplicates recipes with the same name as existing ones are " "ignored. Check this box to import everything." msgstr "" -#: .\cookbook\forms.py:149 +#: .\cookbook\forms.py:164 msgid "New Unit" msgstr "" -#: .\cookbook\forms.py:150 +#: .\cookbook\forms.py:165 msgid "New unit that other gets replaced by." msgstr "" -#: .\cookbook\forms.py:155 +#: .\cookbook\forms.py:170 msgid "Old Unit" msgstr "" -#: .\cookbook\forms.py:156 +#: .\cookbook\forms.py:171 msgid "Unit that should be replaced." msgstr "" -#: .\cookbook\forms.py:172 +#: .\cookbook\forms.py:187 msgid "New Food" msgstr "" -#: .\cookbook\forms.py:173 +#: .\cookbook\forms.py:188 msgid "New food that other gets replaced by." msgstr "" -#: .\cookbook\forms.py:178 +#: .\cookbook\forms.py:193 msgid "Old Food" msgstr "" -#: .\cookbook\forms.py:179 +#: .\cookbook\forms.py:194 msgid "Food that should be replaced." msgstr "" -#: .\cookbook\forms.py:197 +#: .\cookbook\forms.py:212 msgid "Add your comment: " msgstr "" -#: .\cookbook\forms.py:238 +#: .\cookbook\forms.py:253 msgid "Leave empty for dropbox and enter app password for nextcloud." msgstr "" -#: .\cookbook\forms.py:245 +#: .\cookbook\forms.py:260 msgid "Leave empty for nextcloud and enter api token for dropbox." msgstr "" -#: .\cookbook\forms.py:253 +#: .\cookbook\forms.py:269 msgid "" "Leave empty for dropbox and enter only base url for nextcloud (/remote." "php/webdav/ is added automatically)" msgstr "" -#: .\cookbook\forms.py:291 +#: .\cookbook\forms.py:307 msgid "Search String" msgstr "" -#: .\cookbook\forms.py:318 +#: .\cookbook\forms.py:334 msgid "File ID" msgstr "" -#: .\cookbook\forms.py:354 +#: .\cookbook\forms.py:370 msgid "You must provide at least a recipe or a title." msgstr "" -#: .\cookbook\forms.py:367 +#: .\cookbook\forms.py:383 msgid "You can list default users to share recipes with in the settings." msgstr "" -#: .\cookbook\forms.py:368 -#: .\cookbook\templates\forms\edit_internal_recipe.html:377 +#: .\cookbook\forms.py:384 +#: .\cookbook\templates\forms\edit_internal_recipe.html:404 msgid "" "You can use markdown to format this field. See the docs here" msgstr "" -#: .\cookbook\forms.py:393 -msgid "A username is not required, if left blank the new user can choose one." +#: .\cookbook\forms.py:409 +msgid "Maximum number of users for this space reached." msgstr "" -#: .\cookbook\helper\permission_helper.py:123 -#: .\cookbook\helper\permission_helper.py:129 -#: .\cookbook\helper\permission_helper.py:151 -#: .\cookbook\helper\permission_helper.py:196 -#: .\cookbook\helper\permission_helper.py:210 -#: .\cookbook\helper\permission_helper.py:221 -#: .\cookbook\helper\permission_helper.py:232 .\cookbook\views\data.py:30 -#: .\cookbook\views\views.py:112 .\cookbook\views\views.py:116 -#: .\cookbook\views\views.py:184 -msgid "You do not have the required permissions to view this page!" +#: .\cookbook\forms.py:415 +msgid "Email address already taken!" msgstr "" -#: .\cookbook\helper\permission_helper.py:141 +#: .\cookbook\forms.py:423 +msgid "" +"An email address is not required but if present the invite link will be send " +"to the user." +msgstr "" + +#: .\cookbook\forms.py:438 +msgid "Name already taken." +msgstr "" + +#: .\cookbook\forms.py:449 +msgid "Accept Terms and Privacy" +msgstr "" + +#: .\cookbook\helper\AllAuthCustomAdapter.py:30 +msgid "" +"In order to prevent spam, the requested email was not send. Please wait a " +"few minutes and try again." +msgstr "" + +#: .\cookbook\helper\permission_helper.py:124 +#: .\cookbook\helper\permission_helper.py:144 .\cookbook\views\views.py:147 msgid "You are not logged in and therefore cannot view this page!" msgstr "" -#: .\cookbook\helper\permission_helper.py:145 -#: .\cookbook\helper\permission_helper.py:167 -#: .\cookbook\helper\permission_helper.py:182 +#: .\cookbook\helper\permission_helper.py:127 +#: .\cookbook\helper\permission_helper.py:132 +#: .\cookbook\helper\permission_helper.py:154 +#: .\cookbook\helper\permission_helper.py:199 +#: .\cookbook\helper\permission_helper.py:213 +#: .\cookbook\helper\permission_helper.py:224 +#: .\cookbook\helper\permission_helper.py:235 .\cookbook\views\data.py:39 +#: .\cookbook\views\views.py:158 .\cookbook\views\views.py:165 +#: .\cookbook\views\views.py:253 +msgid "You do not have the required permissions to view this page!" +msgstr "" + +#: .\cookbook\helper\permission_helper.py:148 +#: .\cookbook\helper\permission_helper.py:170 +#: .\cookbook\helper\permission_helper.py:185 msgid "You cannot interact with this object as it is not owned by you!" msgstr "" -#: .\cookbook\helper\recipe_url_import.py:40 .\cookbook\views\api.py:549 -msgid "The requested site provided malformed data and cannot be read." -msgstr "" - -#: .\cookbook\helper\recipe_url_import.py:54 -msgid "" -"The requested site does not provide any recognized data format to import the " -"recipe from." -msgstr "" - -#: .\cookbook\helper\recipe_url_import.py:160 -msgid "Imported from" -msgstr "" - #: .\cookbook\helper\template_helper.py:60 #: .\cookbook\helper\template_helper.py:62 msgid "Could not parse template code." @@ -237,42 +252,53 @@ msgstr "" #: .\cookbook\templates\import.html:14 .\cookbook\templates\import.html:20 #: .\cookbook\templates\import_response.html:7 #: .\cookbook\templates\test.html:14 .\cookbook\templates\test.html:20 -#: .\cookbook\templates\url_import.html:233 .\cookbook\views\delete.py:60 -#: .\cookbook\views\edit.py:190 +#: .\cookbook\templates\url_import.html:27 +#: .\cookbook\templates\url_import.html:101 +#: .\cookbook\templates\url_import.html:123 +#: .\cookbook\templates\url_import.html:317 +#: .\cookbook\templates\url_import.html:604 .\cookbook\views\delete.py:60 +#: .\cookbook\views\edit.py:199 msgid "Import" msgstr "" -#: .\cookbook\integration\integration.py:131 +#: .\cookbook\integration\integration.py:162 msgid "" "Importer expected a .zip file. Did you choose the correct importer type for " "your data ?" msgstr "" -#: .\cookbook\integration\integration.py:134 +#: .\cookbook\integration\integration.py:165 +msgid "" +"An unexpected error occurred during the import. Please make sure you have " +"uploaded a valid file." +msgstr "" + +#: .\cookbook\integration\integration.py:169 msgid "The following recipes were ignored because they already existed:" msgstr "" -#: .\cookbook\integration\integration.py:137 +#: .\cookbook\integration\integration.py:173 #, python-format msgid "Imported %s recipes." msgstr "" -#: .\cookbook\integration\paprika.py:44 +#: .\cookbook\integration\paprika.py:46 msgid "Notes" msgstr "" -#: .\cookbook\integration\paprika.py:47 +#: .\cookbook\integration\paprika.py:49 msgid "Nutritional Information" msgstr "" -#: .\cookbook\integration\paprika.py:50 +#: .\cookbook\integration\paprika.py:53 msgid "Source" msgstr "" #: .\cookbook\integration\safron.py:23 -#: .\cookbook\templates\forms\edit_internal_recipe.html:75 +#: .\cookbook\templates\forms\edit_internal_recipe.html:79 #: .\cookbook\templates\include\log_cooking.html:16 -#: .\cookbook\templates\url_import.html:84 +#: .\cookbook\templates\url_import.html:224 +#: .\cookbook\templates\url_import.html:455 msgid "Servings" msgstr "" @@ -281,11 +307,11 @@ msgid "Waiting time" msgstr "" #: .\cookbook\integration\safron.py:27 -#: .\cookbook\templates\forms\edit_internal_recipe.html:69 +#: .\cookbook\templates\forms\edit_internal_recipe.html:73 msgid "Preparation Time" msgstr "" -#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:71 +#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:78 #: .\cookbook\templates\forms\ingredients.html:7 #: .\cookbook\templates\index.html:7 msgid "Cookbook" @@ -311,44 +337,72 @@ msgstr "" msgid "Other" msgstr "" -#: .\cookbook\models.py:110 .\cookbook\templates\shopping_list.html:48 +#: .\cookbook\models.py:71 +msgid "" +"Maximum file storage for space in MB. 0 for unlimited, -1 to disable file " +"upload." +msgstr "" + +#: .\cookbook\models.py:121 .\cookbook\templates\search.html:7 +#: .\cookbook\templates\shopping_list.html:52 msgid "Search" msgstr "" -#: .\cookbook\models.py:111 .\cookbook\templates\base.html:85 +#: .\cookbook\models.py:122 .\cookbook\templates\base.html:92 #: .\cookbook\templates\meal_plan.html:5 .\cookbook\views\delete.py:152 -#: .\cookbook\views\edit.py:224 .\cookbook\views\new.py:188 +#: .\cookbook\views\edit.py:233 .\cookbook\views\new.py:201 msgid "Meal-Plan" msgstr "" -#: .\cookbook\models.py:112 .\cookbook\templates\base.html:82 +#: .\cookbook\models.py:123 .\cookbook\templates\base.html:89 msgid "Books" msgstr "" -#: .\cookbook\models.py:119 +#: .\cookbook\models.py:131 msgid "Small" msgstr "" -#: .\cookbook\models.py:119 +#: .\cookbook\models.py:131 msgid "Large" msgstr "" -#: .\cookbook\models.py:327 -#: .\cookbook\templates\forms\edit_internal_recipe.html:198 +#: .\cookbook\models.py:131 .\cookbook\templates\generic\new_template.html:6 +#: .\cookbook\templates\generic\new_template.html:14 +#: .\cookbook\templates\meal_plan.html:323 +msgid "New" +msgstr "" + +#: .\cookbook\models.py:340 +#: .\cookbook\templates\forms\edit_internal_recipe.html:202 msgid "Text" msgstr "" -#: .\cookbook\models.py:327 -#: .\cookbook\templates\forms\edit_internal_recipe.html:199 +#: .\cookbook\models.py:340 +#: .\cookbook\templates\forms\edit_internal_recipe.html:203 msgid "Time" msgstr "" +#: .\cookbook\models.py:340 +#: .\cookbook\templates\forms\edit_internal_recipe.html:204 +#: .\cookbook\templates\forms\edit_internal_recipe.html:218 +msgid "File" +msgstr "" + +#: .\cookbook\serializer.py:109 +msgid "File uploads are not enabled for this Space." +msgstr "" + +#: .\cookbook\serializer.py:117 +msgid "You have reached your file upload limit." +msgstr "" + #: .\cookbook\tables.py:35 .\cookbook\templates\books.html:36 #: .\cookbook\templates\generic\edit_template.html:6 #: .\cookbook\templates\generic\edit_template.html:14 #: .\cookbook\templates\meal_plan.html:281 #: .\cookbook\templates\recipes_table.html:82 #: .\cookbook\templates\shopping_list.html:33 +#: .\cookbook\templates\space.html:84 msgid "Edit" msgstr "" @@ -362,10 +416,6 @@ msgstr "" msgid "Delete" msgstr "" -#: .\cookbook\tables.py:144 -msgid "Link" -msgstr "" - #: .\cookbook\templates\404.html:5 msgid "404 Error" msgstr "" @@ -382,21 +432,120 @@ msgstr "" msgid "Report a Bug" msgstr "" -#: .\cookbook\templates\account\login.html:7 -#: .\cookbook\templates\base.html:170 +#: .\cookbook\templates\account\email.html:6 +#: .\cookbook\templates\account\email.html:9 +msgid "E-mail Addresses" +msgstr "" + +#: .\cookbook\templates\account\email.html:11 +msgid "The following e-mail addresses are associated with your account:" +msgstr "" + +#: .\cookbook\templates\account\email.html:28 +msgid "Verified" +msgstr "" + +#: .\cookbook\templates\account\email.html:30 +msgid "Unverified" +msgstr "" + +#: .\cookbook\templates\account\email.html:32 +msgid "Primary" +msgstr "" + +#: .\cookbook\templates\account\email.html:39 +msgid "Make Primary" +msgstr "" + +#: .\cookbook\templates\account\email.html:41 +msgid "Re-send Verification" +msgstr "" + +#: .\cookbook\templates\account\email.html:42 +#: .\cookbook\templates\socialaccount\connections.html:36 +msgid "Remove" +msgstr "" + +#: .\cookbook\templates\account\email.html:50 +msgid "Warning:" +msgstr "" + +#: .\cookbook\templates\account\email.html:50 +msgid "" +"You currently do not have any e-mail address set up. You should really add " +"an e-mail address so you can receive notifications, reset your password, etc." +msgstr "" + +#: .\cookbook\templates\account\email.html:56 +msgid "Add E-mail Address" +msgstr "" + +#: .\cookbook\templates\account\email.html:61 +msgid "Add E-mail" +msgstr "" + +#: .\cookbook\templates\account\email.html:71 +msgid "Do you really want to remove the selected e-mail address?" +msgstr "" + +#: .\cookbook\templates\account\email_confirm.html:6 +#: .\cookbook\templates\account\email_confirm.html:10 +msgid "Confirm E-mail Address" +msgstr "" + +#: .\cookbook\templates\account\email_confirm.html:16 +#, python-format +msgid "" +"Please confirm that\n" +" %(email)s is an e-mail address " +"for user %(user_display)s\n" +" ." +msgstr "" + +#: .\cookbook\templates\account\email_confirm.html:22 +#: .\cookbook\templates\generic\delete_template.html:21 +msgid "Confirm" +msgstr "" + +#: .\cookbook\templates\account\email_confirm.html:29 +#, python-format +msgid "" +"This e-mail confirmation link expired or is invalid. Please\n" +" issue a new e-mail confirmation " +"request." +msgstr "" + +#: .\cookbook\templates\account\login.html:8 +#: .\cookbook\templates\base.html:180 msgid "Login" msgstr "" -#: .\cookbook\templates\account\login.html:13 -#: .\cookbook\templates\account\login.html:28 +#: .\cookbook\templates\account\login.html:15 +#: .\cookbook\templates\account\login.html:31 +#: .\cookbook\templates\account\signup.html:69 +#: .\cookbook\templates\account\signup_closed.html:15 msgid "Sign In" msgstr "" -#: .\cookbook\templates\account\login.html:38 +#: .\cookbook\templates\account\login.html:32 +msgid "Sign Up" +msgstr "" + +#: .\cookbook\templates\account\login.html:36 +#: .\cookbook\templates\account\login.html:37 +#: .\cookbook\templates\account\password_reset.html:29 +msgid "Reset My Password" +msgstr "" + +#: .\cookbook\templates\account\login.html:37 +msgid "Lost your password?" +msgstr "" + +#: .\cookbook\templates\account\login.html:48 msgid "Social Login" msgstr "" -#: .\cookbook\templates\account\login.html:39 +#: .\cookbook\templates\account\login.html:49 msgid "You can use any of the following providers to sign in." msgstr "" @@ -410,115 +559,161 @@ msgstr "" msgid "Are you sure you want to sign out?" msgstr "" -#: .\cookbook\templates\account\password_reset.html:5 -#: .\cookbook\templates\account\password_reset_done.html:5 +#: .\cookbook\templates\account\password_reset.html:7 +#: .\cookbook\templates\account\password_reset.html:13 +#: .\cookbook\templates\account\password_reset_done.html:7 +#: .\cookbook\templates\account\password_reset_done.html:10 msgid "Password Reset" msgstr "" -#: .\cookbook\templates\account\password_reset.html:9 -#: .\cookbook\templates\account\password_reset_done.html:9 -msgid "Password reset is not implemented for the time being!" +#: .\cookbook\templates\account\password_reset.html:24 +msgid "" +"Forgotten your password? Enter your e-mail address below, and we'll send you " +"an e-mail allowing you to reset it." msgstr "" -#: .\cookbook\templates\account\signup.html:5 +#: .\cookbook\templates\account\password_reset.html:32 +msgid "Password reset is disabled on this instance." +msgstr "" + +#: .\cookbook\templates\account\password_reset_done.html:16 +msgid "" +"We have sent you an e-mail. Please contact us if you do not receive it " +"within a few minutes." +msgstr "" + +#: .\cookbook\templates\account\signup.html:6 msgid "Register" msgstr "" -#: .\cookbook\templates\account\signup.html:9 -msgid "Create your Account" +#: .\cookbook\templates\account\signup.html:12 +msgid "Create an Account" msgstr "" -#: .\cookbook\templates\account\signup.html:14 +#: .\cookbook\templates\account\signup.html:42 +msgid "I accept the follwoing" +msgstr "" + +#: .\cookbook\templates\account\signup.html:45 +msgid "Terms and Conditions" +msgstr "" + +#: .\cookbook\templates\account\signup.html:48 +msgid "and" +msgstr "" + +#: .\cookbook\templates\account\signup.html:52 +msgid "Privacy Policy" +msgstr "" + +#: .\cookbook\templates\account\signup.html:65 msgid "Create User" msgstr "" -#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:160 +#: .\cookbook\templates\account\signup.html:69 +msgid "Already have an account?" +msgstr "" + +#: .\cookbook\templates\account\signup_closed.html:5 +#: .\cookbook\templates\account\signup_closed.html:11 +msgid "Sign Up Closed" +msgstr "" + +#: .\cookbook\templates\account\signup_closed.html:13 +msgid "We are sorry, but the sign up is currently closed." +msgstr "" + +#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:170 #: .\cookbook\templates\rest_framework\api.html:11 msgid "API Documentation" msgstr "" -#: .\cookbook\templates\base.html:78 +#: .\cookbook\templates\base.html:85 msgid "Utensils" msgstr "" -#: .\cookbook\templates\base.html:88 +#: .\cookbook\templates\base.html:95 msgid "Shopping" msgstr "" -#: .\cookbook\templates\base.html:102 .\cookbook\views\delete.py:84 -#: .\cookbook\views\edit.py:93 .\cookbook\views\lists.py:26 -#: .\cookbook\views\new.py:66 +#: .\cookbook\templates\base.html:109 .\cookbook\views\delete.py:84 +#: .\cookbook\views\edit.py:102 .\cookbook\views\lists.py:26 +#: .\cookbook\views\new.py:78 msgid "Keyword" msgstr "" -#: .\cookbook\templates\base.html:104 +#: .\cookbook\templates\base.html:111 msgid "Batch Edit" msgstr "" -#: .\cookbook\templates\base.html:109 +#: .\cookbook\templates\base.html:116 msgid "Storage Data" msgstr "" -#: .\cookbook\templates\base.html:113 +#: .\cookbook\templates\base.html:120 msgid "Storage Backends" msgstr "" -#: .\cookbook\templates\base.html:115 +#: .\cookbook\templates\base.html:122 msgid "Configure Sync" msgstr "" -#: .\cookbook\templates\base.html:117 +#: .\cookbook\templates\base.html:124 msgid "Discovered Recipes" msgstr "" -#: .\cookbook\templates\base.html:119 +#: .\cookbook\templates\base.html:126 msgid "Discovery Log" msgstr "" -#: .\cookbook\templates\base.html:121 .\cookbook\templates\stats.html:10 +#: .\cookbook\templates\base.html:128 .\cookbook\templates\stats.html:10 msgid "Statistics" msgstr "" -#: .\cookbook\templates\base.html:123 +#: .\cookbook\templates\base.html:130 msgid "Units & Ingredients" msgstr "" -#: .\cookbook\templates\base.html:125 +#: .\cookbook\templates\base.html:132 .\cookbook\templates\index.html:47 msgid "Import Recipe" msgstr "" -#: .\cookbook\templates\base.html:144 .\cookbook\templates\settings.html:6 +#: .\cookbook\templates\base.html:151 .\cookbook\templates\settings.html:6 #: .\cookbook\templates\settings.html:16 msgid "Settings" msgstr "" -#: .\cookbook\templates\base.html:146 .\cookbook\templates\history.html:6 +#: .\cookbook\templates\base.html:153 .\cookbook\templates\history.html:6 #: .\cookbook\templates\history.html:14 msgid "History" msgstr "" -#: .\cookbook\templates\base.html:150 .\cookbook\templates\system.html:13 +#: .\cookbook\templates\base.html:155 .\cookbook\templates\space.html:7 +msgid "Space Settings" +msgstr "" + +#: .\cookbook\templates\base.html:160 .\cookbook\templates\system.html:13 msgid "System" msgstr "" -#: .\cookbook\templates\base.html:152 +#: .\cookbook\templates\base.html:162 msgid "Admin" msgstr "" -#: .\cookbook\templates\base.html:156 +#: .\cookbook\templates\base.html:166 msgid "Markdown Guide" msgstr "" -#: .\cookbook\templates\base.html:158 +#: .\cookbook\templates\base.html:168 msgid "GitHub" msgstr "" -#: .\cookbook\templates\base.html:162 +#: .\cookbook\templates\base.html:172 msgid "API Browser" msgstr "" -#: .\cookbook\templates\base.html:165 -msgid "Logout" +#: .\cookbook\templates\base.html:175 +msgid "Log out" msgstr "" #: .\cookbook\templates\batch\edit.html:6 @@ -533,7 +728,7 @@ msgstr "" msgid "Add the specified keywords to all recipes containing a word" msgstr "" -#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:76 +#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:85 msgid "Sync" msgstr "" @@ -560,7 +755,7 @@ msgstr "" msgid "Importing Recipes" msgstr "" -#: .\cookbook\templates\batch\waiting.html:23 +#: .\cookbook\templates\batch\waiting.html:28 msgid "" "This can take a few minutes, depending on the number of recipes in sync, " "please wait." @@ -597,26 +792,31 @@ msgid "Export Recipes" msgstr "" #: .\cookbook\templates\export.html:14 .\cookbook\templates\export.html:20 -#: .\cookbook\templates\shopping_list.html:347 +#: .\cookbook\templates\shopping_list.html:351 #: .\cookbook\templates\test2.html:14 .\cookbook\templates\test2.html:20 msgid "Export" msgstr "" +#: .\cookbook\templates\files.html:7 +msgid "Files" +msgstr "" + #: .\cookbook\templates\forms\edit_import_recipe.html:5 #: .\cookbook\templates\forms\edit_import_recipe.html:9 msgid "Import new Recipe" msgstr "" #: .\cookbook\templates\forms\edit_import_recipe.html:14 -#: .\cookbook\templates\forms\edit_internal_recipe.html:389 -#: .\cookbook\templates\forms\edit_internal_recipe.html:421 +#: .\cookbook\templates\forms\edit_internal_recipe.html:416 +#: .\cookbook\templates\forms\edit_internal_recipe.html:448 #: .\cookbook\templates\generic\edit_template.html:23 #: .\cookbook\templates\generic\new_template.html:23 #: .\cookbook\templates\include\log_cooking.html:28 #: .\cookbook\templates\meal_plan.html:325 -#: .\cookbook\templates\settings.html:28 .\cookbook\templates\settings.html:35 -#: .\cookbook\templates\settings.html:58 .\cookbook\templates\settings.html:73 -#: .\cookbook\templates\shopping_list.html:349 +#: .\cookbook\templates\settings.html:44 .\cookbook\templates\settings.html:52 +#: .\cookbook\templates\settings.html:96 +#: .\cookbook\templates\settings.html:114 +#: .\cookbook\templates\shopping_list.html:353 msgid "Save" msgstr "" @@ -625,179 +825,186 @@ msgstr "" msgid "Edit Recipe" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:52 +#: .\cookbook\templates\forms\edit_internal_recipe.html:56 +#: .\cookbook\templates\url_import.html:171 msgid "Description" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:72 +#: .\cookbook\templates\forms\edit_internal_recipe.html:76 msgid "Waiting Time" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:78 +#: .\cookbook\templates\forms\edit_internal_recipe.html:82 msgid "Servings Text" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:89 +#: .\cookbook\templates\forms\edit_internal_recipe.html:93 msgid "Select Keywords" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:90 -#: .\cookbook\templates\url_import.html:212 +#: .\cookbook\templates\forms\edit_internal_recipe.html:94 +#: .\cookbook\templates\url_import.html:583 msgid "Add Keyword" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:108 +#: .\cookbook\templates\forms\edit_internal_recipe.html:112 msgid "Nutrition" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:112 -#: .\cookbook\templates\forms\edit_internal_recipe.html:162 +#: .\cookbook\templates\forms\edit_internal_recipe.html:116 +#: .\cookbook\templates\forms\edit_internal_recipe.html:166 msgid "Delete Step" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:116 +#: .\cookbook\templates\forms\edit_internal_recipe.html:120 msgid "Calories" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:119 +#: .\cookbook\templates\forms\edit_internal_recipe.html:123 msgid "Carbohydrates" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:122 +#: .\cookbook\templates\forms\edit_internal_recipe.html:126 msgid "Fats" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:124 +#: .\cookbook\templates\forms\edit_internal_recipe.html:128 msgid "Proteins" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:146 -#: .\cookbook\templates\forms\edit_internal_recipe.html:454 +#: .\cookbook\templates\forms\edit_internal_recipe.html:150 +#: .\cookbook\templates\forms\edit_internal_recipe.html:481 msgid "Step" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:167 +#: .\cookbook\templates\forms\edit_internal_recipe.html:171 msgid "Show as header" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:173 +#: .\cookbook\templates\forms\edit_internal_recipe.html:177 msgid "Hide as header" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:178 +#: .\cookbook\templates\forms\edit_internal_recipe.html:182 msgid "Move Up" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:183 +#: .\cookbook\templates\forms\edit_internal_recipe.html:187 msgid "Move Down" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:192 +#: .\cookbook\templates\forms\edit_internal_recipe.html:196 msgid "Step Name" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:196 +#: .\cookbook\templates\forms\edit_internal_recipe.html:200 msgid "Step Type" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:207 +#: .\cookbook\templates\forms\edit_internal_recipe.html:212 msgid "Step time in Minutes" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:261 -#: .\cookbook\templates\shopping_list.html:183 -msgid "Select Unit" +#: .\cookbook\templates\forms\edit_internal_recipe.html:228 +msgid "Select File" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:262 -#: .\cookbook\templates\forms\edit_internal_recipe.html:286 -#: .\cookbook\templates\shopping_list.html:184 -#: .\cookbook\templates\shopping_list.html:206 -msgid "Create" -msgstr "" - -#: .\cookbook\templates\forms\edit_internal_recipe.html:263 -#: .\cookbook\templates\forms\edit_internal_recipe.html:287 -#: .\cookbook\templates\shopping_list.html:185 -#: .\cookbook\templates\shopping_list.html:207 -#: .\cookbook\templates\shopping_list.html:237 -#: .\cookbook\templates\shopping_list.html:261 -#: .\cookbook\templates\url_import.html:124 -#: .\cookbook\templates\url_import.html:156 +#: .\cookbook\templates\forms\edit_internal_recipe.html:229 +#: .\cookbook\templates\forms\edit_internal_recipe.html:290 +#: .\cookbook\templates\forms\edit_internal_recipe.html:314 +#: .\cookbook\templates\shopping_list.html:189 +#: .\cookbook\templates\shopping_list.html:211 +#: .\cookbook\templates\shopping_list.html:241 +#: .\cookbook\templates\shopping_list.html:265 +#: .\cookbook\templates\url_import.html:495 +#: .\cookbook\templates\url_import.html:527 msgid "Select" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:285 -#: .\cookbook\templates\shopping_list.html:205 +#: .\cookbook\templates\forms\edit_internal_recipe.html:288 +#: .\cookbook\templates\shopping_list.html:187 +msgid "Select Unit" +msgstr "" + +#: .\cookbook\templates\forms\edit_internal_recipe.html:289 +#: .\cookbook\templates\forms\edit_internal_recipe.html:313 +#: .\cookbook\templates\shopping_list.html:188 +#: .\cookbook\templates\shopping_list.html:210 +msgid "Create" +msgstr "" + +#: .\cookbook\templates\forms\edit_internal_recipe.html:312 +#: .\cookbook\templates\shopping_list.html:209 msgid "Select Food" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:302 +#: .\cookbook\templates\forms\edit_internal_recipe.html:329 #: .\cookbook\templates\meal_plan.html:256 -#: .\cookbook\templates\url_import.html:171 +#: .\cookbook\templates\url_import.html:542 msgid "Note" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:319 +#: .\cookbook\templates\forms\edit_internal_recipe.html:346 msgid "Delete Ingredient" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:325 +#: .\cookbook\templates\forms\edit_internal_recipe.html:352 msgid "Make Header" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:331 +#: .\cookbook\templates\forms\edit_internal_recipe.html:358 msgid "Make Ingredient" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:337 +#: .\cookbook\templates\forms\edit_internal_recipe.html:364 msgid "Disable Amount" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:343 +#: .\cookbook\templates\forms\edit_internal_recipe.html:370 msgid "Enable Amount" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:348 +#: .\cookbook\templates\forms\edit_internal_recipe.html:375 msgid "Copy Template Reference" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:374 -#: .\cookbook\templates\url_import.html:196 +#: .\cookbook\templates\forms\edit_internal_recipe.html:401 +#: .\cookbook\templates\url_import.html:297 +#: .\cookbook\templates\url_import.html:567 msgid "Instructions" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:387 -#: .\cookbook\templates\forms\edit_internal_recipe.html:418 +#: .\cookbook\templates\forms\edit_internal_recipe.html:414 +#: .\cookbook\templates\forms\edit_internal_recipe.html:445 msgid "Save & View" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:391 -#: .\cookbook\templates\forms\edit_internal_recipe.html:424 +#: .\cookbook\templates\forms\edit_internal_recipe.html:418 +#: .\cookbook\templates\forms\edit_internal_recipe.html:451 msgid "Add Step" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:394 -#: .\cookbook\templates\forms\edit_internal_recipe.html:428 +#: .\cookbook\templates\forms\edit_internal_recipe.html:421 +#: .\cookbook\templates\forms\edit_internal_recipe.html:455 msgid "Add Nutrition" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:396 -#: .\cookbook\templates\forms\edit_internal_recipe.html:430 +#: .\cookbook\templates\forms\edit_internal_recipe.html:423 +#: .\cookbook\templates\forms\edit_internal_recipe.html:457 msgid "Remove Nutrition" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:398 -#: .\cookbook\templates\forms\edit_internal_recipe.html:433 +#: .\cookbook\templates\forms\edit_internal_recipe.html:425 +#: .\cookbook\templates\forms\edit_internal_recipe.html:460 msgid "View Recipe" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:400 -#: .\cookbook\templates\forms\edit_internal_recipe.html:435 +#: .\cookbook\templates\forms\edit_internal_recipe.html:427 +#: .\cookbook\templates\forms\edit_internal_recipe.html:462 msgid "Delete Recipe" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:441 +#: .\cookbook\templates\forms\edit_internal_recipe.html:468 msgid "Steps" msgstr "" @@ -817,7 +1024,7 @@ msgid "" msgstr "" #: .\cookbook\templates\forms\ingredients.html:24 -#: .\cookbook\templates\stats.html:26 +#: .\cookbook\templates\space.html:35 .\cookbook\templates\stats.html:26 msgid "Units" msgstr "" @@ -839,10 +1046,6 @@ msgstr "" msgid "Are you sure you want to delete the %(title)s: %(object)s " msgstr "" -#: .\cookbook\templates\generic\delete_template.html:21 -msgid "Confirm" -msgstr "" - #: .\cookbook\templates\generic\edit_template.html:30 msgid "View" msgstr "" @@ -864,12 +1067,6 @@ msgstr "" msgid "Import all" msgstr "" -#: .\cookbook\templates\generic\new_template.html:6 -#: .\cookbook\templates\generic\new_template.html:14 -#: .\cookbook\templates\meal_plan.html:323 -msgid "New" -msgstr "" - #: .\cookbook\templates\generic\table_template.html:76 #: .\cookbook\templates\recipes_table.html:121 msgid "previous" @@ -914,7 +1111,7 @@ msgstr "" #: .\cookbook\templates\include\recipe_open_modal.html:7 #: .\cookbook\templates\meal_plan.html:247 .\cookbook\views\delete.py:28 -#: .\cookbook\views\edit.py:264 .\cookbook\views\new.py:40 +#: .\cookbook\views\edit.py:273 .\cookbook\views\new.py:52 msgid "Recipe" msgstr "" @@ -947,10 +1144,6 @@ msgstr "" msgid "New Recipe" msgstr "" -#: .\cookbook\templates\index.html:47 -msgid "Website Import" -msgstr "" - #: .\cookbook\templates\index.html:53 msgid "Advanced Search" msgstr "" @@ -964,7 +1157,7 @@ msgid "Last viewed" msgstr "" #: .\cookbook\templates\index.html:87 .\cookbook\templates\meal_plan.html:178 -#: .\cookbook\templates\stats.html:22 +#: .\cookbook\templates\space.html:29 .\cookbook\templates\stats.html:22 msgid "Recipes" msgstr "" @@ -1112,7 +1305,7 @@ msgid "New Entry" msgstr "" #: .\cookbook\templates\meal_plan.html:113 -#: .\cookbook\templates\shopping_list.html:52 +#: .\cookbook\templates\shopping_list.html:56 msgid "Search Recipe" msgstr "" @@ -1142,7 +1335,7 @@ msgstr "" #: .\cookbook\templates\meal_plan.html:168 #: .\cookbook\templates\shopping_list.html:7 #: .\cookbook\templates\shopping_list.html:29 -#: .\cookbook\templates\shopping_list.html:705 +#: .\cookbook\templates\shopping_list.html:714 msgid "Shopping List" msgstr "" @@ -1192,7 +1385,7 @@ msgstr "" #: .\cookbook\templates\meal_plan.html:270 #: .\cookbook\templates\meal_plan_entry.html:20 -#: .\cookbook\templates\shopping_list.html:250 +#: .\cookbook\templates\shopping_list.html:254 msgid "Shared with" msgstr "" @@ -1267,7 +1460,6 @@ msgstr "" #: .\cookbook\templates\no_groups_info.html:18 #: .\cookbook\templates\no_perm_info.html:15 -#: .\cookbook\templates\no_space_info.html:15 msgid "Please contact your administrator." msgstr "" @@ -1282,13 +1474,48 @@ msgid "" "action." msgstr "" -#: .\cookbook\templates\no_space_info.html:5 -#: .\cookbook\templates\no_space_info.html:12 +#: .\cookbook\templates\no_space_info.html:6 +#: .\cookbook\templates\no_space_info.html:13 msgid "No Space" msgstr "" -#: .\cookbook\templates\no_space_info.html:15 -msgid "You are not a member of any space." +#: .\cookbook\templates\no_space_info.html:17 +msgid "" +"Recipes, foods, shopping lists and more are organized in spaces of one or " +"more people." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:18 +msgid "" +"You can either be invited into an existing space or create your own one." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:31 +#: .\cookbook\templates\no_space_info.html:40 +msgid "Join Space" +msgstr "" + +#: .\cookbook\templates\no_space_info.html:34 +msgid "Join an existing space." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:35 +msgid "" +"To join an existing space either enter your invite token or click on the " +"invite link the space owner send you." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:48 +#: .\cookbook\templates\no_space_info.html:56 +msgid "Create Space" +msgstr "" + +#: .\cookbook\templates\no_space_info.html:51 +msgid "Create your own recipe space." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:52 +msgid "Start your own recipe space and invite other users to it." msgstr "" #: .\cookbook\templates\offline.html:6 @@ -1305,28 +1532,29 @@ msgid "" "recently viewed them. Keep in mind that data might be outdated." msgstr "" -#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\stats.html:47 +#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\space.html:56 +#: .\cookbook\templates\stats.html:47 msgid "Comments" msgstr "" #: .\cookbook\templates\recipe_view.html:44 .\cookbook\views\delete.py:118 -#: .\cookbook\views\edit.py:170 +#: .\cookbook\views\edit.py:179 msgid "Comment" msgstr "" #: .\cookbook\templates\recipes_table.html:19 #: .\cookbook\templates\recipes_table.html:23 -#: .\cookbook\templates\url_import.html:69 +#: .\cookbook\templates\url_import.html:440 msgid "Recipe Image" msgstr "" #: .\cookbook\templates\recipes_table.html:51 -#: .\cookbook\templates\url_import.html:74 +#: .\cookbook\templates\url_import.html:445 msgid "Preparation time ca." msgstr "" #: .\cookbook\templates\recipes_table.html:57 -#: .\cookbook\templates\url_import.html:79 +#: .\cookbook\templates\url_import.html:450 msgid "Waiting time ca." msgstr "" @@ -1342,39 +1570,67 @@ msgstr "" msgid "Recipe Home" msgstr "" -#: .\cookbook\templates\settings.html:22 +#: .\cookbook\templates\settings.html:23 msgid "Account" msgstr "" -#: .\cookbook\templates\settings.html:38 -msgid "Link social account" +#: .\cookbook\templates\settings.html:27 +msgid "Preferences" msgstr "" -#: .\cookbook\templates\settings.html:42 +#: .\cookbook\templates\settings.html:31 +msgid "API-Settings" +msgstr "" + +#: .\cookbook\templates\settings.html:39 +msgid "Name Settings" +msgstr "" + +#: .\cookbook\templates\settings.html:47 +msgid "Password Settings" +msgstr "" + +#: .\cookbook\templates\settings.html:55 +msgid "Email Settings" +msgstr "" + +#: .\cookbook\templates\settings.html:57 +msgid "Manage Email Settings" +msgstr "" + +#: .\cookbook\templates\settings.html:61 +msgid "Social" +msgstr "" + +#: .\cookbook\templates\settings.html:63 +msgid "Manage Social Accounts" +msgstr "" + +#: .\cookbook\templates\settings.html:75 msgid "Language" msgstr "" -#: .\cookbook\templates\settings.html:67 +#: .\cookbook\templates\settings.html:105 msgid "Style" msgstr "" -#: .\cookbook\templates\settings.html:79 +#: .\cookbook\templates\settings.html:125 msgid "API Token" msgstr "" -#: .\cookbook\templates\settings.html:80 +#: .\cookbook\templates\settings.html:126 msgid "" "You can use both basic authentication and token based authentication to " "access the REST API." msgstr "" -#: .\cookbook\templates\settings.html:92 +#: .\cookbook\templates\settings.html:143 msgid "" "Use the token as an Authorization header prefixed by the word token as shown " "in the following examples:" msgstr "" -#: .\cookbook\templates\settings.html:94 +#: .\cookbook\templates\settings.html:145 msgid "or" msgstr "" @@ -1395,58 +1651,55 @@ msgstr "" msgid "Create Superuser account" msgstr "" -#: .\cookbook\templates\shopping_list.html:75 +#: .\cookbook\templates\shopping_list.html:79 msgid "Shopping Recipes" msgstr "" -#: .\cookbook\templates\shopping_list.html:79 +#: .\cookbook\templates\shopping_list.html:83 msgid "No recipes selected" msgstr "" -#: .\cookbook\templates\shopping_list.html:146 +#: .\cookbook\templates\shopping_list.html:150 msgid "Entry Mode" msgstr "" -#: .\cookbook\templates\shopping_list.html:154 +#: .\cookbook\templates\shopping_list.html:158 msgid "Add Entry" msgstr "" -#: .\cookbook\templates\shopping_list.html:170 +#: .\cookbook\templates\shopping_list.html:174 msgid "Amount" msgstr "" -#: .\cookbook\templates\shopping_list.html:226 +#: .\cookbook\templates\shopping_list.html:230 +#: .\cookbook\templates\supermarket.html:7 msgid "Supermarket" msgstr "" -#: .\cookbook\templates\shopping_list.html:236 +#: .\cookbook\templates\shopping_list.html:240 msgid "Select Supermarket" msgstr "" -#: .\cookbook\templates\shopping_list.html:260 +#: .\cookbook\templates\shopping_list.html:264 msgid "Select User" msgstr "" -#: .\cookbook\templates\shopping_list.html:279 +#: .\cookbook\templates\shopping_list.html:283 msgid "Finished" msgstr "" -#: .\cookbook\templates\shopping_list.html:292 +#: .\cookbook\templates\shopping_list.html:296 msgid "You are offline, shopping list might not syncronize." msgstr "" -#: .\cookbook\templates\shopping_list.html:357 +#: .\cookbook\templates\shopping_list.html:361 msgid "Copy/Export" msgstr "" -#: .\cookbook\templates\shopping_list.html:361 +#: .\cookbook\templates\shopping_list.html:365 msgid "List Prefix" msgstr "" -#: .\cookbook\templates\shopping_list.html:708 -msgid "There was an error creating a resource!" -msgstr "" - #: .\cookbook\templates\socialaccount\connections.html:4 #: .\cookbook\templates\socialaccount\connections.html:7 msgid "Account Connections" @@ -1458,10 +1711,6 @@ msgid "" " accounts:" msgstr "" -#: .\cookbook\templates\socialaccount\connections.html:36 -msgid "Remove" -msgstr "" - #: .\cookbook\templates\socialaccount\connections.html:44 msgid "" "You currently have no social network accounts connected to this account." @@ -1471,38 +1720,87 @@ msgstr "" msgid "Add a 3rd Party Account" msgstr "" -#: .\cookbook\templates\stats.html:4 -msgid "Stats" +#: .\cookbook\templates\space.html:18 +msgid "Manage Subscription" msgstr "" -#: .\cookbook\templates\stats.html:19 +#: .\cookbook\templates\space.html:26 .\cookbook\templates\stats.html:19 msgid "Number of objects" msgstr "" -#: .\cookbook\templates\stats.html:30 +#: .\cookbook\templates\space.html:39 .\cookbook\templates\stats.html:30 msgid "Recipe Imports" msgstr "" -#: .\cookbook\templates\stats.html:38 +#: .\cookbook\templates\space.html:47 .\cookbook\templates\stats.html:38 msgid "Objects stats" msgstr "" -#: .\cookbook\templates\stats.html:41 +#: .\cookbook\templates\space.html:50 .\cookbook\templates\stats.html:41 msgid "Recipes without Keywords" msgstr "" -#: .\cookbook\templates\stats.html:43 +#: .\cookbook\templates\space.html:52 .\cookbook\templates\stats.html:43 msgid "External Recipes" msgstr "" -#: .\cookbook\templates\stats.html:45 +#: .\cookbook\templates\space.html:54 .\cookbook\templates\stats.html:45 msgid "Internal Recipes" msgstr "" -#: .\cookbook\templates\system.html:21 .\cookbook\views\lists.py:115 +#: .\cookbook\templates\space.html:67 +msgid "Members" +msgstr "" + +#: .\cookbook\templates\space.html:71 +msgid "Invite User" +msgstr "" + +#: .\cookbook\templates\space.html:82 +msgid "User" +msgstr "" + +#: .\cookbook\templates\space.html:83 +msgid "Groups" +msgstr "" + +#: .\cookbook\templates\space.html:99 +msgid "admin" +msgstr "" + +#: .\cookbook\templates\space.html:100 +msgid "user" +msgstr "" + +#: .\cookbook\templates\space.html:101 +msgid "guest" +msgstr "" + +#: .\cookbook\templates\space.html:102 +msgid "remove" +msgstr "" + +#: .\cookbook\templates\space.html:106 +msgid "Update" +msgstr "" + +#: .\cookbook\templates\space.html:110 +msgid "You cannot edit yourself." +msgstr "" + +#: .\cookbook\templates\space.html:117 +msgid "There are no members in your space yet!" +msgstr "" + +#: .\cookbook\templates\space.html:124 .\cookbook\templates\system.html:21 +#: .\cookbook\views\lists.py:115 msgid "Invite Links" msgstr "" +#: .\cookbook\templates\stats.html:4 +msgid "Stats" +msgstr "" + #: .\cookbook\templates\system.html:22 msgid "Show Links" msgstr "" @@ -1600,45 +1898,141 @@ msgid "" " " msgstr "" -#: .\cookbook\templates\url_import.html:5 +#: .\cookbook\templates\url_import.html:6 msgid "URL Import" msgstr "" -#: .\cookbook\templates\url_import.html:23 +#: .\cookbook\templates\url_import.html:31 +msgid "Drag me to your bookmarks to import recipes from anywhere" +msgstr "" + +#: .\cookbook\templates\url_import.html:32 +msgid "Bookmark Me!" +msgstr "" + +#: .\cookbook\templates\url_import.html:61 msgid "Enter website URL" msgstr "" -#: .\cookbook\templates\url_import.html:36 -msgid "Enter json directly" +#: .\cookbook\templates\url_import.html:97 +msgid "Select recipe files to import or drop them here..." msgstr "" -#: .\cookbook\templates\url_import.html:57 +#: .\cookbook\templates\url_import.html:118 +msgid "Paste json or html source here to load recipe." +msgstr "" + +#: .\cookbook\templates\url_import.html:146 +msgid "Preview Recipe Data" +msgstr "" + +#: .\cookbook\templates\url_import.html:147 +msgid "Drag recipe attributes from the right into the appropriate box below." +msgstr "" + +#: .\cookbook\templates\url_import.html:156 +#: .\cookbook\templates\url_import.html:173 +#: .\cookbook\templates\url_import.html:190 +#: .\cookbook\templates\url_import.html:209 +#: .\cookbook\templates\url_import.html:227 +#: .\cookbook\templates\url_import.html:242 +#: .\cookbook\templates\url_import.html:257 +#: .\cookbook\templates\url_import.html:273 +#: .\cookbook\templates\url_import.html:300 +#: .\cookbook\templates\url_import.html:351 +msgid "Clear Contents" +msgstr "" + +#: .\cookbook\templates\url_import.html:158 +msgid "Text dragged here will be appended to the name." +msgstr "" + +#: .\cookbook\templates\url_import.html:175 +msgid "Text dragged here will be appended to the description." +msgstr "" + +#: .\cookbook\templates\url_import.html:192 +msgid "Keywords dragged here will be appended to current list" +msgstr "" + +#: .\cookbook\templates\url_import.html:207 +msgid "Image" +msgstr "" + +#: .\cookbook\templates\url_import.html:239 +msgid "Prep Time" +msgstr "" + +#: .\cookbook\templates\url_import.html:254 +msgid "Cook Time" +msgstr "" + +#: .\cookbook\templates\url_import.html:275 +msgid "Ingredients dragged here will be appended to current list." +msgstr "" + +#: .\cookbook\templates\url_import.html:302 +msgid "" +"Recipe instructions dragged here will be appended to current instructions." +msgstr "" + +#: .\cookbook\templates\url_import.html:325 +msgid "Discovered Attributes" +msgstr "" + +#: .\cookbook\templates\url_import.html:327 +msgid "" +"Drag recipe attributes from below into the appropriate box on the left. " +"Click any node to display its full properties." +msgstr "" + +#: .\cookbook\templates\url_import.html:344 +msgid "Show Blank Field" +msgstr "" + +#: .\cookbook\templates\url_import.html:349 +msgid "Blank Field" +msgstr "" + +#: .\cookbook\templates\url_import.html:353 +msgid "Items dragged to Blank Field will be appended." +msgstr "" + +#: .\cookbook\templates\url_import.html:400 +msgid "Delete Text" +msgstr "" + +#: .\cookbook\templates\url_import.html:413 +msgid "Delete image" +msgstr "" + +#: .\cookbook\templates\url_import.html:429 msgid "Recipe Name" msgstr "" -#: .\cookbook\templates\url_import.html:62 +#: .\cookbook\templates\url_import.html:433 msgid "Recipe Description" msgstr "" -#: .\cookbook\templates\url_import.html:123 -#: .\cookbook\templates\url_import.html:155 -#: .\cookbook\templates\url_import.html:211 +#: .\cookbook\templates\url_import.html:494 +#: .\cookbook\templates\url_import.html:526 +#: .\cookbook\templates\url_import.html:582 msgid "Select one" msgstr "" -#: .\cookbook\templates\url_import.html:225 +#: .\cookbook\templates\url_import.html:596 msgid "All Keywords" msgstr "" -#: .\cookbook\templates\url_import.html:228 +#: .\cookbook\templates\url_import.html:599 msgid "Import all keywords, not only the ones already existing." msgstr "" -#: .\cookbook\templates\url_import.html:255 +#: .\cookbook\templates\url_import.html:626 msgid "Information" msgstr "" -#: .\cookbook\templates\url_import.html:257 +#: .\cookbook\templates\url_import.html:628 msgid "" " Only websites containing ld+json or microdata information can currently\n" " be imported. Most big recipe pages " @@ -1649,48 +2043,73 @@ msgid "" " github issues." msgstr "" -#: .\cookbook\templates\url_import.html:265 +#: .\cookbook\templates\url_import.html:636 msgid "Google ld+json Info" msgstr "" -#: .\cookbook\templates\url_import.html:268 +#: .\cookbook\templates\url_import.html:639 msgid "GitHub Issues" msgstr "" -#: .\cookbook\templates\url_import.html:270 +#: .\cookbook\templates\url_import.html:641 msgid "Recipe Markup Specification" msgstr "" -#: .\cookbook\views\api.py:71 +#: .\cookbook\views\api.py:77 msgid "Parameter updated_at incorrectly formatted" msgstr "" -#: .\cookbook\views\api.py:455 .\cookbook\views\views.py:226 +#: .\cookbook\views\api.py:553 .\cookbook\views\views.py:295 msgid "This feature is not available in the demo version!" msgstr "" -#: .\cookbook\views\api.py:478 +#: .\cookbook\views\api.py:576 msgid "Sync successful!" msgstr "" -#: .\cookbook\views\api.py:483 +#: .\cookbook\views\api.py:581 msgid "Error synchronizing with Storage" msgstr "" -#: .\cookbook\views\api.py:556 .\cookbook\views\api.py:576 +#: .\cookbook\views\api.py:649 +msgid "Nothing to do." +msgstr "" + +#: .\cookbook\views\api.py:664 +msgid "The requested site provided malformed data and cannot be read." +msgstr "" + +#: .\cookbook\views\api.py:671 msgid "The requested page could not be found." msgstr "" -#: .\cookbook\views\api.py:585 +#: .\cookbook\views\api.py:680 msgid "" -"The requested page refused to provide any information (Status Code 403)." +"The requested site does not provide any recognized data format to import the " +"recipe from." msgstr "" -#: .\cookbook\views\api.py:611 -msgid "Could not parse correctly..." +#: .\cookbook\views\api.py:694 +msgid "No useable data could be found." msgstr "" -#: .\cookbook\views\data.py:94 +#: .\cookbook\views\api.py:710 +msgid "I couldn't find anything to do." +msgstr "" + +#: .\cookbook\views\data.py:30 .\cookbook\views\data.py:121 +#: .\cookbook\views\edit.py:50 .\cookbook\views\import_export.py:67 +#: .\cookbook\views\new.py:32 +msgid "You have reached the maximum number of recipes for your space." +msgstr "" + +#: .\cookbook\views\data.py:34 .\cookbook\views\data.py:125 +#: .\cookbook\views\edit.py:54 .\cookbook\views\import_export.py:71 +#: .\cookbook\views\new.py:36 +msgid "You have more users than allowed in your space." +msgstr "" + +#: .\cookbook\views\data.py:103 #, python-format msgid "Batch edit done. %(count)d recipe was updated." msgid_plural "Batch edit done. %(count)d Recipes where updated." @@ -1702,7 +2121,7 @@ msgid "Monitor" msgstr "" #: .\cookbook\views\delete.py:96 .\cookbook\views\lists.py:102 -#: .\cookbook\views\new.py:86 +#: .\cookbook\views\new.py:98 msgid "Storage Backend" msgstr "" @@ -1711,8 +2130,8 @@ msgid "" "Could not delete this storage backend as it is used in at least one monitor." msgstr "" -#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:204 -#: .\cookbook\views\new.py:144 +#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:213 +#: .\cookbook\views\new.py:156 msgid "Recipe Book" msgstr "" @@ -1720,55 +2139,55 @@ msgstr "" msgid "Bookmarks" msgstr "" -#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:214 +#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:252 msgid "Invite Link" msgstr "" -#: .\cookbook\views\edit.py:110 +#: .\cookbook\views\edit.py:119 msgid "Food" msgstr "" -#: .\cookbook\views\edit.py:119 +#: .\cookbook\views\edit.py:128 msgid "You cannot edit this storage!" msgstr "" -#: .\cookbook\views\edit.py:139 +#: .\cookbook\views\edit.py:148 msgid "Storage saved!" msgstr "" -#: .\cookbook\views\edit.py:145 +#: .\cookbook\views\edit.py:154 msgid "There was an error updating this storage backend!" msgstr "" -#: .\cookbook\views\edit.py:156 +#: .\cookbook\views\edit.py:165 msgid "Storage" msgstr "" -#: .\cookbook\views\edit.py:252 +#: .\cookbook\views\edit.py:261 msgid "Changes saved!" msgstr "" -#: .\cookbook\views\edit.py:256 +#: .\cookbook\views\edit.py:265 msgid "Error saving changes!" msgstr "" -#: .\cookbook\views\edit.py:289 +#: .\cookbook\views\edit.py:299 msgid "Units merged!" msgstr "" -#: .\cookbook\views\edit.py:291 .\cookbook\views\edit.py:307 +#: .\cookbook\views\edit.py:301 .\cookbook\views\edit.py:317 msgid "Cannot merge with the same object!" msgstr "" -#: .\cookbook\views\edit.py:305 +#: .\cookbook\views\edit.py:315 msgid "Foods merged!" msgstr "" -#: .\cookbook\views\import_export.py:73 +#: .\cookbook\views\import_export.py:93 msgid "Importing is not implemented for this provider" msgstr "" -#: .\cookbook\views\import_export.py:92 +#: .\cookbook\views\import_export.py:115 msgid "Exporting is not implemented for this provider" msgstr "" @@ -1784,41 +2203,103 @@ msgstr "" msgid "Shopping Lists" msgstr "" -#: .\cookbook\views\new.py:111 +#: .\cookbook\views\new.py:123 msgid "Imported new recipe!" msgstr "" -#: .\cookbook\views\new.py:114 +#: .\cookbook\views\new.py:126 msgid "There was an error importing this recipe!" msgstr "" -#: .\cookbook\views\views.py:123 +#: .\cookbook\views\new.py:226 +msgid "Hello" +msgstr "" + +#: .\cookbook\views\new.py:226 +msgid "You have been invited by " +msgstr "" + +#: .\cookbook\views\new.py:227 +msgid " to join their Tandoor Recipes space " +msgstr "" + +#: .\cookbook\views\new.py:228 +msgid "Click the following link to activate your account: " +msgstr "" + +#: .\cookbook\views\new.py:229 +msgid "" +"If the link does not work use the following code to manually join the space: " +msgstr "" + +#: .\cookbook\views\new.py:230 +msgid "The invitation is valid until " +msgstr "" + +#: .\cookbook\views\new.py:231 +msgid "" +"Tandoor Recipes is an Open Source recipe manager. Check it out on GitHub " +msgstr "" + +#: .\cookbook\views\new.py:234 +msgid "Tandoor Recipes Invite" +msgstr "" + +#: .\cookbook\views\new.py:241 +msgid "Invite link successfully send to user." +msgstr "" + +#: .\cookbook\views\new.py:244 +msgid "" +"You have send to many emails, please share the link manually or wait a few " +"hours." +msgstr "" + +#: .\cookbook\views\new.py:246 +msgid "Email to user could not be send, please share link manually." +msgstr "" + +#: .\cookbook\views\views.py:125 +msgid "" +"You have successfully created your own recipe space. Start by adding some " +"recipes or invite other people to join you." +msgstr "" + +#: .\cookbook\views\views.py:173 msgid "You do not have the required permissions to perform this action!" msgstr "" -#: .\cookbook\views\views.py:134 +#: .\cookbook\views\views.py:184 msgid "Comment saved!" msgstr "" -#: .\cookbook\views\views.py:326 +#: .\cookbook\views\views.py:396 msgid "" "The setup page can only be used to create the first user! If you have " "forgotten your superuser credentials please consult the django documentation " "on how to reset passwords." msgstr "" -#: .\cookbook\views\views.py:333 .\cookbook\views\views.py:378 +#: .\cookbook\views\views.py:403 msgid "Passwords dont match!" msgstr "" -#: .\cookbook\views\views.py:349 .\cookbook\views\views.py:385 +#: .\cookbook\views\views.py:419 msgid "User has been created, please login!" msgstr "" -#: .\cookbook\views\views.py:365 +#: .\cookbook\views\views.py:435 msgid "Malformed Invite Link supplied!" msgstr "" -#: .\cookbook\views\views.py:405 +#: .\cookbook\views\views.py:441 +msgid "You are already member of a space and therefore cannot join this one." +msgstr "" + +#: .\cookbook\views\views.py:452 +msgid "Successfully joined space." +msgstr "" + +#: .\cookbook\views\views.py:458 msgid "Invite Link not valid or already used!" msgstr "" diff --git a/cookbook/locale/es/LC_MESSAGES/django.po b/cookbook/locale/es/LC_MESSAGES/django.po index 0e3be296..d0744710 100644 --- a/cookbook/locale/es/LC_MESSAGES/django.po +++ b/cookbook/locale/es/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-04-11 15:09+0200\n" +"POT-Creation-Date: 2021-06-12 20:30+0200\n" "PO-Revision-Date: 2020-06-02 19:28+0000\n" "Last-Translator: Miguel Canteras , 2021\n" "Language-Team: Spanish (https://www.transifex.com/django-recipes/" @@ -25,14 +25,15 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: .\cookbook\filters.py:23 .\cookbook\templates\base.html:91 -#: .\cookbook\templates\forms\edit_internal_recipe.html:219 +#: .\cookbook\filters.py:23 .\cookbook\templates\base.html:98 +#: .\cookbook\templates\forms\edit_internal_recipe.html:246 #: .\cookbook\templates\forms\ingredients.html:34 -#: .\cookbook\templates\stats.html:28 .\cookbook\views\lists.py:67 +#: .\cookbook\templates\space.html:37 .\cookbook\templates\stats.html:28 +#: .\cookbook\templates\url_import.html:270 .\cookbook\views\lists.py:67 msgid "Ingredients" msgstr "Ingredientes" -#: .\cookbook\forms.py:45 +#: .\cookbook\forms.py:49 msgid "" "Color of the top navigation bar. Not all colors work with all themes, just " "try them out!" @@ -40,13 +41,13 @@ msgstr "" "Color de la barra de navegación superior. No todos los colores funcionan con " "todos los temas, ¡pruébalos!" -#: .\cookbook\forms.py:46 +#: .\cookbook\forms.py:51 msgid "Default Unit to be used when inserting a new ingredient into a recipe." msgstr "" "Unidad predeterminada que se utilizará al insertar un nuevo ingrediente en " "una receta." -#: .\cookbook\forms.py:47 +#: .\cookbook\forms.py:53 msgid "" "Enables support for fractions in ingredient amounts (e.g. convert decimals " "to fractions automatically)" @@ -54,7 +55,7 @@ msgstr "" "Permite utilizar fracciones en cantidades de ingredientes (e.g. convierte " "los decimales en fracciones automáticamente)" -#: .\cookbook\forms.py:48 +#: .\cookbook\forms.py:56 msgid "" "Users with whom newly created meal plan/shopping list entries should be " "shared by default." @@ -62,19 +63,19 @@ msgstr "" "Usuarios con los que las entradas recién creadas del plan de comida/lista de " "la compra deben compartirse de forma predeterminada." -#: .\cookbook\forms.py:49 +#: .\cookbook\forms.py:58 msgid "Show recently viewed recipes on search page." msgstr "Muestra recetas vistas recientemente en la página de búsqueda." -#: .\cookbook\forms.py:50 +#: .\cookbook\forms.py:59 msgid "Number of decimals to round ingredients." msgstr "Número de decimales para redondear los ingredientes." -#: .\cookbook\forms.py:51 +#: .\cookbook\forms.py:60 msgid "If you want to be able to create and see comments underneath recipes." msgstr "Si desea poder crear y ver comentarios debajo de las recetas." -#: .\cookbook\forms.py:53 +#: .\cookbook\forms.py:62 msgid "" "Setting to 0 will disable auto sync. When viewing a shopping list the list " "is updated every set seconds to sync changes someone else might have made. " @@ -88,11 +89,11 @@ msgstr "" "valor establecido es inferior al límite de la instancia, este se " "restablecerá al guardar." -#: .\cookbook\forms.py:56 +#: .\cookbook\forms.py:65 msgid "Makes the navbar stick to the top of the page." msgstr "Hace la barra de navegación fija en la parte superior de la página." -#: .\cookbook\forms.py:72 +#: .\cookbook\forms.py:81 msgid "" "Both fields are optional. If none are given the username will be displayed " "instead" @@ -104,92 +105,95 @@ msgstr "" " \n" " " -#: .\cookbook\forms.py:93 .\cookbook\forms.py:315 -#: .\cookbook\templates\forms\edit_internal_recipe.html:45 +#: .\cookbook\forms.py:102 .\cookbook\forms.py:331 +#: .\cookbook\templates\forms\edit_internal_recipe.html:49 +#: .\cookbook\templates\url_import.html:154 msgid "Name" msgstr "Nombre" -#: .\cookbook\forms.py:94 .\cookbook\forms.py:316 -#: .\cookbook\templates\base.html:98 -#: .\cookbook\templates\forms\edit_internal_recipe.html:81 -#: .\cookbook\templates\stats.html:24 .\cookbook\templates\url_import.html:202 +#: .\cookbook\forms.py:103 .\cookbook\forms.py:332 +#: .\cookbook\templates\base.html:105 +#: .\cookbook\templates\forms\edit_internal_recipe.html:85 +#: .\cookbook\templates\space.html:33 .\cookbook\templates\stats.html:24 +#: .\cookbook\templates\url_import.html:188 +#: .\cookbook\templates\url_import.html:573 msgid "Keywords" msgstr "Palabras clave" -#: .\cookbook\forms.py:95 +#: .\cookbook\forms.py:104 msgid "Preparation time in minutes" msgstr "Tiempo de preparación en minutos" -#: .\cookbook\forms.py:96 +#: .\cookbook\forms.py:105 msgid "Waiting time (cooking/baking) in minutes" msgstr "Tiempo de espera (cocinar/hornear) en minutos" -#: .\cookbook\forms.py:97 .\cookbook\forms.py:317 +#: .\cookbook\forms.py:106 .\cookbook\forms.py:333 msgid "Path" msgstr "Ruta" -#: .\cookbook\forms.py:98 +#: .\cookbook\forms.py:107 msgid "Storage UID" msgstr "UID de almacenamiento" -#: .\cookbook\forms.py:121 +#: .\cookbook\forms.py:133 msgid "Default" msgstr "Por defecto" -#: .\cookbook\forms.py:130 +#: .\cookbook\forms.py:144 .\cookbook\templates\url_import.html:90 msgid "" "To prevent duplicates recipes with the same name as existing ones are " "ignored. Check this box to import everything." msgstr "" -#: .\cookbook\forms.py:149 +#: .\cookbook\forms.py:164 msgid "New Unit" msgstr "Nueva Unidad" -#: .\cookbook\forms.py:150 +#: .\cookbook\forms.py:165 msgid "New unit that other gets replaced by." msgstr "Nueva unidad que reemplaza a la anterior." -#: .\cookbook\forms.py:155 +#: .\cookbook\forms.py:170 msgid "Old Unit" msgstr "Antigua unidad" -#: .\cookbook\forms.py:156 +#: .\cookbook\forms.py:171 msgid "Unit that should be replaced." msgstr "Unidad que se va a reemplazar." -#: .\cookbook\forms.py:172 +#: .\cookbook\forms.py:187 msgid "New Food" msgstr "Nuevo Alimento" -#: .\cookbook\forms.py:173 +#: .\cookbook\forms.py:188 msgid "New food that other gets replaced by." msgstr "Nuevo alimento que remplaza al anterior." -#: .\cookbook\forms.py:178 +#: .\cookbook\forms.py:193 msgid "Old Food" msgstr "Antiguo alimento" -#: .\cookbook\forms.py:179 +#: .\cookbook\forms.py:194 msgid "Food that should be replaced." msgstr "Alimento que se va a reemplazar." -#: .\cookbook\forms.py:197 +#: .\cookbook\forms.py:212 msgid "Add your comment: " msgstr "Añada su comentario:" -#: .\cookbook\forms.py:238 +#: .\cookbook\forms.py:253 msgid "Leave empty for dropbox and enter app password for nextcloud." msgstr "" "Déjelo vacío para Dropbox e ingrese la contraseña de la aplicación para " "nextcloud." -#: .\cookbook\forms.py:245 +#: .\cookbook\forms.py:260 msgid "Leave empty for nextcloud and enter api token for dropbox." msgstr "" "Déjelo en blanco para nextcloud e ingrese el token de api para dropbox." -#: .\cookbook\forms.py:253 +#: .\cookbook\forms.py:269 msgid "" "Leave empty for dropbox and enter only base url for nextcloud (/remote." "php/webdav/ is added automatically)" @@ -197,26 +201,26 @@ msgstr "" "Dejar vació para Dropbox e introducir sólo la URL base para Nextcloud " "(/remote.php/webdav/ se añade automáticamente)" -#: .\cookbook\forms.py:291 +#: .\cookbook\forms.py:307 msgid "Search String" msgstr "Cadena de búsqueda" -#: .\cookbook\forms.py:318 +#: .\cookbook\forms.py:334 msgid "File ID" msgstr "ID de Fichero" -#: .\cookbook\forms.py:354 +#: .\cookbook\forms.py:370 msgid "You must provide at least a recipe or a title." msgstr "Debe proporcionar al menos una receta o un título." -#: .\cookbook\forms.py:367 +#: .\cookbook\forms.py:383 msgid "You can list default users to share recipes with in the settings." msgstr "" "Puede enumerar los usuarios predeterminados con los que compartir recetas en " "la configuración." -#: .\cookbook\forms.py:368 -#: .\cookbook\templates\forms\edit_internal_recipe.html:377 +#: .\cookbook\forms.py:384 +#: .\cookbook\templates\forms\edit_internal_recipe.html:404 msgid "" "You can use markdown to format this field. See the docs here" @@ -224,52 +228,57 @@ msgstr "" "Puede utilizar Markdown para formatear este campo. Vea la documentación aqui" -#: .\cookbook\forms.py:393 -msgid "A username is not required, if left blank the new user can choose one." +#: .\cookbook\forms.py:409 +msgid "Maximum number of users for this space reached." msgstr "" -"No se requiere un nombre de usuario, si se deja en blanco, el nuevo usuario " -"puede elegir uno." -#: .\cookbook\helper\permission_helper.py:123 -#: .\cookbook\helper\permission_helper.py:129 -#: .\cookbook\helper\permission_helper.py:151 -#: .\cookbook\helper\permission_helper.py:196 -#: .\cookbook\helper\permission_helper.py:210 -#: .\cookbook\helper\permission_helper.py:221 -#: .\cookbook\helper\permission_helper.py:232 .\cookbook\views\data.py:30 -#: .\cookbook\views\views.py:112 .\cookbook\views\views.py:116 -#: .\cookbook\views\views.py:184 -msgid "You do not have the required permissions to view this page!" -msgstr "¡No tienes los permisos necesarios para ver esta página!" +#: .\cookbook\forms.py:415 +msgid "Email address already taken!" +msgstr "" -#: .\cookbook\helper\permission_helper.py:141 +#: .\cookbook\forms.py:423 +msgid "" +"An email address is not required but if present the invite link will be send " +"to the user." +msgstr "" + +#: .\cookbook\forms.py:438 +msgid "Name already taken." +msgstr "" + +#: .\cookbook\forms.py:449 +msgid "Accept Terms and Privacy" +msgstr "" + +#: .\cookbook\helper\AllAuthCustomAdapter.py:30 +msgid "" +"In order to prevent spam, the requested email was not send. Please wait a " +"few minutes and try again." +msgstr "" + +#: .\cookbook\helper\permission_helper.py:124 +#: .\cookbook\helper\permission_helper.py:144 .\cookbook\views\views.py:147 msgid "You are not logged in and therefore cannot view this page!" msgstr "¡No ha iniciado sesión y por lo tanto no puede ver esta página!" -#: .\cookbook\helper\permission_helper.py:145 -#: .\cookbook\helper\permission_helper.py:167 -#: .\cookbook\helper\permission_helper.py:182 +#: .\cookbook\helper\permission_helper.py:127 +#: .\cookbook\helper\permission_helper.py:132 +#: .\cookbook\helper\permission_helper.py:154 +#: .\cookbook\helper\permission_helper.py:199 +#: .\cookbook\helper\permission_helper.py:213 +#: .\cookbook\helper\permission_helper.py:224 +#: .\cookbook\helper\permission_helper.py:235 .\cookbook\views\data.py:39 +#: .\cookbook\views\views.py:158 .\cookbook\views\views.py:165 +#: .\cookbook\views\views.py:253 +msgid "You do not have the required permissions to view this page!" +msgstr "¡No tienes los permisos necesarios para ver esta página!" + +#: .\cookbook\helper\permission_helper.py:148 +#: .\cookbook\helper\permission_helper.py:170 +#: .\cookbook\helper\permission_helper.py:185 msgid "You cannot interact with this object as it is not owned by you!" msgstr "¡No puede interactuar con este objeto ya que no es de tu propiedad!" -#: .\cookbook\helper\recipe_url_import.py:40 .\cookbook\views\api.py:549 -msgid "The requested site provided malformed data and cannot be read." -msgstr "" -"El sitio solicitado proporcionó datos con formato incorrecto y no se puede " -"leer." - -#: .\cookbook\helper\recipe_url_import.py:54 -msgid "" -"The requested site does not provide any recognized data format to import the " -"recipe from." -msgstr "" -"El sitio solicitado no proporciona ningún formato de datos reconocido para " -"importar la receta." - -#: .\cookbook\helper\recipe_url_import.py:160 -msgid "Imported from" -msgstr "Importado de" - #: .\cookbook\helper\template_helper.py:60 #: .\cookbook\helper\template_helper.py:62 msgid "Could not parse template code." @@ -279,12 +288,16 @@ msgstr "" #: .\cookbook\templates\import.html:14 .\cookbook\templates\import.html:20 #: .\cookbook\templates\import_response.html:7 #: .\cookbook\templates\test.html:14 .\cookbook\templates\test.html:20 -#: .\cookbook\templates\url_import.html:233 .\cookbook\views\delete.py:60 -#: .\cookbook\views\edit.py:190 +#: .\cookbook\templates\url_import.html:27 +#: .\cookbook\templates\url_import.html:101 +#: .\cookbook\templates\url_import.html:123 +#: .\cookbook\templates\url_import.html:317 +#: .\cookbook\templates\url_import.html:604 .\cookbook\views\delete.py:60 +#: .\cookbook\views\edit.py:199 msgid "Import" msgstr "Importar" -#: .\cookbook\integration\integration.py:131 +#: .\cookbook\integration\integration.py:162 msgid "" "Importer expected a .zip file. Did you choose the correct importer type for " "your data ?" @@ -292,36 +305,43 @@ msgstr "" "El importador esperaba un fichero.zip. ¿Has escogido el tipo de importador " "correcto para tus datos?" -#: .\cookbook\integration\integration.py:134 +#: .\cookbook\integration\integration.py:165 +msgid "" +"An unexpected error occurred during the import. Please make sure you have " +"uploaded a valid file." +msgstr "" + +#: .\cookbook\integration\integration.py:169 msgid "The following recipes were ignored because they already existed:" msgstr "" -#: .\cookbook\integration\integration.py:137 +#: .\cookbook\integration\integration.py:173 #, fuzzy, python-format #| msgid "Imported new recipe!" msgid "Imported %s recipes." msgstr "¡Nueva receta importada!" -#: .\cookbook\integration\paprika.py:44 +#: .\cookbook\integration\paprika.py:46 #, fuzzy #| msgid "Note" msgid "Notes" msgstr "Nota" -#: .\cookbook\integration\paprika.py:47 +#: .\cookbook\integration\paprika.py:49 #, fuzzy #| msgid "Information" msgid "Nutritional Information" msgstr "Información" -#: .\cookbook\integration\paprika.py:50 +#: .\cookbook\integration\paprika.py:53 msgid "Source" msgstr "" #: .\cookbook\integration\safron.py:23 -#: .\cookbook\templates\forms\edit_internal_recipe.html:75 +#: .\cookbook\templates\forms\edit_internal_recipe.html:79 #: .\cookbook\templates\include\log_cooking.html:16 -#: .\cookbook\templates\url_import.html:84 +#: .\cookbook\templates\url_import.html:224 +#: .\cookbook\templates\url_import.html:455 msgid "Servings" msgstr "Raciones" @@ -330,11 +350,11 @@ msgid "Waiting time" msgstr "Tiempo de espera" #: .\cookbook\integration\safron.py:27 -#: .\cookbook\templates\forms\edit_internal_recipe.html:69 +#: .\cookbook\templates\forms\edit_internal_recipe.html:73 msgid "Preparation Time" msgstr "Tiempo de Preparación" -#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:71 +#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:78 #: .\cookbook\templates\forms\ingredients.html:7 #: .\cookbook\templates\index.html:7 msgid "Cookbook" @@ -360,44 +380,74 @@ msgstr "Cena" msgid "Other" msgstr "Otro" -#: .\cookbook\models.py:110 .\cookbook\templates\shopping_list.html:48 +#: .\cookbook\models.py:71 +msgid "" +"Maximum file storage for space in MB. 0 for unlimited, -1 to disable file " +"upload." +msgstr "" + +#: .\cookbook\models.py:121 .\cookbook\templates\search.html:7 +#: .\cookbook\templates\shopping_list.html:52 msgid "Search" msgstr "Buscar" -#: .\cookbook\models.py:111 .\cookbook\templates\base.html:85 +#: .\cookbook\models.py:122 .\cookbook\templates\base.html:92 #: .\cookbook\templates\meal_plan.html:5 .\cookbook\views\delete.py:152 -#: .\cookbook\views\edit.py:224 .\cookbook\views\new.py:188 +#: .\cookbook\views\edit.py:233 .\cookbook\views\new.py:201 msgid "Meal-Plan" msgstr "Régimen de comidas" -#: .\cookbook\models.py:112 .\cookbook\templates\base.html:82 +#: .\cookbook\models.py:123 .\cookbook\templates\base.html:89 msgid "Books" msgstr "Libros" -#: .\cookbook\models.py:119 +#: .\cookbook\models.py:131 msgid "Small" msgstr "Pequeño" -#: .\cookbook\models.py:119 +#: .\cookbook\models.py:131 msgid "Large" msgstr "Grande" -#: .\cookbook\models.py:327 -#: .\cookbook\templates\forms\edit_internal_recipe.html:198 +#: .\cookbook\models.py:131 .\cookbook\templates\generic\new_template.html:6 +#: .\cookbook\templates\generic\new_template.html:14 +#: .\cookbook\templates\meal_plan.html:323 +msgid "New" +msgstr "Nuevo" + +#: .\cookbook\models.py:340 +#: .\cookbook\templates\forms\edit_internal_recipe.html:202 msgid "Text" msgstr "Texto" -#: .\cookbook\models.py:327 -#: .\cookbook\templates\forms\edit_internal_recipe.html:199 +#: .\cookbook\models.py:340 +#: .\cookbook\templates\forms\edit_internal_recipe.html:203 msgid "Time" msgstr "Tiempo" +#: .\cookbook\models.py:340 +#: .\cookbook\templates\forms\edit_internal_recipe.html:204 +#: .\cookbook\templates\forms\edit_internal_recipe.html:218 +#, fuzzy +#| msgid "File ID" +msgid "File" +msgstr "ID de Fichero" + +#: .\cookbook\serializer.py:109 +msgid "File uploads are not enabled for this Space." +msgstr "" + +#: .\cookbook\serializer.py:117 +msgid "You have reached your file upload limit." +msgstr "" + #: .\cookbook\tables.py:35 .\cookbook\templates\books.html:36 #: .\cookbook\templates\generic\edit_template.html:6 #: .\cookbook\templates\generic\edit_template.html:14 #: .\cookbook\templates\meal_plan.html:281 #: .\cookbook\templates\recipes_table.html:82 #: .\cookbook\templates\shopping_list.html:33 +#: .\cookbook\templates\space.html:84 msgid "Edit" msgstr "Editar" @@ -411,10 +461,6 @@ msgstr "Editar" msgid "Delete" msgstr "Eliminar" -#: .\cookbook\tables.py:144 -msgid "Link" -msgstr "Enlace" - #: .\cookbook\templates\404.html:5 msgid "404 Error" msgstr "Error 404" @@ -431,21 +477,126 @@ msgstr "Llévame a Inicio" msgid "Report a Bug" msgstr "Reportar un error" -#: .\cookbook\templates\account\login.html:7 -#: .\cookbook\templates\base.html:170 +#: .\cookbook\templates\account\email.html:6 +#: .\cookbook\templates\account\email.html:9 +msgid "E-mail Addresses" +msgstr "" + +#: .\cookbook\templates\account\email.html:11 +msgid "The following e-mail addresses are associated with your account:" +msgstr "" + +#: .\cookbook\templates\account\email.html:28 +msgid "Verified" +msgstr "" + +#: .\cookbook\templates\account\email.html:30 +msgid "Unverified" +msgstr "" + +#: .\cookbook\templates\account\email.html:32 +msgid "Primary" +msgstr "" + +#: .\cookbook\templates\account\email.html:39 +#, fuzzy +#| msgid "Make Header" +msgid "Make Primary" +msgstr "Crear encabezado" + +#: .\cookbook\templates\account\email.html:41 +msgid "Re-send Verification" +msgstr "" + +#: .\cookbook\templates\account\email.html:42 +#: .\cookbook\templates\socialaccount\connections.html:36 +msgid "Remove" +msgstr "Eliminar" + +#: .\cookbook\templates\account\email.html:50 +#, fuzzy +#| msgid "Warning" +msgid "Warning:" +msgstr "Advertencia" + +#: .\cookbook\templates\account\email.html:50 +msgid "" +"You currently do not have any e-mail address set up. You should really add " +"an e-mail address so you can receive notifications, reset your password, etc." +msgstr "" + +#: .\cookbook\templates\account\email.html:56 +msgid "Add E-mail Address" +msgstr "" + +#: .\cookbook\templates\account\email.html:61 +msgid "Add E-mail" +msgstr "" + +#: .\cookbook\templates\account\email.html:71 +msgid "Do you really want to remove the selected e-mail address?" +msgstr "" + +#: .\cookbook\templates\account\email_confirm.html:6 +#: .\cookbook\templates\account\email_confirm.html:10 +msgid "Confirm E-mail Address" +msgstr "" + +#: .\cookbook\templates\account\email_confirm.html:16 +#, python-format +msgid "" +"Please confirm that\n" +" %(email)s is an e-mail address " +"for user %(user_display)s\n" +" ." +msgstr "" + +#: .\cookbook\templates\account\email_confirm.html:22 +#: .\cookbook\templates\generic\delete_template.html:21 +msgid "Confirm" +msgstr "Confirmar" + +#: .\cookbook\templates\account\email_confirm.html:29 +#, python-format +msgid "" +"This e-mail confirmation link expired or is invalid. Please\n" +" issue a new e-mail confirmation " +"request." +msgstr "" + +#: .\cookbook\templates\account\login.html:8 +#: .\cookbook\templates\base.html:180 msgid "Login" msgstr "Iniciar sesión" -#: .\cookbook\templates\account\login.html:13 -#: .\cookbook\templates\account\login.html:28 +#: .\cookbook\templates\account\login.html:15 +#: .\cookbook\templates\account\login.html:31 +#: .\cookbook\templates\account\signup.html:69 +#: .\cookbook\templates\account\signup_closed.html:15 msgid "Sign In" msgstr "Iniciar sesión" -#: .\cookbook\templates\account\login.html:38 +#: .\cookbook\templates\account\login.html:32 +#, fuzzy +#| msgid "Sign In" +msgid "Sign Up" +msgstr "Iniciar sesión" + +#: .\cookbook\templates\account\login.html:36 +#: .\cookbook\templates\account\login.html:37 +#: .\cookbook\templates\account\password_reset.html:29 +msgid "Reset My Password" +msgstr "" + +#: .\cookbook\templates\account\login.html:37 +msgid "Lost your password?" +msgstr "" + +#: .\cookbook\templates\account\login.html:48 msgid "Social Login" msgstr "Inicio de sesión social" -#: .\cookbook\templates\account\login.html:39 +#: .\cookbook\templates\account\login.html:49 msgid "You can use any of the following providers to sign in." msgstr "" "Puedes usar cualquiera de los siguientes proveedores de inicio de sesión." @@ -460,116 +611,168 @@ msgstr "Salir" msgid "Are you sure you want to sign out?" msgstr "¿Seguro que quieres salir?" -#: .\cookbook\templates\account\password_reset.html:5 -#: .\cookbook\templates\account\password_reset_done.html:5 +#: .\cookbook\templates\account\password_reset.html:7 +#: .\cookbook\templates\account\password_reset.html:13 +#: .\cookbook\templates\account\password_reset_done.html:7 +#: .\cookbook\templates\account\password_reset_done.html:10 msgid "Password Reset" msgstr "Restablecer contraseña" -#: .\cookbook\templates\account\password_reset.html:9 -#: .\cookbook\templates\account\password_reset_done.html:9 -msgid "Password reset is not implemented for the time being!" +#: .\cookbook\templates\account\password_reset.html:24 +msgid "" +"Forgotten your password? Enter your e-mail address below, and we'll send you " +"an e-mail allowing you to reset it." +msgstr "" + +#: .\cookbook\templates\account\password_reset.html:32 +#, fuzzy +#| msgid "Password reset is not implemented for the time being!" +msgid "Password reset is disabled on this instance." msgstr "¡Restablecimiento de contraseña no está implementado de momento!" -#: .\cookbook\templates\account\signup.html:5 +#: .\cookbook\templates\account\password_reset_done.html:16 +msgid "" +"We have sent you an e-mail. Please contact us if you do not receive it " +"within a few minutes." +msgstr "" + +#: .\cookbook\templates\account\signup.html:6 msgid "Register" msgstr "Registrar" -#: .\cookbook\templates\account\signup.html:9 -msgid "Create your Account" +#: .\cookbook\templates\account\signup.html:12 +#, fuzzy +#| msgid "Create your Account" +msgid "Create an Account" msgstr "Crea tu Cuenta" -#: .\cookbook\templates\account\signup.html:14 +#: .\cookbook\templates\account\signup.html:42 +msgid "I accept the follwoing" +msgstr "" + +#: .\cookbook\templates\account\signup.html:45 +msgid "Terms and Conditions" +msgstr "" + +#: .\cookbook\templates\account\signup.html:48 +msgid "and" +msgstr "" + +#: .\cookbook\templates\account\signup.html:52 +msgid "Privacy Policy" +msgstr "" + +#: .\cookbook\templates\account\signup.html:65 msgid "Create User" msgstr "Crear Usuario" -#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:160 +#: .\cookbook\templates\account\signup.html:69 +msgid "Already have an account?" +msgstr "" + +#: .\cookbook\templates\account\signup_closed.html:5 +#: .\cookbook\templates\account\signup_closed.html:11 +msgid "Sign Up Closed" +msgstr "" + +#: .\cookbook\templates\account\signup_closed.html:13 +msgid "We are sorry, but the sign up is currently closed." +msgstr "" + +#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:170 #: .\cookbook\templates\rest_framework\api.html:11 msgid "API Documentation" msgstr "Documentación de API" -#: .\cookbook\templates\base.html:78 +#: .\cookbook\templates\base.html:85 msgid "Utensils" msgstr "Utensilios" -#: .\cookbook\templates\base.html:88 +#: .\cookbook\templates\base.html:95 msgid "Shopping" msgstr "Compras" -#: .\cookbook\templates\base.html:102 .\cookbook\views\delete.py:84 -#: .\cookbook\views\edit.py:93 .\cookbook\views\lists.py:26 -#: .\cookbook\views\new.py:66 +#: .\cookbook\templates\base.html:109 .\cookbook\views\delete.py:84 +#: .\cookbook\views\edit.py:102 .\cookbook\views\lists.py:26 +#: .\cookbook\views\new.py:78 msgid "Keyword" msgstr "Palabra clave" -#: .\cookbook\templates\base.html:104 +#: .\cookbook\templates\base.html:111 msgid "Batch Edit" msgstr "Edición Masiva" -#: .\cookbook\templates\base.html:109 +#: .\cookbook\templates\base.html:116 msgid "Storage Data" msgstr "Almacenamiento de Datos" -#: .\cookbook\templates\base.html:113 +#: .\cookbook\templates\base.html:120 msgid "Storage Backends" msgstr "Backends de Almacenamiento" -#: .\cookbook\templates\base.html:115 +#: .\cookbook\templates\base.html:122 msgid "Configure Sync" msgstr "Configurar Sincronización" -#: .\cookbook\templates\base.html:117 +#: .\cookbook\templates\base.html:124 msgid "Discovered Recipes" msgstr "Recetas Descubiertas" -#: .\cookbook\templates\base.html:119 +#: .\cookbook\templates\base.html:126 msgid "Discovery Log" msgstr "Registro de descubrimiento" -#: .\cookbook\templates\base.html:121 .\cookbook\templates\stats.html:10 +#: .\cookbook\templates\base.html:128 .\cookbook\templates\stats.html:10 msgid "Statistics" msgstr "Estadísticas" -#: .\cookbook\templates\base.html:123 +#: .\cookbook\templates\base.html:130 msgid "Units & Ingredients" msgstr "Unidades e ingredientes" -#: .\cookbook\templates\base.html:125 +#: .\cookbook\templates\base.html:132 .\cookbook\templates\index.html:47 msgid "Import Recipe" msgstr "Importar receta" -#: .\cookbook\templates\base.html:144 .\cookbook\templates\settings.html:6 +#: .\cookbook\templates\base.html:151 .\cookbook\templates\settings.html:6 #: .\cookbook\templates\settings.html:16 msgid "Settings" msgstr "Opciones" -#: .\cookbook\templates\base.html:146 .\cookbook\templates\history.html:6 +#: .\cookbook\templates\base.html:153 .\cookbook\templates\history.html:6 #: .\cookbook\templates\history.html:14 msgid "History" msgstr "Historial" -#: .\cookbook\templates\base.html:150 .\cookbook\templates\system.html:13 +#: .\cookbook\templates\base.html:155 .\cookbook\templates\space.html:7 +#, fuzzy +#| msgid "Settings" +msgid "Space Settings" +msgstr "Opciones" + +#: .\cookbook\templates\base.html:160 .\cookbook\templates\system.html:13 msgid "System" msgstr "Sistema" -#: .\cookbook\templates\base.html:152 +#: .\cookbook\templates\base.html:162 msgid "Admin" msgstr "Administrador" -#: .\cookbook\templates\base.html:156 +#: .\cookbook\templates\base.html:166 msgid "Markdown Guide" msgstr "Guia Markdown" -#: .\cookbook\templates\base.html:158 +#: .\cookbook\templates\base.html:168 msgid "GitHub" msgstr "GitHub" -#: .\cookbook\templates\base.html:162 +#: .\cookbook\templates\base.html:172 msgid "API Browser" msgstr "Explorador de API" -#: .\cookbook\templates\base.html:165 -msgid "Logout" -msgstr "Cerrar sesión" +#: .\cookbook\templates\base.html:175 +msgid "Log out" +msgstr "" #: .\cookbook\templates\batch\edit.html:6 msgid "Batch edit Category" @@ -585,7 +788,7 @@ msgstr "" "Agregue las palabras clave especificadas a todas las recetas que contengan " "una palabra" -#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:76 +#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:85 msgid "Sync" msgstr "Sincronizar" @@ -614,7 +817,7 @@ msgstr "¡Sincronizar ahora!" msgid "Importing Recipes" msgstr "Importando Recetas" -#: .\cookbook\templates\batch\waiting.html:23 +#: .\cookbook\templates\batch\waiting.html:28 msgid "" "This can take a few minutes, depending on the number of recipes in sync, " "please wait." @@ -653,26 +856,33 @@ msgid "Export Recipes" msgstr "Exportar recetas" #: .\cookbook\templates\export.html:14 .\cookbook\templates\export.html:20 -#: .\cookbook\templates\shopping_list.html:347 +#: .\cookbook\templates\shopping_list.html:351 #: .\cookbook\templates\test2.html:14 .\cookbook\templates\test2.html:20 msgid "Export" msgstr "Exportar" +#: .\cookbook\templates\files.html:7 +#, fuzzy +#| msgid "File ID" +msgid "Files" +msgstr "ID de Fichero" + #: .\cookbook\templates\forms\edit_import_recipe.html:5 #: .\cookbook\templates\forms\edit_import_recipe.html:9 msgid "Import new Recipe" msgstr "Importar nueva receta" #: .\cookbook\templates\forms\edit_import_recipe.html:14 -#: .\cookbook\templates\forms\edit_internal_recipe.html:389 -#: .\cookbook\templates\forms\edit_internal_recipe.html:421 +#: .\cookbook\templates\forms\edit_internal_recipe.html:416 +#: .\cookbook\templates\forms\edit_internal_recipe.html:448 #: .\cookbook\templates\generic\edit_template.html:23 #: .\cookbook\templates\generic\new_template.html:23 #: .\cookbook\templates\include\log_cooking.html:28 #: .\cookbook\templates\meal_plan.html:325 -#: .\cookbook\templates\settings.html:28 .\cookbook\templates\settings.html:35 -#: .\cookbook\templates\settings.html:58 .\cookbook\templates\settings.html:73 -#: .\cookbook\templates\shopping_list.html:349 +#: .\cookbook\templates\settings.html:44 .\cookbook\templates\settings.html:52 +#: .\cookbook\templates\settings.html:96 +#: .\cookbook\templates\settings.html:114 +#: .\cookbook\templates\shopping_list.html:353 msgid "Save" msgstr "Guardar" @@ -681,181 +891,190 @@ msgstr "Guardar" msgid "Edit Recipe" msgstr "Editar receta" -#: .\cookbook\templates\forms\edit_internal_recipe.html:52 +#: .\cookbook\templates\forms\edit_internal_recipe.html:56 +#: .\cookbook\templates\url_import.html:171 msgid "Description" msgstr "Descripción" -#: .\cookbook\templates\forms\edit_internal_recipe.html:72 +#: .\cookbook\templates\forms\edit_internal_recipe.html:76 msgid "Waiting Time" msgstr "Tiempo de espera" -#: .\cookbook\templates\forms\edit_internal_recipe.html:78 +#: .\cookbook\templates\forms\edit_internal_recipe.html:82 msgid "Servings Text" msgstr "Texto de raciones" -#: .\cookbook\templates\forms\edit_internal_recipe.html:89 +#: .\cookbook\templates\forms\edit_internal_recipe.html:93 msgid "Select Keywords" msgstr "Seleccionar palabras clave" -#: .\cookbook\templates\forms\edit_internal_recipe.html:90 -#: .\cookbook\templates\url_import.html:212 +#: .\cookbook\templates\forms\edit_internal_recipe.html:94 +#: .\cookbook\templates\url_import.html:583 #, fuzzy #| msgid "All Keywords" msgid "Add Keyword" msgstr "Todas las palabras clave." -#: .\cookbook\templates\forms\edit_internal_recipe.html:108 +#: .\cookbook\templates\forms\edit_internal_recipe.html:112 msgid "Nutrition" msgstr "Información Nutricional" -#: .\cookbook\templates\forms\edit_internal_recipe.html:112 -#: .\cookbook\templates\forms\edit_internal_recipe.html:162 +#: .\cookbook\templates\forms\edit_internal_recipe.html:116 +#: .\cookbook\templates\forms\edit_internal_recipe.html:166 msgid "Delete Step" msgstr "Eliminar paso" -#: .\cookbook\templates\forms\edit_internal_recipe.html:116 +#: .\cookbook\templates\forms\edit_internal_recipe.html:120 msgid "Calories" msgstr "Calorías" -#: .\cookbook\templates\forms\edit_internal_recipe.html:119 +#: .\cookbook\templates\forms\edit_internal_recipe.html:123 msgid "Carbohydrates" msgstr "Carbohidratos" -#: .\cookbook\templates\forms\edit_internal_recipe.html:122 +#: .\cookbook\templates\forms\edit_internal_recipe.html:126 msgid "Fats" msgstr "Grasas" -#: .\cookbook\templates\forms\edit_internal_recipe.html:124 +#: .\cookbook\templates\forms\edit_internal_recipe.html:128 msgid "Proteins" msgstr "Proteinas" -#: .\cookbook\templates\forms\edit_internal_recipe.html:146 -#: .\cookbook\templates\forms\edit_internal_recipe.html:454 +#: .\cookbook\templates\forms\edit_internal_recipe.html:150 +#: .\cookbook\templates\forms\edit_internal_recipe.html:481 msgid "Step" msgstr "Paso" -#: .\cookbook\templates\forms\edit_internal_recipe.html:167 +#: .\cookbook\templates\forms\edit_internal_recipe.html:171 msgid "Show as header" msgstr "Mostrar como encabezado" -#: .\cookbook\templates\forms\edit_internal_recipe.html:173 +#: .\cookbook\templates\forms\edit_internal_recipe.html:177 msgid "Hide as header" msgstr "Ocultar como encabezado" -#: .\cookbook\templates\forms\edit_internal_recipe.html:178 +#: .\cookbook\templates\forms\edit_internal_recipe.html:182 msgid "Move Up" msgstr "Mover Arriba" -#: .\cookbook\templates\forms\edit_internal_recipe.html:183 +#: .\cookbook\templates\forms\edit_internal_recipe.html:187 msgid "Move Down" msgstr "Mover Abajo" -#: .\cookbook\templates\forms\edit_internal_recipe.html:192 +#: .\cookbook\templates\forms\edit_internal_recipe.html:196 msgid "Step Name" msgstr "Nombre del paso" -#: .\cookbook\templates\forms\edit_internal_recipe.html:196 +#: .\cookbook\templates\forms\edit_internal_recipe.html:200 msgid "Step Type" msgstr "Tipo de paso" -#: .\cookbook\templates\forms\edit_internal_recipe.html:207 +#: .\cookbook\templates\forms\edit_internal_recipe.html:212 msgid "Step time in Minutes" msgstr "Tiempo de paso en minutos" -#: .\cookbook\templates\forms\edit_internal_recipe.html:261 -#: .\cookbook\templates\shopping_list.html:183 -msgid "Select Unit" -msgstr "Seleccionar unidad" +#: .\cookbook\templates\forms\edit_internal_recipe.html:228 +#, fuzzy +#| msgid "Select one" +msgid "Select File" +msgstr "Seleccione uno" -#: .\cookbook\templates\forms\edit_internal_recipe.html:262 -#: .\cookbook\templates\forms\edit_internal_recipe.html:286 -#: .\cookbook\templates\shopping_list.html:184 -#: .\cookbook\templates\shopping_list.html:206 -msgid "Create" -msgstr "Crear" - -#: .\cookbook\templates\forms\edit_internal_recipe.html:263 -#: .\cookbook\templates\forms\edit_internal_recipe.html:287 -#: .\cookbook\templates\shopping_list.html:185 -#: .\cookbook\templates\shopping_list.html:207 -#: .\cookbook\templates\shopping_list.html:237 -#: .\cookbook\templates\shopping_list.html:261 -#: .\cookbook\templates\url_import.html:124 -#: .\cookbook\templates\url_import.html:156 +#: .\cookbook\templates\forms\edit_internal_recipe.html:229 +#: .\cookbook\templates\forms\edit_internal_recipe.html:290 +#: .\cookbook\templates\forms\edit_internal_recipe.html:314 +#: .\cookbook\templates\shopping_list.html:189 +#: .\cookbook\templates\shopping_list.html:211 +#: .\cookbook\templates\shopping_list.html:241 +#: .\cookbook\templates\shopping_list.html:265 +#: .\cookbook\templates\url_import.html:495 +#: .\cookbook\templates\url_import.html:527 msgid "Select" msgstr "Seleccionar" -#: .\cookbook\templates\forms\edit_internal_recipe.html:285 -#: .\cookbook\templates\shopping_list.html:205 +#: .\cookbook\templates\forms\edit_internal_recipe.html:288 +#: .\cookbook\templates\shopping_list.html:187 +msgid "Select Unit" +msgstr "Seleccionar unidad" + +#: .\cookbook\templates\forms\edit_internal_recipe.html:289 +#: .\cookbook\templates\forms\edit_internal_recipe.html:313 +#: .\cookbook\templates\shopping_list.html:188 +#: .\cookbook\templates\shopping_list.html:210 +msgid "Create" +msgstr "Crear" + +#: .\cookbook\templates\forms\edit_internal_recipe.html:312 +#: .\cookbook\templates\shopping_list.html:209 msgid "Select Food" msgstr "Seleccionar Alimento" -#: .\cookbook\templates\forms\edit_internal_recipe.html:302 +#: .\cookbook\templates\forms\edit_internal_recipe.html:329 #: .\cookbook\templates\meal_plan.html:256 -#: .\cookbook\templates\url_import.html:171 +#: .\cookbook\templates\url_import.html:542 msgid "Note" msgstr "Nota" -#: .\cookbook\templates\forms\edit_internal_recipe.html:319 +#: .\cookbook\templates\forms\edit_internal_recipe.html:346 msgid "Delete Ingredient" msgstr "Eliminar ingrediente" -#: .\cookbook\templates\forms\edit_internal_recipe.html:325 +#: .\cookbook\templates\forms\edit_internal_recipe.html:352 msgid "Make Header" msgstr "Crear encabezado" -#: .\cookbook\templates\forms\edit_internal_recipe.html:331 +#: .\cookbook\templates\forms\edit_internal_recipe.html:358 msgid "Make Ingredient" msgstr "Crear ingrediente" -#: .\cookbook\templates\forms\edit_internal_recipe.html:337 +#: .\cookbook\templates\forms\edit_internal_recipe.html:364 msgid "Disable Amount" msgstr "Deshabilitar cantidad" -#: .\cookbook\templates\forms\edit_internal_recipe.html:343 +#: .\cookbook\templates\forms\edit_internal_recipe.html:370 msgid "Enable Amount" msgstr "Habilitar cantidad" -#: .\cookbook\templates\forms\edit_internal_recipe.html:348 +#: .\cookbook\templates\forms\edit_internal_recipe.html:375 msgid "Copy Template Reference" msgstr "Copiar Referencia de Plantilla" -#: .\cookbook\templates\forms\edit_internal_recipe.html:374 -#: .\cookbook\templates\url_import.html:196 +#: .\cookbook\templates\forms\edit_internal_recipe.html:401 +#: .\cookbook\templates\url_import.html:297 +#: .\cookbook\templates\url_import.html:567 msgid "Instructions" msgstr "Instrucciones" -#: .\cookbook\templates\forms\edit_internal_recipe.html:387 -#: .\cookbook\templates\forms\edit_internal_recipe.html:418 +#: .\cookbook\templates\forms\edit_internal_recipe.html:414 +#: .\cookbook\templates\forms\edit_internal_recipe.html:445 msgid "Save & View" msgstr "Guardar y ver" -#: .\cookbook\templates\forms\edit_internal_recipe.html:391 -#: .\cookbook\templates\forms\edit_internal_recipe.html:424 +#: .\cookbook\templates\forms\edit_internal_recipe.html:418 +#: .\cookbook\templates\forms\edit_internal_recipe.html:451 msgid "Add Step" msgstr "Agregar paso" -#: .\cookbook\templates\forms\edit_internal_recipe.html:394 -#: .\cookbook\templates\forms\edit_internal_recipe.html:428 +#: .\cookbook\templates\forms\edit_internal_recipe.html:421 +#: .\cookbook\templates\forms\edit_internal_recipe.html:455 msgid "Add Nutrition" msgstr "Añadir Información Nutricional" -#: .\cookbook\templates\forms\edit_internal_recipe.html:396 -#: .\cookbook\templates\forms\edit_internal_recipe.html:430 +#: .\cookbook\templates\forms\edit_internal_recipe.html:423 +#: .\cookbook\templates\forms\edit_internal_recipe.html:457 msgid "Remove Nutrition" msgstr "Eliminar Información Nutricional" -#: .\cookbook\templates\forms\edit_internal_recipe.html:398 -#: .\cookbook\templates\forms\edit_internal_recipe.html:433 +#: .\cookbook\templates\forms\edit_internal_recipe.html:425 +#: .\cookbook\templates\forms\edit_internal_recipe.html:460 msgid "View Recipe" msgstr "Ver la receta" -#: .\cookbook\templates\forms\edit_internal_recipe.html:400 -#: .\cookbook\templates\forms\edit_internal_recipe.html:435 +#: .\cookbook\templates\forms\edit_internal_recipe.html:427 +#: .\cookbook\templates\forms\edit_internal_recipe.html:462 msgid "Delete Recipe" msgstr "Eliminar receta" -#: .\cookbook\templates\forms\edit_internal_recipe.html:441 +#: .\cookbook\templates\forms\edit_internal_recipe.html:468 msgid "Steps" msgstr "Pasos" @@ -882,7 +1101,7 @@ msgstr "" " " #: .\cookbook\templates\forms\ingredients.html:24 -#: .\cookbook\templates\stats.html:26 +#: .\cookbook\templates\space.html:35 .\cookbook\templates\stats.html:26 msgid "Units" msgstr "Unidades" @@ -904,10 +1123,6 @@ msgstr "¿Estás seguro de que quieres combinar estos dos ingredientes?" msgid "Are you sure you want to delete the %(title)s: %(object)s " msgstr "¿Estás seguro de que quieres borrar el %(title)s: %(object)s?" -#: .\cookbook\templates\generic\delete_template.html:21 -msgid "Confirm" -msgstr "Confirmar" - #: .\cookbook\templates\generic\edit_template.html:30 msgid "View" msgstr "Ver" @@ -929,12 +1144,6 @@ msgstr "Filtro" msgid "Import all" msgstr "Importar todo" -#: .\cookbook\templates\generic\new_template.html:6 -#: .\cookbook\templates\generic\new_template.html:14 -#: .\cookbook\templates\meal_plan.html:323 -msgid "New" -msgstr "Nuevo" - #: .\cookbook\templates\generic\table_template.html:76 #: .\cookbook\templates\recipes_table.html:121 msgid "previous" @@ -979,7 +1188,7 @@ msgstr "Cerrar" #: .\cookbook\templates\include\recipe_open_modal.html:7 #: .\cookbook\templates\meal_plan.html:247 .\cookbook\views\delete.py:28 -#: .\cookbook\views\edit.py:264 .\cookbook\views\new.py:40 +#: .\cookbook\views\edit.py:273 .\cookbook\views\new.py:52 msgid "Recipe" msgstr "Receta" @@ -1021,10 +1230,6 @@ msgstr "Buscar receta ..." msgid "New Recipe" msgstr "Nueva receta" -#: .\cookbook\templates\index.html:47 -msgid "Website Import" -msgstr "Importación de sitios web" - #: .\cookbook\templates\index.html:53 msgid "Advanced Search" msgstr "Búsqueda Avanzada" @@ -1038,7 +1243,7 @@ msgid "Last viewed" msgstr "Visto por última vez" #: .\cookbook\templates\index.html:87 .\cookbook\templates\meal_plan.html:178 -#: .\cookbook\templates\stats.html:22 +#: .\cookbook\templates\space.html:29 .\cookbook\templates\stats.html:22 msgid "Recipes" msgstr "Recetas" @@ -1204,7 +1409,7 @@ msgid "New Entry" msgstr "Nueva entrada" #: .\cookbook\templates\meal_plan.html:113 -#: .\cookbook\templates\shopping_list.html:52 +#: .\cookbook\templates\shopping_list.html:56 msgid "Search Recipe" msgstr "Buscar Receta" @@ -1237,7 +1442,7 @@ msgstr "Crear sólo una nota" #: .\cookbook\templates\meal_plan.html:168 #: .\cookbook\templates\shopping_list.html:7 #: .\cookbook\templates\shopping_list.html:29 -#: .\cookbook\templates\shopping_list.html:705 +#: .\cookbook\templates\shopping_list.html:714 msgid "Shopping List" msgstr "Lista de la Compra" @@ -1289,7 +1494,7 @@ msgstr "Creado por" #: .\cookbook\templates\meal_plan.html:270 #: .\cookbook\templates\meal_plan_entry.html:20 -#: .\cookbook\templates\shopping_list.html:250 +#: .\cookbook\templates\shopping_list.html:254 msgid "Shared with" msgstr "Compartido con" @@ -1402,7 +1607,6 @@ msgstr "" #: .\cookbook\templates\no_groups_info.html:18 #: .\cookbook\templates\no_perm_info.html:15 -#: .\cookbook\templates\no_space_info.html:15 msgid "Please contact your administrator." msgstr "" @@ -1421,13 +1625,50 @@ msgid "" "action." msgstr "¡No tienes los permisos necesarios para realizar esta acción!" -#: .\cookbook\templates\no_space_info.html:5 -#: .\cookbook\templates\no_space_info.html:12 +#: .\cookbook\templates\no_space_info.html:6 +#: .\cookbook\templates\no_space_info.html:13 msgid "No Space" msgstr "" -#: .\cookbook\templates\no_space_info.html:15 -msgid "You are not a member of any space." +#: .\cookbook\templates\no_space_info.html:17 +msgid "" +"Recipes, foods, shopping lists and more are organized in spaces of one or " +"more people." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:18 +msgid "" +"You can either be invited into an existing space or create your own one." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:31 +#: .\cookbook\templates\no_space_info.html:40 +msgid "Join Space" +msgstr "" + +#: .\cookbook\templates\no_space_info.html:34 +msgid "Join an existing space." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:35 +msgid "" +"To join an existing space either enter your invite token or click on the " +"invite link the space owner send you." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:48 +#: .\cookbook\templates\no_space_info.html:56 +#, fuzzy +#| msgid "Create User" +msgid "Create Space" +msgstr "Crear Usuario" + +#: .\cookbook\templates\no_space_info.html:51 +msgid "Create your own recipe space." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:52 +msgid "Start your own recipe space and invite other users to it." msgstr "" #: .\cookbook\templates\offline.html:6 @@ -1447,28 +1688,29 @@ msgstr "" "porque las has visto recientemente. Ten en cuenta que los datos pueden estar " "desactualizados." -#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\stats.html:47 +#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\space.html:56 +#: .\cookbook\templates\stats.html:47 msgid "Comments" msgstr "Comentarios" #: .\cookbook\templates\recipe_view.html:44 .\cookbook\views\delete.py:118 -#: .\cookbook\views\edit.py:170 +#: .\cookbook\views\edit.py:179 msgid "Comment" msgstr "Comentario" #: .\cookbook\templates\recipes_table.html:19 #: .\cookbook\templates\recipes_table.html:23 -#: .\cookbook\templates\url_import.html:69 +#: .\cookbook\templates\url_import.html:440 msgid "Recipe Image" msgstr "Imagen de la receta" #: .\cookbook\templates\recipes_table.html:51 -#: .\cookbook\templates\url_import.html:74 +#: .\cookbook\templates\url_import.html:445 msgid "Preparation time ca." msgstr "Tiempo de preparación ca." #: .\cookbook\templates\recipes_table.html:57 -#: .\cookbook\templates\url_import.html:79 +#: .\cookbook\templates\url_import.html:450 msgid "Waiting time ca." msgstr "Tiempo de espera ca." @@ -1484,27 +1726,67 @@ msgstr "Registrar receta cocinada" msgid "Recipe Home" msgstr "Página de inicio" -#: .\cookbook\templates\settings.html:22 +#: .\cookbook\templates\settings.html:23 msgid "Account" msgstr "Cuenta" -#: .\cookbook\templates\settings.html:38 -msgid "Link social account" +#: .\cookbook\templates\settings.html:27 +msgid "Preferences" +msgstr "" + +#: .\cookbook\templates\settings.html:31 +#, fuzzy +#| msgid "Settings" +msgid "API-Settings" +msgstr "Opciones" + +#: .\cookbook\templates\settings.html:39 +#, fuzzy +#| msgid "Settings" +msgid "Name Settings" +msgstr "Opciones" + +#: .\cookbook\templates\settings.html:47 +#, fuzzy +#| msgid "Password Reset" +msgid "Password Settings" +msgstr "Restablecer contraseña" + +#: .\cookbook\templates\settings.html:55 +#, fuzzy +#| msgid "Settings" +msgid "Email Settings" +msgstr "Opciones" + +#: .\cookbook\templates\settings.html:57 +msgid "Manage Email Settings" +msgstr "" + +#: .\cookbook\templates\settings.html:61 +#, fuzzy +#| msgid "Social Login" +msgid "Social" +msgstr "Inicio de sesión social" + +#: .\cookbook\templates\settings.html:63 +#, fuzzy +#| msgid "Link social account" +msgid "Manage Social Accounts" msgstr "Enlazar cuenta social" -#: .\cookbook\templates\settings.html:42 +#: .\cookbook\templates\settings.html:75 msgid "Language" msgstr "Idioma" -#: .\cookbook\templates\settings.html:67 +#: .\cookbook\templates\settings.html:105 msgid "Style" msgstr "Estilo" -#: .\cookbook\templates\settings.html:79 +#: .\cookbook\templates\settings.html:125 msgid "API Token" msgstr "Token API" -#: .\cookbook\templates\settings.html:80 +#: .\cookbook\templates\settings.html:126 msgid "" "You can use both basic authentication and token based authentication to " "access the REST API." @@ -1512,7 +1794,7 @@ msgstr "" "Puedes utilizar tanto la autenticación básica como la autenticación basada " "en tokens para acceder a la API REST." -#: .\cookbook\templates\settings.html:92 +#: .\cookbook\templates\settings.html:143 msgid "" "Use the token as an Authorization header prefixed by the word token as shown " "in the following examples:" @@ -1520,7 +1802,7 @@ msgstr "" "Utilice el token como cabecera de autorización usando como prefijo la " "palabra token, tal y como se muestra en los siguientes ejemplos:" -#: .\cookbook\templates\settings.html:94 +#: .\cookbook\templates\settings.html:145 msgid "or" msgstr "o" @@ -1543,58 +1825,55 @@ msgstr "" msgid "Create Superuser account" msgstr "Crear cuenta de Superusuario" -#: .\cookbook\templates\shopping_list.html:75 +#: .\cookbook\templates\shopping_list.html:79 msgid "Shopping Recipes" msgstr "Recetas en el carro de la compra" -#: .\cookbook\templates\shopping_list.html:79 +#: .\cookbook\templates\shopping_list.html:83 msgid "No recipes selected" msgstr "No hay recetas seleccionadas" -#: .\cookbook\templates\shopping_list.html:146 +#: .\cookbook\templates\shopping_list.html:150 msgid "Entry Mode" msgstr "Modo de entrada" -#: .\cookbook\templates\shopping_list.html:154 +#: .\cookbook\templates\shopping_list.html:158 msgid "Add Entry" msgstr "Añadir entrada" -#: .\cookbook\templates\shopping_list.html:170 +#: .\cookbook\templates\shopping_list.html:174 msgid "Amount" msgstr "Cantidad" -#: .\cookbook\templates\shopping_list.html:226 +#: .\cookbook\templates\shopping_list.html:230 +#: .\cookbook\templates\supermarket.html:7 msgid "Supermarket" msgstr "Supermercado" -#: .\cookbook\templates\shopping_list.html:236 +#: .\cookbook\templates\shopping_list.html:240 msgid "Select Supermarket" msgstr "Seleccionar supermercado" -#: .\cookbook\templates\shopping_list.html:260 +#: .\cookbook\templates\shopping_list.html:264 msgid "Select User" msgstr "Seleccionar Usuario" -#: .\cookbook\templates\shopping_list.html:279 +#: .\cookbook\templates\shopping_list.html:283 msgid "Finished" msgstr "Completada" -#: .\cookbook\templates\shopping_list.html:292 +#: .\cookbook\templates\shopping_list.html:296 msgid "You are offline, shopping list might not syncronize." msgstr "Estás desconectado, la lista de la compra no se sincronizará." -#: .\cookbook\templates\shopping_list.html:357 +#: .\cookbook\templates\shopping_list.html:361 msgid "Copy/Export" msgstr "Copiar/Exportar" -#: .\cookbook\templates\shopping_list.html:361 +#: .\cookbook\templates\shopping_list.html:365 msgid "List Prefix" msgstr "Prefijo de la lista" -#: .\cookbook\templates\shopping_list.html:708 -msgid "There was an error creating a resource!" -msgstr "¡Hubo un error al crear un recurso!" - #: .\cookbook\templates\socialaccount\connections.html:4 #: .\cookbook\templates\socialaccount\connections.html:7 msgid "Account Connections" @@ -1608,10 +1887,6 @@ msgstr "" "Puedes entrar en tu cuenta usando cualquiera de las siguientes cuentas de " "terceros:" -#: .\cookbook\templates\socialaccount\connections.html:36 -msgid "Remove" -msgstr "Eliminar" - #: .\cookbook\templates\socialaccount\connections.html:44 msgid "" "You currently have no social network accounts connected to this account." @@ -1621,38 +1896,99 @@ msgstr "Actualmente no tienes una cuenta social conectada a esta cuenta." msgid "Add a 3rd Party Account" msgstr "Añadir una cuenta de terceros" -#: .\cookbook\templates\stats.html:4 -msgid "Stats" -msgstr "Estadísticas" +#: .\cookbook\templates\space.html:18 +#, fuzzy +#| msgid "Description" +msgid "Manage Subscription" +msgstr "Descripción" -#: .\cookbook\templates\stats.html:19 +#: .\cookbook\templates\space.html:26 .\cookbook\templates\stats.html:19 msgid "Number of objects" msgstr "Número de objetos" -#: .\cookbook\templates\stats.html:30 +#: .\cookbook\templates\space.html:39 .\cookbook\templates\stats.html:30 msgid "Recipe Imports" msgstr "Recetas importadas" -#: .\cookbook\templates\stats.html:38 +#: .\cookbook\templates\space.html:47 .\cookbook\templates\stats.html:38 msgid "Objects stats" msgstr "Estadísticas de objetos" -#: .\cookbook\templates\stats.html:41 +#: .\cookbook\templates\space.html:50 .\cookbook\templates\stats.html:41 msgid "Recipes without Keywords" msgstr "Recetas sin palabras clave" -#: .\cookbook\templates\stats.html:43 +#: .\cookbook\templates\space.html:52 .\cookbook\templates\stats.html:43 msgid "External Recipes" msgstr "Recetas Externas" -#: .\cookbook\templates\stats.html:45 +#: .\cookbook\templates\space.html:54 .\cookbook\templates\stats.html:45 msgid "Internal Recipes" msgstr "Recetas Internas" -#: .\cookbook\templates\system.html:21 .\cookbook\views\lists.py:115 +#: .\cookbook\templates\space.html:67 +msgid "Members" +msgstr "" + +#: .\cookbook\templates\space.html:71 +#, fuzzy +#| msgid "Invite Links" +msgid "Invite User" +msgstr "Enlaces de Invitación" + +#: .\cookbook\templates\space.html:82 +msgid "User" +msgstr "" + +#: .\cookbook\templates\space.html:83 +msgid "Groups" +msgstr "" + +#: .\cookbook\templates\space.html:99 +#, fuzzy +#| msgid "Admin" +msgid "admin" +msgstr "Administrador" + +#: .\cookbook\templates\space.html:100 +msgid "user" +msgstr "" + +#: .\cookbook\templates\space.html:101 +msgid "guest" +msgstr "" + +#: .\cookbook\templates\space.html:102 +#, fuzzy +#| msgid "Remove" +msgid "remove" +msgstr "Eliminar" + +#: .\cookbook\templates\space.html:106 +msgid "Update" +msgstr "" + +#: .\cookbook\templates\space.html:110 +#, fuzzy +#| msgid "You cannot edit this storage!" +msgid "You cannot edit yourself." +msgstr "¡No puede editar este almacenamiento!" + +#: .\cookbook\templates\space.html:117 +#, fuzzy +#| msgid "There are no recipes in this book yet." +msgid "There are no members in your space yet!" +msgstr "Todavía no hay recetas en este libro." + +#: .\cookbook\templates\space.html:124 .\cookbook\templates\system.html:21 +#: .\cookbook\views\lists.py:115 msgid "Invite Links" msgstr "Enlaces de Invitación" +#: .\cookbook\templates\stats.html:4 +msgid "Stats" +msgstr "Estadísticas" + #: .\cookbook\templates\system.html:22 msgid "Show Links" msgstr "Mostrar Enlaces" @@ -1785,47 +2121,159 @@ msgstr "" " características sólo funcionan con bases de datos Postgres.\n" " " -#: .\cookbook\templates\url_import.html:5 +#: .\cookbook\templates\url_import.html:6 msgid "URL Import" msgstr "Importar URL" -#: .\cookbook\templates\url_import.html:23 +#: .\cookbook\templates\url_import.html:31 +msgid "Drag me to your bookmarks to import recipes from anywhere" +msgstr "" + +#: .\cookbook\templates\url_import.html:32 +#, fuzzy +#| msgid "Bookmark saved!" +msgid "Bookmark Me!" +msgstr "¡Marcador guardado!" + +#: .\cookbook\templates\url_import.html:61 msgid "Enter website URL" msgstr "Introduce la URL del sitio web" -#: .\cookbook\templates\url_import.html:36 -msgid "Enter json directly" +#: .\cookbook\templates\url_import.html:97 +msgid "Select recipe files to import or drop them here..." msgstr "" -#: .\cookbook\templates\url_import.html:57 +#: .\cookbook\templates\url_import.html:118 +msgid "Paste json or html source here to load recipe." +msgstr "" + +#: .\cookbook\templates\url_import.html:146 +#, fuzzy +#| msgid "View Recipe" +msgid "Preview Recipe Data" +msgstr "Ver la receta" + +#: .\cookbook\templates\url_import.html:147 +msgid "Drag recipe attributes from the right into the appropriate box below." +msgstr "" + +#: .\cookbook\templates\url_import.html:156 +#: .\cookbook\templates\url_import.html:173 +#: .\cookbook\templates\url_import.html:190 +#: .\cookbook\templates\url_import.html:209 +#: .\cookbook\templates\url_import.html:227 +#: .\cookbook\templates\url_import.html:242 +#: .\cookbook\templates\url_import.html:257 +#: .\cookbook\templates\url_import.html:273 +#: .\cookbook\templates\url_import.html:300 +#: .\cookbook\templates\url_import.html:351 +msgid "Clear Contents" +msgstr "" + +#: .\cookbook\templates\url_import.html:158 +msgid "Text dragged here will be appended to the name." +msgstr "" + +#: .\cookbook\templates\url_import.html:175 +msgid "Text dragged here will be appended to the description." +msgstr "" + +#: .\cookbook\templates\url_import.html:192 +msgid "Keywords dragged here will be appended to current list" +msgstr "" + +#: .\cookbook\templates\url_import.html:207 +msgid "Image" +msgstr "" + +#: .\cookbook\templates\url_import.html:239 +#, fuzzy +#| msgid "Preparation Time" +msgid "Prep Time" +msgstr "Tiempo de Preparación" + +#: .\cookbook\templates\url_import.html:254 +#, fuzzy +#| msgid "Time" +msgid "Cook Time" +msgstr "Tiempo" + +#: .\cookbook\templates\url_import.html:275 +msgid "Ingredients dragged here will be appended to current list." +msgstr "" + +#: .\cookbook\templates\url_import.html:302 +msgid "" +"Recipe instructions dragged here will be appended to current instructions." +msgstr "" + +#: .\cookbook\templates\url_import.html:325 +#, fuzzy +#| msgid "Discovered Recipes" +msgid "Discovered Attributes" +msgstr "Recetas Descubiertas" + +#: .\cookbook\templates\url_import.html:327 +msgid "" +"Drag recipe attributes from below into the appropriate box on the left. " +"Click any node to display its full properties." +msgstr "" + +#: .\cookbook\templates\url_import.html:344 +#, fuzzy +#| msgid "Show as header" +msgid "Show Blank Field" +msgstr "Mostrar como encabezado" + +#: .\cookbook\templates\url_import.html:349 +msgid "Blank Field" +msgstr "" + +#: .\cookbook\templates\url_import.html:353 +msgid "Items dragged to Blank Field will be appended." +msgstr "" + +#: .\cookbook\templates\url_import.html:400 +#, fuzzy +#| msgid "Delete Step" +msgid "Delete Text" +msgstr "Eliminar paso" + +#: .\cookbook\templates\url_import.html:413 +#, fuzzy +#| msgid "Delete Recipe" +msgid "Delete image" +msgstr "Eliminar receta" + +#: .\cookbook\templates\url_import.html:429 msgid "Recipe Name" msgstr "Nombre de la Receta" -#: .\cookbook\templates\url_import.html:62 +#: .\cookbook\templates\url_import.html:433 #, fuzzy #| msgid "Description" msgid "Recipe Description" msgstr "Descripción" -#: .\cookbook\templates\url_import.html:123 -#: .\cookbook\templates\url_import.html:155 -#: .\cookbook\templates\url_import.html:211 +#: .\cookbook\templates\url_import.html:494 +#: .\cookbook\templates\url_import.html:526 +#: .\cookbook\templates\url_import.html:582 msgid "Select one" msgstr "Seleccione uno" -#: .\cookbook\templates\url_import.html:225 +#: .\cookbook\templates\url_import.html:596 msgid "All Keywords" msgstr "Todas las palabras clave." -#: .\cookbook\templates\url_import.html:228 +#: .\cookbook\templates\url_import.html:599 msgid "Import all keywords, not only the ones already existing." msgstr "Importar todas las palabras clave, no solo las ya existentes." -#: .\cookbook\templates\url_import.html:255 +#: .\cookbook\templates\url_import.html:626 msgid "Information" msgstr "Información" -#: .\cookbook\templates\url_import.html:257 +#: .\cookbook\templates\url_import.html:628 msgid "" " Only websites containing ld+json or microdata information can currently\n" " be imported. Most big recipe pages " @@ -1844,52 +2292,81 @@ msgstr "" "no dudes en poner un ejemplo en las\n" " propuestas de GitHub." -#: .\cookbook\templates\url_import.html:265 +#: .\cookbook\templates\url_import.html:636 msgid "Google ld+json Info" msgstr "Información de Google ld+json" -#: .\cookbook\templates\url_import.html:268 +#: .\cookbook\templates\url_import.html:639 msgid "GitHub Issues" msgstr "Propuestas de GitHub" -#: .\cookbook\templates\url_import.html:270 +#: .\cookbook\templates\url_import.html:641 msgid "Recipe Markup Specification" msgstr "Especificación de anotaciones de la receta" -#: .\cookbook\views\api.py:71 +#: .\cookbook\views\api.py:77 #, fuzzy #| msgid "Parameter filter_list incorrectly formatted" msgid "Parameter updated_at incorrectly formatted" msgstr "Parámetro filter_list formateado incorrectamente" -#: .\cookbook\views\api.py:455 .\cookbook\views\views.py:226 +#: .\cookbook\views\api.py:553 .\cookbook\views\views.py:295 msgid "This feature is not available in the demo version!" msgstr "¡Esta funcionalidad no está disponible en la versión demo!" -#: .\cookbook\views\api.py:478 +#: .\cookbook\views\api.py:576 msgid "Sync successful!" msgstr "¡Sincronización exitosa!" -#: .\cookbook\views\api.py:483 +#: .\cookbook\views\api.py:581 msgid "Error synchronizing with Storage" msgstr "Error de sincronización con el almacenamiento" -#: .\cookbook\views\api.py:556 .\cookbook\views\api.py:576 +#: .\cookbook\views\api.py:649 +msgid "Nothing to do." +msgstr "" + +#: .\cookbook\views\api.py:664 +msgid "The requested site provided malformed data and cannot be read." +msgstr "" +"El sitio solicitado proporcionó datos con formato incorrecto y no se puede " +"leer." + +#: .\cookbook\views\api.py:671 msgid "The requested page could not be found." msgstr "La página solicitada no pudo ser encontrada." -#: .\cookbook\views\api.py:585 +#: .\cookbook\views\api.py:680 msgid "" -"The requested page refused to provide any information (Status Code 403)." +"The requested site does not provide any recognized data format to import the " +"recipe from." msgstr "" -"La página solicitada se negó a proporcionar información (Código de estado " -"403)." +"El sitio solicitado no proporciona ningún formato de datos reconocido para " +"importar la receta." -#: .\cookbook\views\api.py:611 -msgid "Could not parse correctly..." +#: .\cookbook\views\api.py:694 +#, fuzzy +#| msgid "The requested page could not be found." +msgid "No useable data could be found." +msgstr "La página solicitada no pudo ser encontrada." + +#: .\cookbook\views\api.py:710 +msgid "I couldn't find anything to do." msgstr "" -#: .\cookbook\views\data.py:94 +#: .\cookbook\views\data.py:30 .\cookbook\views\data.py:121 +#: .\cookbook\views\edit.py:50 .\cookbook\views\import_export.py:67 +#: .\cookbook\views\new.py:32 +msgid "You have reached the maximum number of recipes for your space." +msgstr "" + +#: .\cookbook\views\data.py:34 .\cookbook\views\data.py:125 +#: .\cookbook\views\edit.py:54 .\cookbook\views\import_export.py:71 +#: .\cookbook\views\new.py:36 +msgid "You have more users than allowed in your space." +msgstr "" + +#: .\cookbook\views\data.py:103 #, python-format msgid "Batch edit done. %(count)d recipe was updated." msgid_plural "Batch edit done. %(count)d Recipes where updated." @@ -1901,7 +2378,7 @@ msgid "Monitor" msgstr "Monitor" #: .\cookbook\views\delete.py:96 .\cookbook\views\lists.py:102 -#: .\cookbook\views\new.py:86 +#: .\cookbook\views\new.py:98 msgid "Storage Backend" msgstr "Backend de Almacenamiento" @@ -1912,8 +2389,8 @@ msgstr "" "No se pudo borrar este backend de almacenamiento ya que se utiliza en al " "menos un monitor." -#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:204 -#: .\cookbook\views\new.py:144 +#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:213 +#: .\cookbook\views\new.py:156 msgid "Recipe Book" msgstr "Libro de recetas" @@ -1921,55 +2398,55 @@ msgstr "Libro de recetas" msgid "Bookmarks" msgstr "Marcadores" -#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:214 +#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:252 msgid "Invite Link" msgstr "Enlace de invitación" -#: .\cookbook\views\edit.py:110 +#: .\cookbook\views\edit.py:119 msgid "Food" msgstr "Comida" -#: .\cookbook\views\edit.py:119 +#: .\cookbook\views\edit.py:128 msgid "You cannot edit this storage!" msgstr "¡No puede editar este almacenamiento!" -#: .\cookbook\views\edit.py:139 +#: .\cookbook\views\edit.py:148 msgid "Storage saved!" msgstr "¡Almacenamiento guardado!" -#: .\cookbook\views\edit.py:145 +#: .\cookbook\views\edit.py:154 msgid "There was an error updating this storage backend!" msgstr "¡Hubo un error al actualizar este backend de almacenamiento!" -#: .\cookbook\views\edit.py:156 +#: .\cookbook\views\edit.py:165 msgid "Storage" msgstr "Almacenamiento" -#: .\cookbook\views\edit.py:252 +#: .\cookbook\views\edit.py:261 msgid "Changes saved!" msgstr "¡Cambios guardados!" -#: .\cookbook\views\edit.py:256 +#: .\cookbook\views\edit.py:265 msgid "Error saving changes!" msgstr "¡Error al guardar los cambios!" -#: .\cookbook\views\edit.py:289 +#: .\cookbook\views\edit.py:299 msgid "Units merged!" msgstr "¡Unidades fusionadas!" -#: .\cookbook\views\edit.py:291 .\cookbook\views\edit.py:307 +#: .\cookbook\views\edit.py:301 .\cookbook\views\edit.py:317 msgid "Cannot merge with the same object!" msgstr "¡No se puede unir con el mismo objeto!" -#: .\cookbook\views\edit.py:305 +#: .\cookbook\views\edit.py:315 msgid "Foods merged!" msgstr "¡Alimentos fusionados!" -#: .\cookbook\views\import_export.py:73 +#: .\cookbook\views\import_export.py:93 msgid "Importing is not implemented for this provider" msgstr "La importación no está implementada para este proveedor" -#: .\cookbook\views\import_export.py:92 +#: .\cookbook\views\import_export.py:115 msgid "Exporting is not implemented for this provider" msgstr "La exportación no está implementada para este proveedor" @@ -1985,23 +2462,77 @@ msgstr "Descubrimiento" msgid "Shopping Lists" msgstr "Listas de la compra" -#: .\cookbook\views\new.py:111 +#: .\cookbook\views\new.py:123 msgid "Imported new recipe!" msgstr "¡Nueva receta importada!" -#: .\cookbook\views\new.py:114 +#: .\cookbook\views\new.py:126 msgid "There was an error importing this recipe!" msgstr "¡Hubo un error al importar esta receta!" -#: .\cookbook\views\views.py:123 +#: .\cookbook\views\new.py:226 +msgid "Hello" +msgstr "" + +#: .\cookbook\views\new.py:226 +msgid "You have been invited by " +msgstr "" + +#: .\cookbook\views\new.py:227 +msgid " to join their Tandoor Recipes space " +msgstr "" + +#: .\cookbook\views\new.py:228 +msgid "Click the following link to activate your account: " +msgstr "" + +#: .\cookbook\views\new.py:229 +msgid "" +"If the link does not work use the following code to manually join the space: " +msgstr "" + +#: .\cookbook\views\new.py:230 +msgid "The invitation is valid until " +msgstr "" + +#: .\cookbook\views\new.py:231 +msgid "" +"Tandoor Recipes is an Open Source recipe manager. Check it out on GitHub " +msgstr "" + +#: .\cookbook\views\new.py:234 +msgid "Tandoor Recipes Invite" +msgstr "" + +#: .\cookbook\views\new.py:241 +msgid "Invite link successfully send to user." +msgstr "" + +#: .\cookbook\views\new.py:244 +msgid "" +"You have send to many emails, please share the link manually or wait a few " +"hours." +msgstr "" + +#: .\cookbook\views\new.py:246 +msgid "Email to user could not be send, please share link manually." +msgstr "" + +#: .\cookbook\views\views.py:125 +msgid "" +"You have successfully created your own recipe space. Start by adding some " +"recipes or invite other people to join you." +msgstr "" + +#: .\cookbook\views\views.py:173 msgid "You do not have the required permissions to perform this action!" msgstr "¡No tienes los permisos necesarios para realizar esta acción!" -#: .\cookbook\views\views.py:134 +#: .\cookbook\views\views.py:184 msgid "Comment saved!" msgstr "¡Comentario guardado!" -#: .\cookbook\views\views.py:326 +#: .\cookbook\views\views.py:396 msgid "" "The setup page can only be used to create the first user! If you have " "forgotten your superuser credentials please consult the django documentation " @@ -2011,22 +2542,59 @@ msgstr "" "usuario. Si has olvidado tus credenciales de superusuario, por favor " "consulta la documentación de django sobre cómo restablecer las contraseñas." -#: .\cookbook\views\views.py:333 .\cookbook\views\views.py:378 +#: .\cookbook\views\views.py:403 msgid "Passwords dont match!" msgstr "¡Las contraseñas no coinciden!" -#: .\cookbook\views\views.py:349 .\cookbook\views\views.py:385 +#: .\cookbook\views\views.py:419 msgid "User has been created, please login!" msgstr "El usuario ha sido creado, ¡inicie sesión!" -#: .\cookbook\views\views.py:365 +#: .\cookbook\views\views.py:435 msgid "Malformed Invite Link supplied!" msgstr "¡Se proporcionó un enlace de invitación con formato incorrecto!" -#: .\cookbook\views\views.py:405 +#: .\cookbook\views\views.py:441 +#, fuzzy +#| msgid "You are not logged in and therefore cannot view this page!" +msgid "You are already member of a space and therefore cannot join this one." +msgstr "¡No ha iniciado sesión y por lo tanto no puede ver esta página!" + +#: .\cookbook\views\views.py:452 +msgid "Successfully joined space." +msgstr "" + +#: .\cookbook\views\views.py:458 msgid "Invite Link not valid or already used!" msgstr "¡El enlace de invitación no es válido o ya se ha utilizado!" +#~ msgid "" +#~ "A username is not required, if left blank the new user can choose one." +#~ msgstr "" +#~ "No se requiere un nombre de usuario, si se deja en blanco, el nuevo " +#~ "usuario puede elegir uno." + +#~ msgid "Imported from" +#~ msgstr "Importado de" + +#~ msgid "Link" +#~ msgstr "Enlace" + +#~ msgid "Logout" +#~ msgstr "Cerrar sesión" + +#~ msgid "Website Import" +#~ msgstr "Importación de sitios web" + +#~ msgid "There was an error creating a resource!" +#~ msgstr "¡Hubo un error al crear un recurso!" + +#~ msgid "" +#~ "The requested page refused to provide any information (Status Code 403)." +#~ msgstr "" +#~ "La página solicitada se negó a proporcionar información (Código de estado " +#~ "403)." + #~ msgid "Number of servings" #~ msgstr "Número de raciones" @@ -2048,6 +2616,3 @@ msgstr "¡El enlace de invitación no es válido o ya se ha utilizado!" #~ msgid "This recipe is already linked to the book!" #~ msgstr "¡Esta receta ya está enlazada al libro!" - -#~ msgid "Bookmark saved!" -#~ msgstr "¡Marcador guardado!" diff --git a/cookbook/locale/fr/LC_MESSAGES/django.po b/cookbook/locale/fr/LC_MESSAGES/django.po index 0fc1e12f..2bea1ebe 100644 --- a/cookbook/locale/fr/LC_MESSAGES/django.po +++ b/cookbook/locale/fr/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-04-11 15:09+0200\n" +"POT-Creation-Date: 2021-06-12 20:30+0200\n" "PO-Revision-Date: 2020-06-02 19:28+0000\n" "Last-Translator: Grégoire Menuel , 2021\n" "Language-Team: French (https://www.transifex.com/django-recipes/teams/110507/" @@ -25,14 +25,15 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: .\cookbook\filters.py:23 .\cookbook\templates\base.html:91 -#: .\cookbook\templates\forms\edit_internal_recipe.html:219 +#: .\cookbook\filters.py:23 .\cookbook\templates\base.html:98 +#: .\cookbook\templates\forms\edit_internal_recipe.html:246 #: .\cookbook\templates\forms\ingredients.html:34 -#: .\cookbook\templates\stats.html:28 .\cookbook\views\lists.py:67 +#: .\cookbook\templates\space.html:37 .\cookbook\templates\stats.html:28 +#: .\cookbook\templates\url_import.html:270 .\cookbook\views\lists.py:67 msgid "Ingredients" msgstr "Ingrédients" -#: .\cookbook\forms.py:45 +#: .\cookbook\forms.py:49 msgid "" "Color of the top navigation bar. Not all colors work with all themes, just " "try them out!" @@ -40,13 +41,13 @@ msgstr "" "La couleur de la barre de navigation du haut. Toutes les couleurs ne " "marchent pas avec tous les thèmes, essayez-les !" -#: .\cookbook\forms.py:46 +#: .\cookbook\forms.py:51 msgid "Default Unit to be used when inserting a new ingredient into a recipe." msgstr "" "L'unité par défaut utilisée lors de l'ajout d'un nouvel ingrédient dans une " "recette." -#: .\cookbook\forms.py:47 +#: .\cookbook\forms.py:53 msgid "" "Enables support for fractions in ingredient amounts (e.g. convert decimals " "to fractions automatically)" @@ -54,7 +55,7 @@ msgstr "" "Autorise l'usage des fractions dans les quantités des ingrédients (convertit " "les décimales en fractions automatiquement)" -#: .\cookbook\forms.py:48 +#: .\cookbook\forms.py:56 msgid "" "Users with whom newly created meal plan/shopping list entries should be " "shared by default." @@ -62,21 +63,21 @@ msgstr "" "Utilisateurs avec lesquels les listes de courses et plans de repas " "nouvellement créés seront partagés par défaut." -#: .\cookbook\forms.py:49 +#: .\cookbook\forms.py:58 msgid "Show recently viewed recipes on search page." msgstr "Afficher les recettes récemment consultées sur la page de recherche." -#: .\cookbook\forms.py:50 +#: .\cookbook\forms.py:59 msgid "Number of decimals to round ingredients." msgstr "Nombre de décimales pour arrondir les ingrédients." -#: .\cookbook\forms.py:51 +#: .\cookbook\forms.py:60 msgid "If you want to be able to create and see comments underneath recipes." msgstr "" "Si vous souhaitez pouvoir créer et consulter des commentaires en-dessous des " "recettes." -#: .\cookbook\forms.py:53 +#: .\cookbook\forms.py:62 msgid "" "Setting to 0 will disable auto sync. When viewing a shopping list the list " "is updated every set seconds to sync changes someone else might have made. " @@ -90,11 +91,11 @@ msgstr "" "données mobiles. Si la valeur est plus petite que les limites de l'instance, " "le paramètre sera réinitialisé." -#: .\cookbook\forms.py:56 +#: .\cookbook\forms.py:65 msgid "Makes the navbar stick to the top of the page." msgstr "" -#: .\cookbook\forms.py:72 +#: .\cookbook\forms.py:81 msgid "" "Both fields are optional. If none are given the username will be displayed " "instead" @@ -102,92 +103,95 @@ msgstr "" "Les deux champs sont facultatifs. Si aucun n'est rempli, le nom " "d'utilisateur sera affiché à la place " -#: .\cookbook\forms.py:93 .\cookbook\forms.py:315 -#: .\cookbook\templates\forms\edit_internal_recipe.html:45 +#: .\cookbook\forms.py:102 .\cookbook\forms.py:331 +#: .\cookbook\templates\forms\edit_internal_recipe.html:49 +#: .\cookbook\templates\url_import.html:154 msgid "Name" msgstr "Nom" -#: .\cookbook\forms.py:94 .\cookbook\forms.py:316 -#: .\cookbook\templates\base.html:98 -#: .\cookbook\templates\forms\edit_internal_recipe.html:81 -#: .\cookbook\templates\stats.html:24 .\cookbook\templates\url_import.html:202 +#: .\cookbook\forms.py:103 .\cookbook\forms.py:332 +#: .\cookbook\templates\base.html:105 +#: .\cookbook\templates\forms\edit_internal_recipe.html:85 +#: .\cookbook\templates\space.html:33 .\cookbook\templates\stats.html:24 +#: .\cookbook\templates\url_import.html:188 +#: .\cookbook\templates\url_import.html:573 msgid "Keywords" msgstr "Mot-clés" -#: .\cookbook\forms.py:95 +#: .\cookbook\forms.py:104 msgid "Preparation time in minutes" msgstr "Le temps de préparation en minutes" -#: .\cookbook\forms.py:96 +#: .\cookbook\forms.py:105 msgid "Waiting time (cooking/baking) in minutes" msgstr "Temps d'attente (pose/cuisson) en minutes" -#: .\cookbook\forms.py:97 .\cookbook\forms.py:317 +#: .\cookbook\forms.py:106 .\cookbook\forms.py:333 msgid "Path" msgstr "Chemin" -#: .\cookbook\forms.py:98 +#: .\cookbook\forms.py:107 msgid "Storage UID" msgstr "UID de stockage" -#: .\cookbook\forms.py:121 +#: .\cookbook\forms.py:133 msgid "Default" msgstr "" -#: .\cookbook\forms.py:130 +#: .\cookbook\forms.py:144 .\cookbook\templates\url_import.html:90 msgid "" "To prevent duplicates recipes with the same name as existing ones are " "ignored. Check this box to import everything." msgstr "" -#: .\cookbook\forms.py:149 +#: .\cookbook\forms.py:164 msgid "New Unit" msgstr "Nouvelle unité" -#: .\cookbook\forms.py:150 +#: .\cookbook\forms.py:165 msgid "New unit that other gets replaced by." msgstr "La nouvelle unité qui remplacera l'autre." -#: .\cookbook\forms.py:155 +#: .\cookbook\forms.py:170 msgid "Old Unit" msgstr "Ancienne unité" -#: .\cookbook\forms.py:156 +#: .\cookbook\forms.py:171 msgid "Unit that should be replaced." msgstr "L'unité qui doit être remplacée." -#: .\cookbook\forms.py:172 +#: .\cookbook\forms.py:187 msgid "New Food" msgstr "Nouvel ingrédient" -#: .\cookbook\forms.py:173 +#: .\cookbook\forms.py:188 msgid "New food that other gets replaced by." msgstr "Nouvel ingrédient qui remplace les autres." -#: .\cookbook\forms.py:178 +#: .\cookbook\forms.py:193 msgid "Old Food" msgstr "Ancien ingrédient" -#: .\cookbook\forms.py:179 +#: .\cookbook\forms.py:194 msgid "Food that should be replaced." msgstr "Ingrédient qui devrait être remplacé" -#: .\cookbook\forms.py:197 +#: .\cookbook\forms.py:212 msgid "Add your comment: " msgstr "Ajoutez votre commentaire :" -#: .\cookbook\forms.py:238 +#: .\cookbook\forms.py:253 msgid "Leave empty for dropbox and enter app password for nextcloud." msgstr "" "Laissez vide pour Dropbox et renseigner votre mot de passe d'application " "pour Nextcloud." -#: .\cookbook\forms.py:245 +#: .\cookbook\forms.py:260 msgid "Leave empty for nextcloud and enter api token for dropbox." msgstr "" "Laissez vide pour Nextcloud et renseignez vote jeton d'API pour Dropbox." -#: .\cookbook\forms.py:253 +#: .\cookbook\forms.py:269 msgid "" "Leave empty for dropbox and enter only base url for nextcloud (/remote." "php/webdav/ is added automatically)" @@ -195,26 +199,26 @@ msgstr "" "Laisser vide pour Dropbox et saisissez seulement l'URL de base pour " "Nextcloud (/remote.php/webdav/ est ajouté automatiquement)" -#: .\cookbook\forms.py:291 +#: .\cookbook\forms.py:307 msgid "Search String" msgstr "Texte recherché" -#: .\cookbook\forms.py:318 +#: .\cookbook\forms.py:334 msgid "File ID" msgstr "ID du fichier" -#: .\cookbook\forms.py:354 +#: .\cookbook\forms.py:370 msgid "You must provide at least a recipe or a title." msgstr "Vous devez au moins fournir une recette ou un titre." -#: .\cookbook\forms.py:367 +#: .\cookbook\forms.py:383 msgid "You can list default users to share recipes with in the settings." msgstr "" "Vous pouvez lister les utilisateurs par défaut avec qui partager des " "recettes dans les paramètres." -#: .\cookbook\forms.py:368 -#: .\cookbook\templates\forms\edit_internal_recipe.html:377 +#: .\cookbook\forms.py:384 +#: .\cookbook\templates\forms\edit_internal_recipe.html:404 msgid "" "You can use markdown to format this field. See the docs here" @@ -222,52 +226,59 @@ msgstr "" "Vous pouvez utiliser du markdown pour mettre en forme ce champ. Voir la documentation ici" -#: .\cookbook\forms.py:393 -msgid "A username is not required, if left blank the new user can choose one." +#: .\cookbook\forms.py:409 +msgid "Maximum number of users for this space reached." msgstr "" -"Il n'est pas obligatoire de renseigner un nom d'utilisateur. S'il est laissé " -"vide, le nouvel utilisateur pourra le choisir." -#: .\cookbook\helper\permission_helper.py:123 -#: .\cookbook\helper\permission_helper.py:129 -#: .\cookbook\helper\permission_helper.py:151 -#: .\cookbook\helper\permission_helper.py:196 -#: .\cookbook\helper\permission_helper.py:210 -#: .\cookbook\helper\permission_helper.py:221 -#: .\cookbook\helper\permission_helper.py:232 .\cookbook\views\data.py:30 -#: .\cookbook\views\views.py:112 .\cookbook\views\views.py:116 -#: .\cookbook\views\views.py:184 -msgid "You do not have the required permissions to view this page!" -msgstr "Vous n'avez pas les droits suffisants pour afficher cette page !" +#: .\cookbook\forms.py:415 +msgid "Email address already taken!" +msgstr "" -#: .\cookbook\helper\permission_helper.py:141 +#: .\cookbook\forms.py:423 +msgid "" +"An email address is not required but if present the invite link will be send " +"to the user." +msgstr "" + +#: .\cookbook\forms.py:438 +msgid "Name already taken." +msgstr "" + +#: .\cookbook\forms.py:449 +msgid "Accept Terms and Privacy" +msgstr "" + +#: .\cookbook\helper\AllAuthCustomAdapter.py:30 +msgid "" +"In order to prevent spam, the requested email was not send. Please wait a " +"few minutes and try again." +msgstr "" + +#: .\cookbook\helper\permission_helper.py:124 +#: .\cookbook\helper\permission_helper.py:144 .\cookbook\views\views.py:147 msgid "You are not logged in and therefore cannot view this page!" msgstr "Vous n'êtes pas connecté et ne pouvez donc pas afficher cette page !" -#: .\cookbook\helper\permission_helper.py:145 -#: .\cookbook\helper\permission_helper.py:167 -#: .\cookbook\helper\permission_helper.py:182 +#: .\cookbook\helper\permission_helper.py:127 +#: .\cookbook\helper\permission_helper.py:132 +#: .\cookbook\helper\permission_helper.py:154 +#: .\cookbook\helper\permission_helper.py:199 +#: .\cookbook\helper\permission_helper.py:213 +#: .\cookbook\helper\permission_helper.py:224 +#: .\cookbook\helper\permission_helper.py:235 .\cookbook\views\data.py:39 +#: .\cookbook\views\views.py:158 .\cookbook\views\views.py:165 +#: .\cookbook\views\views.py:253 +msgid "You do not have the required permissions to view this page!" +msgstr "Vous n'avez pas les droits suffisants pour afficher cette page !" + +#: .\cookbook\helper\permission_helper.py:148 +#: .\cookbook\helper\permission_helper.py:170 +#: .\cookbook\helper\permission_helper.py:185 msgid "You cannot interact with this object as it is not owned by you!" msgstr "" "Vous ne pouvez pas interagir avec cet objet car il appartient à un autre " "utilisateur." -#: .\cookbook\helper\recipe_url_import.py:40 .\cookbook\views\api.py:549 -msgid "The requested site provided malformed data and cannot be read." -msgstr "Le site web a renvoyé des données malformées et ne peut être lu." - -#: .\cookbook\helper\recipe_url_import.py:54 -msgid "" -"The requested site does not provide any recognized data format to import the " -"recipe from." -msgstr "" -"Le site web est dans un format qui ne permet pas d'importer automatiquement " -"la recette." - -#: .\cookbook\helper\recipe_url_import.py:160 -msgid "Imported from" -msgstr "Importé depuis" - #: .\cookbook\helper\template_helper.py:60 #: .\cookbook\helper\template_helper.py:62 msgid "Could not parse template code." @@ -277,47 +288,58 @@ msgstr "" #: .\cookbook\templates\import.html:14 .\cookbook\templates\import.html:20 #: .\cookbook\templates\import_response.html:7 #: .\cookbook\templates\test.html:14 .\cookbook\templates\test.html:20 -#: .\cookbook\templates\url_import.html:233 .\cookbook\views\delete.py:60 -#: .\cookbook\views\edit.py:190 +#: .\cookbook\templates\url_import.html:27 +#: .\cookbook\templates\url_import.html:101 +#: .\cookbook\templates\url_import.html:123 +#: .\cookbook\templates\url_import.html:317 +#: .\cookbook\templates\url_import.html:604 .\cookbook\views\delete.py:60 +#: .\cookbook\views\edit.py:199 msgid "Import" msgstr "Importer" -#: .\cookbook\integration\integration.py:131 +#: .\cookbook\integration\integration.py:162 msgid "" "Importer expected a .zip file. Did you choose the correct importer type for " "your data ?" msgstr "" -#: .\cookbook\integration\integration.py:134 +#: .\cookbook\integration\integration.py:165 +msgid "" +"An unexpected error occurred during the import. Please make sure you have " +"uploaded a valid file." +msgstr "" + +#: .\cookbook\integration\integration.py:169 msgid "The following recipes were ignored because they already existed:" msgstr "" -#: .\cookbook\integration\integration.py:137 +#: .\cookbook\integration\integration.py:173 #, fuzzy, python-format #| msgid "Imported new recipe!" msgid "Imported %s recipes." msgstr "Nouvelle recette importée !" -#: .\cookbook\integration\paprika.py:44 +#: .\cookbook\integration\paprika.py:46 #, fuzzy #| msgid "Note" msgid "Notes" msgstr "Notes" -#: .\cookbook\integration\paprika.py:47 +#: .\cookbook\integration\paprika.py:49 #, fuzzy #| msgid "Information" msgid "Nutritional Information" msgstr "Information" -#: .\cookbook\integration\paprika.py:50 +#: .\cookbook\integration\paprika.py:53 msgid "Source" msgstr "" #: .\cookbook\integration\safron.py:23 -#: .\cookbook\templates\forms\edit_internal_recipe.html:75 +#: .\cookbook\templates\forms\edit_internal_recipe.html:79 #: .\cookbook\templates\include\log_cooking.html:16 -#: .\cookbook\templates\url_import.html:84 +#: .\cookbook\templates\url_import.html:224 +#: .\cookbook\templates\url_import.html:455 msgid "Servings" msgstr "Portions" @@ -326,11 +348,11 @@ msgid "Waiting time" msgstr "" #: .\cookbook\integration\safron.py:27 -#: .\cookbook\templates\forms\edit_internal_recipe.html:69 +#: .\cookbook\templates\forms\edit_internal_recipe.html:73 msgid "Preparation Time" msgstr "Temps de préparation" -#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:71 +#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:78 #: .\cookbook\templates\forms\ingredients.html:7 #: .\cookbook\templates\index.html:7 msgid "Cookbook" @@ -356,44 +378,74 @@ msgstr "Dîner" msgid "Other" msgstr "Autre" -#: .\cookbook\models.py:110 .\cookbook\templates\shopping_list.html:48 +#: .\cookbook\models.py:71 +msgid "" +"Maximum file storage for space in MB. 0 for unlimited, -1 to disable file " +"upload." +msgstr "" + +#: .\cookbook\models.py:121 .\cookbook\templates\search.html:7 +#: .\cookbook\templates\shopping_list.html:52 msgid "Search" msgstr "Recherche" -#: .\cookbook\models.py:111 .\cookbook\templates\base.html:85 +#: .\cookbook\models.py:122 .\cookbook\templates\base.html:92 #: .\cookbook\templates\meal_plan.html:5 .\cookbook\views\delete.py:152 -#: .\cookbook\views\edit.py:224 .\cookbook\views\new.py:188 +#: .\cookbook\views\edit.py:233 .\cookbook\views\new.py:201 msgid "Meal-Plan" msgstr "Menu de la semaine" -#: .\cookbook\models.py:112 .\cookbook\templates\base.html:82 +#: .\cookbook\models.py:123 .\cookbook\templates\base.html:89 msgid "Books" msgstr "Livres" -#: .\cookbook\models.py:119 +#: .\cookbook\models.py:131 msgid "Small" msgstr "Petit" -#: .\cookbook\models.py:119 +#: .\cookbook\models.py:131 msgid "Large" msgstr "Grand" -#: .\cookbook\models.py:327 -#: .\cookbook\templates\forms\edit_internal_recipe.html:198 +#: .\cookbook\models.py:131 .\cookbook\templates\generic\new_template.html:6 +#: .\cookbook\templates\generic\new_template.html:14 +#: .\cookbook\templates\meal_plan.html:323 +msgid "New" +msgstr "Nouveau" + +#: .\cookbook\models.py:340 +#: .\cookbook\templates\forms\edit_internal_recipe.html:202 msgid "Text" msgstr "Texte" -#: .\cookbook\models.py:327 -#: .\cookbook\templates\forms\edit_internal_recipe.html:199 +#: .\cookbook\models.py:340 +#: .\cookbook\templates\forms\edit_internal_recipe.html:203 msgid "Time" msgstr "Temps" +#: .\cookbook\models.py:340 +#: .\cookbook\templates\forms\edit_internal_recipe.html:204 +#: .\cookbook\templates\forms\edit_internal_recipe.html:218 +#, fuzzy +#| msgid "File ID" +msgid "File" +msgstr "ID du fichier" + +#: .\cookbook\serializer.py:109 +msgid "File uploads are not enabled for this Space." +msgstr "" + +#: .\cookbook\serializer.py:117 +msgid "You have reached your file upload limit." +msgstr "" + #: .\cookbook\tables.py:35 .\cookbook\templates\books.html:36 #: .\cookbook\templates\generic\edit_template.html:6 #: .\cookbook\templates\generic\edit_template.html:14 #: .\cookbook\templates\meal_plan.html:281 #: .\cookbook\templates\recipes_table.html:82 #: .\cookbook\templates\shopping_list.html:33 +#: .\cookbook\templates\space.html:84 msgid "Edit" msgstr "Modifier" @@ -407,10 +459,6 @@ msgstr "Modifier" msgid "Delete" msgstr "Supprimer" -#: .\cookbook\tables.py:144 -msgid "Link" -msgstr "Lien" - #: .\cookbook\templates\404.html:5 msgid "404 Error" msgstr "Erreur 404" @@ -427,21 +475,124 @@ msgstr "Page d'accueil" msgid "Report a Bug" msgstr "Signaler un bogue" -#: .\cookbook\templates\account\login.html:7 -#: .\cookbook\templates\base.html:170 +#: .\cookbook\templates\account\email.html:6 +#: .\cookbook\templates\account\email.html:9 +msgid "E-mail Addresses" +msgstr "" + +#: .\cookbook\templates\account\email.html:11 +msgid "The following e-mail addresses are associated with your account:" +msgstr "" + +#: .\cookbook\templates\account\email.html:28 +msgid "Verified" +msgstr "" + +#: .\cookbook\templates\account\email.html:30 +msgid "Unverified" +msgstr "" + +#: .\cookbook\templates\account\email.html:32 +msgid "Primary" +msgstr "" + +#: .\cookbook\templates\account\email.html:39 +#, fuzzy +#| msgid "Make Header" +msgid "Make Primary" +msgstr "Transformer en texte" + +#: .\cookbook\templates\account\email.html:41 +msgid "Re-send Verification" +msgstr "" + +#: .\cookbook\templates\account\email.html:42 +#: .\cookbook\templates\socialaccount\connections.html:36 +msgid "Remove" +msgstr "" + +#: .\cookbook\templates\account\email.html:50 +#, fuzzy +#| msgid "Warning" +msgid "Warning:" +msgstr "Avertissement" + +#: .\cookbook\templates\account\email.html:50 +msgid "" +"You currently do not have any e-mail address set up. You should really add " +"an e-mail address so you can receive notifications, reset your password, etc." +msgstr "" + +#: .\cookbook\templates\account\email.html:56 +msgid "Add E-mail Address" +msgstr "" + +#: .\cookbook\templates\account\email.html:61 +msgid "Add E-mail" +msgstr "" + +#: .\cookbook\templates\account\email.html:71 +msgid "Do you really want to remove the selected e-mail address?" +msgstr "" + +#: .\cookbook\templates\account\email_confirm.html:6 +#: .\cookbook\templates\account\email_confirm.html:10 +msgid "Confirm E-mail Address" +msgstr "" + +#: .\cookbook\templates\account\email_confirm.html:16 +#, python-format +msgid "" +"Please confirm that\n" +" %(email)s is an e-mail address " +"for user %(user_display)s\n" +" ." +msgstr "" + +#: .\cookbook\templates\account\email_confirm.html:22 +#: .\cookbook\templates\generic\delete_template.html:21 +msgid "Confirm" +msgstr "Confirmer" + +#: .\cookbook\templates\account\email_confirm.html:29 +#, python-format +msgid "" +"This e-mail confirmation link expired or is invalid. Please\n" +" issue a new e-mail confirmation " +"request." +msgstr "" + +#: .\cookbook\templates\account\login.html:8 +#: .\cookbook\templates\base.html:180 msgid "Login" msgstr "Connexion" -#: .\cookbook\templates\account\login.html:13 -#: .\cookbook\templates\account\login.html:28 +#: .\cookbook\templates\account\login.html:15 +#: .\cookbook\templates\account\login.html:31 +#: .\cookbook\templates\account\signup.html:69 +#: .\cookbook\templates\account\signup_closed.html:15 msgid "Sign In" msgstr "" -#: .\cookbook\templates\account\login.html:38 +#: .\cookbook\templates\account\login.html:32 +msgid "Sign Up" +msgstr "" + +#: .\cookbook\templates\account\login.html:36 +#: .\cookbook\templates\account\login.html:37 +#: .\cookbook\templates\account\password_reset.html:29 +msgid "Reset My Password" +msgstr "" + +#: .\cookbook\templates\account\login.html:37 +msgid "Lost your password?" +msgstr "" + +#: .\cookbook\templates\account\login.html:48 msgid "Social Login" msgstr "" -#: .\cookbook\templates\account\login.html:39 +#: .\cookbook\templates\account\login.html:49 msgid "You can use any of the following providers to sign in." msgstr "" @@ -455,116 +606,166 @@ msgstr "" msgid "Are you sure you want to sign out?" msgstr "" -#: .\cookbook\templates\account\password_reset.html:5 -#: .\cookbook\templates\account\password_reset_done.html:5 +#: .\cookbook\templates\account\password_reset.html:7 +#: .\cookbook\templates\account\password_reset.html:13 +#: .\cookbook\templates\account\password_reset_done.html:7 +#: .\cookbook\templates\account\password_reset_done.html:10 msgid "Password Reset" msgstr "" -#: .\cookbook\templates\account\password_reset.html:9 -#: .\cookbook\templates\account\password_reset_done.html:9 -msgid "Password reset is not implemented for the time being!" +#: .\cookbook\templates\account\password_reset.html:24 +msgid "" +"Forgotten your password? Enter your e-mail address below, and we'll send you " +"an e-mail allowing you to reset it." msgstr "" -#: .\cookbook\templates\account\signup.html:5 +#: .\cookbook\templates\account\password_reset.html:32 +msgid "Password reset is disabled on this instance." +msgstr "" + +#: .\cookbook\templates\account\password_reset_done.html:16 +msgid "" +"We have sent you an e-mail. Please contact us if you do not receive it " +"within a few minutes." +msgstr "" + +#: .\cookbook\templates\account\signup.html:6 msgid "Register" msgstr "S'inscrire" -#: .\cookbook\templates\account\signup.html:9 -msgid "Create your Account" +#: .\cookbook\templates\account\signup.html:12 +#, fuzzy +#| msgid "Create your Account" +msgid "Create an Account" msgstr "Créez votre compte" -#: .\cookbook\templates\account\signup.html:14 +#: .\cookbook\templates\account\signup.html:42 +msgid "I accept the follwoing" +msgstr "" + +#: .\cookbook\templates\account\signup.html:45 +msgid "Terms and Conditions" +msgstr "" + +#: .\cookbook\templates\account\signup.html:48 +msgid "and" +msgstr "" + +#: .\cookbook\templates\account\signup.html:52 +msgid "Privacy Policy" +msgstr "" + +#: .\cookbook\templates\account\signup.html:65 msgid "Create User" msgstr "Créer un utilisateur" -#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:160 +#: .\cookbook\templates\account\signup.html:69 +msgid "Already have an account?" +msgstr "" + +#: .\cookbook\templates\account\signup_closed.html:5 +#: .\cookbook\templates\account\signup_closed.html:11 +msgid "Sign Up Closed" +msgstr "" + +#: .\cookbook\templates\account\signup_closed.html:13 +msgid "We are sorry, but the sign up is currently closed." +msgstr "" + +#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:170 #: .\cookbook\templates\rest_framework\api.html:11 msgid "API Documentation" msgstr "Documentation API" -#: .\cookbook\templates\base.html:78 +#: .\cookbook\templates\base.html:85 msgid "Utensils" msgstr "Ustensiles" -#: .\cookbook\templates\base.html:88 +#: .\cookbook\templates\base.html:95 msgid "Shopping" msgstr "Courses" -#: .\cookbook\templates\base.html:102 .\cookbook\views\delete.py:84 -#: .\cookbook\views\edit.py:93 .\cookbook\views\lists.py:26 -#: .\cookbook\views\new.py:66 +#: .\cookbook\templates\base.html:109 .\cookbook\views\delete.py:84 +#: .\cookbook\views\edit.py:102 .\cookbook\views\lists.py:26 +#: .\cookbook\views\new.py:78 msgid "Keyword" msgstr "Mot-clé" -#: .\cookbook\templates\base.html:104 +#: .\cookbook\templates\base.html:111 msgid "Batch Edit" msgstr "Modification en masse" -#: .\cookbook\templates\base.html:109 +#: .\cookbook\templates\base.html:116 msgid "Storage Data" msgstr "Données de stockage" -#: .\cookbook\templates\base.html:113 +#: .\cookbook\templates\base.html:120 msgid "Storage Backends" msgstr "Espaces de stockage" -#: .\cookbook\templates\base.html:115 +#: .\cookbook\templates\base.html:122 msgid "Configure Sync" msgstr "Configurer synchro" -#: .\cookbook\templates\base.html:117 +#: .\cookbook\templates\base.html:124 msgid "Discovered Recipes" msgstr "Recettes découvertes" -#: .\cookbook\templates\base.html:119 +#: .\cookbook\templates\base.html:126 msgid "Discovery Log" msgstr "Historique des découvertes" -#: .\cookbook\templates\base.html:121 .\cookbook\templates\stats.html:10 +#: .\cookbook\templates\base.html:128 .\cookbook\templates\stats.html:10 msgid "Statistics" msgstr "Statistiques" -#: .\cookbook\templates\base.html:123 +#: .\cookbook\templates\base.html:130 msgid "Units & Ingredients" msgstr "Unités et ingrédients" -#: .\cookbook\templates\base.html:125 +#: .\cookbook\templates\base.html:132 .\cookbook\templates\index.html:47 msgid "Import Recipe" msgstr "Importer une recette" -#: .\cookbook\templates\base.html:144 .\cookbook\templates\settings.html:6 +#: .\cookbook\templates\base.html:151 .\cookbook\templates\settings.html:6 #: .\cookbook\templates\settings.html:16 msgid "Settings" msgstr "Paramètres" -#: .\cookbook\templates\base.html:146 .\cookbook\templates\history.html:6 +#: .\cookbook\templates\base.html:153 .\cookbook\templates\history.html:6 #: .\cookbook\templates\history.html:14 msgid "History" msgstr "Historique" -#: .\cookbook\templates\base.html:150 .\cookbook\templates\system.html:13 +#: .\cookbook\templates\base.html:155 .\cookbook\templates\space.html:7 +#, fuzzy +#| msgid "Settings" +msgid "Space Settings" +msgstr "Paramètres" + +#: .\cookbook\templates\base.html:160 .\cookbook\templates\system.html:13 msgid "System" msgstr "Système" -#: .\cookbook\templates\base.html:152 +#: .\cookbook\templates\base.html:162 msgid "Admin" msgstr "Admin" -#: .\cookbook\templates\base.html:156 +#: .\cookbook\templates\base.html:166 msgid "Markdown Guide" msgstr "Guide Markdown" -#: .\cookbook\templates\base.html:158 +#: .\cookbook\templates\base.html:168 msgid "GitHub" msgstr "GitHub" -#: .\cookbook\templates\base.html:162 +#: .\cookbook\templates\base.html:172 msgid "API Browser" msgstr "Navigateur API" -#: .\cookbook\templates\base.html:165 -msgid "Logout" -msgstr "Déconnexion" +#: .\cookbook\templates\base.html:175 +msgid "Log out" +msgstr "" #: .\cookbook\templates\batch\edit.html:6 msgid "Batch edit Category" @@ -578,7 +779,7 @@ msgstr "Modifier en masse les recettes" msgid "Add the specified keywords to all recipes containing a word" msgstr "Ajouter les mots-clés spécifiés à toutes les recettes contenant un mot" -#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:76 +#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:85 msgid "Sync" msgstr "Synchro" @@ -607,7 +808,7 @@ msgstr "Lancer la synchro !" msgid "Importing Recipes" msgstr "Importer des ecettes" -#: .\cookbook\templates\batch\waiting.html:23 +#: .\cookbook\templates\batch\waiting.html:28 msgid "" "This can take a few minutes, depending on the number of recipes in sync, " "please wait." @@ -646,26 +847,33 @@ msgid "Export Recipes" msgstr "Exporter des ecettes" #: .\cookbook\templates\export.html:14 .\cookbook\templates\export.html:20 -#: .\cookbook\templates\shopping_list.html:347 +#: .\cookbook\templates\shopping_list.html:351 #: .\cookbook\templates\test2.html:14 .\cookbook\templates\test2.html:20 msgid "Export" msgstr "Exporter" +#: .\cookbook\templates\files.html:7 +#, fuzzy +#| msgid "File ID" +msgid "Files" +msgstr "ID du fichier" + #: .\cookbook\templates\forms\edit_import_recipe.html:5 #: .\cookbook\templates\forms\edit_import_recipe.html:9 msgid "Import new Recipe" msgstr "Importer une nouvelle recette" #: .\cookbook\templates\forms\edit_import_recipe.html:14 -#: .\cookbook\templates\forms\edit_internal_recipe.html:389 -#: .\cookbook\templates\forms\edit_internal_recipe.html:421 +#: .\cookbook\templates\forms\edit_internal_recipe.html:416 +#: .\cookbook\templates\forms\edit_internal_recipe.html:448 #: .\cookbook\templates\generic\edit_template.html:23 #: .\cookbook\templates\generic\new_template.html:23 #: .\cookbook\templates\include\log_cooking.html:28 #: .\cookbook\templates\meal_plan.html:325 -#: .\cookbook\templates\settings.html:28 .\cookbook\templates\settings.html:35 -#: .\cookbook\templates\settings.html:58 .\cookbook\templates\settings.html:73 -#: .\cookbook\templates\shopping_list.html:349 +#: .\cookbook\templates\settings.html:44 .\cookbook\templates\settings.html:52 +#: .\cookbook\templates\settings.html:96 +#: .\cookbook\templates\settings.html:114 +#: .\cookbook\templates\shopping_list.html:353 msgid "Save" msgstr "Sauvegarder" @@ -674,181 +882,190 @@ msgstr "Sauvegarder" msgid "Edit Recipe" msgstr "Modifier une recette" -#: .\cookbook\templates\forms\edit_internal_recipe.html:52 +#: .\cookbook\templates\forms\edit_internal_recipe.html:56 +#: .\cookbook\templates\url_import.html:171 msgid "Description" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:72 +#: .\cookbook\templates\forms\edit_internal_recipe.html:76 msgid "Waiting Time" msgstr "Temps d'attente" -#: .\cookbook\templates\forms\edit_internal_recipe.html:78 +#: .\cookbook\templates\forms\edit_internal_recipe.html:82 msgid "Servings Text" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:89 +#: .\cookbook\templates\forms\edit_internal_recipe.html:93 msgid "Select Keywords" msgstr "Sélectionner des mots-clés" -#: .\cookbook\templates\forms\edit_internal_recipe.html:90 -#: .\cookbook\templates\url_import.html:212 +#: .\cookbook\templates\forms\edit_internal_recipe.html:94 +#: .\cookbook\templates\url_import.html:583 #, fuzzy #| msgid "All Keywords" msgid "Add Keyword" msgstr "Tous les mots-clés" -#: .\cookbook\templates\forms\edit_internal_recipe.html:108 +#: .\cookbook\templates\forms\edit_internal_recipe.html:112 msgid "Nutrition" msgstr "Informations nutritionnelles" -#: .\cookbook\templates\forms\edit_internal_recipe.html:112 -#: .\cookbook\templates\forms\edit_internal_recipe.html:162 +#: .\cookbook\templates\forms\edit_internal_recipe.html:116 +#: .\cookbook\templates\forms\edit_internal_recipe.html:166 msgid "Delete Step" msgstr "Supprimer l'étape" -#: .\cookbook\templates\forms\edit_internal_recipe.html:116 +#: .\cookbook\templates\forms\edit_internal_recipe.html:120 msgid "Calories" msgstr "Calories" -#: .\cookbook\templates\forms\edit_internal_recipe.html:119 +#: .\cookbook\templates\forms\edit_internal_recipe.html:123 msgid "Carbohydrates" msgstr "Glucides" -#: .\cookbook\templates\forms\edit_internal_recipe.html:122 +#: .\cookbook\templates\forms\edit_internal_recipe.html:126 msgid "Fats" msgstr "Matières grasses" -#: .\cookbook\templates\forms\edit_internal_recipe.html:124 +#: .\cookbook\templates\forms\edit_internal_recipe.html:128 msgid "Proteins" msgstr "Protéines" -#: .\cookbook\templates\forms\edit_internal_recipe.html:146 -#: .\cookbook\templates\forms\edit_internal_recipe.html:454 +#: .\cookbook\templates\forms\edit_internal_recipe.html:150 +#: .\cookbook\templates\forms\edit_internal_recipe.html:481 msgid "Step" msgstr "Étape" -#: .\cookbook\templates\forms\edit_internal_recipe.html:167 +#: .\cookbook\templates\forms\edit_internal_recipe.html:171 msgid "Show as header" msgstr "Afficher en entête" -#: .\cookbook\templates\forms\edit_internal_recipe.html:173 +#: .\cookbook\templates\forms\edit_internal_recipe.html:177 msgid "Hide as header" msgstr "Masquer en entête" -#: .\cookbook\templates\forms\edit_internal_recipe.html:178 +#: .\cookbook\templates\forms\edit_internal_recipe.html:182 msgid "Move Up" msgstr "Remonter" -#: .\cookbook\templates\forms\edit_internal_recipe.html:183 +#: .\cookbook\templates\forms\edit_internal_recipe.html:187 msgid "Move Down" msgstr "Descendre" -#: .\cookbook\templates\forms\edit_internal_recipe.html:192 +#: .\cookbook\templates\forms\edit_internal_recipe.html:196 msgid "Step Name" msgstr "Nom de l'étape" -#: .\cookbook\templates\forms\edit_internal_recipe.html:196 +#: .\cookbook\templates\forms\edit_internal_recipe.html:200 msgid "Step Type" msgstr "Type de l'étape" -#: .\cookbook\templates\forms\edit_internal_recipe.html:207 +#: .\cookbook\templates\forms\edit_internal_recipe.html:212 msgid "Step time in Minutes" msgstr "Durée de l'étape en minutes" -#: .\cookbook\templates\forms\edit_internal_recipe.html:261 -#: .\cookbook\templates\shopping_list.html:183 -msgid "Select Unit" -msgstr "Sélectionnez l'unité" +#: .\cookbook\templates\forms\edit_internal_recipe.html:228 +#, fuzzy +#| msgid "Select one" +msgid "Select File" +msgstr "Faites votre choix" -#: .\cookbook\templates\forms\edit_internal_recipe.html:262 -#: .\cookbook\templates\forms\edit_internal_recipe.html:286 -#: .\cookbook\templates\shopping_list.html:184 -#: .\cookbook\templates\shopping_list.html:206 -msgid "Create" -msgstr "Créer" - -#: .\cookbook\templates\forms\edit_internal_recipe.html:263 -#: .\cookbook\templates\forms\edit_internal_recipe.html:287 -#: .\cookbook\templates\shopping_list.html:185 -#: .\cookbook\templates\shopping_list.html:207 -#: .\cookbook\templates\shopping_list.html:237 -#: .\cookbook\templates\shopping_list.html:261 -#: .\cookbook\templates\url_import.html:124 -#: .\cookbook\templates\url_import.html:156 +#: .\cookbook\templates\forms\edit_internal_recipe.html:229 +#: .\cookbook\templates\forms\edit_internal_recipe.html:290 +#: .\cookbook\templates\forms\edit_internal_recipe.html:314 +#: .\cookbook\templates\shopping_list.html:189 +#: .\cookbook\templates\shopping_list.html:211 +#: .\cookbook\templates\shopping_list.html:241 +#: .\cookbook\templates\shopping_list.html:265 +#: .\cookbook\templates\url_import.html:495 +#: .\cookbook\templates\url_import.html:527 msgid "Select" msgstr "Sélectionner" -#: .\cookbook\templates\forms\edit_internal_recipe.html:285 -#: .\cookbook\templates\shopping_list.html:205 +#: .\cookbook\templates\forms\edit_internal_recipe.html:288 +#: .\cookbook\templates\shopping_list.html:187 +msgid "Select Unit" +msgstr "Sélectionnez l'unité" + +#: .\cookbook\templates\forms\edit_internal_recipe.html:289 +#: .\cookbook\templates\forms\edit_internal_recipe.html:313 +#: .\cookbook\templates\shopping_list.html:188 +#: .\cookbook\templates\shopping_list.html:210 +msgid "Create" +msgstr "Créer" + +#: .\cookbook\templates\forms\edit_internal_recipe.html:312 +#: .\cookbook\templates\shopping_list.html:209 msgid "Select Food" msgstr "Sélectionnez l'ingrédient" -#: .\cookbook\templates\forms\edit_internal_recipe.html:302 +#: .\cookbook\templates\forms\edit_internal_recipe.html:329 #: .\cookbook\templates\meal_plan.html:256 -#: .\cookbook\templates\url_import.html:171 +#: .\cookbook\templates\url_import.html:542 msgid "Note" msgstr "Notes" -#: .\cookbook\templates\forms\edit_internal_recipe.html:319 +#: .\cookbook\templates\forms\edit_internal_recipe.html:346 msgid "Delete Ingredient" msgstr "Supprimer l'ingrédient" -#: .\cookbook\templates\forms\edit_internal_recipe.html:325 +#: .\cookbook\templates\forms\edit_internal_recipe.html:352 msgid "Make Header" msgstr "Transformer en texte" -#: .\cookbook\templates\forms\edit_internal_recipe.html:331 +#: .\cookbook\templates\forms\edit_internal_recipe.html:358 msgid "Make Ingredient" msgstr "Transformer en ingrédient" -#: .\cookbook\templates\forms\edit_internal_recipe.html:337 +#: .\cookbook\templates\forms\edit_internal_recipe.html:364 msgid "Disable Amount" msgstr "Sans quantité" -#: .\cookbook\templates\forms\edit_internal_recipe.html:343 +#: .\cookbook\templates\forms\edit_internal_recipe.html:370 msgid "Enable Amount" msgstr "Avec quantité" -#: .\cookbook\templates\forms\edit_internal_recipe.html:348 +#: .\cookbook\templates\forms\edit_internal_recipe.html:375 msgid "Copy Template Reference" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:374 -#: .\cookbook\templates\url_import.html:196 +#: .\cookbook\templates\forms\edit_internal_recipe.html:401 +#: .\cookbook\templates\url_import.html:297 +#: .\cookbook\templates\url_import.html:567 msgid "Instructions" msgstr "Instructions" -#: .\cookbook\templates\forms\edit_internal_recipe.html:387 -#: .\cookbook\templates\forms\edit_internal_recipe.html:418 +#: .\cookbook\templates\forms\edit_internal_recipe.html:414 +#: .\cookbook\templates\forms\edit_internal_recipe.html:445 msgid "Save & View" msgstr "Sauvegarder et afficher" -#: .\cookbook\templates\forms\edit_internal_recipe.html:391 -#: .\cookbook\templates\forms\edit_internal_recipe.html:424 +#: .\cookbook\templates\forms\edit_internal_recipe.html:418 +#: .\cookbook\templates\forms\edit_internal_recipe.html:451 msgid "Add Step" msgstr "Ajouter une étape" -#: .\cookbook\templates\forms\edit_internal_recipe.html:394 -#: .\cookbook\templates\forms\edit_internal_recipe.html:428 +#: .\cookbook\templates\forms\edit_internal_recipe.html:421 +#: .\cookbook\templates\forms\edit_internal_recipe.html:455 msgid "Add Nutrition" msgstr "Ajouter les informations nutritionnelles" -#: .\cookbook\templates\forms\edit_internal_recipe.html:396 -#: .\cookbook\templates\forms\edit_internal_recipe.html:430 +#: .\cookbook\templates\forms\edit_internal_recipe.html:423 +#: .\cookbook\templates\forms\edit_internal_recipe.html:457 msgid "Remove Nutrition" msgstr "Supprimer les informations nutritionnelles" -#: .\cookbook\templates\forms\edit_internal_recipe.html:398 -#: .\cookbook\templates\forms\edit_internal_recipe.html:433 +#: .\cookbook\templates\forms\edit_internal_recipe.html:425 +#: .\cookbook\templates\forms\edit_internal_recipe.html:460 msgid "View Recipe" msgstr "Afficher la recette" -#: .\cookbook\templates\forms\edit_internal_recipe.html:400 -#: .\cookbook\templates\forms\edit_internal_recipe.html:435 +#: .\cookbook\templates\forms\edit_internal_recipe.html:427 +#: .\cookbook\templates\forms\edit_internal_recipe.html:462 msgid "Delete Recipe" msgstr "Supprimer la recette" -#: .\cookbook\templates\forms\edit_internal_recipe.html:441 +#: .\cookbook\templates\forms\edit_internal_recipe.html:468 msgid "Steps" msgstr "Étapes" @@ -873,7 +1090,7 @@ msgstr "" "qui les utilisent." #: .\cookbook\templates\forms\ingredients.html:24 -#: .\cookbook\templates\stats.html:26 +#: .\cookbook\templates\space.html:35 .\cookbook\templates\stats.html:26 msgid "Units" msgstr "Unités" @@ -895,10 +1112,6 @@ msgstr "Êtes-vous sûr(e) de vouloir fusionner ces deux ingrédients ?" msgid "Are you sure you want to delete the %(title)s: %(object)s " msgstr "Êtes-vous certain de vouloir supprimer %(title)s : %(object)s" -#: .\cookbook\templates\generic\delete_template.html:21 -msgid "Confirm" -msgstr "Confirmer" - #: .\cookbook\templates\generic\edit_template.html:30 msgid "View" msgstr "Voir" @@ -920,12 +1133,6 @@ msgstr "Filtre" msgid "Import all" msgstr "Tout importer" -#: .\cookbook\templates\generic\new_template.html:6 -#: .\cookbook\templates\generic\new_template.html:14 -#: .\cookbook\templates\meal_plan.html:323 -msgid "New" -msgstr "Nouveau" - #: .\cookbook\templates\generic\table_template.html:76 #: .\cookbook\templates\recipes_table.html:121 msgid "previous" @@ -970,7 +1177,7 @@ msgstr "Fermer" #: .\cookbook\templates\include\recipe_open_modal.html:7 #: .\cookbook\templates\meal_plan.html:247 .\cookbook\views\delete.py:28 -#: .\cookbook\views\edit.py:264 .\cookbook\views\new.py:40 +#: .\cookbook\views\edit.py:273 .\cookbook\views\new.py:52 msgid "Recipe" msgstr "Recette" @@ -1010,10 +1217,6 @@ msgstr "Rechercher une recette..." msgid "New Recipe" msgstr "Nouvelle ecette" -#: .\cookbook\templates\index.html:47 -msgid "Website Import" -msgstr "Importer depuis un site web" - #: .\cookbook\templates\index.html:53 msgid "Advanced Search" msgstr "Recherche avancée" @@ -1027,7 +1230,7 @@ msgid "Last viewed" msgstr "Dernières recettes vues" #: .\cookbook\templates\index.html:87 .\cookbook\templates\meal_plan.html:178 -#: .\cookbook\templates\stats.html:22 +#: .\cookbook\templates\space.html:29 .\cookbook\templates\stats.html:22 msgid "Recipes" msgstr "Recettes" @@ -1194,7 +1397,7 @@ msgid "New Entry" msgstr "Nouvelle ligne" #: .\cookbook\templates\meal_plan.html:113 -#: .\cookbook\templates\shopping_list.html:52 +#: .\cookbook\templates\shopping_list.html:56 msgid "Search Recipe" msgstr "Rechercher une recette" @@ -1227,7 +1430,7 @@ msgstr "Créer uniquement une note" #: .\cookbook\templates\meal_plan.html:168 #: .\cookbook\templates\shopping_list.html:7 #: .\cookbook\templates\shopping_list.html:29 -#: .\cookbook\templates\shopping_list.html:705 +#: .\cookbook\templates\shopping_list.html:714 msgid "Shopping List" msgstr "Liste de courses" @@ -1278,7 +1481,7 @@ msgstr "Créé par" #: .\cookbook\templates\meal_plan.html:270 #: .\cookbook\templates\meal_plan_entry.html:20 -#: .\cookbook\templates\shopping_list.html:250 +#: .\cookbook\templates\shopping_list.html:254 msgid "Shared with" msgstr "Partagé avec" @@ -1355,7 +1558,6 @@ msgstr "Vous n'êtes pas connecté et ne pouvez donc pas afficher cette page !" #: .\cookbook\templates\no_groups_info.html:18 #: .\cookbook\templates\no_perm_info.html:15 -#: .\cookbook\templates\no_space_info.html:15 msgid "Please contact your administrator." msgstr "" @@ -1372,13 +1574,50 @@ msgid "" "action." msgstr "Vous n'avez pas la permission d'effectuer cette action !" -#: .\cookbook\templates\no_space_info.html:5 -#: .\cookbook\templates\no_space_info.html:12 +#: .\cookbook\templates\no_space_info.html:6 +#: .\cookbook\templates\no_space_info.html:13 msgid "No Space" msgstr "" -#: .\cookbook\templates\no_space_info.html:15 -msgid "You are not a member of any space." +#: .\cookbook\templates\no_space_info.html:17 +msgid "" +"Recipes, foods, shopping lists and more are organized in spaces of one or " +"more people." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:18 +msgid "" +"You can either be invited into an existing space or create your own one." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:31 +#: .\cookbook\templates\no_space_info.html:40 +msgid "Join Space" +msgstr "" + +#: .\cookbook\templates\no_space_info.html:34 +msgid "Join an existing space." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:35 +msgid "" +"To join an existing space either enter your invite token or click on the " +"invite link the space owner send you." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:48 +#: .\cookbook\templates\no_space_info.html:56 +#, fuzzy +#| msgid "Create User" +msgid "Create Space" +msgstr "Créer un utilisateur" + +#: .\cookbook\templates\no_space_info.html:51 +msgid "Create your own recipe space." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:52 +msgid "Start your own recipe space and invite other users to it." msgstr "" #: .\cookbook\templates\offline.html:6 @@ -1395,28 +1634,29 @@ msgid "" "recently viewed them. Keep in mind that data might be outdated." msgstr "" -#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\stats.html:47 +#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\space.html:56 +#: .\cookbook\templates\stats.html:47 msgid "Comments" msgstr "Commentaires" #: .\cookbook\templates\recipe_view.html:44 .\cookbook\views\delete.py:118 -#: .\cookbook\views\edit.py:170 +#: .\cookbook\views\edit.py:179 msgid "Comment" msgstr "Commentaire" #: .\cookbook\templates\recipes_table.html:19 #: .\cookbook\templates\recipes_table.html:23 -#: .\cookbook\templates\url_import.html:69 +#: .\cookbook\templates\url_import.html:440 msgid "Recipe Image" msgstr "Image de la recette" #: .\cookbook\templates\recipes_table.html:51 -#: .\cookbook\templates\url_import.html:74 +#: .\cookbook\templates\url_import.html:445 msgid "Preparation time ca." msgstr "Temps de préparation" #: .\cookbook\templates\recipes_table.html:57 -#: .\cookbook\templates\url_import.html:79 +#: .\cookbook\templates\url_import.html:450 msgid "Waiting time ca." msgstr "Temps de repos" @@ -1432,27 +1672,63 @@ msgstr "Marquer cuisiné" msgid "Recipe Home" msgstr "Page d'accueil" -#: .\cookbook\templates\settings.html:22 +#: .\cookbook\templates\settings.html:23 msgid "Account" msgstr "Compte" -#: .\cookbook\templates\settings.html:38 -msgid "Link social account" +#: .\cookbook\templates\settings.html:27 +msgid "Preferences" msgstr "" -#: .\cookbook\templates\settings.html:42 +#: .\cookbook\templates\settings.html:31 +#, fuzzy +#| msgid "Settings" +msgid "API-Settings" +msgstr "Paramètres" + +#: .\cookbook\templates\settings.html:39 +#, fuzzy +#| msgid "Settings" +msgid "Name Settings" +msgstr "Paramètres" + +#: .\cookbook\templates\settings.html:47 +#, fuzzy +#| msgid "Settings" +msgid "Password Settings" +msgstr "Paramètres" + +#: .\cookbook\templates\settings.html:55 +#, fuzzy +#| msgid "Settings" +msgid "Email Settings" +msgstr "Paramètres" + +#: .\cookbook\templates\settings.html:57 +msgid "Manage Email Settings" +msgstr "" + +#: .\cookbook\templates\settings.html:61 +msgid "Social" +msgstr "" + +#: .\cookbook\templates\settings.html:63 +msgid "Manage Social Accounts" +msgstr "" + +#: .\cookbook\templates\settings.html:75 msgid "Language" msgstr "Langue" -#: .\cookbook\templates\settings.html:67 +#: .\cookbook\templates\settings.html:105 msgid "Style" msgstr "Style" -#: .\cookbook\templates\settings.html:79 +#: .\cookbook\templates\settings.html:125 msgid "API Token" msgstr "Jeton API" -#: .\cookbook\templates\settings.html:80 +#: .\cookbook\templates\settings.html:126 msgid "" "You can use both basic authentication and token based authentication to " "access the REST API." @@ -1460,7 +1736,7 @@ msgstr "" "Vous pouvez utiliser à la fois l'authentification classique et " "l'authentification par jeton pour accéder à l'API REST." -#: .\cookbook\templates\settings.html:92 +#: .\cookbook\templates\settings.html:143 msgid "" "Use the token as an Authorization header prefixed by the word token as shown " "in the following examples:" @@ -1468,7 +1744,7 @@ msgstr "" "Utilisez le jeton dans l'entête d'autorisation préfixé par le mot \"token\" " "comme indiqué dans les exemples suivants :" -#: .\cookbook\templates\settings.html:94 +#: .\cookbook\templates\settings.html:145 msgid "or" msgstr "ou" @@ -1489,59 +1765,55 @@ msgstr "" msgid "Create Superuser account" msgstr "" -#: .\cookbook\templates\shopping_list.html:75 +#: .\cookbook\templates\shopping_list.html:79 msgid "Shopping Recipes" msgstr "Recettes dans le panier" -#: .\cookbook\templates\shopping_list.html:79 +#: .\cookbook\templates\shopping_list.html:83 msgid "No recipes selected" msgstr "Pas de recettes sélectionnées" -#: .\cookbook\templates\shopping_list.html:146 +#: .\cookbook\templates\shopping_list.html:150 msgid "Entry Mode" msgstr "" -#: .\cookbook\templates\shopping_list.html:154 +#: .\cookbook\templates\shopping_list.html:158 msgid "Add Entry" msgstr "" -#: .\cookbook\templates\shopping_list.html:170 +#: .\cookbook\templates\shopping_list.html:174 msgid "Amount" msgstr "Quantité" -#: .\cookbook\templates\shopping_list.html:226 +#: .\cookbook\templates\shopping_list.html:230 +#: .\cookbook\templates\supermarket.html:7 msgid "Supermarket" msgstr "" -#: .\cookbook\templates\shopping_list.html:236 +#: .\cookbook\templates\shopping_list.html:240 msgid "Select Supermarket" msgstr "" -#: .\cookbook\templates\shopping_list.html:260 +#: .\cookbook\templates\shopping_list.html:264 msgid "Select User" msgstr "Sélectionnez un utilisateur" -#: .\cookbook\templates\shopping_list.html:279 +#: .\cookbook\templates\shopping_list.html:283 msgid "Finished" msgstr "Terminé" -#: .\cookbook\templates\shopping_list.html:292 +#: .\cookbook\templates\shopping_list.html:296 msgid "You are offline, shopping list might not syncronize." msgstr "" -#: .\cookbook\templates\shopping_list.html:357 +#: .\cookbook\templates\shopping_list.html:361 msgid "Copy/Export" msgstr "Copier/exporter" -#: .\cookbook\templates\shopping_list.html:361 +#: .\cookbook\templates\shopping_list.html:365 msgid "List Prefix" msgstr "Préfixe de la liste" -#: .\cookbook\templates\shopping_list.html:708 -msgid "There was an error creating a resource!" -msgstr "" -"Une erreur s\\\\'est produite lors de la création d\\\\'une ressource !" - #: .\cookbook\templates\socialaccount\connections.html:4 #: .\cookbook\templates\socialaccount\connections.html:7 msgid "Account Connections" @@ -1553,10 +1825,6 @@ msgid "" " accounts:" msgstr "" -#: .\cookbook\templates\socialaccount\connections.html:36 -msgid "Remove" -msgstr "" - #: .\cookbook\templates\socialaccount\connections.html:44 msgid "" "You currently have no social network accounts connected to this account." @@ -1566,38 +1834,95 @@ msgstr "" msgid "Add a 3rd Party Account" msgstr "" -#: .\cookbook\templates\stats.html:4 -msgid "Stats" -msgstr "Stats" +#: .\cookbook\templates\space.html:18 +msgid "Manage Subscription" +msgstr "" -#: .\cookbook\templates\stats.html:19 +#: .\cookbook\templates\space.html:26 .\cookbook\templates\stats.html:19 msgid "Number of objects" msgstr "Nombre d'objets" -#: .\cookbook\templates\stats.html:30 +#: .\cookbook\templates\space.html:39 .\cookbook\templates\stats.html:30 msgid "Recipe Imports" msgstr "Recettes importées" -#: .\cookbook\templates\stats.html:38 +#: .\cookbook\templates\space.html:47 .\cookbook\templates\stats.html:38 msgid "Objects stats" msgstr "Stats d'objets" -#: .\cookbook\templates\stats.html:41 +#: .\cookbook\templates\space.html:50 .\cookbook\templates\stats.html:41 msgid "Recipes without Keywords" msgstr "Recettes sans mots-clés" -#: .\cookbook\templates\stats.html:43 +#: .\cookbook\templates\space.html:52 .\cookbook\templates\stats.html:43 msgid "External Recipes" msgstr "Recettes externes" -#: .\cookbook\templates\stats.html:45 +#: .\cookbook\templates\space.html:54 .\cookbook\templates\stats.html:45 msgid "Internal Recipes" msgstr "Recettes internes" -#: .\cookbook\templates\system.html:21 .\cookbook\views\lists.py:115 +#: .\cookbook\templates\space.html:67 +msgid "Members" +msgstr "" + +#: .\cookbook\templates\space.html:71 +#, fuzzy +#| msgid "Invite Links" +msgid "Invite User" +msgstr "Liens d'invitation" + +#: .\cookbook\templates\space.html:82 +msgid "User" +msgstr "" + +#: .\cookbook\templates\space.html:83 +msgid "Groups" +msgstr "" + +#: .\cookbook\templates\space.html:99 +#, fuzzy +#| msgid "Admin" +msgid "admin" +msgstr "Admin" + +#: .\cookbook\templates\space.html:100 +msgid "user" +msgstr "" + +#: .\cookbook\templates\space.html:101 +msgid "guest" +msgstr "" + +#: .\cookbook\templates\space.html:102 +msgid "remove" +msgstr "" + +#: .\cookbook\templates\space.html:106 +msgid "Update" +msgstr "" + +#: .\cookbook\templates\space.html:110 +#, fuzzy +#| msgid "You cannot edit this storage!" +msgid "You cannot edit yourself." +msgstr "Vous ne pouvez pas modifier ce stockage !" + +#: .\cookbook\templates\space.html:117 +#, fuzzy +#| msgid "There are no recipes in this book yet." +msgid "There are no members in your space yet!" +msgstr "Il n'y a pas encore de recettes dans ce livre." + +#: .\cookbook\templates\space.html:124 .\cookbook\templates\system.html:21 +#: .\cookbook\views\lists.py:115 msgid "Invite Links" msgstr "Liens d'invitation" +#: .\cookbook\templates\stats.html:4 +msgid "Stats" +msgstr "Stats" + #: .\cookbook\templates\system.html:22 msgid "Show Links" msgstr "Afficher les liens" @@ -1721,47 +2046,159 @@ msgstr "" "pas grave mais déconseillé car certaines fonctionnalités ne fonctionnent " "qu'avec une base de données Postgres." -#: .\cookbook\templates\url_import.html:5 +#: .\cookbook\templates\url_import.html:6 msgid "URL Import" msgstr "Import URL" -#: .\cookbook\templates\url_import.html:23 +#: .\cookbook\templates\url_import.html:31 +msgid "Drag me to your bookmarks to import recipes from anywhere" +msgstr "" + +#: .\cookbook\templates\url_import.html:32 +#, fuzzy +#| msgid "Bookmark saved!" +msgid "Bookmark Me!" +msgstr "Marque-page enregistré !" + +#: .\cookbook\templates\url_import.html:61 msgid "Enter website URL" msgstr "Saisissez l'URL du site web" -#: .\cookbook\templates\url_import.html:36 -msgid "Enter json directly" +#: .\cookbook\templates\url_import.html:97 +msgid "Select recipe files to import or drop them here..." msgstr "" -#: .\cookbook\templates\url_import.html:57 +#: .\cookbook\templates\url_import.html:118 +msgid "Paste json or html source here to load recipe." +msgstr "" + +#: .\cookbook\templates\url_import.html:146 +#, fuzzy +#| msgid "View Recipe" +msgid "Preview Recipe Data" +msgstr "Afficher la recette" + +#: .\cookbook\templates\url_import.html:147 +msgid "Drag recipe attributes from the right into the appropriate box below." +msgstr "" + +#: .\cookbook\templates\url_import.html:156 +#: .\cookbook\templates\url_import.html:173 +#: .\cookbook\templates\url_import.html:190 +#: .\cookbook\templates\url_import.html:209 +#: .\cookbook\templates\url_import.html:227 +#: .\cookbook\templates\url_import.html:242 +#: .\cookbook\templates\url_import.html:257 +#: .\cookbook\templates\url_import.html:273 +#: .\cookbook\templates\url_import.html:300 +#: .\cookbook\templates\url_import.html:351 +msgid "Clear Contents" +msgstr "" + +#: .\cookbook\templates\url_import.html:158 +msgid "Text dragged here will be appended to the name." +msgstr "" + +#: .\cookbook\templates\url_import.html:175 +msgid "Text dragged here will be appended to the description." +msgstr "" + +#: .\cookbook\templates\url_import.html:192 +msgid "Keywords dragged here will be appended to current list" +msgstr "" + +#: .\cookbook\templates\url_import.html:207 +msgid "Image" +msgstr "" + +#: .\cookbook\templates\url_import.html:239 +#, fuzzy +#| msgid "Preparation Time" +msgid "Prep Time" +msgstr "Temps de préparation" + +#: .\cookbook\templates\url_import.html:254 +#, fuzzy +#| msgid "Time" +msgid "Cook Time" +msgstr "Temps" + +#: .\cookbook\templates\url_import.html:275 +msgid "Ingredients dragged here will be appended to current list." +msgstr "" + +#: .\cookbook\templates\url_import.html:302 +msgid "" +"Recipe instructions dragged here will be appended to current instructions." +msgstr "" + +#: .\cookbook\templates\url_import.html:325 +#, fuzzy +#| msgid "Discovered Recipes" +msgid "Discovered Attributes" +msgstr "Recettes découvertes" + +#: .\cookbook\templates\url_import.html:327 +msgid "" +"Drag recipe attributes from below into the appropriate box on the left. " +"Click any node to display its full properties." +msgstr "" + +#: .\cookbook\templates\url_import.html:344 +#, fuzzy +#| msgid "Show as header" +msgid "Show Blank Field" +msgstr "Afficher en entête" + +#: .\cookbook\templates\url_import.html:349 +msgid "Blank Field" +msgstr "" + +#: .\cookbook\templates\url_import.html:353 +msgid "Items dragged to Blank Field will be appended." +msgstr "" + +#: .\cookbook\templates\url_import.html:400 +#, fuzzy +#| msgid "Delete Step" +msgid "Delete Text" +msgstr "Supprimer l'étape" + +#: .\cookbook\templates\url_import.html:413 +#, fuzzy +#| msgid "Delete Recipe" +msgid "Delete image" +msgstr "Supprimer la recette" + +#: .\cookbook\templates\url_import.html:429 msgid "Recipe Name" msgstr "Nom de la recette" -#: .\cookbook\templates\url_import.html:62 +#: .\cookbook\templates\url_import.html:433 #, fuzzy #| msgid "Recipe Markup Specification" msgid "Recipe Description" msgstr "Spécification Recipe Markup" -#: .\cookbook\templates\url_import.html:123 -#: .\cookbook\templates\url_import.html:155 -#: .\cookbook\templates\url_import.html:211 +#: .\cookbook\templates\url_import.html:494 +#: .\cookbook\templates\url_import.html:526 +#: .\cookbook\templates\url_import.html:582 msgid "Select one" msgstr "Faites votre choix" -#: .\cookbook\templates\url_import.html:225 +#: .\cookbook\templates\url_import.html:596 msgid "All Keywords" msgstr "Tous les mots-clés" -#: .\cookbook\templates\url_import.html:228 +#: .\cookbook\templates\url_import.html:599 msgid "Import all keywords, not only the ones already existing." msgstr "" -#: .\cookbook\templates\url_import.html:255 +#: .\cookbook\templates\url_import.html:626 msgid "Information" msgstr "Information" -#: .\cookbook\templates\url_import.html:257 +#: .\cookbook\templates\url_import.html:628 msgid "" " Only websites containing ld+json or microdata information can currently\n" " be imported. Most big recipe pages " @@ -1777,50 +2214,79 @@ msgstr "" "données sufisamment structurées, n'hésitez pas à publier un exemple dans un " "ticket sur GitHub." -#: .\cookbook\templates\url_import.html:265 +#: .\cookbook\templates\url_import.html:636 msgid "Google ld+json Info" msgstr "Google ld+json Info" -#: .\cookbook\templates\url_import.html:268 +#: .\cookbook\templates\url_import.html:639 msgid "GitHub Issues" msgstr "Ticket GitHub" -#: .\cookbook\templates\url_import.html:270 +#: .\cookbook\templates\url_import.html:641 msgid "Recipe Markup Specification" msgstr "Spécification Recipe Markup" -#: .\cookbook\views\api.py:71 +#: .\cookbook\views\api.py:77 #, fuzzy #| msgid "Parameter filter_list incorrectly formatted" msgid "Parameter updated_at incorrectly formatted" msgstr "Le paramètre filter_list n'est pas correctement formatté" -#: .\cookbook\views\api.py:455 .\cookbook\views\views.py:226 +#: .\cookbook\views\api.py:553 .\cookbook\views\views.py:295 msgid "This feature is not available in the demo version!" msgstr "" -#: .\cookbook\views\api.py:478 +#: .\cookbook\views\api.py:576 msgid "Sync successful!" msgstr "Synchro réussie !" -#: .\cookbook\views\api.py:483 +#: .\cookbook\views\api.py:581 msgid "Error synchronizing with Storage" msgstr "Erreur lors de la synchronisation avec le stockage" -#: .\cookbook\views\api.py:556 .\cookbook\views\api.py:576 +#: .\cookbook\views\api.py:649 +msgid "Nothing to do." +msgstr "" + +#: .\cookbook\views\api.py:664 +msgid "The requested site provided malformed data and cannot be read." +msgstr "Le site web a renvoyé des données malformées et ne peut être lu." + +#: .\cookbook\views\api.py:671 msgid "The requested page could not be found." msgstr "La page souhaitée n'a pas été trouvée." -#: .\cookbook\views\api.py:585 +#: .\cookbook\views\api.py:680 msgid "" -"The requested page refused to provide any information (Status Code 403)." -msgstr "La page souhaitée refuse de fournir des informations (erreur 403)." +"The requested site does not provide any recognized data format to import the " +"recipe from." +msgstr "" +"Le site web est dans un format qui ne permet pas d'importer automatiquement " +"la recette." -#: .\cookbook\views\api.py:611 -msgid "Could not parse correctly..." +#: .\cookbook\views\api.py:694 +#, fuzzy +#| msgid "The requested page could not be found." +msgid "No useable data could be found." +msgstr "La page souhaitée n'a pas été trouvée." + +#: .\cookbook\views\api.py:710 +msgid "I couldn't find anything to do." msgstr "" -#: .\cookbook\views\data.py:94 +#: .\cookbook\views\data.py:30 .\cookbook\views\data.py:121 +#: .\cookbook\views\edit.py:50 .\cookbook\views\import_export.py:67 +#: .\cookbook\views\new.py:32 +msgid "You have reached the maximum number of recipes for your space." +msgstr "" + +#: .\cookbook\views\data.py:34 .\cookbook\views\data.py:125 +#: .\cookbook\views\edit.py:54 .\cookbook\views\import_export.py:71 +#: .\cookbook\views\new.py:36 +msgid "You have more users than allowed in your space." +msgstr "" + +#: .\cookbook\views\data.py:103 #, python-format msgid "Batch edit done. %(count)d recipe was updated." msgid_plural "Batch edit done. %(count)d Recipes where updated." @@ -1834,7 +2300,7 @@ msgid "Monitor" msgstr "Surveiller" #: .\cookbook\views\delete.py:96 .\cookbook\views\lists.py:102 -#: .\cookbook\views\new.py:86 +#: .\cookbook\views\new.py:98 msgid "Storage Backend" msgstr "Espace de stockage" @@ -1845,8 +2311,8 @@ msgstr "" "Impossible de supprimer cet espace de stockage car il est utilisé dans au " "moins un dossier surveillé." -#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:204 -#: .\cookbook\views\new.py:144 +#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:213 +#: .\cookbook\views\new.py:156 msgid "Recipe Book" msgstr "Livre de recettes" @@ -1854,56 +2320,56 @@ msgstr "Livre de recettes" msgid "Bookmarks" msgstr "Marque-pages" -#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:214 +#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:252 msgid "Invite Link" msgstr "Lien d'invitation" -#: .\cookbook\views\edit.py:110 +#: .\cookbook\views\edit.py:119 msgid "Food" msgstr "Ingrédient" -#: .\cookbook\views\edit.py:119 +#: .\cookbook\views\edit.py:128 msgid "You cannot edit this storage!" msgstr "Vous ne pouvez pas modifier ce stockage !" -#: .\cookbook\views\edit.py:139 +#: .\cookbook\views\edit.py:148 msgid "Storage saved!" msgstr "Stockage sauvegardé !" -#: .\cookbook\views\edit.py:145 +#: .\cookbook\views\edit.py:154 msgid "There was an error updating this storage backend!" msgstr "" "Une erreur s'est produite lors de la mise à jour de cet espace de stockage !" -#: .\cookbook\views\edit.py:156 +#: .\cookbook\views\edit.py:165 msgid "Storage" msgstr "Stockage" -#: .\cookbook\views\edit.py:252 +#: .\cookbook\views\edit.py:261 msgid "Changes saved!" msgstr "Modifications sauvegardées !" -#: .\cookbook\views\edit.py:256 +#: .\cookbook\views\edit.py:265 msgid "Error saving changes!" msgstr "Erreur lors de la sauvegarde des modifications !" -#: .\cookbook\views\edit.py:289 +#: .\cookbook\views\edit.py:299 msgid "Units merged!" msgstr "Unités fusionnées !" -#: .\cookbook\views\edit.py:291 .\cookbook\views\edit.py:307 +#: .\cookbook\views\edit.py:301 .\cookbook\views\edit.py:317 msgid "Cannot merge with the same object!" msgstr "" -#: .\cookbook\views\edit.py:305 +#: .\cookbook\views\edit.py:315 msgid "Foods merged!" msgstr "Ingrédient fusionné !" -#: .\cookbook\views\import_export.py:73 +#: .\cookbook\views\import_export.py:93 msgid "Importing is not implemented for this provider" msgstr "" -#: .\cookbook\views\import_export.py:92 +#: .\cookbook\views\import_export.py:115 msgid "Exporting is not implemented for this provider" msgstr "" @@ -1919,23 +2385,77 @@ msgstr "Découverte" msgid "Shopping Lists" msgstr "Listes de course" -#: .\cookbook\views\new.py:111 +#: .\cookbook\views\new.py:123 msgid "Imported new recipe!" msgstr "Nouvelle recette importée !" -#: .\cookbook\views\new.py:114 +#: .\cookbook\views\new.py:126 msgid "There was an error importing this recipe!" msgstr "Une erreur s\\\\'est produite lors de l\\\\'import de cette recette !" -#: .\cookbook\views\views.py:123 +#: .\cookbook\views\new.py:226 +msgid "Hello" +msgstr "" + +#: .\cookbook\views\new.py:226 +msgid "You have been invited by " +msgstr "" + +#: .\cookbook\views\new.py:227 +msgid " to join their Tandoor Recipes space " +msgstr "" + +#: .\cookbook\views\new.py:228 +msgid "Click the following link to activate your account: " +msgstr "" + +#: .\cookbook\views\new.py:229 +msgid "" +"If the link does not work use the following code to manually join the space: " +msgstr "" + +#: .\cookbook\views\new.py:230 +msgid "The invitation is valid until " +msgstr "" + +#: .\cookbook\views\new.py:231 +msgid "" +"Tandoor Recipes is an Open Source recipe manager. Check it out on GitHub " +msgstr "" + +#: .\cookbook\views\new.py:234 +msgid "Tandoor Recipes Invite" +msgstr "" + +#: .\cookbook\views\new.py:241 +msgid "Invite link successfully send to user." +msgstr "" + +#: .\cookbook\views\new.py:244 +msgid "" +"You have send to many emails, please share the link manually or wait a few " +"hours." +msgstr "" + +#: .\cookbook\views\new.py:246 +msgid "Email to user could not be send, please share link manually." +msgstr "" + +#: .\cookbook\views\views.py:125 +msgid "" +"You have successfully created your own recipe space. Start by adding some " +"recipes or invite other people to join you." +msgstr "" + +#: .\cookbook\views\views.py:173 msgid "You do not have the required permissions to perform this action!" msgstr "Vous n'avez pas la permission d'effectuer cette action !" -#: .\cookbook\views\views.py:134 +#: .\cookbook\views\views.py:184 msgid "Comment saved!" msgstr "Commentaire enregistré !" -#: .\cookbook\views\views.py:326 +#: .\cookbook\views\views.py:396 msgid "" "The setup page can only be used to create the first user! If you have " "forgotten your superuser credentials please consult the django documentation " @@ -1946,22 +2466,58 @@ msgstr "" "utilisateur, counsultez la documentation Django pour savoir comment " "réinitialiser le mot de passe." -#: .\cookbook\views\views.py:333 .\cookbook\views\views.py:378 +#: .\cookbook\views\views.py:403 msgid "Passwords dont match!" msgstr "Les mots de passe ne correspondent pas !" -#: .\cookbook\views\views.py:349 .\cookbook\views\views.py:385 +#: .\cookbook\views\views.py:419 msgid "User has been created, please login!" msgstr "L'utilisateur a été créé, veuillez vous connecter !" -#: .\cookbook\views\views.py:365 +#: .\cookbook\views\views.py:435 msgid "Malformed Invite Link supplied!" msgstr "Le lien d'invitation fourni est mal formé !" -#: .\cookbook\views\views.py:405 +#: .\cookbook\views\views.py:441 +#, fuzzy +#| msgid "You are not logged in and therefore cannot view this page!" +msgid "You are already member of a space and therefore cannot join this one." +msgstr "Vous n'êtes pas connecté et ne pouvez donc pas afficher cette page !" + +#: .\cookbook\views\views.py:452 +msgid "Successfully joined space." +msgstr "" + +#: .\cookbook\views\views.py:458 msgid "Invite Link not valid or already used!" msgstr "Le lien d'invitation est invalide ou déjà utilisé !" +#~ msgid "" +#~ "A username is not required, if left blank the new user can choose one." +#~ msgstr "" +#~ "Il n'est pas obligatoire de renseigner un nom d'utilisateur. S'il est " +#~ "laissé vide, le nouvel utilisateur pourra le choisir." + +#~ msgid "Imported from" +#~ msgstr "Importé depuis" + +#~ msgid "Link" +#~ msgstr "Lien" + +#~ msgid "Logout" +#~ msgstr "Déconnexion" + +#~ msgid "Website Import" +#~ msgstr "Importer depuis un site web" + +#~ msgid "There was an error creating a resource!" +#~ msgstr "" +#~ "Une erreur s\\\\'est produite lors de la création d\\\\'une ressource !" + +#~ msgid "" +#~ "The requested page refused to provide any information (Status Code 403)." +#~ msgstr "La page souhaitée refuse de fournir des informations (erreur 403)." + #~ msgid "" #~ "Include - [ ] in list for easier usage in markdown based " #~ "documents." @@ -1977,6 +2533,3 @@ msgstr "Le lien d'invitation est invalide ou déjà utilisé !" #~ msgid "Preference for given user already exists" #~ msgstr "Les préférences pour cet utilisateur existent déjà" - -#~ msgid "Bookmark saved!" -#~ msgstr "Marque-page enregistré !" diff --git a/cookbook/locale/hu_HU/LC_MESSAGES/django.po b/cookbook/locale/hu_HU/LC_MESSAGES/django.po index 1967c8fe..5a06ba36 100644 --- a/cookbook/locale/hu_HU/LC_MESSAGES/django.po +++ b/cookbook/locale/hu_HU/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-04-11 15:09+0200\n" +"POT-Creation-Date: 2021-06-12 20:30+0200\n" "PO-Revision-Date: 2020-06-02 19:28+0000\n" "Last-Translator: igazka , 2020\n" "Language-Team: Hungarian (Hungary) (https://www.transifex.com/django-recipes/" @@ -22,14 +22,15 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: .\cookbook\filters.py:23 .\cookbook\templates\base.html:91 -#: .\cookbook\templates\forms\edit_internal_recipe.html:219 +#: .\cookbook\filters.py:23 .\cookbook\templates\base.html:98 +#: .\cookbook\templates\forms\edit_internal_recipe.html:246 #: .\cookbook\templates\forms\ingredients.html:34 -#: .\cookbook\templates\stats.html:28 .\cookbook\views\lists.py:67 +#: .\cookbook\templates\space.html:37 .\cookbook\templates\stats.html:28 +#: .\cookbook\templates\url_import.html:270 .\cookbook\views\lists.py:67 msgid "Ingredients" msgstr "Hozzávalók" -#: .\cookbook\forms.py:45 +#: .\cookbook\forms.py:49 msgid "" "Color of the top navigation bar. Not all colors work with all themes, just " "try them out!" @@ -37,12 +38,12 @@ msgstr "" "A felső navigációs sáv színe. Nem minden szín működik minden témával. " "Próbáld ki őket! " -#: .\cookbook\forms.py:46 +#: .\cookbook\forms.py:51 msgid "Default Unit to be used when inserting a new ingredient into a recipe." msgstr "" "Az alapértelmezett mértékegység, új hozzávaló receptbe való beillesztésekor." -#: .\cookbook\forms.py:47 +#: .\cookbook\forms.py:53 msgid "" "Enables support for fractions in ingredient amounts (e.g. convert decimals " "to fractions automatically)" @@ -50,25 +51,25 @@ msgstr "" "Lehetővé teszi az összetevők mennyiségében a törtrészek használatát (pl. A " "tizedesjegyek automatikus törtrészekké alakítása)" -#: .\cookbook\forms.py:48 +#: .\cookbook\forms.py:56 msgid "" "Users with whom newly created meal plan/shopping list entries should be " "shared by default." msgstr "" -#: .\cookbook\forms.py:49 +#: .\cookbook\forms.py:58 msgid "Show recently viewed recipes on search page." msgstr "" -#: .\cookbook\forms.py:50 +#: .\cookbook\forms.py:59 msgid "Number of decimals to round ingredients." msgstr "" -#: .\cookbook\forms.py:51 +#: .\cookbook\forms.py:60 msgid "If you want to be able to create and see comments underneath recipes." msgstr "" -#: .\cookbook\forms.py:53 +#: .\cookbook\forms.py:62 msgid "" "Setting to 0 will disable auto sync. When viewing a shopping list the list " "is updated every set seconds to sync changes someone else might have made. " @@ -76,167 +77,181 @@ msgid "" "mobile data. If lower than instance limit it is reset when saving." msgstr "" -#: .\cookbook\forms.py:56 +#: .\cookbook\forms.py:65 msgid "Makes the navbar stick to the top of the page." msgstr "" -#: .\cookbook\forms.py:72 +#: .\cookbook\forms.py:81 msgid "" "Both fields are optional. If none are given the username will be displayed " "instead" msgstr "" -#: .\cookbook\forms.py:93 .\cookbook\forms.py:315 -#: .\cookbook\templates\forms\edit_internal_recipe.html:45 +#: .\cookbook\forms.py:102 .\cookbook\forms.py:331 +#: .\cookbook\templates\forms\edit_internal_recipe.html:49 +#: .\cookbook\templates\url_import.html:154 msgid "Name" msgstr "Név" -#: .\cookbook\forms.py:94 .\cookbook\forms.py:316 -#: .\cookbook\templates\base.html:98 -#: .\cookbook\templates\forms\edit_internal_recipe.html:81 -#: .\cookbook\templates\stats.html:24 .\cookbook\templates\url_import.html:202 +#: .\cookbook\forms.py:103 .\cookbook\forms.py:332 +#: .\cookbook\templates\base.html:105 +#: .\cookbook\templates\forms\edit_internal_recipe.html:85 +#: .\cookbook\templates\space.html:33 .\cookbook\templates\stats.html:24 +#: .\cookbook\templates\url_import.html:188 +#: .\cookbook\templates\url_import.html:573 msgid "Keywords" msgstr "Kulcsszavak" -#: .\cookbook\forms.py:95 +#: .\cookbook\forms.py:104 msgid "Preparation time in minutes" msgstr "Előkészítési idő percben" -#: .\cookbook\forms.py:96 +#: .\cookbook\forms.py:105 msgid "Waiting time (cooking/baking) in minutes" msgstr "Várakozási idő (sütés/főzés) percben" -#: .\cookbook\forms.py:97 .\cookbook\forms.py:317 +#: .\cookbook\forms.py:106 .\cookbook\forms.py:333 msgid "Path" msgstr "Elérési útvonal" -#: .\cookbook\forms.py:98 +#: .\cookbook\forms.py:107 msgid "Storage UID" msgstr "Tárhely UID" -#: .\cookbook\forms.py:121 +#: .\cookbook\forms.py:133 msgid "Default" msgstr "" -#: .\cookbook\forms.py:130 +#: .\cookbook\forms.py:144 .\cookbook\templates\url_import.html:90 msgid "" "To prevent duplicates recipes with the same name as existing ones are " "ignored. Check this box to import everything." msgstr "" -#: .\cookbook\forms.py:149 +#: .\cookbook\forms.py:164 msgid "New Unit" msgstr "Új Mértékegység" -#: .\cookbook\forms.py:150 +#: .\cookbook\forms.py:165 msgid "New unit that other gets replaced by." msgstr "" -#: .\cookbook\forms.py:155 +#: .\cookbook\forms.py:170 msgid "Old Unit" msgstr "Régi Mértékegység" -#: .\cookbook\forms.py:156 +#: .\cookbook\forms.py:171 msgid "Unit that should be replaced." msgstr "" -#: .\cookbook\forms.py:172 +#: .\cookbook\forms.py:187 msgid "New Food" msgstr "Új Étel" -#: .\cookbook\forms.py:173 +#: .\cookbook\forms.py:188 msgid "New food that other gets replaced by." msgstr "" -#: .\cookbook\forms.py:178 +#: .\cookbook\forms.py:193 msgid "Old Food" msgstr "Régi Étel" -#: .\cookbook\forms.py:179 +#: .\cookbook\forms.py:194 msgid "Food that should be replaced." msgstr "" -#: .\cookbook\forms.py:197 +#: .\cookbook\forms.py:212 msgid "Add your comment: " msgstr "Add hozzá a kommented:" -#: .\cookbook\forms.py:238 +#: .\cookbook\forms.py:253 msgid "Leave empty for dropbox and enter app password for nextcloud." msgstr "" -#: .\cookbook\forms.py:245 +#: .\cookbook\forms.py:260 msgid "Leave empty for nextcloud and enter api token for dropbox." msgstr "" -#: .\cookbook\forms.py:253 +#: .\cookbook\forms.py:269 msgid "" "Leave empty for dropbox and enter only base url for nextcloud (/remote." "php/webdav/ is added automatically)" msgstr "" -#: .\cookbook\forms.py:291 +#: .\cookbook\forms.py:307 msgid "Search String" msgstr "" -#: .\cookbook\forms.py:318 +#: .\cookbook\forms.py:334 msgid "File ID" msgstr "Fájl ID:" -#: .\cookbook\forms.py:354 +#: .\cookbook\forms.py:370 msgid "You must provide at least a recipe or a title." msgstr "" -#: .\cookbook\forms.py:367 +#: .\cookbook\forms.py:383 msgid "You can list default users to share recipes with in the settings." msgstr "" -#: .\cookbook\forms.py:368 -#: .\cookbook\templates\forms\edit_internal_recipe.html:377 +#: .\cookbook\forms.py:384 +#: .\cookbook\templates\forms\edit_internal_recipe.html:404 msgid "" "You can use markdown to format this field. See the docs here" msgstr "" -#: .\cookbook\forms.py:393 -msgid "A username is not required, if left blank the new user can choose one." +#: .\cookbook\forms.py:409 +msgid "Maximum number of users for this space reached." msgstr "" -#: .\cookbook\helper\permission_helper.py:123 -#: .\cookbook\helper\permission_helper.py:129 -#: .\cookbook\helper\permission_helper.py:151 -#: .\cookbook\helper\permission_helper.py:196 -#: .\cookbook\helper\permission_helper.py:210 -#: .\cookbook\helper\permission_helper.py:221 -#: .\cookbook\helper\permission_helper.py:232 .\cookbook\views\data.py:30 -#: .\cookbook\views\views.py:112 .\cookbook\views\views.py:116 -#: .\cookbook\views\views.py:184 -msgid "You do not have the required permissions to view this page!" +#: .\cookbook\forms.py:415 +msgid "Email address already taken!" msgstr "" -#: .\cookbook\helper\permission_helper.py:141 +#: .\cookbook\forms.py:423 +msgid "" +"An email address is not required but if present the invite link will be send " +"to the user." +msgstr "" + +#: .\cookbook\forms.py:438 +msgid "Name already taken." +msgstr "" + +#: .\cookbook\forms.py:449 +msgid "Accept Terms and Privacy" +msgstr "" + +#: .\cookbook\helper\AllAuthCustomAdapter.py:30 +msgid "" +"In order to prevent spam, the requested email was not send. Please wait a " +"few minutes and try again." +msgstr "" + +#: .\cookbook\helper\permission_helper.py:124 +#: .\cookbook\helper\permission_helper.py:144 .\cookbook\views\views.py:147 msgid "You are not logged in and therefore cannot view this page!" msgstr "" -#: .\cookbook\helper\permission_helper.py:145 -#: .\cookbook\helper\permission_helper.py:167 -#: .\cookbook\helper\permission_helper.py:182 +#: .\cookbook\helper\permission_helper.py:127 +#: .\cookbook\helper\permission_helper.py:132 +#: .\cookbook\helper\permission_helper.py:154 +#: .\cookbook\helper\permission_helper.py:199 +#: .\cookbook\helper\permission_helper.py:213 +#: .\cookbook\helper\permission_helper.py:224 +#: .\cookbook\helper\permission_helper.py:235 .\cookbook\views\data.py:39 +#: .\cookbook\views\views.py:158 .\cookbook\views\views.py:165 +#: .\cookbook\views\views.py:253 +msgid "You do not have the required permissions to view this page!" +msgstr "" + +#: .\cookbook\helper\permission_helper.py:148 +#: .\cookbook\helper\permission_helper.py:170 +#: .\cookbook\helper\permission_helper.py:185 msgid "You cannot interact with this object as it is not owned by you!" msgstr "" -#: .\cookbook\helper\recipe_url_import.py:40 .\cookbook\views\api.py:549 -msgid "The requested site provided malformed data and cannot be read." -msgstr "" - -#: .\cookbook\helper\recipe_url_import.py:54 -msgid "" -"The requested site does not provide any recognized data format to import the " -"recipe from." -msgstr "" - -#: .\cookbook\helper\recipe_url_import.py:160 -msgid "Imported from" -msgstr "" - #: .\cookbook\helper\template_helper.py:60 #: .\cookbook\helper\template_helper.py:62 msgid "Could not parse template code." @@ -246,42 +261,53 @@ msgstr "" #: .\cookbook\templates\import.html:14 .\cookbook\templates\import.html:20 #: .\cookbook\templates\import_response.html:7 #: .\cookbook\templates\test.html:14 .\cookbook\templates\test.html:20 -#: .\cookbook\templates\url_import.html:233 .\cookbook\views\delete.py:60 -#: .\cookbook\views\edit.py:190 +#: .\cookbook\templates\url_import.html:27 +#: .\cookbook\templates\url_import.html:101 +#: .\cookbook\templates\url_import.html:123 +#: .\cookbook\templates\url_import.html:317 +#: .\cookbook\templates\url_import.html:604 .\cookbook\views\delete.py:60 +#: .\cookbook\views\edit.py:199 msgid "Import" msgstr "" -#: .\cookbook\integration\integration.py:131 +#: .\cookbook\integration\integration.py:162 msgid "" "Importer expected a .zip file. Did you choose the correct importer type for " "your data ?" msgstr "" -#: .\cookbook\integration\integration.py:134 +#: .\cookbook\integration\integration.py:165 +msgid "" +"An unexpected error occurred during the import. Please make sure you have " +"uploaded a valid file." +msgstr "" + +#: .\cookbook\integration\integration.py:169 msgid "The following recipes were ignored because they already existed:" msgstr "" -#: .\cookbook\integration\integration.py:137 +#: .\cookbook\integration\integration.py:173 #, python-format msgid "Imported %s recipes." msgstr "" -#: .\cookbook\integration\paprika.py:44 +#: .\cookbook\integration\paprika.py:46 msgid "Notes" msgstr "" -#: .\cookbook\integration\paprika.py:47 +#: .\cookbook\integration\paprika.py:49 msgid "Nutritional Information" msgstr "" -#: .\cookbook\integration\paprika.py:50 +#: .\cookbook\integration\paprika.py:53 msgid "Source" msgstr "" #: .\cookbook\integration\safron.py:23 -#: .\cookbook\templates\forms\edit_internal_recipe.html:75 +#: .\cookbook\templates\forms\edit_internal_recipe.html:79 #: .\cookbook\templates\include\log_cooking.html:16 -#: .\cookbook\templates\url_import.html:84 +#: .\cookbook\templates\url_import.html:224 +#: .\cookbook\templates\url_import.html:455 msgid "Servings" msgstr "" @@ -290,11 +316,11 @@ msgid "Waiting time" msgstr "" #: .\cookbook\integration\safron.py:27 -#: .\cookbook\templates\forms\edit_internal_recipe.html:69 +#: .\cookbook\templates\forms\edit_internal_recipe.html:73 msgid "Preparation Time" msgstr "" -#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:71 +#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:78 #: .\cookbook\templates\forms\ingredients.html:7 #: .\cookbook\templates\index.html:7 msgid "Cookbook" @@ -320,44 +346,74 @@ msgstr "Vacsora" msgid "Other" msgstr "" -#: .\cookbook\models.py:110 .\cookbook\templates\shopping_list.html:48 +#: .\cookbook\models.py:71 +msgid "" +"Maximum file storage for space in MB. 0 for unlimited, -1 to disable file " +"upload." +msgstr "" + +#: .\cookbook\models.py:121 .\cookbook\templates\search.html:7 +#: .\cookbook\templates\shopping_list.html:52 msgid "Search" msgstr "" -#: .\cookbook\models.py:111 .\cookbook\templates\base.html:85 +#: .\cookbook\models.py:122 .\cookbook\templates\base.html:92 #: .\cookbook\templates\meal_plan.html:5 .\cookbook\views\delete.py:152 -#: .\cookbook\views\edit.py:224 .\cookbook\views\new.py:188 +#: .\cookbook\views\edit.py:233 .\cookbook\views\new.py:201 msgid "Meal-Plan" msgstr "" -#: .\cookbook\models.py:112 .\cookbook\templates\base.html:82 +#: .\cookbook\models.py:123 .\cookbook\templates\base.html:89 msgid "Books" msgstr "" -#: .\cookbook\models.py:119 +#: .\cookbook\models.py:131 msgid "Small" msgstr "" -#: .\cookbook\models.py:119 +#: .\cookbook\models.py:131 msgid "Large" msgstr "" -#: .\cookbook\models.py:327 -#: .\cookbook\templates\forms\edit_internal_recipe.html:198 +#: .\cookbook\models.py:131 .\cookbook\templates\generic\new_template.html:6 +#: .\cookbook\templates\generic\new_template.html:14 +#: .\cookbook\templates\meal_plan.html:323 +msgid "New" +msgstr "" + +#: .\cookbook\models.py:340 +#: .\cookbook\templates\forms\edit_internal_recipe.html:202 msgid "Text" msgstr "Szöveg" -#: .\cookbook\models.py:327 -#: .\cookbook\templates\forms\edit_internal_recipe.html:199 +#: .\cookbook\models.py:340 +#: .\cookbook\templates\forms\edit_internal_recipe.html:203 msgid "Time" msgstr "" +#: .\cookbook\models.py:340 +#: .\cookbook\templates\forms\edit_internal_recipe.html:204 +#: .\cookbook\templates\forms\edit_internal_recipe.html:218 +#, fuzzy +#| msgid "File ID" +msgid "File" +msgstr "Fájl ID:" + +#: .\cookbook\serializer.py:109 +msgid "File uploads are not enabled for this Space." +msgstr "" + +#: .\cookbook\serializer.py:117 +msgid "You have reached your file upload limit." +msgstr "" + #: .\cookbook\tables.py:35 .\cookbook\templates\books.html:36 #: .\cookbook\templates\generic\edit_template.html:6 #: .\cookbook\templates\generic\edit_template.html:14 #: .\cookbook\templates\meal_plan.html:281 #: .\cookbook\templates\recipes_table.html:82 #: .\cookbook\templates\shopping_list.html:33 +#: .\cookbook\templates\space.html:84 msgid "Edit" msgstr "" @@ -371,10 +427,6 @@ msgstr "" msgid "Delete" msgstr "" -#: .\cookbook\tables.py:144 -msgid "Link" -msgstr "" - #: .\cookbook\templates\404.html:5 msgid "404 Error" msgstr "" @@ -391,21 +443,120 @@ msgstr "" msgid "Report a Bug" msgstr "" -#: .\cookbook\templates\account\login.html:7 -#: .\cookbook\templates\base.html:170 +#: .\cookbook\templates\account\email.html:6 +#: .\cookbook\templates\account\email.html:9 +msgid "E-mail Addresses" +msgstr "" + +#: .\cookbook\templates\account\email.html:11 +msgid "The following e-mail addresses are associated with your account:" +msgstr "" + +#: .\cookbook\templates\account\email.html:28 +msgid "Verified" +msgstr "" + +#: .\cookbook\templates\account\email.html:30 +msgid "Unverified" +msgstr "" + +#: .\cookbook\templates\account\email.html:32 +msgid "Primary" +msgstr "" + +#: .\cookbook\templates\account\email.html:39 +msgid "Make Primary" +msgstr "" + +#: .\cookbook\templates\account\email.html:41 +msgid "Re-send Verification" +msgstr "" + +#: .\cookbook\templates\account\email.html:42 +#: .\cookbook\templates\socialaccount\connections.html:36 +msgid "Remove" +msgstr "" + +#: .\cookbook\templates\account\email.html:50 +msgid "Warning:" +msgstr "" + +#: .\cookbook\templates\account\email.html:50 +msgid "" +"You currently do not have any e-mail address set up. You should really add " +"an e-mail address so you can receive notifications, reset your password, etc." +msgstr "" + +#: .\cookbook\templates\account\email.html:56 +msgid "Add E-mail Address" +msgstr "" + +#: .\cookbook\templates\account\email.html:61 +msgid "Add E-mail" +msgstr "" + +#: .\cookbook\templates\account\email.html:71 +msgid "Do you really want to remove the selected e-mail address?" +msgstr "" + +#: .\cookbook\templates\account\email_confirm.html:6 +#: .\cookbook\templates\account\email_confirm.html:10 +msgid "Confirm E-mail Address" +msgstr "" + +#: .\cookbook\templates\account\email_confirm.html:16 +#, python-format +msgid "" +"Please confirm that\n" +" %(email)s is an e-mail address " +"for user %(user_display)s\n" +" ." +msgstr "" + +#: .\cookbook\templates\account\email_confirm.html:22 +#: .\cookbook\templates\generic\delete_template.html:21 +msgid "Confirm" +msgstr "" + +#: .\cookbook\templates\account\email_confirm.html:29 +#, python-format +msgid "" +"This e-mail confirmation link expired or is invalid. Please\n" +" issue a new e-mail confirmation " +"request." +msgstr "" + +#: .\cookbook\templates\account\login.html:8 +#: .\cookbook\templates\base.html:180 msgid "Login" msgstr "" -#: .\cookbook\templates\account\login.html:13 -#: .\cookbook\templates\account\login.html:28 +#: .\cookbook\templates\account\login.html:15 +#: .\cookbook\templates\account\login.html:31 +#: .\cookbook\templates\account\signup.html:69 +#: .\cookbook\templates\account\signup_closed.html:15 msgid "Sign In" msgstr "" -#: .\cookbook\templates\account\login.html:38 +#: .\cookbook\templates\account\login.html:32 +msgid "Sign Up" +msgstr "" + +#: .\cookbook\templates\account\login.html:36 +#: .\cookbook\templates\account\login.html:37 +#: .\cookbook\templates\account\password_reset.html:29 +msgid "Reset My Password" +msgstr "" + +#: .\cookbook\templates\account\login.html:37 +msgid "Lost your password?" +msgstr "" + +#: .\cookbook\templates\account\login.html:48 msgid "Social Login" msgstr "" -#: .\cookbook\templates\account\login.html:39 +#: .\cookbook\templates\account\login.html:49 msgid "You can use any of the following providers to sign in." msgstr "" @@ -419,115 +570,161 @@ msgstr "" msgid "Are you sure you want to sign out?" msgstr "" -#: .\cookbook\templates\account\password_reset.html:5 -#: .\cookbook\templates\account\password_reset_done.html:5 +#: .\cookbook\templates\account\password_reset.html:7 +#: .\cookbook\templates\account\password_reset.html:13 +#: .\cookbook\templates\account\password_reset_done.html:7 +#: .\cookbook\templates\account\password_reset_done.html:10 msgid "Password Reset" msgstr "" -#: .\cookbook\templates\account\password_reset.html:9 -#: .\cookbook\templates\account\password_reset_done.html:9 -msgid "Password reset is not implemented for the time being!" +#: .\cookbook\templates\account\password_reset.html:24 +msgid "" +"Forgotten your password? Enter your e-mail address below, and we'll send you " +"an e-mail allowing you to reset it." msgstr "" -#: .\cookbook\templates\account\signup.html:5 +#: .\cookbook\templates\account\password_reset.html:32 +msgid "Password reset is disabled on this instance." +msgstr "" + +#: .\cookbook\templates\account\password_reset_done.html:16 +msgid "" +"We have sent you an e-mail. Please contact us if you do not receive it " +"within a few minutes." +msgstr "" + +#: .\cookbook\templates\account\signup.html:6 msgid "Register" msgstr "" -#: .\cookbook\templates\account\signup.html:9 -msgid "Create your Account" +#: .\cookbook\templates\account\signup.html:12 +msgid "Create an Account" msgstr "" -#: .\cookbook\templates\account\signup.html:14 +#: .\cookbook\templates\account\signup.html:42 +msgid "I accept the follwoing" +msgstr "" + +#: .\cookbook\templates\account\signup.html:45 +msgid "Terms and Conditions" +msgstr "" + +#: .\cookbook\templates\account\signup.html:48 +msgid "and" +msgstr "" + +#: .\cookbook\templates\account\signup.html:52 +msgid "Privacy Policy" +msgstr "" + +#: .\cookbook\templates\account\signup.html:65 msgid "Create User" msgstr "" -#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:160 +#: .\cookbook\templates\account\signup.html:69 +msgid "Already have an account?" +msgstr "" + +#: .\cookbook\templates\account\signup_closed.html:5 +#: .\cookbook\templates\account\signup_closed.html:11 +msgid "Sign Up Closed" +msgstr "" + +#: .\cookbook\templates\account\signup_closed.html:13 +msgid "We are sorry, but the sign up is currently closed." +msgstr "" + +#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:170 #: .\cookbook\templates\rest_framework\api.html:11 msgid "API Documentation" msgstr "" -#: .\cookbook\templates\base.html:78 +#: .\cookbook\templates\base.html:85 msgid "Utensils" msgstr "" -#: .\cookbook\templates\base.html:88 +#: .\cookbook\templates\base.html:95 msgid "Shopping" msgstr "" -#: .\cookbook\templates\base.html:102 .\cookbook\views\delete.py:84 -#: .\cookbook\views\edit.py:93 .\cookbook\views\lists.py:26 -#: .\cookbook\views\new.py:66 +#: .\cookbook\templates\base.html:109 .\cookbook\views\delete.py:84 +#: .\cookbook\views\edit.py:102 .\cookbook\views\lists.py:26 +#: .\cookbook\views\new.py:78 msgid "Keyword" msgstr "" -#: .\cookbook\templates\base.html:104 +#: .\cookbook\templates\base.html:111 msgid "Batch Edit" msgstr "" -#: .\cookbook\templates\base.html:109 +#: .\cookbook\templates\base.html:116 msgid "Storage Data" msgstr "" -#: .\cookbook\templates\base.html:113 +#: .\cookbook\templates\base.html:120 msgid "Storage Backends" msgstr "" -#: .\cookbook\templates\base.html:115 +#: .\cookbook\templates\base.html:122 msgid "Configure Sync" msgstr "" -#: .\cookbook\templates\base.html:117 +#: .\cookbook\templates\base.html:124 msgid "Discovered Recipes" msgstr "" -#: .\cookbook\templates\base.html:119 +#: .\cookbook\templates\base.html:126 msgid "Discovery Log" msgstr "" -#: .\cookbook\templates\base.html:121 .\cookbook\templates\stats.html:10 +#: .\cookbook\templates\base.html:128 .\cookbook\templates\stats.html:10 msgid "Statistics" msgstr "" -#: .\cookbook\templates\base.html:123 +#: .\cookbook\templates\base.html:130 msgid "Units & Ingredients" msgstr "" -#: .\cookbook\templates\base.html:125 +#: .\cookbook\templates\base.html:132 .\cookbook\templates\index.html:47 msgid "Import Recipe" msgstr "" -#: .\cookbook\templates\base.html:144 .\cookbook\templates\settings.html:6 +#: .\cookbook\templates\base.html:151 .\cookbook\templates\settings.html:6 #: .\cookbook\templates\settings.html:16 msgid "Settings" msgstr "" -#: .\cookbook\templates\base.html:146 .\cookbook\templates\history.html:6 +#: .\cookbook\templates\base.html:153 .\cookbook\templates\history.html:6 #: .\cookbook\templates\history.html:14 msgid "History" msgstr "" -#: .\cookbook\templates\base.html:150 .\cookbook\templates\system.html:13 +#: .\cookbook\templates\base.html:155 .\cookbook\templates\space.html:7 +msgid "Space Settings" +msgstr "" + +#: .\cookbook\templates\base.html:160 .\cookbook\templates\system.html:13 msgid "System" msgstr "" -#: .\cookbook\templates\base.html:152 +#: .\cookbook\templates\base.html:162 msgid "Admin" msgstr "" -#: .\cookbook\templates\base.html:156 +#: .\cookbook\templates\base.html:166 msgid "Markdown Guide" msgstr "" -#: .\cookbook\templates\base.html:158 +#: .\cookbook\templates\base.html:168 msgid "GitHub" msgstr "" -#: .\cookbook\templates\base.html:162 +#: .\cookbook\templates\base.html:172 msgid "API Browser" msgstr "" -#: .\cookbook\templates\base.html:165 -msgid "Logout" +#: .\cookbook\templates\base.html:175 +msgid "Log out" msgstr "" #: .\cookbook\templates\batch\edit.html:6 @@ -542,7 +739,7 @@ msgstr "" msgid "Add the specified keywords to all recipes containing a word" msgstr "" -#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:76 +#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:85 msgid "Sync" msgstr "" @@ -569,7 +766,7 @@ msgstr "" msgid "Importing Recipes" msgstr "" -#: .\cookbook\templates\batch\waiting.html:23 +#: .\cookbook\templates\batch\waiting.html:28 msgid "" "This can take a few minutes, depending on the number of recipes in sync, " "please wait." @@ -606,26 +803,33 @@ msgid "Export Recipes" msgstr "" #: .\cookbook\templates\export.html:14 .\cookbook\templates\export.html:20 -#: .\cookbook\templates\shopping_list.html:347 +#: .\cookbook\templates\shopping_list.html:351 #: .\cookbook\templates\test2.html:14 .\cookbook\templates\test2.html:20 msgid "Export" msgstr "" +#: .\cookbook\templates\files.html:7 +#, fuzzy +#| msgid "File ID" +msgid "Files" +msgstr "Fájl ID:" + #: .\cookbook\templates\forms\edit_import_recipe.html:5 #: .\cookbook\templates\forms\edit_import_recipe.html:9 msgid "Import new Recipe" msgstr "" #: .\cookbook\templates\forms\edit_import_recipe.html:14 -#: .\cookbook\templates\forms\edit_internal_recipe.html:389 -#: .\cookbook\templates\forms\edit_internal_recipe.html:421 +#: .\cookbook\templates\forms\edit_internal_recipe.html:416 +#: .\cookbook\templates\forms\edit_internal_recipe.html:448 #: .\cookbook\templates\generic\edit_template.html:23 #: .\cookbook\templates\generic\new_template.html:23 #: .\cookbook\templates\include\log_cooking.html:28 #: .\cookbook\templates\meal_plan.html:325 -#: .\cookbook\templates\settings.html:28 .\cookbook\templates\settings.html:35 -#: .\cookbook\templates\settings.html:58 .\cookbook\templates\settings.html:73 -#: .\cookbook\templates\shopping_list.html:349 +#: .\cookbook\templates\settings.html:44 .\cookbook\templates\settings.html:52 +#: .\cookbook\templates\settings.html:96 +#: .\cookbook\templates\settings.html:114 +#: .\cookbook\templates\shopping_list.html:353 msgid "Save" msgstr "" @@ -634,181 +838,188 @@ msgstr "" msgid "Edit Recipe" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:52 +#: .\cookbook\templates\forms\edit_internal_recipe.html:56 +#: .\cookbook\templates\url_import.html:171 msgid "Description" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:72 +#: .\cookbook\templates\forms\edit_internal_recipe.html:76 msgid "Waiting Time" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:78 +#: .\cookbook\templates\forms\edit_internal_recipe.html:82 msgid "Servings Text" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:89 +#: .\cookbook\templates\forms\edit_internal_recipe.html:93 msgid "Select Keywords" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:90 -#: .\cookbook\templates\url_import.html:212 +#: .\cookbook\templates\forms\edit_internal_recipe.html:94 +#: .\cookbook\templates\url_import.html:583 #, fuzzy #| msgid "Keywords" msgid "Add Keyword" msgstr "Kulcsszavak" -#: .\cookbook\templates\forms\edit_internal_recipe.html:108 +#: .\cookbook\templates\forms\edit_internal_recipe.html:112 msgid "Nutrition" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:112 -#: .\cookbook\templates\forms\edit_internal_recipe.html:162 +#: .\cookbook\templates\forms\edit_internal_recipe.html:116 +#: .\cookbook\templates\forms\edit_internal_recipe.html:166 msgid "Delete Step" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:116 +#: .\cookbook\templates\forms\edit_internal_recipe.html:120 msgid "Calories" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:119 +#: .\cookbook\templates\forms\edit_internal_recipe.html:123 msgid "Carbohydrates" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:122 +#: .\cookbook\templates\forms\edit_internal_recipe.html:126 msgid "Fats" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:124 +#: .\cookbook\templates\forms\edit_internal_recipe.html:128 msgid "Proteins" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:146 -#: .\cookbook\templates\forms\edit_internal_recipe.html:454 +#: .\cookbook\templates\forms\edit_internal_recipe.html:150 +#: .\cookbook\templates\forms\edit_internal_recipe.html:481 msgid "Step" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:167 +#: .\cookbook\templates\forms\edit_internal_recipe.html:171 msgid "Show as header" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:173 +#: .\cookbook\templates\forms\edit_internal_recipe.html:177 msgid "Hide as header" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:178 +#: .\cookbook\templates\forms\edit_internal_recipe.html:182 msgid "Move Up" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:183 +#: .\cookbook\templates\forms\edit_internal_recipe.html:187 msgid "Move Down" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:192 +#: .\cookbook\templates\forms\edit_internal_recipe.html:196 msgid "Step Name" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:196 +#: .\cookbook\templates\forms\edit_internal_recipe.html:200 msgid "Step Type" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:207 +#: .\cookbook\templates\forms\edit_internal_recipe.html:212 msgid "Step time in Minutes" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:261 -#: .\cookbook\templates\shopping_list.html:183 -msgid "Select Unit" +#: .\cookbook\templates\forms\edit_internal_recipe.html:228 +msgid "Select File" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:262 -#: .\cookbook\templates\forms\edit_internal_recipe.html:286 -#: .\cookbook\templates\shopping_list.html:184 -#: .\cookbook\templates\shopping_list.html:206 -msgid "Create" -msgstr "" - -#: .\cookbook\templates\forms\edit_internal_recipe.html:263 -#: .\cookbook\templates\forms\edit_internal_recipe.html:287 -#: .\cookbook\templates\shopping_list.html:185 -#: .\cookbook\templates\shopping_list.html:207 -#: .\cookbook\templates\shopping_list.html:237 -#: .\cookbook\templates\shopping_list.html:261 -#: .\cookbook\templates\url_import.html:124 -#: .\cookbook\templates\url_import.html:156 +#: .\cookbook\templates\forms\edit_internal_recipe.html:229 +#: .\cookbook\templates\forms\edit_internal_recipe.html:290 +#: .\cookbook\templates\forms\edit_internal_recipe.html:314 +#: .\cookbook\templates\shopping_list.html:189 +#: .\cookbook\templates\shopping_list.html:211 +#: .\cookbook\templates\shopping_list.html:241 +#: .\cookbook\templates\shopping_list.html:265 +#: .\cookbook\templates\url_import.html:495 +#: .\cookbook\templates\url_import.html:527 msgid "Select" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:285 -#: .\cookbook\templates\shopping_list.html:205 +#: .\cookbook\templates\forms\edit_internal_recipe.html:288 +#: .\cookbook\templates\shopping_list.html:187 +msgid "Select Unit" +msgstr "" + +#: .\cookbook\templates\forms\edit_internal_recipe.html:289 +#: .\cookbook\templates\forms\edit_internal_recipe.html:313 +#: .\cookbook\templates\shopping_list.html:188 +#: .\cookbook\templates\shopping_list.html:210 +msgid "Create" +msgstr "" + +#: .\cookbook\templates\forms\edit_internal_recipe.html:312 +#: .\cookbook\templates\shopping_list.html:209 msgid "Select Food" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:302 +#: .\cookbook\templates\forms\edit_internal_recipe.html:329 #: .\cookbook\templates\meal_plan.html:256 -#: .\cookbook\templates\url_import.html:171 +#: .\cookbook\templates\url_import.html:542 msgid "Note" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:319 +#: .\cookbook\templates\forms\edit_internal_recipe.html:346 msgid "Delete Ingredient" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:325 +#: .\cookbook\templates\forms\edit_internal_recipe.html:352 msgid "Make Header" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:331 +#: .\cookbook\templates\forms\edit_internal_recipe.html:358 msgid "Make Ingredient" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:337 +#: .\cookbook\templates\forms\edit_internal_recipe.html:364 msgid "Disable Amount" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:343 +#: .\cookbook\templates\forms\edit_internal_recipe.html:370 msgid "Enable Amount" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:348 +#: .\cookbook\templates\forms\edit_internal_recipe.html:375 msgid "Copy Template Reference" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:374 -#: .\cookbook\templates\url_import.html:196 +#: .\cookbook\templates\forms\edit_internal_recipe.html:401 +#: .\cookbook\templates\url_import.html:297 +#: .\cookbook\templates\url_import.html:567 msgid "Instructions" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:387 -#: .\cookbook\templates\forms\edit_internal_recipe.html:418 +#: .\cookbook\templates\forms\edit_internal_recipe.html:414 +#: .\cookbook\templates\forms\edit_internal_recipe.html:445 msgid "Save & View" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:391 -#: .\cookbook\templates\forms\edit_internal_recipe.html:424 +#: .\cookbook\templates\forms\edit_internal_recipe.html:418 +#: .\cookbook\templates\forms\edit_internal_recipe.html:451 msgid "Add Step" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:394 -#: .\cookbook\templates\forms\edit_internal_recipe.html:428 +#: .\cookbook\templates\forms\edit_internal_recipe.html:421 +#: .\cookbook\templates\forms\edit_internal_recipe.html:455 msgid "Add Nutrition" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:396 -#: .\cookbook\templates\forms\edit_internal_recipe.html:430 +#: .\cookbook\templates\forms\edit_internal_recipe.html:423 +#: .\cookbook\templates\forms\edit_internal_recipe.html:457 msgid "Remove Nutrition" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:398 -#: .\cookbook\templates\forms\edit_internal_recipe.html:433 +#: .\cookbook\templates\forms\edit_internal_recipe.html:425 +#: .\cookbook\templates\forms\edit_internal_recipe.html:460 msgid "View Recipe" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:400 -#: .\cookbook\templates\forms\edit_internal_recipe.html:435 +#: .\cookbook\templates\forms\edit_internal_recipe.html:427 +#: .\cookbook\templates\forms\edit_internal_recipe.html:462 msgid "Delete Recipe" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:441 +#: .\cookbook\templates\forms\edit_internal_recipe.html:468 msgid "Steps" msgstr "" @@ -828,7 +1039,7 @@ msgid "" msgstr "" #: .\cookbook\templates\forms\ingredients.html:24 -#: .\cookbook\templates\stats.html:26 +#: .\cookbook\templates\space.html:35 .\cookbook\templates\stats.html:26 msgid "Units" msgstr "" @@ -850,10 +1061,6 @@ msgstr "" msgid "Are you sure you want to delete the %(title)s: %(object)s " msgstr "" -#: .\cookbook\templates\generic\delete_template.html:21 -msgid "Confirm" -msgstr "" - #: .\cookbook\templates\generic\edit_template.html:30 msgid "View" msgstr "" @@ -875,12 +1082,6 @@ msgstr "" msgid "Import all" msgstr "" -#: .\cookbook\templates\generic\new_template.html:6 -#: .\cookbook\templates\generic\new_template.html:14 -#: .\cookbook\templates\meal_plan.html:323 -msgid "New" -msgstr "" - #: .\cookbook\templates\generic\table_template.html:76 #: .\cookbook\templates\recipes_table.html:121 msgid "previous" @@ -925,7 +1126,7 @@ msgstr "" #: .\cookbook\templates\include\recipe_open_modal.html:7 #: .\cookbook\templates\meal_plan.html:247 .\cookbook\views\delete.py:28 -#: .\cookbook\views\edit.py:264 .\cookbook\views\new.py:40 +#: .\cookbook\views\edit.py:273 .\cookbook\views\new.py:52 msgid "Recipe" msgstr "" @@ -958,10 +1159,6 @@ msgstr "" msgid "New Recipe" msgstr "" -#: .\cookbook\templates\index.html:47 -msgid "Website Import" -msgstr "" - #: .\cookbook\templates\index.html:53 msgid "Advanced Search" msgstr "" @@ -975,7 +1172,7 @@ msgid "Last viewed" msgstr "" #: .\cookbook\templates\index.html:87 .\cookbook\templates\meal_plan.html:178 -#: .\cookbook\templates\stats.html:22 +#: .\cookbook\templates\space.html:29 .\cookbook\templates\stats.html:22 msgid "Recipes" msgstr "" @@ -1123,7 +1320,7 @@ msgid "New Entry" msgstr "" #: .\cookbook\templates\meal_plan.html:113 -#: .\cookbook\templates\shopping_list.html:52 +#: .\cookbook\templates\shopping_list.html:56 msgid "Search Recipe" msgstr "" @@ -1153,7 +1350,7 @@ msgstr "" #: .\cookbook\templates\meal_plan.html:168 #: .\cookbook\templates\shopping_list.html:7 #: .\cookbook\templates\shopping_list.html:29 -#: .\cookbook\templates\shopping_list.html:705 +#: .\cookbook\templates\shopping_list.html:714 msgid "Shopping List" msgstr "" @@ -1203,7 +1400,7 @@ msgstr "" #: .\cookbook\templates\meal_plan.html:270 #: .\cookbook\templates\meal_plan_entry.html:20 -#: .\cookbook\templates\shopping_list.html:250 +#: .\cookbook\templates\shopping_list.html:254 msgid "Shared with" msgstr "" @@ -1278,7 +1475,6 @@ msgstr "" #: .\cookbook\templates\no_groups_info.html:18 #: .\cookbook\templates\no_perm_info.html:15 -#: .\cookbook\templates\no_space_info.html:15 msgid "Please contact your administrator." msgstr "" @@ -1293,13 +1489,48 @@ msgid "" "action." msgstr "" -#: .\cookbook\templates\no_space_info.html:5 -#: .\cookbook\templates\no_space_info.html:12 +#: .\cookbook\templates\no_space_info.html:6 +#: .\cookbook\templates\no_space_info.html:13 msgid "No Space" msgstr "" -#: .\cookbook\templates\no_space_info.html:15 -msgid "You are not a member of any space." +#: .\cookbook\templates\no_space_info.html:17 +msgid "" +"Recipes, foods, shopping lists and more are organized in spaces of one or " +"more people." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:18 +msgid "" +"You can either be invited into an existing space or create your own one." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:31 +#: .\cookbook\templates\no_space_info.html:40 +msgid "Join Space" +msgstr "" + +#: .\cookbook\templates\no_space_info.html:34 +msgid "Join an existing space." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:35 +msgid "" +"To join an existing space either enter your invite token or click on the " +"invite link the space owner send you." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:48 +#: .\cookbook\templates\no_space_info.html:56 +msgid "Create Space" +msgstr "" + +#: .\cookbook\templates\no_space_info.html:51 +msgid "Create your own recipe space." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:52 +msgid "Start your own recipe space and invite other users to it." msgstr "" #: .\cookbook\templates\offline.html:6 @@ -1316,28 +1547,29 @@ msgid "" "recently viewed them. Keep in mind that data might be outdated." msgstr "" -#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\stats.html:47 +#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\space.html:56 +#: .\cookbook\templates\stats.html:47 msgid "Comments" msgstr "" #: .\cookbook\templates\recipe_view.html:44 .\cookbook\views\delete.py:118 -#: .\cookbook\views\edit.py:170 +#: .\cookbook\views\edit.py:179 msgid "Comment" msgstr "" #: .\cookbook\templates\recipes_table.html:19 #: .\cookbook\templates\recipes_table.html:23 -#: .\cookbook\templates\url_import.html:69 +#: .\cookbook\templates\url_import.html:440 msgid "Recipe Image" msgstr "" #: .\cookbook\templates\recipes_table.html:51 -#: .\cookbook\templates\url_import.html:74 +#: .\cookbook\templates\url_import.html:445 msgid "Preparation time ca." msgstr "" #: .\cookbook\templates\recipes_table.html:57 -#: .\cookbook\templates\url_import.html:79 +#: .\cookbook\templates\url_import.html:450 msgid "Waiting time ca." msgstr "" @@ -1353,39 +1585,67 @@ msgstr "" msgid "Recipe Home" msgstr "" -#: .\cookbook\templates\settings.html:22 +#: .\cookbook\templates\settings.html:23 msgid "Account" msgstr "" -#: .\cookbook\templates\settings.html:38 -msgid "Link social account" +#: .\cookbook\templates\settings.html:27 +msgid "Preferences" msgstr "" -#: .\cookbook\templates\settings.html:42 +#: .\cookbook\templates\settings.html:31 +msgid "API-Settings" +msgstr "" + +#: .\cookbook\templates\settings.html:39 +msgid "Name Settings" +msgstr "" + +#: .\cookbook\templates\settings.html:47 +msgid "Password Settings" +msgstr "" + +#: .\cookbook\templates\settings.html:55 +msgid "Email Settings" +msgstr "" + +#: .\cookbook\templates\settings.html:57 +msgid "Manage Email Settings" +msgstr "" + +#: .\cookbook\templates\settings.html:61 +msgid "Social" +msgstr "" + +#: .\cookbook\templates\settings.html:63 +msgid "Manage Social Accounts" +msgstr "" + +#: .\cookbook\templates\settings.html:75 msgid "Language" msgstr "" -#: .\cookbook\templates\settings.html:67 +#: .\cookbook\templates\settings.html:105 msgid "Style" msgstr "" -#: .\cookbook\templates\settings.html:79 +#: .\cookbook\templates\settings.html:125 msgid "API Token" msgstr "" -#: .\cookbook\templates\settings.html:80 +#: .\cookbook\templates\settings.html:126 msgid "" "You can use both basic authentication and token based authentication to " "access the REST API." msgstr "" -#: .\cookbook\templates\settings.html:92 +#: .\cookbook\templates\settings.html:143 msgid "" "Use the token as an Authorization header prefixed by the word token as shown " "in the following examples:" msgstr "" -#: .\cookbook\templates\settings.html:94 +#: .\cookbook\templates\settings.html:145 msgid "or" msgstr "" @@ -1406,58 +1666,55 @@ msgstr "" msgid "Create Superuser account" msgstr "" -#: .\cookbook\templates\shopping_list.html:75 +#: .\cookbook\templates\shopping_list.html:79 msgid "Shopping Recipes" msgstr "" -#: .\cookbook\templates\shopping_list.html:79 +#: .\cookbook\templates\shopping_list.html:83 msgid "No recipes selected" msgstr "" -#: .\cookbook\templates\shopping_list.html:146 +#: .\cookbook\templates\shopping_list.html:150 msgid "Entry Mode" msgstr "" -#: .\cookbook\templates\shopping_list.html:154 +#: .\cookbook\templates\shopping_list.html:158 msgid "Add Entry" msgstr "" -#: .\cookbook\templates\shopping_list.html:170 +#: .\cookbook\templates\shopping_list.html:174 msgid "Amount" msgstr "" -#: .\cookbook\templates\shopping_list.html:226 +#: .\cookbook\templates\shopping_list.html:230 +#: .\cookbook\templates\supermarket.html:7 msgid "Supermarket" msgstr "" -#: .\cookbook\templates\shopping_list.html:236 +#: .\cookbook\templates\shopping_list.html:240 msgid "Select Supermarket" msgstr "" -#: .\cookbook\templates\shopping_list.html:260 +#: .\cookbook\templates\shopping_list.html:264 msgid "Select User" msgstr "" -#: .\cookbook\templates\shopping_list.html:279 +#: .\cookbook\templates\shopping_list.html:283 msgid "Finished" msgstr "" -#: .\cookbook\templates\shopping_list.html:292 +#: .\cookbook\templates\shopping_list.html:296 msgid "You are offline, shopping list might not syncronize." msgstr "" -#: .\cookbook\templates\shopping_list.html:357 +#: .\cookbook\templates\shopping_list.html:361 msgid "Copy/Export" msgstr "" -#: .\cookbook\templates\shopping_list.html:361 +#: .\cookbook\templates\shopping_list.html:365 msgid "List Prefix" msgstr "" -#: .\cookbook\templates\shopping_list.html:708 -msgid "There was an error creating a resource!" -msgstr "" - #: .\cookbook\templates\socialaccount\connections.html:4 #: .\cookbook\templates\socialaccount\connections.html:7 msgid "Account Connections" @@ -1469,10 +1726,6 @@ msgid "" " accounts:" msgstr "" -#: .\cookbook\templates\socialaccount\connections.html:36 -msgid "Remove" -msgstr "" - #: .\cookbook\templates\socialaccount\connections.html:44 msgid "" "You currently have no social network accounts connected to this account." @@ -1482,38 +1735,87 @@ msgstr "" msgid "Add a 3rd Party Account" msgstr "" -#: .\cookbook\templates\stats.html:4 -msgid "Stats" +#: .\cookbook\templates\space.html:18 +msgid "Manage Subscription" msgstr "" -#: .\cookbook\templates\stats.html:19 +#: .\cookbook\templates\space.html:26 .\cookbook\templates\stats.html:19 msgid "Number of objects" msgstr "" -#: .\cookbook\templates\stats.html:30 +#: .\cookbook\templates\space.html:39 .\cookbook\templates\stats.html:30 msgid "Recipe Imports" msgstr "" -#: .\cookbook\templates\stats.html:38 +#: .\cookbook\templates\space.html:47 .\cookbook\templates\stats.html:38 msgid "Objects stats" msgstr "" -#: .\cookbook\templates\stats.html:41 +#: .\cookbook\templates\space.html:50 .\cookbook\templates\stats.html:41 msgid "Recipes without Keywords" msgstr "" -#: .\cookbook\templates\stats.html:43 +#: .\cookbook\templates\space.html:52 .\cookbook\templates\stats.html:43 msgid "External Recipes" msgstr "" -#: .\cookbook\templates\stats.html:45 +#: .\cookbook\templates\space.html:54 .\cookbook\templates\stats.html:45 msgid "Internal Recipes" msgstr "" -#: .\cookbook\templates\system.html:21 .\cookbook\views\lists.py:115 +#: .\cookbook\templates\space.html:67 +msgid "Members" +msgstr "" + +#: .\cookbook\templates\space.html:71 +msgid "Invite User" +msgstr "" + +#: .\cookbook\templates\space.html:82 +msgid "User" +msgstr "" + +#: .\cookbook\templates\space.html:83 +msgid "Groups" +msgstr "" + +#: .\cookbook\templates\space.html:99 +msgid "admin" +msgstr "" + +#: .\cookbook\templates\space.html:100 +msgid "user" +msgstr "" + +#: .\cookbook\templates\space.html:101 +msgid "guest" +msgstr "" + +#: .\cookbook\templates\space.html:102 +msgid "remove" +msgstr "" + +#: .\cookbook\templates\space.html:106 +msgid "Update" +msgstr "" + +#: .\cookbook\templates\space.html:110 +msgid "You cannot edit yourself." +msgstr "" + +#: .\cookbook\templates\space.html:117 +msgid "There are no members in your space yet!" +msgstr "" + +#: .\cookbook\templates\space.html:124 .\cookbook\templates\system.html:21 +#: .\cookbook\views\lists.py:115 msgid "Invite Links" msgstr "" +#: .\cookbook\templates\stats.html:4 +msgid "Stats" +msgstr "" + #: .\cookbook\templates\system.html:22 msgid "Show Links" msgstr "" @@ -1611,45 +1913,141 @@ msgid "" " " msgstr "" -#: .\cookbook\templates\url_import.html:5 +#: .\cookbook\templates\url_import.html:6 msgid "URL Import" msgstr "" -#: .\cookbook\templates\url_import.html:23 +#: .\cookbook\templates\url_import.html:31 +msgid "Drag me to your bookmarks to import recipes from anywhere" +msgstr "" + +#: .\cookbook\templates\url_import.html:32 +msgid "Bookmark Me!" +msgstr "" + +#: .\cookbook\templates\url_import.html:61 msgid "Enter website URL" msgstr "" -#: .\cookbook\templates\url_import.html:36 -msgid "Enter json directly" +#: .\cookbook\templates\url_import.html:97 +msgid "Select recipe files to import or drop them here..." msgstr "" -#: .\cookbook\templates\url_import.html:57 +#: .\cookbook\templates\url_import.html:118 +msgid "Paste json or html source here to load recipe." +msgstr "" + +#: .\cookbook\templates\url_import.html:146 +msgid "Preview Recipe Data" +msgstr "" + +#: .\cookbook\templates\url_import.html:147 +msgid "Drag recipe attributes from the right into the appropriate box below." +msgstr "" + +#: .\cookbook\templates\url_import.html:156 +#: .\cookbook\templates\url_import.html:173 +#: .\cookbook\templates\url_import.html:190 +#: .\cookbook\templates\url_import.html:209 +#: .\cookbook\templates\url_import.html:227 +#: .\cookbook\templates\url_import.html:242 +#: .\cookbook\templates\url_import.html:257 +#: .\cookbook\templates\url_import.html:273 +#: .\cookbook\templates\url_import.html:300 +#: .\cookbook\templates\url_import.html:351 +msgid "Clear Contents" +msgstr "" + +#: .\cookbook\templates\url_import.html:158 +msgid "Text dragged here will be appended to the name." +msgstr "" + +#: .\cookbook\templates\url_import.html:175 +msgid "Text dragged here will be appended to the description." +msgstr "" + +#: .\cookbook\templates\url_import.html:192 +msgid "Keywords dragged here will be appended to current list" +msgstr "" + +#: .\cookbook\templates\url_import.html:207 +msgid "Image" +msgstr "" + +#: .\cookbook\templates\url_import.html:239 +msgid "Prep Time" +msgstr "" + +#: .\cookbook\templates\url_import.html:254 +msgid "Cook Time" +msgstr "" + +#: .\cookbook\templates\url_import.html:275 +msgid "Ingredients dragged here will be appended to current list." +msgstr "" + +#: .\cookbook\templates\url_import.html:302 +msgid "" +"Recipe instructions dragged here will be appended to current instructions." +msgstr "" + +#: .\cookbook\templates\url_import.html:325 +msgid "Discovered Attributes" +msgstr "" + +#: .\cookbook\templates\url_import.html:327 +msgid "" +"Drag recipe attributes from below into the appropriate box on the left. " +"Click any node to display its full properties." +msgstr "" + +#: .\cookbook\templates\url_import.html:344 +msgid "Show Blank Field" +msgstr "" + +#: .\cookbook\templates\url_import.html:349 +msgid "Blank Field" +msgstr "" + +#: .\cookbook\templates\url_import.html:353 +msgid "Items dragged to Blank Field will be appended." +msgstr "" + +#: .\cookbook\templates\url_import.html:400 +msgid "Delete Text" +msgstr "" + +#: .\cookbook\templates\url_import.html:413 +msgid "Delete image" +msgstr "" + +#: .\cookbook\templates\url_import.html:429 msgid "Recipe Name" msgstr "" -#: .\cookbook\templates\url_import.html:62 +#: .\cookbook\templates\url_import.html:433 msgid "Recipe Description" msgstr "" -#: .\cookbook\templates\url_import.html:123 -#: .\cookbook\templates\url_import.html:155 -#: .\cookbook\templates\url_import.html:211 +#: .\cookbook\templates\url_import.html:494 +#: .\cookbook\templates\url_import.html:526 +#: .\cookbook\templates\url_import.html:582 msgid "Select one" msgstr "" -#: .\cookbook\templates\url_import.html:225 +#: .\cookbook\templates\url_import.html:596 msgid "All Keywords" msgstr "" -#: .\cookbook\templates\url_import.html:228 +#: .\cookbook\templates\url_import.html:599 msgid "Import all keywords, not only the ones already existing." msgstr "" -#: .\cookbook\templates\url_import.html:255 +#: .\cookbook\templates\url_import.html:626 msgid "Information" msgstr "" -#: .\cookbook\templates\url_import.html:257 +#: .\cookbook\templates\url_import.html:628 msgid "" " Only websites containing ld+json or microdata information can currently\n" " be imported. Most big recipe pages " @@ -1660,48 +2058,73 @@ msgid "" " github issues." msgstr "" -#: .\cookbook\templates\url_import.html:265 +#: .\cookbook\templates\url_import.html:636 msgid "Google ld+json Info" msgstr "" -#: .\cookbook\templates\url_import.html:268 +#: .\cookbook\templates\url_import.html:639 msgid "GitHub Issues" msgstr "" -#: .\cookbook\templates\url_import.html:270 +#: .\cookbook\templates\url_import.html:641 msgid "Recipe Markup Specification" msgstr "" -#: .\cookbook\views\api.py:71 +#: .\cookbook\views\api.py:77 msgid "Parameter updated_at incorrectly formatted" msgstr "" -#: .\cookbook\views\api.py:455 .\cookbook\views\views.py:226 +#: .\cookbook\views\api.py:553 .\cookbook\views\views.py:295 msgid "This feature is not available in the demo version!" msgstr "" -#: .\cookbook\views\api.py:478 +#: .\cookbook\views\api.py:576 msgid "Sync successful!" msgstr "" -#: .\cookbook\views\api.py:483 +#: .\cookbook\views\api.py:581 msgid "Error synchronizing with Storage" msgstr "" -#: .\cookbook\views\api.py:556 .\cookbook\views\api.py:576 +#: .\cookbook\views\api.py:649 +msgid "Nothing to do." +msgstr "" + +#: .\cookbook\views\api.py:664 +msgid "The requested site provided malformed data and cannot be read." +msgstr "" + +#: .\cookbook\views\api.py:671 msgid "The requested page could not be found." msgstr "" -#: .\cookbook\views\api.py:585 +#: .\cookbook\views\api.py:680 msgid "" -"The requested page refused to provide any information (Status Code 403)." +"The requested site does not provide any recognized data format to import the " +"recipe from." msgstr "" -#: .\cookbook\views\api.py:611 -msgid "Could not parse correctly..." +#: .\cookbook\views\api.py:694 +msgid "No useable data could be found." msgstr "" -#: .\cookbook\views\data.py:94 +#: .\cookbook\views\api.py:710 +msgid "I couldn't find anything to do." +msgstr "" + +#: .\cookbook\views\data.py:30 .\cookbook\views\data.py:121 +#: .\cookbook\views\edit.py:50 .\cookbook\views\import_export.py:67 +#: .\cookbook\views\new.py:32 +msgid "You have reached the maximum number of recipes for your space." +msgstr "" + +#: .\cookbook\views\data.py:34 .\cookbook\views\data.py:125 +#: .\cookbook\views\edit.py:54 .\cookbook\views\import_export.py:71 +#: .\cookbook\views\new.py:36 +msgid "You have more users than allowed in your space." +msgstr "" + +#: .\cookbook\views\data.py:103 #, python-format msgid "Batch edit done. %(count)d recipe was updated." msgid_plural "Batch edit done. %(count)d Recipes where updated." @@ -1713,7 +2136,7 @@ msgid "Monitor" msgstr "" #: .\cookbook\views\delete.py:96 .\cookbook\views\lists.py:102 -#: .\cookbook\views\new.py:86 +#: .\cookbook\views\new.py:98 msgid "Storage Backend" msgstr "" @@ -1722,8 +2145,8 @@ msgid "" "Could not delete this storage backend as it is used in at least one monitor." msgstr "" -#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:204 -#: .\cookbook\views\new.py:144 +#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:213 +#: .\cookbook\views\new.py:156 msgid "Recipe Book" msgstr "" @@ -1731,55 +2154,55 @@ msgstr "" msgid "Bookmarks" msgstr "" -#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:214 +#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:252 msgid "Invite Link" msgstr "" -#: .\cookbook\views\edit.py:110 +#: .\cookbook\views\edit.py:119 msgid "Food" msgstr "" -#: .\cookbook\views\edit.py:119 +#: .\cookbook\views\edit.py:128 msgid "You cannot edit this storage!" msgstr "" -#: .\cookbook\views\edit.py:139 +#: .\cookbook\views\edit.py:148 msgid "Storage saved!" msgstr "" -#: .\cookbook\views\edit.py:145 +#: .\cookbook\views\edit.py:154 msgid "There was an error updating this storage backend!" msgstr "" -#: .\cookbook\views\edit.py:156 +#: .\cookbook\views\edit.py:165 msgid "Storage" msgstr "" -#: .\cookbook\views\edit.py:252 +#: .\cookbook\views\edit.py:261 msgid "Changes saved!" msgstr "" -#: .\cookbook\views\edit.py:256 +#: .\cookbook\views\edit.py:265 msgid "Error saving changes!" msgstr "" -#: .\cookbook\views\edit.py:289 +#: .\cookbook\views\edit.py:299 msgid "Units merged!" msgstr "" -#: .\cookbook\views\edit.py:291 .\cookbook\views\edit.py:307 +#: .\cookbook\views\edit.py:301 .\cookbook\views\edit.py:317 msgid "Cannot merge with the same object!" msgstr "" -#: .\cookbook\views\edit.py:305 +#: .\cookbook\views\edit.py:315 msgid "Foods merged!" msgstr "" -#: .\cookbook\views\import_export.py:73 +#: .\cookbook\views\import_export.py:93 msgid "Importing is not implemented for this provider" msgstr "" -#: .\cookbook\views\import_export.py:92 +#: .\cookbook\views\import_export.py:115 msgid "Exporting is not implemented for this provider" msgstr "" @@ -1795,41 +2218,103 @@ msgstr "" msgid "Shopping Lists" msgstr "" -#: .\cookbook\views\new.py:111 +#: .\cookbook\views\new.py:123 msgid "Imported new recipe!" msgstr "" -#: .\cookbook\views\new.py:114 +#: .\cookbook\views\new.py:126 msgid "There was an error importing this recipe!" msgstr "" -#: .\cookbook\views\views.py:123 +#: .\cookbook\views\new.py:226 +msgid "Hello" +msgstr "" + +#: .\cookbook\views\new.py:226 +msgid "You have been invited by " +msgstr "" + +#: .\cookbook\views\new.py:227 +msgid " to join their Tandoor Recipes space " +msgstr "" + +#: .\cookbook\views\new.py:228 +msgid "Click the following link to activate your account: " +msgstr "" + +#: .\cookbook\views\new.py:229 +msgid "" +"If the link does not work use the following code to manually join the space: " +msgstr "" + +#: .\cookbook\views\new.py:230 +msgid "The invitation is valid until " +msgstr "" + +#: .\cookbook\views\new.py:231 +msgid "" +"Tandoor Recipes is an Open Source recipe manager. Check it out on GitHub " +msgstr "" + +#: .\cookbook\views\new.py:234 +msgid "Tandoor Recipes Invite" +msgstr "" + +#: .\cookbook\views\new.py:241 +msgid "Invite link successfully send to user." +msgstr "" + +#: .\cookbook\views\new.py:244 +msgid "" +"You have send to many emails, please share the link manually or wait a few " +"hours." +msgstr "" + +#: .\cookbook\views\new.py:246 +msgid "Email to user could not be send, please share link manually." +msgstr "" + +#: .\cookbook\views\views.py:125 +msgid "" +"You have successfully created your own recipe space. Start by adding some " +"recipes or invite other people to join you." +msgstr "" + +#: .\cookbook\views\views.py:173 msgid "You do not have the required permissions to perform this action!" msgstr "" -#: .\cookbook\views\views.py:134 +#: .\cookbook\views\views.py:184 msgid "Comment saved!" msgstr "" -#: .\cookbook\views\views.py:326 +#: .\cookbook\views\views.py:396 msgid "" "The setup page can only be used to create the first user! If you have " "forgotten your superuser credentials please consult the django documentation " "on how to reset passwords." msgstr "" -#: .\cookbook\views\views.py:333 .\cookbook\views\views.py:378 +#: .\cookbook\views\views.py:403 msgid "Passwords dont match!" msgstr "" -#: .\cookbook\views\views.py:349 .\cookbook\views\views.py:385 +#: .\cookbook\views\views.py:419 msgid "User has been created, please login!" msgstr "" -#: .\cookbook\views\views.py:365 +#: .\cookbook\views\views.py:435 msgid "Malformed Invite Link supplied!" msgstr "" -#: .\cookbook\views\views.py:405 +#: .\cookbook\views\views.py:441 +msgid "You are already member of a space and therefore cannot join this one." +msgstr "" + +#: .\cookbook\views\views.py:452 +msgid "Successfully joined space." +msgstr "" + +#: .\cookbook\views\views.py:458 msgid "Invite Link not valid or already used!" msgstr "" diff --git a/cookbook/locale/it/LC_MESSAGES/django.po b/cookbook/locale/it/LC_MESSAGES/django.po index c4578f20..a3a1e176 100644 --- a/cookbook/locale/it/LC_MESSAGES/django.po +++ b/cookbook/locale/it/LC_MESSAGES/django.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-04-11 15:09+0200\n" -"PO-Revision-Date: 2021-04-11 15:23+0000\n" +"POT-Creation-Date: 2021-06-12 20:30+0200\n" +"PO-Revision-Date: 2021-06-18 23:12+0000\n" "Last-Translator: Oliver Cervera \n" "Language-Team: Italian \n" @@ -21,16 +21,17 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.5.3\n" +"X-Generator: Weblate 4.6.2\n" -#: .\cookbook\filters.py:23 .\cookbook\templates\base.html:91 -#: .\cookbook\templates\forms\edit_internal_recipe.html:219 +#: .\cookbook\filters.py:23 .\cookbook\templates\base.html:98 +#: .\cookbook\templates\forms\edit_internal_recipe.html:246 #: .\cookbook\templates\forms\ingredients.html:34 -#: .\cookbook\templates\stats.html:28 .\cookbook\views\lists.py:67 +#: .\cookbook\templates\space.html:37 .\cookbook\templates\stats.html:28 +#: .\cookbook\templates\url_import.html:270 .\cookbook\views\lists.py:67 msgid "Ingredients" msgstr "Ingredienti" -#: .\cookbook\forms.py:45 +#: .\cookbook\forms.py:49 msgid "" "Color of the top navigation bar. Not all colors work with all themes, just " "try them out!" @@ -38,13 +39,13 @@ msgstr "" "Colore della barra di navigazione in alto. Non tutti i colori funzionano con " "tutti i temi, provali e basta!" -#: .\cookbook\forms.py:46 +#: .\cookbook\forms.py:51 msgid "Default Unit to be used when inserting a new ingredient into a recipe." msgstr "" "Unità di misura predefinita da utilizzare quando si inserisce un nuovo " "ingrediente in una ricetta." -#: .\cookbook\forms.py:47 +#: .\cookbook\forms.py:53 msgid "" "Enables support for fractions in ingredient amounts (e.g. convert decimals " "to fractions automatically)" @@ -52,7 +53,7 @@ msgstr "" "Abilita il supporto alle frazioni per le quantità degli ingredienti (ad " "esempio converte i decimali in frazioni automaticamente)" -#: .\cookbook\forms.py:48 +#: .\cookbook\forms.py:56 msgid "" "Users with whom newly created meal plan/shopping list entries should be " "shared by default." @@ -60,20 +61,20 @@ msgstr "" "Gli utenti con i quali le nuove voci del piano alimentare/lista della spesa " "devono essere condivise per impostazione predefinita." -#: .\cookbook\forms.py:49 +#: .\cookbook\forms.py:58 msgid "Show recently viewed recipes on search page." msgstr "Mostra le ricette visualizzate di recente nella pagina di ricerca." -#: .\cookbook\forms.py:50 +#: .\cookbook\forms.py:59 msgid "Number of decimals to round ingredients." msgstr "Numero di decimali per approssimare gli ingredienti." -#: .\cookbook\forms.py:51 +#: .\cookbook\forms.py:60 msgid "If you want to be able to create and see comments underneath recipes." msgstr "" "Se vuoi essere in grado di creare e vedere i commenti sotto le ricette." -#: .\cookbook\forms.py:53 +#: .\cookbook\forms.py:62 msgid "" "Setting to 0 will disable auto sync. When viewing a shopping list the list " "is updated every set seconds to sync changes someone else might have made. " @@ -87,11 +88,11 @@ msgstr "" "di dati mobili. Se inferiore al limite di istanza viene ripristinato durante " "il salvataggio." -#: .\cookbook\forms.py:56 +#: .\cookbook\forms.py:65 msgid "Makes the navbar stick to the top of the page." msgstr "Fissa la barra di navigazione nella parte superiore della pagina." -#: .\cookbook\forms.py:72 +#: .\cookbook\forms.py:81 msgid "" "Both fields are optional. If none are given the username will be displayed " "instead" @@ -99,39 +100,42 @@ msgstr "" "Entrambi i campi sono facoltativi. Se non viene fornito, verrà visualizzato " "il nome utente" -#: .\cookbook\forms.py:93 .\cookbook\forms.py:315 -#: .\cookbook\templates\forms\edit_internal_recipe.html:45 +#: .\cookbook\forms.py:102 .\cookbook\forms.py:331 +#: .\cookbook\templates\forms\edit_internal_recipe.html:49 +#: .\cookbook\templates\url_import.html:154 msgid "Name" msgstr "Nome" -#: .\cookbook\forms.py:94 .\cookbook\forms.py:316 -#: .\cookbook\templates\base.html:98 -#: .\cookbook\templates\forms\edit_internal_recipe.html:81 -#: .\cookbook\templates\stats.html:24 .\cookbook\templates\url_import.html:202 +#: .\cookbook\forms.py:103 .\cookbook\forms.py:332 +#: .\cookbook\templates\base.html:105 +#: .\cookbook\templates\forms\edit_internal_recipe.html:85 +#: .\cookbook\templates\space.html:33 .\cookbook\templates\stats.html:24 +#: .\cookbook\templates\url_import.html:188 +#: .\cookbook\templates\url_import.html:573 msgid "Keywords" msgstr "Parole chiave" -#: .\cookbook\forms.py:95 +#: .\cookbook\forms.py:104 msgid "Preparation time in minutes" msgstr "Tempo di preparazione in minuti" -#: .\cookbook\forms.py:96 +#: .\cookbook\forms.py:105 msgid "Waiting time (cooking/baking) in minutes" msgstr "Tempo di attesa (cottura) in minuti" -#: .\cookbook\forms.py:97 .\cookbook\forms.py:317 +#: .\cookbook\forms.py:106 .\cookbook\forms.py:333 msgid "Path" msgstr "Percorso" -#: .\cookbook\forms.py:98 +#: .\cookbook\forms.py:107 msgid "Storage UID" msgstr "UID di archiviazione" -#: .\cookbook\forms.py:121 +#: .\cookbook\forms.py:133 msgid "Default" msgstr "Predefinito" -#: .\cookbook\forms.py:130 +#: .\cookbook\forms.py:144 .\cookbook\templates\url_import.html:90 msgid "" "To prevent duplicates recipes with the same name as existing ones are " "ignored. Check this box to import everything." @@ -139,52 +143,52 @@ msgstr "" "Per prevenire duplicati, vengono ignorate le ricette che hanno lo stesso " "nome di quelle esistenti. Metti la spunta per importare tutto." -#: .\cookbook\forms.py:149 +#: .\cookbook\forms.py:164 msgid "New Unit" msgstr "Nuova unità di misura" -#: .\cookbook\forms.py:150 +#: .\cookbook\forms.py:165 msgid "New unit that other gets replaced by." msgstr "Nuova unità di misura che sostituisce le altre." -#: .\cookbook\forms.py:155 +#: .\cookbook\forms.py:170 msgid "Old Unit" msgstr "Vecchia unità di misura" -#: .\cookbook\forms.py:156 +#: .\cookbook\forms.py:171 msgid "Unit that should be replaced." msgstr "Unità di misura che dovrebbe essere rimpiazzata." -#: .\cookbook\forms.py:172 +#: .\cookbook\forms.py:187 msgid "New Food" msgstr "Nuovo alimento" -#: .\cookbook\forms.py:173 +#: .\cookbook\forms.py:188 msgid "New food that other gets replaced by." msgstr "Nuovo alimento che sostituisce gli altri." -#: .\cookbook\forms.py:178 +#: .\cookbook\forms.py:193 msgid "Old Food" msgstr "Vecchio alimento" -#: .\cookbook\forms.py:179 +#: .\cookbook\forms.py:194 msgid "Food that should be replaced." msgstr "Alimento che dovrebbe essere rimpiazzato." -#: .\cookbook\forms.py:197 +#: .\cookbook\forms.py:212 msgid "Add your comment: " msgstr "Aggiungi il tuo commento:" -#: .\cookbook\forms.py:238 +#: .\cookbook\forms.py:253 msgid "Leave empty for dropbox and enter app password for nextcloud." msgstr "" "Lascia vuoto per dropbox e inserisci la password dell'app per nextcloud." -#: .\cookbook\forms.py:245 +#: .\cookbook\forms.py:260 msgid "Leave empty for nextcloud and enter api token for dropbox." msgstr "Lascia vuoto per nextcloud e inserisci l'api token per dropbox." -#: .\cookbook\forms.py:253 +#: .\cookbook\forms.py:269 msgid "" "Leave empty for dropbox and enter only base url for nextcloud (/remote." "php/webdav/ is added automatically)" @@ -192,26 +196,26 @@ msgstr "" "Lascia vuoto per dropbox e inserisci solo l'url base per nextcloud (/" "remote.php/webdav/ è aggiunto automaticamente)" -#: .\cookbook\forms.py:291 +#: .\cookbook\forms.py:307 msgid "Search String" msgstr "Stringa di Ricerca" -#: .\cookbook\forms.py:318 +#: .\cookbook\forms.py:334 msgid "File ID" msgstr "ID del File" -#: .\cookbook\forms.py:354 +#: .\cookbook\forms.py:370 msgid "You must provide at least a recipe or a title." msgstr "Devi fornire almeno una ricetta o un titolo." -#: .\cookbook\forms.py:367 +#: .\cookbook\forms.py:383 msgid "You can list default users to share recipes with in the settings." msgstr "" "È possibile visualizzare l'elenco degli utenti predefiniti con cui " "condividere le ricette nelle impostazioni." -#: .\cookbook\forms.py:368 -#: .\cookbook\templates\forms\edit_internal_recipe.html:377 +#: .\cookbook\forms.py:384 +#: .\cookbook\templates\forms\edit_internal_recipe.html:404 msgid "" "You can use markdown to format this field. See the docs here" @@ -219,52 +223,57 @@ msgstr "" "Puoi usare markdown per formattare questo campo. Guarda la documentazione qui" -#: .\cookbook\forms.py:393 -msgid "A username is not required, if left blank the new user can choose one." +#: .\cookbook\forms.py:409 +msgid "Maximum number of users for this space reached." msgstr "" -"Non è richiesto un nome utente, se lasciato vuoto il nuovo utente ne può " -"sceglierne uno." -#: .\cookbook\helper\permission_helper.py:123 -#: .\cookbook\helper\permission_helper.py:129 -#: .\cookbook\helper\permission_helper.py:151 -#: .\cookbook\helper\permission_helper.py:196 -#: .\cookbook\helper\permission_helper.py:210 -#: .\cookbook\helper\permission_helper.py:221 -#: .\cookbook\helper\permission_helper.py:232 .\cookbook\views\data.py:30 -#: .\cookbook\views\views.py:112 .\cookbook\views\views.py:116 -#: .\cookbook\views\views.py:184 -msgid "You do not have the required permissions to view this page!" -msgstr "Non hai i permessi necessari per visualizzare questa pagina!" +#: .\cookbook\forms.py:415 +msgid "Email address already taken!" +msgstr "" -#: .\cookbook\helper\permission_helper.py:141 +#: .\cookbook\forms.py:423 +msgid "" +"An email address is not required but if present the invite link will be send " +"to the user." +msgstr "" + +#: .\cookbook\forms.py:438 +msgid "Name already taken." +msgstr "" + +#: .\cookbook\forms.py:449 +msgid "Accept Terms and Privacy" +msgstr "" + +#: .\cookbook\helper\AllAuthCustomAdapter.py:30 +msgid "" +"In order to prevent spam, the requested email was not send. Please wait a " +"few minutes and try again." +msgstr "" + +#: .\cookbook\helper\permission_helper.py:124 +#: .\cookbook\helper\permission_helper.py:144 .\cookbook\views\views.py:147 msgid "You are not logged in and therefore cannot view this page!" msgstr "Non hai fatto l'accesso e quindi non puoi visualizzare questa pagina!" -#: .\cookbook\helper\permission_helper.py:145 -#: .\cookbook\helper\permission_helper.py:167 -#: .\cookbook\helper\permission_helper.py:182 +#: .\cookbook\helper\permission_helper.py:127 +#: .\cookbook\helper\permission_helper.py:132 +#: .\cookbook\helper\permission_helper.py:154 +#: .\cookbook\helper\permission_helper.py:199 +#: .\cookbook\helper\permission_helper.py:213 +#: .\cookbook\helper\permission_helper.py:224 +#: .\cookbook\helper\permission_helper.py:235 .\cookbook\views\data.py:39 +#: .\cookbook\views\views.py:158 .\cookbook\views\views.py:165 +#: .\cookbook\views\views.py:253 +msgid "You do not have the required permissions to view this page!" +msgstr "Non hai i permessi necessari per visualizzare questa pagina!" + +#: .\cookbook\helper\permission_helper.py:148 +#: .\cookbook\helper\permission_helper.py:170 +#: .\cookbook\helper\permission_helper.py:185 msgid "You cannot interact with this object as it is not owned by you!" msgstr "Non puoi interagire con questo oggetto perché non ne hai i diritti!" -#: .\cookbook\helper\recipe_url_import.py:40 .\cookbook\views\api.py:549 -msgid "The requested site provided malformed data and cannot be read." -msgstr "" -"Il sito richiesto ha fornito dati in formato non corretto e non può essere " -"letto." - -#: .\cookbook\helper\recipe_url_import.py:54 -msgid "" -"The requested site does not provide any recognized data format to import the " -"recipe from." -msgstr "" -"Il sito richiesto non fornisce un formato di dati riconosciuto da cui " -"importare la ricetta." - -#: .\cookbook\helper\recipe_url_import.py:160 -msgid "Imported from" -msgstr "Importato da" - #: .\cookbook\helper\template_helper.py:60 #: .\cookbook\helper\template_helper.py:62 msgid "Could not parse template code." @@ -274,12 +283,16 @@ msgstr "Impossibile elaborare il codice del template." #: .\cookbook\templates\import.html:14 .\cookbook\templates\import.html:20 #: .\cookbook\templates\import_response.html:7 #: .\cookbook\templates\test.html:14 .\cookbook\templates\test.html:20 -#: .\cookbook\templates\url_import.html:233 .\cookbook\views\delete.py:60 -#: .\cookbook\views\edit.py:190 +#: .\cookbook\templates\url_import.html:27 +#: .\cookbook\templates\url_import.html:101 +#: .\cookbook\templates\url_import.html:123 +#: .\cookbook\templates\url_import.html:317 +#: .\cookbook\templates\url_import.html:604 .\cookbook\views\delete.py:60 +#: .\cookbook\views\edit.py:199 msgid "Import" msgstr "Importa" -#: .\cookbook\integration\integration.py:131 +#: .\cookbook\integration\integration.py:162 msgid "" "Importer expected a .zip file. Did you choose the correct importer type for " "your data ?" @@ -287,31 +300,38 @@ msgstr "" "La procedura di import necessita di un file .zip. Hai scelto il tipo di " "importazione corretta per i tuoi dati?" -#: .\cookbook\integration\integration.py:134 +#: .\cookbook\integration\integration.py:165 +msgid "" +"An unexpected error occurred during the import. Please make sure you have " +"uploaded a valid file." +msgstr "" + +#: .\cookbook\integration\integration.py:169 msgid "The following recipes were ignored because they already existed:" msgstr "Le seguenti ricette sono state ignorate perché già esistenti:" -#: .\cookbook\integration\integration.py:137 +#: .\cookbook\integration\integration.py:173 #, python-format msgid "Imported %s recipes." msgstr "Importate %s ricette." -#: .\cookbook\integration\paprika.py:44 +#: .\cookbook\integration\paprika.py:46 msgid "Notes" msgstr "Note" -#: .\cookbook\integration\paprika.py:47 +#: .\cookbook\integration\paprika.py:49 msgid "Nutritional Information" msgstr "Informazioni nutrizionali" -#: .\cookbook\integration\paprika.py:50 +#: .\cookbook\integration\paprika.py:53 msgid "Source" msgstr "Fonte" #: .\cookbook\integration\safron.py:23 -#: .\cookbook\templates\forms\edit_internal_recipe.html:75 +#: .\cookbook\templates\forms\edit_internal_recipe.html:79 #: .\cookbook\templates\include\log_cooking.html:16 -#: .\cookbook\templates\url_import.html:84 +#: .\cookbook\templates\url_import.html:224 +#: .\cookbook\templates\url_import.html:455 msgid "Servings" msgstr "Porzioni" @@ -320,11 +340,11 @@ msgid "Waiting time" msgstr "Tempo di cottura" #: .\cookbook\integration\safron.py:27 -#: .\cookbook\templates\forms\edit_internal_recipe.html:69 +#: .\cookbook\templates\forms\edit_internal_recipe.html:73 msgid "Preparation Time" msgstr "Tempo di preparazione" -#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:71 +#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:78 #: .\cookbook\templates\forms\ingredients.html:7 #: .\cookbook\templates\index.html:7 msgid "Cookbook" @@ -350,44 +370,74 @@ msgstr "Cena" msgid "Other" msgstr "Altro" -#: .\cookbook\models.py:110 .\cookbook\templates\shopping_list.html:48 +#: .\cookbook\models.py:71 +msgid "" +"Maximum file storage for space in MB. 0 for unlimited, -1 to disable file " +"upload." +msgstr "" + +#: .\cookbook\models.py:121 .\cookbook\templates\search.html:7 +#: .\cookbook\templates\shopping_list.html:52 msgid "Search" msgstr "Cerca" -#: .\cookbook\models.py:111 .\cookbook\templates\base.html:85 +#: .\cookbook\models.py:122 .\cookbook\templates\base.html:92 #: .\cookbook\templates\meal_plan.html:5 .\cookbook\views\delete.py:152 -#: .\cookbook\views\edit.py:224 .\cookbook\views\new.py:188 +#: .\cookbook\views\edit.py:233 .\cookbook\views\new.py:201 msgid "Meal-Plan" msgstr "Piano alimentare" -#: .\cookbook\models.py:112 .\cookbook\templates\base.html:82 +#: .\cookbook\models.py:123 .\cookbook\templates\base.html:89 msgid "Books" msgstr "Libri" -#: .\cookbook\models.py:119 +#: .\cookbook\models.py:131 msgid "Small" msgstr "Piccolo" -#: .\cookbook\models.py:119 +#: .\cookbook\models.py:131 msgid "Large" msgstr "Grande" -#: .\cookbook\models.py:327 -#: .\cookbook\templates\forms\edit_internal_recipe.html:198 +#: .\cookbook\models.py:131 .\cookbook\templates\generic\new_template.html:6 +#: .\cookbook\templates\generic\new_template.html:14 +#: .\cookbook\templates\meal_plan.html:323 +msgid "New" +msgstr "Nuovo" + +#: .\cookbook\models.py:340 +#: .\cookbook\templates\forms\edit_internal_recipe.html:202 msgid "Text" msgstr "Testo" -#: .\cookbook\models.py:327 -#: .\cookbook\templates\forms\edit_internal_recipe.html:199 +#: .\cookbook\models.py:340 +#: .\cookbook\templates\forms\edit_internal_recipe.html:203 msgid "Time" msgstr "Tempo" +#: .\cookbook\models.py:340 +#: .\cookbook\templates\forms\edit_internal_recipe.html:204 +#: .\cookbook\templates\forms\edit_internal_recipe.html:218 +#, fuzzy +#| msgid "File ID" +msgid "File" +msgstr "ID del File" + +#: .\cookbook\serializer.py:109 +msgid "File uploads are not enabled for this Space." +msgstr "" + +#: .\cookbook\serializer.py:117 +msgid "You have reached your file upload limit." +msgstr "" + #: .\cookbook\tables.py:35 .\cookbook\templates\books.html:36 #: .\cookbook\templates\generic\edit_template.html:6 #: .\cookbook\templates\generic\edit_template.html:14 #: .\cookbook\templates\meal_plan.html:281 #: .\cookbook\templates\recipes_table.html:82 #: .\cookbook\templates\shopping_list.html:33 +#: .\cookbook\templates\space.html:84 msgid "Edit" msgstr "Modifica" @@ -401,10 +451,6 @@ msgstr "Modifica" msgid "Delete" msgstr "Elimina" -#: .\cookbook\tables.py:144 -msgid "Link" -msgstr "Link" - #: .\cookbook\templates\404.html:5 msgid "404 Error" msgstr "Errore 404" @@ -421,21 +467,126 @@ msgstr "Portami nella Home" msgid "Report a Bug" msgstr "Segnala un Bug" -#: .\cookbook\templates\account\login.html:7 -#: .\cookbook\templates\base.html:170 +#: .\cookbook\templates\account\email.html:6 +#: .\cookbook\templates\account\email.html:9 +msgid "E-mail Addresses" +msgstr "Indirizzi email" + +#: .\cookbook\templates\account\email.html:11 +msgid "The following e-mail addresses are associated with your account:" +msgstr "" + +#: .\cookbook\templates\account\email.html:28 +msgid "Verified" +msgstr "Verificato" + +#: .\cookbook\templates\account\email.html:30 +msgid "Unverified" +msgstr "Non verificato" + +#: .\cookbook\templates\account\email.html:32 +msgid "Primary" +msgstr "Principale" + +#: .\cookbook\templates\account\email.html:39 +#, fuzzy +#| msgid "Make Header" +msgid "Make Primary" +msgstr "Crea Intestazione" + +#: .\cookbook\templates\account\email.html:41 +msgid "Re-send Verification" +msgstr "" + +#: .\cookbook\templates\account\email.html:42 +#: .\cookbook\templates\socialaccount\connections.html:36 +msgid "Remove" +msgstr "Rimuovi" + +#: .\cookbook\templates\account\email.html:50 +#, fuzzy +#| msgid "Warning" +msgid "Warning:" +msgstr "Avviso" + +#: .\cookbook\templates\account\email.html:50 +msgid "" +"You currently do not have any e-mail address set up. You should really add " +"an e-mail address so you can receive notifications, reset your password, etc." +msgstr "" + +#: .\cookbook\templates\account\email.html:56 +msgid "Add E-mail Address" +msgstr "" + +#: .\cookbook\templates\account\email.html:61 +msgid "Add E-mail" +msgstr "" + +#: .\cookbook\templates\account\email.html:71 +msgid "Do you really want to remove the selected e-mail address?" +msgstr "" + +#: .\cookbook\templates\account\email_confirm.html:6 +#: .\cookbook\templates\account\email_confirm.html:10 +msgid "Confirm E-mail Address" +msgstr "" + +#: .\cookbook\templates\account\email_confirm.html:16 +#, python-format +msgid "" +"Please confirm that\n" +" %(email)s is an e-mail address " +"for user %(user_display)s\n" +" ." +msgstr "" + +#: .\cookbook\templates\account\email_confirm.html:22 +#: .\cookbook\templates\generic\delete_template.html:21 +msgid "Confirm" +msgstr "Conferma" + +#: .\cookbook\templates\account\email_confirm.html:29 +#, python-format +msgid "" +"This e-mail confirmation link expired or is invalid. Please\n" +" issue a new e-mail confirmation " +"request." +msgstr "" + +#: .\cookbook\templates\account\login.html:8 +#: .\cookbook\templates\base.html:180 msgid "Login" msgstr "Login" -#: .\cookbook\templates\account\login.html:13 -#: .\cookbook\templates\account\login.html:28 +#: .\cookbook\templates\account\login.html:15 +#: .\cookbook\templates\account\login.html:31 +#: .\cookbook\templates\account\signup.html:69 +#: .\cookbook\templates\account\signup_closed.html:15 msgid "Sign In" msgstr "Accedi" -#: .\cookbook\templates\account\login.html:38 +#: .\cookbook\templates\account\login.html:32 +#, fuzzy +#| msgid "Sign In" +msgid "Sign Up" +msgstr "Accedi" + +#: .\cookbook\templates\account\login.html:36 +#: .\cookbook\templates\account\login.html:37 +#: .\cookbook\templates\account\password_reset.html:29 +msgid "Reset My Password" +msgstr "" + +#: .\cookbook\templates\account\login.html:37 +msgid "Lost your password?" +msgstr "" + +#: .\cookbook\templates\account\login.html:48 msgid "Social Login" msgstr "Login con social network" -#: .\cookbook\templates\account\login.html:39 +#: .\cookbook\templates\account\login.html:49 msgid "You can use any of the following providers to sign in." msgstr "Puoi usare uno dei seguenti provider per accedere." @@ -449,116 +600,168 @@ msgstr "Esci" msgid "Are you sure you want to sign out?" msgstr "Sei sicuro di voler uscire?" -#: .\cookbook\templates\account\password_reset.html:5 -#: .\cookbook\templates\account\password_reset_done.html:5 +#: .\cookbook\templates\account\password_reset.html:7 +#: .\cookbook\templates\account\password_reset.html:13 +#: .\cookbook\templates\account\password_reset_done.html:7 +#: .\cookbook\templates\account\password_reset_done.html:10 msgid "Password Reset" msgstr "Recupero password" -#: .\cookbook\templates\account\password_reset.html:9 -#: .\cookbook\templates\account\password_reset_done.html:9 -msgid "Password reset is not implemented for the time being!" +#: .\cookbook\templates\account\password_reset.html:24 +msgid "" +"Forgotten your password? Enter your e-mail address below, and we'll send you " +"an e-mail allowing you to reset it." +msgstr "" + +#: .\cookbook\templates\account\password_reset.html:32 +#, fuzzy +#| msgid "Password reset is not implemented for the time being!" +msgid "Password reset is disabled on this instance." msgstr "Il recupero della password non è stato ancora implementato!" -#: .\cookbook\templates\account\signup.html:5 +#: .\cookbook\templates\account\password_reset_done.html:16 +msgid "" +"We have sent you an e-mail. Please contact us if you do not receive it " +"within a few minutes." +msgstr "" + +#: .\cookbook\templates\account\signup.html:6 msgid "Register" msgstr "Registrati" -#: .\cookbook\templates\account\signup.html:9 -msgid "Create your Account" +#: .\cookbook\templates\account\signup.html:12 +#, fuzzy +#| msgid "Create your Account" +msgid "Create an Account" msgstr "Crea il tuo account" -#: .\cookbook\templates\account\signup.html:14 +#: .\cookbook\templates\account\signup.html:42 +msgid "I accept the follwoing" +msgstr "" + +#: .\cookbook\templates\account\signup.html:45 +msgid "Terms and Conditions" +msgstr "" + +#: .\cookbook\templates\account\signup.html:48 +msgid "and" +msgstr "" + +#: .\cookbook\templates\account\signup.html:52 +msgid "Privacy Policy" +msgstr "" + +#: .\cookbook\templates\account\signup.html:65 msgid "Create User" msgstr "Crea utente" -#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:160 +#: .\cookbook\templates\account\signup.html:69 +msgid "Already have an account?" +msgstr "" + +#: .\cookbook\templates\account\signup_closed.html:5 +#: .\cookbook\templates\account\signup_closed.html:11 +msgid "Sign Up Closed" +msgstr "" + +#: .\cookbook\templates\account\signup_closed.html:13 +msgid "We are sorry, but the sign up is currently closed." +msgstr "" + +#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:170 #: .\cookbook\templates\rest_framework\api.html:11 msgid "API Documentation" msgstr "Documentazione API" -#: .\cookbook\templates\base.html:78 +#: .\cookbook\templates\base.html:85 msgid "Utensils" msgstr "Strumenti" -#: .\cookbook\templates\base.html:88 +#: .\cookbook\templates\base.html:95 msgid "Shopping" msgstr "Spesa" -#: .\cookbook\templates\base.html:102 .\cookbook\views\delete.py:84 -#: .\cookbook\views\edit.py:93 .\cookbook\views\lists.py:26 -#: .\cookbook\views\new.py:66 +#: .\cookbook\templates\base.html:109 .\cookbook\views\delete.py:84 +#: .\cookbook\views\edit.py:102 .\cookbook\views\lists.py:26 +#: .\cookbook\views\new.py:78 msgid "Keyword" msgstr "Parola chiave" -#: .\cookbook\templates\base.html:104 +#: .\cookbook\templates\base.html:111 msgid "Batch Edit" msgstr "Modifica in blocco" -#: .\cookbook\templates\base.html:109 +#: .\cookbook\templates\base.html:116 msgid "Storage Data" msgstr "Dati e Archiviazione" -#: .\cookbook\templates\base.html:113 +#: .\cookbook\templates\base.html:120 msgid "Storage Backends" msgstr "Backend Archiviazione" -#: .\cookbook\templates\base.html:115 +#: .\cookbook\templates\base.html:122 msgid "Configure Sync" msgstr "Configura Sincronizzazione" -#: .\cookbook\templates\base.html:117 +#: .\cookbook\templates\base.html:124 msgid "Discovered Recipes" msgstr "Ricette trovate" -#: .\cookbook\templates\base.html:119 +#: .\cookbook\templates\base.html:126 msgid "Discovery Log" msgstr "Registro ricette trovate" -#: .\cookbook\templates\base.html:121 .\cookbook\templates\stats.html:10 +#: .\cookbook\templates\base.html:128 .\cookbook\templates\stats.html:10 msgid "Statistics" msgstr "Statistiche" -#: .\cookbook\templates\base.html:123 +#: .\cookbook\templates\base.html:130 msgid "Units & Ingredients" msgstr "Unità di misura & Ingredienti" -#: .\cookbook\templates\base.html:125 +#: .\cookbook\templates\base.html:132 .\cookbook\templates\index.html:47 msgid "Import Recipe" msgstr "Importa Ricetta" -#: .\cookbook\templates\base.html:144 .\cookbook\templates\settings.html:6 +#: .\cookbook\templates\base.html:151 .\cookbook\templates\settings.html:6 #: .\cookbook\templates\settings.html:16 msgid "Settings" msgstr "Impostazioni" -#: .\cookbook\templates\base.html:146 .\cookbook\templates\history.html:6 +#: .\cookbook\templates\base.html:153 .\cookbook\templates\history.html:6 #: .\cookbook\templates\history.html:14 msgid "History" msgstr "Cronologia" -#: .\cookbook\templates\base.html:150 .\cookbook\templates\system.html:13 +#: .\cookbook\templates\base.html:155 .\cookbook\templates\space.html:7 +#, fuzzy +#| msgid "Settings" +msgid "Space Settings" +msgstr "Impostazioni" + +#: .\cookbook\templates\base.html:160 .\cookbook\templates\system.html:13 msgid "System" msgstr "Sistema" -#: .\cookbook\templates\base.html:152 +#: .\cookbook\templates\base.html:162 msgid "Admin" msgstr "Amministratore" -#: .\cookbook\templates\base.html:156 +#: .\cookbook\templates\base.html:166 msgid "Markdown Guide" msgstr "Informazioni su Markdown" -#: .\cookbook\templates\base.html:158 +#: .\cookbook\templates\base.html:168 msgid "GitHub" msgstr "GitHub" -#: .\cookbook\templates\base.html:162 +#: .\cookbook\templates\base.html:172 msgid "API Browser" msgstr "Browser API" -#: .\cookbook\templates\base.html:165 -msgid "Logout" -msgstr "Logout" +#: .\cookbook\templates\base.html:175 +msgid "Log out" +msgstr "" #: .\cookbook\templates\batch\edit.html:6 msgid "Batch edit Category" @@ -574,7 +777,7 @@ msgstr "" "Aggiungi le parole chiave che desideri a tutte le ricette che contengono una " "determinata stringa" -#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:76 +#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:85 msgid "Sync" msgstr "Sincronizza" @@ -603,7 +806,7 @@ msgstr "Sincronizza Ora!" msgid "Importing Recipes" msgstr "Importando Ricette" -#: .\cookbook\templates\batch\waiting.html:23 +#: .\cookbook\templates\batch\waiting.html:28 msgid "" "This can take a few minutes, depending on the number of recipes in sync, " "please wait." @@ -642,26 +845,33 @@ msgid "Export Recipes" msgstr "Esporta Ricette" #: .\cookbook\templates\export.html:14 .\cookbook\templates\export.html:20 -#: .\cookbook\templates\shopping_list.html:347 +#: .\cookbook\templates\shopping_list.html:351 #: .\cookbook\templates\test2.html:14 .\cookbook\templates\test2.html:20 msgid "Export" msgstr "Esporta" +#: .\cookbook\templates\files.html:7 +#, fuzzy +#| msgid "File ID" +msgid "Files" +msgstr "ID del File" + #: .\cookbook\templates\forms\edit_import_recipe.html:5 #: .\cookbook\templates\forms\edit_import_recipe.html:9 msgid "Import new Recipe" msgstr "Importa nuova Ricetta" #: .\cookbook\templates\forms\edit_import_recipe.html:14 -#: .\cookbook\templates\forms\edit_internal_recipe.html:389 -#: .\cookbook\templates\forms\edit_internal_recipe.html:421 +#: .\cookbook\templates\forms\edit_internal_recipe.html:416 +#: .\cookbook\templates\forms\edit_internal_recipe.html:448 #: .\cookbook\templates\generic\edit_template.html:23 #: .\cookbook\templates\generic\new_template.html:23 #: .\cookbook\templates\include\log_cooking.html:28 #: .\cookbook\templates\meal_plan.html:325 -#: .\cookbook\templates\settings.html:28 .\cookbook\templates\settings.html:35 -#: .\cookbook\templates\settings.html:58 .\cookbook\templates\settings.html:73 -#: .\cookbook\templates\shopping_list.html:349 +#: .\cookbook\templates\settings.html:44 .\cookbook\templates\settings.html:52 +#: .\cookbook\templates\settings.html:96 +#: .\cookbook\templates\settings.html:114 +#: .\cookbook\templates\shopping_list.html:353 msgid "Save" msgstr "Salva" @@ -670,179 +880,188 @@ msgstr "Salva" msgid "Edit Recipe" msgstr "Modifica Ricetta" -#: .\cookbook\templates\forms\edit_internal_recipe.html:52 +#: .\cookbook\templates\forms\edit_internal_recipe.html:56 +#: .\cookbook\templates\url_import.html:171 msgid "Description" msgstr "Descrizione" -#: .\cookbook\templates\forms\edit_internal_recipe.html:72 +#: .\cookbook\templates\forms\edit_internal_recipe.html:76 msgid "Waiting Time" msgstr "Tempo di cottura" -#: .\cookbook\templates\forms\edit_internal_recipe.html:78 +#: .\cookbook\templates\forms\edit_internal_recipe.html:82 msgid "Servings Text" msgstr "Nome delle porzioni" -#: .\cookbook\templates\forms\edit_internal_recipe.html:89 +#: .\cookbook\templates\forms\edit_internal_recipe.html:93 msgid "Select Keywords" msgstr "Seleziona parole chiave" -#: .\cookbook\templates\forms\edit_internal_recipe.html:90 -#: .\cookbook\templates\url_import.html:212 +#: .\cookbook\templates\forms\edit_internal_recipe.html:94 +#: .\cookbook\templates\url_import.html:583 msgid "Add Keyword" msgstr "Aggiungi parole chiave" -#: .\cookbook\templates\forms\edit_internal_recipe.html:108 +#: .\cookbook\templates\forms\edit_internal_recipe.html:112 msgid "Nutrition" msgstr "Nutrienti" -#: .\cookbook\templates\forms\edit_internal_recipe.html:112 -#: .\cookbook\templates\forms\edit_internal_recipe.html:162 +#: .\cookbook\templates\forms\edit_internal_recipe.html:116 +#: .\cookbook\templates\forms\edit_internal_recipe.html:166 msgid "Delete Step" msgstr "Elimina Step" -#: .\cookbook\templates\forms\edit_internal_recipe.html:116 +#: .\cookbook\templates\forms\edit_internal_recipe.html:120 msgid "Calories" msgstr "Calorie" -#: .\cookbook\templates\forms\edit_internal_recipe.html:119 +#: .\cookbook\templates\forms\edit_internal_recipe.html:123 msgid "Carbohydrates" msgstr "Carboidrati" -#: .\cookbook\templates\forms\edit_internal_recipe.html:122 +#: .\cookbook\templates\forms\edit_internal_recipe.html:126 msgid "Fats" msgstr "Grassi" -#: .\cookbook\templates\forms\edit_internal_recipe.html:124 +#: .\cookbook\templates\forms\edit_internal_recipe.html:128 msgid "Proteins" msgstr "Proteine" -#: .\cookbook\templates\forms\edit_internal_recipe.html:146 -#: .\cookbook\templates\forms\edit_internal_recipe.html:454 +#: .\cookbook\templates\forms\edit_internal_recipe.html:150 +#: .\cookbook\templates\forms\edit_internal_recipe.html:481 msgid "Step" msgstr "Step" -#: .\cookbook\templates\forms\edit_internal_recipe.html:167 +#: .\cookbook\templates\forms\edit_internal_recipe.html:171 msgid "Show as header" msgstr "Mostra come intestazione" -#: .\cookbook\templates\forms\edit_internal_recipe.html:173 +#: .\cookbook\templates\forms\edit_internal_recipe.html:177 msgid "Hide as header" msgstr "Nascondi come intestazione" -#: .\cookbook\templates\forms\edit_internal_recipe.html:178 +#: .\cookbook\templates\forms\edit_internal_recipe.html:182 msgid "Move Up" msgstr "Sposta Sopra" -#: .\cookbook\templates\forms\edit_internal_recipe.html:183 +#: .\cookbook\templates\forms\edit_internal_recipe.html:187 msgid "Move Down" msgstr "Sposta Sotto" -#: .\cookbook\templates\forms\edit_internal_recipe.html:192 +#: .\cookbook\templates\forms\edit_internal_recipe.html:196 msgid "Step Name" msgstr "Nome dello Step" -#: .\cookbook\templates\forms\edit_internal_recipe.html:196 +#: .\cookbook\templates\forms\edit_internal_recipe.html:200 msgid "Step Type" msgstr "Tipo dello Step" -#: .\cookbook\templates\forms\edit_internal_recipe.html:207 +#: .\cookbook\templates\forms\edit_internal_recipe.html:212 msgid "Step time in Minutes" msgstr "Tempo dello step in minuti" -#: .\cookbook\templates\forms\edit_internal_recipe.html:261 -#: .\cookbook\templates\shopping_list.html:183 -msgid "Select Unit" -msgstr "Seleziona unità di misura" +#: .\cookbook\templates\forms\edit_internal_recipe.html:228 +#, fuzzy +#| msgid "Select one" +msgid "Select File" +msgstr "Seleziona un elemento" -#: .\cookbook\templates\forms\edit_internal_recipe.html:262 -#: .\cookbook\templates\forms\edit_internal_recipe.html:286 -#: .\cookbook\templates\shopping_list.html:184 -#: .\cookbook\templates\shopping_list.html:206 -msgid "Create" -msgstr "Crea" - -#: .\cookbook\templates\forms\edit_internal_recipe.html:263 -#: .\cookbook\templates\forms\edit_internal_recipe.html:287 -#: .\cookbook\templates\shopping_list.html:185 -#: .\cookbook\templates\shopping_list.html:207 -#: .\cookbook\templates\shopping_list.html:237 -#: .\cookbook\templates\shopping_list.html:261 -#: .\cookbook\templates\url_import.html:124 -#: .\cookbook\templates\url_import.html:156 +#: .\cookbook\templates\forms\edit_internal_recipe.html:229 +#: .\cookbook\templates\forms\edit_internal_recipe.html:290 +#: .\cookbook\templates\forms\edit_internal_recipe.html:314 +#: .\cookbook\templates\shopping_list.html:189 +#: .\cookbook\templates\shopping_list.html:211 +#: .\cookbook\templates\shopping_list.html:241 +#: .\cookbook\templates\shopping_list.html:265 +#: .\cookbook\templates\url_import.html:495 +#: .\cookbook\templates\url_import.html:527 msgid "Select" msgstr "Seleziona" -#: .\cookbook\templates\forms\edit_internal_recipe.html:285 -#: .\cookbook\templates\shopping_list.html:205 +#: .\cookbook\templates\forms\edit_internal_recipe.html:288 +#: .\cookbook\templates\shopping_list.html:187 +msgid "Select Unit" +msgstr "Seleziona unità di misura" + +#: .\cookbook\templates\forms\edit_internal_recipe.html:289 +#: .\cookbook\templates\forms\edit_internal_recipe.html:313 +#: .\cookbook\templates\shopping_list.html:188 +#: .\cookbook\templates\shopping_list.html:210 +msgid "Create" +msgstr "Crea" + +#: .\cookbook\templates\forms\edit_internal_recipe.html:312 +#: .\cookbook\templates\shopping_list.html:209 msgid "Select Food" msgstr "Seleziona alimento" -#: .\cookbook\templates\forms\edit_internal_recipe.html:302 +#: .\cookbook\templates\forms\edit_internal_recipe.html:329 #: .\cookbook\templates\meal_plan.html:256 -#: .\cookbook\templates\url_import.html:171 +#: .\cookbook\templates\url_import.html:542 msgid "Note" msgstr "Nota" -#: .\cookbook\templates\forms\edit_internal_recipe.html:319 +#: .\cookbook\templates\forms\edit_internal_recipe.html:346 msgid "Delete Ingredient" msgstr "Elimina Ingredienti" -#: .\cookbook\templates\forms\edit_internal_recipe.html:325 +#: .\cookbook\templates\forms\edit_internal_recipe.html:352 msgid "Make Header" msgstr "Crea Intestazione" -#: .\cookbook\templates\forms\edit_internal_recipe.html:331 +#: .\cookbook\templates\forms\edit_internal_recipe.html:358 msgid "Make Ingredient" msgstr "Crea Ingrediente" -#: .\cookbook\templates\forms\edit_internal_recipe.html:337 +#: .\cookbook\templates\forms\edit_internal_recipe.html:364 msgid "Disable Amount" msgstr "Disabilita Quantità" -#: .\cookbook\templates\forms\edit_internal_recipe.html:343 +#: .\cookbook\templates\forms\edit_internal_recipe.html:370 msgid "Enable Amount" msgstr "Abilita Quantità" -#: .\cookbook\templates\forms\edit_internal_recipe.html:348 +#: .\cookbook\templates\forms\edit_internal_recipe.html:375 msgid "Copy Template Reference" msgstr "Copia riferimento template" -#: .\cookbook\templates\forms\edit_internal_recipe.html:374 -#: .\cookbook\templates\url_import.html:196 +#: .\cookbook\templates\forms\edit_internal_recipe.html:401 +#: .\cookbook\templates\url_import.html:297 +#: .\cookbook\templates\url_import.html:567 msgid "Instructions" msgstr "Istruzioni" -#: .\cookbook\templates\forms\edit_internal_recipe.html:387 -#: .\cookbook\templates\forms\edit_internal_recipe.html:418 +#: .\cookbook\templates\forms\edit_internal_recipe.html:414 +#: .\cookbook\templates\forms\edit_internal_recipe.html:445 msgid "Save & View" msgstr "Salva & Mostra" -#: .\cookbook\templates\forms\edit_internal_recipe.html:391 -#: .\cookbook\templates\forms\edit_internal_recipe.html:424 +#: .\cookbook\templates\forms\edit_internal_recipe.html:418 +#: .\cookbook\templates\forms\edit_internal_recipe.html:451 msgid "Add Step" msgstr "Aggiungi Step" -#: .\cookbook\templates\forms\edit_internal_recipe.html:394 -#: .\cookbook\templates\forms\edit_internal_recipe.html:428 +#: .\cookbook\templates\forms\edit_internal_recipe.html:421 +#: .\cookbook\templates\forms\edit_internal_recipe.html:455 msgid "Add Nutrition" msgstr "Aggiungi nutrienti" -#: .\cookbook\templates\forms\edit_internal_recipe.html:396 -#: .\cookbook\templates\forms\edit_internal_recipe.html:430 +#: .\cookbook\templates\forms\edit_internal_recipe.html:423 +#: .\cookbook\templates\forms\edit_internal_recipe.html:457 msgid "Remove Nutrition" msgstr "Rimuovi nutrienti" -#: .\cookbook\templates\forms\edit_internal_recipe.html:398 -#: .\cookbook\templates\forms\edit_internal_recipe.html:433 +#: .\cookbook\templates\forms\edit_internal_recipe.html:425 +#: .\cookbook\templates\forms\edit_internal_recipe.html:460 msgid "View Recipe" msgstr "Mostra ricetta" -#: .\cookbook\templates\forms\edit_internal_recipe.html:400 -#: .\cookbook\templates\forms\edit_internal_recipe.html:435 +#: .\cookbook\templates\forms\edit_internal_recipe.html:427 +#: .\cookbook\templates\forms\edit_internal_recipe.html:462 msgid "Delete Recipe" msgstr "Elimina Ricetta" -#: .\cookbook\templates\forms\edit_internal_recipe.html:441 +#: .\cookbook\templates\forms\edit_internal_recipe.html:468 msgid "Steps" msgstr "Step" @@ -868,7 +1087,7 @@ msgstr "" "utilizzano." #: .\cookbook\templates\forms\ingredients.html:24 -#: .\cookbook\templates\stats.html:26 +#: .\cookbook\templates\space.html:35 .\cookbook\templates\stats.html:26 msgid "Units" msgstr "Unità di misura" @@ -890,10 +1109,6 @@ msgstr "Sei sicuro di volere unire questi due ingredienti?" msgid "Are you sure you want to delete the %(title)s: %(object)s " msgstr "Sei sicuro di volere eliminare %(title)s: %(object)s" -#: .\cookbook\templates\generic\delete_template.html:21 -msgid "Confirm" -msgstr "Conferma" - #: .\cookbook\templates\generic\edit_template.html:30 msgid "View" msgstr "Mostra" @@ -915,12 +1130,6 @@ msgstr "Filtro" msgid "Import all" msgstr "Importa tutto" -#: .\cookbook\templates\generic\new_template.html:6 -#: .\cookbook\templates\generic\new_template.html:14 -#: .\cookbook\templates\meal_plan.html:323 -msgid "New" -msgstr "Nuovo" - #: .\cookbook\templates\generic\table_template.html:76 #: .\cookbook\templates\recipes_table.html:121 msgid "previous" @@ -965,7 +1174,7 @@ msgstr "Chiudi" #: .\cookbook\templates\include\recipe_open_modal.html:7 #: .\cookbook\templates\meal_plan.html:247 .\cookbook\views\delete.py:28 -#: .\cookbook\views\edit.py:264 .\cookbook\views\new.py:40 +#: .\cookbook\views\edit.py:273 .\cookbook\views\new.py:52 msgid "Recipe" msgstr "Ricetta" @@ -1004,10 +1213,6 @@ msgstr "Cerca ricetta ..." msgid "New Recipe" msgstr "Nuova Ricetta" -#: .\cookbook\templates\index.html:47 -msgid "Website Import" -msgstr "Importa dal web" - #: .\cookbook\templates\index.html:53 msgid "Advanced Search" msgstr "Ricerca Avanzata" @@ -1021,7 +1226,7 @@ msgid "Last viewed" msgstr "Recenti" #: .\cookbook\templates\index.html:87 .\cookbook\templates\meal_plan.html:178 -#: .\cookbook\templates\stats.html:22 +#: .\cookbook\templates\space.html:29 .\cookbook\templates\stats.html:22 msgid "Recipes" msgstr "Ricette" @@ -1190,7 +1395,7 @@ msgid "New Entry" msgstr "Nuovo Campo" #: .\cookbook\templates\meal_plan.html:113 -#: .\cookbook\templates\shopping_list.html:52 +#: .\cookbook\templates\shopping_list.html:56 msgid "Search Recipe" msgstr "Cerca Ricetta" @@ -1223,7 +1428,7 @@ msgstr "Crea solo una nota" #: .\cookbook\templates\meal_plan.html:168 #: .\cookbook\templates\shopping_list.html:7 #: .\cookbook\templates\shopping_list.html:29 -#: .\cookbook\templates\shopping_list.html:705 +#: .\cookbook\templates\shopping_list.html:714 msgid "Shopping List" msgstr "Lista della spesa" @@ -1275,7 +1480,7 @@ msgstr "Creato da" #: .\cookbook\templates\meal_plan.html:270 #: .\cookbook\templates\meal_plan_entry.html:20 -#: .\cookbook\templates\shopping_list.html:250 +#: .\cookbook\templates\shopping_list.html:254 msgid "Shared with" msgstr "Condiviso con" @@ -1375,7 +1580,6 @@ msgstr "" #: .\cookbook\templates\no_groups_info.html:18 #: .\cookbook\templates\no_perm_info.html:15 -#: .\cookbook\templates\no_space_info.html:15 msgid "Please contact your administrator." msgstr "Contatta il tuo amministratore." @@ -1392,14 +1596,53 @@ msgstr "" "Non hai i permessi necessari per visualizzare questa pagina o completare " "l'operazione!" -#: .\cookbook\templates\no_space_info.html:5 -#: .\cookbook\templates\no_space_info.html:12 +#: .\cookbook\templates\no_space_info.html:6 +#: .\cookbook\templates\no_space_info.html:13 msgid "No Space" msgstr "Nessuno spazio" -#: .\cookbook\templates\no_space_info.html:15 -msgid "You are not a member of any space." -msgstr "Non sei membro di uno spazio." +#: .\cookbook\templates\no_space_info.html:17 +msgid "" +"Recipes, foods, shopping lists and more are organized in spaces of one or " +"more people." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:18 +msgid "" +"You can either be invited into an existing space or create your own one." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:31 +#: .\cookbook\templates\no_space_info.html:40 +#, fuzzy +#| msgid "No Space" +msgid "Join Space" +msgstr "Nessuno spazio" + +#: .\cookbook\templates\no_space_info.html:34 +msgid "Join an existing space." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:35 +msgid "" +"To join an existing space either enter your invite token or click on the " +"invite link the space owner send you." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:48 +#: .\cookbook\templates\no_space_info.html:56 +#, fuzzy +#| msgid "Create User" +msgid "Create Space" +msgstr "Crea utente" + +#: .\cookbook\templates\no_space_info.html:51 +msgid "Create your own recipe space." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:52 +msgid "Start your own recipe space and invite other users to it." +msgstr "" #: .\cookbook\templates\offline.html:6 msgid "Offline" @@ -1418,28 +1661,29 @@ msgstr "" "offline perché le hai aperte di recente. Ricorda che queste informazioni " "potrebbero non essere aggiornate." -#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\stats.html:47 +#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\space.html:56 +#: .\cookbook\templates\stats.html:47 msgid "Comments" msgstr "Commenti" #: .\cookbook\templates\recipe_view.html:44 .\cookbook\views\delete.py:118 -#: .\cookbook\views\edit.py:170 +#: .\cookbook\views\edit.py:179 msgid "Comment" msgstr "Commento" #: .\cookbook\templates\recipes_table.html:19 #: .\cookbook\templates\recipes_table.html:23 -#: .\cookbook\templates\url_import.html:69 +#: .\cookbook\templates\url_import.html:440 msgid "Recipe Image" msgstr "Immagine ricetta" #: .\cookbook\templates\recipes_table.html:51 -#: .\cookbook\templates\url_import.html:74 +#: .\cookbook\templates\url_import.html:445 msgid "Preparation time ca." msgstr "Tempo di preparazione circa" #: .\cookbook\templates\recipes_table.html:57 -#: .\cookbook\templates\url_import.html:79 +#: .\cookbook\templates\url_import.html:450 msgid "Waiting time ca." msgstr "Tempo di cottura circa" @@ -1455,27 +1699,67 @@ msgstr "Registo ricette cucinate" msgid "Recipe Home" msgstr "Pagina iniziale ricette" -#: .\cookbook\templates\settings.html:22 +#: .\cookbook\templates\settings.html:23 msgid "Account" msgstr "Account" -#: .\cookbook\templates\settings.html:38 -msgid "Link social account" +#: .\cookbook\templates\settings.html:27 +msgid "Preferences" +msgstr "" + +#: .\cookbook\templates\settings.html:31 +#, fuzzy +#| msgid "Settings" +msgid "API-Settings" +msgstr "Impostazioni" + +#: .\cookbook\templates\settings.html:39 +#, fuzzy +#| msgid "Settings" +msgid "Name Settings" +msgstr "Impostazioni" + +#: .\cookbook\templates\settings.html:47 +#, fuzzy +#| msgid "Password Reset" +msgid "Password Settings" +msgstr "Recupero password" + +#: .\cookbook\templates\settings.html:55 +#, fuzzy +#| msgid "Settings" +msgid "Email Settings" +msgstr "Impostazioni" + +#: .\cookbook\templates\settings.html:57 +msgid "Manage Email Settings" +msgstr "" + +#: .\cookbook\templates\settings.html:61 +#, fuzzy +#| msgid "Social Login" +msgid "Social" +msgstr "Login con social network" + +#: .\cookbook\templates\settings.html:63 +#, fuzzy +#| msgid "Link social account" +msgid "Manage Social Accounts" msgstr "Collega account social" -#: .\cookbook\templates\settings.html:42 +#: .\cookbook\templates\settings.html:75 msgid "Language" msgstr "Lingua" -#: .\cookbook\templates\settings.html:67 +#: .\cookbook\templates\settings.html:105 msgid "Style" msgstr "Stile" -#: .\cookbook\templates\settings.html:79 +#: .\cookbook\templates\settings.html:125 msgid "API Token" msgstr "Token API" -#: .\cookbook\templates\settings.html:80 +#: .\cookbook\templates\settings.html:126 msgid "" "You can use both basic authentication and token based authentication to " "access the REST API." @@ -1483,7 +1767,7 @@ msgstr "" "Per accedere alle API REST puoi usare sia l'autenticazione base sia quella " "tramite token." -#: .\cookbook\templates\settings.html:92 +#: .\cookbook\templates\settings.html:143 msgid "" "Use the token as an Authorization header prefixed by the word token as shown " "in the following examples:" @@ -1491,7 +1775,7 @@ msgstr "" "Usa il token come header Authorization preceduto dalla parola Token come " "negli esempi seguenti:" -#: .\cookbook\templates\settings.html:94 +#: .\cookbook\templates\settings.html:145 msgid "or" msgstr "o" @@ -1513,58 +1797,55 @@ msgstr "" msgid "Create Superuser account" msgstr "Crea super utente" -#: .\cookbook\templates\shopping_list.html:75 +#: .\cookbook\templates\shopping_list.html:79 msgid "Shopping Recipes" msgstr "Ricette per la spesa" -#: .\cookbook\templates\shopping_list.html:79 +#: .\cookbook\templates\shopping_list.html:83 msgid "No recipes selected" msgstr "Nessuna ricetta selezionata" -#: .\cookbook\templates\shopping_list.html:146 +#: .\cookbook\templates\shopping_list.html:150 msgid "Entry Mode" msgstr "Modalità di inserimento" -#: .\cookbook\templates\shopping_list.html:154 +#: .\cookbook\templates\shopping_list.html:158 msgid "Add Entry" msgstr "Aggiungi voce" -#: .\cookbook\templates\shopping_list.html:170 +#: .\cookbook\templates\shopping_list.html:174 msgid "Amount" msgstr "Quantità" -#: .\cookbook\templates\shopping_list.html:226 +#: .\cookbook\templates\shopping_list.html:230 +#: .\cookbook\templates\supermarket.html:7 msgid "Supermarket" msgstr "Supermercato" -#: .\cookbook\templates\shopping_list.html:236 +#: .\cookbook\templates\shopping_list.html:240 msgid "Select Supermarket" msgstr "Seleziona supermercato" -#: .\cookbook\templates\shopping_list.html:260 +#: .\cookbook\templates\shopping_list.html:264 msgid "Select User" msgstr "Seleziona utente" -#: .\cookbook\templates\shopping_list.html:279 +#: .\cookbook\templates\shopping_list.html:283 msgid "Finished" msgstr "Completato" -#: .\cookbook\templates\shopping_list.html:292 +#: .\cookbook\templates\shopping_list.html:296 msgid "You are offline, shopping list might not syncronize." msgstr "Sei offline: la lista della spesa potrebbe non sincronizzarsi." -#: .\cookbook\templates\shopping_list.html:357 +#: .\cookbook\templates\shopping_list.html:361 msgid "Copy/Export" msgstr "Copia/Esporta" -#: .\cookbook\templates\shopping_list.html:361 +#: .\cookbook\templates\shopping_list.html:365 msgid "List Prefix" msgstr "Prefisso lista" -#: .\cookbook\templates\shopping_list.html:708 -msgid "There was an error creating a resource!" -msgstr "Si è verificato un errore durante la creazione di una risorsa!" - #: .\cookbook\templates\socialaccount\connections.html:4 #: .\cookbook\templates\socialaccount\connections.html:7 msgid "Account Connections" @@ -1577,10 +1858,6 @@ msgid "" msgstr "" "Puoi accedere al tuo account usando uno dei seguenti account di terze parti:" -#: .\cookbook\templates\socialaccount\connections.html:36 -msgid "Remove" -msgstr "Rimuovi" - #: .\cookbook\templates\socialaccount\connections.html:44 msgid "" "You currently have no social network accounts connected to this account." @@ -1590,38 +1867,99 @@ msgstr "Non hai account di social network collegati a questo account." msgid "Add a 3rd Party Account" msgstr "Aggiungi un account di terze parti" -#: .\cookbook\templates\stats.html:4 -msgid "Stats" -msgstr "Statistiche" +#: .\cookbook\templates\space.html:18 +#, fuzzy +#| msgid "Description" +msgid "Manage Subscription" +msgstr "Descrizione" -#: .\cookbook\templates\stats.html:19 +#: .\cookbook\templates\space.html:26 .\cookbook\templates\stats.html:19 msgid "Number of objects" msgstr "Numero di oggetti" -#: .\cookbook\templates\stats.html:30 +#: .\cookbook\templates\space.html:39 .\cookbook\templates\stats.html:30 msgid "Recipe Imports" msgstr "Ricette importate" -#: .\cookbook\templates\stats.html:38 +#: .\cookbook\templates\space.html:47 .\cookbook\templates\stats.html:38 msgid "Objects stats" msgstr "Statistiche degli oggetti" -#: .\cookbook\templates\stats.html:41 +#: .\cookbook\templates\space.html:50 .\cookbook\templates\stats.html:41 msgid "Recipes without Keywords" msgstr "Ricette senza parole chiave" -#: .\cookbook\templates\stats.html:43 +#: .\cookbook\templates\space.html:52 .\cookbook\templates\stats.html:43 msgid "External Recipes" msgstr "Ricette esterne" -#: .\cookbook\templates\stats.html:45 +#: .\cookbook\templates\space.html:54 .\cookbook\templates\stats.html:45 msgid "Internal Recipes" msgstr "Ricette interne" -#: .\cookbook\templates\system.html:21 .\cookbook\views\lists.py:115 +#: .\cookbook\templates\space.html:67 +msgid "Members" +msgstr "" + +#: .\cookbook\templates\space.html:71 +#, fuzzy +#| msgid "Invite Links" +msgid "Invite User" +msgstr "Link di invito" + +#: .\cookbook\templates\space.html:82 +msgid "User" +msgstr "" + +#: .\cookbook\templates\space.html:83 +msgid "Groups" +msgstr "" + +#: .\cookbook\templates\space.html:99 +#, fuzzy +#| msgid "Admin" +msgid "admin" +msgstr "Amministratore" + +#: .\cookbook\templates\space.html:100 +msgid "user" +msgstr "" + +#: .\cookbook\templates\space.html:101 +msgid "guest" +msgstr "" + +#: .\cookbook\templates\space.html:102 +#, fuzzy +#| msgid "Remove" +msgid "remove" +msgstr "Rimuovi" + +#: .\cookbook\templates\space.html:106 +msgid "Update" +msgstr "" + +#: .\cookbook\templates\space.html:110 +#, fuzzy +#| msgid "You cannot edit this storage!" +msgid "You cannot edit yourself." +msgstr "Non puoi modificare questo backend!" + +#: .\cookbook\templates\space.html:117 +#, fuzzy +#| msgid "There are no recipes in this book yet." +msgid "There are no members in your space yet!" +msgstr "Non ci sono ancora ricette in questo libro." + +#: .\cookbook\templates\space.html:124 .\cookbook\templates\system.html:21 +#: .\cookbook\views\lists.py:115 msgid "Invite Links" msgstr "Link di invito" +#: .\cookbook\templates\stats.html:4 +msgid "Stats" +msgstr "Statistiche" + #: .\cookbook\templates\system.html:22 msgid "Show Links" msgstr "Mostra link" @@ -1743,45 +2081,157 @@ msgstr "" "raccomandato perché alcune\n" "funzionalità sono disponibili solo con un database Posgres." -#: .\cookbook\templates\url_import.html:5 +#: .\cookbook\templates\url_import.html:6 msgid "URL Import" msgstr "Importa da URL" -#: .\cookbook\templates\url_import.html:23 +#: .\cookbook\templates\url_import.html:31 +msgid "Drag me to your bookmarks to import recipes from anywhere" +msgstr "" + +#: .\cookbook\templates\url_import.html:32 +#, fuzzy +#| msgid "Bookmark saved!" +msgid "Bookmark Me!" +msgstr "Preferito salvato!" + +#: .\cookbook\templates\url_import.html:61 msgid "Enter website URL" msgstr "Inserisci l'indirizzo del sito web" -#: .\cookbook\templates\url_import.html:36 -msgid "Enter json directly" -msgstr "Inserisci direttamente il json" +#: .\cookbook\templates\url_import.html:97 +msgid "Select recipe files to import or drop them here..." +msgstr "" -#: .\cookbook\templates\url_import.html:57 +#: .\cookbook\templates\url_import.html:118 +msgid "Paste json or html source here to load recipe." +msgstr "" + +#: .\cookbook\templates\url_import.html:146 +#, fuzzy +#| msgid "View Recipe" +msgid "Preview Recipe Data" +msgstr "Mostra ricetta" + +#: .\cookbook\templates\url_import.html:147 +msgid "Drag recipe attributes from the right into the appropriate box below." +msgstr "" + +#: .\cookbook\templates\url_import.html:156 +#: .\cookbook\templates\url_import.html:173 +#: .\cookbook\templates\url_import.html:190 +#: .\cookbook\templates\url_import.html:209 +#: .\cookbook\templates\url_import.html:227 +#: .\cookbook\templates\url_import.html:242 +#: .\cookbook\templates\url_import.html:257 +#: .\cookbook\templates\url_import.html:273 +#: .\cookbook\templates\url_import.html:300 +#: .\cookbook\templates\url_import.html:351 +msgid "Clear Contents" +msgstr "" + +#: .\cookbook\templates\url_import.html:158 +msgid "Text dragged here will be appended to the name." +msgstr "" + +#: .\cookbook\templates\url_import.html:175 +msgid "Text dragged here will be appended to the description." +msgstr "" + +#: .\cookbook\templates\url_import.html:192 +msgid "Keywords dragged here will be appended to current list" +msgstr "" + +#: .\cookbook\templates\url_import.html:207 +msgid "Image" +msgstr "" + +#: .\cookbook\templates\url_import.html:239 +#, fuzzy +#| msgid "Preparation Time" +msgid "Prep Time" +msgstr "Tempo di preparazione" + +#: .\cookbook\templates\url_import.html:254 +#, fuzzy +#| msgid "Time" +msgid "Cook Time" +msgstr "Tempo" + +#: .\cookbook\templates\url_import.html:275 +msgid "Ingredients dragged here will be appended to current list." +msgstr "" + +#: .\cookbook\templates\url_import.html:302 +msgid "" +"Recipe instructions dragged here will be appended to current instructions." +msgstr "" + +#: .\cookbook\templates\url_import.html:325 +#, fuzzy +#| msgid "Discovered Recipes" +msgid "Discovered Attributes" +msgstr "Ricette trovate" + +#: .\cookbook\templates\url_import.html:327 +msgid "" +"Drag recipe attributes from below into the appropriate box on the left. " +"Click any node to display its full properties." +msgstr "" + +#: .\cookbook\templates\url_import.html:344 +#, fuzzy +#| msgid "Show as header" +msgid "Show Blank Field" +msgstr "Mostra come intestazione" + +#: .\cookbook\templates\url_import.html:349 +msgid "Blank Field" +msgstr "" + +#: .\cookbook\templates\url_import.html:353 +msgid "Items dragged to Blank Field will be appended." +msgstr "" + +#: .\cookbook\templates\url_import.html:400 +#, fuzzy +#| msgid "Delete Step" +msgid "Delete Text" +msgstr "Elimina Step" + +#: .\cookbook\templates\url_import.html:413 +#, fuzzy +#| msgid "Delete Recipe" +msgid "Delete image" +msgstr "Elimina Ricetta" + +#: .\cookbook\templates\url_import.html:429 msgid "Recipe Name" msgstr "Nome Ricetta" -#: .\cookbook\templates\url_import.html:62 +#: .\cookbook\templates\url_import.html:433 msgid "Recipe Description" msgstr "Descrizione ricetta" -#: .\cookbook\templates\url_import.html:123 -#: .\cookbook\templates\url_import.html:155 -#: .\cookbook\templates\url_import.html:211 +#: .\cookbook\templates\url_import.html:494 +#: .\cookbook\templates\url_import.html:526 +#: .\cookbook\templates\url_import.html:582 msgid "Select one" msgstr "Seleziona un elemento" -#: .\cookbook\templates\url_import.html:225 +#: .\cookbook\templates\url_import.html:596 msgid "All Keywords" msgstr "Tutte le parole chiave" -#: .\cookbook\templates\url_import.html:228 +#: .\cookbook\templates\url_import.html:599 msgid "Import all keywords, not only the ones already existing." msgstr "Importa tutte le parole chiave, non solo quelle che già esistono." -#: .\cookbook\templates\url_import.html:255 +#: .\cookbook\templates\url_import.html:626 msgid "Information" msgstr "Info" -#: .\cookbook\templates\url_import.html:257 +#: .\cookbook\templates\url_import.html:628 msgid "" " Only websites containing ld+json or microdata information can currently\n" " be imported. Most big recipe pages " @@ -1797,49 +2247,79 @@ msgstr "" "Se questo sito non può essere importato ma credi che abbia una qualche tipo " "di struttura dati, puoi inviare un esempio nella sezione Issues su GitHub." -#: .\cookbook\templates\url_import.html:265 +#: .\cookbook\templates\url_import.html:636 msgid "Google ld+json Info" msgstr "Info Google Id+json" -#: .\cookbook\templates\url_import.html:268 +#: .\cookbook\templates\url_import.html:639 msgid "GitHub Issues" msgstr "Issues (Problemi aperti) su GitHub" -#: .\cookbook\templates\url_import.html:270 +#: .\cookbook\templates\url_import.html:641 msgid "Recipe Markup Specification" msgstr "Specifica di Markup della ricetta" -#: .\cookbook\views\api.py:71 +#: .\cookbook\views\api.py:77 msgid "Parameter updated_at incorrectly formatted" msgstr "Il parametro updated_at non è formattato correttamente" -#: .\cookbook\views\api.py:455 .\cookbook\views\views.py:226 +#: .\cookbook\views\api.py:553 .\cookbook\views\views.py:295 msgid "This feature is not available in the demo version!" msgstr "Questa funzione non è disponibile nella versione demo!" -#: .\cookbook\views\api.py:478 +#: .\cookbook\views\api.py:576 msgid "Sync successful!" msgstr "Sincronizzazione completata con successo!" -#: .\cookbook\views\api.py:483 +#: .\cookbook\views\api.py:581 msgid "Error synchronizing with Storage" msgstr "Errore di sincronizzazione con questo backend" -#: .\cookbook\views\api.py:556 .\cookbook\views\api.py:576 +#: .\cookbook\views\api.py:649 +msgid "Nothing to do." +msgstr "" + +#: .\cookbook\views\api.py:664 +msgid "The requested site provided malformed data and cannot be read." +msgstr "" +"Il sito richiesto ha fornito dati in formato non corretto e non può essere " +"letto." + +#: .\cookbook\views\api.py:671 msgid "The requested page could not be found." msgstr "La pagina richiesta non è stata trovata." -#: .\cookbook\views\api.py:585 +#: .\cookbook\views\api.py:680 msgid "" -"The requested page refused to provide any information (Status Code 403)." +"The requested site does not provide any recognized data format to import the " +"recipe from." msgstr "" -"La pagina richiesta si è rifiutata di fornire informazioni (Errore 403)." +"Il sito richiesto non fornisce un formato di dati riconosciuto da cui " +"importare la ricetta." -#: .\cookbook\views\api.py:611 -msgid "Could not parse correctly..." -msgstr "Impossibile elaborare correttamente..." +#: .\cookbook\views\api.py:694 +#, fuzzy +#| msgid "The requested page could not be found." +msgid "No useable data could be found." +msgstr "La pagina richiesta non è stata trovata." -#: .\cookbook\views\data.py:94 +#: .\cookbook\views\api.py:710 +msgid "I couldn't find anything to do." +msgstr "" + +#: .\cookbook\views\data.py:30 .\cookbook\views\data.py:121 +#: .\cookbook\views\edit.py:50 .\cookbook\views\import_export.py:67 +#: .\cookbook\views\new.py:32 +msgid "You have reached the maximum number of recipes for your space." +msgstr "" + +#: .\cookbook\views\data.py:34 .\cookbook\views\data.py:125 +#: .\cookbook\views\edit.py:54 .\cookbook\views\import_export.py:71 +#: .\cookbook\views\new.py:36 +msgid "You have more users than allowed in your space." +msgstr "" + +#: .\cookbook\views\data.py:103 #, python-format msgid "Batch edit done. %(count)d recipe was updated." msgid_plural "Batch edit done. %(count)d Recipes where updated." @@ -1852,7 +2332,7 @@ msgid "Monitor" msgstr "Monitoraggio" #: .\cookbook\views\delete.py:96 .\cookbook\views\lists.py:102 -#: .\cookbook\views\new.py:86 +#: .\cookbook\views\new.py:98 msgid "Storage Backend" msgstr "Backend di archiviazione" @@ -1863,8 +2343,8 @@ msgstr "" "Non è possibile eliminare questo backend di archiviazione perchè è usato in " "almeno un monitoraggio." -#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:204 -#: .\cookbook\views\new.py:144 +#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:213 +#: .\cookbook\views\new.py:156 msgid "Recipe Book" msgstr "Libro delle ricette" @@ -1872,57 +2352,57 @@ msgstr "Libro delle ricette" msgid "Bookmarks" msgstr "Preferiti" -#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:214 +#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:252 msgid "Invite Link" msgstr "Link di invito" -#: .\cookbook\views\edit.py:110 +#: .\cookbook\views\edit.py:119 msgid "Food" msgstr "Alimento" -#: .\cookbook\views\edit.py:119 +#: .\cookbook\views\edit.py:128 msgid "You cannot edit this storage!" msgstr "Non puoi modificare questo backend!" -#: .\cookbook\views\edit.py:139 +#: .\cookbook\views\edit.py:148 msgid "Storage saved!" msgstr "Backend salvato!" -#: .\cookbook\views\edit.py:145 +#: .\cookbook\views\edit.py:154 msgid "There was an error updating this storage backend!" msgstr "" "Si è verificato un errore durante l'aggiornamento di questo backend di " "archiviazione!" -#: .\cookbook\views\edit.py:156 +#: .\cookbook\views\edit.py:165 msgid "Storage" msgstr "Archiviazione" -#: .\cookbook\views\edit.py:252 +#: .\cookbook\views\edit.py:261 msgid "Changes saved!" msgstr "Modifiche salvate!" -#: .\cookbook\views\edit.py:256 +#: .\cookbook\views\edit.py:265 msgid "Error saving changes!" msgstr "Si è verificato un errore durante il salvataggio delle modifiche!" -#: .\cookbook\views\edit.py:289 +#: .\cookbook\views\edit.py:299 msgid "Units merged!" msgstr "Le unità sono state unite!" -#: .\cookbook\views\edit.py:291 .\cookbook\views\edit.py:307 +#: .\cookbook\views\edit.py:301 .\cookbook\views\edit.py:317 msgid "Cannot merge with the same object!" msgstr "Non è possibile unirlo con lo stesso oggetto!" -#: .\cookbook\views\edit.py:305 +#: .\cookbook\views\edit.py:315 msgid "Foods merged!" msgstr "Gli alimenti sono stati uniti!" -#: .\cookbook\views\import_export.py:73 +#: .\cookbook\views\import_export.py:93 msgid "Importing is not implemented for this provider" msgstr "Questo provider non permette l'importazione" -#: .\cookbook\views\import_export.py:92 +#: .\cookbook\views\import_export.py:115 msgid "Exporting is not implemented for this provider" msgstr "Questo provider non permette l'esportazione" @@ -1938,23 +2418,77 @@ msgstr "Trovate" msgid "Shopping Lists" msgstr "Liste della spesa" -#: .\cookbook\views\new.py:111 +#: .\cookbook\views\new.py:123 msgid "Imported new recipe!" msgstr "La nuova ricetta è stata importata!" -#: .\cookbook\views\new.py:114 +#: .\cookbook\views\new.py:126 msgid "There was an error importing this recipe!" msgstr "Si è verificato un errore durante l'importazione di questa ricetta!" -#: .\cookbook\views\views.py:123 +#: .\cookbook\views\new.py:226 +msgid "Hello" +msgstr "" + +#: .\cookbook\views\new.py:226 +msgid "You have been invited by " +msgstr "" + +#: .\cookbook\views\new.py:227 +msgid " to join their Tandoor Recipes space " +msgstr "" + +#: .\cookbook\views\new.py:228 +msgid "Click the following link to activate your account: " +msgstr "" + +#: .\cookbook\views\new.py:229 +msgid "" +"If the link does not work use the following code to manually join the space: " +msgstr "" + +#: .\cookbook\views\new.py:230 +msgid "The invitation is valid until " +msgstr "" + +#: .\cookbook\views\new.py:231 +msgid "" +"Tandoor Recipes is an Open Source recipe manager. Check it out on GitHub " +msgstr "" + +#: .\cookbook\views\new.py:234 +msgid "Tandoor Recipes Invite" +msgstr "" + +#: .\cookbook\views\new.py:241 +msgid "Invite link successfully send to user." +msgstr "" + +#: .\cookbook\views\new.py:244 +msgid "" +"You have send to many emails, please share the link manually or wait a few " +"hours." +msgstr "" + +#: .\cookbook\views\new.py:246 +msgid "Email to user could not be send, please share link manually." +msgstr "" + +#: .\cookbook\views\views.py:125 +msgid "" +"You have successfully created your own recipe space. Start by adding some " +"recipes or invite other people to join you." +msgstr "" + +#: .\cookbook\views\views.py:173 msgid "You do not have the required permissions to perform this action!" msgstr "Non hai i permessi necessari per completare questa operazione!" -#: .\cookbook\views\views.py:134 +#: .\cookbook\views\views.py:184 msgid "Comment saved!" msgstr "Commento salvato!" -#: .\cookbook\views\views.py:326 +#: .\cookbook\views\views.py:396 msgid "" "The setup page can only be used to create the first user! If you have " "forgotten your superuser credentials please consult the django documentation " @@ -1964,22 +2498,67 @@ msgstr "" "utente! Se hai dimenticato le credenziali del tuo super utente controlla la " "documentazione di Django per resettare le password. " -#: .\cookbook\views\views.py:333 .\cookbook\views\views.py:378 +#: .\cookbook\views\views.py:403 msgid "Passwords dont match!" msgstr "Le password non combaciano!" -#: .\cookbook\views\views.py:349 .\cookbook\views\views.py:385 +#: .\cookbook\views\views.py:419 msgid "User has been created, please login!" msgstr "L'utente è stato creato e ora può essere usato per il login!" -#: .\cookbook\views\views.py:365 +#: .\cookbook\views\views.py:435 msgid "Malformed Invite Link supplied!" msgstr "È stato fornito un link di invito non valido!" -#: .\cookbook\views\views.py:405 +#: .\cookbook\views\views.py:441 +#, fuzzy +#| msgid "You are not logged in and therefore cannot view this page!" +msgid "You are already member of a space and therefore cannot join this one." +msgstr "Non hai fatto l'accesso e quindi non puoi visualizzare questa pagina!" + +#: .\cookbook\views\views.py:452 +msgid "Successfully joined space." +msgstr "" + +#: .\cookbook\views\views.py:458 msgid "Invite Link not valid or already used!" msgstr "Il link di invito non è valido o è stato già usato!" +#~ msgid "" +#~ "A username is not required, if left blank the new user can choose one." +#~ msgstr "" +#~ "Non è richiesto un nome utente, se lasciato vuoto il nuovo utente ne può " +#~ "sceglierne uno." + +#~ msgid "Imported from" +#~ msgstr "Importato da" + +#~ msgid "Link" +#~ msgstr "Link" + +#~ msgid "Logout" +#~ msgstr "Logout" + +#~ msgid "Website Import" +#~ msgstr "Importa dal web" + +#~ msgid "You are not a member of any space." +#~ msgstr "Non sei membro di uno spazio." + +#~ msgid "There was an error creating a resource!" +#~ msgstr "Si è verificato un errore durante la creazione di una risorsa!" + +#~ msgid "Enter json directly" +#~ msgstr "Inserisci direttamente il json" + +#~ msgid "" +#~ "The requested page refused to provide any information (Status Code 403)." +#~ msgstr "" +#~ "La pagina richiesta si è rifiutata di fornire informazioni (Errore 403)." + +#~ msgid "Could not parse correctly..." +#~ msgstr "Impossibile elaborare correttamente..." + #~ msgid "Number of servings" #~ msgstr "Porzioni" @@ -2001,6 +2580,3 @@ msgstr "Il link di invito non è valido o è stato già usato!" #~ msgid "This recipe is already linked to the book!" #~ msgstr "Questa ricetta è già collegata al libro!" - -#~ msgid "Bookmark saved!" -#~ msgstr "Preferito salvato!" diff --git a/cookbook/locale/lv/LC_MESSAGES/django.po b/cookbook/locale/lv/LC_MESSAGES/django.po index dcc44959..561861e2 100644 --- a/cookbook/locale/lv/LC_MESSAGES/django.po +++ b/cookbook/locale/lv/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-04-11 15:09+0200\n" +"POT-Creation-Date: 2021-06-12 20:30+0200\n" "PO-Revision-Date: 2020-06-02 19:28+0000\n" "Last-Translator: vabene1111 , 2021\n" "Language-Team: Latvian (https://www.transifex.com/django-recipes/" @@ -23,14 +23,15 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " "2);\n" -#: .\cookbook\filters.py:23 .\cookbook\templates\base.html:91 -#: .\cookbook\templates\forms\edit_internal_recipe.html:219 +#: .\cookbook\filters.py:23 .\cookbook\templates\base.html:98 +#: .\cookbook\templates\forms\edit_internal_recipe.html:246 #: .\cookbook\templates\forms\ingredients.html:34 -#: .\cookbook\templates\stats.html:28 .\cookbook\views\lists.py:67 +#: .\cookbook\templates\space.html:37 .\cookbook\templates\stats.html:28 +#: .\cookbook\templates\url_import.html:270 .\cookbook\views\lists.py:67 msgid "Ingredients" msgstr "Sastāvdaļas" -#: .\cookbook\forms.py:45 +#: .\cookbook\forms.py:49 msgid "" "Color of the top navigation bar. Not all colors work with all themes, just " "try them out!" @@ -38,11 +39,11 @@ msgstr "" "Augšējās navigācijas joslas krāsa. Ne visas krāsas darbojas ar visām tēmām, " "vienkārši izmēģiniet tās!" -#: .\cookbook\forms.py:46 +#: .\cookbook\forms.py:51 msgid "Default Unit to be used when inserting a new ingredient into a recipe." msgstr "Noklusējuma vienība, ko izmantot, ievietojot receptē jaunu sastāvdaļu." -#: .\cookbook\forms.py:47 +#: .\cookbook\forms.py:53 msgid "" "Enables support for fractions in ingredient amounts (e.g. convert decimals " "to fractions automatically)" @@ -50,7 +51,7 @@ msgstr "" "Iespējot daļskaitļus sastāvdaļu daudzumos (piemēram, decimāldaļas " "automātiski pārveidot par daļskaitļiem)" -#: .\cookbook\forms.py:48 +#: .\cookbook\forms.py:56 msgid "" "Users with whom newly created meal plan/shopping list entries should be " "shared by default." @@ -58,20 +59,20 @@ msgstr "" "Lietotāji, ar kuriem jaunizveidotie maltīšu saraksti/iepirkumu saraksti tiks " "kopīgoti pēc noklusējuma." -#: .\cookbook\forms.py:49 +#: .\cookbook\forms.py:58 msgid "Show recently viewed recipes on search page." msgstr "Parādīt nesen skatītās receptes meklēšanas lapā." -#: .\cookbook\forms.py:50 +#: .\cookbook\forms.py:59 msgid "Number of decimals to round ingredients." msgstr "Ciparu skaits pēc komata decimāldaļām sastāvdaļās." -#: .\cookbook\forms.py:51 +#: .\cookbook\forms.py:60 msgid "If you want to be able to create and see comments underneath recipes." msgstr "" "Ja vēlaties, lai jūs varētu izveidot un redzēt komentārus zem receptēm." -#: .\cookbook\forms.py:53 +#: .\cookbook\forms.py:62 msgid "" "Setting to 0 will disable auto sync. When viewing a shopping list the list " "is updated every set seconds to sync changes someone else might have made. " @@ -85,11 +86,11 @@ msgstr "" "Ja tas ir zemāks par instances ierobežojumu, tas tiek atiestatīts, " "saglabājot." -#: .\cookbook\forms.py:56 +#: .\cookbook\forms.py:65 msgid "Makes the navbar stick to the top of the page." msgstr "" -#: .\cookbook\forms.py:72 +#: .\cookbook\forms.py:81 msgid "" "Both fields are optional. If none are given the username will be displayed " "instead" @@ -97,89 +98,92 @@ msgstr "" "Abi lauki nav obligāti. Ja neviens nav norādīts, tā vietā tiks parādīts " "lietotājvārds" -#: .\cookbook\forms.py:93 .\cookbook\forms.py:315 -#: .\cookbook\templates\forms\edit_internal_recipe.html:45 +#: .\cookbook\forms.py:102 .\cookbook\forms.py:331 +#: .\cookbook\templates\forms\edit_internal_recipe.html:49 +#: .\cookbook\templates\url_import.html:154 msgid "Name" msgstr "Vārds" -#: .\cookbook\forms.py:94 .\cookbook\forms.py:316 -#: .\cookbook\templates\base.html:98 -#: .\cookbook\templates\forms\edit_internal_recipe.html:81 -#: .\cookbook\templates\stats.html:24 .\cookbook\templates\url_import.html:202 +#: .\cookbook\forms.py:103 .\cookbook\forms.py:332 +#: .\cookbook\templates\base.html:105 +#: .\cookbook\templates\forms\edit_internal_recipe.html:85 +#: .\cookbook\templates\space.html:33 .\cookbook\templates\stats.html:24 +#: .\cookbook\templates\url_import.html:188 +#: .\cookbook\templates\url_import.html:573 msgid "Keywords" msgstr "Atslēgvārdi" -#: .\cookbook\forms.py:95 +#: .\cookbook\forms.py:104 msgid "Preparation time in minutes" msgstr "Pagatavošanas laiks minūtēs" -#: .\cookbook\forms.py:96 +#: .\cookbook\forms.py:105 msgid "Waiting time (cooking/baking) in minutes" msgstr "Gaidīšanas laiks (vārīšana / cepšana) minūtēs" -#: .\cookbook\forms.py:97 .\cookbook\forms.py:317 +#: .\cookbook\forms.py:106 .\cookbook\forms.py:333 msgid "Path" msgstr "Ceļš" -#: .\cookbook\forms.py:98 +#: .\cookbook\forms.py:107 msgid "Storage UID" msgstr "Krātuves UID" -#: .\cookbook\forms.py:121 +#: .\cookbook\forms.py:133 msgid "Default" msgstr "" -#: .\cookbook\forms.py:130 +#: .\cookbook\forms.py:144 .\cookbook\templates\url_import.html:90 msgid "" "To prevent duplicates recipes with the same name as existing ones are " "ignored. Check this box to import everything." msgstr "" -#: .\cookbook\forms.py:149 +#: .\cookbook\forms.py:164 msgid "New Unit" msgstr "Jaunā vienība" -#: .\cookbook\forms.py:150 +#: .\cookbook\forms.py:165 msgid "New unit that other gets replaced by." msgstr "Jauna vienība, ar kuru cits tiek aizstāts." -#: .\cookbook\forms.py:155 +#: .\cookbook\forms.py:170 msgid "Old Unit" msgstr "Vecā vienība" -#: .\cookbook\forms.py:156 +#: .\cookbook\forms.py:171 msgid "Unit that should be replaced." msgstr "Vienība, kas jāaizstāj." -#: .\cookbook\forms.py:172 +#: .\cookbook\forms.py:187 msgid "New Food" msgstr "Jauns ēdiens" -#: .\cookbook\forms.py:173 +#: .\cookbook\forms.py:188 msgid "New food that other gets replaced by." msgstr "Jauns ēdiens, ar kuru citi tiek aizstāti." -#: .\cookbook\forms.py:178 +#: .\cookbook\forms.py:193 msgid "Old Food" msgstr "Vecais ēdiens" -#: .\cookbook\forms.py:179 +#: .\cookbook\forms.py:194 msgid "Food that should be replaced." msgstr "Ēdiens, kas būtu jāaizstāj." -#: .\cookbook\forms.py:197 +#: .\cookbook\forms.py:212 msgid "Add your comment: " msgstr "Pievienot komentāru: " -#: .\cookbook\forms.py:238 +#: .\cookbook\forms.py:253 msgid "Leave empty for dropbox and enter app password for nextcloud." msgstr "Atstājiet tukšu Dropbox un ievadiet lietotnes paroli Nextcloud." -#: .\cookbook\forms.py:245 +#: .\cookbook\forms.py:260 msgid "Leave empty for nextcloud and enter api token for dropbox." msgstr "Atstājiet tukšu Nextcloud un ievadiet API tokenu Dropbox." -#: .\cookbook\forms.py:253 +#: .\cookbook\forms.py:269 msgid "" "Leave empty for dropbox and enter only base url for nextcloud (/remote." "php/webdav/ is added automatically)" @@ -187,26 +191,26 @@ msgstr "" "Atstājiet tukšu Dropbox un ievadiet tikai Nextcloud bāzes URL ( /" "remote.php/webdav/ tiek pievienots automātiski)" -#: .\cookbook\forms.py:291 +#: .\cookbook\forms.py:307 msgid "Search String" msgstr "Meklēšanas virkne" -#: .\cookbook\forms.py:318 +#: .\cookbook\forms.py:334 msgid "File ID" msgstr "Faila ID" -#: .\cookbook\forms.py:354 +#: .\cookbook\forms.py:370 msgid "You must provide at least a recipe or a title." msgstr "Jums jānorāda vismaz recepte vai nosaukums." -#: .\cookbook\forms.py:367 +#: .\cookbook\forms.py:383 msgid "You can list default users to share recipes with in the settings." msgstr "" "Iestatījumos varat uzskaitīt noklusējuma lietotājus, ar kuriem koplietot " "receptes." -#: .\cookbook\forms.py:368 -#: .\cookbook\templates\forms\edit_internal_recipe.html:377 +#: .\cookbook\forms.py:384 +#: .\cookbook\templates\forms\edit_internal_recipe.html:404 msgid "" "You can use markdown to format this field. See the docs here" @@ -214,50 +218,57 @@ msgstr "" "Lai formatētu šo lauku, varat izmantot Markdown. Skatiet dokumentus šeit " -#: .\cookbook\forms.py:393 -msgid "A username is not required, if left blank the new user can choose one." +#: .\cookbook\forms.py:409 +msgid "Maximum number of users for this space reached." msgstr "" -"Lietotājvārds nav nepieciešams. Ja tas tiks atstāts tukšs, lietotājs to " -"varēs izvēlēties pats." -#: .\cookbook\helper\permission_helper.py:123 -#: .\cookbook\helper\permission_helper.py:129 -#: .\cookbook\helper\permission_helper.py:151 -#: .\cookbook\helper\permission_helper.py:196 -#: .\cookbook\helper\permission_helper.py:210 -#: .\cookbook\helper\permission_helper.py:221 -#: .\cookbook\helper\permission_helper.py:232 .\cookbook\views\data.py:30 -#: .\cookbook\views\views.py:112 .\cookbook\views\views.py:116 -#: .\cookbook\views\views.py:184 -msgid "You do not have the required permissions to view this page!" -msgstr "Jums nav nepieciešamo atļauju, lai apskatītu šo lapu!" +#: .\cookbook\forms.py:415 +msgid "Email address already taken!" +msgstr "" -#: .\cookbook\helper\permission_helper.py:141 +#: .\cookbook\forms.py:423 +msgid "" +"An email address is not required but if present the invite link will be send " +"to the user." +msgstr "" + +#: .\cookbook\forms.py:438 +msgid "Name already taken." +msgstr "" + +#: .\cookbook\forms.py:449 +msgid "Accept Terms and Privacy" +msgstr "" + +#: .\cookbook\helper\AllAuthCustomAdapter.py:30 +msgid "" +"In order to prevent spam, the requested email was not send. Please wait a " +"few minutes and try again." +msgstr "" + +#: .\cookbook\helper\permission_helper.py:124 +#: .\cookbook\helper\permission_helper.py:144 .\cookbook\views\views.py:147 msgid "You are not logged in and therefore cannot view this page!" msgstr "Jūs neesat pieteicies un tāpēc nevarat skatīt šo lapu!" -#: .\cookbook\helper\permission_helper.py:145 -#: .\cookbook\helper\permission_helper.py:167 -#: .\cookbook\helper\permission_helper.py:182 +#: .\cookbook\helper\permission_helper.py:127 +#: .\cookbook\helper\permission_helper.py:132 +#: .\cookbook\helper\permission_helper.py:154 +#: .\cookbook\helper\permission_helper.py:199 +#: .\cookbook\helper\permission_helper.py:213 +#: .\cookbook\helper\permission_helper.py:224 +#: .\cookbook\helper\permission_helper.py:235 .\cookbook\views\data.py:39 +#: .\cookbook\views\views.py:158 .\cookbook\views\views.py:165 +#: .\cookbook\views\views.py:253 +msgid "You do not have the required permissions to view this page!" +msgstr "Jums nav nepieciešamo atļauju, lai apskatītu šo lapu!" + +#: .\cookbook\helper\permission_helper.py:148 +#: .\cookbook\helper\permission_helper.py:170 +#: .\cookbook\helper\permission_helper.py:185 msgid "You cannot interact with this object as it is not owned by you!" msgstr "Jūs nevarat mainīt šo objektu, jo tas nepieder jums!" -#: .\cookbook\helper\recipe_url_import.py:40 .\cookbook\views\api.py:549 -msgid "The requested site provided malformed data and cannot be read." -msgstr "Pieprasītā vietne sniedza nepareizus datus, kurus nevar nolasīt." - -#: .\cookbook\helper\recipe_url_import.py:54 -msgid "" -"The requested site does not provide any recognized data format to import the " -"recipe from." -msgstr "" -"Pieprasītajā vietnē nav norādīts atzīts datu formāts, no kura varētu " -"importēt recepti." - -#: .\cookbook\helper\recipe_url_import.py:160 -msgid "Imported from" -msgstr "Importēts no" - #: .\cookbook\helper\template_helper.py:60 #: .\cookbook\helper\template_helper.py:62 msgid "Could not parse template code." @@ -267,47 +278,58 @@ msgstr "" #: .\cookbook\templates\import.html:14 .\cookbook\templates\import.html:20 #: .\cookbook\templates\import_response.html:7 #: .\cookbook\templates\test.html:14 .\cookbook\templates\test.html:20 -#: .\cookbook\templates\url_import.html:233 .\cookbook\views\delete.py:60 -#: .\cookbook\views\edit.py:190 +#: .\cookbook\templates\url_import.html:27 +#: .\cookbook\templates\url_import.html:101 +#: .\cookbook\templates\url_import.html:123 +#: .\cookbook\templates\url_import.html:317 +#: .\cookbook\templates\url_import.html:604 .\cookbook\views\delete.py:60 +#: .\cookbook\views\edit.py:199 msgid "Import" msgstr "Importēt" -#: .\cookbook\integration\integration.py:131 +#: .\cookbook\integration\integration.py:162 msgid "" "Importer expected a .zip file. Did you choose the correct importer type for " "your data ?" msgstr "" -#: .\cookbook\integration\integration.py:134 +#: .\cookbook\integration\integration.py:165 +msgid "" +"An unexpected error occurred during the import. Please make sure you have " +"uploaded a valid file." +msgstr "" + +#: .\cookbook\integration\integration.py:169 msgid "The following recipes were ignored because they already existed:" msgstr "" -#: .\cookbook\integration\integration.py:137 +#: .\cookbook\integration\integration.py:173 #, fuzzy, python-format #| msgid "Imported new recipe!" msgid "Imported %s recipes." msgstr "Importēta jauna recepte!" -#: .\cookbook\integration\paprika.py:44 +#: .\cookbook\integration\paprika.py:46 #, fuzzy #| msgid "Note" msgid "Notes" msgstr "Piezīme" -#: .\cookbook\integration\paprika.py:47 +#: .\cookbook\integration\paprika.py:49 #, fuzzy #| msgid "Information" msgid "Nutritional Information" msgstr "Informācija" -#: .\cookbook\integration\paprika.py:50 +#: .\cookbook\integration\paprika.py:53 msgid "Source" msgstr "" #: .\cookbook\integration\safron.py:23 -#: .\cookbook\templates\forms\edit_internal_recipe.html:75 +#: .\cookbook\templates\forms\edit_internal_recipe.html:79 #: .\cookbook\templates\include\log_cooking.html:16 -#: .\cookbook\templates\url_import.html:84 +#: .\cookbook\templates\url_import.html:224 +#: .\cookbook\templates\url_import.html:455 msgid "Servings" msgstr "Porciju skaits" @@ -316,11 +338,11 @@ msgid "Waiting time" msgstr "" #: .\cookbook\integration\safron.py:27 -#: .\cookbook\templates\forms\edit_internal_recipe.html:69 +#: .\cookbook\templates\forms\edit_internal_recipe.html:73 msgid "Preparation Time" msgstr "Pagatavošanas laiks" -#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:71 +#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:78 #: .\cookbook\templates\forms\ingredients.html:7 #: .\cookbook\templates\index.html:7 msgid "Cookbook" @@ -346,44 +368,74 @@ msgstr "Vakariņas" msgid "Other" msgstr "Cits" -#: .\cookbook\models.py:110 .\cookbook\templates\shopping_list.html:48 +#: .\cookbook\models.py:71 +msgid "" +"Maximum file storage for space in MB. 0 for unlimited, -1 to disable file " +"upload." +msgstr "" + +#: .\cookbook\models.py:121 .\cookbook\templates\search.html:7 +#: .\cookbook\templates\shopping_list.html:52 msgid "Search" msgstr "Meklēt" -#: .\cookbook\models.py:111 .\cookbook\templates\base.html:85 +#: .\cookbook\models.py:122 .\cookbook\templates\base.html:92 #: .\cookbook\templates\meal_plan.html:5 .\cookbook\views\delete.py:152 -#: .\cookbook\views\edit.py:224 .\cookbook\views\new.py:188 +#: .\cookbook\views\edit.py:233 .\cookbook\views\new.py:201 msgid "Meal-Plan" msgstr "Maltīšu plāns" -#: .\cookbook\models.py:112 .\cookbook\templates\base.html:82 +#: .\cookbook\models.py:123 .\cookbook\templates\base.html:89 msgid "Books" msgstr "Grāmatas" -#: .\cookbook\models.py:119 +#: .\cookbook\models.py:131 msgid "Small" msgstr "Mazs" -#: .\cookbook\models.py:119 +#: .\cookbook\models.py:131 msgid "Large" msgstr "Liels" -#: .\cookbook\models.py:327 -#: .\cookbook\templates\forms\edit_internal_recipe.html:198 +#: .\cookbook\models.py:131 .\cookbook\templates\generic\new_template.html:6 +#: .\cookbook\templates\generic\new_template.html:14 +#: .\cookbook\templates\meal_plan.html:323 +msgid "New" +msgstr "Jauns" + +#: .\cookbook\models.py:340 +#: .\cookbook\templates\forms\edit_internal_recipe.html:202 msgid "Text" msgstr "Teskts" -#: .\cookbook\models.py:327 -#: .\cookbook\templates\forms\edit_internal_recipe.html:199 +#: .\cookbook\models.py:340 +#: .\cookbook\templates\forms\edit_internal_recipe.html:203 msgid "Time" msgstr "Laiks" +#: .\cookbook\models.py:340 +#: .\cookbook\templates\forms\edit_internal_recipe.html:204 +#: .\cookbook\templates\forms\edit_internal_recipe.html:218 +#, fuzzy +#| msgid "File ID" +msgid "File" +msgstr "Faila ID" + +#: .\cookbook\serializer.py:109 +msgid "File uploads are not enabled for this Space." +msgstr "" + +#: .\cookbook\serializer.py:117 +msgid "You have reached your file upload limit." +msgstr "" + #: .\cookbook\tables.py:35 .\cookbook\templates\books.html:36 #: .\cookbook\templates\generic\edit_template.html:6 #: .\cookbook\templates\generic\edit_template.html:14 #: .\cookbook\templates\meal_plan.html:281 #: .\cookbook\templates\recipes_table.html:82 #: .\cookbook\templates\shopping_list.html:33 +#: .\cookbook\templates\space.html:84 msgid "Edit" msgstr "Rediģēt" @@ -397,10 +449,6 @@ msgstr "Rediģēt" msgid "Delete" msgstr "Izdzēst" -#: .\cookbook\tables.py:144 -msgid "Link" -msgstr "Saite" - #: .\cookbook\templates\404.html:5 msgid "404 Error" msgstr "Kļūda 404" @@ -417,21 +465,124 @@ msgstr "Doties uz Sākumu" msgid "Report a Bug" msgstr "Ziņot par kļūdu" -#: .\cookbook\templates\account\login.html:7 -#: .\cookbook\templates\base.html:170 +#: .\cookbook\templates\account\email.html:6 +#: .\cookbook\templates\account\email.html:9 +msgid "E-mail Addresses" +msgstr "" + +#: .\cookbook\templates\account\email.html:11 +msgid "The following e-mail addresses are associated with your account:" +msgstr "" + +#: .\cookbook\templates\account\email.html:28 +msgid "Verified" +msgstr "" + +#: .\cookbook\templates\account\email.html:30 +msgid "Unverified" +msgstr "" + +#: .\cookbook\templates\account\email.html:32 +msgid "Primary" +msgstr "" + +#: .\cookbook\templates\account\email.html:39 +#, fuzzy +#| msgid "Make Header" +msgid "Make Primary" +msgstr "Izveidot galveni" + +#: .\cookbook\templates\account\email.html:41 +msgid "Re-send Verification" +msgstr "" + +#: .\cookbook\templates\account\email.html:42 +#: .\cookbook\templates\socialaccount\connections.html:36 +msgid "Remove" +msgstr "" + +#: .\cookbook\templates\account\email.html:50 +#, fuzzy +#| msgid "Warning" +msgid "Warning:" +msgstr "Brīdinājums" + +#: .\cookbook\templates\account\email.html:50 +msgid "" +"You currently do not have any e-mail address set up. You should really add " +"an e-mail address so you can receive notifications, reset your password, etc." +msgstr "" + +#: .\cookbook\templates\account\email.html:56 +msgid "Add E-mail Address" +msgstr "" + +#: .\cookbook\templates\account\email.html:61 +msgid "Add E-mail" +msgstr "" + +#: .\cookbook\templates\account\email.html:71 +msgid "Do you really want to remove the selected e-mail address?" +msgstr "" + +#: .\cookbook\templates\account\email_confirm.html:6 +#: .\cookbook\templates\account\email_confirm.html:10 +msgid "Confirm E-mail Address" +msgstr "" + +#: .\cookbook\templates\account\email_confirm.html:16 +#, python-format +msgid "" +"Please confirm that\n" +" %(email)s is an e-mail address " +"for user %(user_display)s\n" +" ." +msgstr "" + +#: .\cookbook\templates\account\email_confirm.html:22 +#: .\cookbook\templates\generic\delete_template.html:21 +msgid "Confirm" +msgstr "Apstiprināt" + +#: .\cookbook\templates\account\email_confirm.html:29 +#, python-format +msgid "" +"This e-mail confirmation link expired or is invalid. Please\n" +" issue a new e-mail confirmation " +"request." +msgstr "" + +#: .\cookbook\templates\account\login.html:8 +#: .\cookbook\templates\base.html:180 msgid "Login" msgstr "Pieslēgties" -#: .\cookbook\templates\account\login.html:13 -#: .\cookbook\templates\account\login.html:28 +#: .\cookbook\templates\account\login.html:15 +#: .\cookbook\templates\account\login.html:31 +#: .\cookbook\templates\account\signup.html:69 +#: .\cookbook\templates\account\signup_closed.html:15 msgid "Sign In" msgstr "" -#: .\cookbook\templates\account\login.html:38 +#: .\cookbook\templates\account\login.html:32 +msgid "Sign Up" +msgstr "" + +#: .\cookbook\templates\account\login.html:36 +#: .\cookbook\templates\account\login.html:37 +#: .\cookbook\templates\account\password_reset.html:29 +msgid "Reset My Password" +msgstr "" + +#: .\cookbook\templates\account\login.html:37 +msgid "Lost your password?" +msgstr "" + +#: .\cookbook\templates\account\login.html:48 msgid "Social Login" msgstr "" -#: .\cookbook\templates\account\login.html:39 +#: .\cookbook\templates\account\login.html:49 msgid "You can use any of the following providers to sign in." msgstr "" @@ -445,116 +596,166 @@ msgstr "" msgid "Are you sure you want to sign out?" msgstr "" -#: .\cookbook\templates\account\password_reset.html:5 -#: .\cookbook\templates\account\password_reset_done.html:5 +#: .\cookbook\templates\account\password_reset.html:7 +#: .\cookbook\templates\account\password_reset.html:13 +#: .\cookbook\templates\account\password_reset_done.html:7 +#: .\cookbook\templates\account\password_reset_done.html:10 msgid "Password Reset" msgstr "" -#: .\cookbook\templates\account\password_reset.html:9 -#: .\cookbook\templates\account\password_reset_done.html:9 -msgid "Password reset is not implemented for the time being!" +#: .\cookbook\templates\account\password_reset.html:24 +msgid "" +"Forgotten your password? Enter your e-mail address below, and we'll send you " +"an e-mail allowing you to reset it." msgstr "" -#: .\cookbook\templates\account\signup.html:5 +#: .\cookbook\templates\account\password_reset.html:32 +msgid "Password reset is disabled on this instance." +msgstr "" + +#: .\cookbook\templates\account\password_reset_done.html:16 +msgid "" +"We have sent you an e-mail. Please contact us if you do not receive it " +"within a few minutes." +msgstr "" + +#: .\cookbook\templates\account\signup.html:6 msgid "Register" msgstr "Reģistrēties" -#: .\cookbook\templates\account\signup.html:9 -msgid "Create your Account" +#: .\cookbook\templates\account\signup.html:12 +#, fuzzy +#| msgid "Create your Account" +msgid "Create an Account" msgstr "Izveidot savu kontu" -#: .\cookbook\templates\account\signup.html:14 +#: .\cookbook\templates\account\signup.html:42 +msgid "I accept the follwoing" +msgstr "" + +#: .\cookbook\templates\account\signup.html:45 +msgid "Terms and Conditions" +msgstr "" + +#: .\cookbook\templates\account\signup.html:48 +msgid "and" +msgstr "" + +#: .\cookbook\templates\account\signup.html:52 +msgid "Privacy Policy" +msgstr "" + +#: .\cookbook\templates\account\signup.html:65 msgid "Create User" msgstr "Izveidot lietotāju" -#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:160 +#: .\cookbook\templates\account\signup.html:69 +msgid "Already have an account?" +msgstr "" + +#: .\cookbook\templates\account\signup_closed.html:5 +#: .\cookbook\templates\account\signup_closed.html:11 +msgid "Sign Up Closed" +msgstr "" + +#: .\cookbook\templates\account\signup_closed.html:13 +msgid "We are sorry, but the sign up is currently closed." +msgstr "" + +#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:170 #: .\cookbook\templates\rest_framework\api.html:11 msgid "API Documentation" msgstr "API dokumentācija" -#: .\cookbook\templates\base.html:78 +#: .\cookbook\templates\base.html:85 msgid "Utensils" msgstr "Piederumi" -#: .\cookbook\templates\base.html:88 +#: .\cookbook\templates\base.html:95 msgid "Shopping" msgstr "Iepirkšanās" -#: .\cookbook\templates\base.html:102 .\cookbook\views\delete.py:84 -#: .\cookbook\views\edit.py:93 .\cookbook\views\lists.py:26 -#: .\cookbook\views\new.py:66 +#: .\cookbook\templates\base.html:109 .\cookbook\views\delete.py:84 +#: .\cookbook\views\edit.py:102 .\cookbook\views\lists.py:26 +#: .\cookbook\views\new.py:78 msgid "Keyword" msgstr "Atslēgvārds" -#: .\cookbook\templates\base.html:104 +#: .\cookbook\templates\base.html:111 msgid "Batch Edit" msgstr "Rediģēt vairākus" -#: .\cookbook\templates\base.html:109 +#: .\cookbook\templates\base.html:116 msgid "Storage Data" msgstr "Krātuves dati" -#: .\cookbook\templates\base.html:113 +#: .\cookbook\templates\base.html:120 msgid "Storage Backends" msgstr "Krātuves backendi" -#: .\cookbook\templates\base.html:115 +#: .\cookbook\templates\base.html:122 msgid "Configure Sync" msgstr "Konfigurēt sinhronizāciju" -#: .\cookbook\templates\base.html:117 +#: .\cookbook\templates\base.html:124 msgid "Discovered Recipes" msgstr "Atrastās receptes" -#: .\cookbook\templates\base.html:119 +#: .\cookbook\templates\base.html:126 msgid "Discovery Log" msgstr "Atrastās žurnāls" -#: .\cookbook\templates\base.html:121 .\cookbook\templates\stats.html:10 +#: .\cookbook\templates\base.html:128 .\cookbook\templates\stats.html:10 msgid "Statistics" msgstr "Statistika" -#: .\cookbook\templates\base.html:123 +#: .\cookbook\templates\base.html:130 msgid "Units & Ingredients" msgstr "Vienības un sastāvdaļas" -#: .\cookbook\templates\base.html:125 +#: .\cookbook\templates\base.html:132 .\cookbook\templates\index.html:47 msgid "Import Recipe" msgstr "Importēt recepti" -#: .\cookbook\templates\base.html:144 .\cookbook\templates\settings.html:6 +#: .\cookbook\templates\base.html:151 .\cookbook\templates\settings.html:6 #: .\cookbook\templates\settings.html:16 msgid "Settings" msgstr "Iestatījumi" -#: .\cookbook\templates\base.html:146 .\cookbook\templates\history.html:6 +#: .\cookbook\templates\base.html:153 .\cookbook\templates\history.html:6 #: .\cookbook\templates\history.html:14 msgid "History" msgstr "Vēsture" -#: .\cookbook\templates\base.html:150 .\cookbook\templates\system.html:13 +#: .\cookbook\templates\base.html:155 .\cookbook\templates\space.html:7 +#, fuzzy +#| msgid "Settings" +msgid "Space Settings" +msgstr "Iestatījumi" + +#: .\cookbook\templates\base.html:160 .\cookbook\templates\system.html:13 msgid "System" msgstr "Sistēma" -#: .\cookbook\templates\base.html:152 +#: .\cookbook\templates\base.html:162 msgid "Admin" msgstr "Administrators" -#: .\cookbook\templates\base.html:156 +#: .\cookbook\templates\base.html:166 msgid "Markdown Guide" msgstr "Markdown rokasgrāmata" -#: .\cookbook\templates\base.html:158 +#: .\cookbook\templates\base.html:168 msgid "GitHub" msgstr "Github" -#: .\cookbook\templates\base.html:162 +#: .\cookbook\templates\base.html:172 msgid "API Browser" msgstr "API pārlūks" -#: .\cookbook\templates\base.html:165 -msgid "Logout" -msgstr "Izlogoties" +#: .\cookbook\templates\base.html:175 +msgid "Log out" +msgstr "" #: .\cookbook\templates\batch\edit.html:6 msgid "Batch edit Category" @@ -569,7 +770,7 @@ msgid "Add the specified keywords to all recipes containing a word" msgstr "" "Pievienojiet norādītos atslēgvārdus visām receptēm, kurās ir atrodams vārds" -#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:76 +#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:85 msgid "Sync" msgstr "Sinhronizēt" @@ -598,7 +799,7 @@ msgstr "Sinhronizēt tagad!" msgid "Importing Recipes" msgstr "Recepšu importēšana" -#: .\cookbook\templates\batch\waiting.html:23 +#: .\cookbook\templates\batch\waiting.html:28 msgid "" "This can take a few minutes, depending on the number of recipes in sync, " "please wait." @@ -637,26 +838,33 @@ msgid "Export Recipes" msgstr "Eksportēt receptes" #: .\cookbook\templates\export.html:14 .\cookbook\templates\export.html:20 -#: .\cookbook\templates\shopping_list.html:347 +#: .\cookbook\templates\shopping_list.html:351 #: .\cookbook\templates\test2.html:14 .\cookbook\templates\test2.html:20 msgid "Export" msgstr "Eksportēt" +#: .\cookbook\templates\files.html:7 +#, fuzzy +#| msgid "File ID" +msgid "Files" +msgstr "Faila ID" + #: .\cookbook\templates\forms\edit_import_recipe.html:5 #: .\cookbook\templates\forms\edit_import_recipe.html:9 msgid "Import new Recipe" msgstr "Importēt jaunu recepti" #: .\cookbook\templates\forms\edit_import_recipe.html:14 -#: .\cookbook\templates\forms\edit_internal_recipe.html:389 -#: .\cookbook\templates\forms\edit_internal_recipe.html:421 +#: .\cookbook\templates\forms\edit_internal_recipe.html:416 +#: .\cookbook\templates\forms\edit_internal_recipe.html:448 #: .\cookbook\templates\generic\edit_template.html:23 #: .\cookbook\templates\generic\new_template.html:23 #: .\cookbook\templates\include\log_cooking.html:28 #: .\cookbook\templates\meal_plan.html:325 -#: .\cookbook\templates\settings.html:28 .\cookbook\templates\settings.html:35 -#: .\cookbook\templates\settings.html:58 .\cookbook\templates\settings.html:73 -#: .\cookbook\templates\shopping_list.html:349 +#: .\cookbook\templates\settings.html:44 .\cookbook\templates\settings.html:52 +#: .\cookbook\templates\settings.html:96 +#: .\cookbook\templates\settings.html:114 +#: .\cookbook\templates\shopping_list.html:353 msgid "Save" msgstr "Saglabāt" @@ -665,181 +873,190 @@ msgstr "Saglabāt" msgid "Edit Recipe" msgstr "Rediģēt recepti" -#: .\cookbook\templates\forms\edit_internal_recipe.html:52 +#: .\cookbook\templates\forms\edit_internal_recipe.html:56 +#: .\cookbook\templates\url_import.html:171 msgid "Description" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:72 +#: .\cookbook\templates\forms\edit_internal_recipe.html:76 msgid "Waiting Time" msgstr "Gaidīšanas laiks" -#: .\cookbook\templates\forms\edit_internal_recipe.html:78 +#: .\cookbook\templates\forms\edit_internal_recipe.html:82 msgid "Servings Text" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:89 +#: .\cookbook\templates\forms\edit_internal_recipe.html:93 msgid "Select Keywords" msgstr "Atlasīt atslēgvārdus" -#: .\cookbook\templates\forms\edit_internal_recipe.html:90 -#: .\cookbook\templates\url_import.html:212 +#: .\cookbook\templates\forms\edit_internal_recipe.html:94 +#: .\cookbook\templates\url_import.html:583 #, fuzzy #| msgid "All Keywords" msgid "Add Keyword" msgstr "Visi atslēgvārdi" -#: .\cookbook\templates\forms\edit_internal_recipe.html:108 +#: .\cookbook\templates\forms\edit_internal_recipe.html:112 msgid "Nutrition" msgstr "Uzturs" -#: .\cookbook\templates\forms\edit_internal_recipe.html:112 -#: .\cookbook\templates\forms\edit_internal_recipe.html:162 +#: .\cookbook\templates\forms\edit_internal_recipe.html:116 +#: .\cookbook\templates\forms\edit_internal_recipe.html:166 msgid "Delete Step" msgstr "Dzēst soli" -#: .\cookbook\templates\forms\edit_internal_recipe.html:116 +#: .\cookbook\templates\forms\edit_internal_recipe.html:120 msgid "Calories" msgstr "Kalorijas" -#: .\cookbook\templates\forms\edit_internal_recipe.html:119 +#: .\cookbook\templates\forms\edit_internal_recipe.html:123 msgid "Carbohydrates" msgstr "Ogļhidrāti" -#: .\cookbook\templates\forms\edit_internal_recipe.html:122 +#: .\cookbook\templates\forms\edit_internal_recipe.html:126 msgid "Fats" msgstr "Tauki" -#: .\cookbook\templates\forms\edit_internal_recipe.html:124 +#: .\cookbook\templates\forms\edit_internal_recipe.html:128 msgid "Proteins" msgstr "Olbaltumvielas" -#: .\cookbook\templates\forms\edit_internal_recipe.html:146 -#: .\cookbook\templates\forms\edit_internal_recipe.html:454 +#: .\cookbook\templates\forms\edit_internal_recipe.html:150 +#: .\cookbook\templates\forms\edit_internal_recipe.html:481 msgid "Step" msgstr "Solis" -#: .\cookbook\templates\forms\edit_internal_recipe.html:167 +#: .\cookbook\templates\forms\edit_internal_recipe.html:171 msgid "Show as header" msgstr "Rādīt kā galveni" -#: .\cookbook\templates\forms\edit_internal_recipe.html:173 +#: .\cookbook\templates\forms\edit_internal_recipe.html:177 msgid "Hide as header" msgstr "Slēpt kā galveni" -#: .\cookbook\templates\forms\edit_internal_recipe.html:178 +#: .\cookbook\templates\forms\edit_internal_recipe.html:182 msgid "Move Up" msgstr "Pārvietot uz augšu" -#: .\cookbook\templates\forms\edit_internal_recipe.html:183 +#: .\cookbook\templates\forms\edit_internal_recipe.html:187 msgid "Move Down" msgstr "Pārvietot uz leju" -#: .\cookbook\templates\forms\edit_internal_recipe.html:192 +#: .\cookbook\templates\forms\edit_internal_recipe.html:196 msgid "Step Name" msgstr "Soļa nosaukums" -#: .\cookbook\templates\forms\edit_internal_recipe.html:196 +#: .\cookbook\templates\forms\edit_internal_recipe.html:200 msgid "Step Type" msgstr "Soļa tips" -#: .\cookbook\templates\forms\edit_internal_recipe.html:207 +#: .\cookbook\templates\forms\edit_internal_recipe.html:212 msgid "Step time in Minutes" msgstr "Soļa laiks minūtēs" -#: .\cookbook\templates\forms\edit_internal_recipe.html:261 -#: .\cookbook\templates\shopping_list.html:183 -msgid "Select Unit" -msgstr "Atlasiet vienību" +#: .\cookbook\templates\forms\edit_internal_recipe.html:228 +#, fuzzy +#| msgid "Select one" +msgid "Select File" +msgstr "Izvēlies vienu" -#: .\cookbook\templates\forms\edit_internal_recipe.html:262 -#: .\cookbook\templates\forms\edit_internal_recipe.html:286 -#: .\cookbook\templates\shopping_list.html:184 -#: .\cookbook\templates\shopping_list.html:206 -msgid "Create" -msgstr "Izveidot" - -#: .\cookbook\templates\forms\edit_internal_recipe.html:263 -#: .\cookbook\templates\forms\edit_internal_recipe.html:287 -#: .\cookbook\templates\shopping_list.html:185 -#: .\cookbook\templates\shopping_list.html:207 -#: .\cookbook\templates\shopping_list.html:237 -#: .\cookbook\templates\shopping_list.html:261 -#: .\cookbook\templates\url_import.html:124 -#: .\cookbook\templates\url_import.html:156 +#: .\cookbook\templates\forms\edit_internal_recipe.html:229 +#: .\cookbook\templates\forms\edit_internal_recipe.html:290 +#: .\cookbook\templates\forms\edit_internal_recipe.html:314 +#: .\cookbook\templates\shopping_list.html:189 +#: .\cookbook\templates\shopping_list.html:211 +#: .\cookbook\templates\shopping_list.html:241 +#: .\cookbook\templates\shopping_list.html:265 +#: .\cookbook\templates\url_import.html:495 +#: .\cookbook\templates\url_import.html:527 msgid "Select" msgstr "Atlasīt" -#: .\cookbook\templates\forms\edit_internal_recipe.html:285 -#: .\cookbook\templates\shopping_list.html:205 +#: .\cookbook\templates\forms\edit_internal_recipe.html:288 +#: .\cookbook\templates\shopping_list.html:187 +msgid "Select Unit" +msgstr "Atlasiet vienību" + +#: .\cookbook\templates\forms\edit_internal_recipe.html:289 +#: .\cookbook\templates\forms\edit_internal_recipe.html:313 +#: .\cookbook\templates\shopping_list.html:188 +#: .\cookbook\templates\shopping_list.html:210 +msgid "Create" +msgstr "Izveidot" + +#: .\cookbook\templates\forms\edit_internal_recipe.html:312 +#: .\cookbook\templates\shopping_list.html:209 msgid "Select Food" msgstr "Atlasīt ēdienu" -#: .\cookbook\templates\forms\edit_internal_recipe.html:302 +#: .\cookbook\templates\forms\edit_internal_recipe.html:329 #: .\cookbook\templates\meal_plan.html:256 -#: .\cookbook\templates\url_import.html:171 +#: .\cookbook\templates\url_import.html:542 msgid "Note" msgstr "Piezīme" -#: .\cookbook\templates\forms\edit_internal_recipe.html:319 +#: .\cookbook\templates\forms\edit_internal_recipe.html:346 msgid "Delete Ingredient" msgstr "Dzēst sastāvdaļu" -#: .\cookbook\templates\forms\edit_internal_recipe.html:325 +#: .\cookbook\templates\forms\edit_internal_recipe.html:352 msgid "Make Header" msgstr "Izveidot galveni" -#: .\cookbook\templates\forms\edit_internal_recipe.html:331 +#: .\cookbook\templates\forms\edit_internal_recipe.html:358 msgid "Make Ingredient" msgstr "Pagatavot sastāvdaļu" -#: .\cookbook\templates\forms\edit_internal_recipe.html:337 +#: .\cookbook\templates\forms\edit_internal_recipe.html:364 msgid "Disable Amount" msgstr "Atspējot summu" -#: .\cookbook\templates\forms\edit_internal_recipe.html:343 +#: .\cookbook\templates\forms\edit_internal_recipe.html:370 msgid "Enable Amount" msgstr "Iespējot summu" -#: .\cookbook\templates\forms\edit_internal_recipe.html:348 +#: .\cookbook\templates\forms\edit_internal_recipe.html:375 msgid "Copy Template Reference" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:374 -#: .\cookbook\templates\url_import.html:196 +#: .\cookbook\templates\forms\edit_internal_recipe.html:401 +#: .\cookbook\templates\url_import.html:297 +#: .\cookbook\templates\url_import.html:567 msgid "Instructions" msgstr "Instrukcijas" -#: .\cookbook\templates\forms\edit_internal_recipe.html:387 -#: .\cookbook\templates\forms\edit_internal_recipe.html:418 +#: .\cookbook\templates\forms\edit_internal_recipe.html:414 +#: .\cookbook\templates\forms\edit_internal_recipe.html:445 msgid "Save & View" msgstr "Saglabāt un skatīt" -#: .\cookbook\templates\forms\edit_internal_recipe.html:391 -#: .\cookbook\templates\forms\edit_internal_recipe.html:424 +#: .\cookbook\templates\forms\edit_internal_recipe.html:418 +#: .\cookbook\templates\forms\edit_internal_recipe.html:451 msgid "Add Step" msgstr "Pievienot soli" -#: .\cookbook\templates\forms\edit_internal_recipe.html:394 -#: .\cookbook\templates\forms\edit_internal_recipe.html:428 +#: .\cookbook\templates\forms\edit_internal_recipe.html:421 +#: .\cookbook\templates\forms\edit_internal_recipe.html:455 msgid "Add Nutrition" msgstr "Pievienot uzturu" -#: .\cookbook\templates\forms\edit_internal_recipe.html:396 -#: .\cookbook\templates\forms\edit_internal_recipe.html:430 +#: .\cookbook\templates\forms\edit_internal_recipe.html:423 +#: .\cookbook\templates\forms\edit_internal_recipe.html:457 msgid "Remove Nutrition" msgstr "Noņemt uzturu" -#: .\cookbook\templates\forms\edit_internal_recipe.html:398 -#: .\cookbook\templates\forms\edit_internal_recipe.html:433 +#: .\cookbook\templates\forms\edit_internal_recipe.html:425 +#: .\cookbook\templates\forms\edit_internal_recipe.html:460 msgid "View Recipe" msgstr "Skatīt recepti" -#: .\cookbook\templates\forms\edit_internal_recipe.html:400 -#: .\cookbook\templates\forms\edit_internal_recipe.html:435 +#: .\cookbook\templates\forms\edit_internal_recipe.html:427 +#: .\cookbook\templates\forms\edit_internal_recipe.html:462 msgid "Delete Recipe" msgstr "Dzēst recepti" -#: .\cookbook\templates\forms\edit_internal_recipe.html:441 +#: .\cookbook\templates\forms\edit_internal_recipe.html:468 msgid "Steps" msgstr "Soļi" @@ -866,7 +1083,7 @@ msgstr "" " " #: .\cookbook\templates\forms\ingredients.html:24 -#: .\cookbook\templates\stats.html:26 +#: .\cookbook\templates\space.html:35 .\cookbook\templates\stats.html:26 msgid "Units" msgstr "Vienības" @@ -888,10 +1105,6 @@ msgstr "Vai tiešām vēlaties apvienot šīs divas sastāvdaļas?" msgid "Are you sure you want to delete the %(title)s: %(object)s " msgstr "Vai tiešām vēlaties izdzēst %(title)s: %(object)s " -#: .\cookbook\templates\generic\delete_template.html:21 -msgid "Confirm" -msgstr "Apstiprināt" - #: .\cookbook\templates\generic\edit_template.html:30 msgid "View" msgstr "Skatīt" @@ -913,12 +1126,6 @@ msgstr "Filtrs" msgid "Import all" msgstr "Importēt visu" -#: .\cookbook\templates\generic\new_template.html:6 -#: .\cookbook\templates\generic\new_template.html:14 -#: .\cookbook\templates\meal_plan.html:323 -msgid "New" -msgstr "Jauns" - #: .\cookbook\templates\generic\table_template.html:76 #: .\cookbook\templates\recipes_table.html:121 msgid "previous" @@ -963,7 +1170,7 @@ msgstr "Aizvērt" #: .\cookbook\templates\include\recipe_open_modal.html:7 #: .\cookbook\templates\meal_plan.html:247 .\cookbook\views\delete.py:28 -#: .\cookbook\views\edit.py:264 .\cookbook\views\new.py:40 +#: .\cookbook\views\edit.py:273 .\cookbook\views\new.py:52 msgid "Recipe" msgstr "Recepte" @@ -1005,10 +1212,6 @@ msgstr "Meklēt recepti ..." msgid "New Recipe" msgstr "Jauna recepte" -#: .\cookbook\templates\index.html:47 -msgid "Website Import" -msgstr "Vietnes importēšana" - #: .\cookbook\templates\index.html:53 msgid "Advanced Search" msgstr "Izvērsta meklēšana" @@ -1022,7 +1225,7 @@ msgid "Last viewed" msgstr "Pēdējoreiz skatīts" #: .\cookbook\templates\index.html:87 .\cookbook\templates\meal_plan.html:178 -#: .\cookbook\templates\stats.html:22 +#: .\cookbook\templates\space.html:29 .\cookbook\templates\stats.html:22 msgid "Recipes" msgstr "Receptes" @@ -1188,7 +1391,7 @@ msgid "New Entry" msgstr "Jauns ieraksts" #: .\cookbook\templates\meal_plan.html:113 -#: .\cookbook\templates\shopping_list.html:52 +#: .\cookbook\templates\shopping_list.html:56 msgid "Search Recipe" msgstr "Meklēt recepti" @@ -1221,7 +1424,7 @@ msgstr "Izveidot tikai piezīmi" #: .\cookbook\templates\meal_plan.html:168 #: .\cookbook\templates\shopping_list.html:7 #: .\cookbook\templates\shopping_list.html:29 -#: .\cookbook\templates\shopping_list.html:705 +#: .\cookbook\templates\shopping_list.html:714 msgid "Shopping List" msgstr "Iepirkumu saraksts" @@ -1272,7 +1475,7 @@ msgstr "Izveidojis" #: .\cookbook\templates\meal_plan.html:270 #: .\cookbook\templates\meal_plan_entry.html:20 -#: .\cookbook\templates\shopping_list.html:250 +#: .\cookbook\templates\shopping_list.html:254 msgid "Shared with" msgstr "Kopīgots ar" @@ -1349,7 +1552,6 @@ msgstr "Jūs neesat pieteicies un tāpēc nevarat skatīt šo lapu!" #: .\cookbook\templates\no_groups_info.html:18 #: .\cookbook\templates\no_perm_info.html:15 -#: .\cookbook\templates\no_space_info.html:15 msgid "Please contact your administrator." msgstr "" @@ -1366,13 +1568,50 @@ msgid "" "action." msgstr "Jums nav nepieciešamo atļauju, lai veiktu šo darbību!" -#: .\cookbook\templates\no_space_info.html:5 -#: .\cookbook\templates\no_space_info.html:12 +#: .\cookbook\templates\no_space_info.html:6 +#: .\cookbook\templates\no_space_info.html:13 msgid "No Space" msgstr "" -#: .\cookbook\templates\no_space_info.html:15 -msgid "You are not a member of any space." +#: .\cookbook\templates\no_space_info.html:17 +msgid "" +"Recipes, foods, shopping lists and more are organized in spaces of one or " +"more people." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:18 +msgid "" +"You can either be invited into an existing space or create your own one." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:31 +#: .\cookbook\templates\no_space_info.html:40 +msgid "Join Space" +msgstr "" + +#: .\cookbook\templates\no_space_info.html:34 +msgid "Join an existing space." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:35 +msgid "" +"To join an existing space either enter your invite token or click on the " +"invite link the space owner send you." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:48 +#: .\cookbook\templates\no_space_info.html:56 +#, fuzzy +#| msgid "Create User" +msgid "Create Space" +msgstr "Izveidot lietotāju" + +#: .\cookbook\templates\no_space_info.html:51 +msgid "Create your own recipe space." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:52 +msgid "Start your own recipe space and invite other users to it." msgstr "" #: .\cookbook\templates\offline.html:6 @@ -1389,28 +1628,29 @@ msgid "" "recently viewed them. Keep in mind that data might be outdated." msgstr "" -#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\stats.html:47 +#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\space.html:56 +#: .\cookbook\templates\stats.html:47 msgid "Comments" msgstr "Komentāri" #: .\cookbook\templates\recipe_view.html:44 .\cookbook\views\delete.py:118 -#: .\cookbook\views\edit.py:170 +#: .\cookbook\views\edit.py:179 msgid "Comment" msgstr "Komentēt" #: .\cookbook\templates\recipes_table.html:19 #: .\cookbook\templates\recipes_table.html:23 -#: .\cookbook\templates\url_import.html:69 +#: .\cookbook\templates\url_import.html:440 msgid "Recipe Image" msgstr "Receptes attēls" #: .\cookbook\templates\recipes_table.html:51 -#: .\cookbook\templates\url_import.html:74 +#: .\cookbook\templates\url_import.html:445 msgid "Preparation time ca." msgstr "Pagatavošanas laiks apm." #: .\cookbook\templates\recipes_table.html:57 -#: .\cookbook\templates\url_import.html:79 +#: .\cookbook\templates\url_import.html:450 msgid "Waiting time ca." msgstr "Gaidīšanas laiks apm." @@ -1426,27 +1666,63 @@ msgstr "Veikt ierakstus pagatavošanas žurnālā" msgid "Recipe Home" msgstr "Recepšu Sākums" -#: .\cookbook\templates\settings.html:22 +#: .\cookbook\templates\settings.html:23 msgid "Account" msgstr "Konts" -#: .\cookbook\templates\settings.html:38 -msgid "Link social account" +#: .\cookbook\templates\settings.html:27 +msgid "Preferences" msgstr "" -#: .\cookbook\templates\settings.html:42 +#: .\cookbook\templates\settings.html:31 +#, fuzzy +#| msgid "Settings" +msgid "API-Settings" +msgstr "Iestatījumi" + +#: .\cookbook\templates\settings.html:39 +#, fuzzy +#| msgid "Settings" +msgid "Name Settings" +msgstr "Iestatījumi" + +#: .\cookbook\templates\settings.html:47 +#, fuzzy +#| msgid "Settings" +msgid "Password Settings" +msgstr "Iestatījumi" + +#: .\cookbook\templates\settings.html:55 +#, fuzzy +#| msgid "Settings" +msgid "Email Settings" +msgstr "Iestatījumi" + +#: .\cookbook\templates\settings.html:57 +msgid "Manage Email Settings" +msgstr "" + +#: .\cookbook\templates\settings.html:61 +msgid "Social" +msgstr "" + +#: .\cookbook\templates\settings.html:63 +msgid "Manage Social Accounts" +msgstr "" + +#: .\cookbook\templates\settings.html:75 msgid "Language" msgstr "Valoda" -#: .\cookbook\templates\settings.html:67 +#: .\cookbook\templates\settings.html:105 msgid "Style" msgstr "Stils" -#: .\cookbook\templates\settings.html:79 +#: .\cookbook\templates\settings.html:125 msgid "API Token" msgstr "API Tokens" -#: .\cookbook\templates\settings.html:80 +#: .\cookbook\templates\settings.html:126 msgid "" "You can use both basic authentication and token based authentication to " "access the REST API." @@ -1454,7 +1730,7 @@ msgstr "" "Lai piekļūtu REST API, varat izmantot gan pamata autentifikāciju, gan tokena " "autentifikāciju." -#: .\cookbook\templates\settings.html:92 +#: .\cookbook\templates\settings.html:143 msgid "" "Use the token as an Authorization header prefixed by the word token as shown " "in the following examples:" @@ -1462,7 +1738,7 @@ msgstr "" "Izmantojiet token, kā Authorization header, kas pievienota vārdam token, kā " "parādīts šajos piemēros:" -#: .\cookbook\templates\settings.html:94 +#: .\cookbook\templates\settings.html:145 msgid "or" msgstr "vai" @@ -1485,58 +1761,55 @@ msgstr "" msgid "Create Superuser account" msgstr "Izveidojiet superlietotāja kontu" -#: .\cookbook\templates\shopping_list.html:75 +#: .\cookbook\templates\shopping_list.html:79 msgid "Shopping Recipes" msgstr "Iepirkšanās receptes" -#: .\cookbook\templates\shopping_list.html:79 +#: .\cookbook\templates\shopping_list.html:83 msgid "No recipes selected" msgstr "Nav izvēlēta neviena recepte" -#: .\cookbook\templates\shopping_list.html:146 +#: .\cookbook\templates\shopping_list.html:150 msgid "Entry Mode" msgstr "" -#: .\cookbook\templates\shopping_list.html:154 +#: .\cookbook\templates\shopping_list.html:158 msgid "Add Entry" msgstr "" -#: .\cookbook\templates\shopping_list.html:170 +#: .\cookbook\templates\shopping_list.html:174 msgid "Amount" msgstr "Summa" -#: .\cookbook\templates\shopping_list.html:226 +#: .\cookbook\templates\shopping_list.html:230 +#: .\cookbook\templates\supermarket.html:7 msgid "Supermarket" msgstr "" -#: .\cookbook\templates\shopping_list.html:236 +#: .\cookbook\templates\shopping_list.html:240 msgid "Select Supermarket" msgstr "" -#: .\cookbook\templates\shopping_list.html:260 +#: .\cookbook\templates\shopping_list.html:264 msgid "Select User" msgstr "Atlasīt lietotāju" -#: .\cookbook\templates\shopping_list.html:279 +#: .\cookbook\templates\shopping_list.html:283 msgid "Finished" msgstr "Pabeigts" -#: .\cookbook\templates\shopping_list.html:292 +#: .\cookbook\templates\shopping_list.html:296 msgid "You are offline, shopping list might not syncronize." msgstr "Jūs esat bezsaistē. Iepirkumu saraksts netiek sinhronizēts." -#: .\cookbook\templates\shopping_list.html:357 +#: .\cookbook\templates\shopping_list.html:361 msgid "Copy/Export" msgstr "Kopēt/eksportēt" -#: .\cookbook\templates\shopping_list.html:361 +#: .\cookbook\templates\shopping_list.html:365 msgid "List Prefix" msgstr "Saraksta prefikss" -#: .\cookbook\templates\shopping_list.html:708 -msgid "There was an error creating a resource!" -msgstr "Radot resursu, radās kļūda!" - #: .\cookbook\templates\socialaccount\connections.html:4 #: .\cookbook\templates\socialaccount\connections.html:7 msgid "Account Connections" @@ -1548,10 +1821,6 @@ msgid "" " accounts:" msgstr "" -#: .\cookbook\templates\socialaccount\connections.html:36 -msgid "Remove" -msgstr "" - #: .\cookbook\templates\socialaccount\connections.html:44 msgid "" "You currently have no social network accounts connected to this account." @@ -1561,38 +1830,95 @@ msgstr "" msgid "Add a 3rd Party Account" msgstr "" -#: .\cookbook\templates\stats.html:4 -msgid "Stats" -msgstr "Statistika" +#: .\cookbook\templates\space.html:18 +msgid "Manage Subscription" +msgstr "" -#: .\cookbook\templates\stats.html:19 +#: .\cookbook\templates\space.html:26 .\cookbook\templates\stats.html:19 msgid "Number of objects" msgstr "Objektu skaits" -#: .\cookbook\templates\stats.html:30 +#: .\cookbook\templates\space.html:39 .\cookbook\templates\stats.html:30 msgid "Recipe Imports" msgstr "Recepšu imports" -#: .\cookbook\templates\stats.html:38 +#: .\cookbook\templates\space.html:47 .\cookbook\templates\stats.html:38 msgid "Objects stats" msgstr "Objektu statistika" -#: .\cookbook\templates\stats.html:41 +#: .\cookbook\templates\space.html:50 .\cookbook\templates\stats.html:41 msgid "Recipes without Keywords" msgstr "Receptes bez atslēgas vārdiem" -#: .\cookbook\templates\stats.html:43 +#: .\cookbook\templates\space.html:52 .\cookbook\templates\stats.html:43 msgid "External Recipes" msgstr "Ārējās receptes" -#: .\cookbook\templates\stats.html:45 +#: .\cookbook\templates\space.html:54 .\cookbook\templates\stats.html:45 msgid "Internal Recipes" msgstr "Iekšējās receptes" -#: .\cookbook\templates\system.html:21 .\cookbook\views\lists.py:115 +#: .\cookbook\templates\space.html:67 +msgid "Members" +msgstr "" + +#: .\cookbook\templates\space.html:71 +#, fuzzy +#| msgid "Invite Links" +msgid "Invite User" +msgstr "Uzaicinājuma saites" + +#: .\cookbook\templates\space.html:82 +msgid "User" +msgstr "" + +#: .\cookbook\templates\space.html:83 +msgid "Groups" +msgstr "" + +#: .\cookbook\templates\space.html:99 +#, fuzzy +#| msgid "Admin" +msgid "admin" +msgstr "Administrators" + +#: .\cookbook\templates\space.html:100 +msgid "user" +msgstr "" + +#: .\cookbook\templates\space.html:101 +msgid "guest" +msgstr "" + +#: .\cookbook\templates\space.html:102 +msgid "remove" +msgstr "" + +#: .\cookbook\templates\space.html:106 +msgid "Update" +msgstr "" + +#: .\cookbook\templates\space.html:110 +#, fuzzy +#| msgid "You cannot edit this storage!" +msgid "You cannot edit yourself." +msgstr "Jūs nevarat rediģēt šo krātuvi!" + +#: .\cookbook\templates\space.html:117 +#, fuzzy +#| msgid "There are no recipes in this book yet." +msgid "There are no members in your space yet!" +msgstr "Šajā grāmatā vēl nav receptes." + +#: .\cookbook\templates\space.html:124 .\cookbook\templates\system.html:21 +#: .\cookbook\views\lists.py:115 msgid "Invite Links" msgstr "Uzaicinājuma saites" +#: .\cookbook\templates\stats.html:4 +msgid "Stats" +msgstr "Statistika" + #: .\cookbook\templates\system.html:22 msgid "Show Links" msgstr "Rādīt saites" @@ -1724,47 +2050,159 @@ msgstr "" " funkcijas darbojas tikai ar Postgres datu bāzēm.\n" " " -#: .\cookbook\templates\url_import.html:5 +#: .\cookbook\templates\url_import.html:6 msgid "URL Import" msgstr "URL importēšana" -#: .\cookbook\templates\url_import.html:23 +#: .\cookbook\templates\url_import.html:31 +msgid "Drag me to your bookmarks to import recipes from anywhere" +msgstr "" + +#: .\cookbook\templates\url_import.html:32 +#, fuzzy +#| msgid "Bookmark saved!" +msgid "Bookmark Me!" +msgstr "Grāmatzīme saglabāta!" + +#: .\cookbook\templates\url_import.html:61 msgid "Enter website URL" msgstr "Ievadiet vietnes URL" -#: .\cookbook\templates\url_import.html:36 -msgid "Enter json directly" +#: .\cookbook\templates\url_import.html:97 +msgid "Select recipe files to import or drop them here..." msgstr "" -#: .\cookbook\templates\url_import.html:57 +#: .\cookbook\templates\url_import.html:118 +msgid "Paste json or html source here to load recipe." +msgstr "" + +#: .\cookbook\templates\url_import.html:146 +#, fuzzy +#| msgid "View Recipe" +msgid "Preview Recipe Data" +msgstr "Skatīt recepti" + +#: .\cookbook\templates\url_import.html:147 +msgid "Drag recipe attributes from the right into the appropriate box below." +msgstr "" + +#: .\cookbook\templates\url_import.html:156 +#: .\cookbook\templates\url_import.html:173 +#: .\cookbook\templates\url_import.html:190 +#: .\cookbook\templates\url_import.html:209 +#: .\cookbook\templates\url_import.html:227 +#: .\cookbook\templates\url_import.html:242 +#: .\cookbook\templates\url_import.html:257 +#: .\cookbook\templates\url_import.html:273 +#: .\cookbook\templates\url_import.html:300 +#: .\cookbook\templates\url_import.html:351 +msgid "Clear Contents" +msgstr "" + +#: .\cookbook\templates\url_import.html:158 +msgid "Text dragged here will be appended to the name." +msgstr "" + +#: .\cookbook\templates\url_import.html:175 +msgid "Text dragged here will be appended to the description." +msgstr "" + +#: .\cookbook\templates\url_import.html:192 +msgid "Keywords dragged here will be appended to current list" +msgstr "" + +#: .\cookbook\templates\url_import.html:207 +msgid "Image" +msgstr "" + +#: .\cookbook\templates\url_import.html:239 +#, fuzzy +#| msgid "Preparation Time" +msgid "Prep Time" +msgstr "Pagatavošanas laiks" + +#: .\cookbook\templates\url_import.html:254 +#, fuzzy +#| msgid "Time" +msgid "Cook Time" +msgstr "Laiks" + +#: .\cookbook\templates\url_import.html:275 +msgid "Ingredients dragged here will be appended to current list." +msgstr "" + +#: .\cookbook\templates\url_import.html:302 +msgid "" +"Recipe instructions dragged here will be appended to current instructions." +msgstr "" + +#: .\cookbook\templates\url_import.html:325 +#, fuzzy +#| msgid "Discovered Recipes" +msgid "Discovered Attributes" +msgstr "Atrastās receptes" + +#: .\cookbook\templates\url_import.html:327 +msgid "" +"Drag recipe attributes from below into the appropriate box on the left. " +"Click any node to display its full properties." +msgstr "" + +#: .\cookbook\templates\url_import.html:344 +#, fuzzy +#| msgid "Show as header" +msgid "Show Blank Field" +msgstr "Rādīt kā galveni" + +#: .\cookbook\templates\url_import.html:349 +msgid "Blank Field" +msgstr "" + +#: .\cookbook\templates\url_import.html:353 +msgid "Items dragged to Blank Field will be appended." +msgstr "" + +#: .\cookbook\templates\url_import.html:400 +#, fuzzy +#| msgid "Delete Step" +msgid "Delete Text" +msgstr "Dzēst soli" + +#: .\cookbook\templates\url_import.html:413 +#, fuzzy +#| msgid "Delete Recipe" +msgid "Delete image" +msgstr "Dzēst recepti" + +#: .\cookbook\templates\url_import.html:429 msgid "Recipe Name" msgstr "Receptes nosaukums" -#: .\cookbook\templates\url_import.html:62 +#: .\cookbook\templates\url_import.html:433 #, fuzzy #| msgid "Recipe Markup Specification" msgid "Recipe Description" msgstr "Recepšu Markup specifikācija" -#: .\cookbook\templates\url_import.html:123 -#: .\cookbook\templates\url_import.html:155 -#: .\cookbook\templates\url_import.html:211 +#: .\cookbook\templates\url_import.html:494 +#: .\cookbook\templates\url_import.html:526 +#: .\cookbook\templates\url_import.html:582 msgid "Select one" msgstr "Izvēlies vienu" -#: .\cookbook\templates\url_import.html:225 +#: .\cookbook\templates\url_import.html:596 msgid "All Keywords" msgstr "Visi atslēgvārdi" -#: .\cookbook\templates\url_import.html:228 +#: .\cookbook\templates\url_import.html:599 msgid "Import all keywords, not only the ones already existing." msgstr "Importējiet visus atslēgvārdus, ne tikai jau esošos." -#: .\cookbook\templates\url_import.html:255 +#: .\cookbook\templates\url_import.html:626 msgid "Information" msgstr "Informācija" -#: .\cookbook\templates\url_import.html:257 +#: .\cookbook\templates\url_import.html:628 msgid "" " Only websites containing ld+json or microdata information can currently\n" " be imported. Most big recipe pages " @@ -1783,51 +2221,79 @@ msgstr "" "nekautrējieties ievietot piemēru\n" " Github." -#: .\cookbook\templates\url_import.html:265 +#: .\cookbook\templates\url_import.html:636 msgid "Google ld+json Info" msgstr "Google ld+json informācija" -#: .\cookbook\templates\url_import.html:268 +#: .\cookbook\templates\url_import.html:639 msgid "GitHub Issues" msgstr "GitHub Issues" -#: .\cookbook\templates\url_import.html:270 +#: .\cookbook\templates\url_import.html:641 msgid "Recipe Markup Specification" msgstr "Recepšu Markup specifikācija" -#: .\cookbook\views\api.py:71 +#: .\cookbook\views\api.py:77 #, fuzzy #| msgid "Parameter filter_list incorrectly formatted" msgid "Parameter updated_at incorrectly formatted" msgstr "Parametrs filter_list ir nepareizi formatēts" -#: .\cookbook\views\api.py:455 .\cookbook\views\views.py:226 +#: .\cookbook\views\api.py:553 .\cookbook\views\views.py:295 msgid "This feature is not available in the demo version!" msgstr "" -#: .\cookbook\views\api.py:478 +#: .\cookbook\views\api.py:576 msgid "Sync successful!" msgstr "Sinhronizācija ir veiksmīga!" -#: .\cookbook\views\api.py:483 +#: .\cookbook\views\api.py:581 msgid "Error synchronizing with Storage" msgstr "Sinhronizējot ar krātuvi, radās kļūda" -#: .\cookbook\views\api.py:556 .\cookbook\views\api.py:576 +#: .\cookbook\views\api.py:649 +msgid "Nothing to do." +msgstr "" + +#: .\cookbook\views\api.py:664 +msgid "The requested site provided malformed data and cannot be read." +msgstr "Pieprasītā vietne sniedza nepareizus datus, kurus nevar nolasīt." + +#: .\cookbook\views\api.py:671 msgid "The requested page could not be found." msgstr "Pieprasīto lapu nevarēja atrast." -#: .\cookbook\views\api.py:585 +#: .\cookbook\views\api.py:680 msgid "" -"The requested page refused to provide any information (Status Code 403)." +"The requested site does not provide any recognized data format to import the " +"recipe from." msgstr "" -"Pieprasītā lapa atteicās sniegt jebkādu informāciju (statusa kods 403)." +"Pieprasītajā vietnē nav norādīts atzīts datu formāts, no kura varētu " +"importēt recepti." -#: .\cookbook\views\api.py:611 -msgid "Could not parse correctly..." +#: .\cookbook\views\api.py:694 +#, fuzzy +#| msgid "The requested page could not be found." +msgid "No useable data could be found." +msgstr "Pieprasīto lapu nevarēja atrast." + +#: .\cookbook\views\api.py:710 +msgid "I couldn't find anything to do." msgstr "" -#: .\cookbook\views\data.py:94 +#: .\cookbook\views\data.py:30 .\cookbook\views\data.py:121 +#: .\cookbook\views\edit.py:50 .\cookbook\views\import_export.py:67 +#: .\cookbook\views\new.py:32 +msgid "You have reached the maximum number of recipes for your space." +msgstr "" + +#: .\cookbook\views\data.py:34 .\cookbook\views\data.py:125 +#: .\cookbook\views\edit.py:54 .\cookbook\views\import_export.py:71 +#: .\cookbook\views\new.py:36 +msgid "You have more users than allowed in your space." +msgstr "" + +#: .\cookbook\views\data.py:103 #, python-format msgid "Batch edit done. %(count)d recipe was updated." msgid_plural "Batch edit done. %(count)d Recipes where updated." @@ -1840,7 +2306,7 @@ msgid "Monitor" msgstr "Uzraudzīt" #: .\cookbook\views\delete.py:96 .\cookbook\views\lists.py:102 -#: .\cookbook\views\new.py:86 +#: .\cookbook\views\new.py:98 msgid "Storage Backend" msgstr "Krātuves aizmugursistēma" @@ -1851,8 +2317,8 @@ msgstr "" "Nevarēja izdzēst šo krātuves aizmugursistēmu, jo tā tiek izmantota vismaz " "vienā uzraugā." -#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:204 -#: .\cookbook\views\new.py:144 +#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:213 +#: .\cookbook\views\new.py:156 msgid "Recipe Book" msgstr "Recepšu grāmata" @@ -1860,55 +2326,55 @@ msgstr "Recepšu grāmata" msgid "Bookmarks" msgstr "Grāmatzīmes" -#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:214 +#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:252 msgid "Invite Link" msgstr "Uzaicinājuma saite" -#: .\cookbook\views\edit.py:110 +#: .\cookbook\views\edit.py:119 msgid "Food" msgstr "Ēdiens" -#: .\cookbook\views\edit.py:119 +#: .\cookbook\views\edit.py:128 msgid "You cannot edit this storage!" msgstr "Jūs nevarat rediģēt šo krātuvi!" -#: .\cookbook\views\edit.py:139 +#: .\cookbook\views\edit.py:148 msgid "Storage saved!" msgstr "Krātuve saglabāta!" -#: .\cookbook\views\edit.py:145 +#: .\cookbook\views\edit.py:154 msgid "There was an error updating this storage backend!" msgstr "Atjauninot šo krātuves aizmugursistēmu, radās kļūda!" -#: .\cookbook\views\edit.py:156 +#: .\cookbook\views\edit.py:165 msgid "Storage" msgstr "Krātuve" -#: .\cookbook\views\edit.py:252 +#: .\cookbook\views\edit.py:261 msgid "Changes saved!" msgstr "Izmaiņas saglabātas!" -#: .\cookbook\views\edit.py:256 +#: .\cookbook\views\edit.py:265 msgid "Error saving changes!" msgstr "Saglabājot izmaiņas, radās kļūda!" -#: .\cookbook\views\edit.py:289 +#: .\cookbook\views\edit.py:299 msgid "Units merged!" msgstr "Vienības ir apvienotas!" -#: .\cookbook\views\edit.py:291 .\cookbook\views\edit.py:307 +#: .\cookbook\views\edit.py:301 .\cookbook\views\edit.py:317 msgid "Cannot merge with the same object!" msgstr "" -#: .\cookbook\views\edit.py:305 +#: .\cookbook\views\edit.py:315 msgid "Foods merged!" msgstr "Ēdieni apvienoti!" -#: .\cookbook\views\import_export.py:73 +#: .\cookbook\views\import_export.py:93 msgid "Importing is not implemented for this provider" msgstr "" -#: .\cookbook\views\import_export.py:92 +#: .\cookbook\views\import_export.py:115 msgid "Exporting is not implemented for this provider" msgstr "" @@ -1924,23 +2390,77 @@ msgstr "Atklāšana" msgid "Shopping Lists" msgstr "Iepirkšanās saraksti" -#: .\cookbook\views\new.py:111 +#: .\cookbook\views\new.py:123 msgid "Imported new recipe!" msgstr "Importēta jauna recepte!" -#: .\cookbook\views\new.py:114 +#: .\cookbook\views\new.py:126 msgid "There was an error importing this recipe!" msgstr "Importējot šo recepti, radās kļūda!" -#: .\cookbook\views\views.py:123 +#: .\cookbook\views\new.py:226 +msgid "Hello" +msgstr "" + +#: .\cookbook\views\new.py:226 +msgid "You have been invited by " +msgstr "" + +#: .\cookbook\views\new.py:227 +msgid " to join their Tandoor Recipes space " +msgstr "" + +#: .\cookbook\views\new.py:228 +msgid "Click the following link to activate your account: " +msgstr "" + +#: .\cookbook\views\new.py:229 +msgid "" +"If the link does not work use the following code to manually join the space: " +msgstr "" + +#: .\cookbook\views\new.py:230 +msgid "The invitation is valid until " +msgstr "" + +#: .\cookbook\views\new.py:231 +msgid "" +"Tandoor Recipes is an Open Source recipe manager. Check it out on GitHub " +msgstr "" + +#: .\cookbook\views\new.py:234 +msgid "Tandoor Recipes Invite" +msgstr "" + +#: .\cookbook\views\new.py:241 +msgid "Invite link successfully send to user." +msgstr "" + +#: .\cookbook\views\new.py:244 +msgid "" +"You have send to many emails, please share the link manually or wait a few " +"hours." +msgstr "" + +#: .\cookbook\views\new.py:246 +msgid "Email to user could not be send, please share link manually." +msgstr "" + +#: .\cookbook\views\views.py:125 +msgid "" +"You have successfully created your own recipe space. Start by adding some " +"recipes or invite other people to join you." +msgstr "" + +#: .\cookbook\views\views.py:173 msgid "You do not have the required permissions to perform this action!" msgstr "Jums nav nepieciešamo atļauju, lai veiktu šo darbību!" -#: .\cookbook\views\views.py:134 +#: .\cookbook\views\views.py:184 msgid "Comment saved!" msgstr "Komentārs saglabāts!" -#: .\cookbook\views\views.py:326 +#: .\cookbook\views\views.py:396 msgid "" "The setup page can only be used to create the first user! If you have " "forgotten your superuser credentials please consult the django documentation " @@ -1950,22 +2470,58 @@ msgstr "" "aizmirsis sava superlietotāja informāciju, lūdzu, skatiet Django " "dokumentāciju par paroļu atiestatīšanu." -#: .\cookbook\views\views.py:333 .\cookbook\views\views.py:378 +#: .\cookbook\views\views.py:403 msgid "Passwords dont match!" msgstr "Paroles nesakrīt!" -#: .\cookbook\views\views.py:349 .\cookbook\views\views.py:385 +#: .\cookbook\views\views.py:419 msgid "User has been created, please login!" msgstr "Lietotājs ir izveidots, lūdzu, piesakieties!" -#: .\cookbook\views\views.py:365 +#: .\cookbook\views\views.py:435 msgid "Malformed Invite Link supplied!" msgstr "Nepareiza uzaicinājuma saite!" -#: .\cookbook\views\views.py:405 +#: .\cookbook\views\views.py:441 +#, fuzzy +#| msgid "You are not logged in and therefore cannot view this page!" +msgid "You are already member of a space and therefore cannot join this one." +msgstr "Jūs neesat pieteicies un tāpēc nevarat skatīt šo lapu!" + +#: .\cookbook\views\views.py:452 +msgid "Successfully joined space." +msgstr "" + +#: .\cookbook\views\views.py:458 msgid "Invite Link not valid or already used!" msgstr "Uzaicinājuma saite nav derīga vai jau izmantota!" +#~ msgid "" +#~ "A username is not required, if left blank the new user can choose one." +#~ msgstr "" +#~ "Lietotājvārds nav nepieciešams. Ja tas tiks atstāts tukšs, lietotājs to " +#~ "varēs izvēlēties pats." + +#~ msgid "Imported from" +#~ msgstr "Importēts no" + +#~ msgid "Link" +#~ msgstr "Saite" + +#~ msgid "Logout" +#~ msgstr "Izlogoties" + +#~ msgid "Website Import" +#~ msgstr "Vietnes importēšana" + +#~ msgid "There was an error creating a resource!" +#~ msgstr "Radot resursu, radās kļūda!" + +#~ msgid "" +#~ "The requested page refused to provide any information (Status Code 403)." +#~ msgstr "" +#~ "Pieprasītā lapa atteicās sniegt jebkādu informāciju (statusa kods 403)." + #~ msgid "" #~ "Include - [ ] in list for easier usage in markdown based " #~ "documents." @@ -1981,6 +2537,3 @@ msgstr "Uzaicinājuma saite nav derīga vai jau izmantota!" #~ msgid "Preference for given user already exists" #~ msgstr "Priekšroka konkrētam lietotājam jau pastāv" - -#~ msgid "Bookmark saved!" -#~ msgstr "Grāmatzīme saglabāta!" diff --git a/cookbook/locale/nl/LC_MESSAGES/django.po b/cookbook/locale/nl/LC_MESSAGES/django.po index 968a11d1..174d3390 100644 --- a/cookbook/locale/nl/LC_MESSAGES/django.po +++ b/cookbook/locale/nl/LC_MESSAGES/django.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-04-11 15:09+0200\n" -"PO-Revision-Date: 2021-05-04 09:02+0000\n" +"POT-Creation-Date: 2021-06-12 20:30+0200\n" +"PO-Revision-Date: 2021-06-22 09:12+0000\n" "Last-Translator: Jesse \n" "Language-Team: Dutch \n" @@ -22,16 +22,17 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.5.3\n" +"X-Generator: Weblate 4.6.2\n" -#: .\cookbook\filters.py:23 .\cookbook\templates\base.html:91 -#: .\cookbook\templates\forms\edit_internal_recipe.html:219 +#: .\cookbook\filters.py:23 .\cookbook\templates\base.html:98 +#: .\cookbook\templates\forms\edit_internal_recipe.html:246 #: .\cookbook\templates\forms\ingredients.html:34 -#: .\cookbook\templates\stats.html:28 .\cookbook\views\lists.py:67 +#: .\cookbook\templates\space.html:37 .\cookbook\templates\stats.html:28 +#: .\cookbook\templates\url_import.html:270 .\cookbook\views\lists.py:67 msgid "Ingredients" msgstr "Ingrediënten" -#: .\cookbook\forms.py:45 +#: .\cookbook\forms.py:49 msgid "" "Color of the top navigation bar. Not all colors work with all themes, just " "try them out!" @@ -39,13 +40,13 @@ msgstr "" "De kleur van de bovenste navigatie balk. Niet alle kleuren werken met alle " "thema's, je dient ze dus simpelweg uit te proberen!" -#: .\cookbook\forms.py:46 +#: .\cookbook\forms.py:51 msgid "Default Unit to be used when inserting a new ingredient into a recipe." msgstr "" "Standaard eenheid die gebruikt wordt wanneer een nieuw ingrediënt aan een " "recept wordt toegevoegd." -#: .\cookbook\forms.py:47 +#: .\cookbook\forms.py:53 msgid "" "Enables support for fractions in ingredient amounts (e.g. convert decimals " "to fractions automatically)" @@ -53,7 +54,7 @@ msgstr "" "Mogelijk maken van breuken bij ingrediënt aantallen (het automatisch " "converteren van decimalen naar breuken)" -#: .\cookbook\forms.py:48 +#: .\cookbook\forms.py:56 msgid "" "Users with whom newly created meal plan/shopping list entries should be " "shared by default." @@ -61,19 +62,19 @@ msgstr "" "Gebruikers waarmee nieuwe maaltijdplannen/boodschappenlijstjes standaard " "gedeeld moeten worden." -#: .\cookbook\forms.py:49 +#: .\cookbook\forms.py:58 msgid "Show recently viewed recipes on search page." msgstr "Geef recent bekeken recepten op de zoekpagina weer." -#: .\cookbook\forms.py:50 +#: .\cookbook\forms.py:59 msgid "Number of decimals to round ingredients." msgstr "Aantal decimalen om ingrediënten op af te ronden." -#: .\cookbook\forms.py:51 +#: .\cookbook\forms.py:60 msgid "If you want to be able to create and see comments underneath recipes." msgstr "Als je opmerkingen bij recepten wil kunnen maken en zien." -#: .\cookbook\forms.py:53 +#: .\cookbook\forms.py:62 msgid "" "Setting to 0 will disable auto sync. When viewing a shopping list the list " "is updated every set seconds to sync changes someone else might have made. " @@ -86,11 +87,11 @@ msgstr "" "gelijktijdig boodschappen doen maar verbruikt mogelijk extra mobiele data. " "Wordt gereset bij opslaan wanneer de limiet niet bereikt is." -#: .\cookbook\forms.py:56 +#: .\cookbook\forms.py:65 msgid "Makes the navbar stick to the top of the page." msgstr "Zet de navbar vast aan de bovenkant van de pagina." -#: .\cookbook\forms.py:72 +#: .\cookbook\forms.py:81 msgid "" "Both fields are optional. If none are given the username will be displayed " "instead" @@ -98,39 +99,42 @@ msgstr "" "Beide velden zijn optioneel. Indien niks is opgegeven wordt de " "gebruikersnaam weergegeven" -#: .\cookbook\forms.py:93 .\cookbook\forms.py:315 -#: .\cookbook\templates\forms\edit_internal_recipe.html:45 +#: .\cookbook\forms.py:102 .\cookbook\forms.py:331 +#: .\cookbook\templates\forms\edit_internal_recipe.html:49 +#: .\cookbook\templates\url_import.html:154 msgid "Name" msgstr "Naam" -#: .\cookbook\forms.py:94 .\cookbook\forms.py:316 -#: .\cookbook\templates\base.html:98 -#: .\cookbook\templates\forms\edit_internal_recipe.html:81 -#: .\cookbook\templates\stats.html:24 .\cookbook\templates\url_import.html:202 +#: .\cookbook\forms.py:103 .\cookbook\forms.py:332 +#: .\cookbook\templates\base.html:105 +#: .\cookbook\templates\forms\edit_internal_recipe.html:85 +#: .\cookbook\templates\space.html:33 .\cookbook\templates\stats.html:24 +#: .\cookbook\templates\url_import.html:188 +#: .\cookbook\templates\url_import.html:573 msgid "Keywords" msgstr "Etiketten" -#: .\cookbook\forms.py:95 +#: .\cookbook\forms.py:104 msgid "Preparation time in minutes" msgstr "Voorbereidingstijd in minuten" -#: .\cookbook\forms.py:96 +#: .\cookbook\forms.py:105 msgid "Waiting time (cooking/baking) in minutes" msgstr "Wacht tijd in minuten (koken en bakken)" -#: .\cookbook\forms.py:97 .\cookbook\forms.py:317 +#: .\cookbook\forms.py:106 .\cookbook\forms.py:333 msgid "Path" msgstr "Pad" -#: .\cookbook\forms.py:98 +#: .\cookbook\forms.py:107 msgid "Storage UID" msgstr "Opslag UID" -#: .\cookbook\forms.py:121 +#: .\cookbook\forms.py:133 msgid "Default" msgstr "Standaard waarde" -#: .\cookbook\forms.py:130 +#: .\cookbook\forms.py:144 .\cookbook\templates\url_import.html:90 msgid "" "To prevent duplicates recipes with the same name as existing ones are " "ignored. Check this box to import everything." @@ -138,51 +142,51 @@ msgstr "" "Om dubbelingen te voorkomen worden recepten met dezelfde naam als een " "bestaand recept genegeerd. Vink aan om alles te importeren." -#: .\cookbook\forms.py:149 +#: .\cookbook\forms.py:164 msgid "New Unit" msgstr "Nieuwe eenheid" -#: .\cookbook\forms.py:150 +#: .\cookbook\forms.py:165 msgid "New unit that other gets replaced by." msgstr "Nieuwe eenheid waarmee de andere wordt vervangen." -#: .\cookbook\forms.py:155 +#: .\cookbook\forms.py:170 msgid "Old Unit" msgstr "Oude eenheid" -#: .\cookbook\forms.py:156 +#: .\cookbook\forms.py:171 msgid "Unit that should be replaced." msgstr "Eenheid die vervangen dient te worden." -#: .\cookbook\forms.py:172 +#: .\cookbook\forms.py:187 msgid "New Food" msgstr "Nieuw Ingredïent" -#: .\cookbook\forms.py:173 +#: .\cookbook\forms.py:188 msgid "New food that other gets replaced by." msgstr "Nieuw Ingredïent dat Oud Ingrediënt vervangt." -#: .\cookbook\forms.py:178 +#: .\cookbook\forms.py:193 msgid "Old Food" msgstr "Oud Ingrediënt" -#: .\cookbook\forms.py:179 +#: .\cookbook\forms.py:194 msgid "Food that should be replaced." msgstr "Te vervangen Ingrediënt." -#: .\cookbook\forms.py:197 +#: .\cookbook\forms.py:212 msgid "Add your comment: " msgstr "Voeg een opmerking toe: " -#: .\cookbook\forms.py:238 +#: .\cookbook\forms.py:253 msgid "Leave empty for dropbox and enter app password for nextcloud." msgstr "Laat leeg voor dropbox en vul het app wachtwoord in voor nextcloud." -#: .\cookbook\forms.py:245 +#: .\cookbook\forms.py:260 msgid "Leave empty for nextcloud and enter api token for dropbox." msgstr "Laat leeg voor nextcloud en vul de api token in voor dropbox." -#: .\cookbook\forms.py:253 +#: .\cookbook\forms.py:269 msgid "" "Leave empty for dropbox and enter only base url for nextcloud (/remote." "php/webdav/ is added automatically)" @@ -190,26 +194,26 @@ msgstr "" "Laat leeg voor dropbox en vul enkel de base url voor nextcloud in. (/" "remote.php/webdav/ wordt automatisch toegevoegd.)" -#: .\cookbook\forms.py:291 +#: .\cookbook\forms.py:307 msgid "Search String" msgstr "Zoekopdracht" -#: .\cookbook\forms.py:318 +#: .\cookbook\forms.py:334 msgid "File ID" msgstr "Bestands ID" -#: .\cookbook\forms.py:354 +#: .\cookbook\forms.py:370 msgid "You must provide at least a recipe or a title." msgstr "Je moet minimaal één recept of titel te specificeren." -#: .\cookbook\forms.py:367 +#: .\cookbook\forms.py:383 msgid "You can list default users to share recipes with in the settings." msgstr "" "Je kan in de instellingen standaard gebruikers in stellen om de recepten met " "te delen." -#: .\cookbook\forms.py:368 -#: .\cookbook\templates\forms\edit_internal_recipe.html:377 +#: .\cookbook\forms.py:384 +#: .\cookbook\templates\forms\edit_internal_recipe.html:404 msgid "" "You can use markdown to format this field. See the docs here" @@ -217,53 +221,62 @@ msgstr "" "Je kunt markdown gebruiken om dit veld te op te maken. Bekijk de documentatie hier" -#: .\cookbook\forms.py:393 -msgid "A username is not required, if left blank the new user can choose one." +#: .\cookbook\forms.py:409 +msgid "Maximum number of users for this space reached." +msgstr "Maximum aantal gebruikers voor deze ruimte bereikt." + +#: .\cookbook\forms.py:415 +msgid "Email address already taken!" +msgstr "E-mailadres reeds in gebruik!" + +#: .\cookbook\forms.py:423 +msgid "" +"An email address is not required but if present the invite link will be send " +"to the user." msgstr "" -"Een gebruikersnaam is niet verplicht. Als het veld leeg is kan de gebruiker " -"er een kiezen." +"Een e-mailadres is niet vereist, maar indien aanwezig zal de " +"uitnodigingslink naar de gebruiker worden gestuurd." -#: .\cookbook\helper\permission_helper.py:123 -#: .\cookbook\helper\permission_helper.py:129 -#: .\cookbook\helper\permission_helper.py:151 -#: .\cookbook\helper\permission_helper.py:196 -#: .\cookbook\helper\permission_helper.py:210 -#: .\cookbook\helper\permission_helper.py:221 -#: .\cookbook\helper\permission_helper.py:232 .\cookbook\views\data.py:30 -#: .\cookbook\views\views.py:112 .\cookbook\views\views.py:116 -#: .\cookbook\views\views.py:184 -msgid "You do not have the required permissions to view this page!" -msgstr "Je hebt niet de benodigde machtigingen om deze pagina te bekijken!" +#: .\cookbook\forms.py:438 +msgid "Name already taken." +msgstr "Naam reeds in gebruik." -#: .\cookbook\helper\permission_helper.py:141 +#: .\cookbook\forms.py:449 +msgid "Accept Terms and Privacy" +msgstr "Accepteer voorwaarden" + +#: .\cookbook\helper\AllAuthCustomAdapter.py:30 +msgid "" +"In order to prevent spam, the requested email was not send. Please wait a " +"few minutes and try again." +msgstr "" +"Om spam te voorkomen werd de gevraagde e-mail niet verzonden. Wacht een paar " +"minuten en probeer het opnieuw." + +#: .\cookbook\helper\permission_helper.py:124 +#: .\cookbook\helper\permission_helper.py:144 .\cookbook\views\views.py:147 msgid "You are not logged in and therefore cannot view this page!" msgstr "Je bent niet ingelogd en kan deze pagina daarom niet bekijken!" -#: .\cookbook\helper\permission_helper.py:145 -#: .\cookbook\helper\permission_helper.py:167 -#: .\cookbook\helper\permission_helper.py:182 +#: .\cookbook\helper\permission_helper.py:127 +#: .\cookbook\helper\permission_helper.py:132 +#: .\cookbook\helper\permission_helper.py:154 +#: .\cookbook\helper\permission_helper.py:199 +#: .\cookbook\helper\permission_helper.py:213 +#: .\cookbook\helper\permission_helper.py:224 +#: .\cookbook\helper\permission_helper.py:235 .\cookbook\views\data.py:39 +#: .\cookbook\views\views.py:158 .\cookbook\views\views.py:165 +#: .\cookbook\views\views.py:253 +msgid "You do not have the required permissions to view this page!" +msgstr "Je hebt niet de benodigde machtigingen om deze pagina te bekijken!" + +#: .\cookbook\helper\permission_helper.py:148 +#: .\cookbook\helper\permission_helper.py:170 +#: .\cookbook\helper\permission_helper.py:185 msgid "You cannot interact with this object as it is not owned by you!" msgstr "" "Interactie met dit object is niet mogelijk omdat je niet de eigenaar bent!" -#: .\cookbook\helper\recipe_url_import.py:40 .\cookbook\views\api.py:549 -msgid "The requested site provided malformed data and cannot be read." -msgstr "" -"De opgevraagde site heeft misvormde data verstrekt en kan niet gelezen " -"worden." - -#: .\cookbook\helper\recipe_url_import.py:54 -msgid "" -"The requested site does not provide any recognized data format to import the " -"recipe from." -msgstr "" -"De opgevraagde site biedt geen bekend gegevensformaat aan om het recept van " -"te importeren." - -#: .\cookbook\helper\recipe_url_import.py:160 -msgid "Imported from" -msgstr "Geïmporteerd van" - #: .\cookbook\helper\template_helper.py:60 #: .\cookbook\helper\template_helper.py:62 msgid "Could not parse template code." @@ -273,43 +286,56 @@ msgstr "Sjablooncode kon niet verwerkt worden." #: .\cookbook\templates\import.html:14 .\cookbook\templates\import.html:20 #: .\cookbook\templates\import_response.html:7 #: .\cookbook\templates\test.html:14 .\cookbook\templates\test.html:20 -#: .\cookbook\templates\url_import.html:233 .\cookbook\views\delete.py:60 -#: .\cookbook\views\edit.py:190 +#: .\cookbook\templates\url_import.html:27 +#: .\cookbook\templates\url_import.html:101 +#: .\cookbook\templates\url_import.html:123 +#: .\cookbook\templates\url_import.html:317 +#: .\cookbook\templates\url_import.html:604 .\cookbook\views\delete.py:60 +#: .\cookbook\views\edit.py:199 msgid "Import" msgstr "Importeer" -#: .\cookbook\integration\integration.py:131 +#: .\cookbook\integration\integration.py:162 msgid "" "Importer expected a .zip file. Did you choose the correct importer type for " "your data ?" msgstr "" "De importtool verwachtte een .zip bestand. Heb je het juiste type gekozen?" -#: .\cookbook\integration\integration.py:134 +#: .\cookbook\integration\integration.py:165 +msgid "" +"An unexpected error occurred during the import. Please make sure you have " +"uploaded a valid file." +msgstr "" +"Er is een onverwachte fout opgetreden tijdens het importeren. Controleer of " +"u een geldig bestand hebt geüpload." + +#: .\cookbook\integration\integration.py:169 msgid "The following recipes were ignored because they already existed:" msgstr "De volgende recepten zijn genegeerd omdat ze al bestonden:" -#: .\cookbook\integration\integration.py:137 +#: .\cookbook\integration\integration.py:173 #, python-format msgid "Imported %s recipes." msgstr "%s recepten geïmporteerd." -#: .\cookbook\integration\paprika.py:44 +#: .\cookbook\integration\paprika.py:46 msgid "Notes" msgstr "Notities" -#: .\cookbook\integration\paprika.py:47 +#: .\cookbook\integration\paprika.py:49 msgid "Nutritional Information" msgstr "Voedingswaarde" -#: .\cookbook\integration\paprika.py:50 +#: .\cookbook\integration\paprika.py:53 msgid "Source" msgstr "Bron" #: .\cookbook\integration\safron.py:23 -#: .\cookbook\templates\forms\edit_internal_recipe.html:75 +#: .\cookbook\templates\forms\edit_internal_recipe.html:79 #: .\cookbook\templates\include\log_cooking.html:16 -#: .\cookbook\templates\url_import.html:84 +#: .\cookbook\templates\url_import.html:224 +#: .\cookbook\templates\url_import.html:455 msgid "Servings" msgstr "Porties" @@ -318,11 +344,11 @@ msgid "Waiting time" msgstr "Wachttijd" #: .\cookbook\integration\safron.py:27 -#: .\cookbook\templates\forms\edit_internal_recipe.html:69 +#: .\cookbook\templates\forms\edit_internal_recipe.html:73 msgid "Preparation Time" msgstr "Bereidingstijd" -#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:71 +#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:78 #: .\cookbook\templates\forms\ingredients.html:7 #: .\cookbook\templates\index.html:7 msgid "Cookbook" @@ -348,44 +374,74 @@ msgstr "Avondeten" msgid "Other" msgstr "Overige" -#: .\cookbook\models.py:110 .\cookbook\templates\shopping_list.html:48 +#: .\cookbook\models.py:71 +msgid "" +"Maximum file storage for space in MB. 0 for unlimited, -1 to disable file " +"upload." +msgstr "" +"Maximale bestandsopslag voor ruimte in MB. 0 voor onbeperkt, -1 om uploaden " +"van bestanden uit te schakelen." + +#: .\cookbook\models.py:121 .\cookbook\templates\search.html:7 +#: .\cookbook\templates\shopping_list.html:52 msgid "Search" msgstr "Zoeken" -#: .\cookbook\models.py:111 .\cookbook\templates\base.html:85 +#: .\cookbook\models.py:122 .\cookbook\templates\base.html:92 #: .\cookbook\templates\meal_plan.html:5 .\cookbook\views\delete.py:152 -#: .\cookbook\views\edit.py:224 .\cookbook\views\new.py:188 +#: .\cookbook\views\edit.py:233 .\cookbook\views\new.py:201 msgid "Meal-Plan" msgstr "Maaltijdplan" -#: .\cookbook\models.py:112 .\cookbook\templates\base.html:82 +#: .\cookbook\models.py:123 .\cookbook\templates\base.html:89 msgid "Books" msgstr "Boeken" -#: .\cookbook\models.py:119 +#: .\cookbook\models.py:131 msgid "Small" msgstr "Klein" -#: .\cookbook\models.py:119 +#: .\cookbook\models.py:131 msgid "Large" msgstr "Groot" -#: .\cookbook\models.py:327 -#: .\cookbook\templates\forms\edit_internal_recipe.html:198 +#: .\cookbook\models.py:131 .\cookbook\templates\generic\new_template.html:6 +#: .\cookbook\templates\generic\new_template.html:14 +#: .\cookbook\templates\meal_plan.html:323 +msgid "New" +msgstr "Nieuw" + +#: .\cookbook\models.py:340 +#: .\cookbook\templates\forms\edit_internal_recipe.html:202 msgid "Text" msgstr "Tekst" -#: .\cookbook\models.py:327 -#: .\cookbook\templates\forms\edit_internal_recipe.html:199 +#: .\cookbook\models.py:340 +#: .\cookbook\templates\forms\edit_internal_recipe.html:203 msgid "Time" msgstr "Tijd" +#: .\cookbook\models.py:340 +#: .\cookbook\templates\forms\edit_internal_recipe.html:204 +#: .\cookbook\templates\forms\edit_internal_recipe.html:218 +msgid "File" +msgstr "Bestand" + +#: .\cookbook\serializer.py:109 +msgid "File uploads are not enabled for this Space." +msgstr "Bestandsuploads zijn niet ingeschakeld voor deze Ruimte." + +#: .\cookbook\serializer.py:117 +msgid "You have reached your file upload limit." +msgstr "U heeft de uploadlimiet bereikt." + #: .\cookbook\tables.py:35 .\cookbook\templates\books.html:36 #: .\cookbook\templates\generic\edit_template.html:6 #: .\cookbook\templates\generic\edit_template.html:14 #: .\cookbook\templates\meal_plan.html:281 #: .\cookbook\templates\recipes_table.html:82 #: .\cookbook\templates\shopping_list.html:33 +#: .\cookbook\templates\space.html:84 msgid "Edit" msgstr "Bewerken" @@ -399,10 +455,6 @@ msgstr "Bewerken" msgid "Delete" msgstr "Verwijderen" -#: .\cookbook\tables.py:144 -msgid "Link" -msgstr "Link" - #: .\cookbook\templates\404.html:5 msgid "404 Error" msgstr "404 Foutmelding" @@ -419,21 +471,128 @@ msgstr "Breng me Thuis" msgid "Report a Bug" msgstr "Rapporteer een bug" -#: .\cookbook\templates\account\login.html:7 -#: .\cookbook\templates\base.html:170 +#: .\cookbook\templates\account\email.html:6 +#: .\cookbook\templates\account\email.html:9 +msgid "E-mail Addresses" +msgstr "E-mailadressen" + +#: .\cookbook\templates\account\email.html:11 +msgid "The following e-mail addresses are associated with your account:" +msgstr "De volgende e-mailadressen zijn aan uw account gekoppeld:" + +#: .\cookbook\templates\account\email.html:28 +msgid "Verified" +msgstr "Geverifieerd" + +#: .\cookbook\templates\account\email.html:30 +msgid "Unverified" +msgstr "Ongeverifieerd" + +#: .\cookbook\templates\account\email.html:32 +msgid "Primary" +msgstr "Primair" + +#: .\cookbook\templates\account\email.html:39 +msgid "Make Primary" +msgstr "Stel in als eerste" + +#: .\cookbook\templates\account\email.html:41 +msgid "Re-send Verification" +msgstr "Verificatie opnieuw verzenden" + +#: .\cookbook\templates\account\email.html:42 +#: .\cookbook\templates\socialaccount\connections.html:36 +msgid "Remove" +msgstr "Verwijder" + +#: .\cookbook\templates\account\email.html:50 +msgid "Warning:" +msgstr "Waarschuwing:" + +#: .\cookbook\templates\account\email.html:50 +msgid "" +"You currently do not have any e-mail address set up. You should really add " +"an e-mail address so you can receive notifications, reset your password, etc." +msgstr "" +"U hebt momenteel geen e-mailadres ingesteld. U zou een e-mailadres moeten " +"toevoegen zodat u meldingen kunt ontvangen, uw wachtwoord kunt resetten, enz." + +#: .\cookbook\templates\account\email.html:56 +msgid "Add E-mail Address" +msgstr "E-mailadres toevoegen" + +#: .\cookbook\templates\account\email.html:61 +msgid "Add E-mail" +msgstr "E-mail toevoegen" + +#: .\cookbook\templates\account\email.html:71 +msgid "Do you really want to remove the selected e-mail address?" +msgstr "Wilt u het geselecteerde e-mailadres echt verwijderen?" + +#: .\cookbook\templates\account\email_confirm.html:6 +#: .\cookbook\templates\account\email_confirm.html:10 +msgid "Confirm E-mail Address" +msgstr "Bevestig e-mailadres" + +#: .\cookbook\templates\account\email_confirm.html:16 +#, python-format +msgid "" +"Please confirm that\n" +" %(email)s is an e-mail address " +"for user %(user_display)s\n" +" ." +msgstr "" +"Bevestig dat\n" +" %(email)s een e-mailadres is voor " +"gebruiker %(user_display)s\n" +" ." + +#: .\cookbook\templates\account\email_confirm.html:22 +#: .\cookbook\templates\generic\delete_template.html:21 +msgid "Confirm" +msgstr "Bevestigen" + +#: .\cookbook\templates\account\email_confirm.html:29 +#, python-format +msgid "" +"This e-mail confirmation link expired or is invalid. Please\n" +" issue a new e-mail confirmation " +"request." +msgstr "" +"Deze e-mail bevestigingslink is verlopen of ongeldig.\n" +"Vraag een nieuwe bevestigingslink aan." + +#: .\cookbook\templates\account\login.html:8 +#: .\cookbook\templates\base.html:180 msgid "Login" msgstr "Inloggen" -#: .\cookbook\templates\account\login.html:13 -#: .\cookbook\templates\account\login.html:28 +#: .\cookbook\templates\account\login.html:15 +#: .\cookbook\templates\account\login.html:31 +#: .\cookbook\templates\account\signup.html:69 +#: .\cookbook\templates\account\signup_closed.html:15 msgid "Sign In" msgstr "Log in" -#: .\cookbook\templates\account\login.html:38 +#: .\cookbook\templates\account\login.html:32 +msgid "Sign Up" +msgstr "Registreer" + +#: .\cookbook\templates\account\login.html:36 +#: .\cookbook\templates\account\login.html:37 +#: .\cookbook\templates\account\password_reset.html:29 +msgid "Reset My Password" +msgstr "Reset wachtwoord" + +#: .\cookbook\templates\account\login.html:37 +msgid "Lost your password?" +msgstr "Wachtwoord vergeten?" + +#: .\cookbook\templates\account\login.html:48 msgid "Social Login" msgstr "Socials login" -#: .\cookbook\templates\account\login.html:39 +#: .\cookbook\templates\account\login.html:49 msgid "You can use any of the following providers to sign in." msgstr "Je kan een van de volgende providers gebruiken om in te loggen." @@ -447,115 +606,165 @@ msgstr "Log uit" msgid "Are you sure you want to sign out?" msgstr "Weet je zeker dat je uit wil loggen?" -#: .\cookbook\templates\account\password_reset.html:5 -#: .\cookbook\templates\account\password_reset_done.html:5 +#: .\cookbook\templates\account\password_reset.html:7 +#: .\cookbook\templates\account\password_reset.html:13 +#: .\cookbook\templates\account\password_reset_done.html:7 +#: .\cookbook\templates\account\password_reset_done.html:10 msgid "Password Reset" msgstr "Wachtwoord reset" -#: .\cookbook\templates\account\password_reset.html:9 -#: .\cookbook\templates\account\password_reset_done.html:9 -msgid "Password reset is not implemented for the time being!" -msgstr "Wachtwoord reset is nog niet geïmplementeerd!" +#: .\cookbook\templates\account\password_reset.html:24 +msgid "" +"Forgotten your password? Enter your e-mail address below, and we'll send you " +"an e-mail allowing you to reset it." +msgstr "" +"Wachtwoord vergeten? Vul je e-mail adres in en er wordt een e-mail link " +"toegestuurd waarmee je hem kan resetten." -#: .\cookbook\templates\account\signup.html:5 +#: .\cookbook\templates\account\password_reset.html:32 +msgid "Password reset is disabled on this instance." +msgstr "Wachtwoord reset is gedeactiveerd op deze server." + +#: .\cookbook\templates\account\password_reset_done.html:16 +msgid "" +"We have sent you an e-mail. Please contact us if you do not receive it " +"within a few minutes." +msgstr "" +"Er is een e-mail verstuurd. Neem contact op als je deze niet binnen een paar " +"minuten ontvangen hebt." + +#: .\cookbook\templates\account\signup.html:6 msgid "Register" msgstr "Registreer" -#: .\cookbook\templates\account\signup.html:9 -msgid "Create your Account" -msgstr "Maak je account aan" +#: .\cookbook\templates\account\signup.html:12 +msgid "Create an Account" +msgstr "Maak een account aan" -#: .\cookbook\templates\account\signup.html:14 +#: .\cookbook\templates\account\signup.html:42 +msgid "I accept the follwoing" +msgstr "Ik accepteer het volgende" + +#: .\cookbook\templates\account\signup.html:45 +msgid "Terms and Conditions" +msgstr "Voorwaarden" + +#: .\cookbook\templates\account\signup.html:48 +msgid "and" +msgstr "en" + +#: .\cookbook\templates\account\signup.html:52 +msgid "Privacy Policy" +msgstr "Privacybeleid" + +#: .\cookbook\templates\account\signup.html:65 msgid "Create User" msgstr "Maak gebruiker aan" -#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:160 +#: .\cookbook\templates\account\signup.html:69 +msgid "Already have an account?" +msgstr "Heb je al een account?" + +#: .\cookbook\templates\account\signup_closed.html:5 +#: .\cookbook\templates\account\signup_closed.html:11 +msgid "Sign Up Closed" +msgstr "Registratie gesloten" + +#: .\cookbook\templates\account\signup_closed.html:13 +msgid "We are sorry, but the sign up is currently closed." +msgstr "Excuses, registratie is op dit moment gesloten." + +#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:170 #: .\cookbook\templates\rest_framework\api.html:11 msgid "API Documentation" msgstr "API documentatie" -#: .\cookbook\templates\base.html:78 +#: .\cookbook\templates\base.html:85 msgid "Utensils" msgstr "Kookgerei" -#: .\cookbook\templates\base.html:88 +#: .\cookbook\templates\base.html:95 msgid "Shopping" msgstr "Winkelen" -#: .\cookbook\templates\base.html:102 .\cookbook\views\delete.py:84 -#: .\cookbook\views\edit.py:93 .\cookbook\views\lists.py:26 -#: .\cookbook\views\new.py:66 +#: .\cookbook\templates\base.html:109 .\cookbook\views\delete.py:84 +#: .\cookbook\views\edit.py:102 .\cookbook\views\lists.py:26 +#: .\cookbook\views\new.py:78 msgid "Keyword" msgstr "Etiket" -#: .\cookbook\templates\base.html:104 +#: .\cookbook\templates\base.html:111 msgid "Batch Edit" msgstr "Batchbewerking" -#: .\cookbook\templates\base.html:109 +#: .\cookbook\templates\base.html:116 msgid "Storage Data" msgstr "Dataopslag" -#: .\cookbook\templates\base.html:113 +#: .\cookbook\templates\base.html:120 msgid "Storage Backends" msgstr "Opslag Backends" -#: .\cookbook\templates\base.html:115 +#: .\cookbook\templates\base.html:122 msgid "Configure Sync" msgstr "Synchronisatie configureren" -#: .\cookbook\templates\base.html:117 +#: .\cookbook\templates\base.html:124 msgid "Discovered Recipes" msgstr "Ontdekte recepten" -#: .\cookbook\templates\base.html:119 +#: .\cookbook\templates\base.html:126 msgid "Discovery Log" msgstr "Ontdekkingslogboek" -#: .\cookbook\templates\base.html:121 .\cookbook\templates\stats.html:10 +#: .\cookbook\templates\base.html:128 .\cookbook\templates\stats.html:10 msgid "Statistics" msgstr "Statistieken" -#: .\cookbook\templates\base.html:123 +#: .\cookbook\templates\base.html:130 msgid "Units & Ingredients" msgstr "Eenheden & Ingrediënten" -#: .\cookbook\templates\base.html:125 +#: .\cookbook\templates\base.html:132 .\cookbook\templates\index.html:47 msgid "Import Recipe" msgstr "Recept importeren" -#: .\cookbook\templates\base.html:144 .\cookbook\templates\settings.html:6 +#: .\cookbook\templates\base.html:151 .\cookbook\templates\settings.html:6 #: .\cookbook\templates\settings.html:16 msgid "Settings" msgstr "Instellingen" -#: .\cookbook\templates\base.html:146 .\cookbook\templates\history.html:6 +#: .\cookbook\templates\base.html:153 .\cookbook\templates\history.html:6 #: .\cookbook\templates\history.html:14 msgid "History" msgstr "Geschiedenis" -#: .\cookbook\templates\base.html:150 .\cookbook\templates\system.html:13 +#: .\cookbook\templates\base.html:155 .\cookbook\templates\space.html:7 +msgid "Space Settings" +msgstr "Ruimte Instellingen" + +#: .\cookbook\templates\base.html:160 .\cookbook\templates\system.html:13 msgid "System" msgstr "Systeem" -#: .\cookbook\templates\base.html:152 +#: .\cookbook\templates\base.html:162 msgid "Admin" msgstr "Beheer" -#: .\cookbook\templates\base.html:156 +#: .\cookbook\templates\base.html:166 msgid "Markdown Guide" msgstr "Markdown gids" -#: .\cookbook\templates\base.html:158 +#: .\cookbook\templates\base.html:168 msgid "GitHub" msgstr "GitHub" -#: .\cookbook\templates\base.html:162 +#: .\cookbook\templates\base.html:172 msgid "API Browser" msgstr "API Browser" -#: .\cookbook\templates\base.html:165 -msgid "Logout" +#: .\cookbook\templates\base.html:175 +msgid "Log out" msgstr "Uitloggen" #: .\cookbook\templates\batch\edit.html:6 @@ -572,7 +781,7 @@ msgstr "" "Voeg de gespecificeerde etiketten toe aan alle recepten die een woord " "bevatten" -#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:76 +#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:85 msgid "Sync" msgstr "Synchroniseren" @@ -601,7 +810,7 @@ msgstr "Synchroniseer nu!" msgid "Importing Recipes" msgstr "Recepten aan het importeren" -#: .\cookbook\templates\batch\waiting.html:23 +#: .\cookbook\templates\batch\waiting.html:28 msgid "" "This can take a few minutes, depending on the number of recipes in sync, " "please wait." @@ -640,26 +849,31 @@ msgid "Export Recipes" msgstr "Recepten exporteren" #: .\cookbook\templates\export.html:14 .\cookbook\templates\export.html:20 -#: .\cookbook\templates\shopping_list.html:347 +#: .\cookbook\templates\shopping_list.html:351 #: .\cookbook\templates\test2.html:14 .\cookbook\templates\test2.html:20 msgid "Export" msgstr "Exporteren" +#: .\cookbook\templates\files.html:7 +msgid "Files" +msgstr "Bestanden" + #: .\cookbook\templates\forms\edit_import_recipe.html:5 #: .\cookbook\templates\forms\edit_import_recipe.html:9 msgid "Import new Recipe" msgstr "Nieuw recept importeren" #: .\cookbook\templates\forms\edit_import_recipe.html:14 -#: .\cookbook\templates\forms\edit_internal_recipe.html:389 -#: .\cookbook\templates\forms\edit_internal_recipe.html:421 +#: .\cookbook\templates\forms\edit_internal_recipe.html:416 +#: .\cookbook\templates\forms\edit_internal_recipe.html:448 #: .\cookbook\templates\generic\edit_template.html:23 #: .\cookbook\templates\generic\new_template.html:23 #: .\cookbook\templates\include\log_cooking.html:28 #: .\cookbook\templates\meal_plan.html:325 -#: .\cookbook\templates\settings.html:28 .\cookbook\templates\settings.html:35 -#: .\cookbook\templates\settings.html:58 .\cookbook\templates\settings.html:73 -#: .\cookbook\templates\shopping_list.html:349 +#: .\cookbook\templates\settings.html:44 .\cookbook\templates\settings.html:52 +#: .\cookbook\templates\settings.html:96 +#: .\cookbook\templates\settings.html:114 +#: .\cookbook\templates\shopping_list.html:353 msgid "Save" msgstr "Opslaan" @@ -668,179 +882,186 @@ msgstr "Opslaan" msgid "Edit Recipe" msgstr "Recept bewerken" -#: .\cookbook\templates\forms\edit_internal_recipe.html:52 +#: .\cookbook\templates\forms\edit_internal_recipe.html:56 +#: .\cookbook\templates\url_import.html:171 msgid "Description" msgstr "Beschrijving" -#: .\cookbook\templates\forms\edit_internal_recipe.html:72 +#: .\cookbook\templates\forms\edit_internal_recipe.html:76 msgid "Waiting Time" msgstr "Wachttijd" -#: .\cookbook\templates\forms\edit_internal_recipe.html:78 +#: .\cookbook\templates\forms\edit_internal_recipe.html:82 msgid "Servings Text" msgstr "Porties tekst" -#: .\cookbook\templates\forms\edit_internal_recipe.html:89 +#: .\cookbook\templates\forms\edit_internal_recipe.html:93 msgid "Select Keywords" msgstr "Selecteer etiketten" -#: .\cookbook\templates\forms\edit_internal_recipe.html:90 -#: .\cookbook\templates\url_import.html:212 +#: .\cookbook\templates\forms\edit_internal_recipe.html:94 +#: .\cookbook\templates\url_import.html:583 msgid "Add Keyword" msgstr "Voeg Etiket toe" -#: .\cookbook\templates\forms\edit_internal_recipe.html:108 +#: .\cookbook\templates\forms\edit_internal_recipe.html:112 msgid "Nutrition" msgstr "Voedingswaarde" -#: .\cookbook\templates\forms\edit_internal_recipe.html:112 -#: .\cookbook\templates\forms\edit_internal_recipe.html:162 +#: .\cookbook\templates\forms\edit_internal_recipe.html:116 +#: .\cookbook\templates\forms\edit_internal_recipe.html:166 msgid "Delete Step" msgstr "Verwijder stap" -#: .\cookbook\templates\forms\edit_internal_recipe.html:116 +#: .\cookbook\templates\forms\edit_internal_recipe.html:120 msgid "Calories" msgstr "Calorieën" -#: .\cookbook\templates\forms\edit_internal_recipe.html:119 +#: .\cookbook\templates\forms\edit_internal_recipe.html:123 msgid "Carbohydrates" msgstr "Koolhydraten" -#: .\cookbook\templates\forms\edit_internal_recipe.html:122 +#: .\cookbook\templates\forms\edit_internal_recipe.html:126 msgid "Fats" msgstr "Vetten" -#: .\cookbook\templates\forms\edit_internal_recipe.html:124 +#: .\cookbook\templates\forms\edit_internal_recipe.html:128 msgid "Proteins" msgstr "Eiwitten" -#: .\cookbook\templates\forms\edit_internal_recipe.html:146 -#: .\cookbook\templates\forms\edit_internal_recipe.html:454 +#: .\cookbook\templates\forms\edit_internal_recipe.html:150 +#: .\cookbook\templates\forms\edit_internal_recipe.html:481 msgid "Step" msgstr "Stap" -#: .\cookbook\templates\forms\edit_internal_recipe.html:167 +#: .\cookbook\templates\forms\edit_internal_recipe.html:171 msgid "Show as header" msgstr "Laat als kop zien" -#: .\cookbook\templates\forms\edit_internal_recipe.html:173 +#: .\cookbook\templates\forms\edit_internal_recipe.html:177 msgid "Hide as header" msgstr "Verbergen als kop" -#: .\cookbook\templates\forms\edit_internal_recipe.html:178 +#: .\cookbook\templates\forms\edit_internal_recipe.html:182 msgid "Move Up" msgstr "Verplaats omhoog" -#: .\cookbook\templates\forms\edit_internal_recipe.html:183 +#: .\cookbook\templates\forms\edit_internal_recipe.html:187 msgid "Move Down" msgstr "Verplaats omlaag" -#: .\cookbook\templates\forms\edit_internal_recipe.html:192 +#: .\cookbook\templates\forms\edit_internal_recipe.html:196 msgid "Step Name" msgstr "Stap naam" -#: .\cookbook\templates\forms\edit_internal_recipe.html:196 +#: .\cookbook\templates\forms\edit_internal_recipe.html:200 msgid "Step Type" msgstr "Stap type" -#: .\cookbook\templates\forms\edit_internal_recipe.html:207 +#: .\cookbook\templates\forms\edit_internal_recipe.html:212 msgid "Step time in Minutes" msgstr "Tijdsduur stap in minuten" -#: .\cookbook\templates\forms\edit_internal_recipe.html:261 -#: .\cookbook\templates\shopping_list.html:183 -msgid "Select Unit" -msgstr "Selecteer eenheid" +#: .\cookbook\templates\forms\edit_internal_recipe.html:228 +msgid "Select File" +msgstr "Selecteer bestand" -#: .\cookbook\templates\forms\edit_internal_recipe.html:262 -#: .\cookbook\templates\forms\edit_internal_recipe.html:286 -#: .\cookbook\templates\shopping_list.html:184 -#: .\cookbook\templates\shopping_list.html:206 -msgid "Create" -msgstr "Maak" - -#: .\cookbook\templates\forms\edit_internal_recipe.html:263 -#: .\cookbook\templates\forms\edit_internal_recipe.html:287 -#: .\cookbook\templates\shopping_list.html:185 -#: .\cookbook\templates\shopping_list.html:207 -#: .\cookbook\templates\shopping_list.html:237 -#: .\cookbook\templates\shopping_list.html:261 -#: .\cookbook\templates\url_import.html:124 -#: .\cookbook\templates\url_import.html:156 +#: .\cookbook\templates\forms\edit_internal_recipe.html:229 +#: .\cookbook\templates\forms\edit_internal_recipe.html:290 +#: .\cookbook\templates\forms\edit_internal_recipe.html:314 +#: .\cookbook\templates\shopping_list.html:189 +#: .\cookbook\templates\shopping_list.html:211 +#: .\cookbook\templates\shopping_list.html:241 +#: .\cookbook\templates\shopping_list.html:265 +#: .\cookbook\templates\url_import.html:495 +#: .\cookbook\templates\url_import.html:527 msgid "Select" msgstr "Selecteer" -#: .\cookbook\templates\forms\edit_internal_recipe.html:285 -#: .\cookbook\templates\shopping_list.html:205 +#: .\cookbook\templates\forms\edit_internal_recipe.html:288 +#: .\cookbook\templates\shopping_list.html:187 +msgid "Select Unit" +msgstr "Selecteer eenheid" + +#: .\cookbook\templates\forms\edit_internal_recipe.html:289 +#: .\cookbook\templates\forms\edit_internal_recipe.html:313 +#: .\cookbook\templates\shopping_list.html:188 +#: .\cookbook\templates\shopping_list.html:210 +msgid "Create" +msgstr "Maak" + +#: .\cookbook\templates\forms\edit_internal_recipe.html:312 +#: .\cookbook\templates\shopping_list.html:209 msgid "Select Food" msgstr "Selecteer ingrediënt" -#: .\cookbook\templates\forms\edit_internal_recipe.html:302 +#: .\cookbook\templates\forms\edit_internal_recipe.html:329 #: .\cookbook\templates\meal_plan.html:256 -#: .\cookbook\templates\url_import.html:171 +#: .\cookbook\templates\url_import.html:542 msgid "Note" msgstr "Notitie" -#: .\cookbook\templates\forms\edit_internal_recipe.html:319 +#: .\cookbook\templates\forms\edit_internal_recipe.html:346 msgid "Delete Ingredient" msgstr "Verwijder ingrediënt" -#: .\cookbook\templates\forms\edit_internal_recipe.html:325 +#: .\cookbook\templates\forms\edit_internal_recipe.html:352 msgid "Make Header" msgstr "Stel in als kop" -#: .\cookbook\templates\forms\edit_internal_recipe.html:331 +#: .\cookbook\templates\forms\edit_internal_recipe.html:358 msgid "Make Ingredient" msgstr "Maak ingrediënt" -#: .\cookbook\templates\forms\edit_internal_recipe.html:337 +#: .\cookbook\templates\forms\edit_internal_recipe.html:364 msgid "Disable Amount" msgstr "Hoeveelheid uitschakelen" -#: .\cookbook\templates\forms\edit_internal_recipe.html:343 +#: .\cookbook\templates\forms\edit_internal_recipe.html:370 msgid "Enable Amount" msgstr "Hoeveelheid inschakelen" -#: .\cookbook\templates\forms\edit_internal_recipe.html:348 +#: .\cookbook\templates\forms\edit_internal_recipe.html:375 msgid "Copy Template Reference" msgstr "Kopieer sjabloon referentie" -#: .\cookbook\templates\forms\edit_internal_recipe.html:374 -#: .\cookbook\templates\url_import.html:196 +#: .\cookbook\templates\forms\edit_internal_recipe.html:401 +#: .\cookbook\templates\url_import.html:297 +#: .\cookbook\templates\url_import.html:567 msgid "Instructions" msgstr "Instructies" -#: .\cookbook\templates\forms\edit_internal_recipe.html:387 -#: .\cookbook\templates\forms\edit_internal_recipe.html:418 +#: .\cookbook\templates\forms\edit_internal_recipe.html:414 +#: .\cookbook\templates\forms\edit_internal_recipe.html:445 msgid "Save & View" msgstr "Opslaan & bekijken" -#: .\cookbook\templates\forms\edit_internal_recipe.html:391 -#: .\cookbook\templates\forms\edit_internal_recipe.html:424 +#: .\cookbook\templates\forms\edit_internal_recipe.html:418 +#: .\cookbook\templates\forms\edit_internal_recipe.html:451 msgid "Add Step" msgstr "Voeg stap toe" -#: .\cookbook\templates\forms\edit_internal_recipe.html:394 -#: .\cookbook\templates\forms\edit_internal_recipe.html:428 +#: .\cookbook\templates\forms\edit_internal_recipe.html:421 +#: .\cookbook\templates\forms\edit_internal_recipe.html:455 msgid "Add Nutrition" msgstr "Voedingswaarde toevoegen" -#: .\cookbook\templates\forms\edit_internal_recipe.html:396 -#: .\cookbook\templates\forms\edit_internal_recipe.html:430 +#: .\cookbook\templates\forms\edit_internal_recipe.html:423 +#: .\cookbook\templates\forms\edit_internal_recipe.html:457 msgid "Remove Nutrition" msgstr "Voedingswaarde verwijderen" -#: .\cookbook\templates\forms\edit_internal_recipe.html:398 -#: .\cookbook\templates\forms\edit_internal_recipe.html:433 +#: .\cookbook\templates\forms\edit_internal_recipe.html:425 +#: .\cookbook\templates\forms\edit_internal_recipe.html:460 msgid "View Recipe" msgstr "Bekijk recept" -#: .\cookbook\templates\forms\edit_internal_recipe.html:400 -#: .\cookbook\templates\forms\edit_internal_recipe.html:435 +#: .\cookbook\templates\forms\edit_internal_recipe.html:427 +#: .\cookbook\templates\forms\edit_internal_recipe.html:462 msgid "Delete Recipe" msgstr "Verwijder recept" -#: .\cookbook\templates\forms\edit_internal_recipe.html:441 +#: .\cookbook\templates\forms\edit_internal_recipe.html:468 msgid "Steps" msgstr "Stappen" @@ -859,15 +1080,15 @@ msgid "" " " msgstr "" "\n" -" Het volgende formulier kan worden gebruikt wanneer per ongeluk twee (" -"of meer) eenheden of ingrediënten zijn gemaakt die eigenlijk hetzelfde zijn." -"\n" +" Het volgende formulier kan worden gebruikt wanneer per ongeluk twee " +"(of meer) eenheden of ingrediënten zijn gemaakt die eigenlijk hetzelfde " +"zijn.\n" " Het voegt de twee eenheden of ingrediënten samen en past alle bijbehorende " "recepten aan.\n" " " #: .\cookbook\templates\forms\ingredients.html:24 -#: .\cookbook\templates\stats.html:26 +#: .\cookbook\templates\space.html:35 .\cookbook\templates\stats.html:26 msgid "Units" msgstr "Eenheden" @@ -889,10 +1110,6 @@ msgstr "Weet je zeker dat je deze ingrediënten wil samenvoegen?" msgid "Are you sure you want to delete the %(title)s: %(object)s " msgstr "Weet je zeker dat je %(title)s: %(object)s wil verwijderen " -#: .\cookbook\templates\generic\delete_template.html:21 -msgid "Confirm" -msgstr "Bevestigen" - #: .\cookbook\templates\generic\edit_template.html:30 msgid "View" msgstr "Bekijken" @@ -914,12 +1131,6 @@ msgstr "Filtreren" msgid "Import all" msgstr "Alles importeren" -#: .\cookbook\templates\generic\new_template.html:6 -#: .\cookbook\templates\generic\new_template.html:14 -#: .\cookbook\templates\meal_plan.html:323 -msgid "New" -msgstr "Nieuw" - #: .\cookbook\templates\generic\table_template.html:76 #: .\cookbook\templates\recipes_table.html:121 msgid "previous" @@ -964,7 +1175,7 @@ msgstr "Sluiten" #: .\cookbook\templates\include\recipe_open_modal.html:7 #: .\cookbook\templates\meal_plan.html:247 .\cookbook\views\delete.py:28 -#: .\cookbook\views\edit.py:264 .\cookbook\views\new.py:40 +#: .\cookbook\views\edit.py:273 .\cookbook\views\new.py:52 msgid "Recipe" msgstr "recept" @@ -1005,10 +1216,6 @@ msgstr "Zoek recept ..." msgid "New Recipe" msgstr "Nieuw recept" -#: .\cookbook\templates\index.html:47 -msgid "Website Import" -msgstr "Importeer website" - #: .\cookbook\templates\index.html:53 msgid "Advanced Search" msgstr "Geavanceerde zoekopdracht" @@ -1022,7 +1229,7 @@ msgid "Last viewed" msgstr "Laatst bekeken" #: .\cookbook\templates\index.html:87 .\cookbook\templates\meal_plan.html:178 -#: .\cookbook\templates\stats.html:22 +#: .\cookbook\templates\space.html:29 .\cookbook\templates\stats.html:22 msgid "Recipes" msgstr "Recepten" @@ -1190,7 +1397,7 @@ msgid "New Entry" msgstr "Nieuw item" #: .\cookbook\templates\meal_plan.html:113 -#: .\cookbook\templates\shopping_list.html:52 +#: .\cookbook\templates\shopping_list.html:56 msgid "Search Recipe" msgstr "Zoek recept" @@ -1222,7 +1429,7 @@ msgstr "Maak alleen een notitie" #: .\cookbook\templates\meal_plan.html:168 #: .\cookbook\templates\shopping_list.html:7 #: .\cookbook\templates\shopping_list.html:29 -#: .\cookbook\templates\shopping_list.html:705 +#: .\cookbook\templates\shopping_list.html:714 msgid "Shopping List" msgstr "Boodschappenlijstje" @@ -1274,7 +1481,7 @@ msgstr "Gemaakt door" #: .\cookbook\templates\meal_plan.html:270 #: .\cookbook\templates\meal_plan_entry.html:20 -#: .\cookbook\templates\shopping_list.html:250 +#: .\cookbook\templates\shopping_list.html:254 msgid "Shared with" msgstr "Gedeeld met" @@ -1372,7 +1579,6 @@ msgstr "Je hebt geen groepen en kan daarom deze applicatie niet gebruiken." #: .\cookbook\templates\no_groups_info.html:18 #: .\cookbook\templates\no_perm_info.html:15 -#: .\cookbook\templates\no_space_info.html:15 msgid "Please contact your administrator." msgstr "Neem contact op met je beheerder." @@ -1389,14 +1595,55 @@ msgstr "" "Je beschikt niet over de juiste rechten om deze pagina te bekijken of deze " "actie uit te voeren." -#: .\cookbook\templates\no_space_info.html:5 -#: .\cookbook\templates\no_space_info.html:12 +#: .\cookbook\templates\no_space_info.html:6 +#: .\cookbook\templates\no_space_info.html:13 msgid "No Space" msgstr "Geen ruimte" -#: .\cookbook\templates\no_space_info.html:15 -msgid "You are not a member of any space." -msgstr "Je bent geen lid van een ruimte." +#: .\cookbook\templates\no_space_info.html:17 +msgid "" +"Recipes, foods, shopping lists and more are organized in spaces of one or " +"more people." +msgstr "" +"Recepten, ingrediënten, boodschappenlijstjes en meer zijn georganiseerd in " +"ruimtes van één of meer personen." + +#: .\cookbook\templates\no_space_info.html:18 +msgid "" +"You can either be invited into an existing space or create your own one." +msgstr "" +"Je kan uitgenodigd worden in een bestaande ruimte of je eigen ruimte " +"aanmaken." + +#: .\cookbook\templates\no_space_info.html:31 +#: .\cookbook\templates\no_space_info.html:40 +msgid "Join Space" +msgstr "Sluit aan bij ruimte" + +#: .\cookbook\templates\no_space_info.html:34 +msgid "Join an existing space." +msgstr "Sluit aan bij bestaande ruimte." + +#: .\cookbook\templates\no_space_info.html:35 +msgid "" +"To join an existing space either enter your invite token or click on the " +"invite link the space owner send you." +msgstr "" +"Om aan te sluiten bij een bestaande ruimte moet je je uitnodigingstoken " +"invoeren of op de uitnodingslink klikken die je ontvangen hebt." + +#: .\cookbook\templates\no_space_info.html:48 +#: .\cookbook\templates\no_space_info.html:56 +msgid "Create Space" +msgstr "Maak ruimte aan" + +#: .\cookbook\templates\no_space_info.html:51 +msgid "Create your own recipe space." +msgstr "Maak je eigen recepten ruimte." + +#: .\cookbook\templates\no_space_info.html:52 +msgid "Start your own recipe space and invite other users to it." +msgstr "Start je eigen recepten ruimte en nodig andere gebruikers uit." #: .\cookbook\templates\offline.html:6 msgid "Offline" @@ -1414,28 +1661,29 @@ msgstr "" "De recepten hieronder zijn beschikbaar om offline te bekijken omdat je ze " "recent bekeken hebt. Houd er rekening mee dat de data mogelijk verouderd is." -#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\stats.html:47 +#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\space.html:56 +#: .\cookbook\templates\stats.html:47 msgid "Comments" msgstr "Opmerkingen" #: .\cookbook\templates\recipe_view.html:44 .\cookbook\views\delete.py:118 -#: .\cookbook\views\edit.py:170 +#: .\cookbook\views\edit.py:179 msgid "Comment" msgstr "Opmerking" #: .\cookbook\templates\recipes_table.html:19 #: .\cookbook\templates\recipes_table.html:23 -#: .\cookbook\templates\url_import.html:69 +#: .\cookbook\templates\url_import.html:440 msgid "Recipe Image" msgstr "Recept afbeelding" #: .\cookbook\templates\recipes_table.html:51 -#: .\cookbook\templates\url_import.html:74 +#: .\cookbook\templates\url_import.html:445 msgid "Preparation time ca." msgstr "Geschatte voorbereidingstijd" #: .\cookbook\templates\recipes_table.html:57 -#: .\cookbook\templates\url_import.html:79 +#: .\cookbook\templates\url_import.html:450 msgid "Waiting time ca." msgstr "Geschatte wachttijd" @@ -1451,27 +1699,55 @@ msgstr "Bereiding loggen" msgid "Recipe Home" msgstr "Recept thuis" -#: .\cookbook\templates\settings.html:22 +#: .\cookbook\templates\settings.html:23 msgid "Account" msgstr "Account" -#: .\cookbook\templates\settings.html:38 -msgid "Link social account" -msgstr "Koppel account socials" +#: .\cookbook\templates\settings.html:27 +msgid "Preferences" +msgstr "Voorkeuren" -#: .\cookbook\templates\settings.html:42 +#: .\cookbook\templates\settings.html:31 +msgid "API-Settings" +msgstr "API-instellingen" + +#: .\cookbook\templates\settings.html:39 +msgid "Name Settings" +msgstr "Naam instellingen" + +#: .\cookbook\templates\settings.html:47 +msgid "Password Settings" +msgstr "Wachtwoord instellingen" + +#: .\cookbook\templates\settings.html:55 +msgid "Email Settings" +msgstr "E-mail instellingen" + +#: .\cookbook\templates\settings.html:57 +msgid "Manage Email Settings" +msgstr "Beheer e-mail instellingen" + +#: .\cookbook\templates\settings.html:61 +msgid "Social" +msgstr "Socials" + +#: .\cookbook\templates\settings.html:63 +msgid "Manage Social Accounts" +msgstr "Beheer sociale media accounts" + +#: .\cookbook\templates\settings.html:75 msgid "Language" msgstr "Taal" -#: .\cookbook\templates\settings.html:67 +#: .\cookbook\templates\settings.html:105 msgid "Style" msgstr "Stijl" -#: .\cookbook\templates\settings.html:79 +#: .\cookbook\templates\settings.html:125 msgid "API Token" msgstr "API Token" -#: .\cookbook\templates\settings.html:80 +#: .\cookbook\templates\settings.html:126 msgid "" "You can use both basic authentication and token based authentication to " "access the REST API." @@ -1479,7 +1755,7 @@ msgstr "" "Je kan zowel basale verificatie als verificatie op basis van tokens " "gebruiken om toegang tot de REST API te krijgen." -#: .\cookbook\templates\settings.html:92 +#: .\cookbook\templates\settings.html:143 msgid "" "Use the token as an Authorization header prefixed by the word token as shown " "in the following examples:" @@ -1487,7 +1763,7 @@ msgstr "" "Gebruik de token als een 'Authorization header'voorafgegaan door het woord " "token zoals in de volgende voorbeelden:" -#: .\cookbook\templates\settings.html:94 +#: .\cookbook\templates\settings.html:145 msgid "or" msgstr "of" @@ -1509,58 +1785,55 @@ msgstr "" msgid "Create Superuser account" msgstr "Maak Superuser acount" -#: .\cookbook\templates\shopping_list.html:75 +#: .\cookbook\templates\shopping_list.html:79 msgid "Shopping Recipes" msgstr "Boodschappen recepten" -#: .\cookbook\templates\shopping_list.html:79 +#: .\cookbook\templates\shopping_list.html:83 msgid "No recipes selected" msgstr "Geen recepten geselecteerd" -#: .\cookbook\templates\shopping_list.html:146 +#: .\cookbook\templates\shopping_list.html:150 msgid "Entry Mode" msgstr "Invoermodus" -#: .\cookbook\templates\shopping_list.html:154 +#: .\cookbook\templates\shopping_list.html:158 msgid "Add Entry" msgstr "Zet op lijst" -#: .\cookbook\templates\shopping_list.html:170 +#: .\cookbook\templates\shopping_list.html:174 msgid "Amount" msgstr "Hoeveelheid" -#: .\cookbook\templates\shopping_list.html:226 +#: .\cookbook\templates\shopping_list.html:230 +#: .\cookbook\templates\supermarket.html:7 msgid "Supermarket" msgstr "Supermarkt" -#: .\cookbook\templates\shopping_list.html:236 +#: .\cookbook\templates\shopping_list.html:240 msgid "Select Supermarket" msgstr "Selecteer supermarkt" -#: .\cookbook\templates\shopping_list.html:260 +#: .\cookbook\templates\shopping_list.html:264 msgid "Select User" msgstr "Selecteer gebruiker" -#: .\cookbook\templates\shopping_list.html:279 +#: .\cookbook\templates\shopping_list.html:283 msgid "Finished" msgstr "Afgerond" -#: .\cookbook\templates\shopping_list.html:292 +#: .\cookbook\templates\shopping_list.html:296 msgid "You are offline, shopping list might not syncronize." msgstr "Je bent offline, boodschappenlijst synchroniseert mogelijk niet." -#: .\cookbook\templates\shopping_list.html:357 +#: .\cookbook\templates\shopping_list.html:361 msgid "Copy/Export" msgstr "Kopieër/exporteer" -#: .\cookbook\templates\shopping_list.html:361 +#: .\cookbook\templates\shopping_list.html:365 msgid "List Prefix" msgstr "Lijst voorvoegsel" -#: .\cookbook\templates\shopping_list.html:708 -msgid "There was an error creating a resource!" -msgstr "Er is een fout opgetreden bij het maken van een hulpbron!" - #: .\cookbook\templates\socialaccount\connections.html:4 #: .\cookbook\templates\socialaccount\connections.html:7 msgid "Account Connections" @@ -1574,10 +1847,6 @@ msgstr "" "Je kan inloggen met een account van een van de onderstaande derde \n" "partijen:" -#: .\cookbook\templates\socialaccount\connections.html:36 -msgid "Remove" -msgstr "Verwijder" - #: .\cookbook\templates\socialaccount\connections.html:44 msgid "" "You currently have no social network accounts connected to this account." @@ -1588,38 +1857,87 @@ msgstr "" msgid "Add a 3rd Party Account" msgstr "Voeg account van een 3e partij toe" -#: .\cookbook\templates\stats.html:4 -msgid "Stats" -msgstr "Statistieken" +#: .\cookbook\templates\space.html:18 +msgid "Manage Subscription" +msgstr "Beheer abonnementen" -#: .\cookbook\templates\stats.html:19 +#: .\cookbook\templates\space.html:26 .\cookbook\templates\stats.html:19 msgid "Number of objects" msgstr "Aantal objecten" -#: .\cookbook\templates\stats.html:30 +#: .\cookbook\templates\space.html:39 .\cookbook\templates\stats.html:30 msgid "Recipe Imports" msgstr "Geïmporteerde recepten" -#: .\cookbook\templates\stats.html:38 +#: .\cookbook\templates\space.html:47 .\cookbook\templates\stats.html:38 msgid "Objects stats" msgstr "Object statistieken" -#: .\cookbook\templates\stats.html:41 +#: .\cookbook\templates\space.html:50 .\cookbook\templates\stats.html:41 msgid "Recipes without Keywords" msgstr "Recepten zonder etiketten" -#: .\cookbook\templates\stats.html:43 +#: .\cookbook\templates\space.html:52 .\cookbook\templates\stats.html:43 msgid "External Recipes" msgstr "Externe recepten" -#: .\cookbook\templates\stats.html:45 +#: .\cookbook\templates\space.html:54 .\cookbook\templates\stats.html:45 msgid "Internal Recipes" msgstr "Interne recepten" -#: .\cookbook\templates\system.html:21 .\cookbook\views\lists.py:115 +#: .\cookbook\templates\space.html:67 +msgid "Members" +msgstr "Leden" + +#: .\cookbook\templates\space.html:71 +msgid "Invite User" +msgstr "Nodig gebruiker uit" + +#: .\cookbook\templates\space.html:82 +msgid "User" +msgstr "Gebruiker" + +#: .\cookbook\templates\space.html:83 +msgid "Groups" +msgstr "Groepen" + +#: .\cookbook\templates\space.html:99 +msgid "admin" +msgstr "Beheerder" + +#: .\cookbook\templates\space.html:100 +msgid "user" +msgstr "gebruiker" + +#: .\cookbook\templates\space.html:101 +msgid "guest" +msgstr "gast" + +#: .\cookbook\templates\space.html:102 +msgid "remove" +msgstr "verwijder" + +#: .\cookbook\templates\space.html:106 +msgid "Update" +msgstr "Update" + +#: .\cookbook\templates\space.html:110 +msgid "You cannot edit yourself." +msgstr "Je kan jezelf niet bewerken." + +#: .\cookbook\templates\space.html:117 +msgid "There are no members in your space yet!" +msgstr "Er zitten nog geen leden in jouw ruimte!" + +#: .\cookbook\templates\space.html:124 .\cookbook\templates\system.html:21 +#: .\cookbook\views\lists.py:115 msgid "Invite Links" msgstr "Uitnodigingslink" +#: .\cookbook\templates\stats.html:4 +msgid "Stats" +msgstr "Statistieken" + #: .\cookbook\templates\system.html:22 msgid "Show Links" msgstr "Toon links" @@ -1748,45 +2066,154 @@ msgstr "" " alleen werken met Postgres databases.\n" " " -#: .\cookbook\templates\url_import.html:5 +#: .\cookbook\templates\url_import.html:6 msgid "URL Import" msgstr "Importeer URL" -#: .\cookbook\templates\url_import.html:23 +#: .\cookbook\templates\url_import.html:31 +msgid "Drag me to your bookmarks to import recipes from anywhere" +msgstr "" +"Sleep mij naar je bladwijzers om overal recepten vandaan te kunnen importeren" + +#: .\cookbook\templates\url_import.html:32 +msgid "Bookmark Me!" +msgstr "Sla mij op als bladwijzer!" + +#: .\cookbook\templates\url_import.html:61 msgid "Enter website URL" msgstr "Vul website URL in" -#: .\cookbook\templates\url_import.html:36 -msgid "Enter json directly" -msgstr "Geef json direct op" +#: .\cookbook\templates\url_import.html:97 +msgid "Select recipe files to import or drop them here..." +msgstr "Selecteer receptbestanden om te importeren of sleep ze hier naar toe..." -#: .\cookbook\templates\url_import.html:57 +#: .\cookbook\templates\url_import.html:118 +msgid "Paste json or html source here to load recipe." +msgstr "Plak json of html bron om recept te laden." + +#: .\cookbook\templates\url_import.html:146 +msgid "Preview Recipe Data" +msgstr "Bekijk recept gegevens" + +#: .\cookbook\templates\url_import.html:147 +msgid "Drag recipe attributes from the right into the appropriate box below." +msgstr "" + +#: .\cookbook\templates\url_import.html:156 +#: .\cookbook\templates\url_import.html:173 +#: .\cookbook\templates\url_import.html:190 +#: .\cookbook\templates\url_import.html:209 +#: .\cookbook\templates\url_import.html:227 +#: .\cookbook\templates\url_import.html:242 +#: .\cookbook\templates\url_import.html:257 +#: .\cookbook\templates\url_import.html:273 +#: .\cookbook\templates\url_import.html:300 +#: .\cookbook\templates\url_import.html:351 +msgid "Clear Contents" +msgstr "" + +#: .\cookbook\templates\url_import.html:158 +msgid "Text dragged here will be appended to the name." +msgstr "" + +#: .\cookbook\templates\url_import.html:175 +msgid "Text dragged here will be appended to the description." +msgstr "" + +#: .\cookbook\templates\url_import.html:192 +msgid "Keywords dragged here will be appended to current list" +msgstr "" + +#: .\cookbook\templates\url_import.html:207 +msgid "Image" +msgstr "" + +#: .\cookbook\templates\url_import.html:239 +#, fuzzy +#| msgid "Preparation Time" +msgid "Prep Time" +msgstr "Bereidingstijd" + +#: .\cookbook\templates\url_import.html:254 +#, fuzzy +#| msgid "Time" +msgid "Cook Time" +msgstr "Tijd" + +#: .\cookbook\templates\url_import.html:275 +msgid "Ingredients dragged here will be appended to current list." +msgstr "" + +#: .\cookbook\templates\url_import.html:302 +msgid "" +"Recipe instructions dragged here will be appended to current instructions." +msgstr "" + +#: .\cookbook\templates\url_import.html:325 +#, fuzzy +#| msgid "Discovered Recipes" +msgid "Discovered Attributes" +msgstr "Ontdekte recepten" + +#: .\cookbook\templates\url_import.html:327 +msgid "" +"Drag recipe attributes from below into the appropriate box on the left. " +"Click any node to display its full properties." +msgstr "" + +#: .\cookbook\templates\url_import.html:344 +#, fuzzy +#| msgid "Show as header" +msgid "Show Blank Field" +msgstr "Laat als kop zien" + +#: .\cookbook\templates\url_import.html:349 +msgid "Blank Field" +msgstr "" + +#: .\cookbook\templates\url_import.html:353 +msgid "Items dragged to Blank Field will be appended." +msgstr "" + +#: .\cookbook\templates\url_import.html:400 +#, fuzzy +#| msgid "Delete Step" +msgid "Delete Text" +msgstr "Verwijder stap" + +#: .\cookbook\templates\url_import.html:413 +#, fuzzy +#| msgid "Delete Recipe" +msgid "Delete image" +msgstr "Verwijder recept" + +#: .\cookbook\templates\url_import.html:429 msgid "Recipe Name" msgstr "Naam Recept" -#: .\cookbook\templates\url_import.html:62 +#: .\cookbook\templates\url_import.html:433 msgid "Recipe Description" msgstr "Beschrijving recept" -#: .\cookbook\templates\url_import.html:123 -#: .\cookbook\templates\url_import.html:155 -#: .\cookbook\templates\url_import.html:211 +#: .\cookbook\templates\url_import.html:494 +#: .\cookbook\templates\url_import.html:526 +#: .\cookbook\templates\url_import.html:582 msgid "Select one" msgstr "Selecteer één" -#: .\cookbook\templates\url_import.html:225 +#: .\cookbook\templates\url_import.html:596 msgid "All Keywords" msgstr "Alle etiketten" -#: .\cookbook\templates\url_import.html:228 +#: .\cookbook\templates\url_import.html:599 msgid "Import all keywords, not only the ones already existing." msgstr "Importeer alle etiketten, niet alleen de bestaande." -#: .\cookbook\templates\url_import.html:255 +#: .\cookbook\templates\url_import.html:626 msgid "Information" msgstr "Informatie" -#: .\cookbook\templates\url_import.html:257 +#: .\cookbook\templates\url_import.html:628 msgid "" " Only websites containing ld+json or microdata information can currently\n" " be imported. Most big recipe pages " @@ -1804,49 +2231,79 @@ msgstr "" "vrij om een voorbeeld te posten in \n" " de GitHub issues." -#: .\cookbook\templates\url_import.html:265 +#: .\cookbook\templates\url_import.html:636 msgid "Google ld+json Info" msgstr "Google Id+json Info" -#: .\cookbook\templates\url_import.html:268 +#: .\cookbook\templates\url_import.html:639 msgid "GitHub Issues" msgstr "GitHub issues" -#: .\cookbook\templates\url_import.html:270 +#: .\cookbook\templates\url_import.html:641 msgid "Recipe Markup Specification" msgstr "Recept opmaak specificatie" -#: .\cookbook\views\api.py:71 +#: .\cookbook\views\api.py:77 msgid "Parameter updated_at incorrectly formatted" msgstr "Parameter updatet_at is onjuist geformateerd" -#: .\cookbook\views\api.py:455 .\cookbook\views\views.py:226 +#: .\cookbook\views\api.py:553 .\cookbook\views\views.py:295 msgid "This feature is not available in the demo version!" msgstr "Deze optie is niet beschikbaar in de demo versie!" -#: .\cookbook\views\api.py:478 +#: .\cookbook\views\api.py:576 msgid "Sync successful!" msgstr "Synchronisatie succesvol!" -#: .\cookbook\views\api.py:483 +#: .\cookbook\views\api.py:581 msgid "Error synchronizing with Storage" msgstr "Er is een fout opgetreden bij het synchroniseren met Opslag" -#: .\cookbook\views\api.py:556 .\cookbook\views\api.py:576 +#: .\cookbook\views\api.py:649 +msgid "Nothing to do." +msgstr "" + +#: .\cookbook\views\api.py:664 +msgid "The requested site provided malformed data and cannot be read." +msgstr "" +"De opgevraagde site heeft misvormde data verstrekt en kan niet gelezen " +"worden." + +#: .\cookbook\views\api.py:671 msgid "The requested page could not be found." msgstr "De opgevraagde pagina kon niet gevonden worden." -#: .\cookbook\views\api.py:585 +#: .\cookbook\views\api.py:680 msgid "" -"The requested page refused to provide any information (Status Code 403)." +"The requested site does not provide any recognized data format to import the " +"recipe from." msgstr "" -"De opgevraagde pagina weigert informatie te verstrekken (Statuscode 403)." +"De opgevraagde site biedt geen bekend gegevensformaat aan om het recept van " +"te importeren." -#: .\cookbook\views\api.py:611 -msgid "Could not parse correctly..." -msgstr "Kon niet goed verwerken.." +#: .\cookbook\views\api.py:694 +#, fuzzy +#| msgid "The requested page could not be found." +msgid "No useable data could be found." +msgstr "De opgevraagde pagina kon niet gevonden worden." -#: .\cookbook\views\data.py:94 +#: .\cookbook\views\api.py:710 +msgid "I couldn't find anything to do." +msgstr "" + +#: .\cookbook\views\data.py:30 .\cookbook\views\data.py:121 +#: .\cookbook\views\edit.py:50 .\cookbook\views\import_export.py:67 +#: .\cookbook\views\new.py:32 +msgid "You have reached the maximum number of recipes for your space." +msgstr "" + +#: .\cookbook\views\data.py:34 .\cookbook\views\data.py:125 +#: .\cookbook\views\edit.py:54 .\cookbook\views\import_export.py:71 +#: .\cookbook\views\new.py:36 +msgid "You have more users than allowed in your space." +msgstr "" + +#: .\cookbook\views\data.py:103 #, python-format msgid "Batch edit done. %(count)d recipe was updated." msgid_plural "Batch edit done. %(count)d Recipes where updated." @@ -1858,7 +2315,7 @@ msgid "Monitor" msgstr "Bewaker" #: .\cookbook\views\delete.py:96 .\cookbook\views\lists.py:102 -#: .\cookbook\views\new.py:86 +#: .\cookbook\views\new.py:98 msgid "Storage Backend" msgstr "Opslag backend" @@ -1869,8 +2326,8 @@ msgstr "" "Dit Opslag backend kon niet verwijderd worden omdat het gebruikt wordt in " "tenminste een Bewaker." -#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:204 -#: .\cookbook\views\new.py:144 +#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:213 +#: .\cookbook\views\new.py:156 msgid "Recipe Book" msgstr "Kookboek" @@ -1878,55 +2335,55 @@ msgstr "Kookboek" msgid "Bookmarks" msgstr "Bladwijzers" -#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:214 +#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:252 msgid "Invite Link" msgstr "Uitnodigingslink" -#: .\cookbook\views\edit.py:110 +#: .\cookbook\views\edit.py:119 msgid "Food" msgstr "Ingrediënt" -#: .\cookbook\views\edit.py:119 +#: .\cookbook\views\edit.py:128 msgid "You cannot edit this storage!" msgstr "Je kan deze opslag niet bewerken!" -#: .\cookbook\views\edit.py:139 +#: .\cookbook\views\edit.py:148 msgid "Storage saved!" msgstr "Opslag opgeslagen!" -#: .\cookbook\views\edit.py:145 +#: .\cookbook\views\edit.py:154 msgid "There was an error updating this storage backend!" msgstr "Er is een fout opgetreden bij het updaten van deze opslag backend!" -#: .\cookbook\views\edit.py:156 +#: .\cookbook\views\edit.py:165 msgid "Storage" msgstr "Opslag" -#: .\cookbook\views\edit.py:252 +#: .\cookbook\views\edit.py:261 msgid "Changes saved!" msgstr "Wijzigingen opgeslagen!" -#: .\cookbook\views\edit.py:256 +#: .\cookbook\views\edit.py:265 msgid "Error saving changes!" msgstr "Fout bij het opslaan van de wijzigingen!" -#: .\cookbook\views\edit.py:289 +#: .\cookbook\views\edit.py:299 msgid "Units merged!" msgstr "Eenheden samengevoegd!" -#: .\cookbook\views\edit.py:291 .\cookbook\views\edit.py:307 +#: .\cookbook\views\edit.py:301 .\cookbook\views\edit.py:317 msgid "Cannot merge with the same object!" msgstr "Kan niet met hetzelfde object samenvoegen!" -#: .\cookbook\views\edit.py:305 +#: .\cookbook\views\edit.py:315 msgid "Foods merged!" msgstr "Ingrediënten samengevoegd!" -#: .\cookbook\views\import_export.py:73 +#: .\cookbook\views\import_export.py:93 msgid "Importing is not implemented for this provider" msgstr "Importeren is voor deze provider niet geïmplementeerd" -#: .\cookbook\views\import_export.py:92 +#: .\cookbook\views\import_export.py:115 msgid "Exporting is not implemented for this provider" msgstr "Exporteren is voor deze provider niet geïmplementeerd" @@ -1942,23 +2399,77 @@ msgstr "Ontdekken" msgid "Shopping Lists" msgstr "Boodschappenlijst" -#: .\cookbook\views\new.py:111 +#: .\cookbook\views\new.py:123 msgid "Imported new recipe!" msgstr "Nieuw recept geïmporteerd!" -#: .\cookbook\views\new.py:114 +#: .\cookbook\views\new.py:126 msgid "There was an error importing this recipe!" msgstr "Er is een fout opgetreden bij het importeren van dit recept!" -#: .\cookbook\views\views.py:123 +#: .\cookbook\views\new.py:226 +msgid "Hello" +msgstr "" + +#: .\cookbook\views\new.py:226 +msgid "You have been invited by " +msgstr "" + +#: .\cookbook\views\new.py:227 +msgid " to join their Tandoor Recipes space " +msgstr "" + +#: .\cookbook\views\new.py:228 +msgid "Click the following link to activate your account: " +msgstr "" + +#: .\cookbook\views\new.py:229 +msgid "" +"If the link does not work use the following code to manually join the space: " +msgstr "" + +#: .\cookbook\views\new.py:230 +msgid "The invitation is valid until " +msgstr "" + +#: .\cookbook\views\new.py:231 +msgid "" +"Tandoor Recipes is an Open Source recipe manager. Check it out on GitHub " +msgstr "" + +#: .\cookbook\views\new.py:234 +msgid "Tandoor Recipes Invite" +msgstr "" + +#: .\cookbook\views\new.py:241 +msgid "Invite link successfully send to user." +msgstr "" + +#: .\cookbook\views\new.py:244 +msgid "" +"You have send to many emails, please share the link manually or wait a few " +"hours." +msgstr "" + +#: .\cookbook\views\new.py:246 +msgid "Email to user could not be send, please share link manually." +msgstr "" + +#: .\cookbook\views\views.py:125 +msgid "" +"You have successfully created your own recipe space. Start by adding some " +"recipes or invite other people to join you." +msgstr "" + +#: .\cookbook\views\views.py:173 msgid "You do not have the required permissions to perform this action!" msgstr "Je beschikt niet over de juiste rechten om deze actie uit te voeren!" -#: .\cookbook\views\views.py:134 +#: .\cookbook\views\views.py:184 msgid "Comment saved!" msgstr "Opmerking opgeslagen!" -#: .\cookbook\views\views.py:326 +#: .\cookbook\views\views.py:396 msgid "" "The setup page can only be used to create the first user! If you have " "forgotten your superuser credentials please consult the django documentation " @@ -1969,22 +2480,67 @@ msgstr "" "documentatie raad moeten plegen voor een methode om je wachtwoord te " "resetten." -#: .\cookbook\views\views.py:333 .\cookbook\views\views.py:378 +#: .\cookbook\views\views.py:403 msgid "Passwords dont match!" msgstr "Wachtwoorden komen niet overeen!" -#: .\cookbook\views\views.py:349 .\cookbook\views\views.py:385 +#: .\cookbook\views\views.py:419 msgid "User has been created, please login!" msgstr "Gebruiker is gecreëerd, Log in alstublieft!" -#: .\cookbook\views\views.py:365 +#: .\cookbook\views\views.py:435 msgid "Malformed Invite Link supplied!" msgstr "Onjuiste uitnodigingslink opgegeven!" -#: .\cookbook\views\views.py:405 +#: .\cookbook\views\views.py:441 +#, fuzzy +#| msgid "You are not logged in and therefore cannot view this page!" +msgid "You are already member of a space and therefore cannot join this one." +msgstr "Je bent niet ingelogd en kan deze pagina daarom niet bekijken!" + +#: .\cookbook\views\views.py:452 +msgid "Successfully joined space." +msgstr "" + +#: .\cookbook\views\views.py:458 msgid "Invite Link not valid or already used!" msgstr "De uitnodigingslink is niet valide of al gebruikt!" +#~ msgid "" +#~ "A username is not required, if left blank the new user can choose one." +#~ msgstr "" +#~ "Een gebruikersnaam is niet verplicht. Als het veld leeg is kan de " +#~ "gebruiker er een kiezen." + +#~ msgid "Imported from" +#~ msgstr "Geïmporteerd van" + +#~ msgid "Link" +#~ msgstr "Link" + +#~ msgid "Logout" +#~ msgstr "Uitloggen" + +#~ msgid "Website Import" +#~ msgstr "Importeer website" + +#~ msgid "You are not a member of any space." +#~ msgstr "Je bent geen lid van een ruimte." + +#~ msgid "There was an error creating a resource!" +#~ msgstr "Er is een fout opgetreden bij het maken van een hulpbron!" + +#~ msgid "Enter json directly" +#~ msgstr "Geef json direct op" + +#~ msgid "" +#~ "The requested page refused to provide any information (Status Code 403)." +#~ msgstr "" +#~ "De opgevraagde pagina weigert informatie te verstrekken (Statuscode 403)." + +#~ msgid "Could not parse correctly..." +#~ msgstr "Kon niet goed verwerken.." + #~ msgid "Number of servings" #~ msgstr "Porties" @@ -2006,6 +2562,3 @@ msgstr "De uitnodigingslink is niet valide of al gebruikt!" #~ msgid "This recipe is already linked to the book!" #~ msgstr "Dit recept is al aan het boek gekoppeld!" - -#~ msgid "Bookmark saved!" -#~ msgstr "Bladwijzer opgeslagen!" diff --git a/cookbook/locale/pt/LC_MESSAGES/django.po b/cookbook/locale/pt/LC_MESSAGES/django.po index d796cbf7..7c50f46e 100644 --- a/cookbook/locale/pt/LC_MESSAGES/django.po +++ b/cookbook/locale/pt/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-04-11 15:09+0200\n" +"POT-Creation-Date: 2021-06-12 20:30+0200\n" "PO-Revision-Date: 2020-06-02 19:28+0000\n" "Last-Translator: João Cunha , 2020\n" "Language-Team: Portuguese (https://www.transifex.com/django-recipes/" @@ -23,48 +23,49 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: .\cookbook\filters.py:23 .\cookbook\templates\base.html:91 -#: .\cookbook\templates\forms\edit_internal_recipe.html:219 +#: .\cookbook\filters.py:23 .\cookbook\templates\base.html:98 +#: .\cookbook\templates\forms\edit_internal_recipe.html:246 #: .\cookbook\templates\forms\ingredients.html:34 -#: .\cookbook\templates\stats.html:28 .\cookbook\views\lists.py:67 +#: .\cookbook\templates\space.html:37 .\cookbook\templates\stats.html:28 +#: .\cookbook\templates\url_import.html:270 .\cookbook\views\lists.py:67 msgid "Ingredients" msgstr "Ingredientes" -#: .\cookbook\forms.py:45 +#: .\cookbook\forms.py:49 msgid "" "Color of the top navigation bar. Not all colors work with all themes, just " "try them out!" msgstr "Cor da barra de navegação." -#: .\cookbook\forms.py:46 +#: .\cookbook\forms.py:51 msgid "Default Unit to be used when inserting a new ingredient into a recipe." msgstr "Unidade defeito a ser usada quando um novo ingrediente for inserido." -#: .\cookbook\forms.py:47 +#: .\cookbook\forms.py:53 msgid "" "Enables support for fractions in ingredient amounts (e.g. convert decimals " "to fractions automatically)" msgstr "" -#: .\cookbook\forms.py:48 +#: .\cookbook\forms.py:56 msgid "" "Users with whom newly created meal plan/shopping list entries should be " "shared by default." msgstr "" -#: .\cookbook\forms.py:49 +#: .\cookbook\forms.py:58 msgid "Show recently viewed recipes on search page." msgstr "Mostrar receitas recentes na página de pesquisa." -#: .\cookbook\forms.py:50 +#: .\cookbook\forms.py:59 msgid "Number of decimals to round ingredients." msgstr "Número de casas decimais para arredondamentos." -#: .\cookbook\forms.py:51 +#: .\cookbook\forms.py:60 msgid "If you want to be able to create and see comments underneath recipes." msgstr "" -#: .\cookbook\forms.py:53 +#: .\cookbook\forms.py:62 msgid "" "Setting to 0 will disable auto sync. When viewing a shopping list the list " "is updated every set seconds to sync changes someone else might have made. " @@ -72,11 +73,11 @@ msgid "" "mobile data. If lower than instance limit it is reset when saving." msgstr "" -#: .\cookbook\forms.py:56 +#: .\cookbook\forms.py:65 msgid "Makes the navbar stick to the top of the page." msgstr "" -#: .\cookbook\forms.py:72 +#: .\cookbook\forms.py:81 msgid "" "Both fields are optional. If none are given the username will be displayed " "instead" @@ -84,91 +85,94 @@ msgstr "" "Ambos os campos são opcionais. Se nenhum for preenchido o nome de utilizador " "será apresentado." -#: .\cookbook\forms.py:93 .\cookbook\forms.py:315 -#: .\cookbook\templates\forms\edit_internal_recipe.html:45 +#: .\cookbook\forms.py:102 .\cookbook\forms.py:331 +#: .\cookbook\templates\forms\edit_internal_recipe.html:49 +#: .\cookbook\templates\url_import.html:154 msgid "Name" msgstr "Nome" -#: .\cookbook\forms.py:94 .\cookbook\forms.py:316 -#: .\cookbook\templates\base.html:98 -#: .\cookbook\templates\forms\edit_internal_recipe.html:81 -#: .\cookbook\templates\stats.html:24 .\cookbook\templates\url_import.html:202 +#: .\cookbook\forms.py:103 .\cookbook\forms.py:332 +#: .\cookbook\templates\base.html:105 +#: .\cookbook\templates\forms\edit_internal_recipe.html:85 +#: .\cookbook\templates\space.html:33 .\cookbook\templates\stats.html:24 +#: .\cookbook\templates\url_import.html:188 +#: .\cookbook\templates\url_import.html:573 msgid "Keywords" msgstr "Palavras-chave" -#: .\cookbook\forms.py:95 +#: .\cookbook\forms.py:104 msgid "Preparation time in minutes" msgstr "Tempo de preparação em minutos" -#: .\cookbook\forms.py:96 +#: .\cookbook\forms.py:105 msgid "Waiting time (cooking/baking) in minutes" msgstr "Tempo de espera (cozedura) em minutos" -#: .\cookbook\forms.py:97 .\cookbook\forms.py:317 +#: .\cookbook\forms.py:106 .\cookbook\forms.py:333 msgid "Path" msgstr "Caminho" -#: .\cookbook\forms.py:98 +#: .\cookbook\forms.py:107 msgid "Storage UID" msgstr "UID de armazenamento" -#: .\cookbook\forms.py:121 +#: .\cookbook\forms.py:133 msgid "Default" msgstr "" -#: .\cookbook\forms.py:130 +#: .\cookbook\forms.py:144 .\cookbook\templates\url_import.html:90 msgid "" "To prevent duplicates recipes with the same name as existing ones are " "ignored. Check this box to import everything." msgstr "" -#: .\cookbook\forms.py:149 +#: .\cookbook\forms.py:164 msgid "New Unit" msgstr "Nova Unidade" -#: .\cookbook\forms.py:150 +#: .\cookbook\forms.py:165 msgid "New unit that other gets replaced by." msgstr "Nova unidade substituta." -#: .\cookbook\forms.py:155 +#: .\cookbook\forms.py:170 msgid "Old Unit" msgstr "Unidade Anterior" -#: .\cookbook\forms.py:156 +#: .\cookbook\forms.py:171 msgid "Unit that should be replaced." msgstr "Unidade a ser alterada." -#: .\cookbook\forms.py:172 +#: .\cookbook\forms.py:187 msgid "New Food" msgstr "Novo Prato" -#: .\cookbook\forms.py:173 +#: .\cookbook\forms.py:188 msgid "New food that other gets replaced by." msgstr "Novo prato a ser alterado." -#: .\cookbook\forms.py:178 +#: .\cookbook\forms.py:193 msgid "Old Food" msgstr "Prato Anterior" -#: .\cookbook\forms.py:179 +#: .\cookbook\forms.py:194 msgid "Food that should be replaced." msgstr "Prato a ser alterado." -#: .\cookbook\forms.py:197 +#: .\cookbook\forms.py:212 msgid "Add your comment: " msgstr "Adicionar comentário:" -#: .\cookbook\forms.py:238 +#: .\cookbook\forms.py:253 msgid "Leave empty for dropbox and enter app password for nextcloud." msgstr "" "Deixar vazio para Dropbox e inserir palavra-passe de aplicação para " "Nextcloud." -#: .\cookbook\forms.py:245 +#: .\cookbook\forms.py:260 msgid "Leave empty for nextcloud and enter api token for dropbox." msgstr "Deixar vazio para Nextcloud e inserir token api para Dropbox." -#: .\cookbook\forms.py:253 +#: .\cookbook\forms.py:269 msgid "" "Leave empty for dropbox and enter only base url for nextcloud (/remote." "php/webdav/ is added automatically)" @@ -176,26 +180,26 @@ msgstr "" "Deixar vazio para Dropbox e inserir apenas url base para Nextcloud (/" "remote.php/webdav/é adicionado automaticamente). " -#: .\cookbook\forms.py:291 +#: .\cookbook\forms.py:307 msgid "Search String" msgstr "Procurar" -#: .\cookbook\forms.py:318 +#: .\cookbook\forms.py:334 msgid "File ID" msgstr "ID the ficheiro" -#: .\cookbook\forms.py:354 +#: .\cookbook\forms.py:370 msgid "You must provide at least a recipe or a title." msgstr "É necessário inserir uma receita ou um título." -#: .\cookbook\forms.py:367 +#: .\cookbook\forms.py:383 msgid "You can list default users to share recipes with in the settings." msgstr "" "É possível escolher os utilizadores com quem partilhar receitas por defeitos " "nas definições." -#: .\cookbook\forms.py:368 -#: .\cookbook\templates\forms\edit_internal_recipe.html:377 +#: .\cookbook\forms.py:384 +#: .\cookbook\templates\forms\edit_internal_recipe.html:404 msgid "" "You can use markdown to format this field. See the docs here" @@ -203,48 +207,57 @@ msgstr "" "É possível utilizar markdown para editar este campo. Documentação disponível aqui" -#: .\cookbook\forms.py:393 -msgid "A username is not required, if left blank the new user can choose one." +#: .\cookbook\forms.py:409 +msgid "Maximum number of users for this space reached." msgstr "" -"Um nome de utilizador não é obrigatório. Se deixado em branco o novo " -"utilizador pode escolher o seu nome." -#: .\cookbook\helper\permission_helper.py:123 -#: .\cookbook\helper\permission_helper.py:129 -#: .\cookbook\helper\permission_helper.py:151 -#: .\cookbook\helper\permission_helper.py:196 -#: .\cookbook\helper\permission_helper.py:210 -#: .\cookbook\helper\permission_helper.py:221 -#: .\cookbook\helper\permission_helper.py:232 .\cookbook\views\data.py:30 -#: .\cookbook\views\views.py:112 .\cookbook\views\views.py:116 -#: .\cookbook\views\views.py:184 -msgid "You do not have the required permissions to view this page!" -msgstr "Sem permissões para aceder a esta página!" +#: .\cookbook\forms.py:415 +msgid "Email address already taken!" +msgstr "" -#: .\cookbook\helper\permission_helper.py:141 +#: .\cookbook\forms.py:423 +msgid "" +"An email address is not required but if present the invite link will be send " +"to the user." +msgstr "" + +#: .\cookbook\forms.py:438 +msgid "Name already taken." +msgstr "" + +#: .\cookbook\forms.py:449 +msgid "Accept Terms and Privacy" +msgstr "" + +#: .\cookbook\helper\AllAuthCustomAdapter.py:30 +msgid "" +"In order to prevent spam, the requested email was not send. Please wait a " +"few minutes and try again." +msgstr "" + +#: .\cookbook\helper\permission_helper.py:124 +#: .\cookbook\helper\permission_helper.py:144 .\cookbook\views\views.py:147 msgid "You are not logged in and therefore cannot view this page!" msgstr "Autenticação necessária para aceder a esta página!" -#: .\cookbook\helper\permission_helper.py:145 -#: .\cookbook\helper\permission_helper.py:167 -#: .\cookbook\helper\permission_helper.py:182 +#: .\cookbook\helper\permission_helper.py:127 +#: .\cookbook\helper\permission_helper.py:132 +#: .\cookbook\helper\permission_helper.py:154 +#: .\cookbook\helper\permission_helper.py:199 +#: .\cookbook\helper\permission_helper.py:213 +#: .\cookbook\helper\permission_helper.py:224 +#: .\cookbook\helper\permission_helper.py:235 .\cookbook\views\data.py:39 +#: .\cookbook\views\views.py:158 .\cookbook\views\views.py:165 +#: .\cookbook\views\views.py:253 +msgid "You do not have the required permissions to view this page!" +msgstr "Sem permissões para aceder a esta página!" + +#: .\cookbook\helper\permission_helper.py:148 +#: .\cookbook\helper\permission_helper.py:170 +#: .\cookbook\helper\permission_helper.py:185 msgid "You cannot interact with this object as it is not owned by you!" msgstr "" -#: .\cookbook\helper\recipe_url_import.py:40 .\cookbook\views\api.py:549 -msgid "The requested site provided malformed data and cannot be read." -msgstr "" - -#: .\cookbook\helper\recipe_url_import.py:54 -msgid "" -"The requested site does not provide any recognized data format to import the " -"recipe from." -msgstr "Esta página não contém uma receita que eu consiga entender." - -#: .\cookbook\helper\recipe_url_import.py:160 -msgid "Imported from" -msgstr "" - #: .\cookbook\helper\template_helper.py:60 #: .\cookbook\helper\template_helper.py:62 msgid "Could not parse template code." @@ -254,45 +267,56 @@ msgstr "" #: .\cookbook\templates\import.html:14 .\cookbook\templates\import.html:20 #: .\cookbook\templates\import_response.html:7 #: .\cookbook\templates\test.html:14 .\cookbook\templates\test.html:20 -#: .\cookbook\templates\url_import.html:233 .\cookbook\views\delete.py:60 -#: .\cookbook\views\edit.py:190 +#: .\cookbook\templates\url_import.html:27 +#: .\cookbook\templates\url_import.html:101 +#: .\cookbook\templates\url_import.html:123 +#: .\cookbook\templates\url_import.html:317 +#: .\cookbook\templates\url_import.html:604 .\cookbook\views\delete.py:60 +#: .\cookbook\views\edit.py:199 msgid "Import" msgstr "Importar" -#: .\cookbook\integration\integration.py:131 +#: .\cookbook\integration\integration.py:162 msgid "" "Importer expected a .zip file. Did you choose the correct importer type for " "your data ?" msgstr "" -#: .\cookbook\integration\integration.py:134 +#: .\cookbook\integration\integration.py:165 +msgid "" +"An unexpected error occurred during the import. Please make sure you have " +"uploaded a valid file." +msgstr "" + +#: .\cookbook\integration\integration.py:169 msgid "The following recipes were ignored because they already existed:" msgstr "" -#: .\cookbook\integration\integration.py:137 +#: .\cookbook\integration\integration.py:173 #, fuzzy, python-format #| msgid "Import Recipes" msgid "Imported %s recipes." msgstr "Importar Receitas" -#: .\cookbook\integration\paprika.py:44 +#: .\cookbook\integration\paprika.py:46 #, fuzzy #| msgid "Note" msgid "Notes" msgstr "Nota" -#: .\cookbook\integration\paprika.py:47 +#: .\cookbook\integration\paprika.py:49 msgid "Nutritional Information" msgstr "" -#: .\cookbook\integration\paprika.py:50 +#: .\cookbook\integration\paprika.py:53 msgid "Source" msgstr "" #: .\cookbook\integration\safron.py:23 -#: .\cookbook\templates\forms\edit_internal_recipe.html:75 +#: .\cookbook\templates\forms\edit_internal_recipe.html:79 #: .\cookbook\templates\include\log_cooking.html:16 -#: .\cookbook\templates\url_import.html:84 +#: .\cookbook\templates\url_import.html:224 +#: .\cookbook\templates\url_import.html:455 msgid "Servings" msgstr "Porções" @@ -301,11 +325,11 @@ msgid "Waiting time" msgstr "" #: .\cookbook\integration\safron.py:27 -#: .\cookbook\templates\forms\edit_internal_recipe.html:69 +#: .\cookbook\templates\forms\edit_internal_recipe.html:73 msgid "Preparation Time" msgstr "" -#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:71 +#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:78 #: .\cookbook\templates\forms\ingredients.html:7 #: .\cookbook\templates\index.html:7 msgid "Cookbook" @@ -331,44 +355,74 @@ msgstr "Jantar" msgid "Other" msgstr "Outro" -#: .\cookbook\models.py:110 .\cookbook\templates\shopping_list.html:48 +#: .\cookbook\models.py:71 +msgid "" +"Maximum file storage for space in MB. 0 for unlimited, -1 to disable file " +"upload." +msgstr "" + +#: .\cookbook\models.py:121 .\cookbook\templates\search.html:7 +#: .\cookbook\templates\shopping_list.html:52 msgid "Search" msgstr "Procurar" -#: .\cookbook\models.py:111 .\cookbook\templates\base.html:85 +#: .\cookbook\models.py:122 .\cookbook\templates\base.html:92 #: .\cookbook\templates\meal_plan.html:5 .\cookbook\views\delete.py:152 -#: .\cookbook\views\edit.py:224 .\cookbook\views\new.py:188 +#: .\cookbook\views\edit.py:233 .\cookbook\views\new.py:201 msgid "Meal-Plan" msgstr "Plano de refeição" -#: .\cookbook\models.py:112 .\cookbook\templates\base.html:82 +#: .\cookbook\models.py:123 .\cookbook\templates\base.html:89 msgid "Books" msgstr "Livros" -#: .\cookbook\models.py:119 +#: .\cookbook\models.py:131 msgid "Small" msgstr "Pequeno" -#: .\cookbook\models.py:119 +#: .\cookbook\models.py:131 msgid "Large" msgstr "Grande" -#: .\cookbook\models.py:327 -#: .\cookbook\templates\forms\edit_internal_recipe.html:198 +#: .\cookbook\models.py:131 .\cookbook\templates\generic\new_template.html:6 +#: .\cookbook\templates\generic\new_template.html:14 +#: .\cookbook\templates\meal_plan.html:323 +msgid "New" +msgstr "Novo" + +#: .\cookbook\models.py:340 +#: .\cookbook\templates\forms\edit_internal_recipe.html:202 msgid "Text" msgstr "Texto" -#: .\cookbook\models.py:327 -#: .\cookbook\templates\forms\edit_internal_recipe.html:199 +#: .\cookbook\models.py:340 +#: .\cookbook\templates\forms\edit_internal_recipe.html:203 msgid "Time" msgstr "Tempo" +#: .\cookbook\models.py:340 +#: .\cookbook\templates\forms\edit_internal_recipe.html:204 +#: .\cookbook\templates\forms\edit_internal_recipe.html:218 +#, fuzzy +#| msgid "File ID" +msgid "File" +msgstr "ID the ficheiro" + +#: .\cookbook\serializer.py:109 +msgid "File uploads are not enabled for this Space." +msgstr "" + +#: .\cookbook\serializer.py:117 +msgid "You have reached your file upload limit." +msgstr "" + #: .\cookbook\tables.py:35 .\cookbook\templates\books.html:36 #: .\cookbook\templates\generic\edit_template.html:6 #: .\cookbook\templates\generic\edit_template.html:14 #: .\cookbook\templates\meal_plan.html:281 #: .\cookbook\templates\recipes_table.html:82 #: .\cookbook\templates\shopping_list.html:33 +#: .\cookbook\templates\space.html:84 msgid "Edit" msgstr "Editar" @@ -382,10 +436,6 @@ msgstr "Editar" msgid "Delete" msgstr "Apagar" -#: .\cookbook\tables.py:144 -msgid "Link" -msgstr "Ligação" - #: .\cookbook\templates\404.html:5 msgid "404 Error" msgstr "Erro 404" @@ -402,21 +452,122 @@ msgstr "Início" msgid "Report a Bug" msgstr "Reportar defeito" -#: .\cookbook\templates\account\login.html:7 -#: .\cookbook\templates\base.html:170 +#: .\cookbook\templates\account\email.html:6 +#: .\cookbook\templates\account\email.html:9 +msgid "E-mail Addresses" +msgstr "" + +#: .\cookbook\templates\account\email.html:11 +msgid "The following e-mail addresses are associated with your account:" +msgstr "" + +#: .\cookbook\templates\account\email.html:28 +msgid "Verified" +msgstr "" + +#: .\cookbook\templates\account\email.html:30 +msgid "Unverified" +msgstr "" + +#: .\cookbook\templates\account\email.html:32 +msgid "Primary" +msgstr "" + +#: .\cookbook\templates\account\email.html:39 +#, fuzzy +#| msgid "Make Header" +msgid "Make Primary" +msgstr "Adicionar Cabeçalho" + +#: .\cookbook\templates\account\email.html:41 +msgid "Re-send Verification" +msgstr "" + +#: .\cookbook\templates\account\email.html:42 +#: .\cookbook\templates\socialaccount\connections.html:36 +msgid "Remove" +msgstr "" + +#: .\cookbook\templates\account\email.html:50 +msgid "Warning:" +msgstr "" + +#: .\cookbook\templates\account\email.html:50 +msgid "" +"You currently do not have any e-mail address set up. You should really add " +"an e-mail address so you can receive notifications, reset your password, etc." +msgstr "" + +#: .\cookbook\templates\account\email.html:56 +msgid "Add E-mail Address" +msgstr "" + +#: .\cookbook\templates\account\email.html:61 +msgid "Add E-mail" +msgstr "" + +#: .\cookbook\templates\account\email.html:71 +msgid "Do you really want to remove the selected e-mail address?" +msgstr "" + +#: .\cookbook\templates\account\email_confirm.html:6 +#: .\cookbook\templates\account\email_confirm.html:10 +msgid "Confirm E-mail Address" +msgstr "" + +#: .\cookbook\templates\account\email_confirm.html:16 +#, python-format +msgid "" +"Please confirm that\n" +" %(email)s is an e-mail address " +"for user %(user_display)s\n" +" ." +msgstr "" + +#: .\cookbook\templates\account\email_confirm.html:22 +#: .\cookbook\templates\generic\delete_template.html:21 +msgid "Confirm" +msgstr "Confirme" + +#: .\cookbook\templates\account\email_confirm.html:29 +#, python-format +msgid "" +"This e-mail confirmation link expired or is invalid. Please\n" +" issue a new e-mail confirmation " +"request." +msgstr "" + +#: .\cookbook\templates\account\login.html:8 +#: .\cookbook\templates\base.html:180 msgid "Login" msgstr "Iniciar sessão" -#: .\cookbook\templates\account\login.html:13 -#: .\cookbook\templates\account\login.html:28 +#: .\cookbook\templates\account\login.html:15 +#: .\cookbook\templates\account\login.html:31 +#: .\cookbook\templates\account\signup.html:69 +#: .\cookbook\templates\account\signup_closed.html:15 msgid "Sign In" msgstr "" -#: .\cookbook\templates\account\login.html:38 +#: .\cookbook\templates\account\login.html:32 +msgid "Sign Up" +msgstr "" + +#: .\cookbook\templates\account\login.html:36 +#: .\cookbook\templates\account\login.html:37 +#: .\cookbook\templates\account\password_reset.html:29 +msgid "Reset My Password" +msgstr "" + +#: .\cookbook\templates\account\login.html:37 +msgid "Lost your password?" +msgstr "" + +#: .\cookbook\templates\account\login.html:48 msgid "Social Login" msgstr "" -#: .\cookbook\templates\account\login.html:39 +#: .\cookbook\templates\account\login.html:49 msgid "You can use any of the following providers to sign in." msgstr "" @@ -430,116 +581,164 @@ msgstr "" msgid "Are you sure you want to sign out?" msgstr "" -#: .\cookbook\templates\account\password_reset.html:5 -#: .\cookbook\templates\account\password_reset_done.html:5 +#: .\cookbook\templates\account\password_reset.html:7 +#: .\cookbook\templates\account\password_reset.html:13 +#: .\cookbook\templates\account\password_reset_done.html:7 +#: .\cookbook\templates\account\password_reset_done.html:10 msgid "Password Reset" msgstr "" -#: .\cookbook\templates\account\password_reset.html:9 -#: .\cookbook\templates\account\password_reset_done.html:9 -msgid "Password reset is not implemented for the time being!" +#: .\cookbook\templates\account\password_reset.html:24 +msgid "" +"Forgotten your password? Enter your e-mail address below, and we'll send you " +"an e-mail allowing you to reset it." msgstr "" -#: .\cookbook\templates\account\signup.html:5 +#: .\cookbook\templates\account\password_reset.html:32 +msgid "Password reset is disabled on this instance." +msgstr "" + +#: .\cookbook\templates\account\password_reset_done.html:16 +msgid "" +"We have sent you an e-mail. Please contact us if you do not receive it " +"within a few minutes." +msgstr "" + +#: .\cookbook\templates\account\signup.html:6 msgid "Register" msgstr "" -#: .\cookbook\templates\account\signup.html:9 -msgid "Create your Account" +#: .\cookbook\templates\account\signup.html:12 +msgid "Create an Account" msgstr "" -#: .\cookbook\templates\account\signup.html:14 +#: .\cookbook\templates\account\signup.html:42 +msgid "I accept the follwoing" +msgstr "" + +#: .\cookbook\templates\account\signup.html:45 +msgid "Terms and Conditions" +msgstr "" + +#: .\cookbook\templates\account\signup.html:48 +msgid "and" +msgstr "" + +#: .\cookbook\templates\account\signup.html:52 +msgid "Privacy Policy" +msgstr "" + +#: .\cookbook\templates\account\signup.html:65 msgid "Create User" msgstr "" -#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:160 +#: .\cookbook\templates\account\signup.html:69 +msgid "Already have an account?" +msgstr "" + +#: .\cookbook\templates\account\signup_closed.html:5 +#: .\cookbook\templates\account\signup_closed.html:11 +msgid "Sign Up Closed" +msgstr "" + +#: .\cookbook\templates\account\signup_closed.html:13 +msgid "We are sorry, but the sign up is currently closed." +msgstr "" + +#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:170 #: .\cookbook\templates\rest_framework\api.html:11 msgid "API Documentation" msgstr "Documentação API" -#: .\cookbook\templates\base.html:78 +#: .\cookbook\templates\base.html:85 msgid "Utensils" msgstr "Utensílios" -#: .\cookbook\templates\base.html:88 +#: .\cookbook\templates\base.html:95 msgid "Shopping" msgstr "Compras" -#: .\cookbook\templates\base.html:102 .\cookbook\views\delete.py:84 -#: .\cookbook\views\edit.py:93 .\cookbook\views\lists.py:26 -#: .\cookbook\views\new.py:66 +#: .\cookbook\templates\base.html:109 .\cookbook\views\delete.py:84 +#: .\cookbook\views\edit.py:102 .\cookbook\views\lists.py:26 +#: .\cookbook\views\new.py:78 msgid "Keyword" msgstr "Palavra-chave" -#: .\cookbook\templates\base.html:104 +#: .\cookbook\templates\base.html:111 msgid "Batch Edit" msgstr "Editor em massa" -#: .\cookbook\templates\base.html:109 +#: .\cookbook\templates\base.html:116 msgid "Storage Data" msgstr "Dados de armazenamento" -#: .\cookbook\templates\base.html:113 +#: .\cookbook\templates\base.html:120 msgid "Storage Backends" msgstr "" -#: .\cookbook\templates\base.html:115 +#: .\cookbook\templates\base.html:122 msgid "Configure Sync" msgstr "Configurar sincronização" -#: .\cookbook\templates\base.html:117 +#: .\cookbook\templates\base.html:124 msgid "Discovered Recipes" msgstr "Descobrir Receitas" -#: .\cookbook\templates\base.html:119 +#: .\cookbook\templates\base.html:126 msgid "Discovery Log" msgstr "" -#: .\cookbook\templates\base.html:121 .\cookbook\templates\stats.html:10 +#: .\cookbook\templates\base.html:128 .\cookbook\templates\stats.html:10 msgid "Statistics" msgstr "Estatísticas" -#: .\cookbook\templates\base.html:123 +#: .\cookbook\templates\base.html:130 msgid "Units & Ingredients" msgstr "Unidades e Ingredientes" -#: .\cookbook\templates\base.html:125 +#: .\cookbook\templates\base.html:132 .\cookbook\templates\index.html:47 msgid "Import Recipe" msgstr "Importar Receita" -#: .\cookbook\templates\base.html:144 .\cookbook\templates\settings.html:6 +#: .\cookbook\templates\base.html:151 .\cookbook\templates\settings.html:6 #: .\cookbook\templates\settings.html:16 msgid "Settings" msgstr "Definições" -#: .\cookbook\templates\base.html:146 .\cookbook\templates\history.html:6 +#: .\cookbook\templates\base.html:153 .\cookbook\templates\history.html:6 #: .\cookbook\templates\history.html:14 msgid "History" msgstr "Histórico" -#: .\cookbook\templates\base.html:150 .\cookbook\templates\system.html:13 +#: .\cookbook\templates\base.html:155 .\cookbook\templates\space.html:7 +#, fuzzy +#| msgid "Settings" +msgid "Space Settings" +msgstr "Definições" + +#: .\cookbook\templates\base.html:160 .\cookbook\templates\system.html:13 msgid "System" msgstr "Sistema" -#: .\cookbook\templates\base.html:152 +#: .\cookbook\templates\base.html:162 msgid "Admin" msgstr "Administração" -#: .\cookbook\templates\base.html:156 +#: .\cookbook\templates\base.html:166 msgid "Markdown Guide" msgstr "" -#: .\cookbook\templates\base.html:158 +#: .\cookbook\templates\base.html:168 msgid "GitHub" msgstr "GitHub" -#: .\cookbook\templates\base.html:162 +#: .\cookbook\templates\base.html:172 msgid "API Browser" msgstr "Navegador de API" -#: .\cookbook\templates\base.html:165 -msgid "Logout" -msgstr "Sair" +#: .\cookbook\templates\base.html:175 +msgid "Log out" +msgstr "" #: .\cookbook\templates\batch\edit.html:6 msgid "Batch edit Category" @@ -553,7 +752,7 @@ msgstr "Editar Receitas em massa" msgid "Add the specified keywords to all recipes containing a word" msgstr "Adicionar palavras-chave a todas as receitas que contenham uma palavra" -#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:76 +#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:85 msgid "Sync" msgstr "Sincronizar" @@ -580,7 +779,7 @@ msgstr "Sincronizar" msgid "Importing Recipes" msgstr "A importar Receitas" -#: .\cookbook\templates\batch\waiting.html:23 +#: .\cookbook\templates\batch\waiting.html:28 msgid "" "This can take a few minutes, depending on the number of recipes in sync, " "please wait." @@ -619,26 +818,33 @@ msgid "Export Recipes" msgstr "Exportar Receitas" #: .\cookbook\templates\export.html:14 .\cookbook\templates\export.html:20 -#: .\cookbook\templates\shopping_list.html:347 +#: .\cookbook\templates\shopping_list.html:351 #: .\cookbook\templates\test2.html:14 .\cookbook\templates\test2.html:20 msgid "Export" msgstr "Exportar" +#: .\cookbook\templates\files.html:7 +#, fuzzy +#| msgid "File ID" +msgid "Files" +msgstr "ID the ficheiro" + #: .\cookbook\templates\forms\edit_import_recipe.html:5 #: .\cookbook\templates\forms\edit_import_recipe.html:9 msgid "Import new Recipe" msgstr "Importar nova Receita" #: .\cookbook\templates\forms\edit_import_recipe.html:14 -#: .\cookbook\templates\forms\edit_internal_recipe.html:389 -#: .\cookbook\templates\forms\edit_internal_recipe.html:421 +#: .\cookbook\templates\forms\edit_internal_recipe.html:416 +#: .\cookbook\templates\forms\edit_internal_recipe.html:448 #: .\cookbook\templates\generic\edit_template.html:23 #: .\cookbook\templates\generic\new_template.html:23 #: .\cookbook\templates\include\log_cooking.html:28 #: .\cookbook\templates\meal_plan.html:325 -#: .\cookbook\templates\settings.html:28 .\cookbook\templates\settings.html:35 -#: .\cookbook\templates\settings.html:58 .\cookbook\templates\settings.html:73 -#: .\cookbook\templates\shopping_list.html:349 +#: .\cookbook\templates\settings.html:44 .\cookbook\templates\settings.html:52 +#: .\cookbook\templates\settings.html:96 +#: .\cookbook\templates\settings.html:114 +#: .\cookbook\templates\shopping_list.html:353 msgid "Save" msgstr "Gravar" @@ -647,181 +853,190 @@ msgstr "Gravar" msgid "Edit Recipe" msgstr "Editar Receita" -#: .\cookbook\templates\forms\edit_internal_recipe.html:52 +#: .\cookbook\templates\forms\edit_internal_recipe.html:56 +#: .\cookbook\templates\url_import.html:171 msgid "Description" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:72 +#: .\cookbook\templates\forms\edit_internal_recipe.html:76 msgid "Waiting Time" msgstr "Tempo de Espera" -#: .\cookbook\templates\forms\edit_internal_recipe.html:78 +#: .\cookbook\templates\forms\edit_internal_recipe.html:82 msgid "Servings Text" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:89 +#: .\cookbook\templates\forms\edit_internal_recipe.html:93 msgid "Select Keywords" msgstr "Escolher Palavras-chave" -#: .\cookbook\templates\forms\edit_internal_recipe.html:90 -#: .\cookbook\templates\url_import.html:212 +#: .\cookbook\templates\forms\edit_internal_recipe.html:94 +#: .\cookbook\templates\url_import.html:583 #, fuzzy #| msgid "Keyword" msgid "Add Keyword" msgstr "Palavra-chave" -#: .\cookbook\templates\forms\edit_internal_recipe.html:108 +#: .\cookbook\templates\forms\edit_internal_recipe.html:112 msgid "Nutrition" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:112 -#: .\cookbook\templates\forms\edit_internal_recipe.html:162 +#: .\cookbook\templates\forms\edit_internal_recipe.html:116 +#: .\cookbook\templates\forms\edit_internal_recipe.html:166 msgid "Delete Step" msgstr "Apagar Passo" -#: .\cookbook\templates\forms\edit_internal_recipe.html:116 +#: .\cookbook\templates\forms\edit_internal_recipe.html:120 msgid "Calories" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:119 +#: .\cookbook\templates\forms\edit_internal_recipe.html:123 msgid "Carbohydrates" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:122 +#: .\cookbook\templates\forms\edit_internal_recipe.html:126 msgid "Fats" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:124 +#: .\cookbook\templates\forms\edit_internal_recipe.html:128 msgid "Proteins" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:146 -#: .\cookbook\templates\forms\edit_internal_recipe.html:454 +#: .\cookbook\templates\forms\edit_internal_recipe.html:150 +#: .\cookbook\templates\forms\edit_internal_recipe.html:481 msgid "Step" msgstr "Passo" -#: .\cookbook\templates\forms\edit_internal_recipe.html:167 +#: .\cookbook\templates\forms\edit_internal_recipe.html:171 msgid "Show as header" msgstr "Mostrar como cabeçalho" -#: .\cookbook\templates\forms\edit_internal_recipe.html:173 +#: .\cookbook\templates\forms\edit_internal_recipe.html:177 msgid "Hide as header" msgstr "Esconder como cabeçalho" -#: .\cookbook\templates\forms\edit_internal_recipe.html:178 +#: .\cookbook\templates\forms\edit_internal_recipe.html:182 msgid "Move Up" msgstr "Mover para cima" -#: .\cookbook\templates\forms\edit_internal_recipe.html:183 +#: .\cookbook\templates\forms\edit_internal_recipe.html:187 msgid "Move Down" msgstr "Mover para baixo" -#: .\cookbook\templates\forms\edit_internal_recipe.html:192 +#: .\cookbook\templates\forms\edit_internal_recipe.html:196 msgid "Step Name" msgstr "Nome do passo" -#: .\cookbook\templates\forms\edit_internal_recipe.html:196 +#: .\cookbook\templates\forms\edit_internal_recipe.html:200 msgid "Step Type" msgstr "Tipo de passo" -#: .\cookbook\templates\forms\edit_internal_recipe.html:207 +#: .\cookbook\templates\forms\edit_internal_recipe.html:212 msgid "Step time in Minutes" msgstr "Tempo de passo em minutos" -#: .\cookbook\templates\forms\edit_internal_recipe.html:261 -#: .\cookbook\templates\shopping_list.html:183 -msgid "Select Unit" +#: .\cookbook\templates\forms\edit_internal_recipe.html:228 +#, fuzzy +#| msgid "Select Unit" +msgid "Select File" msgstr "Selecionar Unidade" -#: .\cookbook\templates\forms\edit_internal_recipe.html:262 -#: .\cookbook\templates\forms\edit_internal_recipe.html:286 -#: .\cookbook\templates\shopping_list.html:184 -#: .\cookbook\templates\shopping_list.html:206 -msgid "Create" -msgstr "Criar" - -#: .\cookbook\templates\forms\edit_internal_recipe.html:263 -#: .\cookbook\templates\forms\edit_internal_recipe.html:287 -#: .\cookbook\templates\shopping_list.html:185 -#: .\cookbook\templates\shopping_list.html:207 -#: .\cookbook\templates\shopping_list.html:237 -#: .\cookbook\templates\shopping_list.html:261 -#: .\cookbook\templates\url_import.html:124 -#: .\cookbook\templates\url_import.html:156 +#: .\cookbook\templates\forms\edit_internal_recipe.html:229 +#: .\cookbook\templates\forms\edit_internal_recipe.html:290 +#: .\cookbook\templates\forms\edit_internal_recipe.html:314 +#: .\cookbook\templates\shopping_list.html:189 +#: .\cookbook\templates\shopping_list.html:211 +#: .\cookbook\templates\shopping_list.html:241 +#: .\cookbook\templates\shopping_list.html:265 +#: .\cookbook\templates\url_import.html:495 +#: .\cookbook\templates\url_import.html:527 msgid "Select" msgstr "Selecionar" -#: .\cookbook\templates\forms\edit_internal_recipe.html:285 -#: .\cookbook\templates\shopping_list.html:205 +#: .\cookbook\templates\forms\edit_internal_recipe.html:288 +#: .\cookbook\templates\shopping_list.html:187 +msgid "Select Unit" +msgstr "Selecionar Unidade" + +#: .\cookbook\templates\forms\edit_internal_recipe.html:289 +#: .\cookbook\templates\forms\edit_internal_recipe.html:313 +#: .\cookbook\templates\shopping_list.html:188 +#: .\cookbook\templates\shopping_list.html:210 +msgid "Create" +msgstr "Criar" + +#: .\cookbook\templates\forms\edit_internal_recipe.html:312 +#: .\cookbook\templates\shopping_list.html:209 msgid "Select Food" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:302 +#: .\cookbook\templates\forms\edit_internal_recipe.html:329 #: .\cookbook\templates\meal_plan.html:256 -#: .\cookbook\templates\url_import.html:171 +#: .\cookbook\templates\url_import.html:542 msgid "Note" msgstr "Nota" -#: .\cookbook\templates\forms\edit_internal_recipe.html:319 +#: .\cookbook\templates\forms\edit_internal_recipe.html:346 msgid "Delete Ingredient" msgstr "Apagar Ingrediente" -#: .\cookbook\templates\forms\edit_internal_recipe.html:325 +#: .\cookbook\templates\forms\edit_internal_recipe.html:352 msgid "Make Header" msgstr "Adicionar Cabeçalho" -#: .\cookbook\templates\forms\edit_internal_recipe.html:331 +#: .\cookbook\templates\forms\edit_internal_recipe.html:358 msgid "Make Ingredient" msgstr "Adicionar Ingrediente" -#: .\cookbook\templates\forms\edit_internal_recipe.html:337 +#: .\cookbook\templates\forms\edit_internal_recipe.html:364 msgid "Disable Amount" msgstr "Desativar Quantidade" -#: .\cookbook\templates\forms\edit_internal_recipe.html:343 +#: .\cookbook\templates\forms\edit_internal_recipe.html:370 msgid "Enable Amount" msgstr "Ativar Quantidade" -#: .\cookbook\templates\forms\edit_internal_recipe.html:348 +#: .\cookbook\templates\forms\edit_internal_recipe.html:375 msgid "Copy Template Reference" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:374 -#: .\cookbook\templates\url_import.html:196 +#: .\cookbook\templates\forms\edit_internal_recipe.html:401 +#: .\cookbook\templates\url_import.html:297 +#: .\cookbook\templates\url_import.html:567 msgid "Instructions" msgstr "Instruções" -#: .\cookbook\templates\forms\edit_internal_recipe.html:387 -#: .\cookbook\templates\forms\edit_internal_recipe.html:418 +#: .\cookbook\templates\forms\edit_internal_recipe.html:414 +#: .\cookbook\templates\forms\edit_internal_recipe.html:445 msgid "Save & View" msgstr "Gravar e Ver" -#: .\cookbook\templates\forms\edit_internal_recipe.html:391 -#: .\cookbook\templates\forms\edit_internal_recipe.html:424 +#: .\cookbook\templates\forms\edit_internal_recipe.html:418 +#: .\cookbook\templates\forms\edit_internal_recipe.html:451 msgid "Add Step" msgstr "Adicionar Passo" -#: .\cookbook\templates\forms\edit_internal_recipe.html:394 -#: .\cookbook\templates\forms\edit_internal_recipe.html:428 +#: .\cookbook\templates\forms\edit_internal_recipe.html:421 +#: .\cookbook\templates\forms\edit_internal_recipe.html:455 msgid "Add Nutrition" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:396 -#: .\cookbook\templates\forms\edit_internal_recipe.html:430 +#: .\cookbook\templates\forms\edit_internal_recipe.html:423 +#: .\cookbook\templates\forms\edit_internal_recipe.html:457 msgid "Remove Nutrition" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:398 -#: .\cookbook\templates\forms\edit_internal_recipe.html:433 +#: .\cookbook\templates\forms\edit_internal_recipe.html:425 +#: .\cookbook\templates\forms\edit_internal_recipe.html:460 msgid "View Recipe" msgstr "Ver Receita" -#: .\cookbook\templates\forms\edit_internal_recipe.html:400 -#: .\cookbook\templates\forms\edit_internal_recipe.html:435 +#: .\cookbook\templates\forms\edit_internal_recipe.html:427 +#: .\cookbook\templates\forms\edit_internal_recipe.html:462 msgid "Delete Recipe" msgstr "Apagar Receita" -#: .\cookbook\templates\forms\edit_internal_recipe.html:441 +#: .\cookbook\templates\forms\edit_internal_recipe.html:468 msgid "Steps" msgstr "Passos" @@ -846,7 +1061,7 @@ msgstr "" "estejam a usar. " #: .\cookbook\templates\forms\ingredients.html:24 -#: .\cookbook\templates\stats.html:26 +#: .\cookbook\templates\space.html:35 .\cookbook\templates\stats.html:26 msgid "Units" msgstr "Unidades" @@ -868,10 +1083,6 @@ msgstr "" msgid "Are you sure you want to delete the %(title)s: %(object)s " msgstr "Tem a certeza que quer apagar %(title)s: %(object)s" -#: .\cookbook\templates\generic\delete_template.html:21 -msgid "Confirm" -msgstr "Confirme" - #: .\cookbook\templates\generic\edit_template.html:30 msgid "View" msgstr "Ver" @@ -893,12 +1104,6 @@ msgstr "Filtrar" msgid "Import all" msgstr "Importar tudo" -#: .\cookbook\templates\generic\new_template.html:6 -#: .\cookbook\templates\generic\new_template.html:14 -#: .\cookbook\templates\meal_plan.html:323 -msgid "New" -msgstr "Novo" - #: .\cookbook\templates\generic\table_template.html:76 #: .\cookbook\templates\recipes_table.html:121 msgid "previous" @@ -943,7 +1148,7 @@ msgstr "Fechar" #: .\cookbook\templates\include\recipe_open_modal.html:7 #: .\cookbook\templates\meal_plan.html:247 .\cookbook\views\delete.py:28 -#: .\cookbook\views\edit.py:264 .\cookbook\views\new.py:40 +#: .\cookbook\views\edit.py:273 .\cookbook\views\new.py:52 msgid "Recipe" msgstr "Receita" @@ -984,10 +1189,6 @@ msgstr "Procure receita ..." msgid "New Recipe" msgstr "Nova Receita" -#: .\cookbook\templates\index.html:47 -msgid "Website Import" -msgstr "Importar Website" - #: .\cookbook\templates\index.html:53 msgid "Advanced Search" msgstr "Procura avançada " @@ -1001,7 +1202,7 @@ msgid "Last viewed" msgstr "Ultimo visto" #: .\cookbook\templates\index.html:87 .\cookbook\templates\meal_plan.html:178 -#: .\cookbook\templates\stats.html:22 +#: .\cookbook\templates\space.html:29 .\cookbook\templates\stats.html:22 msgid "Recipes" msgstr "Receitas" @@ -1153,7 +1354,7 @@ msgid "New Entry" msgstr "Nova Entrada" #: .\cookbook\templates\meal_plan.html:113 -#: .\cookbook\templates\shopping_list.html:52 +#: .\cookbook\templates\shopping_list.html:56 msgid "Search Recipe" msgstr "Procure Receita" @@ -1185,7 +1386,7 @@ msgstr "" #: .\cookbook\templates\meal_plan.html:168 #: .\cookbook\templates\shopping_list.html:7 #: .\cookbook\templates\shopping_list.html:29 -#: .\cookbook\templates\shopping_list.html:705 +#: .\cookbook\templates\shopping_list.html:714 msgid "Shopping List" msgstr "" @@ -1235,7 +1436,7 @@ msgstr "" #: .\cookbook\templates\meal_plan.html:270 #: .\cookbook\templates\meal_plan_entry.html:20 -#: .\cookbook\templates\shopping_list.html:250 +#: .\cookbook\templates\shopping_list.html:254 msgid "Shared with" msgstr "" @@ -1312,7 +1513,6 @@ msgstr "Autenticação necessária para aceder a esta página!" #: .\cookbook\templates\no_groups_info.html:18 #: .\cookbook\templates\no_perm_info.html:15 -#: .\cookbook\templates\no_space_info.html:15 msgid "Please contact your administrator." msgstr "" @@ -1329,13 +1529,50 @@ msgid "" "action." msgstr "Sem permissões para aceder a esta página!" -#: .\cookbook\templates\no_space_info.html:5 -#: .\cookbook\templates\no_space_info.html:12 +#: .\cookbook\templates\no_space_info.html:6 +#: .\cookbook\templates\no_space_info.html:13 msgid "No Space" msgstr "" -#: .\cookbook\templates\no_space_info.html:15 -msgid "You are not a member of any space." +#: .\cookbook\templates\no_space_info.html:17 +msgid "" +"Recipes, foods, shopping lists and more are organized in spaces of one or " +"more people." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:18 +msgid "" +"You can either be invited into an existing space or create your own one." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:31 +#: .\cookbook\templates\no_space_info.html:40 +msgid "Join Space" +msgstr "" + +#: .\cookbook\templates\no_space_info.html:34 +msgid "Join an existing space." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:35 +msgid "" +"To join an existing space either enter your invite token or click on the " +"invite link the space owner send you." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:48 +#: .\cookbook\templates\no_space_info.html:56 +#, fuzzy +#| msgid "Create" +msgid "Create Space" +msgstr "Criar" + +#: .\cookbook\templates\no_space_info.html:51 +msgid "Create your own recipe space." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:52 +msgid "Start your own recipe space and invite other users to it." msgstr "" #: .\cookbook\templates\offline.html:6 @@ -1352,28 +1589,29 @@ msgid "" "recently viewed them. Keep in mind that data might be outdated." msgstr "" -#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\stats.html:47 +#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\space.html:56 +#: .\cookbook\templates\stats.html:47 msgid "Comments" msgstr "" #: .\cookbook\templates\recipe_view.html:44 .\cookbook\views\delete.py:118 -#: .\cookbook\views\edit.py:170 +#: .\cookbook\views\edit.py:179 msgid "Comment" msgstr "" #: .\cookbook\templates\recipes_table.html:19 #: .\cookbook\templates\recipes_table.html:23 -#: .\cookbook\templates\url_import.html:69 +#: .\cookbook\templates\url_import.html:440 msgid "Recipe Image" msgstr "" #: .\cookbook\templates\recipes_table.html:51 -#: .\cookbook\templates\url_import.html:74 +#: .\cookbook\templates\url_import.html:445 msgid "Preparation time ca." msgstr "" #: .\cookbook\templates\recipes_table.html:57 -#: .\cookbook\templates\url_import.html:79 +#: .\cookbook\templates\url_import.html:450 msgid "Waiting time ca." msgstr "" @@ -1389,39 +1627,75 @@ msgstr "" msgid "Recipe Home" msgstr "" -#: .\cookbook\templates\settings.html:22 +#: .\cookbook\templates\settings.html:23 msgid "Account" msgstr "" -#: .\cookbook\templates\settings.html:38 -msgid "Link social account" +#: .\cookbook\templates\settings.html:27 +msgid "Preferences" msgstr "" -#: .\cookbook\templates\settings.html:42 +#: .\cookbook\templates\settings.html:31 +#, fuzzy +#| msgid "Settings" +msgid "API-Settings" +msgstr "Definições" + +#: .\cookbook\templates\settings.html:39 +#, fuzzy +#| msgid "Settings" +msgid "Name Settings" +msgstr "Definições" + +#: .\cookbook\templates\settings.html:47 +#, fuzzy +#| msgid "Settings" +msgid "Password Settings" +msgstr "Definições" + +#: .\cookbook\templates\settings.html:55 +#, fuzzy +#| msgid "Settings" +msgid "Email Settings" +msgstr "Definições" + +#: .\cookbook\templates\settings.html:57 +msgid "Manage Email Settings" +msgstr "" + +#: .\cookbook\templates\settings.html:61 +msgid "Social" +msgstr "" + +#: .\cookbook\templates\settings.html:63 +msgid "Manage Social Accounts" +msgstr "" + +#: .\cookbook\templates\settings.html:75 msgid "Language" msgstr "" -#: .\cookbook\templates\settings.html:67 +#: .\cookbook\templates\settings.html:105 msgid "Style" msgstr "" -#: .\cookbook\templates\settings.html:79 +#: .\cookbook\templates\settings.html:125 msgid "API Token" msgstr "" -#: .\cookbook\templates\settings.html:80 +#: .\cookbook\templates\settings.html:126 msgid "" "You can use both basic authentication and token based authentication to " "access the REST API." msgstr "" -#: .\cookbook\templates\settings.html:92 +#: .\cookbook\templates\settings.html:143 msgid "" "Use the token as an Authorization header prefixed by the word token as shown " "in the following examples:" msgstr "" -#: .\cookbook\templates\settings.html:94 +#: .\cookbook\templates\settings.html:145 msgid "or" msgstr "" @@ -1442,58 +1716,55 @@ msgstr "" msgid "Create Superuser account" msgstr "" -#: .\cookbook\templates\shopping_list.html:75 +#: .\cookbook\templates\shopping_list.html:79 msgid "Shopping Recipes" msgstr "" -#: .\cookbook\templates\shopping_list.html:79 +#: .\cookbook\templates\shopping_list.html:83 msgid "No recipes selected" msgstr "" -#: .\cookbook\templates\shopping_list.html:146 +#: .\cookbook\templates\shopping_list.html:150 msgid "Entry Mode" msgstr "" -#: .\cookbook\templates\shopping_list.html:154 +#: .\cookbook\templates\shopping_list.html:158 msgid "Add Entry" msgstr "" -#: .\cookbook\templates\shopping_list.html:170 +#: .\cookbook\templates\shopping_list.html:174 msgid "Amount" msgstr "" -#: .\cookbook\templates\shopping_list.html:226 +#: .\cookbook\templates\shopping_list.html:230 +#: .\cookbook\templates\supermarket.html:7 msgid "Supermarket" msgstr "" -#: .\cookbook\templates\shopping_list.html:236 +#: .\cookbook\templates\shopping_list.html:240 msgid "Select Supermarket" msgstr "" -#: .\cookbook\templates\shopping_list.html:260 +#: .\cookbook\templates\shopping_list.html:264 msgid "Select User" msgstr "" -#: .\cookbook\templates\shopping_list.html:279 +#: .\cookbook\templates\shopping_list.html:283 msgid "Finished" msgstr "" -#: .\cookbook\templates\shopping_list.html:292 +#: .\cookbook\templates\shopping_list.html:296 msgid "You are offline, shopping list might not syncronize." msgstr "" -#: .\cookbook\templates\shopping_list.html:357 +#: .\cookbook\templates\shopping_list.html:361 msgid "Copy/Export" msgstr "" -#: .\cookbook\templates\shopping_list.html:361 +#: .\cookbook\templates\shopping_list.html:365 msgid "List Prefix" msgstr "" -#: .\cookbook\templates\shopping_list.html:708 -msgid "There was an error creating a resource!" -msgstr "" - #: .\cookbook\templates\socialaccount\connections.html:4 #: .\cookbook\templates\socialaccount\connections.html:7 msgid "Account Connections" @@ -1505,10 +1776,6 @@ msgid "" " accounts:" msgstr "" -#: .\cookbook\templates\socialaccount\connections.html:36 -msgid "Remove" -msgstr "" - #: .\cookbook\templates\socialaccount\connections.html:44 msgid "" "You currently have no social network accounts connected to this account." @@ -1518,38 +1785,91 @@ msgstr "" msgid "Add a 3rd Party Account" msgstr "" -#: .\cookbook\templates\stats.html:4 -msgid "Stats" +#: .\cookbook\templates\space.html:18 +msgid "Manage Subscription" msgstr "" -#: .\cookbook\templates\stats.html:19 +#: .\cookbook\templates\space.html:26 .\cookbook\templates\stats.html:19 msgid "Number of objects" msgstr "" -#: .\cookbook\templates\stats.html:30 +#: .\cookbook\templates\space.html:39 .\cookbook\templates\stats.html:30 msgid "Recipe Imports" msgstr "" -#: .\cookbook\templates\stats.html:38 +#: .\cookbook\templates\space.html:47 .\cookbook\templates\stats.html:38 msgid "Objects stats" msgstr "" -#: .\cookbook\templates\stats.html:41 +#: .\cookbook\templates\space.html:50 .\cookbook\templates\stats.html:41 msgid "Recipes without Keywords" msgstr "" -#: .\cookbook\templates\stats.html:43 +#: .\cookbook\templates\space.html:52 .\cookbook\templates\stats.html:43 msgid "External Recipes" msgstr "" -#: .\cookbook\templates\stats.html:45 +#: .\cookbook\templates\space.html:54 .\cookbook\templates\stats.html:45 msgid "Internal Recipes" msgstr "" -#: .\cookbook\templates\system.html:21 .\cookbook\views\lists.py:115 +#: .\cookbook\templates\space.html:67 +msgid "Members" +msgstr "" + +#: .\cookbook\templates\space.html:71 +msgid "Invite User" +msgstr "" + +#: .\cookbook\templates\space.html:82 +msgid "User" +msgstr "" + +#: .\cookbook\templates\space.html:83 +msgid "Groups" +msgstr "" + +#: .\cookbook\templates\space.html:99 +#, fuzzy +#| msgid "Admin" +msgid "admin" +msgstr "Administração" + +#: .\cookbook\templates\space.html:100 +msgid "user" +msgstr "" + +#: .\cookbook\templates\space.html:101 +msgid "guest" +msgstr "" + +#: .\cookbook\templates\space.html:102 +msgid "remove" +msgstr "" + +#: .\cookbook\templates\space.html:106 +msgid "Update" +msgstr "" + +#: .\cookbook\templates\space.html:110 +msgid "You cannot edit yourself." +msgstr "" + +#: .\cookbook\templates\space.html:117 +#, fuzzy +#| msgid "There are no recipes in this book yet." +msgid "There are no members in your space yet!" +msgstr "Ainda não há receitas neste livro." + +#: .\cookbook\templates\space.html:124 .\cookbook\templates\system.html:21 +#: .\cookbook\views\lists.py:115 msgid "Invite Links" msgstr "" +#: .\cookbook\templates\stats.html:4 +msgid "Stats" +msgstr "" + #: .\cookbook\templates\system.html:22 msgid "Show Links" msgstr "" @@ -1647,45 +1967,155 @@ msgid "" " " msgstr "" -#: .\cookbook\templates\url_import.html:5 +#: .\cookbook\templates\url_import.html:6 msgid "URL Import" msgstr "" -#: .\cookbook\templates\url_import.html:23 +#: .\cookbook\templates\url_import.html:31 +msgid "Drag me to your bookmarks to import recipes from anywhere" +msgstr "" + +#: .\cookbook\templates\url_import.html:32 +msgid "Bookmark Me!" +msgstr "" + +#: .\cookbook\templates\url_import.html:61 msgid "Enter website URL" msgstr "" -#: .\cookbook\templates\url_import.html:36 -msgid "Enter json directly" +#: .\cookbook\templates\url_import.html:97 +msgid "Select recipe files to import or drop them here..." msgstr "" -#: .\cookbook\templates\url_import.html:57 +#: .\cookbook\templates\url_import.html:118 +msgid "Paste json or html source here to load recipe." +msgstr "" + +#: .\cookbook\templates\url_import.html:146 +#, fuzzy +#| msgid "View Recipe" +msgid "Preview Recipe Data" +msgstr "Ver Receita" + +#: .\cookbook\templates\url_import.html:147 +msgid "Drag recipe attributes from the right into the appropriate box below." +msgstr "" + +#: .\cookbook\templates\url_import.html:156 +#: .\cookbook\templates\url_import.html:173 +#: .\cookbook\templates\url_import.html:190 +#: .\cookbook\templates\url_import.html:209 +#: .\cookbook\templates\url_import.html:227 +#: .\cookbook\templates\url_import.html:242 +#: .\cookbook\templates\url_import.html:257 +#: .\cookbook\templates\url_import.html:273 +#: .\cookbook\templates\url_import.html:300 +#: .\cookbook\templates\url_import.html:351 +msgid "Clear Contents" +msgstr "" + +#: .\cookbook\templates\url_import.html:158 +msgid "Text dragged here will be appended to the name." +msgstr "" + +#: .\cookbook\templates\url_import.html:175 +msgid "Text dragged here will be appended to the description." +msgstr "" + +#: .\cookbook\templates\url_import.html:192 +msgid "Keywords dragged here will be appended to current list" +msgstr "" + +#: .\cookbook\templates\url_import.html:207 +msgid "Image" +msgstr "" + +#: .\cookbook\templates\url_import.html:239 +#, fuzzy +#| msgid "Time" +msgid "Prep Time" +msgstr "Tempo" + +#: .\cookbook\templates\url_import.html:254 +#, fuzzy +#| msgid "Time" +msgid "Cook Time" +msgstr "Tempo" + +#: .\cookbook\templates\url_import.html:275 +msgid "Ingredients dragged here will be appended to current list." +msgstr "" + +#: .\cookbook\templates\url_import.html:302 +msgid "" +"Recipe instructions dragged here will be appended to current instructions." +msgstr "" + +#: .\cookbook\templates\url_import.html:325 +#, fuzzy +#| msgid "Discovered Recipes" +msgid "Discovered Attributes" +msgstr "Descobrir Receitas" + +#: .\cookbook\templates\url_import.html:327 +msgid "" +"Drag recipe attributes from below into the appropriate box on the left. " +"Click any node to display its full properties." +msgstr "" + +#: .\cookbook\templates\url_import.html:344 +#, fuzzy +#| msgid "Show as header" +msgid "Show Blank Field" +msgstr "Mostrar como cabeçalho" + +#: .\cookbook\templates\url_import.html:349 +msgid "Blank Field" +msgstr "" + +#: .\cookbook\templates\url_import.html:353 +msgid "Items dragged to Blank Field will be appended." +msgstr "" + +#: .\cookbook\templates\url_import.html:400 +#, fuzzy +#| msgid "Delete Step" +msgid "Delete Text" +msgstr "Apagar Passo" + +#: .\cookbook\templates\url_import.html:413 +#, fuzzy +#| msgid "Delete Recipe" +msgid "Delete image" +msgstr "Apagar Receita" + +#: .\cookbook\templates\url_import.html:429 msgid "Recipe Name" msgstr "" -#: .\cookbook\templates\url_import.html:62 +#: .\cookbook\templates\url_import.html:433 msgid "Recipe Description" msgstr "" -#: .\cookbook\templates\url_import.html:123 -#: .\cookbook\templates\url_import.html:155 -#: .\cookbook\templates\url_import.html:211 +#: .\cookbook\templates\url_import.html:494 +#: .\cookbook\templates\url_import.html:526 +#: .\cookbook\templates\url_import.html:582 msgid "Select one" msgstr "" -#: .\cookbook\templates\url_import.html:225 +#: .\cookbook\templates\url_import.html:596 msgid "All Keywords" msgstr "" -#: .\cookbook\templates\url_import.html:228 +#: .\cookbook\templates\url_import.html:599 msgid "Import all keywords, not only the ones already existing." msgstr "" -#: .\cookbook\templates\url_import.html:255 +#: .\cookbook\templates\url_import.html:626 msgid "Information" msgstr "" -#: .\cookbook\templates\url_import.html:257 +#: .\cookbook\templates\url_import.html:628 msgid "" " Only websites containing ld+json or microdata information can currently\n" " be imported. Most big recipe pages " @@ -1696,48 +2126,73 @@ msgid "" " github issues." msgstr "" -#: .\cookbook\templates\url_import.html:265 +#: .\cookbook\templates\url_import.html:636 msgid "Google ld+json Info" msgstr "" -#: .\cookbook\templates\url_import.html:268 +#: .\cookbook\templates\url_import.html:639 msgid "GitHub Issues" msgstr "" -#: .\cookbook\templates\url_import.html:270 +#: .\cookbook\templates\url_import.html:641 msgid "Recipe Markup Specification" msgstr "" -#: .\cookbook\views\api.py:71 +#: .\cookbook\views\api.py:77 msgid "Parameter updated_at incorrectly formatted" msgstr "" -#: .\cookbook\views\api.py:455 .\cookbook\views\views.py:226 +#: .\cookbook\views\api.py:553 .\cookbook\views\views.py:295 msgid "This feature is not available in the demo version!" msgstr "" -#: .\cookbook\views\api.py:478 +#: .\cookbook\views\api.py:576 msgid "Sync successful!" msgstr "" -#: .\cookbook\views\api.py:483 +#: .\cookbook\views\api.py:581 msgid "Error synchronizing with Storage" msgstr "" -#: .\cookbook\views\api.py:556 .\cookbook\views\api.py:576 +#: .\cookbook\views\api.py:649 +msgid "Nothing to do." +msgstr "" + +#: .\cookbook\views\api.py:664 +msgid "The requested site provided malformed data and cannot be read." +msgstr "" + +#: .\cookbook\views\api.py:671 msgid "The requested page could not be found." msgstr "" -#: .\cookbook\views\api.py:585 +#: .\cookbook\views\api.py:680 msgid "" -"The requested page refused to provide any information (Status Code 403)." +"The requested site does not provide any recognized data format to import the " +"recipe from." +msgstr "Esta página não contém uma receita que eu consiga entender." + +#: .\cookbook\views\api.py:694 +msgid "No useable data could be found." msgstr "" -#: .\cookbook\views\api.py:611 -msgid "Could not parse correctly..." +#: .\cookbook\views\api.py:710 +msgid "I couldn't find anything to do." msgstr "" -#: .\cookbook\views\data.py:94 +#: .\cookbook\views\data.py:30 .\cookbook\views\data.py:121 +#: .\cookbook\views\edit.py:50 .\cookbook\views\import_export.py:67 +#: .\cookbook\views\new.py:32 +msgid "You have reached the maximum number of recipes for your space." +msgstr "" + +#: .\cookbook\views\data.py:34 .\cookbook\views\data.py:125 +#: .\cookbook\views\edit.py:54 .\cookbook\views\import_export.py:71 +#: .\cookbook\views\new.py:36 +msgid "You have more users than allowed in your space." +msgstr "" + +#: .\cookbook\views\data.py:103 #, python-format msgid "Batch edit done. %(count)d recipe was updated." msgid_plural "Batch edit done. %(count)d Recipes where updated." @@ -1749,7 +2204,7 @@ msgid "Monitor" msgstr "" #: .\cookbook\views\delete.py:96 .\cookbook\views\lists.py:102 -#: .\cookbook\views\new.py:86 +#: .\cookbook\views\new.py:98 msgid "Storage Backend" msgstr "" @@ -1758,8 +2213,8 @@ msgid "" "Could not delete this storage backend as it is used in at least one monitor." msgstr "" -#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:204 -#: .\cookbook\views\new.py:144 +#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:213 +#: .\cookbook\views\new.py:156 msgid "Recipe Book" msgstr "" @@ -1767,55 +2222,55 @@ msgstr "" msgid "Bookmarks" msgstr "" -#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:214 +#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:252 msgid "Invite Link" msgstr "" -#: .\cookbook\views\edit.py:110 +#: .\cookbook\views\edit.py:119 msgid "Food" msgstr "" -#: .\cookbook\views\edit.py:119 +#: .\cookbook\views\edit.py:128 msgid "You cannot edit this storage!" msgstr "" -#: .\cookbook\views\edit.py:139 +#: .\cookbook\views\edit.py:148 msgid "Storage saved!" msgstr "" -#: .\cookbook\views\edit.py:145 +#: .\cookbook\views\edit.py:154 msgid "There was an error updating this storage backend!" msgstr "" -#: .\cookbook\views\edit.py:156 +#: .\cookbook\views\edit.py:165 msgid "Storage" msgstr "" -#: .\cookbook\views\edit.py:252 +#: .\cookbook\views\edit.py:261 msgid "Changes saved!" msgstr "" -#: .\cookbook\views\edit.py:256 +#: .\cookbook\views\edit.py:265 msgid "Error saving changes!" msgstr "" -#: .\cookbook\views\edit.py:289 +#: .\cookbook\views\edit.py:299 msgid "Units merged!" msgstr "" -#: .\cookbook\views\edit.py:291 .\cookbook\views\edit.py:307 +#: .\cookbook\views\edit.py:301 .\cookbook\views\edit.py:317 msgid "Cannot merge with the same object!" msgstr "" -#: .\cookbook\views\edit.py:305 +#: .\cookbook\views\edit.py:315 msgid "Foods merged!" msgstr "" -#: .\cookbook\views\import_export.py:73 +#: .\cookbook\views\import_export.py:93 msgid "Importing is not implemented for this provider" msgstr "" -#: .\cookbook\views\import_export.py:92 +#: .\cookbook\views\import_export.py:115 msgid "Exporting is not implemented for this provider" msgstr "" @@ -1831,45 +2286,124 @@ msgstr "" msgid "Shopping Lists" msgstr "" -#: .\cookbook\views\new.py:111 +#: .\cookbook\views\new.py:123 msgid "Imported new recipe!" msgstr "" -#: .\cookbook\views\new.py:114 +#: .\cookbook\views\new.py:126 msgid "There was an error importing this recipe!" msgstr "" -#: .\cookbook\views\views.py:123 +#: .\cookbook\views\new.py:226 +msgid "Hello" +msgstr "" + +#: .\cookbook\views\new.py:226 +msgid "You have been invited by " +msgstr "" + +#: .\cookbook\views\new.py:227 +msgid " to join their Tandoor Recipes space " +msgstr "" + +#: .\cookbook\views\new.py:228 +msgid "Click the following link to activate your account: " +msgstr "" + +#: .\cookbook\views\new.py:229 +msgid "" +"If the link does not work use the following code to manually join the space: " +msgstr "" + +#: .\cookbook\views\new.py:230 +msgid "The invitation is valid until " +msgstr "" + +#: .\cookbook\views\new.py:231 +msgid "" +"Tandoor Recipes is an Open Source recipe manager. Check it out on GitHub " +msgstr "" + +#: .\cookbook\views\new.py:234 +msgid "Tandoor Recipes Invite" +msgstr "" + +#: .\cookbook\views\new.py:241 +msgid "Invite link successfully send to user." +msgstr "" + +#: .\cookbook\views\new.py:244 +msgid "" +"You have send to many emails, please share the link manually or wait a few " +"hours." +msgstr "" + +#: .\cookbook\views\new.py:246 +msgid "Email to user could not be send, please share link manually." +msgstr "" + +#: .\cookbook\views\views.py:125 +msgid "" +"You have successfully created your own recipe space. Start by adding some " +"recipes or invite other people to join you." +msgstr "" + +#: .\cookbook\views\views.py:173 msgid "You do not have the required permissions to perform this action!" msgstr "" -#: .\cookbook\views\views.py:134 +#: .\cookbook\views\views.py:184 msgid "Comment saved!" msgstr "" -#: .\cookbook\views\views.py:326 +#: .\cookbook\views\views.py:396 msgid "" "The setup page can only be used to create the first user! If you have " "forgotten your superuser credentials please consult the django documentation " "on how to reset passwords." msgstr "" -#: .\cookbook\views\views.py:333 .\cookbook\views\views.py:378 +#: .\cookbook\views\views.py:403 msgid "Passwords dont match!" msgstr "" -#: .\cookbook\views\views.py:349 .\cookbook\views\views.py:385 +#: .\cookbook\views\views.py:419 msgid "User has been created, please login!" msgstr "" -#: .\cookbook\views\views.py:365 +#: .\cookbook\views\views.py:435 msgid "Malformed Invite Link supplied!" msgstr "" -#: .\cookbook\views\views.py:405 +#: .\cookbook\views\views.py:441 +#, fuzzy +#| msgid "You are not logged in and therefore cannot view this page!" +msgid "You are already member of a space and therefore cannot join this one." +msgstr "Autenticação necessária para aceder a esta página!" + +#: .\cookbook\views\views.py:452 +msgid "Successfully joined space." +msgstr "" + +#: .\cookbook\views\views.py:458 msgid "Invite Link not valid or already used!" msgstr "" +#~ msgid "" +#~ "A username is not required, if left blank the new user can choose one." +#~ msgstr "" +#~ "Um nome de utilizador não é obrigatório. Se deixado em branco o novo " +#~ "utilizador pode escolher o seu nome." + +#~ msgid "Link" +#~ msgstr "Ligação" + +#~ msgid "Logout" +#~ msgstr "Sair" + +#~ msgid "Website Import" +#~ msgstr "Importar Website" + #~ msgid "" #~ "Include - [ ] in list for easier usage in markdown based " #~ "documents." diff --git a/cookbook/locale/rn/LC_MESSAGES/django.po b/cookbook/locale/rn/LC_MESSAGES/django.po index a0a54d56..404178a1 100644 --- a/cookbook/locale/rn/LC_MESSAGES/django.po +++ b/cookbook/locale/rn/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-04-11 15:09+0200\n" +"POT-Creation-Date: 2021-06-12 20:30+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,48 +18,49 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: .\cookbook\filters.py:23 .\cookbook\templates\base.html:91 -#: .\cookbook\templates\forms\edit_internal_recipe.html:219 +#: .\cookbook\filters.py:23 .\cookbook\templates\base.html:98 +#: .\cookbook\templates\forms\edit_internal_recipe.html:246 #: .\cookbook\templates\forms\ingredients.html:34 -#: .\cookbook\templates\stats.html:28 .\cookbook\views\lists.py:67 +#: .\cookbook\templates\space.html:37 .\cookbook\templates\stats.html:28 +#: .\cookbook\templates\url_import.html:270 .\cookbook\views\lists.py:67 msgid "Ingredients" msgstr "" -#: .\cookbook\forms.py:45 +#: .\cookbook\forms.py:49 msgid "" "Color of the top navigation bar. Not all colors work with all themes, just " "try them out!" msgstr "" -#: .\cookbook\forms.py:46 +#: .\cookbook\forms.py:51 msgid "Default Unit to be used when inserting a new ingredient into a recipe." msgstr "" -#: .\cookbook\forms.py:47 +#: .\cookbook\forms.py:53 msgid "" "Enables support for fractions in ingredient amounts (e.g. convert decimals " "to fractions automatically)" msgstr "" -#: .\cookbook\forms.py:48 +#: .\cookbook\forms.py:56 msgid "" "Users with whom newly created meal plan/shopping list entries should be " "shared by default." msgstr "" -#: .\cookbook\forms.py:49 +#: .\cookbook\forms.py:58 msgid "Show recently viewed recipes on search page." msgstr "" -#: .\cookbook\forms.py:50 +#: .\cookbook\forms.py:59 msgid "Number of decimals to round ingredients." msgstr "" -#: .\cookbook\forms.py:51 +#: .\cookbook\forms.py:60 msgid "If you want to be able to create and see comments underneath recipes." msgstr "" -#: .\cookbook\forms.py:53 +#: .\cookbook\forms.py:62 msgid "" "Setting to 0 will disable auto sync. When viewing a shopping list the list " "is updated every set seconds to sync changes someone else might have made. " @@ -67,167 +68,181 @@ msgid "" "mobile data. If lower than instance limit it is reset when saving." msgstr "" -#: .\cookbook\forms.py:56 +#: .\cookbook\forms.py:65 msgid "Makes the navbar stick to the top of the page." msgstr "" -#: .\cookbook\forms.py:72 +#: .\cookbook\forms.py:81 msgid "" "Both fields are optional. If none are given the username will be displayed " "instead" msgstr "" -#: .\cookbook\forms.py:93 .\cookbook\forms.py:315 -#: .\cookbook\templates\forms\edit_internal_recipe.html:45 +#: .\cookbook\forms.py:102 .\cookbook\forms.py:331 +#: .\cookbook\templates\forms\edit_internal_recipe.html:49 +#: .\cookbook\templates\url_import.html:154 msgid "Name" msgstr "" -#: .\cookbook\forms.py:94 .\cookbook\forms.py:316 -#: .\cookbook\templates\base.html:98 -#: .\cookbook\templates\forms\edit_internal_recipe.html:81 -#: .\cookbook\templates\stats.html:24 .\cookbook\templates\url_import.html:202 +#: .\cookbook\forms.py:103 .\cookbook\forms.py:332 +#: .\cookbook\templates\base.html:105 +#: .\cookbook\templates\forms\edit_internal_recipe.html:85 +#: .\cookbook\templates\space.html:33 .\cookbook\templates\stats.html:24 +#: .\cookbook\templates\url_import.html:188 +#: .\cookbook\templates\url_import.html:573 msgid "Keywords" msgstr "" -#: .\cookbook\forms.py:95 +#: .\cookbook\forms.py:104 msgid "Preparation time in minutes" msgstr "" -#: .\cookbook\forms.py:96 +#: .\cookbook\forms.py:105 msgid "Waiting time (cooking/baking) in minutes" msgstr "" -#: .\cookbook\forms.py:97 .\cookbook\forms.py:317 +#: .\cookbook\forms.py:106 .\cookbook\forms.py:333 msgid "Path" msgstr "" -#: .\cookbook\forms.py:98 +#: .\cookbook\forms.py:107 msgid "Storage UID" msgstr "" -#: .\cookbook\forms.py:121 +#: .\cookbook\forms.py:133 msgid "Default" msgstr "" -#: .\cookbook\forms.py:130 +#: .\cookbook\forms.py:144 .\cookbook\templates\url_import.html:90 msgid "" "To prevent duplicates recipes with the same name as existing ones are " "ignored. Check this box to import everything." msgstr "" -#: .\cookbook\forms.py:149 +#: .\cookbook\forms.py:164 msgid "New Unit" msgstr "" -#: .\cookbook\forms.py:150 +#: .\cookbook\forms.py:165 msgid "New unit that other gets replaced by." msgstr "" -#: .\cookbook\forms.py:155 +#: .\cookbook\forms.py:170 msgid "Old Unit" msgstr "" -#: .\cookbook\forms.py:156 +#: .\cookbook\forms.py:171 msgid "Unit that should be replaced." msgstr "" -#: .\cookbook\forms.py:172 +#: .\cookbook\forms.py:187 msgid "New Food" msgstr "" -#: .\cookbook\forms.py:173 +#: .\cookbook\forms.py:188 msgid "New food that other gets replaced by." msgstr "" -#: .\cookbook\forms.py:178 +#: .\cookbook\forms.py:193 msgid "Old Food" msgstr "" -#: .\cookbook\forms.py:179 +#: .\cookbook\forms.py:194 msgid "Food that should be replaced." msgstr "" -#: .\cookbook\forms.py:197 +#: .\cookbook\forms.py:212 msgid "Add your comment: " msgstr "" -#: .\cookbook\forms.py:238 +#: .\cookbook\forms.py:253 msgid "Leave empty for dropbox and enter app password for nextcloud." msgstr "" -#: .\cookbook\forms.py:245 +#: .\cookbook\forms.py:260 msgid "Leave empty for nextcloud and enter api token for dropbox." msgstr "" -#: .\cookbook\forms.py:253 +#: .\cookbook\forms.py:269 msgid "" "Leave empty for dropbox and enter only base url for nextcloud (/remote." "php/webdav/ is added automatically)" msgstr "" -#: .\cookbook\forms.py:291 +#: .\cookbook\forms.py:307 msgid "Search String" msgstr "" -#: .\cookbook\forms.py:318 +#: .\cookbook\forms.py:334 msgid "File ID" msgstr "" -#: .\cookbook\forms.py:354 +#: .\cookbook\forms.py:370 msgid "You must provide at least a recipe or a title." msgstr "" -#: .\cookbook\forms.py:367 +#: .\cookbook\forms.py:383 msgid "You can list default users to share recipes with in the settings." msgstr "" -#: .\cookbook\forms.py:368 -#: .\cookbook\templates\forms\edit_internal_recipe.html:377 +#: .\cookbook\forms.py:384 +#: .\cookbook\templates\forms\edit_internal_recipe.html:404 msgid "" "You can use markdown to format this field. See the docs here" msgstr "" -#: .\cookbook\forms.py:393 -msgid "A username is not required, if left blank the new user can choose one." +#: .\cookbook\forms.py:409 +msgid "Maximum number of users for this space reached." msgstr "" -#: .\cookbook\helper\permission_helper.py:123 -#: .\cookbook\helper\permission_helper.py:129 -#: .\cookbook\helper\permission_helper.py:151 -#: .\cookbook\helper\permission_helper.py:196 -#: .\cookbook\helper\permission_helper.py:210 -#: .\cookbook\helper\permission_helper.py:221 -#: .\cookbook\helper\permission_helper.py:232 .\cookbook\views\data.py:30 -#: .\cookbook\views\views.py:112 .\cookbook\views\views.py:116 -#: .\cookbook\views\views.py:184 -msgid "You do not have the required permissions to view this page!" +#: .\cookbook\forms.py:415 +msgid "Email address already taken!" msgstr "" -#: .\cookbook\helper\permission_helper.py:141 +#: .\cookbook\forms.py:423 +msgid "" +"An email address is not required but if present the invite link will be send " +"to the user." +msgstr "" + +#: .\cookbook\forms.py:438 +msgid "Name already taken." +msgstr "" + +#: .\cookbook\forms.py:449 +msgid "Accept Terms and Privacy" +msgstr "" + +#: .\cookbook\helper\AllAuthCustomAdapter.py:30 +msgid "" +"In order to prevent spam, the requested email was not send. Please wait a " +"few minutes and try again." +msgstr "" + +#: .\cookbook\helper\permission_helper.py:124 +#: .\cookbook\helper\permission_helper.py:144 .\cookbook\views\views.py:147 msgid "You are not logged in and therefore cannot view this page!" msgstr "" -#: .\cookbook\helper\permission_helper.py:145 -#: .\cookbook\helper\permission_helper.py:167 -#: .\cookbook\helper\permission_helper.py:182 +#: .\cookbook\helper\permission_helper.py:127 +#: .\cookbook\helper\permission_helper.py:132 +#: .\cookbook\helper\permission_helper.py:154 +#: .\cookbook\helper\permission_helper.py:199 +#: .\cookbook\helper\permission_helper.py:213 +#: .\cookbook\helper\permission_helper.py:224 +#: .\cookbook\helper\permission_helper.py:235 .\cookbook\views\data.py:39 +#: .\cookbook\views\views.py:158 .\cookbook\views\views.py:165 +#: .\cookbook\views\views.py:253 +msgid "You do not have the required permissions to view this page!" +msgstr "" + +#: .\cookbook\helper\permission_helper.py:148 +#: .\cookbook\helper\permission_helper.py:170 +#: .\cookbook\helper\permission_helper.py:185 msgid "You cannot interact with this object as it is not owned by you!" msgstr "" -#: .\cookbook\helper\recipe_url_import.py:40 .\cookbook\views\api.py:549 -msgid "The requested site provided malformed data and cannot be read." -msgstr "" - -#: .\cookbook\helper\recipe_url_import.py:54 -msgid "" -"The requested site does not provide any recognized data format to import the " -"recipe from." -msgstr "" - -#: .\cookbook\helper\recipe_url_import.py:160 -msgid "Imported from" -msgstr "" - #: .\cookbook\helper\template_helper.py:60 #: .\cookbook\helper\template_helper.py:62 msgid "Could not parse template code." @@ -237,42 +252,53 @@ msgstr "" #: .\cookbook\templates\import.html:14 .\cookbook\templates\import.html:20 #: .\cookbook\templates\import_response.html:7 #: .\cookbook\templates\test.html:14 .\cookbook\templates\test.html:20 -#: .\cookbook\templates\url_import.html:233 .\cookbook\views\delete.py:60 -#: .\cookbook\views\edit.py:190 +#: .\cookbook\templates\url_import.html:27 +#: .\cookbook\templates\url_import.html:101 +#: .\cookbook\templates\url_import.html:123 +#: .\cookbook\templates\url_import.html:317 +#: .\cookbook\templates\url_import.html:604 .\cookbook\views\delete.py:60 +#: .\cookbook\views\edit.py:199 msgid "Import" msgstr "" -#: .\cookbook\integration\integration.py:131 +#: .\cookbook\integration\integration.py:162 msgid "" "Importer expected a .zip file. Did you choose the correct importer type for " "your data ?" msgstr "" -#: .\cookbook\integration\integration.py:134 +#: .\cookbook\integration\integration.py:165 +msgid "" +"An unexpected error occurred during the import. Please make sure you have " +"uploaded a valid file." +msgstr "" + +#: .\cookbook\integration\integration.py:169 msgid "The following recipes were ignored because they already existed:" msgstr "" -#: .\cookbook\integration\integration.py:137 +#: .\cookbook\integration\integration.py:173 #, python-format msgid "Imported %s recipes." msgstr "" -#: .\cookbook\integration\paprika.py:44 +#: .\cookbook\integration\paprika.py:46 msgid "Notes" msgstr "" -#: .\cookbook\integration\paprika.py:47 +#: .\cookbook\integration\paprika.py:49 msgid "Nutritional Information" msgstr "" -#: .\cookbook\integration\paprika.py:50 +#: .\cookbook\integration\paprika.py:53 msgid "Source" msgstr "" #: .\cookbook\integration\safron.py:23 -#: .\cookbook\templates\forms\edit_internal_recipe.html:75 +#: .\cookbook\templates\forms\edit_internal_recipe.html:79 #: .\cookbook\templates\include\log_cooking.html:16 -#: .\cookbook\templates\url_import.html:84 +#: .\cookbook\templates\url_import.html:224 +#: .\cookbook\templates\url_import.html:455 msgid "Servings" msgstr "" @@ -281,11 +307,11 @@ msgid "Waiting time" msgstr "" #: .\cookbook\integration\safron.py:27 -#: .\cookbook\templates\forms\edit_internal_recipe.html:69 +#: .\cookbook\templates\forms\edit_internal_recipe.html:73 msgid "Preparation Time" msgstr "" -#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:71 +#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:78 #: .\cookbook\templates\forms\ingredients.html:7 #: .\cookbook\templates\index.html:7 msgid "Cookbook" @@ -311,44 +337,72 @@ msgstr "" msgid "Other" msgstr "" -#: .\cookbook\models.py:110 .\cookbook\templates\shopping_list.html:48 +#: .\cookbook\models.py:71 +msgid "" +"Maximum file storage for space in MB. 0 for unlimited, -1 to disable file " +"upload." +msgstr "" + +#: .\cookbook\models.py:121 .\cookbook\templates\search.html:7 +#: .\cookbook\templates\shopping_list.html:52 msgid "Search" msgstr "" -#: .\cookbook\models.py:111 .\cookbook\templates\base.html:85 +#: .\cookbook\models.py:122 .\cookbook\templates\base.html:92 #: .\cookbook\templates\meal_plan.html:5 .\cookbook\views\delete.py:152 -#: .\cookbook\views\edit.py:224 .\cookbook\views\new.py:188 +#: .\cookbook\views\edit.py:233 .\cookbook\views\new.py:201 msgid "Meal-Plan" msgstr "" -#: .\cookbook\models.py:112 .\cookbook\templates\base.html:82 +#: .\cookbook\models.py:123 .\cookbook\templates\base.html:89 msgid "Books" msgstr "" -#: .\cookbook\models.py:119 +#: .\cookbook\models.py:131 msgid "Small" msgstr "" -#: .\cookbook\models.py:119 +#: .\cookbook\models.py:131 msgid "Large" msgstr "" -#: .\cookbook\models.py:327 -#: .\cookbook\templates\forms\edit_internal_recipe.html:198 +#: .\cookbook\models.py:131 .\cookbook\templates\generic\new_template.html:6 +#: .\cookbook\templates\generic\new_template.html:14 +#: .\cookbook\templates\meal_plan.html:323 +msgid "New" +msgstr "" + +#: .\cookbook\models.py:340 +#: .\cookbook\templates\forms\edit_internal_recipe.html:202 msgid "Text" msgstr "" -#: .\cookbook\models.py:327 -#: .\cookbook\templates\forms\edit_internal_recipe.html:199 +#: .\cookbook\models.py:340 +#: .\cookbook\templates\forms\edit_internal_recipe.html:203 msgid "Time" msgstr "" +#: .\cookbook\models.py:340 +#: .\cookbook\templates\forms\edit_internal_recipe.html:204 +#: .\cookbook\templates\forms\edit_internal_recipe.html:218 +msgid "File" +msgstr "" + +#: .\cookbook\serializer.py:109 +msgid "File uploads are not enabled for this Space." +msgstr "" + +#: .\cookbook\serializer.py:117 +msgid "You have reached your file upload limit." +msgstr "" + #: .\cookbook\tables.py:35 .\cookbook\templates\books.html:36 #: .\cookbook\templates\generic\edit_template.html:6 #: .\cookbook\templates\generic\edit_template.html:14 #: .\cookbook\templates\meal_plan.html:281 #: .\cookbook\templates\recipes_table.html:82 #: .\cookbook\templates\shopping_list.html:33 +#: .\cookbook\templates\space.html:84 msgid "Edit" msgstr "" @@ -362,10 +416,6 @@ msgstr "" msgid "Delete" msgstr "" -#: .\cookbook\tables.py:144 -msgid "Link" -msgstr "" - #: .\cookbook\templates\404.html:5 msgid "404 Error" msgstr "" @@ -382,21 +432,120 @@ msgstr "" msgid "Report a Bug" msgstr "" -#: .\cookbook\templates\account\login.html:7 -#: .\cookbook\templates\base.html:170 +#: .\cookbook\templates\account\email.html:6 +#: .\cookbook\templates\account\email.html:9 +msgid "E-mail Addresses" +msgstr "" + +#: .\cookbook\templates\account\email.html:11 +msgid "The following e-mail addresses are associated with your account:" +msgstr "" + +#: .\cookbook\templates\account\email.html:28 +msgid "Verified" +msgstr "" + +#: .\cookbook\templates\account\email.html:30 +msgid "Unverified" +msgstr "" + +#: .\cookbook\templates\account\email.html:32 +msgid "Primary" +msgstr "" + +#: .\cookbook\templates\account\email.html:39 +msgid "Make Primary" +msgstr "" + +#: .\cookbook\templates\account\email.html:41 +msgid "Re-send Verification" +msgstr "" + +#: .\cookbook\templates\account\email.html:42 +#: .\cookbook\templates\socialaccount\connections.html:36 +msgid "Remove" +msgstr "" + +#: .\cookbook\templates\account\email.html:50 +msgid "Warning:" +msgstr "" + +#: .\cookbook\templates\account\email.html:50 +msgid "" +"You currently do not have any e-mail address set up. You should really add " +"an e-mail address so you can receive notifications, reset your password, etc." +msgstr "" + +#: .\cookbook\templates\account\email.html:56 +msgid "Add E-mail Address" +msgstr "" + +#: .\cookbook\templates\account\email.html:61 +msgid "Add E-mail" +msgstr "" + +#: .\cookbook\templates\account\email.html:71 +msgid "Do you really want to remove the selected e-mail address?" +msgstr "" + +#: .\cookbook\templates\account\email_confirm.html:6 +#: .\cookbook\templates\account\email_confirm.html:10 +msgid "Confirm E-mail Address" +msgstr "" + +#: .\cookbook\templates\account\email_confirm.html:16 +#, python-format +msgid "" +"Please confirm that\n" +" %(email)s is an e-mail address " +"for user %(user_display)s\n" +" ." +msgstr "" + +#: .\cookbook\templates\account\email_confirm.html:22 +#: .\cookbook\templates\generic\delete_template.html:21 +msgid "Confirm" +msgstr "" + +#: .\cookbook\templates\account\email_confirm.html:29 +#, python-format +msgid "" +"This e-mail confirmation link expired or is invalid. Please\n" +" issue a new e-mail confirmation " +"request." +msgstr "" + +#: .\cookbook\templates\account\login.html:8 +#: .\cookbook\templates\base.html:180 msgid "Login" msgstr "" -#: .\cookbook\templates\account\login.html:13 -#: .\cookbook\templates\account\login.html:28 +#: .\cookbook\templates\account\login.html:15 +#: .\cookbook\templates\account\login.html:31 +#: .\cookbook\templates\account\signup.html:69 +#: .\cookbook\templates\account\signup_closed.html:15 msgid "Sign In" msgstr "" -#: .\cookbook\templates\account\login.html:38 +#: .\cookbook\templates\account\login.html:32 +msgid "Sign Up" +msgstr "" + +#: .\cookbook\templates\account\login.html:36 +#: .\cookbook\templates\account\login.html:37 +#: .\cookbook\templates\account\password_reset.html:29 +msgid "Reset My Password" +msgstr "" + +#: .\cookbook\templates\account\login.html:37 +msgid "Lost your password?" +msgstr "" + +#: .\cookbook\templates\account\login.html:48 msgid "Social Login" msgstr "" -#: .\cookbook\templates\account\login.html:39 +#: .\cookbook\templates\account\login.html:49 msgid "You can use any of the following providers to sign in." msgstr "" @@ -410,115 +559,161 @@ msgstr "" msgid "Are you sure you want to sign out?" msgstr "" -#: .\cookbook\templates\account\password_reset.html:5 -#: .\cookbook\templates\account\password_reset_done.html:5 +#: .\cookbook\templates\account\password_reset.html:7 +#: .\cookbook\templates\account\password_reset.html:13 +#: .\cookbook\templates\account\password_reset_done.html:7 +#: .\cookbook\templates\account\password_reset_done.html:10 msgid "Password Reset" msgstr "" -#: .\cookbook\templates\account\password_reset.html:9 -#: .\cookbook\templates\account\password_reset_done.html:9 -msgid "Password reset is not implemented for the time being!" +#: .\cookbook\templates\account\password_reset.html:24 +msgid "" +"Forgotten your password? Enter your e-mail address below, and we'll send you " +"an e-mail allowing you to reset it." msgstr "" -#: .\cookbook\templates\account\signup.html:5 +#: .\cookbook\templates\account\password_reset.html:32 +msgid "Password reset is disabled on this instance." +msgstr "" + +#: .\cookbook\templates\account\password_reset_done.html:16 +msgid "" +"We have sent you an e-mail. Please contact us if you do not receive it " +"within a few minutes." +msgstr "" + +#: .\cookbook\templates\account\signup.html:6 msgid "Register" msgstr "" -#: .\cookbook\templates\account\signup.html:9 -msgid "Create your Account" +#: .\cookbook\templates\account\signup.html:12 +msgid "Create an Account" msgstr "" -#: .\cookbook\templates\account\signup.html:14 +#: .\cookbook\templates\account\signup.html:42 +msgid "I accept the follwoing" +msgstr "" + +#: .\cookbook\templates\account\signup.html:45 +msgid "Terms and Conditions" +msgstr "" + +#: .\cookbook\templates\account\signup.html:48 +msgid "and" +msgstr "" + +#: .\cookbook\templates\account\signup.html:52 +msgid "Privacy Policy" +msgstr "" + +#: .\cookbook\templates\account\signup.html:65 msgid "Create User" msgstr "" -#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:160 +#: .\cookbook\templates\account\signup.html:69 +msgid "Already have an account?" +msgstr "" + +#: .\cookbook\templates\account\signup_closed.html:5 +#: .\cookbook\templates\account\signup_closed.html:11 +msgid "Sign Up Closed" +msgstr "" + +#: .\cookbook\templates\account\signup_closed.html:13 +msgid "We are sorry, but the sign up is currently closed." +msgstr "" + +#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:170 #: .\cookbook\templates\rest_framework\api.html:11 msgid "API Documentation" msgstr "" -#: .\cookbook\templates\base.html:78 +#: .\cookbook\templates\base.html:85 msgid "Utensils" msgstr "" -#: .\cookbook\templates\base.html:88 +#: .\cookbook\templates\base.html:95 msgid "Shopping" msgstr "" -#: .\cookbook\templates\base.html:102 .\cookbook\views\delete.py:84 -#: .\cookbook\views\edit.py:93 .\cookbook\views\lists.py:26 -#: .\cookbook\views\new.py:66 +#: .\cookbook\templates\base.html:109 .\cookbook\views\delete.py:84 +#: .\cookbook\views\edit.py:102 .\cookbook\views\lists.py:26 +#: .\cookbook\views\new.py:78 msgid "Keyword" msgstr "" -#: .\cookbook\templates\base.html:104 +#: .\cookbook\templates\base.html:111 msgid "Batch Edit" msgstr "" -#: .\cookbook\templates\base.html:109 +#: .\cookbook\templates\base.html:116 msgid "Storage Data" msgstr "" -#: .\cookbook\templates\base.html:113 +#: .\cookbook\templates\base.html:120 msgid "Storage Backends" msgstr "" -#: .\cookbook\templates\base.html:115 +#: .\cookbook\templates\base.html:122 msgid "Configure Sync" msgstr "" -#: .\cookbook\templates\base.html:117 +#: .\cookbook\templates\base.html:124 msgid "Discovered Recipes" msgstr "" -#: .\cookbook\templates\base.html:119 +#: .\cookbook\templates\base.html:126 msgid "Discovery Log" msgstr "" -#: .\cookbook\templates\base.html:121 .\cookbook\templates\stats.html:10 +#: .\cookbook\templates\base.html:128 .\cookbook\templates\stats.html:10 msgid "Statistics" msgstr "" -#: .\cookbook\templates\base.html:123 +#: .\cookbook\templates\base.html:130 msgid "Units & Ingredients" msgstr "" -#: .\cookbook\templates\base.html:125 +#: .\cookbook\templates\base.html:132 .\cookbook\templates\index.html:47 msgid "Import Recipe" msgstr "" -#: .\cookbook\templates\base.html:144 .\cookbook\templates\settings.html:6 +#: .\cookbook\templates\base.html:151 .\cookbook\templates\settings.html:6 #: .\cookbook\templates\settings.html:16 msgid "Settings" msgstr "" -#: .\cookbook\templates\base.html:146 .\cookbook\templates\history.html:6 +#: .\cookbook\templates\base.html:153 .\cookbook\templates\history.html:6 #: .\cookbook\templates\history.html:14 msgid "History" msgstr "" -#: .\cookbook\templates\base.html:150 .\cookbook\templates\system.html:13 +#: .\cookbook\templates\base.html:155 .\cookbook\templates\space.html:7 +msgid "Space Settings" +msgstr "" + +#: .\cookbook\templates\base.html:160 .\cookbook\templates\system.html:13 msgid "System" msgstr "" -#: .\cookbook\templates\base.html:152 +#: .\cookbook\templates\base.html:162 msgid "Admin" msgstr "" -#: .\cookbook\templates\base.html:156 +#: .\cookbook\templates\base.html:166 msgid "Markdown Guide" msgstr "" -#: .\cookbook\templates\base.html:158 +#: .\cookbook\templates\base.html:168 msgid "GitHub" msgstr "" -#: .\cookbook\templates\base.html:162 +#: .\cookbook\templates\base.html:172 msgid "API Browser" msgstr "" -#: .\cookbook\templates\base.html:165 -msgid "Logout" +#: .\cookbook\templates\base.html:175 +msgid "Log out" msgstr "" #: .\cookbook\templates\batch\edit.html:6 @@ -533,7 +728,7 @@ msgstr "" msgid "Add the specified keywords to all recipes containing a word" msgstr "" -#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:76 +#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:85 msgid "Sync" msgstr "" @@ -560,7 +755,7 @@ msgstr "" msgid "Importing Recipes" msgstr "" -#: .\cookbook\templates\batch\waiting.html:23 +#: .\cookbook\templates\batch\waiting.html:28 msgid "" "This can take a few minutes, depending on the number of recipes in sync, " "please wait." @@ -597,26 +792,31 @@ msgid "Export Recipes" msgstr "" #: .\cookbook\templates\export.html:14 .\cookbook\templates\export.html:20 -#: .\cookbook\templates\shopping_list.html:347 +#: .\cookbook\templates\shopping_list.html:351 #: .\cookbook\templates\test2.html:14 .\cookbook\templates\test2.html:20 msgid "Export" msgstr "" +#: .\cookbook\templates\files.html:7 +msgid "Files" +msgstr "" + #: .\cookbook\templates\forms\edit_import_recipe.html:5 #: .\cookbook\templates\forms\edit_import_recipe.html:9 msgid "Import new Recipe" msgstr "" #: .\cookbook\templates\forms\edit_import_recipe.html:14 -#: .\cookbook\templates\forms\edit_internal_recipe.html:389 -#: .\cookbook\templates\forms\edit_internal_recipe.html:421 +#: .\cookbook\templates\forms\edit_internal_recipe.html:416 +#: .\cookbook\templates\forms\edit_internal_recipe.html:448 #: .\cookbook\templates\generic\edit_template.html:23 #: .\cookbook\templates\generic\new_template.html:23 #: .\cookbook\templates\include\log_cooking.html:28 #: .\cookbook\templates\meal_plan.html:325 -#: .\cookbook\templates\settings.html:28 .\cookbook\templates\settings.html:35 -#: .\cookbook\templates\settings.html:58 .\cookbook\templates\settings.html:73 -#: .\cookbook\templates\shopping_list.html:349 +#: .\cookbook\templates\settings.html:44 .\cookbook\templates\settings.html:52 +#: .\cookbook\templates\settings.html:96 +#: .\cookbook\templates\settings.html:114 +#: .\cookbook\templates\shopping_list.html:353 msgid "Save" msgstr "" @@ -625,179 +825,186 @@ msgstr "" msgid "Edit Recipe" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:52 +#: .\cookbook\templates\forms\edit_internal_recipe.html:56 +#: .\cookbook\templates\url_import.html:171 msgid "Description" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:72 +#: .\cookbook\templates\forms\edit_internal_recipe.html:76 msgid "Waiting Time" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:78 +#: .\cookbook\templates\forms\edit_internal_recipe.html:82 msgid "Servings Text" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:89 +#: .\cookbook\templates\forms\edit_internal_recipe.html:93 msgid "Select Keywords" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:90 -#: .\cookbook\templates\url_import.html:212 +#: .\cookbook\templates\forms\edit_internal_recipe.html:94 +#: .\cookbook\templates\url_import.html:583 msgid "Add Keyword" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:108 +#: .\cookbook\templates\forms\edit_internal_recipe.html:112 msgid "Nutrition" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:112 -#: .\cookbook\templates\forms\edit_internal_recipe.html:162 +#: .\cookbook\templates\forms\edit_internal_recipe.html:116 +#: .\cookbook\templates\forms\edit_internal_recipe.html:166 msgid "Delete Step" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:116 +#: .\cookbook\templates\forms\edit_internal_recipe.html:120 msgid "Calories" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:119 +#: .\cookbook\templates\forms\edit_internal_recipe.html:123 msgid "Carbohydrates" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:122 +#: .\cookbook\templates\forms\edit_internal_recipe.html:126 msgid "Fats" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:124 +#: .\cookbook\templates\forms\edit_internal_recipe.html:128 msgid "Proteins" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:146 -#: .\cookbook\templates\forms\edit_internal_recipe.html:454 +#: .\cookbook\templates\forms\edit_internal_recipe.html:150 +#: .\cookbook\templates\forms\edit_internal_recipe.html:481 msgid "Step" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:167 +#: .\cookbook\templates\forms\edit_internal_recipe.html:171 msgid "Show as header" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:173 +#: .\cookbook\templates\forms\edit_internal_recipe.html:177 msgid "Hide as header" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:178 +#: .\cookbook\templates\forms\edit_internal_recipe.html:182 msgid "Move Up" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:183 +#: .\cookbook\templates\forms\edit_internal_recipe.html:187 msgid "Move Down" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:192 +#: .\cookbook\templates\forms\edit_internal_recipe.html:196 msgid "Step Name" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:196 +#: .\cookbook\templates\forms\edit_internal_recipe.html:200 msgid "Step Type" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:207 +#: .\cookbook\templates\forms\edit_internal_recipe.html:212 msgid "Step time in Minutes" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:261 -#: .\cookbook\templates\shopping_list.html:183 -msgid "Select Unit" +#: .\cookbook\templates\forms\edit_internal_recipe.html:228 +msgid "Select File" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:262 -#: .\cookbook\templates\forms\edit_internal_recipe.html:286 -#: .\cookbook\templates\shopping_list.html:184 -#: .\cookbook\templates\shopping_list.html:206 -msgid "Create" -msgstr "" - -#: .\cookbook\templates\forms\edit_internal_recipe.html:263 -#: .\cookbook\templates\forms\edit_internal_recipe.html:287 -#: .\cookbook\templates\shopping_list.html:185 -#: .\cookbook\templates\shopping_list.html:207 -#: .\cookbook\templates\shopping_list.html:237 -#: .\cookbook\templates\shopping_list.html:261 -#: .\cookbook\templates\url_import.html:124 -#: .\cookbook\templates\url_import.html:156 +#: .\cookbook\templates\forms\edit_internal_recipe.html:229 +#: .\cookbook\templates\forms\edit_internal_recipe.html:290 +#: .\cookbook\templates\forms\edit_internal_recipe.html:314 +#: .\cookbook\templates\shopping_list.html:189 +#: .\cookbook\templates\shopping_list.html:211 +#: .\cookbook\templates\shopping_list.html:241 +#: .\cookbook\templates\shopping_list.html:265 +#: .\cookbook\templates\url_import.html:495 +#: .\cookbook\templates\url_import.html:527 msgid "Select" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:285 -#: .\cookbook\templates\shopping_list.html:205 +#: .\cookbook\templates\forms\edit_internal_recipe.html:288 +#: .\cookbook\templates\shopping_list.html:187 +msgid "Select Unit" +msgstr "" + +#: .\cookbook\templates\forms\edit_internal_recipe.html:289 +#: .\cookbook\templates\forms\edit_internal_recipe.html:313 +#: .\cookbook\templates\shopping_list.html:188 +#: .\cookbook\templates\shopping_list.html:210 +msgid "Create" +msgstr "" + +#: .\cookbook\templates\forms\edit_internal_recipe.html:312 +#: .\cookbook\templates\shopping_list.html:209 msgid "Select Food" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:302 +#: .\cookbook\templates\forms\edit_internal_recipe.html:329 #: .\cookbook\templates\meal_plan.html:256 -#: .\cookbook\templates\url_import.html:171 +#: .\cookbook\templates\url_import.html:542 msgid "Note" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:319 +#: .\cookbook\templates\forms\edit_internal_recipe.html:346 msgid "Delete Ingredient" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:325 +#: .\cookbook\templates\forms\edit_internal_recipe.html:352 msgid "Make Header" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:331 +#: .\cookbook\templates\forms\edit_internal_recipe.html:358 msgid "Make Ingredient" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:337 +#: .\cookbook\templates\forms\edit_internal_recipe.html:364 msgid "Disable Amount" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:343 +#: .\cookbook\templates\forms\edit_internal_recipe.html:370 msgid "Enable Amount" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:348 +#: .\cookbook\templates\forms\edit_internal_recipe.html:375 msgid "Copy Template Reference" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:374 -#: .\cookbook\templates\url_import.html:196 +#: .\cookbook\templates\forms\edit_internal_recipe.html:401 +#: .\cookbook\templates\url_import.html:297 +#: .\cookbook\templates\url_import.html:567 msgid "Instructions" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:387 -#: .\cookbook\templates\forms\edit_internal_recipe.html:418 +#: .\cookbook\templates\forms\edit_internal_recipe.html:414 +#: .\cookbook\templates\forms\edit_internal_recipe.html:445 msgid "Save & View" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:391 -#: .\cookbook\templates\forms\edit_internal_recipe.html:424 +#: .\cookbook\templates\forms\edit_internal_recipe.html:418 +#: .\cookbook\templates\forms\edit_internal_recipe.html:451 msgid "Add Step" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:394 -#: .\cookbook\templates\forms\edit_internal_recipe.html:428 +#: .\cookbook\templates\forms\edit_internal_recipe.html:421 +#: .\cookbook\templates\forms\edit_internal_recipe.html:455 msgid "Add Nutrition" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:396 -#: .\cookbook\templates\forms\edit_internal_recipe.html:430 +#: .\cookbook\templates\forms\edit_internal_recipe.html:423 +#: .\cookbook\templates\forms\edit_internal_recipe.html:457 msgid "Remove Nutrition" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:398 -#: .\cookbook\templates\forms\edit_internal_recipe.html:433 +#: .\cookbook\templates\forms\edit_internal_recipe.html:425 +#: .\cookbook\templates\forms\edit_internal_recipe.html:460 msgid "View Recipe" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:400 -#: .\cookbook\templates\forms\edit_internal_recipe.html:435 +#: .\cookbook\templates\forms\edit_internal_recipe.html:427 +#: .\cookbook\templates\forms\edit_internal_recipe.html:462 msgid "Delete Recipe" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:441 +#: .\cookbook\templates\forms\edit_internal_recipe.html:468 msgid "Steps" msgstr "" @@ -817,7 +1024,7 @@ msgid "" msgstr "" #: .\cookbook\templates\forms\ingredients.html:24 -#: .\cookbook\templates\stats.html:26 +#: .\cookbook\templates\space.html:35 .\cookbook\templates\stats.html:26 msgid "Units" msgstr "" @@ -839,10 +1046,6 @@ msgstr "" msgid "Are you sure you want to delete the %(title)s: %(object)s " msgstr "" -#: .\cookbook\templates\generic\delete_template.html:21 -msgid "Confirm" -msgstr "" - #: .\cookbook\templates\generic\edit_template.html:30 msgid "View" msgstr "" @@ -864,12 +1067,6 @@ msgstr "" msgid "Import all" msgstr "" -#: .\cookbook\templates\generic\new_template.html:6 -#: .\cookbook\templates\generic\new_template.html:14 -#: .\cookbook\templates\meal_plan.html:323 -msgid "New" -msgstr "" - #: .\cookbook\templates\generic\table_template.html:76 #: .\cookbook\templates\recipes_table.html:121 msgid "previous" @@ -914,7 +1111,7 @@ msgstr "" #: .\cookbook\templates\include\recipe_open_modal.html:7 #: .\cookbook\templates\meal_plan.html:247 .\cookbook\views\delete.py:28 -#: .\cookbook\views\edit.py:264 .\cookbook\views\new.py:40 +#: .\cookbook\views\edit.py:273 .\cookbook\views\new.py:52 msgid "Recipe" msgstr "" @@ -947,10 +1144,6 @@ msgstr "" msgid "New Recipe" msgstr "" -#: .\cookbook\templates\index.html:47 -msgid "Website Import" -msgstr "" - #: .\cookbook\templates\index.html:53 msgid "Advanced Search" msgstr "" @@ -964,7 +1157,7 @@ msgid "Last viewed" msgstr "" #: .\cookbook\templates\index.html:87 .\cookbook\templates\meal_plan.html:178 -#: .\cookbook\templates\stats.html:22 +#: .\cookbook\templates\space.html:29 .\cookbook\templates\stats.html:22 msgid "Recipes" msgstr "" @@ -1112,7 +1305,7 @@ msgid "New Entry" msgstr "" #: .\cookbook\templates\meal_plan.html:113 -#: .\cookbook\templates\shopping_list.html:52 +#: .\cookbook\templates\shopping_list.html:56 msgid "Search Recipe" msgstr "" @@ -1142,7 +1335,7 @@ msgstr "" #: .\cookbook\templates\meal_plan.html:168 #: .\cookbook\templates\shopping_list.html:7 #: .\cookbook\templates\shopping_list.html:29 -#: .\cookbook\templates\shopping_list.html:705 +#: .\cookbook\templates\shopping_list.html:714 msgid "Shopping List" msgstr "" @@ -1192,7 +1385,7 @@ msgstr "" #: .\cookbook\templates\meal_plan.html:270 #: .\cookbook\templates\meal_plan_entry.html:20 -#: .\cookbook\templates\shopping_list.html:250 +#: .\cookbook\templates\shopping_list.html:254 msgid "Shared with" msgstr "" @@ -1267,7 +1460,6 @@ msgstr "" #: .\cookbook\templates\no_groups_info.html:18 #: .\cookbook\templates\no_perm_info.html:15 -#: .\cookbook\templates\no_space_info.html:15 msgid "Please contact your administrator." msgstr "" @@ -1282,13 +1474,48 @@ msgid "" "action." msgstr "" -#: .\cookbook\templates\no_space_info.html:5 -#: .\cookbook\templates\no_space_info.html:12 +#: .\cookbook\templates\no_space_info.html:6 +#: .\cookbook\templates\no_space_info.html:13 msgid "No Space" msgstr "" -#: .\cookbook\templates\no_space_info.html:15 -msgid "You are not a member of any space." +#: .\cookbook\templates\no_space_info.html:17 +msgid "" +"Recipes, foods, shopping lists and more are organized in spaces of one or " +"more people." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:18 +msgid "" +"You can either be invited into an existing space or create your own one." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:31 +#: .\cookbook\templates\no_space_info.html:40 +msgid "Join Space" +msgstr "" + +#: .\cookbook\templates\no_space_info.html:34 +msgid "Join an existing space." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:35 +msgid "" +"To join an existing space either enter your invite token or click on the " +"invite link the space owner send you." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:48 +#: .\cookbook\templates\no_space_info.html:56 +msgid "Create Space" +msgstr "" + +#: .\cookbook\templates\no_space_info.html:51 +msgid "Create your own recipe space." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:52 +msgid "Start your own recipe space and invite other users to it." msgstr "" #: .\cookbook\templates\offline.html:6 @@ -1305,28 +1532,29 @@ msgid "" "recently viewed them. Keep in mind that data might be outdated." msgstr "" -#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\stats.html:47 +#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\space.html:56 +#: .\cookbook\templates\stats.html:47 msgid "Comments" msgstr "" #: .\cookbook\templates\recipe_view.html:44 .\cookbook\views\delete.py:118 -#: .\cookbook\views\edit.py:170 +#: .\cookbook\views\edit.py:179 msgid "Comment" msgstr "" #: .\cookbook\templates\recipes_table.html:19 #: .\cookbook\templates\recipes_table.html:23 -#: .\cookbook\templates\url_import.html:69 +#: .\cookbook\templates\url_import.html:440 msgid "Recipe Image" msgstr "" #: .\cookbook\templates\recipes_table.html:51 -#: .\cookbook\templates\url_import.html:74 +#: .\cookbook\templates\url_import.html:445 msgid "Preparation time ca." msgstr "" #: .\cookbook\templates\recipes_table.html:57 -#: .\cookbook\templates\url_import.html:79 +#: .\cookbook\templates\url_import.html:450 msgid "Waiting time ca." msgstr "" @@ -1342,39 +1570,67 @@ msgstr "" msgid "Recipe Home" msgstr "" -#: .\cookbook\templates\settings.html:22 +#: .\cookbook\templates\settings.html:23 msgid "Account" msgstr "" -#: .\cookbook\templates\settings.html:38 -msgid "Link social account" +#: .\cookbook\templates\settings.html:27 +msgid "Preferences" msgstr "" -#: .\cookbook\templates\settings.html:42 +#: .\cookbook\templates\settings.html:31 +msgid "API-Settings" +msgstr "" + +#: .\cookbook\templates\settings.html:39 +msgid "Name Settings" +msgstr "" + +#: .\cookbook\templates\settings.html:47 +msgid "Password Settings" +msgstr "" + +#: .\cookbook\templates\settings.html:55 +msgid "Email Settings" +msgstr "" + +#: .\cookbook\templates\settings.html:57 +msgid "Manage Email Settings" +msgstr "" + +#: .\cookbook\templates\settings.html:61 +msgid "Social" +msgstr "" + +#: .\cookbook\templates\settings.html:63 +msgid "Manage Social Accounts" +msgstr "" + +#: .\cookbook\templates\settings.html:75 msgid "Language" msgstr "" -#: .\cookbook\templates\settings.html:67 +#: .\cookbook\templates\settings.html:105 msgid "Style" msgstr "" -#: .\cookbook\templates\settings.html:79 +#: .\cookbook\templates\settings.html:125 msgid "API Token" msgstr "" -#: .\cookbook\templates\settings.html:80 +#: .\cookbook\templates\settings.html:126 msgid "" "You can use both basic authentication and token based authentication to " "access the REST API." msgstr "" -#: .\cookbook\templates\settings.html:92 +#: .\cookbook\templates\settings.html:143 msgid "" "Use the token as an Authorization header prefixed by the word token as shown " "in the following examples:" msgstr "" -#: .\cookbook\templates\settings.html:94 +#: .\cookbook\templates\settings.html:145 msgid "or" msgstr "" @@ -1395,58 +1651,55 @@ msgstr "" msgid "Create Superuser account" msgstr "" -#: .\cookbook\templates\shopping_list.html:75 +#: .\cookbook\templates\shopping_list.html:79 msgid "Shopping Recipes" msgstr "" -#: .\cookbook\templates\shopping_list.html:79 +#: .\cookbook\templates\shopping_list.html:83 msgid "No recipes selected" msgstr "" -#: .\cookbook\templates\shopping_list.html:146 +#: .\cookbook\templates\shopping_list.html:150 msgid "Entry Mode" msgstr "" -#: .\cookbook\templates\shopping_list.html:154 +#: .\cookbook\templates\shopping_list.html:158 msgid "Add Entry" msgstr "" -#: .\cookbook\templates\shopping_list.html:170 +#: .\cookbook\templates\shopping_list.html:174 msgid "Amount" msgstr "" -#: .\cookbook\templates\shopping_list.html:226 +#: .\cookbook\templates\shopping_list.html:230 +#: .\cookbook\templates\supermarket.html:7 msgid "Supermarket" msgstr "" -#: .\cookbook\templates\shopping_list.html:236 +#: .\cookbook\templates\shopping_list.html:240 msgid "Select Supermarket" msgstr "" -#: .\cookbook\templates\shopping_list.html:260 +#: .\cookbook\templates\shopping_list.html:264 msgid "Select User" msgstr "" -#: .\cookbook\templates\shopping_list.html:279 +#: .\cookbook\templates\shopping_list.html:283 msgid "Finished" msgstr "" -#: .\cookbook\templates\shopping_list.html:292 +#: .\cookbook\templates\shopping_list.html:296 msgid "You are offline, shopping list might not syncronize." msgstr "" -#: .\cookbook\templates\shopping_list.html:357 +#: .\cookbook\templates\shopping_list.html:361 msgid "Copy/Export" msgstr "" -#: .\cookbook\templates\shopping_list.html:361 +#: .\cookbook\templates\shopping_list.html:365 msgid "List Prefix" msgstr "" -#: .\cookbook\templates\shopping_list.html:708 -msgid "There was an error creating a resource!" -msgstr "" - #: .\cookbook\templates\socialaccount\connections.html:4 #: .\cookbook\templates\socialaccount\connections.html:7 msgid "Account Connections" @@ -1458,10 +1711,6 @@ msgid "" " accounts:" msgstr "" -#: .\cookbook\templates\socialaccount\connections.html:36 -msgid "Remove" -msgstr "" - #: .\cookbook\templates\socialaccount\connections.html:44 msgid "" "You currently have no social network accounts connected to this account." @@ -1471,38 +1720,87 @@ msgstr "" msgid "Add a 3rd Party Account" msgstr "" -#: .\cookbook\templates\stats.html:4 -msgid "Stats" +#: .\cookbook\templates\space.html:18 +msgid "Manage Subscription" msgstr "" -#: .\cookbook\templates\stats.html:19 +#: .\cookbook\templates\space.html:26 .\cookbook\templates\stats.html:19 msgid "Number of objects" msgstr "" -#: .\cookbook\templates\stats.html:30 +#: .\cookbook\templates\space.html:39 .\cookbook\templates\stats.html:30 msgid "Recipe Imports" msgstr "" -#: .\cookbook\templates\stats.html:38 +#: .\cookbook\templates\space.html:47 .\cookbook\templates\stats.html:38 msgid "Objects stats" msgstr "" -#: .\cookbook\templates\stats.html:41 +#: .\cookbook\templates\space.html:50 .\cookbook\templates\stats.html:41 msgid "Recipes without Keywords" msgstr "" -#: .\cookbook\templates\stats.html:43 +#: .\cookbook\templates\space.html:52 .\cookbook\templates\stats.html:43 msgid "External Recipes" msgstr "" -#: .\cookbook\templates\stats.html:45 +#: .\cookbook\templates\space.html:54 .\cookbook\templates\stats.html:45 msgid "Internal Recipes" msgstr "" -#: .\cookbook\templates\system.html:21 .\cookbook\views\lists.py:115 +#: .\cookbook\templates\space.html:67 +msgid "Members" +msgstr "" + +#: .\cookbook\templates\space.html:71 +msgid "Invite User" +msgstr "" + +#: .\cookbook\templates\space.html:82 +msgid "User" +msgstr "" + +#: .\cookbook\templates\space.html:83 +msgid "Groups" +msgstr "" + +#: .\cookbook\templates\space.html:99 +msgid "admin" +msgstr "" + +#: .\cookbook\templates\space.html:100 +msgid "user" +msgstr "" + +#: .\cookbook\templates\space.html:101 +msgid "guest" +msgstr "" + +#: .\cookbook\templates\space.html:102 +msgid "remove" +msgstr "" + +#: .\cookbook\templates\space.html:106 +msgid "Update" +msgstr "" + +#: .\cookbook\templates\space.html:110 +msgid "You cannot edit yourself." +msgstr "" + +#: .\cookbook\templates\space.html:117 +msgid "There are no members in your space yet!" +msgstr "" + +#: .\cookbook\templates\space.html:124 .\cookbook\templates\system.html:21 +#: .\cookbook\views\lists.py:115 msgid "Invite Links" msgstr "" +#: .\cookbook\templates\stats.html:4 +msgid "Stats" +msgstr "" + #: .\cookbook\templates\system.html:22 msgid "Show Links" msgstr "" @@ -1600,45 +1898,141 @@ msgid "" " " msgstr "" -#: .\cookbook\templates\url_import.html:5 +#: .\cookbook\templates\url_import.html:6 msgid "URL Import" msgstr "" -#: .\cookbook\templates\url_import.html:23 +#: .\cookbook\templates\url_import.html:31 +msgid "Drag me to your bookmarks to import recipes from anywhere" +msgstr "" + +#: .\cookbook\templates\url_import.html:32 +msgid "Bookmark Me!" +msgstr "" + +#: .\cookbook\templates\url_import.html:61 msgid "Enter website URL" msgstr "" -#: .\cookbook\templates\url_import.html:36 -msgid "Enter json directly" +#: .\cookbook\templates\url_import.html:97 +msgid "Select recipe files to import or drop them here..." msgstr "" -#: .\cookbook\templates\url_import.html:57 +#: .\cookbook\templates\url_import.html:118 +msgid "Paste json or html source here to load recipe." +msgstr "" + +#: .\cookbook\templates\url_import.html:146 +msgid "Preview Recipe Data" +msgstr "" + +#: .\cookbook\templates\url_import.html:147 +msgid "Drag recipe attributes from the right into the appropriate box below." +msgstr "" + +#: .\cookbook\templates\url_import.html:156 +#: .\cookbook\templates\url_import.html:173 +#: .\cookbook\templates\url_import.html:190 +#: .\cookbook\templates\url_import.html:209 +#: .\cookbook\templates\url_import.html:227 +#: .\cookbook\templates\url_import.html:242 +#: .\cookbook\templates\url_import.html:257 +#: .\cookbook\templates\url_import.html:273 +#: .\cookbook\templates\url_import.html:300 +#: .\cookbook\templates\url_import.html:351 +msgid "Clear Contents" +msgstr "" + +#: .\cookbook\templates\url_import.html:158 +msgid "Text dragged here will be appended to the name." +msgstr "" + +#: .\cookbook\templates\url_import.html:175 +msgid "Text dragged here will be appended to the description." +msgstr "" + +#: .\cookbook\templates\url_import.html:192 +msgid "Keywords dragged here will be appended to current list" +msgstr "" + +#: .\cookbook\templates\url_import.html:207 +msgid "Image" +msgstr "" + +#: .\cookbook\templates\url_import.html:239 +msgid "Prep Time" +msgstr "" + +#: .\cookbook\templates\url_import.html:254 +msgid "Cook Time" +msgstr "" + +#: .\cookbook\templates\url_import.html:275 +msgid "Ingredients dragged here will be appended to current list." +msgstr "" + +#: .\cookbook\templates\url_import.html:302 +msgid "" +"Recipe instructions dragged here will be appended to current instructions." +msgstr "" + +#: .\cookbook\templates\url_import.html:325 +msgid "Discovered Attributes" +msgstr "" + +#: .\cookbook\templates\url_import.html:327 +msgid "" +"Drag recipe attributes from below into the appropriate box on the left. " +"Click any node to display its full properties." +msgstr "" + +#: .\cookbook\templates\url_import.html:344 +msgid "Show Blank Field" +msgstr "" + +#: .\cookbook\templates\url_import.html:349 +msgid "Blank Field" +msgstr "" + +#: .\cookbook\templates\url_import.html:353 +msgid "Items dragged to Blank Field will be appended." +msgstr "" + +#: .\cookbook\templates\url_import.html:400 +msgid "Delete Text" +msgstr "" + +#: .\cookbook\templates\url_import.html:413 +msgid "Delete image" +msgstr "" + +#: .\cookbook\templates\url_import.html:429 msgid "Recipe Name" msgstr "" -#: .\cookbook\templates\url_import.html:62 +#: .\cookbook\templates\url_import.html:433 msgid "Recipe Description" msgstr "" -#: .\cookbook\templates\url_import.html:123 -#: .\cookbook\templates\url_import.html:155 -#: .\cookbook\templates\url_import.html:211 +#: .\cookbook\templates\url_import.html:494 +#: .\cookbook\templates\url_import.html:526 +#: .\cookbook\templates\url_import.html:582 msgid "Select one" msgstr "" -#: .\cookbook\templates\url_import.html:225 +#: .\cookbook\templates\url_import.html:596 msgid "All Keywords" msgstr "" -#: .\cookbook\templates\url_import.html:228 +#: .\cookbook\templates\url_import.html:599 msgid "Import all keywords, not only the ones already existing." msgstr "" -#: .\cookbook\templates\url_import.html:255 +#: .\cookbook\templates\url_import.html:626 msgid "Information" msgstr "" -#: .\cookbook\templates\url_import.html:257 +#: .\cookbook\templates\url_import.html:628 msgid "" " Only websites containing ld+json or microdata information can currently\n" " be imported. Most big recipe pages " @@ -1649,48 +2043,73 @@ msgid "" " github issues." msgstr "" -#: .\cookbook\templates\url_import.html:265 +#: .\cookbook\templates\url_import.html:636 msgid "Google ld+json Info" msgstr "" -#: .\cookbook\templates\url_import.html:268 +#: .\cookbook\templates\url_import.html:639 msgid "GitHub Issues" msgstr "" -#: .\cookbook\templates\url_import.html:270 +#: .\cookbook\templates\url_import.html:641 msgid "Recipe Markup Specification" msgstr "" -#: .\cookbook\views\api.py:71 +#: .\cookbook\views\api.py:77 msgid "Parameter updated_at incorrectly formatted" msgstr "" -#: .\cookbook\views\api.py:455 .\cookbook\views\views.py:226 +#: .\cookbook\views\api.py:553 .\cookbook\views\views.py:295 msgid "This feature is not available in the demo version!" msgstr "" -#: .\cookbook\views\api.py:478 +#: .\cookbook\views\api.py:576 msgid "Sync successful!" msgstr "" -#: .\cookbook\views\api.py:483 +#: .\cookbook\views\api.py:581 msgid "Error synchronizing with Storage" msgstr "" -#: .\cookbook\views\api.py:556 .\cookbook\views\api.py:576 +#: .\cookbook\views\api.py:649 +msgid "Nothing to do." +msgstr "" + +#: .\cookbook\views\api.py:664 +msgid "The requested site provided malformed data and cannot be read." +msgstr "" + +#: .\cookbook\views\api.py:671 msgid "The requested page could not be found." msgstr "" -#: .\cookbook\views\api.py:585 +#: .\cookbook\views\api.py:680 msgid "" -"The requested page refused to provide any information (Status Code 403)." +"The requested site does not provide any recognized data format to import the " +"recipe from." msgstr "" -#: .\cookbook\views\api.py:611 -msgid "Could not parse correctly..." +#: .\cookbook\views\api.py:694 +msgid "No useable data could be found." msgstr "" -#: .\cookbook\views\data.py:94 +#: .\cookbook\views\api.py:710 +msgid "I couldn't find anything to do." +msgstr "" + +#: .\cookbook\views\data.py:30 .\cookbook\views\data.py:121 +#: .\cookbook\views\edit.py:50 .\cookbook\views\import_export.py:67 +#: .\cookbook\views\new.py:32 +msgid "You have reached the maximum number of recipes for your space." +msgstr "" + +#: .\cookbook\views\data.py:34 .\cookbook\views\data.py:125 +#: .\cookbook\views\edit.py:54 .\cookbook\views\import_export.py:71 +#: .\cookbook\views\new.py:36 +msgid "You have more users than allowed in your space." +msgstr "" + +#: .\cookbook\views\data.py:103 #, python-format msgid "Batch edit done. %(count)d recipe was updated." msgid_plural "Batch edit done. %(count)d Recipes where updated." @@ -1702,7 +2121,7 @@ msgid "Monitor" msgstr "" #: .\cookbook\views\delete.py:96 .\cookbook\views\lists.py:102 -#: .\cookbook\views\new.py:86 +#: .\cookbook\views\new.py:98 msgid "Storage Backend" msgstr "" @@ -1711,8 +2130,8 @@ msgid "" "Could not delete this storage backend as it is used in at least one monitor." msgstr "" -#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:204 -#: .\cookbook\views\new.py:144 +#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:213 +#: .\cookbook\views\new.py:156 msgid "Recipe Book" msgstr "" @@ -1720,55 +2139,55 @@ msgstr "" msgid "Bookmarks" msgstr "" -#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:214 +#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:252 msgid "Invite Link" msgstr "" -#: .\cookbook\views\edit.py:110 +#: .\cookbook\views\edit.py:119 msgid "Food" msgstr "" -#: .\cookbook\views\edit.py:119 +#: .\cookbook\views\edit.py:128 msgid "You cannot edit this storage!" msgstr "" -#: .\cookbook\views\edit.py:139 +#: .\cookbook\views\edit.py:148 msgid "Storage saved!" msgstr "" -#: .\cookbook\views\edit.py:145 +#: .\cookbook\views\edit.py:154 msgid "There was an error updating this storage backend!" msgstr "" -#: .\cookbook\views\edit.py:156 +#: .\cookbook\views\edit.py:165 msgid "Storage" msgstr "" -#: .\cookbook\views\edit.py:252 +#: .\cookbook\views\edit.py:261 msgid "Changes saved!" msgstr "" -#: .\cookbook\views\edit.py:256 +#: .\cookbook\views\edit.py:265 msgid "Error saving changes!" msgstr "" -#: .\cookbook\views\edit.py:289 +#: .\cookbook\views\edit.py:299 msgid "Units merged!" msgstr "" -#: .\cookbook\views\edit.py:291 .\cookbook\views\edit.py:307 +#: .\cookbook\views\edit.py:301 .\cookbook\views\edit.py:317 msgid "Cannot merge with the same object!" msgstr "" -#: .\cookbook\views\edit.py:305 +#: .\cookbook\views\edit.py:315 msgid "Foods merged!" msgstr "" -#: .\cookbook\views\import_export.py:73 +#: .\cookbook\views\import_export.py:93 msgid "Importing is not implemented for this provider" msgstr "" -#: .\cookbook\views\import_export.py:92 +#: .\cookbook\views\import_export.py:115 msgid "Exporting is not implemented for this provider" msgstr "" @@ -1784,41 +2203,103 @@ msgstr "" msgid "Shopping Lists" msgstr "" -#: .\cookbook\views\new.py:111 +#: .\cookbook\views\new.py:123 msgid "Imported new recipe!" msgstr "" -#: .\cookbook\views\new.py:114 +#: .\cookbook\views\new.py:126 msgid "There was an error importing this recipe!" msgstr "" -#: .\cookbook\views\views.py:123 +#: .\cookbook\views\new.py:226 +msgid "Hello" +msgstr "" + +#: .\cookbook\views\new.py:226 +msgid "You have been invited by " +msgstr "" + +#: .\cookbook\views\new.py:227 +msgid " to join their Tandoor Recipes space " +msgstr "" + +#: .\cookbook\views\new.py:228 +msgid "Click the following link to activate your account: " +msgstr "" + +#: .\cookbook\views\new.py:229 +msgid "" +"If the link does not work use the following code to manually join the space: " +msgstr "" + +#: .\cookbook\views\new.py:230 +msgid "The invitation is valid until " +msgstr "" + +#: .\cookbook\views\new.py:231 +msgid "" +"Tandoor Recipes is an Open Source recipe manager. Check it out on GitHub " +msgstr "" + +#: .\cookbook\views\new.py:234 +msgid "Tandoor Recipes Invite" +msgstr "" + +#: .\cookbook\views\new.py:241 +msgid "Invite link successfully send to user." +msgstr "" + +#: .\cookbook\views\new.py:244 +msgid "" +"You have send to many emails, please share the link manually or wait a few " +"hours." +msgstr "" + +#: .\cookbook\views\new.py:246 +msgid "Email to user could not be send, please share link manually." +msgstr "" + +#: .\cookbook\views\views.py:125 +msgid "" +"You have successfully created your own recipe space. Start by adding some " +"recipes or invite other people to join you." +msgstr "" + +#: .\cookbook\views\views.py:173 msgid "You do not have the required permissions to perform this action!" msgstr "" -#: .\cookbook\views\views.py:134 +#: .\cookbook\views\views.py:184 msgid "Comment saved!" msgstr "" -#: .\cookbook\views\views.py:326 +#: .\cookbook\views\views.py:396 msgid "" "The setup page can only be used to create the first user! If you have " "forgotten your superuser credentials please consult the django documentation " "on how to reset passwords." msgstr "" -#: .\cookbook\views\views.py:333 .\cookbook\views\views.py:378 +#: .\cookbook\views\views.py:403 msgid "Passwords dont match!" msgstr "" -#: .\cookbook\views\views.py:349 .\cookbook\views\views.py:385 +#: .\cookbook\views\views.py:419 msgid "User has been created, please login!" msgstr "" -#: .\cookbook\views\views.py:365 +#: .\cookbook\views\views.py:435 msgid "Malformed Invite Link supplied!" msgstr "" -#: .\cookbook\views\views.py:405 +#: .\cookbook\views\views.py:441 +msgid "You are already member of a space and therefore cannot join this one." +msgstr "" + +#: .\cookbook\views\views.py:452 +msgid "Successfully joined space." +msgstr "" + +#: .\cookbook\views\views.py:458 msgid "Invite Link not valid or already used!" msgstr "" diff --git a/cookbook/locale/tr/LC_MESSAGES/django.po b/cookbook/locale/tr/LC_MESSAGES/django.po index 979d1713..0eb932b3 100644 --- a/cookbook/locale/tr/LC_MESSAGES/django.po +++ b/cookbook/locale/tr/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-04-11 15:09+0200\n" +"POT-Creation-Date: 2021-06-12 20:30+0200\n" "PO-Revision-Date: 2020-06-02 19:28+0000\n" "Last-Translator: Emre S, 2020\n" "Language-Team: Turkish (https://www.transifex.com/django-recipes/" @@ -22,14 +22,15 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: .\cookbook\filters.py:23 .\cookbook\templates\base.html:91 -#: .\cookbook\templates\forms\edit_internal_recipe.html:219 +#: .\cookbook\filters.py:23 .\cookbook\templates\base.html:98 +#: .\cookbook\templates\forms\edit_internal_recipe.html:246 #: .\cookbook\templates\forms\ingredients.html:34 -#: .\cookbook\templates\stats.html:28 .\cookbook\views\lists.py:67 +#: .\cookbook\templates\space.html:37 .\cookbook\templates\stats.html:28 +#: .\cookbook\templates\url_import.html:270 .\cookbook\views\lists.py:67 msgid "Ingredients" msgstr "Malzemeler" -#: .\cookbook\forms.py:45 +#: .\cookbook\forms.py:49 msgid "" "Color of the top navigation bar. Not all colors work with all themes, just " "try them out!" @@ -37,35 +38,35 @@ msgstr "" "Gezinti çubuğunun rengi. Bütün renkeler bütün temalarla çalışmayabilir, önce " "deneyin!" -#: .\cookbook\forms.py:46 +#: .\cookbook\forms.py:51 msgid "Default Unit to be used when inserting a new ingredient into a recipe." msgstr "Bir tarife yeni bir malzeme eklenirken kullanılacak Varsayılan Birim." -#: .\cookbook\forms.py:47 +#: .\cookbook\forms.py:53 msgid "" "Enables support for fractions in ingredient amounts (e.g. convert decimals " "to fractions automatically)" msgstr "" -#: .\cookbook\forms.py:48 +#: .\cookbook\forms.py:56 msgid "" "Users with whom newly created meal plan/shopping list entries should be " "shared by default." msgstr "" -#: .\cookbook\forms.py:49 +#: .\cookbook\forms.py:58 msgid "Show recently viewed recipes on search page." msgstr "Son görüntülenen tarifleri arama sayfasında göster." -#: .\cookbook\forms.py:50 +#: .\cookbook\forms.py:59 msgid "Number of decimals to round ingredients." msgstr "Malzeme birimleri için yuvarlanma basamağı." -#: .\cookbook\forms.py:51 +#: .\cookbook\forms.py:60 msgid "If you want to be able to create and see comments underneath recipes." msgstr "Tariflerin altında yorumlar oluşturup görebilmek istiyorsanız." -#: .\cookbook\forms.py:53 +#: .\cookbook\forms.py:62 msgid "" "Setting to 0 will disable auto sync. When viewing a shopping list the list " "is updated every set seconds to sync changes someone else might have made. " @@ -78,167 +79,181 @@ msgstr "" "fazla kişiyle alışveriş yaparken kullanışlıdır, ancak biraz mobil veri " "kullanabilir. Örnek sınırından düşükse, kaydederken sıfırlanır." -#: .\cookbook\forms.py:56 +#: .\cookbook\forms.py:65 msgid "Makes the navbar stick to the top of the page." msgstr "" -#: .\cookbook\forms.py:72 +#: .\cookbook\forms.py:81 msgid "" "Both fields are optional. If none are given the username will be displayed " "instead" msgstr "" -#: .\cookbook\forms.py:93 .\cookbook\forms.py:315 -#: .\cookbook\templates\forms\edit_internal_recipe.html:45 +#: .\cookbook\forms.py:102 .\cookbook\forms.py:331 +#: .\cookbook\templates\forms\edit_internal_recipe.html:49 +#: .\cookbook\templates\url_import.html:154 msgid "Name" msgstr "İsim" -#: .\cookbook\forms.py:94 .\cookbook\forms.py:316 -#: .\cookbook\templates\base.html:98 -#: .\cookbook\templates\forms\edit_internal_recipe.html:81 -#: .\cookbook\templates\stats.html:24 .\cookbook\templates\url_import.html:202 +#: .\cookbook\forms.py:103 .\cookbook\forms.py:332 +#: .\cookbook\templates\base.html:105 +#: .\cookbook\templates\forms\edit_internal_recipe.html:85 +#: .\cookbook\templates\space.html:33 .\cookbook\templates\stats.html:24 +#: .\cookbook\templates\url_import.html:188 +#: .\cookbook\templates\url_import.html:573 msgid "Keywords" msgstr "" -#: .\cookbook\forms.py:95 +#: .\cookbook\forms.py:104 msgid "Preparation time in minutes" msgstr "" -#: .\cookbook\forms.py:96 +#: .\cookbook\forms.py:105 msgid "Waiting time (cooking/baking) in minutes" msgstr "" -#: .\cookbook\forms.py:97 .\cookbook\forms.py:317 +#: .\cookbook\forms.py:106 .\cookbook\forms.py:333 msgid "Path" msgstr "" -#: .\cookbook\forms.py:98 +#: .\cookbook\forms.py:107 msgid "Storage UID" msgstr "" -#: .\cookbook\forms.py:121 +#: .\cookbook\forms.py:133 msgid "Default" msgstr "" -#: .\cookbook\forms.py:130 +#: .\cookbook\forms.py:144 .\cookbook\templates\url_import.html:90 msgid "" "To prevent duplicates recipes with the same name as existing ones are " "ignored. Check this box to import everything." msgstr "" -#: .\cookbook\forms.py:149 +#: .\cookbook\forms.py:164 msgid "New Unit" msgstr "" -#: .\cookbook\forms.py:150 +#: .\cookbook\forms.py:165 msgid "New unit that other gets replaced by." msgstr "" -#: .\cookbook\forms.py:155 +#: .\cookbook\forms.py:170 msgid "Old Unit" msgstr "" -#: .\cookbook\forms.py:156 +#: .\cookbook\forms.py:171 msgid "Unit that should be replaced." msgstr "" -#: .\cookbook\forms.py:172 +#: .\cookbook\forms.py:187 msgid "New Food" msgstr "" -#: .\cookbook\forms.py:173 +#: .\cookbook\forms.py:188 msgid "New food that other gets replaced by." msgstr "" -#: .\cookbook\forms.py:178 +#: .\cookbook\forms.py:193 msgid "Old Food" msgstr "" -#: .\cookbook\forms.py:179 +#: .\cookbook\forms.py:194 msgid "Food that should be replaced." msgstr "" -#: .\cookbook\forms.py:197 +#: .\cookbook\forms.py:212 msgid "Add your comment: " msgstr "" -#: .\cookbook\forms.py:238 +#: .\cookbook\forms.py:253 msgid "Leave empty for dropbox and enter app password for nextcloud." msgstr "" -#: .\cookbook\forms.py:245 +#: .\cookbook\forms.py:260 msgid "Leave empty for nextcloud and enter api token for dropbox." msgstr "" -#: .\cookbook\forms.py:253 +#: .\cookbook\forms.py:269 msgid "" "Leave empty for dropbox and enter only base url for nextcloud (/remote." "php/webdav/ is added automatically)" msgstr "" -#: .\cookbook\forms.py:291 +#: .\cookbook\forms.py:307 msgid "Search String" msgstr "" -#: .\cookbook\forms.py:318 +#: .\cookbook\forms.py:334 msgid "File ID" msgstr "" -#: .\cookbook\forms.py:354 +#: .\cookbook\forms.py:370 msgid "You must provide at least a recipe or a title." msgstr "" -#: .\cookbook\forms.py:367 +#: .\cookbook\forms.py:383 msgid "You can list default users to share recipes with in the settings." msgstr "" -#: .\cookbook\forms.py:368 -#: .\cookbook\templates\forms\edit_internal_recipe.html:377 +#: .\cookbook\forms.py:384 +#: .\cookbook\templates\forms\edit_internal_recipe.html:404 msgid "" "You can use markdown to format this field. See the docs here" msgstr "" -#: .\cookbook\forms.py:393 -msgid "A username is not required, if left blank the new user can choose one." +#: .\cookbook\forms.py:409 +msgid "Maximum number of users for this space reached." msgstr "" -#: .\cookbook\helper\permission_helper.py:123 -#: .\cookbook\helper\permission_helper.py:129 -#: .\cookbook\helper\permission_helper.py:151 -#: .\cookbook\helper\permission_helper.py:196 -#: .\cookbook\helper\permission_helper.py:210 -#: .\cookbook\helper\permission_helper.py:221 -#: .\cookbook\helper\permission_helper.py:232 .\cookbook\views\data.py:30 -#: .\cookbook\views\views.py:112 .\cookbook\views\views.py:116 -#: .\cookbook\views\views.py:184 -msgid "You do not have the required permissions to view this page!" +#: .\cookbook\forms.py:415 +msgid "Email address already taken!" msgstr "" -#: .\cookbook\helper\permission_helper.py:141 +#: .\cookbook\forms.py:423 +msgid "" +"An email address is not required but if present the invite link will be send " +"to the user." +msgstr "" + +#: .\cookbook\forms.py:438 +msgid "Name already taken." +msgstr "" + +#: .\cookbook\forms.py:449 +msgid "Accept Terms and Privacy" +msgstr "" + +#: .\cookbook\helper\AllAuthCustomAdapter.py:30 +msgid "" +"In order to prevent spam, the requested email was not send. Please wait a " +"few minutes and try again." +msgstr "" + +#: .\cookbook\helper\permission_helper.py:124 +#: .\cookbook\helper\permission_helper.py:144 .\cookbook\views\views.py:147 msgid "You are not logged in and therefore cannot view this page!" msgstr "" -#: .\cookbook\helper\permission_helper.py:145 -#: .\cookbook\helper\permission_helper.py:167 -#: .\cookbook\helper\permission_helper.py:182 +#: .\cookbook\helper\permission_helper.py:127 +#: .\cookbook\helper\permission_helper.py:132 +#: .\cookbook\helper\permission_helper.py:154 +#: .\cookbook\helper\permission_helper.py:199 +#: .\cookbook\helper\permission_helper.py:213 +#: .\cookbook\helper\permission_helper.py:224 +#: .\cookbook\helper\permission_helper.py:235 .\cookbook\views\data.py:39 +#: .\cookbook\views\views.py:158 .\cookbook\views\views.py:165 +#: .\cookbook\views\views.py:253 +msgid "You do not have the required permissions to view this page!" +msgstr "" + +#: .\cookbook\helper\permission_helper.py:148 +#: .\cookbook\helper\permission_helper.py:170 +#: .\cookbook\helper\permission_helper.py:185 msgid "You cannot interact with this object as it is not owned by you!" msgstr "" -#: .\cookbook\helper\recipe_url_import.py:40 .\cookbook\views\api.py:549 -msgid "The requested site provided malformed data and cannot be read." -msgstr "" - -#: .\cookbook\helper\recipe_url_import.py:54 -msgid "" -"The requested site does not provide any recognized data format to import the " -"recipe from." -msgstr "" - -#: .\cookbook\helper\recipe_url_import.py:160 -msgid "Imported from" -msgstr "" - #: .\cookbook\helper\template_helper.py:60 #: .\cookbook\helper\template_helper.py:62 msgid "Could not parse template code." @@ -248,42 +263,53 @@ msgstr "" #: .\cookbook\templates\import.html:14 .\cookbook\templates\import.html:20 #: .\cookbook\templates\import_response.html:7 #: .\cookbook\templates\test.html:14 .\cookbook\templates\test.html:20 -#: .\cookbook\templates\url_import.html:233 .\cookbook\views\delete.py:60 -#: .\cookbook\views\edit.py:190 +#: .\cookbook\templates\url_import.html:27 +#: .\cookbook\templates\url_import.html:101 +#: .\cookbook\templates\url_import.html:123 +#: .\cookbook\templates\url_import.html:317 +#: .\cookbook\templates\url_import.html:604 .\cookbook\views\delete.py:60 +#: .\cookbook\views\edit.py:199 msgid "Import" msgstr "" -#: .\cookbook\integration\integration.py:131 +#: .\cookbook\integration\integration.py:162 msgid "" "Importer expected a .zip file. Did you choose the correct importer type for " "your data ?" msgstr "" -#: .\cookbook\integration\integration.py:134 +#: .\cookbook\integration\integration.py:165 +msgid "" +"An unexpected error occurred during the import. Please make sure you have " +"uploaded a valid file." +msgstr "" + +#: .\cookbook\integration\integration.py:169 msgid "The following recipes were ignored because they already existed:" msgstr "" -#: .\cookbook\integration\integration.py:137 +#: .\cookbook\integration\integration.py:173 #, python-format msgid "Imported %s recipes." msgstr "" -#: .\cookbook\integration\paprika.py:44 +#: .\cookbook\integration\paprika.py:46 msgid "Notes" msgstr "" -#: .\cookbook\integration\paprika.py:47 +#: .\cookbook\integration\paprika.py:49 msgid "Nutritional Information" msgstr "" -#: .\cookbook\integration\paprika.py:50 +#: .\cookbook\integration\paprika.py:53 msgid "Source" msgstr "" #: .\cookbook\integration\safron.py:23 -#: .\cookbook\templates\forms\edit_internal_recipe.html:75 +#: .\cookbook\templates\forms\edit_internal_recipe.html:79 #: .\cookbook\templates\include\log_cooking.html:16 -#: .\cookbook\templates\url_import.html:84 +#: .\cookbook\templates\url_import.html:224 +#: .\cookbook\templates\url_import.html:455 msgid "Servings" msgstr "" @@ -292,11 +318,11 @@ msgid "Waiting time" msgstr "" #: .\cookbook\integration\safron.py:27 -#: .\cookbook\templates\forms\edit_internal_recipe.html:69 +#: .\cookbook\templates\forms\edit_internal_recipe.html:73 msgid "Preparation Time" msgstr "" -#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:71 +#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:78 #: .\cookbook\templates\forms\ingredients.html:7 #: .\cookbook\templates\index.html:7 msgid "Cookbook" @@ -322,44 +348,72 @@ msgstr "" msgid "Other" msgstr "" -#: .\cookbook\models.py:110 .\cookbook\templates\shopping_list.html:48 +#: .\cookbook\models.py:71 +msgid "" +"Maximum file storage for space in MB. 0 for unlimited, -1 to disable file " +"upload." +msgstr "" + +#: .\cookbook\models.py:121 .\cookbook\templates\search.html:7 +#: .\cookbook\templates\shopping_list.html:52 msgid "Search" msgstr "" -#: .\cookbook\models.py:111 .\cookbook\templates\base.html:85 +#: .\cookbook\models.py:122 .\cookbook\templates\base.html:92 #: .\cookbook\templates\meal_plan.html:5 .\cookbook\views\delete.py:152 -#: .\cookbook\views\edit.py:224 .\cookbook\views\new.py:188 +#: .\cookbook\views\edit.py:233 .\cookbook\views\new.py:201 msgid "Meal-Plan" msgstr "" -#: .\cookbook\models.py:112 .\cookbook\templates\base.html:82 +#: .\cookbook\models.py:123 .\cookbook\templates\base.html:89 msgid "Books" msgstr "" -#: .\cookbook\models.py:119 +#: .\cookbook\models.py:131 msgid "Small" msgstr "" -#: .\cookbook\models.py:119 +#: .\cookbook\models.py:131 msgid "Large" msgstr "" -#: .\cookbook\models.py:327 -#: .\cookbook\templates\forms\edit_internal_recipe.html:198 +#: .\cookbook\models.py:131 .\cookbook\templates\generic\new_template.html:6 +#: .\cookbook\templates\generic\new_template.html:14 +#: .\cookbook\templates\meal_plan.html:323 +msgid "New" +msgstr "" + +#: .\cookbook\models.py:340 +#: .\cookbook\templates\forms\edit_internal_recipe.html:202 msgid "Text" msgstr "" -#: .\cookbook\models.py:327 -#: .\cookbook\templates\forms\edit_internal_recipe.html:199 +#: .\cookbook\models.py:340 +#: .\cookbook\templates\forms\edit_internal_recipe.html:203 msgid "Time" msgstr "" +#: .\cookbook\models.py:340 +#: .\cookbook\templates\forms\edit_internal_recipe.html:204 +#: .\cookbook\templates\forms\edit_internal_recipe.html:218 +msgid "File" +msgstr "" + +#: .\cookbook\serializer.py:109 +msgid "File uploads are not enabled for this Space." +msgstr "" + +#: .\cookbook\serializer.py:117 +msgid "You have reached your file upload limit." +msgstr "" + #: .\cookbook\tables.py:35 .\cookbook\templates\books.html:36 #: .\cookbook\templates\generic\edit_template.html:6 #: .\cookbook\templates\generic\edit_template.html:14 #: .\cookbook\templates\meal_plan.html:281 #: .\cookbook\templates\recipes_table.html:82 #: .\cookbook\templates\shopping_list.html:33 +#: .\cookbook\templates\space.html:84 msgid "Edit" msgstr "" @@ -373,10 +427,6 @@ msgstr "" msgid "Delete" msgstr "" -#: .\cookbook\tables.py:144 -msgid "Link" -msgstr "" - #: .\cookbook\templates\404.html:5 msgid "404 Error" msgstr "" @@ -393,21 +443,120 @@ msgstr "" msgid "Report a Bug" msgstr "" -#: .\cookbook\templates\account\login.html:7 -#: .\cookbook\templates\base.html:170 +#: .\cookbook\templates\account\email.html:6 +#: .\cookbook\templates\account\email.html:9 +msgid "E-mail Addresses" +msgstr "" + +#: .\cookbook\templates\account\email.html:11 +msgid "The following e-mail addresses are associated with your account:" +msgstr "" + +#: .\cookbook\templates\account\email.html:28 +msgid "Verified" +msgstr "" + +#: .\cookbook\templates\account\email.html:30 +msgid "Unverified" +msgstr "" + +#: .\cookbook\templates\account\email.html:32 +msgid "Primary" +msgstr "" + +#: .\cookbook\templates\account\email.html:39 +msgid "Make Primary" +msgstr "" + +#: .\cookbook\templates\account\email.html:41 +msgid "Re-send Verification" +msgstr "" + +#: .\cookbook\templates\account\email.html:42 +#: .\cookbook\templates\socialaccount\connections.html:36 +msgid "Remove" +msgstr "" + +#: .\cookbook\templates\account\email.html:50 +msgid "Warning:" +msgstr "" + +#: .\cookbook\templates\account\email.html:50 +msgid "" +"You currently do not have any e-mail address set up. You should really add " +"an e-mail address so you can receive notifications, reset your password, etc." +msgstr "" + +#: .\cookbook\templates\account\email.html:56 +msgid "Add E-mail Address" +msgstr "" + +#: .\cookbook\templates\account\email.html:61 +msgid "Add E-mail" +msgstr "" + +#: .\cookbook\templates\account\email.html:71 +msgid "Do you really want to remove the selected e-mail address?" +msgstr "" + +#: .\cookbook\templates\account\email_confirm.html:6 +#: .\cookbook\templates\account\email_confirm.html:10 +msgid "Confirm E-mail Address" +msgstr "" + +#: .\cookbook\templates\account\email_confirm.html:16 +#, python-format +msgid "" +"Please confirm that\n" +" %(email)s is an e-mail address " +"for user %(user_display)s\n" +" ." +msgstr "" + +#: .\cookbook\templates\account\email_confirm.html:22 +#: .\cookbook\templates\generic\delete_template.html:21 +msgid "Confirm" +msgstr "" + +#: .\cookbook\templates\account\email_confirm.html:29 +#, python-format +msgid "" +"This e-mail confirmation link expired or is invalid. Please\n" +" issue a new e-mail confirmation " +"request." +msgstr "" + +#: .\cookbook\templates\account\login.html:8 +#: .\cookbook\templates\base.html:180 msgid "Login" msgstr "" -#: .\cookbook\templates\account\login.html:13 -#: .\cookbook\templates\account\login.html:28 +#: .\cookbook\templates\account\login.html:15 +#: .\cookbook\templates\account\login.html:31 +#: .\cookbook\templates\account\signup.html:69 +#: .\cookbook\templates\account\signup_closed.html:15 msgid "Sign In" msgstr "" -#: .\cookbook\templates\account\login.html:38 +#: .\cookbook\templates\account\login.html:32 +msgid "Sign Up" +msgstr "" + +#: .\cookbook\templates\account\login.html:36 +#: .\cookbook\templates\account\login.html:37 +#: .\cookbook\templates\account\password_reset.html:29 +msgid "Reset My Password" +msgstr "" + +#: .\cookbook\templates\account\login.html:37 +msgid "Lost your password?" +msgstr "" + +#: .\cookbook\templates\account\login.html:48 msgid "Social Login" msgstr "" -#: .\cookbook\templates\account\login.html:39 +#: .\cookbook\templates\account\login.html:49 msgid "You can use any of the following providers to sign in." msgstr "" @@ -421,115 +570,161 @@ msgstr "" msgid "Are you sure you want to sign out?" msgstr "" -#: .\cookbook\templates\account\password_reset.html:5 -#: .\cookbook\templates\account\password_reset_done.html:5 +#: .\cookbook\templates\account\password_reset.html:7 +#: .\cookbook\templates\account\password_reset.html:13 +#: .\cookbook\templates\account\password_reset_done.html:7 +#: .\cookbook\templates\account\password_reset_done.html:10 msgid "Password Reset" msgstr "" -#: .\cookbook\templates\account\password_reset.html:9 -#: .\cookbook\templates\account\password_reset_done.html:9 -msgid "Password reset is not implemented for the time being!" +#: .\cookbook\templates\account\password_reset.html:24 +msgid "" +"Forgotten your password? Enter your e-mail address below, and we'll send you " +"an e-mail allowing you to reset it." msgstr "" -#: .\cookbook\templates\account\signup.html:5 +#: .\cookbook\templates\account\password_reset.html:32 +msgid "Password reset is disabled on this instance." +msgstr "" + +#: .\cookbook\templates\account\password_reset_done.html:16 +msgid "" +"We have sent you an e-mail. Please contact us if you do not receive it " +"within a few minutes." +msgstr "" + +#: .\cookbook\templates\account\signup.html:6 msgid "Register" msgstr "" -#: .\cookbook\templates\account\signup.html:9 -msgid "Create your Account" +#: .\cookbook\templates\account\signup.html:12 +msgid "Create an Account" msgstr "" -#: .\cookbook\templates\account\signup.html:14 +#: .\cookbook\templates\account\signup.html:42 +msgid "I accept the follwoing" +msgstr "" + +#: .\cookbook\templates\account\signup.html:45 +msgid "Terms and Conditions" +msgstr "" + +#: .\cookbook\templates\account\signup.html:48 +msgid "and" +msgstr "" + +#: .\cookbook\templates\account\signup.html:52 +msgid "Privacy Policy" +msgstr "" + +#: .\cookbook\templates\account\signup.html:65 msgid "Create User" msgstr "" -#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:160 +#: .\cookbook\templates\account\signup.html:69 +msgid "Already have an account?" +msgstr "" + +#: .\cookbook\templates\account\signup_closed.html:5 +#: .\cookbook\templates\account\signup_closed.html:11 +msgid "Sign Up Closed" +msgstr "" + +#: .\cookbook\templates\account\signup_closed.html:13 +msgid "We are sorry, but the sign up is currently closed." +msgstr "" + +#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:170 #: .\cookbook\templates\rest_framework\api.html:11 msgid "API Documentation" msgstr "" -#: .\cookbook\templates\base.html:78 +#: .\cookbook\templates\base.html:85 msgid "Utensils" msgstr "" -#: .\cookbook\templates\base.html:88 +#: .\cookbook\templates\base.html:95 msgid "Shopping" msgstr "" -#: .\cookbook\templates\base.html:102 .\cookbook\views\delete.py:84 -#: .\cookbook\views\edit.py:93 .\cookbook\views\lists.py:26 -#: .\cookbook\views\new.py:66 +#: .\cookbook\templates\base.html:109 .\cookbook\views\delete.py:84 +#: .\cookbook\views\edit.py:102 .\cookbook\views\lists.py:26 +#: .\cookbook\views\new.py:78 msgid "Keyword" msgstr "" -#: .\cookbook\templates\base.html:104 +#: .\cookbook\templates\base.html:111 msgid "Batch Edit" msgstr "" -#: .\cookbook\templates\base.html:109 +#: .\cookbook\templates\base.html:116 msgid "Storage Data" msgstr "" -#: .\cookbook\templates\base.html:113 +#: .\cookbook\templates\base.html:120 msgid "Storage Backends" msgstr "" -#: .\cookbook\templates\base.html:115 +#: .\cookbook\templates\base.html:122 msgid "Configure Sync" msgstr "" -#: .\cookbook\templates\base.html:117 +#: .\cookbook\templates\base.html:124 msgid "Discovered Recipes" msgstr "" -#: .\cookbook\templates\base.html:119 +#: .\cookbook\templates\base.html:126 msgid "Discovery Log" msgstr "" -#: .\cookbook\templates\base.html:121 .\cookbook\templates\stats.html:10 +#: .\cookbook\templates\base.html:128 .\cookbook\templates\stats.html:10 msgid "Statistics" msgstr "" -#: .\cookbook\templates\base.html:123 +#: .\cookbook\templates\base.html:130 msgid "Units & Ingredients" msgstr "" -#: .\cookbook\templates\base.html:125 +#: .\cookbook\templates\base.html:132 .\cookbook\templates\index.html:47 msgid "Import Recipe" msgstr "" -#: .\cookbook\templates\base.html:144 .\cookbook\templates\settings.html:6 +#: .\cookbook\templates\base.html:151 .\cookbook\templates\settings.html:6 #: .\cookbook\templates\settings.html:16 msgid "Settings" msgstr "" -#: .\cookbook\templates\base.html:146 .\cookbook\templates\history.html:6 +#: .\cookbook\templates\base.html:153 .\cookbook\templates\history.html:6 #: .\cookbook\templates\history.html:14 msgid "History" msgstr "" -#: .\cookbook\templates\base.html:150 .\cookbook\templates\system.html:13 +#: .\cookbook\templates\base.html:155 .\cookbook\templates\space.html:7 +msgid "Space Settings" +msgstr "" + +#: .\cookbook\templates\base.html:160 .\cookbook\templates\system.html:13 msgid "System" msgstr "" -#: .\cookbook\templates\base.html:152 +#: .\cookbook\templates\base.html:162 msgid "Admin" msgstr "" -#: .\cookbook\templates\base.html:156 +#: .\cookbook\templates\base.html:166 msgid "Markdown Guide" msgstr "" -#: .\cookbook\templates\base.html:158 +#: .\cookbook\templates\base.html:168 msgid "GitHub" msgstr "" -#: .\cookbook\templates\base.html:162 +#: .\cookbook\templates\base.html:172 msgid "API Browser" msgstr "" -#: .\cookbook\templates\base.html:165 -msgid "Logout" +#: .\cookbook\templates\base.html:175 +msgid "Log out" msgstr "" #: .\cookbook\templates\batch\edit.html:6 @@ -544,7 +739,7 @@ msgstr "" msgid "Add the specified keywords to all recipes containing a word" msgstr "" -#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:76 +#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:85 msgid "Sync" msgstr "" @@ -571,7 +766,7 @@ msgstr "" msgid "Importing Recipes" msgstr "" -#: .\cookbook\templates\batch\waiting.html:23 +#: .\cookbook\templates\batch\waiting.html:28 msgid "" "This can take a few minutes, depending on the number of recipes in sync, " "please wait." @@ -608,26 +803,31 @@ msgid "Export Recipes" msgstr "" #: .\cookbook\templates\export.html:14 .\cookbook\templates\export.html:20 -#: .\cookbook\templates\shopping_list.html:347 +#: .\cookbook\templates\shopping_list.html:351 #: .\cookbook\templates\test2.html:14 .\cookbook\templates\test2.html:20 msgid "Export" msgstr "" +#: .\cookbook\templates\files.html:7 +msgid "Files" +msgstr "" + #: .\cookbook\templates\forms\edit_import_recipe.html:5 #: .\cookbook\templates\forms\edit_import_recipe.html:9 msgid "Import new Recipe" msgstr "" #: .\cookbook\templates\forms\edit_import_recipe.html:14 -#: .\cookbook\templates\forms\edit_internal_recipe.html:389 -#: .\cookbook\templates\forms\edit_internal_recipe.html:421 +#: .\cookbook\templates\forms\edit_internal_recipe.html:416 +#: .\cookbook\templates\forms\edit_internal_recipe.html:448 #: .\cookbook\templates\generic\edit_template.html:23 #: .\cookbook\templates\generic\new_template.html:23 #: .\cookbook\templates\include\log_cooking.html:28 #: .\cookbook\templates\meal_plan.html:325 -#: .\cookbook\templates\settings.html:28 .\cookbook\templates\settings.html:35 -#: .\cookbook\templates\settings.html:58 .\cookbook\templates\settings.html:73 -#: .\cookbook\templates\shopping_list.html:349 +#: .\cookbook\templates\settings.html:44 .\cookbook\templates\settings.html:52 +#: .\cookbook\templates\settings.html:96 +#: .\cookbook\templates\settings.html:114 +#: .\cookbook\templates\shopping_list.html:353 msgid "Save" msgstr "" @@ -636,179 +836,186 @@ msgstr "" msgid "Edit Recipe" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:52 +#: .\cookbook\templates\forms\edit_internal_recipe.html:56 +#: .\cookbook\templates\url_import.html:171 msgid "Description" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:72 +#: .\cookbook\templates\forms\edit_internal_recipe.html:76 msgid "Waiting Time" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:78 +#: .\cookbook\templates\forms\edit_internal_recipe.html:82 msgid "Servings Text" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:89 +#: .\cookbook\templates\forms\edit_internal_recipe.html:93 msgid "Select Keywords" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:90 -#: .\cookbook\templates\url_import.html:212 +#: .\cookbook\templates\forms\edit_internal_recipe.html:94 +#: .\cookbook\templates\url_import.html:583 msgid "Add Keyword" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:108 +#: .\cookbook\templates\forms\edit_internal_recipe.html:112 msgid "Nutrition" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:112 -#: .\cookbook\templates\forms\edit_internal_recipe.html:162 +#: .\cookbook\templates\forms\edit_internal_recipe.html:116 +#: .\cookbook\templates\forms\edit_internal_recipe.html:166 msgid "Delete Step" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:116 +#: .\cookbook\templates\forms\edit_internal_recipe.html:120 msgid "Calories" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:119 +#: .\cookbook\templates\forms\edit_internal_recipe.html:123 msgid "Carbohydrates" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:122 +#: .\cookbook\templates\forms\edit_internal_recipe.html:126 msgid "Fats" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:124 +#: .\cookbook\templates\forms\edit_internal_recipe.html:128 msgid "Proteins" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:146 -#: .\cookbook\templates\forms\edit_internal_recipe.html:454 +#: .\cookbook\templates\forms\edit_internal_recipe.html:150 +#: .\cookbook\templates\forms\edit_internal_recipe.html:481 msgid "Step" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:167 +#: .\cookbook\templates\forms\edit_internal_recipe.html:171 msgid "Show as header" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:173 +#: .\cookbook\templates\forms\edit_internal_recipe.html:177 msgid "Hide as header" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:178 +#: .\cookbook\templates\forms\edit_internal_recipe.html:182 msgid "Move Up" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:183 +#: .\cookbook\templates\forms\edit_internal_recipe.html:187 msgid "Move Down" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:192 +#: .\cookbook\templates\forms\edit_internal_recipe.html:196 msgid "Step Name" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:196 +#: .\cookbook\templates\forms\edit_internal_recipe.html:200 msgid "Step Type" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:207 +#: .\cookbook\templates\forms\edit_internal_recipe.html:212 msgid "Step time in Minutes" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:261 -#: .\cookbook\templates\shopping_list.html:183 -msgid "Select Unit" +#: .\cookbook\templates\forms\edit_internal_recipe.html:228 +msgid "Select File" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:262 -#: .\cookbook\templates\forms\edit_internal_recipe.html:286 -#: .\cookbook\templates\shopping_list.html:184 -#: .\cookbook\templates\shopping_list.html:206 -msgid "Create" -msgstr "" - -#: .\cookbook\templates\forms\edit_internal_recipe.html:263 -#: .\cookbook\templates\forms\edit_internal_recipe.html:287 -#: .\cookbook\templates\shopping_list.html:185 -#: .\cookbook\templates\shopping_list.html:207 -#: .\cookbook\templates\shopping_list.html:237 -#: .\cookbook\templates\shopping_list.html:261 -#: .\cookbook\templates\url_import.html:124 -#: .\cookbook\templates\url_import.html:156 +#: .\cookbook\templates\forms\edit_internal_recipe.html:229 +#: .\cookbook\templates\forms\edit_internal_recipe.html:290 +#: .\cookbook\templates\forms\edit_internal_recipe.html:314 +#: .\cookbook\templates\shopping_list.html:189 +#: .\cookbook\templates\shopping_list.html:211 +#: .\cookbook\templates\shopping_list.html:241 +#: .\cookbook\templates\shopping_list.html:265 +#: .\cookbook\templates\url_import.html:495 +#: .\cookbook\templates\url_import.html:527 msgid "Select" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:285 -#: .\cookbook\templates\shopping_list.html:205 +#: .\cookbook\templates\forms\edit_internal_recipe.html:288 +#: .\cookbook\templates\shopping_list.html:187 +msgid "Select Unit" +msgstr "" + +#: .\cookbook\templates\forms\edit_internal_recipe.html:289 +#: .\cookbook\templates\forms\edit_internal_recipe.html:313 +#: .\cookbook\templates\shopping_list.html:188 +#: .\cookbook\templates\shopping_list.html:210 +msgid "Create" +msgstr "" + +#: .\cookbook\templates\forms\edit_internal_recipe.html:312 +#: .\cookbook\templates\shopping_list.html:209 msgid "Select Food" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:302 +#: .\cookbook\templates\forms\edit_internal_recipe.html:329 #: .\cookbook\templates\meal_plan.html:256 -#: .\cookbook\templates\url_import.html:171 +#: .\cookbook\templates\url_import.html:542 msgid "Note" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:319 +#: .\cookbook\templates\forms\edit_internal_recipe.html:346 msgid "Delete Ingredient" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:325 +#: .\cookbook\templates\forms\edit_internal_recipe.html:352 msgid "Make Header" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:331 +#: .\cookbook\templates\forms\edit_internal_recipe.html:358 msgid "Make Ingredient" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:337 +#: .\cookbook\templates\forms\edit_internal_recipe.html:364 msgid "Disable Amount" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:343 +#: .\cookbook\templates\forms\edit_internal_recipe.html:370 msgid "Enable Amount" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:348 +#: .\cookbook\templates\forms\edit_internal_recipe.html:375 msgid "Copy Template Reference" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:374 -#: .\cookbook\templates\url_import.html:196 +#: .\cookbook\templates\forms\edit_internal_recipe.html:401 +#: .\cookbook\templates\url_import.html:297 +#: .\cookbook\templates\url_import.html:567 msgid "Instructions" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:387 -#: .\cookbook\templates\forms\edit_internal_recipe.html:418 +#: .\cookbook\templates\forms\edit_internal_recipe.html:414 +#: .\cookbook\templates\forms\edit_internal_recipe.html:445 msgid "Save & View" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:391 -#: .\cookbook\templates\forms\edit_internal_recipe.html:424 +#: .\cookbook\templates\forms\edit_internal_recipe.html:418 +#: .\cookbook\templates\forms\edit_internal_recipe.html:451 msgid "Add Step" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:394 -#: .\cookbook\templates\forms\edit_internal_recipe.html:428 +#: .\cookbook\templates\forms\edit_internal_recipe.html:421 +#: .\cookbook\templates\forms\edit_internal_recipe.html:455 msgid "Add Nutrition" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:396 -#: .\cookbook\templates\forms\edit_internal_recipe.html:430 +#: .\cookbook\templates\forms\edit_internal_recipe.html:423 +#: .\cookbook\templates\forms\edit_internal_recipe.html:457 msgid "Remove Nutrition" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:398 -#: .\cookbook\templates\forms\edit_internal_recipe.html:433 +#: .\cookbook\templates\forms\edit_internal_recipe.html:425 +#: .\cookbook\templates\forms\edit_internal_recipe.html:460 msgid "View Recipe" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:400 -#: .\cookbook\templates\forms\edit_internal_recipe.html:435 +#: .\cookbook\templates\forms\edit_internal_recipe.html:427 +#: .\cookbook\templates\forms\edit_internal_recipe.html:462 msgid "Delete Recipe" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:441 +#: .\cookbook\templates\forms\edit_internal_recipe.html:468 msgid "Steps" msgstr "" @@ -828,7 +1035,7 @@ msgid "" msgstr "" #: .\cookbook\templates\forms\ingredients.html:24 -#: .\cookbook\templates\stats.html:26 +#: .\cookbook\templates\space.html:35 .\cookbook\templates\stats.html:26 msgid "Units" msgstr "" @@ -850,10 +1057,6 @@ msgstr "" msgid "Are you sure you want to delete the %(title)s: %(object)s " msgstr "" -#: .\cookbook\templates\generic\delete_template.html:21 -msgid "Confirm" -msgstr "" - #: .\cookbook\templates\generic\edit_template.html:30 msgid "View" msgstr "" @@ -875,12 +1078,6 @@ msgstr "" msgid "Import all" msgstr "" -#: .\cookbook\templates\generic\new_template.html:6 -#: .\cookbook\templates\generic\new_template.html:14 -#: .\cookbook\templates\meal_plan.html:323 -msgid "New" -msgstr "" - #: .\cookbook\templates\generic\table_template.html:76 #: .\cookbook\templates\recipes_table.html:121 msgid "previous" @@ -925,7 +1122,7 @@ msgstr "" #: .\cookbook\templates\include\recipe_open_modal.html:7 #: .\cookbook\templates\meal_plan.html:247 .\cookbook\views\delete.py:28 -#: .\cookbook\views\edit.py:264 .\cookbook\views\new.py:40 +#: .\cookbook\views\edit.py:273 .\cookbook\views\new.py:52 msgid "Recipe" msgstr "" @@ -958,10 +1155,6 @@ msgstr "" msgid "New Recipe" msgstr "" -#: .\cookbook\templates\index.html:47 -msgid "Website Import" -msgstr "" - #: .\cookbook\templates\index.html:53 msgid "Advanced Search" msgstr "" @@ -975,7 +1168,7 @@ msgid "Last viewed" msgstr "" #: .\cookbook\templates\index.html:87 .\cookbook\templates\meal_plan.html:178 -#: .\cookbook\templates\stats.html:22 +#: .\cookbook\templates\space.html:29 .\cookbook\templates\stats.html:22 msgid "Recipes" msgstr "" @@ -1123,7 +1316,7 @@ msgid "New Entry" msgstr "" #: .\cookbook\templates\meal_plan.html:113 -#: .\cookbook\templates\shopping_list.html:52 +#: .\cookbook\templates\shopping_list.html:56 msgid "Search Recipe" msgstr "" @@ -1153,7 +1346,7 @@ msgstr "" #: .\cookbook\templates\meal_plan.html:168 #: .\cookbook\templates\shopping_list.html:7 #: .\cookbook\templates\shopping_list.html:29 -#: .\cookbook\templates\shopping_list.html:705 +#: .\cookbook\templates\shopping_list.html:714 msgid "Shopping List" msgstr "" @@ -1203,7 +1396,7 @@ msgstr "" #: .\cookbook\templates\meal_plan.html:270 #: .\cookbook\templates\meal_plan_entry.html:20 -#: .\cookbook\templates\shopping_list.html:250 +#: .\cookbook\templates\shopping_list.html:254 msgid "Shared with" msgstr "" @@ -1278,7 +1471,6 @@ msgstr "" #: .\cookbook\templates\no_groups_info.html:18 #: .\cookbook\templates\no_perm_info.html:15 -#: .\cookbook\templates\no_space_info.html:15 msgid "Please contact your administrator." msgstr "" @@ -1293,13 +1485,48 @@ msgid "" "action." msgstr "" -#: .\cookbook\templates\no_space_info.html:5 -#: .\cookbook\templates\no_space_info.html:12 +#: .\cookbook\templates\no_space_info.html:6 +#: .\cookbook\templates\no_space_info.html:13 msgid "No Space" msgstr "" -#: .\cookbook\templates\no_space_info.html:15 -msgid "You are not a member of any space." +#: .\cookbook\templates\no_space_info.html:17 +msgid "" +"Recipes, foods, shopping lists and more are organized in spaces of one or " +"more people." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:18 +msgid "" +"You can either be invited into an existing space or create your own one." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:31 +#: .\cookbook\templates\no_space_info.html:40 +msgid "Join Space" +msgstr "" + +#: .\cookbook\templates\no_space_info.html:34 +msgid "Join an existing space." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:35 +msgid "" +"To join an existing space either enter your invite token or click on the " +"invite link the space owner send you." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:48 +#: .\cookbook\templates\no_space_info.html:56 +msgid "Create Space" +msgstr "" + +#: .\cookbook\templates\no_space_info.html:51 +msgid "Create your own recipe space." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:52 +msgid "Start your own recipe space and invite other users to it." msgstr "" #: .\cookbook\templates\offline.html:6 @@ -1316,28 +1543,29 @@ msgid "" "recently viewed them. Keep in mind that data might be outdated." msgstr "" -#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\stats.html:47 +#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\space.html:56 +#: .\cookbook\templates\stats.html:47 msgid "Comments" msgstr "" #: .\cookbook\templates\recipe_view.html:44 .\cookbook\views\delete.py:118 -#: .\cookbook\views\edit.py:170 +#: .\cookbook\views\edit.py:179 msgid "Comment" msgstr "" #: .\cookbook\templates\recipes_table.html:19 #: .\cookbook\templates\recipes_table.html:23 -#: .\cookbook\templates\url_import.html:69 +#: .\cookbook\templates\url_import.html:440 msgid "Recipe Image" msgstr "" #: .\cookbook\templates\recipes_table.html:51 -#: .\cookbook\templates\url_import.html:74 +#: .\cookbook\templates\url_import.html:445 msgid "Preparation time ca." msgstr "" #: .\cookbook\templates\recipes_table.html:57 -#: .\cookbook\templates\url_import.html:79 +#: .\cookbook\templates\url_import.html:450 msgid "Waiting time ca." msgstr "" @@ -1353,39 +1581,67 @@ msgstr "" msgid "Recipe Home" msgstr "" -#: .\cookbook\templates\settings.html:22 +#: .\cookbook\templates\settings.html:23 msgid "Account" msgstr "" -#: .\cookbook\templates\settings.html:38 -msgid "Link social account" +#: .\cookbook\templates\settings.html:27 +msgid "Preferences" msgstr "" -#: .\cookbook\templates\settings.html:42 +#: .\cookbook\templates\settings.html:31 +msgid "API-Settings" +msgstr "" + +#: .\cookbook\templates\settings.html:39 +msgid "Name Settings" +msgstr "" + +#: .\cookbook\templates\settings.html:47 +msgid "Password Settings" +msgstr "" + +#: .\cookbook\templates\settings.html:55 +msgid "Email Settings" +msgstr "" + +#: .\cookbook\templates\settings.html:57 +msgid "Manage Email Settings" +msgstr "" + +#: .\cookbook\templates\settings.html:61 +msgid "Social" +msgstr "" + +#: .\cookbook\templates\settings.html:63 +msgid "Manage Social Accounts" +msgstr "" + +#: .\cookbook\templates\settings.html:75 msgid "Language" msgstr "" -#: .\cookbook\templates\settings.html:67 +#: .\cookbook\templates\settings.html:105 msgid "Style" msgstr "" -#: .\cookbook\templates\settings.html:79 +#: .\cookbook\templates\settings.html:125 msgid "API Token" msgstr "" -#: .\cookbook\templates\settings.html:80 +#: .\cookbook\templates\settings.html:126 msgid "" "You can use both basic authentication and token based authentication to " "access the REST API." msgstr "" -#: .\cookbook\templates\settings.html:92 +#: .\cookbook\templates\settings.html:143 msgid "" "Use the token as an Authorization header prefixed by the word token as shown " "in the following examples:" msgstr "" -#: .\cookbook\templates\settings.html:94 +#: .\cookbook\templates\settings.html:145 msgid "or" msgstr "" @@ -1406,58 +1662,55 @@ msgstr "" msgid "Create Superuser account" msgstr "" -#: .\cookbook\templates\shopping_list.html:75 +#: .\cookbook\templates\shopping_list.html:79 msgid "Shopping Recipes" msgstr "" -#: .\cookbook\templates\shopping_list.html:79 +#: .\cookbook\templates\shopping_list.html:83 msgid "No recipes selected" msgstr "" -#: .\cookbook\templates\shopping_list.html:146 +#: .\cookbook\templates\shopping_list.html:150 msgid "Entry Mode" msgstr "" -#: .\cookbook\templates\shopping_list.html:154 +#: .\cookbook\templates\shopping_list.html:158 msgid "Add Entry" msgstr "" -#: .\cookbook\templates\shopping_list.html:170 +#: .\cookbook\templates\shopping_list.html:174 msgid "Amount" msgstr "" -#: .\cookbook\templates\shopping_list.html:226 +#: .\cookbook\templates\shopping_list.html:230 +#: .\cookbook\templates\supermarket.html:7 msgid "Supermarket" msgstr "" -#: .\cookbook\templates\shopping_list.html:236 +#: .\cookbook\templates\shopping_list.html:240 msgid "Select Supermarket" msgstr "" -#: .\cookbook\templates\shopping_list.html:260 +#: .\cookbook\templates\shopping_list.html:264 msgid "Select User" msgstr "" -#: .\cookbook\templates\shopping_list.html:279 +#: .\cookbook\templates\shopping_list.html:283 msgid "Finished" msgstr "" -#: .\cookbook\templates\shopping_list.html:292 +#: .\cookbook\templates\shopping_list.html:296 msgid "You are offline, shopping list might not syncronize." msgstr "" -#: .\cookbook\templates\shopping_list.html:357 +#: .\cookbook\templates\shopping_list.html:361 msgid "Copy/Export" msgstr "" -#: .\cookbook\templates\shopping_list.html:361 +#: .\cookbook\templates\shopping_list.html:365 msgid "List Prefix" msgstr "" -#: .\cookbook\templates\shopping_list.html:708 -msgid "There was an error creating a resource!" -msgstr "" - #: .\cookbook\templates\socialaccount\connections.html:4 #: .\cookbook\templates\socialaccount\connections.html:7 msgid "Account Connections" @@ -1469,10 +1722,6 @@ msgid "" " accounts:" msgstr "" -#: .\cookbook\templates\socialaccount\connections.html:36 -msgid "Remove" -msgstr "" - #: .\cookbook\templates\socialaccount\connections.html:44 msgid "" "You currently have no social network accounts connected to this account." @@ -1482,38 +1731,87 @@ msgstr "" msgid "Add a 3rd Party Account" msgstr "" -#: .\cookbook\templates\stats.html:4 -msgid "Stats" +#: .\cookbook\templates\space.html:18 +msgid "Manage Subscription" msgstr "" -#: .\cookbook\templates\stats.html:19 +#: .\cookbook\templates\space.html:26 .\cookbook\templates\stats.html:19 msgid "Number of objects" msgstr "" -#: .\cookbook\templates\stats.html:30 +#: .\cookbook\templates\space.html:39 .\cookbook\templates\stats.html:30 msgid "Recipe Imports" msgstr "" -#: .\cookbook\templates\stats.html:38 +#: .\cookbook\templates\space.html:47 .\cookbook\templates\stats.html:38 msgid "Objects stats" msgstr "" -#: .\cookbook\templates\stats.html:41 +#: .\cookbook\templates\space.html:50 .\cookbook\templates\stats.html:41 msgid "Recipes without Keywords" msgstr "" -#: .\cookbook\templates\stats.html:43 +#: .\cookbook\templates\space.html:52 .\cookbook\templates\stats.html:43 msgid "External Recipes" msgstr "" -#: .\cookbook\templates\stats.html:45 +#: .\cookbook\templates\space.html:54 .\cookbook\templates\stats.html:45 msgid "Internal Recipes" msgstr "" -#: .\cookbook\templates\system.html:21 .\cookbook\views\lists.py:115 +#: .\cookbook\templates\space.html:67 +msgid "Members" +msgstr "" + +#: .\cookbook\templates\space.html:71 +msgid "Invite User" +msgstr "" + +#: .\cookbook\templates\space.html:82 +msgid "User" +msgstr "" + +#: .\cookbook\templates\space.html:83 +msgid "Groups" +msgstr "" + +#: .\cookbook\templates\space.html:99 +msgid "admin" +msgstr "" + +#: .\cookbook\templates\space.html:100 +msgid "user" +msgstr "" + +#: .\cookbook\templates\space.html:101 +msgid "guest" +msgstr "" + +#: .\cookbook\templates\space.html:102 +msgid "remove" +msgstr "" + +#: .\cookbook\templates\space.html:106 +msgid "Update" +msgstr "" + +#: .\cookbook\templates\space.html:110 +msgid "You cannot edit yourself." +msgstr "" + +#: .\cookbook\templates\space.html:117 +msgid "There are no members in your space yet!" +msgstr "" + +#: .\cookbook\templates\space.html:124 .\cookbook\templates\system.html:21 +#: .\cookbook\views\lists.py:115 msgid "Invite Links" msgstr "" +#: .\cookbook\templates\stats.html:4 +msgid "Stats" +msgstr "" + #: .\cookbook\templates\system.html:22 msgid "Show Links" msgstr "" @@ -1611,45 +1909,141 @@ msgid "" " " msgstr "" -#: .\cookbook\templates\url_import.html:5 +#: .\cookbook\templates\url_import.html:6 msgid "URL Import" msgstr "" -#: .\cookbook\templates\url_import.html:23 +#: .\cookbook\templates\url_import.html:31 +msgid "Drag me to your bookmarks to import recipes from anywhere" +msgstr "" + +#: .\cookbook\templates\url_import.html:32 +msgid "Bookmark Me!" +msgstr "" + +#: .\cookbook\templates\url_import.html:61 msgid "Enter website URL" msgstr "" -#: .\cookbook\templates\url_import.html:36 -msgid "Enter json directly" +#: .\cookbook\templates\url_import.html:97 +msgid "Select recipe files to import or drop them here..." msgstr "" -#: .\cookbook\templates\url_import.html:57 +#: .\cookbook\templates\url_import.html:118 +msgid "Paste json or html source here to load recipe." +msgstr "" + +#: .\cookbook\templates\url_import.html:146 +msgid "Preview Recipe Data" +msgstr "" + +#: .\cookbook\templates\url_import.html:147 +msgid "Drag recipe attributes from the right into the appropriate box below." +msgstr "" + +#: .\cookbook\templates\url_import.html:156 +#: .\cookbook\templates\url_import.html:173 +#: .\cookbook\templates\url_import.html:190 +#: .\cookbook\templates\url_import.html:209 +#: .\cookbook\templates\url_import.html:227 +#: .\cookbook\templates\url_import.html:242 +#: .\cookbook\templates\url_import.html:257 +#: .\cookbook\templates\url_import.html:273 +#: .\cookbook\templates\url_import.html:300 +#: .\cookbook\templates\url_import.html:351 +msgid "Clear Contents" +msgstr "" + +#: .\cookbook\templates\url_import.html:158 +msgid "Text dragged here will be appended to the name." +msgstr "" + +#: .\cookbook\templates\url_import.html:175 +msgid "Text dragged here will be appended to the description." +msgstr "" + +#: .\cookbook\templates\url_import.html:192 +msgid "Keywords dragged here will be appended to current list" +msgstr "" + +#: .\cookbook\templates\url_import.html:207 +msgid "Image" +msgstr "" + +#: .\cookbook\templates\url_import.html:239 +msgid "Prep Time" +msgstr "" + +#: .\cookbook\templates\url_import.html:254 +msgid "Cook Time" +msgstr "" + +#: .\cookbook\templates\url_import.html:275 +msgid "Ingredients dragged here will be appended to current list." +msgstr "" + +#: .\cookbook\templates\url_import.html:302 +msgid "" +"Recipe instructions dragged here will be appended to current instructions." +msgstr "" + +#: .\cookbook\templates\url_import.html:325 +msgid "Discovered Attributes" +msgstr "" + +#: .\cookbook\templates\url_import.html:327 +msgid "" +"Drag recipe attributes from below into the appropriate box on the left. " +"Click any node to display its full properties." +msgstr "" + +#: .\cookbook\templates\url_import.html:344 +msgid "Show Blank Field" +msgstr "" + +#: .\cookbook\templates\url_import.html:349 +msgid "Blank Field" +msgstr "" + +#: .\cookbook\templates\url_import.html:353 +msgid "Items dragged to Blank Field will be appended." +msgstr "" + +#: .\cookbook\templates\url_import.html:400 +msgid "Delete Text" +msgstr "" + +#: .\cookbook\templates\url_import.html:413 +msgid "Delete image" +msgstr "" + +#: .\cookbook\templates\url_import.html:429 msgid "Recipe Name" msgstr "" -#: .\cookbook\templates\url_import.html:62 +#: .\cookbook\templates\url_import.html:433 msgid "Recipe Description" msgstr "" -#: .\cookbook\templates\url_import.html:123 -#: .\cookbook\templates\url_import.html:155 -#: .\cookbook\templates\url_import.html:211 +#: .\cookbook\templates\url_import.html:494 +#: .\cookbook\templates\url_import.html:526 +#: .\cookbook\templates\url_import.html:582 msgid "Select one" msgstr "" -#: .\cookbook\templates\url_import.html:225 +#: .\cookbook\templates\url_import.html:596 msgid "All Keywords" msgstr "" -#: .\cookbook\templates\url_import.html:228 +#: .\cookbook\templates\url_import.html:599 msgid "Import all keywords, not only the ones already existing." msgstr "" -#: .\cookbook\templates\url_import.html:255 +#: .\cookbook\templates\url_import.html:626 msgid "Information" msgstr "" -#: .\cookbook\templates\url_import.html:257 +#: .\cookbook\templates\url_import.html:628 msgid "" " Only websites containing ld+json or microdata information can currently\n" " be imported. Most big recipe pages " @@ -1660,48 +2054,73 @@ msgid "" " github issues." msgstr "" -#: .\cookbook\templates\url_import.html:265 +#: .\cookbook\templates\url_import.html:636 msgid "Google ld+json Info" msgstr "" -#: .\cookbook\templates\url_import.html:268 +#: .\cookbook\templates\url_import.html:639 msgid "GitHub Issues" msgstr "" -#: .\cookbook\templates\url_import.html:270 +#: .\cookbook\templates\url_import.html:641 msgid "Recipe Markup Specification" msgstr "" -#: .\cookbook\views\api.py:71 +#: .\cookbook\views\api.py:77 msgid "Parameter updated_at incorrectly formatted" msgstr "" -#: .\cookbook\views\api.py:455 .\cookbook\views\views.py:226 +#: .\cookbook\views\api.py:553 .\cookbook\views\views.py:295 msgid "This feature is not available in the demo version!" msgstr "" -#: .\cookbook\views\api.py:478 +#: .\cookbook\views\api.py:576 msgid "Sync successful!" msgstr "" -#: .\cookbook\views\api.py:483 +#: .\cookbook\views\api.py:581 msgid "Error synchronizing with Storage" msgstr "" -#: .\cookbook\views\api.py:556 .\cookbook\views\api.py:576 +#: .\cookbook\views\api.py:649 +msgid "Nothing to do." +msgstr "" + +#: .\cookbook\views\api.py:664 +msgid "The requested site provided malformed data and cannot be read." +msgstr "" + +#: .\cookbook\views\api.py:671 msgid "The requested page could not be found." msgstr "" -#: .\cookbook\views\api.py:585 +#: .\cookbook\views\api.py:680 msgid "" -"The requested page refused to provide any information (Status Code 403)." +"The requested site does not provide any recognized data format to import the " +"recipe from." msgstr "" -#: .\cookbook\views\api.py:611 -msgid "Could not parse correctly..." +#: .\cookbook\views\api.py:694 +msgid "No useable data could be found." msgstr "" -#: .\cookbook\views\data.py:94 +#: .\cookbook\views\api.py:710 +msgid "I couldn't find anything to do." +msgstr "" + +#: .\cookbook\views\data.py:30 .\cookbook\views\data.py:121 +#: .\cookbook\views\edit.py:50 .\cookbook\views\import_export.py:67 +#: .\cookbook\views\new.py:32 +msgid "You have reached the maximum number of recipes for your space." +msgstr "" + +#: .\cookbook\views\data.py:34 .\cookbook\views\data.py:125 +#: .\cookbook\views\edit.py:54 .\cookbook\views\import_export.py:71 +#: .\cookbook\views\new.py:36 +msgid "You have more users than allowed in your space." +msgstr "" + +#: .\cookbook\views\data.py:103 #, python-format msgid "Batch edit done. %(count)d recipe was updated." msgid_plural "Batch edit done. %(count)d Recipes where updated." @@ -1713,7 +2132,7 @@ msgid "Monitor" msgstr "" #: .\cookbook\views\delete.py:96 .\cookbook\views\lists.py:102 -#: .\cookbook\views\new.py:86 +#: .\cookbook\views\new.py:98 msgid "Storage Backend" msgstr "" @@ -1722,8 +2141,8 @@ msgid "" "Could not delete this storage backend as it is used in at least one monitor." msgstr "" -#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:204 -#: .\cookbook\views\new.py:144 +#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:213 +#: .\cookbook\views\new.py:156 msgid "Recipe Book" msgstr "" @@ -1731,55 +2150,55 @@ msgstr "" msgid "Bookmarks" msgstr "" -#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:214 +#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:252 msgid "Invite Link" msgstr "" -#: .\cookbook\views\edit.py:110 +#: .\cookbook\views\edit.py:119 msgid "Food" msgstr "" -#: .\cookbook\views\edit.py:119 +#: .\cookbook\views\edit.py:128 msgid "You cannot edit this storage!" msgstr "" -#: .\cookbook\views\edit.py:139 +#: .\cookbook\views\edit.py:148 msgid "Storage saved!" msgstr "" -#: .\cookbook\views\edit.py:145 +#: .\cookbook\views\edit.py:154 msgid "There was an error updating this storage backend!" msgstr "" -#: .\cookbook\views\edit.py:156 +#: .\cookbook\views\edit.py:165 msgid "Storage" msgstr "" -#: .\cookbook\views\edit.py:252 +#: .\cookbook\views\edit.py:261 msgid "Changes saved!" msgstr "" -#: .\cookbook\views\edit.py:256 +#: .\cookbook\views\edit.py:265 msgid "Error saving changes!" msgstr "" -#: .\cookbook\views\edit.py:289 +#: .\cookbook\views\edit.py:299 msgid "Units merged!" msgstr "" -#: .\cookbook\views\edit.py:291 .\cookbook\views\edit.py:307 +#: .\cookbook\views\edit.py:301 .\cookbook\views\edit.py:317 msgid "Cannot merge with the same object!" msgstr "" -#: .\cookbook\views\edit.py:305 +#: .\cookbook\views\edit.py:315 msgid "Foods merged!" msgstr "" -#: .\cookbook\views\import_export.py:73 +#: .\cookbook\views\import_export.py:93 msgid "Importing is not implemented for this provider" msgstr "" -#: .\cookbook\views\import_export.py:92 +#: .\cookbook\views\import_export.py:115 msgid "Exporting is not implemented for this provider" msgstr "" @@ -1795,41 +2214,103 @@ msgstr "" msgid "Shopping Lists" msgstr "" -#: .\cookbook\views\new.py:111 +#: .\cookbook\views\new.py:123 msgid "Imported new recipe!" msgstr "" -#: .\cookbook\views\new.py:114 +#: .\cookbook\views\new.py:126 msgid "There was an error importing this recipe!" msgstr "" -#: .\cookbook\views\views.py:123 +#: .\cookbook\views\new.py:226 +msgid "Hello" +msgstr "" + +#: .\cookbook\views\new.py:226 +msgid "You have been invited by " +msgstr "" + +#: .\cookbook\views\new.py:227 +msgid " to join their Tandoor Recipes space " +msgstr "" + +#: .\cookbook\views\new.py:228 +msgid "Click the following link to activate your account: " +msgstr "" + +#: .\cookbook\views\new.py:229 +msgid "" +"If the link does not work use the following code to manually join the space: " +msgstr "" + +#: .\cookbook\views\new.py:230 +msgid "The invitation is valid until " +msgstr "" + +#: .\cookbook\views\new.py:231 +msgid "" +"Tandoor Recipes is an Open Source recipe manager. Check it out on GitHub " +msgstr "" + +#: .\cookbook\views\new.py:234 +msgid "Tandoor Recipes Invite" +msgstr "" + +#: .\cookbook\views\new.py:241 +msgid "Invite link successfully send to user." +msgstr "" + +#: .\cookbook\views\new.py:244 +msgid "" +"You have send to many emails, please share the link manually or wait a few " +"hours." +msgstr "" + +#: .\cookbook\views\new.py:246 +msgid "Email to user could not be send, please share link manually." +msgstr "" + +#: .\cookbook\views\views.py:125 +msgid "" +"You have successfully created your own recipe space. Start by adding some " +"recipes or invite other people to join you." +msgstr "" + +#: .\cookbook\views\views.py:173 msgid "You do not have the required permissions to perform this action!" msgstr "" -#: .\cookbook\views\views.py:134 +#: .\cookbook\views\views.py:184 msgid "Comment saved!" msgstr "" -#: .\cookbook\views\views.py:326 +#: .\cookbook\views\views.py:396 msgid "" "The setup page can only be used to create the first user! If you have " "forgotten your superuser credentials please consult the django documentation " "on how to reset passwords." msgstr "" -#: .\cookbook\views\views.py:333 .\cookbook\views\views.py:378 +#: .\cookbook\views\views.py:403 msgid "Passwords dont match!" msgstr "" -#: .\cookbook\views\views.py:349 .\cookbook\views\views.py:385 +#: .\cookbook\views\views.py:419 msgid "User has been created, please login!" msgstr "" -#: .\cookbook\views\views.py:365 +#: .\cookbook\views\views.py:435 msgid "Malformed Invite Link supplied!" msgstr "" -#: .\cookbook\views\views.py:405 +#: .\cookbook\views\views.py:441 +msgid "You are already member of a space and therefore cannot join this one." +msgstr "" + +#: .\cookbook\views\views.py:452 +msgid "Successfully joined space." +msgstr "" + +#: .\cookbook\views\views.py:458 msgid "Invite Link not valid or already used!" msgstr "" diff --git a/cookbook/locale/zh_CN/LC_MESSAGES/django.po b/cookbook/locale/zh_CN/LC_MESSAGES/django.po index a0a54d56..404178a1 100644 --- a/cookbook/locale/zh_CN/LC_MESSAGES/django.po +++ b/cookbook/locale/zh_CN/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-04-11 15:09+0200\n" +"POT-Creation-Date: 2021-06-12 20:30+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,48 +18,49 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: .\cookbook\filters.py:23 .\cookbook\templates\base.html:91 -#: .\cookbook\templates\forms\edit_internal_recipe.html:219 +#: .\cookbook\filters.py:23 .\cookbook\templates\base.html:98 +#: .\cookbook\templates\forms\edit_internal_recipe.html:246 #: .\cookbook\templates\forms\ingredients.html:34 -#: .\cookbook\templates\stats.html:28 .\cookbook\views\lists.py:67 +#: .\cookbook\templates\space.html:37 .\cookbook\templates\stats.html:28 +#: .\cookbook\templates\url_import.html:270 .\cookbook\views\lists.py:67 msgid "Ingredients" msgstr "" -#: .\cookbook\forms.py:45 +#: .\cookbook\forms.py:49 msgid "" "Color of the top navigation bar. Not all colors work with all themes, just " "try them out!" msgstr "" -#: .\cookbook\forms.py:46 +#: .\cookbook\forms.py:51 msgid "Default Unit to be used when inserting a new ingredient into a recipe." msgstr "" -#: .\cookbook\forms.py:47 +#: .\cookbook\forms.py:53 msgid "" "Enables support for fractions in ingredient amounts (e.g. convert decimals " "to fractions automatically)" msgstr "" -#: .\cookbook\forms.py:48 +#: .\cookbook\forms.py:56 msgid "" "Users with whom newly created meal plan/shopping list entries should be " "shared by default." msgstr "" -#: .\cookbook\forms.py:49 +#: .\cookbook\forms.py:58 msgid "Show recently viewed recipes on search page." msgstr "" -#: .\cookbook\forms.py:50 +#: .\cookbook\forms.py:59 msgid "Number of decimals to round ingredients." msgstr "" -#: .\cookbook\forms.py:51 +#: .\cookbook\forms.py:60 msgid "If you want to be able to create and see comments underneath recipes." msgstr "" -#: .\cookbook\forms.py:53 +#: .\cookbook\forms.py:62 msgid "" "Setting to 0 will disable auto sync. When viewing a shopping list the list " "is updated every set seconds to sync changes someone else might have made. " @@ -67,167 +68,181 @@ msgid "" "mobile data. If lower than instance limit it is reset when saving." msgstr "" -#: .\cookbook\forms.py:56 +#: .\cookbook\forms.py:65 msgid "Makes the navbar stick to the top of the page." msgstr "" -#: .\cookbook\forms.py:72 +#: .\cookbook\forms.py:81 msgid "" "Both fields are optional. If none are given the username will be displayed " "instead" msgstr "" -#: .\cookbook\forms.py:93 .\cookbook\forms.py:315 -#: .\cookbook\templates\forms\edit_internal_recipe.html:45 +#: .\cookbook\forms.py:102 .\cookbook\forms.py:331 +#: .\cookbook\templates\forms\edit_internal_recipe.html:49 +#: .\cookbook\templates\url_import.html:154 msgid "Name" msgstr "" -#: .\cookbook\forms.py:94 .\cookbook\forms.py:316 -#: .\cookbook\templates\base.html:98 -#: .\cookbook\templates\forms\edit_internal_recipe.html:81 -#: .\cookbook\templates\stats.html:24 .\cookbook\templates\url_import.html:202 +#: .\cookbook\forms.py:103 .\cookbook\forms.py:332 +#: .\cookbook\templates\base.html:105 +#: .\cookbook\templates\forms\edit_internal_recipe.html:85 +#: .\cookbook\templates\space.html:33 .\cookbook\templates\stats.html:24 +#: .\cookbook\templates\url_import.html:188 +#: .\cookbook\templates\url_import.html:573 msgid "Keywords" msgstr "" -#: .\cookbook\forms.py:95 +#: .\cookbook\forms.py:104 msgid "Preparation time in minutes" msgstr "" -#: .\cookbook\forms.py:96 +#: .\cookbook\forms.py:105 msgid "Waiting time (cooking/baking) in minutes" msgstr "" -#: .\cookbook\forms.py:97 .\cookbook\forms.py:317 +#: .\cookbook\forms.py:106 .\cookbook\forms.py:333 msgid "Path" msgstr "" -#: .\cookbook\forms.py:98 +#: .\cookbook\forms.py:107 msgid "Storage UID" msgstr "" -#: .\cookbook\forms.py:121 +#: .\cookbook\forms.py:133 msgid "Default" msgstr "" -#: .\cookbook\forms.py:130 +#: .\cookbook\forms.py:144 .\cookbook\templates\url_import.html:90 msgid "" "To prevent duplicates recipes with the same name as existing ones are " "ignored. Check this box to import everything." msgstr "" -#: .\cookbook\forms.py:149 +#: .\cookbook\forms.py:164 msgid "New Unit" msgstr "" -#: .\cookbook\forms.py:150 +#: .\cookbook\forms.py:165 msgid "New unit that other gets replaced by." msgstr "" -#: .\cookbook\forms.py:155 +#: .\cookbook\forms.py:170 msgid "Old Unit" msgstr "" -#: .\cookbook\forms.py:156 +#: .\cookbook\forms.py:171 msgid "Unit that should be replaced." msgstr "" -#: .\cookbook\forms.py:172 +#: .\cookbook\forms.py:187 msgid "New Food" msgstr "" -#: .\cookbook\forms.py:173 +#: .\cookbook\forms.py:188 msgid "New food that other gets replaced by." msgstr "" -#: .\cookbook\forms.py:178 +#: .\cookbook\forms.py:193 msgid "Old Food" msgstr "" -#: .\cookbook\forms.py:179 +#: .\cookbook\forms.py:194 msgid "Food that should be replaced." msgstr "" -#: .\cookbook\forms.py:197 +#: .\cookbook\forms.py:212 msgid "Add your comment: " msgstr "" -#: .\cookbook\forms.py:238 +#: .\cookbook\forms.py:253 msgid "Leave empty for dropbox and enter app password for nextcloud." msgstr "" -#: .\cookbook\forms.py:245 +#: .\cookbook\forms.py:260 msgid "Leave empty for nextcloud and enter api token for dropbox." msgstr "" -#: .\cookbook\forms.py:253 +#: .\cookbook\forms.py:269 msgid "" "Leave empty for dropbox and enter only base url for nextcloud (/remote." "php/webdav/ is added automatically)" msgstr "" -#: .\cookbook\forms.py:291 +#: .\cookbook\forms.py:307 msgid "Search String" msgstr "" -#: .\cookbook\forms.py:318 +#: .\cookbook\forms.py:334 msgid "File ID" msgstr "" -#: .\cookbook\forms.py:354 +#: .\cookbook\forms.py:370 msgid "You must provide at least a recipe or a title." msgstr "" -#: .\cookbook\forms.py:367 +#: .\cookbook\forms.py:383 msgid "You can list default users to share recipes with in the settings." msgstr "" -#: .\cookbook\forms.py:368 -#: .\cookbook\templates\forms\edit_internal_recipe.html:377 +#: .\cookbook\forms.py:384 +#: .\cookbook\templates\forms\edit_internal_recipe.html:404 msgid "" "You can use markdown to format this field. See the docs here" msgstr "" -#: .\cookbook\forms.py:393 -msgid "A username is not required, if left blank the new user can choose one." +#: .\cookbook\forms.py:409 +msgid "Maximum number of users for this space reached." msgstr "" -#: .\cookbook\helper\permission_helper.py:123 -#: .\cookbook\helper\permission_helper.py:129 -#: .\cookbook\helper\permission_helper.py:151 -#: .\cookbook\helper\permission_helper.py:196 -#: .\cookbook\helper\permission_helper.py:210 -#: .\cookbook\helper\permission_helper.py:221 -#: .\cookbook\helper\permission_helper.py:232 .\cookbook\views\data.py:30 -#: .\cookbook\views\views.py:112 .\cookbook\views\views.py:116 -#: .\cookbook\views\views.py:184 -msgid "You do not have the required permissions to view this page!" +#: .\cookbook\forms.py:415 +msgid "Email address already taken!" msgstr "" -#: .\cookbook\helper\permission_helper.py:141 +#: .\cookbook\forms.py:423 +msgid "" +"An email address is not required but if present the invite link will be send " +"to the user." +msgstr "" + +#: .\cookbook\forms.py:438 +msgid "Name already taken." +msgstr "" + +#: .\cookbook\forms.py:449 +msgid "Accept Terms and Privacy" +msgstr "" + +#: .\cookbook\helper\AllAuthCustomAdapter.py:30 +msgid "" +"In order to prevent spam, the requested email was not send. Please wait a " +"few minutes and try again." +msgstr "" + +#: .\cookbook\helper\permission_helper.py:124 +#: .\cookbook\helper\permission_helper.py:144 .\cookbook\views\views.py:147 msgid "You are not logged in and therefore cannot view this page!" msgstr "" -#: .\cookbook\helper\permission_helper.py:145 -#: .\cookbook\helper\permission_helper.py:167 -#: .\cookbook\helper\permission_helper.py:182 +#: .\cookbook\helper\permission_helper.py:127 +#: .\cookbook\helper\permission_helper.py:132 +#: .\cookbook\helper\permission_helper.py:154 +#: .\cookbook\helper\permission_helper.py:199 +#: .\cookbook\helper\permission_helper.py:213 +#: .\cookbook\helper\permission_helper.py:224 +#: .\cookbook\helper\permission_helper.py:235 .\cookbook\views\data.py:39 +#: .\cookbook\views\views.py:158 .\cookbook\views\views.py:165 +#: .\cookbook\views\views.py:253 +msgid "You do not have the required permissions to view this page!" +msgstr "" + +#: .\cookbook\helper\permission_helper.py:148 +#: .\cookbook\helper\permission_helper.py:170 +#: .\cookbook\helper\permission_helper.py:185 msgid "You cannot interact with this object as it is not owned by you!" msgstr "" -#: .\cookbook\helper\recipe_url_import.py:40 .\cookbook\views\api.py:549 -msgid "The requested site provided malformed data and cannot be read." -msgstr "" - -#: .\cookbook\helper\recipe_url_import.py:54 -msgid "" -"The requested site does not provide any recognized data format to import the " -"recipe from." -msgstr "" - -#: .\cookbook\helper\recipe_url_import.py:160 -msgid "Imported from" -msgstr "" - #: .\cookbook\helper\template_helper.py:60 #: .\cookbook\helper\template_helper.py:62 msgid "Could not parse template code." @@ -237,42 +252,53 @@ msgstr "" #: .\cookbook\templates\import.html:14 .\cookbook\templates\import.html:20 #: .\cookbook\templates\import_response.html:7 #: .\cookbook\templates\test.html:14 .\cookbook\templates\test.html:20 -#: .\cookbook\templates\url_import.html:233 .\cookbook\views\delete.py:60 -#: .\cookbook\views\edit.py:190 +#: .\cookbook\templates\url_import.html:27 +#: .\cookbook\templates\url_import.html:101 +#: .\cookbook\templates\url_import.html:123 +#: .\cookbook\templates\url_import.html:317 +#: .\cookbook\templates\url_import.html:604 .\cookbook\views\delete.py:60 +#: .\cookbook\views\edit.py:199 msgid "Import" msgstr "" -#: .\cookbook\integration\integration.py:131 +#: .\cookbook\integration\integration.py:162 msgid "" "Importer expected a .zip file. Did you choose the correct importer type for " "your data ?" msgstr "" -#: .\cookbook\integration\integration.py:134 +#: .\cookbook\integration\integration.py:165 +msgid "" +"An unexpected error occurred during the import. Please make sure you have " +"uploaded a valid file." +msgstr "" + +#: .\cookbook\integration\integration.py:169 msgid "The following recipes were ignored because they already existed:" msgstr "" -#: .\cookbook\integration\integration.py:137 +#: .\cookbook\integration\integration.py:173 #, python-format msgid "Imported %s recipes." msgstr "" -#: .\cookbook\integration\paprika.py:44 +#: .\cookbook\integration\paprika.py:46 msgid "Notes" msgstr "" -#: .\cookbook\integration\paprika.py:47 +#: .\cookbook\integration\paprika.py:49 msgid "Nutritional Information" msgstr "" -#: .\cookbook\integration\paprika.py:50 +#: .\cookbook\integration\paprika.py:53 msgid "Source" msgstr "" #: .\cookbook\integration\safron.py:23 -#: .\cookbook\templates\forms\edit_internal_recipe.html:75 +#: .\cookbook\templates\forms\edit_internal_recipe.html:79 #: .\cookbook\templates\include\log_cooking.html:16 -#: .\cookbook\templates\url_import.html:84 +#: .\cookbook\templates\url_import.html:224 +#: .\cookbook\templates\url_import.html:455 msgid "Servings" msgstr "" @@ -281,11 +307,11 @@ msgid "Waiting time" msgstr "" #: .\cookbook\integration\safron.py:27 -#: .\cookbook\templates\forms\edit_internal_recipe.html:69 +#: .\cookbook\templates\forms\edit_internal_recipe.html:73 msgid "Preparation Time" msgstr "" -#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:71 +#: .\cookbook\integration\safron.py:29 .\cookbook\templates\base.html:78 #: .\cookbook\templates\forms\ingredients.html:7 #: .\cookbook\templates\index.html:7 msgid "Cookbook" @@ -311,44 +337,72 @@ msgstr "" msgid "Other" msgstr "" -#: .\cookbook\models.py:110 .\cookbook\templates\shopping_list.html:48 +#: .\cookbook\models.py:71 +msgid "" +"Maximum file storage for space in MB. 0 for unlimited, -1 to disable file " +"upload." +msgstr "" + +#: .\cookbook\models.py:121 .\cookbook\templates\search.html:7 +#: .\cookbook\templates\shopping_list.html:52 msgid "Search" msgstr "" -#: .\cookbook\models.py:111 .\cookbook\templates\base.html:85 +#: .\cookbook\models.py:122 .\cookbook\templates\base.html:92 #: .\cookbook\templates\meal_plan.html:5 .\cookbook\views\delete.py:152 -#: .\cookbook\views\edit.py:224 .\cookbook\views\new.py:188 +#: .\cookbook\views\edit.py:233 .\cookbook\views\new.py:201 msgid "Meal-Plan" msgstr "" -#: .\cookbook\models.py:112 .\cookbook\templates\base.html:82 +#: .\cookbook\models.py:123 .\cookbook\templates\base.html:89 msgid "Books" msgstr "" -#: .\cookbook\models.py:119 +#: .\cookbook\models.py:131 msgid "Small" msgstr "" -#: .\cookbook\models.py:119 +#: .\cookbook\models.py:131 msgid "Large" msgstr "" -#: .\cookbook\models.py:327 -#: .\cookbook\templates\forms\edit_internal_recipe.html:198 +#: .\cookbook\models.py:131 .\cookbook\templates\generic\new_template.html:6 +#: .\cookbook\templates\generic\new_template.html:14 +#: .\cookbook\templates\meal_plan.html:323 +msgid "New" +msgstr "" + +#: .\cookbook\models.py:340 +#: .\cookbook\templates\forms\edit_internal_recipe.html:202 msgid "Text" msgstr "" -#: .\cookbook\models.py:327 -#: .\cookbook\templates\forms\edit_internal_recipe.html:199 +#: .\cookbook\models.py:340 +#: .\cookbook\templates\forms\edit_internal_recipe.html:203 msgid "Time" msgstr "" +#: .\cookbook\models.py:340 +#: .\cookbook\templates\forms\edit_internal_recipe.html:204 +#: .\cookbook\templates\forms\edit_internal_recipe.html:218 +msgid "File" +msgstr "" + +#: .\cookbook\serializer.py:109 +msgid "File uploads are not enabled for this Space." +msgstr "" + +#: .\cookbook\serializer.py:117 +msgid "You have reached your file upload limit." +msgstr "" + #: .\cookbook\tables.py:35 .\cookbook\templates\books.html:36 #: .\cookbook\templates\generic\edit_template.html:6 #: .\cookbook\templates\generic\edit_template.html:14 #: .\cookbook\templates\meal_plan.html:281 #: .\cookbook\templates\recipes_table.html:82 #: .\cookbook\templates\shopping_list.html:33 +#: .\cookbook\templates\space.html:84 msgid "Edit" msgstr "" @@ -362,10 +416,6 @@ msgstr "" msgid "Delete" msgstr "" -#: .\cookbook\tables.py:144 -msgid "Link" -msgstr "" - #: .\cookbook\templates\404.html:5 msgid "404 Error" msgstr "" @@ -382,21 +432,120 @@ msgstr "" msgid "Report a Bug" msgstr "" -#: .\cookbook\templates\account\login.html:7 -#: .\cookbook\templates\base.html:170 +#: .\cookbook\templates\account\email.html:6 +#: .\cookbook\templates\account\email.html:9 +msgid "E-mail Addresses" +msgstr "" + +#: .\cookbook\templates\account\email.html:11 +msgid "The following e-mail addresses are associated with your account:" +msgstr "" + +#: .\cookbook\templates\account\email.html:28 +msgid "Verified" +msgstr "" + +#: .\cookbook\templates\account\email.html:30 +msgid "Unverified" +msgstr "" + +#: .\cookbook\templates\account\email.html:32 +msgid "Primary" +msgstr "" + +#: .\cookbook\templates\account\email.html:39 +msgid "Make Primary" +msgstr "" + +#: .\cookbook\templates\account\email.html:41 +msgid "Re-send Verification" +msgstr "" + +#: .\cookbook\templates\account\email.html:42 +#: .\cookbook\templates\socialaccount\connections.html:36 +msgid "Remove" +msgstr "" + +#: .\cookbook\templates\account\email.html:50 +msgid "Warning:" +msgstr "" + +#: .\cookbook\templates\account\email.html:50 +msgid "" +"You currently do not have any e-mail address set up. You should really add " +"an e-mail address so you can receive notifications, reset your password, etc." +msgstr "" + +#: .\cookbook\templates\account\email.html:56 +msgid "Add E-mail Address" +msgstr "" + +#: .\cookbook\templates\account\email.html:61 +msgid "Add E-mail" +msgstr "" + +#: .\cookbook\templates\account\email.html:71 +msgid "Do you really want to remove the selected e-mail address?" +msgstr "" + +#: .\cookbook\templates\account\email_confirm.html:6 +#: .\cookbook\templates\account\email_confirm.html:10 +msgid "Confirm E-mail Address" +msgstr "" + +#: .\cookbook\templates\account\email_confirm.html:16 +#, python-format +msgid "" +"Please confirm that\n" +" %(email)s is an e-mail address " +"for user %(user_display)s\n" +" ." +msgstr "" + +#: .\cookbook\templates\account\email_confirm.html:22 +#: .\cookbook\templates\generic\delete_template.html:21 +msgid "Confirm" +msgstr "" + +#: .\cookbook\templates\account\email_confirm.html:29 +#, python-format +msgid "" +"This e-mail confirmation link expired or is invalid. Please\n" +" issue a new e-mail confirmation " +"request." +msgstr "" + +#: .\cookbook\templates\account\login.html:8 +#: .\cookbook\templates\base.html:180 msgid "Login" msgstr "" -#: .\cookbook\templates\account\login.html:13 -#: .\cookbook\templates\account\login.html:28 +#: .\cookbook\templates\account\login.html:15 +#: .\cookbook\templates\account\login.html:31 +#: .\cookbook\templates\account\signup.html:69 +#: .\cookbook\templates\account\signup_closed.html:15 msgid "Sign In" msgstr "" -#: .\cookbook\templates\account\login.html:38 +#: .\cookbook\templates\account\login.html:32 +msgid "Sign Up" +msgstr "" + +#: .\cookbook\templates\account\login.html:36 +#: .\cookbook\templates\account\login.html:37 +#: .\cookbook\templates\account\password_reset.html:29 +msgid "Reset My Password" +msgstr "" + +#: .\cookbook\templates\account\login.html:37 +msgid "Lost your password?" +msgstr "" + +#: .\cookbook\templates\account\login.html:48 msgid "Social Login" msgstr "" -#: .\cookbook\templates\account\login.html:39 +#: .\cookbook\templates\account\login.html:49 msgid "You can use any of the following providers to sign in." msgstr "" @@ -410,115 +559,161 @@ msgstr "" msgid "Are you sure you want to sign out?" msgstr "" -#: .\cookbook\templates\account\password_reset.html:5 -#: .\cookbook\templates\account\password_reset_done.html:5 +#: .\cookbook\templates\account\password_reset.html:7 +#: .\cookbook\templates\account\password_reset.html:13 +#: .\cookbook\templates\account\password_reset_done.html:7 +#: .\cookbook\templates\account\password_reset_done.html:10 msgid "Password Reset" msgstr "" -#: .\cookbook\templates\account\password_reset.html:9 -#: .\cookbook\templates\account\password_reset_done.html:9 -msgid "Password reset is not implemented for the time being!" +#: .\cookbook\templates\account\password_reset.html:24 +msgid "" +"Forgotten your password? Enter your e-mail address below, and we'll send you " +"an e-mail allowing you to reset it." msgstr "" -#: .\cookbook\templates\account\signup.html:5 +#: .\cookbook\templates\account\password_reset.html:32 +msgid "Password reset is disabled on this instance." +msgstr "" + +#: .\cookbook\templates\account\password_reset_done.html:16 +msgid "" +"We have sent you an e-mail. Please contact us if you do not receive it " +"within a few minutes." +msgstr "" + +#: .\cookbook\templates\account\signup.html:6 msgid "Register" msgstr "" -#: .\cookbook\templates\account\signup.html:9 -msgid "Create your Account" +#: .\cookbook\templates\account\signup.html:12 +msgid "Create an Account" msgstr "" -#: .\cookbook\templates\account\signup.html:14 +#: .\cookbook\templates\account\signup.html:42 +msgid "I accept the follwoing" +msgstr "" + +#: .\cookbook\templates\account\signup.html:45 +msgid "Terms and Conditions" +msgstr "" + +#: .\cookbook\templates\account\signup.html:48 +msgid "and" +msgstr "" + +#: .\cookbook\templates\account\signup.html:52 +msgid "Privacy Policy" +msgstr "" + +#: .\cookbook\templates\account\signup.html:65 msgid "Create User" msgstr "" -#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:160 +#: .\cookbook\templates\account\signup.html:69 +msgid "Already have an account?" +msgstr "" + +#: .\cookbook\templates\account\signup_closed.html:5 +#: .\cookbook\templates\account\signup_closed.html:11 +msgid "Sign Up Closed" +msgstr "" + +#: .\cookbook\templates\account\signup_closed.html:13 +msgid "We are sorry, but the sign up is currently closed." +msgstr "" + +#: .\cookbook\templates\api_info.html:5 .\cookbook\templates\base.html:170 #: .\cookbook\templates\rest_framework\api.html:11 msgid "API Documentation" msgstr "" -#: .\cookbook\templates\base.html:78 +#: .\cookbook\templates\base.html:85 msgid "Utensils" msgstr "" -#: .\cookbook\templates\base.html:88 +#: .\cookbook\templates\base.html:95 msgid "Shopping" msgstr "" -#: .\cookbook\templates\base.html:102 .\cookbook\views\delete.py:84 -#: .\cookbook\views\edit.py:93 .\cookbook\views\lists.py:26 -#: .\cookbook\views\new.py:66 +#: .\cookbook\templates\base.html:109 .\cookbook\views\delete.py:84 +#: .\cookbook\views\edit.py:102 .\cookbook\views\lists.py:26 +#: .\cookbook\views\new.py:78 msgid "Keyword" msgstr "" -#: .\cookbook\templates\base.html:104 +#: .\cookbook\templates\base.html:111 msgid "Batch Edit" msgstr "" -#: .\cookbook\templates\base.html:109 +#: .\cookbook\templates\base.html:116 msgid "Storage Data" msgstr "" -#: .\cookbook\templates\base.html:113 +#: .\cookbook\templates\base.html:120 msgid "Storage Backends" msgstr "" -#: .\cookbook\templates\base.html:115 +#: .\cookbook\templates\base.html:122 msgid "Configure Sync" msgstr "" -#: .\cookbook\templates\base.html:117 +#: .\cookbook\templates\base.html:124 msgid "Discovered Recipes" msgstr "" -#: .\cookbook\templates\base.html:119 +#: .\cookbook\templates\base.html:126 msgid "Discovery Log" msgstr "" -#: .\cookbook\templates\base.html:121 .\cookbook\templates\stats.html:10 +#: .\cookbook\templates\base.html:128 .\cookbook\templates\stats.html:10 msgid "Statistics" msgstr "" -#: .\cookbook\templates\base.html:123 +#: .\cookbook\templates\base.html:130 msgid "Units & Ingredients" msgstr "" -#: .\cookbook\templates\base.html:125 +#: .\cookbook\templates\base.html:132 .\cookbook\templates\index.html:47 msgid "Import Recipe" msgstr "" -#: .\cookbook\templates\base.html:144 .\cookbook\templates\settings.html:6 +#: .\cookbook\templates\base.html:151 .\cookbook\templates\settings.html:6 #: .\cookbook\templates\settings.html:16 msgid "Settings" msgstr "" -#: .\cookbook\templates\base.html:146 .\cookbook\templates\history.html:6 +#: .\cookbook\templates\base.html:153 .\cookbook\templates\history.html:6 #: .\cookbook\templates\history.html:14 msgid "History" msgstr "" -#: .\cookbook\templates\base.html:150 .\cookbook\templates\system.html:13 +#: .\cookbook\templates\base.html:155 .\cookbook\templates\space.html:7 +msgid "Space Settings" +msgstr "" + +#: .\cookbook\templates\base.html:160 .\cookbook\templates\system.html:13 msgid "System" msgstr "" -#: .\cookbook\templates\base.html:152 +#: .\cookbook\templates\base.html:162 msgid "Admin" msgstr "" -#: .\cookbook\templates\base.html:156 +#: .\cookbook\templates\base.html:166 msgid "Markdown Guide" msgstr "" -#: .\cookbook\templates\base.html:158 +#: .\cookbook\templates\base.html:168 msgid "GitHub" msgstr "" -#: .\cookbook\templates\base.html:162 +#: .\cookbook\templates\base.html:172 msgid "API Browser" msgstr "" -#: .\cookbook\templates\base.html:165 -msgid "Logout" +#: .\cookbook\templates\base.html:175 +msgid "Log out" msgstr "" #: .\cookbook\templates\batch\edit.html:6 @@ -533,7 +728,7 @@ msgstr "" msgid "Add the specified keywords to all recipes containing a word" msgstr "" -#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:76 +#: .\cookbook\templates\batch\monitor.html:6 .\cookbook\views\edit.py:85 msgid "Sync" msgstr "" @@ -560,7 +755,7 @@ msgstr "" msgid "Importing Recipes" msgstr "" -#: .\cookbook\templates\batch\waiting.html:23 +#: .\cookbook\templates\batch\waiting.html:28 msgid "" "This can take a few minutes, depending on the number of recipes in sync, " "please wait." @@ -597,26 +792,31 @@ msgid "Export Recipes" msgstr "" #: .\cookbook\templates\export.html:14 .\cookbook\templates\export.html:20 -#: .\cookbook\templates\shopping_list.html:347 +#: .\cookbook\templates\shopping_list.html:351 #: .\cookbook\templates\test2.html:14 .\cookbook\templates\test2.html:20 msgid "Export" msgstr "" +#: .\cookbook\templates\files.html:7 +msgid "Files" +msgstr "" + #: .\cookbook\templates\forms\edit_import_recipe.html:5 #: .\cookbook\templates\forms\edit_import_recipe.html:9 msgid "Import new Recipe" msgstr "" #: .\cookbook\templates\forms\edit_import_recipe.html:14 -#: .\cookbook\templates\forms\edit_internal_recipe.html:389 -#: .\cookbook\templates\forms\edit_internal_recipe.html:421 +#: .\cookbook\templates\forms\edit_internal_recipe.html:416 +#: .\cookbook\templates\forms\edit_internal_recipe.html:448 #: .\cookbook\templates\generic\edit_template.html:23 #: .\cookbook\templates\generic\new_template.html:23 #: .\cookbook\templates\include\log_cooking.html:28 #: .\cookbook\templates\meal_plan.html:325 -#: .\cookbook\templates\settings.html:28 .\cookbook\templates\settings.html:35 -#: .\cookbook\templates\settings.html:58 .\cookbook\templates\settings.html:73 -#: .\cookbook\templates\shopping_list.html:349 +#: .\cookbook\templates\settings.html:44 .\cookbook\templates\settings.html:52 +#: .\cookbook\templates\settings.html:96 +#: .\cookbook\templates\settings.html:114 +#: .\cookbook\templates\shopping_list.html:353 msgid "Save" msgstr "" @@ -625,179 +825,186 @@ msgstr "" msgid "Edit Recipe" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:52 +#: .\cookbook\templates\forms\edit_internal_recipe.html:56 +#: .\cookbook\templates\url_import.html:171 msgid "Description" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:72 +#: .\cookbook\templates\forms\edit_internal_recipe.html:76 msgid "Waiting Time" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:78 +#: .\cookbook\templates\forms\edit_internal_recipe.html:82 msgid "Servings Text" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:89 +#: .\cookbook\templates\forms\edit_internal_recipe.html:93 msgid "Select Keywords" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:90 -#: .\cookbook\templates\url_import.html:212 +#: .\cookbook\templates\forms\edit_internal_recipe.html:94 +#: .\cookbook\templates\url_import.html:583 msgid "Add Keyword" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:108 +#: .\cookbook\templates\forms\edit_internal_recipe.html:112 msgid "Nutrition" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:112 -#: .\cookbook\templates\forms\edit_internal_recipe.html:162 +#: .\cookbook\templates\forms\edit_internal_recipe.html:116 +#: .\cookbook\templates\forms\edit_internal_recipe.html:166 msgid "Delete Step" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:116 +#: .\cookbook\templates\forms\edit_internal_recipe.html:120 msgid "Calories" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:119 +#: .\cookbook\templates\forms\edit_internal_recipe.html:123 msgid "Carbohydrates" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:122 +#: .\cookbook\templates\forms\edit_internal_recipe.html:126 msgid "Fats" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:124 +#: .\cookbook\templates\forms\edit_internal_recipe.html:128 msgid "Proteins" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:146 -#: .\cookbook\templates\forms\edit_internal_recipe.html:454 +#: .\cookbook\templates\forms\edit_internal_recipe.html:150 +#: .\cookbook\templates\forms\edit_internal_recipe.html:481 msgid "Step" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:167 +#: .\cookbook\templates\forms\edit_internal_recipe.html:171 msgid "Show as header" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:173 +#: .\cookbook\templates\forms\edit_internal_recipe.html:177 msgid "Hide as header" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:178 +#: .\cookbook\templates\forms\edit_internal_recipe.html:182 msgid "Move Up" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:183 +#: .\cookbook\templates\forms\edit_internal_recipe.html:187 msgid "Move Down" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:192 +#: .\cookbook\templates\forms\edit_internal_recipe.html:196 msgid "Step Name" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:196 +#: .\cookbook\templates\forms\edit_internal_recipe.html:200 msgid "Step Type" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:207 +#: .\cookbook\templates\forms\edit_internal_recipe.html:212 msgid "Step time in Minutes" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:261 -#: .\cookbook\templates\shopping_list.html:183 -msgid "Select Unit" +#: .\cookbook\templates\forms\edit_internal_recipe.html:228 +msgid "Select File" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:262 -#: .\cookbook\templates\forms\edit_internal_recipe.html:286 -#: .\cookbook\templates\shopping_list.html:184 -#: .\cookbook\templates\shopping_list.html:206 -msgid "Create" -msgstr "" - -#: .\cookbook\templates\forms\edit_internal_recipe.html:263 -#: .\cookbook\templates\forms\edit_internal_recipe.html:287 -#: .\cookbook\templates\shopping_list.html:185 -#: .\cookbook\templates\shopping_list.html:207 -#: .\cookbook\templates\shopping_list.html:237 -#: .\cookbook\templates\shopping_list.html:261 -#: .\cookbook\templates\url_import.html:124 -#: .\cookbook\templates\url_import.html:156 +#: .\cookbook\templates\forms\edit_internal_recipe.html:229 +#: .\cookbook\templates\forms\edit_internal_recipe.html:290 +#: .\cookbook\templates\forms\edit_internal_recipe.html:314 +#: .\cookbook\templates\shopping_list.html:189 +#: .\cookbook\templates\shopping_list.html:211 +#: .\cookbook\templates\shopping_list.html:241 +#: .\cookbook\templates\shopping_list.html:265 +#: .\cookbook\templates\url_import.html:495 +#: .\cookbook\templates\url_import.html:527 msgid "Select" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:285 -#: .\cookbook\templates\shopping_list.html:205 +#: .\cookbook\templates\forms\edit_internal_recipe.html:288 +#: .\cookbook\templates\shopping_list.html:187 +msgid "Select Unit" +msgstr "" + +#: .\cookbook\templates\forms\edit_internal_recipe.html:289 +#: .\cookbook\templates\forms\edit_internal_recipe.html:313 +#: .\cookbook\templates\shopping_list.html:188 +#: .\cookbook\templates\shopping_list.html:210 +msgid "Create" +msgstr "" + +#: .\cookbook\templates\forms\edit_internal_recipe.html:312 +#: .\cookbook\templates\shopping_list.html:209 msgid "Select Food" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:302 +#: .\cookbook\templates\forms\edit_internal_recipe.html:329 #: .\cookbook\templates\meal_plan.html:256 -#: .\cookbook\templates\url_import.html:171 +#: .\cookbook\templates\url_import.html:542 msgid "Note" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:319 +#: .\cookbook\templates\forms\edit_internal_recipe.html:346 msgid "Delete Ingredient" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:325 +#: .\cookbook\templates\forms\edit_internal_recipe.html:352 msgid "Make Header" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:331 +#: .\cookbook\templates\forms\edit_internal_recipe.html:358 msgid "Make Ingredient" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:337 +#: .\cookbook\templates\forms\edit_internal_recipe.html:364 msgid "Disable Amount" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:343 +#: .\cookbook\templates\forms\edit_internal_recipe.html:370 msgid "Enable Amount" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:348 +#: .\cookbook\templates\forms\edit_internal_recipe.html:375 msgid "Copy Template Reference" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:374 -#: .\cookbook\templates\url_import.html:196 +#: .\cookbook\templates\forms\edit_internal_recipe.html:401 +#: .\cookbook\templates\url_import.html:297 +#: .\cookbook\templates\url_import.html:567 msgid "Instructions" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:387 -#: .\cookbook\templates\forms\edit_internal_recipe.html:418 +#: .\cookbook\templates\forms\edit_internal_recipe.html:414 +#: .\cookbook\templates\forms\edit_internal_recipe.html:445 msgid "Save & View" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:391 -#: .\cookbook\templates\forms\edit_internal_recipe.html:424 +#: .\cookbook\templates\forms\edit_internal_recipe.html:418 +#: .\cookbook\templates\forms\edit_internal_recipe.html:451 msgid "Add Step" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:394 -#: .\cookbook\templates\forms\edit_internal_recipe.html:428 +#: .\cookbook\templates\forms\edit_internal_recipe.html:421 +#: .\cookbook\templates\forms\edit_internal_recipe.html:455 msgid "Add Nutrition" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:396 -#: .\cookbook\templates\forms\edit_internal_recipe.html:430 +#: .\cookbook\templates\forms\edit_internal_recipe.html:423 +#: .\cookbook\templates\forms\edit_internal_recipe.html:457 msgid "Remove Nutrition" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:398 -#: .\cookbook\templates\forms\edit_internal_recipe.html:433 +#: .\cookbook\templates\forms\edit_internal_recipe.html:425 +#: .\cookbook\templates\forms\edit_internal_recipe.html:460 msgid "View Recipe" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:400 -#: .\cookbook\templates\forms\edit_internal_recipe.html:435 +#: .\cookbook\templates\forms\edit_internal_recipe.html:427 +#: .\cookbook\templates\forms\edit_internal_recipe.html:462 msgid "Delete Recipe" msgstr "" -#: .\cookbook\templates\forms\edit_internal_recipe.html:441 +#: .\cookbook\templates\forms\edit_internal_recipe.html:468 msgid "Steps" msgstr "" @@ -817,7 +1024,7 @@ msgid "" msgstr "" #: .\cookbook\templates\forms\ingredients.html:24 -#: .\cookbook\templates\stats.html:26 +#: .\cookbook\templates\space.html:35 .\cookbook\templates\stats.html:26 msgid "Units" msgstr "" @@ -839,10 +1046,6 @@ msgstr "" msgid "Are you sure you want to delete the %(title)s: %(object)s " msgstr "" -#: .\cookbook\templates\generic\delete_template.html:21 -msgid "Confirm" -msgstr "" - #: .\cookbook\templates\generic\edit_template.html:30 msgid "View" msgstr "" @@ -864,12 +1067,6 @@ msgstr "" msgid "Import all" msgstr "" -#: .\cookbook\templates\generic\new_template.html:6 -#: .\cookbook\templates\generic\new_template.html:14 -#: .\cookbook\templates\meal_plan.html:323 -msgid "New" -msgstr "" - #: .\cookbook\templates\generic\table_template.html:76 #: .\cookbook\templates\recipes_table.html:121 msgid "previous" @@ -914,7 +1111,7 @@ msgstr "" #: .\cookbook\templates\include\recipe_open_modal.html:7 #: .\cookbook\templates\meal_plan.html:247 .\cookbook\views\delete.py:28 -#: .\cookbook\views\edit.py:264 .\cookbook\views\new.py:40 +#: .\cookbook\views\edit.py:273 .\cookbook\views\new.py:52 msgid "Recipe" msgstr "" @@ -947,10 +1144,6 @@ msgstr "" msgid "New Recipe" msgstr "" -#: .\cookbook\templates\index.html:47 -msgid "Website Import" -msgstr "" - #: .\cookbook\templates\index.html:53 msgid "Advanced Search" msgstr "" @@ -964,7 +1157,7 @@ msgid "Last viewed" msgstr "" #: .\cookbook\templates\index.html:87 .\cookbook\templates\meal_plan.html:178 -#: .\cookbook\templates\stats.html:22 +#: .\cookbook\templates\space.html:29 .\cookbook\templates\stats.html:22 msgid "Recipes" msgstr "" @@ -1112,7 +1305,7 @@ msgid "New Entry" msgstr "" #: .\cookbook\templates\meal_plan.html:113 -#: .\cookbook\templates\shopping_list.html:52 +#: .\cookbook\templates\shopping_list.html:56 msgid "Search Recipe" msgstr "" @@ -1142,7 +1335,7 @@ msgstr "" #: .\cookbook\templates\meal_plan.html:168 #: .\cookbook\templates\shopping_list.html:7 #: .\cookbook\templates\shopping_list.html:29 -#: .\cookbook\templates\shopping_list.html:705 +#: .\cookbook\templates\shopping_list.html:714 msgid "Shopping List" msgstr "" @@ -1192,7 +1385,7 @@ msgstr "" #: .\cookbook\templates\meal_plan.html:270 #: .\cookbook\templates\meal_plan_entry.html:20 -#: .\cookbook\templates\shopping_list.html:250 +#: .\cookbook\templates\shopping_list.html:254 msgid "Shared with" msgstr "" @@ -1267,7 +1460,6 @@ msgstr "" #: .\cookbook\templates\no_groups_info.html:18 #: .\cookbook\templates\no_perm_info.html:15 -#: .\cookbook\templates\no_space_info.html:15 msgid "Please contact your administrator." msgstr "" @@ -1282,13 +1474,48 @@ msgid "" "action." msgstr "" -#: .\cookbook\templates\no_space_info.html:5 -#: .\cookbook\templates\no_space_info.html:12 +#: .\cookbook\templates\no_space_info.html:6 +#: .\cookbook\templates\no_space_info.html:13 msgid "No Space" msgstr "" -#: .\cookbook\templates\no_space_info.html:15 -msgid "You are not a member of any space." +#: .\cookbook\templates\no_space_info.html:17 +msgid "" +"Recipes, foods, shopping lists and more are organized in spaces of one or " +"more people." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:18 +msgid "" +"You can either be invited into an existing space or create your own one." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:31 +#: .\cookbook\templates\no_space_info.html:40 +msgid "Join Space" +msgstr "" + +#: .\cookbook\templates\no_space_info.html:34 +msgid "Join an existing space." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:35 +msgid "" +"To join an existing space either enter your invite token or click on the " +"invite link the space owner send you." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:48 +#: .\cookbook\templates\no_space_info.html:56 +msgid "Create Space" +msgstr "" + +#: .\cookbook\templates\no_space_info.html:51 +msgid "Create your own recipe space." +msgstr "" + +#: .\cookbook\templates\no_space_info.html:52 +msgid "Start your own recipe space and invite other users to it." msgstr "" #: .\cookbook\templates\offline.html:6 @@ -1305,28 +1532,29 @@ msgid "" "recently viewed them. Keep in mind that data might be outdated." msgstr "" -#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\stats.html:47 +#: .\cookbook\templates\recipe_view.html:21 .\cookbook\templates\space.html:56 +#: .\cookbook\templates\stats.html:47 msgid "Comments" msgstr "" #: .\cookbook\templates\recipe_view.html:44 .\cookbook\views\delete.py:118 -#: .\cookbook\views\edit.py:170 +#: .\cookbook\views\edit.py:179 msgid "Comment" msgstr "" #: .\cookbook\templates\recipes_table.html:19 #: .\cookbook\templates\recipes_table.html:23 -#: .\cookbook\templates\url_import.html:69 +#: .\cookbook\templates\url_import.html:440 msgid "Recipe Image" msgstr "" #: .\cookbook\templates\recipes_table.html:51 -#: .\cookbook\templates\url_import.html:74 +#: .\cookbook\templates\url_import.html:445 msgid "Preparation time ca." msgstr "" #: .\cookbook\templates\recipes_table.html:57 -#: .\cookbook\templates\url_import.html:79 +#: .\cookbook\templates\url_import.html:450 msgid "Waiting time ca." msgstr "" @@ -1342,39 +1570,67 @@ msgstr "" msgid "Recipe Home" msgstr "" -#: .\cookbook\templates\settings.html:22 +#: .\cookbook\templates\settings.html:23 msgid "Account" msgstr "" -#: .\cookbook\templates\settings.html:38 -msgid "Link social account" +#: .\cookbook\templates\settings.html:27 +msgid "Preferences" msgstr "" -#: .\cookbook\templates\settings.html:42 +#: .\cookbook\templates\settings.html:31 +msgid "API-Settings" +msgstr "" + +#: .\cookbook\templates\settings.html:39 +msgid "Name Settings" +msgstr "" + +#: .\cookbook\templates\settings.html:47 +msgid "Password Settings" +msgstr "" + +#: .\cookbook\templates\settings.html:55 +msgid "Email Settings" +msgstr "" + +#: .\cookbook\templates\settings.html:57 +msgid "Manage Email Settings" +msgstr "" + +#: .\cookbook\templates\settings.html:61 +msgid "Social" +msgstr "" + +#: .\cookbook\templates\settings.html:63 +msgid "Manage Social Accounts" +msgstr "" + +#: .\cookbook\templates\settings.html:75 msgid "Language" msgstr "" -#: .\cookbook\templates\settings.html:67 +#: .\cookbook\templates\settings.html:105 msgid "Style" msgstr "" -#: .\cookbook\templates\settings.html:79 +#: .\cookbook\templates\settings.html:125 msgid "API Token" msgstr "" -#: .\cookbook\templates\settings.html:80 +#: .\cookbook\templates\settings.html:126 msgid "" "You can use both basic authentication and token based authentication to " "access the REST API." msgstr "" -#: .\cookbook\templates\settings.html:92 +#: .\cookbook\templates\settings.html:143 msgid "" "Use the token as an Authorization header prefixed by the word token as shown " "in the following examples:" msgstr "" -#: .\cookbook\templates\settings.html:94 +#: .\cookbook\templates\settings.html:145 msgid "or" msgstr "" @@ -1395,58 +1651,55 @@ msgstr "" msgid "Create Superuser account" msgstr "" -#: .\cookbook\templates\shopping_list.html:75 +#: .\cookbook\templates\shopping_list.html:79 msgid "Shopping Recipes" msgstr "" -#: .\cookbook\templates\shopping_list.html:79 +#: .\cookbook\templates\shopping_list.html:83 msgid "No recipes selected" msgstr "" -#: .\cookbook\templates\shopping_list.html:146 +#: .\cookbook\templates\shopping_list.html:150 msgid "Entry Mode" msgstr "" -#: .\cookbook\templates\shopping_list.html:154 +#: .\cookbook\templates\shopping_list.html:158 msgid "Add Entry" msgstr "" -#: .\cookbook\templates\shopping_list.html:170 +#: .\cookbook\templates\shopping_list.html:174 msgid "Amount" msgstr "" -#: .\cookbook\templates\shopping_list.html:226 +#: .\cookbook\templates\shopping_list.html:230 +#: .\cookbook\templates\supermarket.html:7 msgid "Supermarket" msgstr "" -#: .\cookbook\templates\shopping_list.html:236 +#: .\cookbook\templates\shopping_list.html:240 msgid "Select Supermarket" msgstr "" -#: .\cookbook\templates\shopping_list.html:260 +#: .\cookbook\templates\shopping_list.html:264 msgid "Select User" msgstr "" -#: .\cookbook\templates\shopping_list.html:279 +#: .\cookbook\templates\shopping_list.html:283 msgid "Finished" msgstr "" -#: .\cookbook\templates\shopping_list.html:292 +#: .\cookbook\templates\shopping_list.html:296 msgid "You are offline, shopping list might not syncronize." msgstr "" -#: .\cookbook\templates\shopping_list.html:357 +#: .\cookbook\templates\shopping_list.html:361 msgid "Copy/Export" msgstr "" -#: .\cookbook\templates\shopping_list.html:361 +#: .\cookbook\templates\shopping_list.html:365 msgid "List Prefix" msgstr "" -#: .\cookbook\templates\shopping_list.html:708 -msgid "There was an error creating a resource!" -msgstr "" - #: .\cookbook\templates\socialaccount\connections.html:4 #: .\cookbook\templates\socialaccount\connections.html:7 msgid "Account Connections" @@ -1458,10 +1711,6 @@ msgid "" " accounts:" msgstr "" -#: .\cookbook\templates\socialaccount\connections.html:36 -msgid "Remove" -msgstr "" - #: .\cookbook\templates\socialaccount\connections.html:44 msgid "" "You currently have no social network accounts connected to this account." @@ -1471,38 +1720,87 @@ msgstr "" msgid "Add a 3rd Party Account" msgstr "" -#: .\cookbook\templates\stats.html:4 -msgid "Stats" +#: .\cookbook\templates\space.html:18 +msgid "Manage Subscription" msgstr "" -#: .\cookbook\templates\stats.html:19 +#: .\cookbook\templates\space.html:26 .\cookbook\templates\stats.html:19 msgid "Number of objects" msgstr "" -#: .\cookbook\templates\stats.html:30 +#: .\cookbook\templates\space.html:39 .\cookbook\templates\stats.html:30 msgid "Recipe Imports" msgstr "" -#: .\cookbook\templates\stats.html:38 +#: .\cookbook\templates\space.html:47 .\cookbook\templates\stats.html:38 msgid "Objects stats" msgstr "" -#: .\cookbook\templates\stats.html:41 +#: .\cookbook\templates\space.html:50 .\cookbook\templates\stats.html:41 msgid "Recipes without Keywords" msgstr "" -#: .\cookbook\templates\stats.html:43 +#: .\cookbook\templates\space.html:52 .\cookbook\templates\stats.html:43 msgid "External Recipes" msgstr "" -#: .\cookbook\templates\stats.html:45 +#: .\cookbook\templates\space.html:54 .\cookbook\templates\stats.html:45 msgid "Internal Recipes" msgstr "" -#: .\cookbook\templates\system.html:21 .\cookbook\views\lists.py:115 +#: .\cookbook\templates\space.html:67 +msgid "Members" +msgstr "" + +#: .\cookbook\templates\space.html:71 +msgid "Invite User" +msgstr "" + +#: .\cookbook\templates\space.html:82 +msgid "User" +msgstr "" + +#: .\cookbook\templates\space.html:83 +msgid "Groups" +msgstr "" + +#: .\cookbook\templates\space.html:99 +msgid "admin" +msgstr "" + +#: .\cookbook\templates\space.html:100 +msgid "user" +msgstr "" + +#: .\cookbook\templates\space.html:101 +msgid "guest" +msgstr "" + +#: .\cookbook\templates\space.html:102 +msgid "remove" +msgstr "" + +#: .\cookbook\templates\space.html:106 +msgid "Update" +msgstr "" + +#: .\cookbook\templates\space.html:110 +msgid "You cannot edit yourself." +msgstr "" + +#: .\cookbook\templates\space.html:117 +msgid "There are no members in your space yet!" +msgstr "" + +#: .\cookbook\templates\space.html:124 .\cookbook\templates\system.html:21 +#: .\cookbook\views\lists.py:115 msgid "Invite Links" msgstr "" +#: .\cookbook\templates\stats.html:4 +msgid "Stats" +msgstr "" + #: .\cookbook\templates\system.html:22 msgid "Show Links" msgstr "" @@ -1600,45 +1898,141 @@ msgid "" " " msgstr "" -#: .\cookbook\templates\url_import.html:5 +#: .\cookbook\templates\url_import.html:6 msgid "URL Import" msgstr "" -#: .\cookbook\templates\url_import.html:23 +#: .\cookbook\templates\url_import.html:31 +msgid "Drag me to your bookmarks to import recipes from anywhere" +msgstr "" + +#: .\cookbook\templates\url_import.html:32 +msgid "Bookmark Me!" +msgstr "" + +#: .\cookbook\templates\url_import.html:61 msgid "Enter website URL" msgstr "" -#: .\cookbook\templates\url_import.html:36 -msgid "Enter json directly" +#: .\cookbook\templates\url_import.html:97 +msgid "Select recipe files to import or drop them here..." msgstr "" -#: .\cookbook\templates\url_import.html:57 +#: .\cookbook\templates\url_import.html:118 +msgid "Paste json or html source here to load recipe." +msgstr "" + +#: .\cookbook\templates\url_import.html:146 +msgid "Preview Recipe Data" +msgstr "" + +#: .\cookbook\templates\url_import.html:147 +msgid "Drag recipe attributes from the right into the appropriate box below." +msgstr "" + +#: .\cookbook\templates\url_import.html:156 +#: .\cookbook\templates\url_import.html:173 +#: .\cookbook\templates\url_import.html:190 +#: .\cookbook\templates\url_import.html:209 +#: .\cookbook\templates\url_import.html:227 +#: .\cookbook\templates\url_import.html:242 +#: .\cookbook\templates\url_import.html:257 +#: .\cookbook\templates\url_import.html:273 +#: .\cookbook\templates\url_import.html:300 +#: .\cookbook\templates\url_import.html:351 +msgid "Clear Contents" +msgstr "" + +#: .\cookbook\templates\url_import.html:158 +msgid "Text dragged here will be appended to the name." +msgstr "" + +#: .\cookbook\templates\url_import.html:175 +msgid "Text dragged here will be appended to the description." +msgstr "" + +#: .\cookbook\templates\url_import.html:192 +msgid "Keywords dragged here will be appended to current list" +msgstr "" + +#: .\cookbook\templates\url_import.html:207 +msgid "Image" +msgstr "" + +#: .\cookbook\templates\url_import.html:239 +msgid "Prep Time" +msgstr "" + +#: .\cookbook\templates\url_import.html:254 +msgid "Cook Time" +msgstr "" + +#: .\cookbook\templates\url_import.html:275 +msgid "Ingredients dragged here will be appended to current list." +msgstr "" + +#: .\cookbook\templates\url_import.html:302 +msgid "" +"Recipe instructions dragged here will be appended to current instructions." +msgstr "" + +#: .\cookbook\templates\url_import.html:325 +msgid "Discovered Attributes" +msgstr "" + +#: .\cookbook\templates\url_import.html:327 +msgid "" +"Drag recipe attributes from below into the appropriate box on the left. " +"Click any node to display its full properties." +msgstr "" + +#: .\cookbook\templates\url_import.html:344 +msgid "Show Blank Field" +msgstr "" + +#: .\cookbook\templates\url_import.html:349 +msgid "Blank Field" +msgstr "" + +#: .\cookbook\templates\url_import.html:353 +msgid "Items dragged to Blank Field will be appended." +msgstr "" + +#: .\cookbook\templates\url_import.html:400 +msgid "Delete Text" +msgstr "" + +#: .\cookbook\templates\url_import.html:413 +msgid "Delete image" +msgstr "" + +#: .\cookbook\templates\url_import.html:429 msgid "Recipe Name" msgstr "" -#: .\cookbook\templates\url_import.html:62 +#: .\cookbook\templates\url_import.html:433 msgid "Recipe Description" msgstr "" -#: .\cookbook\templates\url_import.html:123 -#: .\cookbook\templates\url_import.html:155 -#: .\cookbook\templates\url_import.html:211 +#: .\cookbook\templates\url_import.html:494 +#: .\cookbook\templates\url_import.html:526 +#: .\cookbook\templates\url_import.html:582 msgid "Select one" msgstr "" -#: .\cookbook\templates\url_import.html:225 +#: .\cookbook\templates\url_import.html:596 msgid "All Keywords" msgstr "" -#: .\cookbook\templates\url_import.html:228 +#: .\cookbook\templates\url_import.html:599 msgid "Import all keywords, not only the ones already existing." msgstr "" -#: .\cookbook\templates\url_import.html:255 +#: .\cookbook\templates\url_import.html:626 msgid "Information" msgstr "" -#: .\cookbook\templates\url_import.html:257 +#: .\cookbook\templates\url_import.html:628 msgid "" " Only websites containing ld+json or microdata information can currently\n" " be imported. Most big recipe pages " @@ -1649,48 +2043,73 @@ msgid "" " github issues." msgstr "" -#: .\cookbook\templates\url_import.html:265 +#: .\cookbook\templates\url_import.html:636 msgid "Google ld+json Info" msgstr "" -#: .\cookbook\templates\url_import.html:268 +#: .\cookbook\templates\url_import.html:639 msgid "GitHub Issues" msgstr "" -#: .\cookbook\templates\url_import.html:270 +#: .\cookbook\templates\url_import.html:641 msgid "Recipe Markup Specification" msgstr "" -#: .\cookbook\views\api.py:71 +#: .\cookbook\views\api.py:77 msgid "Parameter updated_at incorrectly formatted" msgstr "" -#: .\cookbook\views\api.py:455 .\cookbook\views\views.py:226 +#: .\cookbook\views\api.py:553 .\cookbook\views\views.py:295 msgid "This feature is not available in the demo version!" msgstr "" -#: .\cookbook\views\api.py:478 +#: .\cookbook\views\api.py:576 msgid "Sync successful!" msgstr "" -#: .\cookbook\views\api.py:483 +#: .\cookbook\views\api.py:581 msgid "Error synchronizing with Storage" msgstr "" -#: .\cookbook\views\api.py:556 .\cookbook\views\api.py:576 +#: .\cookbook\views\api.py:649 +msgid "Nothing to do." +msgstr "" + +#: .\cookbook\views\api.py:664 +msgid "The requested site provided malformed data and cannot be read." +msgstr "" + +#: .\cookbook\views\api.py:671 msgid "The requested page could not be found." msgstr "" -#: .\cookbook\views\api.py:585 +#: .\cookbook\views\api.py:680 msgid "" -"The requested page refused to provide any information (Status Code 403)." +"The requested site does not provide any recognized data format to import the " +"recipe from." msgstr "" -#: .\cookbook\views\api.py:611 -msgid "Could not parse correctly..." +#: .\cookbook\views\api.py:694 +msgid "No useable data could be found." msgstr "" -#: .\cookbook\views\data.py:94 +#: .\cookbook\views\api.py:710 +msgid "I couldn't find anything to do." +msgstr "" + +#: .\cookbook\views\data.py:30 .\cookbook\views\data.py:121 +#: .\cookbook\views\edit.py:50 .\cookbook\views\import_export.py:67 +#: .\cookbook\views\new.py:32 +msgid "You have reached the maximum number of recipes for your space." +msgstr "" + +#: .\cookbook\views\data.py:34 .\cookbook\views\data.py:125 +#: .\cookbook\views\edit.py:54 .\cookbook\views\import_export.py:71 +#: .\cookbook\views\new.py:36 +msgid "You have more users than allowed in your space." +msgstr "" + +#: .\cookbook\views\data.py:103 #, python-format msgid "Batch edit done. %(count)d recipe was updated." msgid_plural "Batch edit done. %(count)d Recipes where updated." @@ -1702,7 +2121,7 @@ msgid "Monitor" msgstr "" #: .\cookbook\views\delete.py:96 .\cookbook\views\lists.py:102 -#: .\cookbook\views\new.py:86 +#: .\cookbook\views\new.py:98 msgid "Storage Backend" msgstr "" @@ -1711,8 +2130,8 @@ msgid "" "Could not delete this storage backend as it is used in at least one monitor." msgstr "" -#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:204 -#: .\cookbook\views\new.py:144 +#: .\cookbook\views\delete.py:129 .\cookbook\views\edit.py:213 +#: .\cookbook\views\new.py:156 msgid "Recipe Book" msgstr "" @@ -1720,55 +2139,55 @@ msgstr "" msgid "Bookmarks" msgstr "" -#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:214 +#: .\cookbook\views\delete.py:163 .\cookbook\views\new.py:252 msgid "Invite Link" msgstr "" -#: .\cookbook\views\edit.py:110 +#: .\cookbook\views\edit.py:119 msgid "Food" msgstr "" -#: .\cookbook\views\edit.py:119 +#: .\cookbook\views\edit.py:128 msgid "You cannot edit this storage!" msgstr "" -#: .\cookbook\views\edit.py:139 +#: .\cookbook\views\edit.py:148 msgid "Storage saved!" msgstr "" -#: .\cookbook\views\edit.py:145 +#: .\cookbook\views\edit.py:154 msgid "There was an error updating this storage backend!" msgstr "" -#: .\cookbook\views\edit.py:156 +#: .\cookbook\views\edit.py:165 msgid "Storage" msgstr "" -#: .\cookbook\views\edit.py:252 +#: .\cookbook\views\edit.py:261 msgid "Changes saved!" msgstr "" -#: .\cookbook\views\edit.py:256 +#: .\cookbook\views\edit.py:265 msgid "Error saving changes!" msgstr "" -#: .\cookbook\views\edit.py:289 +#: .\cookbook\views\edit.py:299 msgid "Units merged!" msgstr "" -#: .\cookbook\views\edit.py:291 .\cookbook\views\edit.py:307 +#: .\cookbook\views\edit.py:301 .\cookbook\views\edit.py:317 msgid "Cannot merge with the same object!" msgstr "" -#: .\cookbook\views\edit.py:305 +#: .\cookbook\views\edit.py:315 msgid "Foods merged!" msgstr "" -#: .\cookbook\views\import_export.py:73 +#: .\cookbook\views\import_export.py:93 msgid "Importing is not implemented for this provider" msgstr "" -#: .\cookbook\views\import_export.py:92 +#: .\cookbook\views\import_export.py:115 msgid "Exporting is not implemented for this provider" msgstr "" @@ -1784,41 +2203,103 @@ msgstr "" msgid "Shopping Lists" msgstr "" -#: .\cookbook\views\new.py:111 +#: .\cookbook\views\new.py:123 msgid "Imported new recipe!" msgstr "" -#: .\cookbook\views\new.py:114 +#: .\cookbook\views\new.py:126 msgid "There was an error importing this recipe!" msgstr "" -#: .\cookbook\views\views.py:123 +#: .\cookbook\views\new.py:226 +msgid "Hello" +msgstr "" + +#: .\cookbook\views\new.py:226 +msgid "You have been invited by " +msgstr "" + +#: .\cookbook\views\new.py:227 +msgid " to join their Tandoor Recipes space " +msgstr "" + +#: .\cookbook\views\new.py:228 +msgid "Click the following link to activate your account: " +msgstr "" + +#: .\cookbook\views\new.py:229 +msgid "" +"If the link does not work use the following code to manually join the space: " +msgstr "" + +#: .\cookbook\views\new.py:230 +msgid "The invitation is valid until " +msgstr "" + +#: .\cookbook\views\new.py:231 +msgid "" +"Tandoor Recipes is an Open Source recipe manager. Check it out on GitHub " +msgstr "" + +#: .\cookbook\views\new.py:234 +msgid "Tandoor Recipes Invite" +msgstr "" + +#: .\cookbook\views\new.py:241 +msgid "Invite link successfully send to user." +msgstr "" + +#: .\cookbook\views\new.py:244 +msgid "" +"You have send to many emails, please share the link manually or wait a few " +"hours." +msgstr "" + +#: .\cookbook\views\new.py:246 +msgid "Email to user could not be send, please share link manually." +msgstr "" + +#: .\cookbook\views\views.py:125 +msgid "" +"You have successfully created your own recipe space. Start by adding some " +"recipes or invite other people to join you." +msgstr "" + +#: .\cookbook\views\views.py:173 msgid "You do not have the required permissions to perform this action!" msgstr "" -#: .\cookbook\views\views.py:134 +#: .\cookbook\views\views.py:184 msgid "Comment saved!" msgstr "" -#: .\cookbook\views\views.py:326 +#: .\cookbook\views\views.py:396 msgid "" "The setup page can only be used to create the first user! If you have " "forgotten your superuser credentials please consult the django documentation " "on how to reset passwords." msgstr "" -#: .\cookbook\views\views.py:333 .\cookbook\views\views.py:378 +#: .\cookbook\views\views.py:403 msgid "Passwords dont match!" msgstr "" -#: .\cookbook\views\views.py:349 .\cookbook\views\views.py:385 +#: .\cookbook\views\views.py:419 msgid "User has been created, please login!" msgstr "" -#: .\cookbook\views\views.py:365 +#: .\cookbook\views\views.py:435 msgid "Malformed Invite Link supplied!" msgstr "" -#: .\cookbook\views\views.py:405 +#: .\cookbook\views\views.py:441 +msgid "You are already member of a space and therefore cannot join this one." +msgstr "" + +#: .\cookbook\views\views.py:452 +msgid "Successfully joined space." +msgstr "" + +#: .\cookbook\views\views.py:458 msgid "Invite Link not valid or already used!" msgstr "" diff --git a/cookbook/migrations/0132_sharelink_request_count.py b/cookbook/migrations/0132_sharelink_request_count.py new file mode 100644 index 00000000..706c34c3 --- /dev/null +++ b/cookbook/migrations/0132_sharelink_request_count.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.4 on 2021-06-12 18:39 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('cookbook', '0131_auto_20210608_1929'), + ] + + operations = [ + migrations.AddField( + model_name='sharelink', + name='request_count', + field=models.IntegerField(default=0), + ), + ] diff --git a/cookbook/migrations/0133_sharelink_abuse_blocked.py b/cookbook/migrations/0133_sharelink_abuse_blocked.py new file mode 100644 index 00000000..ae8747ea --- /dev/null +++ b/cookbook/migrations/0133_sharelink_abuse_blocked.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.4 on 2021-06-12 18:53 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('cookbook', '0132_sharelink_request_count'), + ] + + operations = [ + migrations.AddField( + model_name='sharelink', + name='abuse_blocked', + field=models.BooleanField(default=False), + ), + ] diff --git a/cookbook/migrations/0134_space_allow_sharing.py b/cookbook/migrations/0134_space_allow_sharing.py new file mode 100644 index 00000000..fb1612a5 --- /dev/null +++ b/cookbook/migrations/0134_space_allow_sharing.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.4 on 2021-06-15 19:07 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('cookbook', '0133_sharelink_abuse_blocked'), + ] + + operations = [ + migrations.AddField( + model_name='space', + name='allow_sharing', + field=models.BooleanField(default=True), + ), + ] diff --git a/cookbook/migrations/0135_auto_20210615_2210.py b/cookbook/migrations/0135_auto_20210615_2210.py new file mode 100644 index 00000000..0b9c0a3b --- /dev/null +++ b/cookbook/migrations/0135_auto_20210615_2210.py @@ -0,0 +1,29 @@ +# Generated by Django 3.2.4 on 2021-06-15 20:10 + +import django.db.models.deletion +from django.db import migrations, models + + +class Migration(migrations.Migration): + dependencies = [ + ('cookbook', '0134_space_allow_sharing'), + ] + + operations = [ + migrations.AddField( + model_name='ingredient', + name='space', + field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, to='cookbook.space'), + ), + migrations.AddField( + model_name='nutritioninformation', + name='space', + field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, to='cookbook.space'), + ), + migrations.AddField( + model_name='step', + name='space', + field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, to='cookbook.space'), + ), + + ] diff --git a/cookbook/migrations/0136_auto_20210617_1343.py b/cookbook/migrations/0136_auto_20210617_1343.py new file mode 100644 index 00000000..9abfc4d2 --- /dev/null +++ b/cookbook/migrations/0136_auto_20210617_1343.py @@ -0,0 +1,23 @@ +# Generated by Django 3.2.4 on 2021-06-17 11:43 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('cookbook', '0135_auto_20210615_2210'), + ] + + operations = [ + migrations.AddField( + model_name='importlog', + name='imported_recipes', + field=models.IntegerField(default=0), + ), + migrations.AddField( + model_name='importlog', + name='total_recipes', + field=models.IntegerField(default=0), + ), + ] diff --git a/cookbook/migrations/0137_auto_20210617_1501.py b/cookbook/migrations/0137_auto_20210617_1501.py new file mode 100644 index 00000000..84c5f7c5 --- /dev/null +++ b/cookbook/migrations/0137_auto_20210617_1501.py @@ -0,0 +1,34 @@ +# Generated by Django 3.2.4 on 2021-06-17 13:01 + +from django.db import migrations +from django.db.models import Subquery, OuterRef +from django_scopes import scopes_disabled +from django.db import migrations, models +import django.db.models.deletion + + +def migrate_spaces(apps, schema_editor): + with scopes_disabled(): + Recipe = apps.get_model('cookbook', 'Recipe') + Step = apps.get_model('cookbook', 'Step') + Ingredient = apps.get_model('cookbook', 'Ingredient') + NutritionInformation = apps.get_model('cookbook', 'NutritionInformation') + + Step.objects.filter(recipe__isnull=True).delete() + Ingredient.objects.filter(step__recipe__isnull=True).delete() + NutritionInformation.objects.filter(recipe__isnull=True).delete() + + Step.objects.update(space=Subquery(Step.objects.filter(pk=OuterRef('pk')).values('recipe__space')[:1])) + Ingredient.objects.update(space=Subquery(Ingredient.objects.filter(pk=OuterRef('pk')).values('step__recipe__space')[:1])) + NutritionInformation.objects.update(space=Subquery(NutritionInformation.objects.filter(pk=OuterRef('pk')).values('recipe__space')[:1])) + + +class Migration(migrations.Migration): + dependencies = [ + ('cookbook', '0136_auto_20210617_1343'), + ] + + operations = [ + migrations.RunPython(migrate_spaces), + + ] diff --git a/cookbook/migrations/0138_auto_20210617_1602.py b/cookbook/migrations/0138_auto_20210617_1602.py new file mode 100644 index 00000000..60f76597 --- /dev/null +++ b/cookbook/migrations/0138_auto_20210617_1602.py @@ -0,0 +1,31 @@ +# Generated by Django 3.2.4 on 2021-06-17 14:02 + +from django.db import migrations +from django.db.models import Subquery, OuterRef +from django_scopes import scopes_disabled +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + dependencies = [ + ('cookbook', '0137_auto_20210617_1501'), + ] + + operations = [ + migrations.AlterField( + model_name='ingredient', + name='space', + field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='cookbook.space'), + ), + migrations.AlterField( + model_name='nutritioninformation', + name='space', + field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='cookbook.space'), + ), + migrations.AlterField( + model_name='step', + name='space', + field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='cookbook.space'), + ), + ] diff --git a/cookbook/migrations/0139_space_created_at.py b/cookbook/migrations/0139_space_created_at.py new file mode 100644 index 00000000..a453423e --- /dev/null +++ b/cookbook/migrations/0139_space_created_at.py @@ -0,0 +1,20 @@ +# Generated by Django 3.2.4 on 2021-06-22 16:14 + +from django.db import migrations, models +import django.utils.timezone + + +class Migration(migrations.Migration): + + dependencies = [ + ('cookbook', '0138_auto_20210617_1602'), + ] + + operations = [ + migrations.AddField( + model_name='space', + name='created_at', + field=models.DateTimeField(auto_now_add=True, default=django.utils.timezone.now), + preserve_default=False, + ), + ] diff --git a/cookbook/migrations/0140_userpreference_created_at.py b/cookbook/migrations/0140_userpreference_created_at.py new file mode 100644 index 00000000..5c25a524 --- /dev/null +++ b/cookbook/migrations/0140_userpreference_created_at.py @@ -0,0 +1,20 @@ +# Generated by Django 3.2.4 on 2021-06-22 16:19 + +from django.db import migrations, models +import django.utils.timezone + + +class Migration(migrations.Migration): + + dependencies = [ + ('cookbook', '0139_space_created_at'), + ] + + operations = [ + migrations.AddField( + model_name='userpreference', + name='created_at', + field=models.DateTimeField(auto_now_add=True, default=django.utils.timezone.now), + preserve_default=False, + ), + ] diff --git a/cookbook/models.py b/cookbook/models.py index 5c218041..36258750 100644 --- a/cookbook/models.py +++ b/cookbook/models.py @@ -70,10 +70,12 @@ class PermissionModelMixin: class Space(ExportModelOperationsMixin('space'), models.Model): name = models.CharField(max_length=128, default='Default') created_by = models.ForeignKey(User, on_delete=models.PROTECT, null=True) + created_at = models.DateTimeField(auto_now_add=True) message = models.CharField(max_length=512, default='', blank=True) max_recipes = models.IntegerField(default=0) max_file_storage_mb = models.IntegerField(default=0, help_text=_('Maximum file storage for space in MB. 0 for unlimited, -1 to disable file upload.')) max_users = models.IntegerField(default=0) + allow_sharing = models.BooleanField(default=True) demo = models.BooleanField(default=False) def __str__(self): @@ -157,6 +159,7 @@ class UserPreference(models.Model, PermissionModelMixin): shopping_auto_sync = models.IntegerField(default=5) sticky_navbar = models.BooleanField(default=STICKY_NAV_PREF_DEFAULT) + created_at = models.DateTimeField(auto_now_add=True) space = models.ForeignKey(Space, on_delete=models.CASCADE, null=True) objects = ScopedManager(space='space') @@ -388,14 +391,8 @@ class Ingredient(ExportModelOperationsMixin('ingredient'), models.Model, Permiss no_amount = models.BooleanField(default=False) order = models.IntegerField(default=0) - objects = ScopedManager(space='step__recipe__space') - - @staticmethod - def get_space_key(): - return 'step', 'recipe', 'space' - - def get_space(self): - return self.step_set.first().recipe_set.first().space + space = models.ForeignKey(Space, on_delete=models.CASCADE) + objects = ScopedManager(space='space') def __str__(self): return str(self.amount) + ' ' + str(self.unit) + ' ' + str(self.food) @@ -424,14 +421,8 @@ class Step(ExportModelOperationsMixin('step'), models.Model, PermissionModelMixi show_as_header = models.BooleanField(default=True) search_vector = SearchVectorField(null=True) - objects = ScopedManager(space='recipe__space') - - @staticmethod - def get_space_key(): - return 'recipe', 'space' - - def get_space(self): - return self.recipe_set.first().space + space = models.ForeignKey(Space, on_delete=models.CASCADE) + objects = ScopedManager(space='space') def get_instruction_render(self): from cookbook.helper.template_helper import render_instructions @@ -453,17 +444,11 @@ class NutritionInformation(models.Model, PermissionModelMixin): max_length=512, default="", null=True, blank=True ) - objects = ScopedManager(space='recipe__space') - - @staticmethod - def get_space_key(): - return 'recipe', 'space' - - def get_space(self): - return self.recipe_set.first().space + space = models.ForeignKey(Space, on_delete=models.CASCADE) + objects = ScopedManager(space='space') def __str__(self): - return 'Nutrition' + return f'Nutrition {self.pk}' class Recipe(ExportModelOperationsMixin('recipe'), models.Model, PermissionModelMixin): @@ -690,6 +675,8 @@ class ShoppingList(ExportModelOperationsMixin('shopping_list'), models.Model, Pe class ShareLink(ExportModelOperationsMixin('share_link'), models.Model, PermissionModelMixin): recipe = models.ForeignKey(Recipe, on_delete=models.CASCADE) uuid = models.UUIDField(default=uuid.uuid4) + request_count = models.IntegerField(default=0) + abuse_blocked = models.BooleanField(default=False) created_by = models.ForeignKey(User, on_delete=models.CASCADE) created_at = models.DateTimeField(auto_now_add=True) @@ -773,6 +760,10 @@ class ImportLog(models.Model, PermissionModelMixin): running = models.BooleanField(default=True) msg = models.TextField(default="") keyword = models.ForeignKey(Keyword, null=True, blank=True, on_delete=models.SET_NULL) + + total_recipes = models.IntegerField(default=0) + imported_recipes = models.IntegerField(default=0) + created_at = models.DateTimeField(auto_now_add=True) created_by = models.ForeignKey(User, on_delete=models.CASCADE) diff --git a/cookbook/serializer.py b/cookbook/serializer.py index 6595d014..a24d7efe 100644 --- a/cookbook/serializer.py +++ b/cookbook/serializer.py @@ -3,7 +3,7 @@ from decimal import Decimal from gettext import gettext as _ from django.contrib.auth.models import User -from django.db.models import QuerySet, Sum +from django.db.models import QuerySet, Sum, Avg from drf_writable_nested import (UniqueFieldsMixin, WritableNestedModelSerializer) from rest_framework import serializers @@ -301,6 +301,10 @@ class IngredientSerializer(WritableNestedModelSerializer): unit = UnitSerializer(allow_null=True) amount = CustomDecimalField() + def create(self, validated_data): + validated_data['space'] = self.context['request'].space + return super().create(validated_data) + class Meta: model = Ingredient fields = ( @@ -313,7 +317,11 @@ class StepSerializer(WritableNestedModelSerializer): ingredients = IngredientSerializer(many=True) ingredients_markdown = serializers.SerializerMethodField('get_ingredients_markdown') ingredients_vue = serializers.SerializerMethodField('get_ingredients_vue') - file = UserFileViewSerializer(allow_null=True) + file = UserFileViewSerializer(allow_null=True, required=False) + + def create(self, validated_data): + validated_data['space'] = self.context['request'].space + return super().create(validated_data) def get_ingredients_vue(self, obj): return obj.get_instruction_render() @@ -330,13 +338,34 @@ class StepSerializer(WritableNestedModelSerializer): class NutritionInformationSerializer(serializers.ModelSerializer): + + def create(self, validated_data): + validated_data['space'] = self.context['request'].space + return super().create(validated_data) + class Meta: model = NutritionInformation fields = ('id', 'carbohydrates', 'fats', 'proteins', 'calories', 'source') -class RecipeOverviewSerializer(WritableNestedModelSerializer): +class RecipeBaseSerializer(WritableNestedModelSerializer): + def get_recipe_rating(self, obj): + rating = obj.cooklog_set.filter(created_by=self.context['request'].user, rating__gt=0).aggregate(Avg('rating')) + if rating['rating__avg']: + return rating['rating__avg'] + return 0 + + def get_recipe_last_cooked(self, obj): + last = obj.cooklog_set.filter(created_by=self.context['request'].user).last() + if last: + return last.created_at + return None + + +class RecipeOverviewSerializer(RecipeBaseSerializer): keywords = KeywordLabelSerializer(many=True) + rating = serializers.SerializerMethodField('get_recipe_rating') + last_cooked = serializers.SerializerMethodField('get_recipe_last_cooked') def create(self, validated_data): pass @@ -349,22 +378,24 @@ class RecipeOverviewSerializer(WritableNestedModelSerializer): fields = ( 'id', 'name', 'description', 'image', 'keywords', 'working_time', 'waiting_time', 'created_by', 'created_at', 'updated_at', - 'internal', 'servings', 'file_path' + 'internal', 'servings', 'servings_text', 'rating', 'last_cooked', ) read_only_fields = ['image', 'created_by', 'created_at'] -class RecipeSerializer(WritableNestedModelSerializer): +class RecipeSerializer(RecipeBaseSerializer): nutrition = NutritionInformationSerializer(allow_null=True, required=False) steps = StepSerializer(many=True) keywords = KeywordSerializer(many=True) + rating = serializers.SerializerMethodField('get_recipe_rating') + last_cooked = serializers.SerializerMethodField('get_recipe_last_cooked') class Meta: model = Recipe fields = ( 'id', 'name', 'description', 'image', 'keywords', 'steps', 'working_time', 'waiting_time', 'created_by', 'created_at', 'updated_at', - 'internal', 'nutrition', 'servings', 'file_path', 'servings_text', + 'internal', 'nutrition', 'servings', 'file_path', 'servings_text', 'rating', 'last_cooked', ) read_only_fields = ['image', 'created_by', 'created_at'] @@ -538,7 +569,7 @@ class ImportLogSerializer(serializers.ModelSerializer): class Meta: model = ImportLog - fields = ('id', 'type', 'msg', 'running', 'keyword', 'created_by', 'created_at') + fields = ('id', 'type', 'msg', 'running', 'keyword', 'total_recipes', 'imported_recipes', 'created_by', 'created_at') read_only_fields = ('created_by',) @@ -596,6 +627,10 @@ class IngredientExportSerializer(WritableNestedModelSerializer): unit = UnitExportSerializer(allow_null=True) amount = CustomDecimalField() + def create(self, validated_data): + validated_data['space'] = self.context['request'].space + return super().create(validated_data) + class Meta: model = Ingredient fields = ('food', 'unit', 'amount', 'note', 'order', 'is_header', 'no_amount') @@ -604,6 +639,10 @@ class IngredientExportSerializer(WritableNestedModelSerializer): class StepExportSerializer(WritableNestedModelSerializer): ingredients = IngredientExportSerializer(many=True) + def create(self, validated_data): + validated_data['space'] = self.context['request'].space + return super().create(validated_data) + class Meta: model = Step fields = ('name', 'type', 'instruction', 'ingredients', 'time', 'order', 'show_as_header') diff --git a/cookbook/static/css/app.min.css b/cookbook/static/css/app.min.css index f417a5d0..272dac27 100644 --- a/cookbook/static/css/app.min.css +++ b/cookbook/static/css/app.min.css @@ -14,4 +14,1116 @@ to { transform: rotate(359deg); } +} + +.discord-login-button, .discord-login-button a { + background: #7289DA; + color: #fff; +} + +.github-login-button, .github-login-button a { + background: #7289DA; + color: #fff; + border-radius: 3px; +} + +.btn-social { + position: relative; + padding-left: 44px; + text-align: left; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis +} + +.btn-social > :first-child { + position: absolute; + left: 0; + top: 3px; + bottom: 0; + width: 32px; + line-height: 34px; + font-size: 1.6em; + text-align: center; + border-right: 1px solid rgba(0, 0, 0, 0.2) +} + +.btn-social.btn-lg { + padding-left: 61px +} + +.btn-social.btn-lg > :first-child { + line-height: 45px; + width: 45px; + font-size: 1.8em +} + +.btn-social.btn-sm { + padding-left: 38px +} + +.btn-social.btn-sm > :first-child { + line-height: 28px; + width: 28px; + font-size: 1.4em +} + +.btn-social.btn-xs { + padding-left: 30px +} + +.btn-social.btn-xs > :first-child { + line-height: 20px; + width: 20px; + font-size: 1.2em +} + +.btn-social-icon { + position: relative; + padding-left: 44px; + text-align: left; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + height: 34px; + width: 34px; + padding: 0 +} + +.btn-social-icon > :first-child { + position: absolute; + left: 0; + top: 0; + bottom: 0; + width: 32px; + line-height: 34px; + font-size: 1.6em; + text-align: center; + border-right: 1px solid rgba(0, 0, 0, 0.2) +} + +.btn-social-icon.btn-lg { + padding-left: 61px +} + +.btn-social-icon.btn-lg > :first-child { + line-height: 45px; + width: 45px; + font-size: 1.8em +} + +.btn-social-icon.btn-sm { + padding-left: 38px +} + +.btn-social-icon.btn-sm > :first-child { + line-height: 28px; + width: 28px; + font-size: 1.4em +} + +.btn-social-icon.btn-xs { + padding-left: 30px +} + +.btn-social-icon.btn-xs > :first-child { + line-height: 20px; + width: 20px; + font-size: 1.2em +} + +.btn-social-icon > :first-child { + border: 0; + text-align: center; + width: 100% !important +} + +.btn-social-icon.btn-lg { + height: 45px; + width: 45px; + padding-left: 0; + padding-right: 0 +} + +.btn-social-icon.btn-sm { + height: 30px; + width: 30px; + padding-left: 0; + padding-right: 0 +} + +.btn-social-icon.btn-xs { + height: 22px; + width: 22px; + padding-left: 0; + padding-right: 0 +} + +.btn-adn { + color: #fff; + background-color: #d87a68; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-adn:focus, .btn-adn.focus { + color: #fff; + background-color: #ce563f; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-adn:hover { + color: #fff; + background-color: #ce563f; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-adn:active, .btn-adn.active, .open > .dropdown-toggle.btn-adn { + color: #fff; + background-color: #ce563f; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-adn:active:hover, .btn-adn.active:hover, .open > .dropdown-toggle.btn-adn:hover, .btn-adn:active:focus, .btn-adn.active:focus, .open > .dropdown-toggle.btn-adn:focus, .btn-adn:active.focus, .btn-adn.active.focus, .open > .dropdown-toggle.btn-adn.focus { + color: #fff; + background-color: #b94630; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-adn:active, .btn-adn.active, .open > .dropdown-toggle.btn-adn { + background-image: none +} + +.btn-adn.disabled, .btn-adn[disabled], fieldset[disabled] .btn-adn, .btn-adn.disabled:hover, .btn-adn[disabled]:hover, fieldset[disabled] .btn-adn:hover, .btn-adn.disabled:focus, .btn-adn[disabled]:focus, fieldset[disabled] .btn-adn:focus, .btn-adn.disabled.focus, .btn-adn[disabled].focus, fieldset[disabled] .btn-adn.focus, .btn-adn.disabled:active, .btn-adn[disabled]:active, fieldset[disabled] .btn-adn:active, .btn-adn.disabled.active, .btn-adn[disabled].active, fieldset[disabled] .btn-adn.active { + background-color: #d87a68; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-adn .badge { + color: #d87a68; + background-color: #fff +} + +.btn-bitbucket { + color: #fff; + background-color: #205081; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-bitbucket:focus, .btn-bitbucket.focus { + color: #fff; + background-color: #163758; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-bitbucket:hover { + color: #fff; + background-color: #163758; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-bitbucket:active, .btn-bitbucket.active, .open > .dropdown-toggle.btn-bitbucket { + color: #fff; + background-color: #163758; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-bitbucket:active:hover, .btn-bitbucket.active:hover, .open > .dropdown-toggle.btn-bitbucket:hover, .btn-bitbucket:active:focus, .btn-bitbucket.active:focus, .open > .dropdown-toggle.btn-bitbucket:focus, .btn-bitbucket:active.focus, .btn-bitbucket.active.focus, .open > .dropdown-toggle.btn-bitbucket.focus { + color: #fff; + background-color: #0f253c; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-bitbucket:active, .btn-bitbucket.active, .open > .dropdown-toggle.btn-bitbucket { + background-image: none +} + +.btn-bitbucket.disabled, .btn-bitbucket[disabled], fieldset[disabled] .btn-bitbucket, .btn-bitbucket.disabled:hover, .btn-bitbucket[disabled]:hover, fieldset[disabled] .btn-bitbucket:hover, .btn-bitbucket.disabled:focus, .btn-bitbucket[disabled]:focus, fieldset[disabled] .btn-bitbucket:focus, .btn-bitbucket.disabled.focus, .btn-bitbucket[disabled].focus, fieldset[disabled] .btn-bitbucket.focus, .btn-bitbucket.disabled:active, .btn-bitbucket[disabled]:active, fieldset[disabled] .btn-bitbucket:active, .btn-bitbucket.disabled.active, .btn-bitbucket[disabled].active, fieldset[disabled] .btn-bitbucket.active { + background-color: #205081; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-bitbucket .badge { + color: #205081; + background-color: #fff +} + +.btn-dropbox { + color: #fff; + background-color: #1087dd; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-dropbox:focus, .btn-dropbox.focus { + color: #fff; + background-color: #0d6aad; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-dropbox:hover { + color: #fff; + background-color: #0d6aad; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-dropbox:active, .btn-dropbox.active, .open > .dropdown-toggle.btn-dropbox { + color: #fff; + background-color: #0d6aad; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-dropbox:active:hover, .btn-dropbox.active:hover, .open > .dropdown-toggle.btn-dropbox:hover, .btn-dropbox:active:focus, .btn-dropbox.active:focus, .open > .dropdown-toggle.btn-dropbox:focus, .btn-dropbox:active.focus, .btn-dropbox.active.focus, .open > .dropdown-toggle.btn-dropbox.focus { + color: #fff; + background-color: #0a568c; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-dropbox:active, .btn-dropbox.active, .open > .dropdown-toggle.btn-dropbox { + background-image: none +} + +.btn-dropbox.disabled, .btn-dropbox[disabled], fieldset[disabled] .btn-dropbox, .btn-dropbox.disabled:hover, .btn-dropbox[disabled]:hover, fieldset[disabled] .btn-dropbox:hover, .btn-dropbox.disabled:focus, .btn-dropbox[disabled]:focus, fieldset[disabled] .btn-dropbox:focus, .btn-dropbox.disabled.focus, .btn-dropbox[disabled].focus, fieldset[disabled] .btn-dropbox.focus, .btn-dropbox.disabled:active, .btn-dropbox[disabled]:active, fieldset[disabled] .btn-dropbox:active, .btn-dropbox.disabled.active, .btn-dropbox[disabled].active, fieldset[disabled] .btn-dropbox.active { + background-color: #1087dd; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-dropbox .badge { + color: #1087dd; + background-color: #fff +} + +.btn-facebook { + color: #fff; + background-color: #3b5998; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-facebook:focus, .btn-facebook.focus { + color: #fff; + background-color: #2d4373; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-facebook:hover { + color: #fff; + background-color: #2d4373; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-facebook:active, .btn-facebook.active, .open > .dropdown-toggle.btn-facebook { + color: #fff; + background-color: #2d4373; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-facebook:active:hover, .btn-facebook.active:hover, .open > .dropdown-toggle.btn-facebook:hover, .btn-facebook:active:focus, .btn-facebook.active:focus, .open > .dropdown-toggle.btn-facebook:focus, .btn-facebook:active.focus, .btn-facebook.active.focus, .open > .dropdown-toggle.btn-facebook.focus { + color: #fff; + background-color: #23345a; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-facebook:active, .btn-facebook.active, .open > .dropdown-toggle.btn-facebook { + background-image: none +} + +.btn-facebook.disabled, .btn-facebook[disabled], fieldset[disabled] .btn-facebook, .btn-facebook.disabled:hover, .btn-facebook[disabled]:hover, fieldset[disabled] .btn-facebook:hover, .btn-facebook.disabled:focus, .btn-facebook[disabled]:focus, fieldset[disabled] .btn-facebook:focus, .btn-facebook.disabled.focus, .btn-facebook[disabled].focus, fieldset[disabled] .btn-facebook.focus, .btn-facebook.disabled:active, .btn-facebook[disabled]:active, fieldset[disabled] .btn-facebook:active, .btn-facebook.disabled.active, .btn-facebook[disabled].active, fieldset[disabled] .btn-facebook.active { + background-color: #3b5998; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-facebook .badge { + color: #3b5998; + background-color: #fff +} + +.btn-flickr { + color: #fff; + background-color: #ff0084; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-flickr:focus, .btn-flickr.focus { + color: #fff; + background-color: #cc006a; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-flickr:hover { + color: #fff; + background-color: #cc006a; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-flickr:active, .btn-flickr.active, .open > .dropdown-toggle.btn-flickr { + color: #fff; + background-color: #cc006a; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-flickr:active:hover, .btn-flickr.active:hover, .open > .dropdown-toggle.btn-flickr:hover, .btn-flickr:active:focus, .btn-flickr.active:focus, .open > .dropdown-toggle.btn-flickr:focus, .btn-flickr:active.focus, .btn-flickr.active.focus, .open > .dropdown-toggle.btn-flickr.focus { + color: #fff; + background-color: #a80057; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-flickr:active, .btn-flickr.active, .open > .dropdown-toggle.btn-flickr { + background-image: none +} + +.btn-flickr.disabled, .btn-flickr[disabled], fieldset[disabled] .btn-flickr, .btn-flickr.disabled:hover, .btn-flickr[disabled]:hover, fieldset[disabled] .btn-flickr:hover, .btn-flickr.disabled:focus, .btn-flickr[disabled]:focus, fieldset[disabled] .btn-flickr:focus, .btn-flickr.disabled.focus, .btn-flickr[disabled].focus, fieldset[disabled] .btn-flickr.focus, .btn-flickr.disabled:active, .btn-flickr[disabled]:active, fieldset[disabled] .btn-flickr:active, .btn-flickr.disabled.active, .btn-flickr[disabled].active, fieldset[disabled] .btn-flickr.active { + background-color: #ff0084; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-flickr .badge { + color: #ff0084; + background-color: #fff +} + +.btn-foursquare { + color: #fff; + background-color: #f94877; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-foursquare:focus, .btn-foursquare.focus { + color: #fff; + background-color: #f71752; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-foursquare:hover { + color: #fff; + background-color: #f71752; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-foursquare:active, .btn-foursquare.active, .open > .dropdown-toggle.btn-foursquare { + color: #fff; + background-color: #f71752; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-foursquare:active:hover, .btn-foursquare.active:hover, .open > .dropdown-toggle.btn-foursquare:hover, .btn-foursquare:active:focus, .btn-foursquare.active:focus, .open > .dropdown-toggle.btn-foursquare:focus, .btn-foursquare:active.focus, .btn-foursquare.active.focus, .open > .dropdown-toggle.btn-foursquare.focus { + color: #fff; + background-color: #e30742; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-foursquare:active, .btn-foursquare.active, .open > .dropdown-toggle.btn-foursquare { + background-image: none +} + +.btn-foursquare.disabled, .btn-foursquare[disabled], fieldset[disabled] .btn-foursquare, .btn-foursquare.disabled:hover, .btn-foursquare[disabled]:hover, fieldset[disabled] .btn-foursquare:hover, .btn-foursquare.disabled:focus, .btn-foursquare[disabled]:focus, fieldset[disabled] .btn-foursquare:focus, .btn-foursquare.disabled.focus, .btn-foursquare[disabled].focus, fieldset[disabled] .btn-foursquare.focus, .btn-foursquare.disabled:active, .btn-foursquare[disabled]:active, fieldset[disabled] .btn-foursquare:active, .btn-foursquare.disabled.active, .btn-foursquare[disabled].active, fieldset[disabled] .btn-foursquare.active { + background-color: #f94877; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-foursquare .badge { + color: #f94877; + background-color: #fff +} + +.btn-github { + color: #fff; + background-color: #444; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-github:focus, .btn-github.focus { + color: #fff; + background-color: #2b2b2b; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-github:hover { + color: #fff; + background-color: #2b2b2b; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-github:active, .btn-github.active, .open > .dropdown-toggle.btn-github { + color: #fff; + background-color: #2b2b2b; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-github:active:hover, .btn-github.active:hover, .open > .dropdown-toggle.btn-github:hover, .btn-github:active:focus, .btn-github.active:focus, .open > .dropdown-toggle.btn-github:focus, .btn-github:active.focus, .btn-github.active.focus, .open > .dropdown-toggle.btn-github.focus { + color: #fff; + background-color: #191919; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-github:active, .btn-github.active, .open > .dropdown-toggle.btn-github { + background-image: none +} + +.btn-github.disabled, .btn-github[disabled], fieldset[disabled] .btn-github, .btn-github.disabled:hover, .btn-github[disabled]:hover, fieldset[disabled] .btn-github:hover, .btn-github.disabled:focus, .btn-github[disabled]:focus, fieldset[disabled] .btn-github:focus, .btn-github.disabled.focus, .btn-github[disabled].focus, fieldset[disabled] .btn-github.focus, .btn-github.disabled:active, .btn-github[disabled]:active, fieldset[disabled] .btn-github:active, .btn-github.disabled.active, .btn-github[disabled].active, fieldset[disabled] .btn-github.active { + background-color: #444; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-github .badge { + color: #444; + background-color: #fff +} + +.btn-google { + color: #fff; + background-color: #dd4b39; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-google:focus, .btn-google.focus { + color: #fff; + background-color: #c23321; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-google:hover { + color: #fff; + background-color: #c23321; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-google:active, .btn-google.active, .open > .dropdown-toggle.btn-google { + color: #fff; + background-color: #c23321; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-google:active:hover, .btn-google.active:hover, .open > .dropdown-toggle.btn-google:hover, .btn-google:active:focus, .btn-google.active:focus, .open > .dropdown-toggle.btn-google:focus, .btn-google:active.focus, .btn-google.active.focus, .open > .dropdown-toggle.btn-google.focus { + color: #fff; + background-color: #a32b1c; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-google:active, .btn-google.active, .open > .dropdown-toggle.btn-google { + background-image: none +} + +.btn-google.disabled, .btn-google[disabled], fieldset[disabled] .btn-google, .btn-google.disabled:hover, .btn-google[disabled]:hover, fieldset[disabled] .btn-google:hover, .btn-google.disabled:focus, .btn-google[disabled]:focus, fieldset[disabled] .btn-google:focus, .btn-google.disabled.focus, .btn-google[disabled].focus, fieldset[disabled] .btn-google.focus, .btn-google.disabled:active, .btn-google[disabled]:active, fieldset[disabled] .btn-google:active, .btn-google.disabled.active, .btn-google[disabled].active, fieldset[disabled] .btn-google.active { + background-color: #dd4b39; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-google .badge { + color: #dd4b39; + background-color: #fff +} + +.btn-instagram { + color: #fff; + background-color: #3f729b; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-instagram:focus, .btn-instagram.focus { + color: #fff; + background-color: #305777; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-instagram:hover { + color: #fff; + background-color: #305777; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-instagram:active, .btn-instagram.active, .open > .dropdown-toggle.btn-instagram { + color: #fff; + background-color: #305777; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-instagram:active:hover, .btn-instagram.active:hover, .open > .dropdown-toggle.btn-instagram:hover, .btn-instagram:active:focus, .btn-instagram.active:focus, .open > .dropdown-toggle.btn-instagram:focus, .btn-instagram:active.focus, .btn-instagram.active.focus, .open > .dropdown-toggle.btn-instagram.focus { + color: #fff; + background-color: #26455d; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-instagram:active, .btn-instagram.active, .open > .dropdown-toggle.btn-instagram { + background-image: none +} + +.btn-instagram.disabled, .btn-instagram[disabled], fieldset[disabled] .btn-instagram, .btn-instagram.disabled:hover, .btn-instagram[disabled]:hover, fieldset[disabled] .btn-instagram:hover, .btn-instagram.disabled:focus, .btn-instagram[disabled]:focus, fieldset[disabled] .btn-instagram:focus, .btn-instagram.disabled.focus, .btn-instagram[disabled].focus, fieldset[disabled] .btn-instagram.focus, .btn-instagram.disabled:active, .btn-instagram[disabled]:active, fieldset[disabled] .btn-instagram:active, .btn-instagram.disabled.active, .btn-instagram[disabled].active, fieldset[disabled] .btn-instagram.active { + background-color: #3f729b; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-instagram .badge { + color: #3f729b; + background-color: #fff +} + +.btn-linkedin { + color: #fff; + background-color: #007bb6; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-linkedin:focus, .btn-linkedin.focus { + color: #fff; + background-color: #005983; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-linkedin:hover { + color: #fff; + background-color: #005983; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-linkedin:active, .btn-linkedin.active, .open > .dropdown-toggle.btn-linkedin { + color: #fff; + background-color: #005983; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-linkedin:active:hover, .btn-linkedin.active:hover, .open > .dropdown-toggle.btn-linkedin:hover, .btn-linkedin:active:focus, .btn-linkedin.active:focus, .open > .dropdown-toggle.btn-linkedin:focus, .btn-linkedin:active.focus, .btn-linkedin.active.focus, .open > .dropdown-toggle.btn-linkedin.focus { + color: #fff; + background-color: #00405f; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-linkedin:active, .btn-linkedin.active, .open > .dropdown-toggle.btn-linkedin { + background-image: none +} + +.btn-linkedin.disabled, .btn-linkedin[disabled], fieldset[disabled] .btn-linkedin, .btn-linkedin.disabled:hover, .btn-linkedin[disabled]:hover, fieldset[disabled] .btn-linkedin:hover, .btn-linkedin.disabled:focus, .btn-linkedin[disabled]:focus, fieldset[disabled] .btn-linkedin:focus, .btn-linkedin.disabled.focus, .btn-linkedin[disabled].focus, fieldset[disabled] .btn-linkedin.focus, .btn-linkedin.disabled:active, .btn-linkedin[disabled]:active, fieldset[disabled] .btn-linkedin:active, .btn-linkedin.disabled.active, .btn-linkedin[disabled].active, fieldset[disabled] .btn-linkedin.active { + background-color: #007bb6; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-linkedin .badge { + color: #007bb6; + background-color: #fff +} + +.btn-microsoft { + color: #fff; + background-color: #2672ec; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-microsoft:focus, .btn-microsoft.focus { + color: #fff; + background-color: #125acd; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-microsoft:hover { + color: #fff; + background-color: #125acd; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-microsoft:active, .btn-microsoft.active, .open > .dropdown-toggle.btn-microsoft { + color: #fff; + background-color: #125acd; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-microsoft:active:hover, .btn-microsoft.active:hover, .open > .dropdown-toggle.btn-microsoft:hover, .btn-microsoft:active:focus, .btn-microsoft.active:focus, .open > .dropdown-toggle.btn-microsoft:focus, .btn-microsoft:active.focus, .btn-microsoft.active.focus, .open > .dropdown-toggle.btn-microsoft.focus { + color: #fff; + background-color: #0f4bac; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-microsoft:active, .btn-microsoft.active, .open > .dropdown-toggle.btn-microsoft { + background-image: none +} + +.btn-microsoft.disabled, .btn-microsoft[disabled], fieldset[disabled] .btn-microsoft, .btn-microsoft.disabled:hover, .btn-microsoft[disabled]:hover, fieldset[disabled] .btn-microsoft:hover, .btn-microsoft.disabled:focus, .btn-microsoft[disabled]:focus, fieldset[disabled] .btn-microsoft:focus, .btn-microsoft.disabled.focus, .btn-microsoft[disabled].focus, fieldset[disabled] .btn-microsoft.focus, .btn-microsoft.disabled:active, .btn-microsoft[disabled]:active, fieldset[disabled] .btn-microsoft:active, .btn-microsoft.disabled.active, .btn-microsoft[disabled].active, fieldset[disabled] .btn-microsoft.active { + background-color: #2672ec; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-microsoft .badge { + color: #2672ec; + background-color: #fff +} + +.btn-odnoklassniki { + color: #fff; + background-color: #f4731c; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-odnoklassniki:focus, .btn-odnoklassniki.focus { + color: #fff; + background-color: #d35b0a; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-odnoklassniki:hover { + color: #fff; + background-color: #d35b0a; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-odnoklassniki:active, .btn-odnoklassniki.active, .open > .dropdown-toggle.btn-odnoklassniki { + color: #fff; + background-color: #d35b0a; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-odnoklassniki:active:hover, .btn-odnoklassniki.active:hover, .open > .dropdown-toggle.btn-odnoklassniki:hover, .btn-odnoklassniki:active:focus, .btn-odnoklassniki.active:focus, .open > .dropdown-toggle.btn-odnoklassniki:focus, .btn-odnoklassniki:active.focus, .btn-odnoklassniki.active.focus, .open > .dropdown-toggle.btn-odnoklassniki.focus { + color: #fff; + background-color: #b14c09; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-odnoklassniki:active, .btn-odnoklassniki.active, .open > .dropdown-toggle.btn-odnoklassniki { + background-image: none +} + +.btn-odnoklassniki.disabled, .btn-odnoklassniki[disabled], fieldset[disabled] .btn-odnoklassniki, .btn-odnoklassniki.disabled:hover, .btn-odnoklassniki[disabled]:hover, fieldset[disabled] .btn-odnoklassniki:hover, .btn-odnoklassniki.disabled:focus, .btn-odnoklassniki[disabled]:focus, fieldset[disabled] .btn-odnoklassniki:focus, .btn-odnoklassniki.disabled.focus, .btn-odnoklassniki[disabled].focus, fieldset[disabled] .btn-odnoklassniki.focus, .btn-odnoklassniki.disabled:active, .btn-odnoklassniki[disabled]:active, fieldset[disabled] .btn-odnoklassniki:active, .btn-odnoklassniki.disabled.active, .btn-odnoklassniki[disabled].active, fieldset[disabled] .btn-odnoklassniki.active { + background-color: #f4731c; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-odnoklassniki .badge { + color: #f4731c; + background-color: #fff +} + +.btn-openid { + color: #fff; + background-color: #f7931e; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-openid:focus, .btn-openid.focus { + color: #fff; + background-color: #da7908; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-openid:hover { + color: #fff; + background-color: #da7908; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-openid:active, .btn-openid.active, .open > .dropdown-toggle.btn-openid { + color: #fff; + background-color: #da7908; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-openid:active:hover, .btn-openid.active:hover, .open > .dropdown-toggle.btn-openid:hover, .btn-openid:active:focus, .btn-openid.active:focus, .open > .dropdown-toggle.btn-openid:focus, .btn-openid:active.focus, .btn-openid.active.focus, .open > .dropdown-toggle.btn-openid.focus { + color: #fff; + background-color: #b86607; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-openid:active, .btn-openid.active, .open > .dropdown-toggle.btn-openid { + background-image: none +} + +.btn-openid.disabled, .btn-openid[disabled], fieldset[disabled] .btn-openid, .btn-openid.disabled:hover, .btn-openid[disabled]:hover, fieldset[disabled] .btn-openid:hover, .btn-openid.disabled:focus, .btn-openid[disabled]:focus, fieldset[disabled] .btn-openid:focus, .btn-openid.disabled.focus, .btn-openid[disabled].focus, fieldset[disabled] .btn-openid.focus, .btn-openid.disabled:active, .btn-openid[disabled]:active, fieldset[disabled] .btn-openid:active, .btn-openid.disabled.active, .btn-openid[disabled].active, fieldset[disabled] .btn-openid.active { + background-color: #f7931e; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-openid .badge { + color: #f7931e; + background-color: #fff +} + +.btn-pinterest { + color: #fff; + background-color: #cb2027; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-pinterest:focus, .btn-pinterest.focus { + color: #fff; + background-color: #9f191f; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-pinterest:hover { + color: #fff; + background-color: #9f191f; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-pinterest:active, .btn-pinterest.active, .open > .dropdown-toggle.btn-pinterest { + color: #fff; + background-color: #9f191f; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-pinterest:active:hover, .btn-pinterest.active:hover, .open > .dropdown-toggle.btn-pinterest:hover, .btn-pinterest:active:focus, .btn-pinterest.active:focus, .open > .dropdown-toggle.btn-pinterest:focus, .btn-pinterest:active.focus, .btn-pinterest.active.focus, .open > .dropdown-toggle.btn-pinterest.focus { + color: #fff; + background-color: #801419; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-pinterest:active, .btn-pinterest.active, .open > .dropdown-toggle.btn-pinterest { + background-image: none +} + +.btn-pinterest.disabled, .btn-pinterest[disabled], fieldset[disabled] .btn-pinterest, .btn-pinterest.disabled:hover, .btn-pinterest[disabled]:hover, fieldset[disabled] .btn-pinterest:hover, .btn-pinterest.disabled:focus, .btn-pinterest[disabled]:focus, fieldset[disabled] .btn-pinterest:focus, .btn-pinterest.disabled.focus, .btn-pinterest[disabled].focus, fieldset[disabled] .btn-pinterest.focus, .btn-pinterest.disabled:active, .btn-pinterest[disabled]:active, fieldset[disabled] .btn-pinterest:active, .btn-pinterest.disabled.active, .btn-pinterest[disabled].active, fieldset[disabled] .btn-pinterest.active { + background-color: #cb2027; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-pinterest .badge { + color: #cb2027; + background-color: #fff +} + +.btn-reddit { + color: #000; + background-color: #eff7ff; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-reddit:focus, .btn-reddit.focus { + color: #000; + background-color: #bcddff; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-reddit:hover { + color: #000; + background-color: #bcddff; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-reddit:active, .btn-reddit.active, .open > .dropdown-toggle.btn-reddit { + color: #000; + background-color: #bcddff; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-reddit:active:hover, .btn-reddit.active:hover, .open > .dropdown-toggle.btn-reddit:hover, .btn-reddit:active:focus, .btn-reddit.active:focus, .open > .dropdown-toggle.btn-reddit:focus, .btn-reddit:active.focus, .btn-reddit.active.focus, .open > .dropdown-toggle.btn-reddit.focus { + color: #000; + background-color: #98ccff; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-reddit:active, .btn-reddit.active, .open > .dropdown-toggle.btn-reddit { + background-image: none +} + +.btn-reddit.disabled, .btn-reddit[disabled], fieldset[disabled] .btn-reddit, .btn-reddit.disabled:hover, .btn-reddit[disabled]:hover, fieldset[disabled] .btn-reddit:hover, .btn-reddit.disabled:focus, .btn-reddit[disabled]:focus, fieldset[disabled] .btn-reddit:focus, .btn-reddit.disabled.focus, .btn-reddit[disabled].focus, fieldset[disabled] .btn-reddit.focus, .btn-reddit.disabled:active, .btn-reddit[disabled]:active, fieldset[disabled] .btn-reddit:active, .btn-reddit.disabled.active, .btn-reddit[disabled].active, fieldset[disabled] .btn-reddit.active { + background-color: #eff7ff; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-reddit .badge { + color: #eff7ff; + background-color: #000 +} + +.btn-soundcloud { + color: #fff; + background-color: #f50; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-soundcloud:focus, .btn-soundcloud.focus { + color: #fff; + background-color: #c40; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-soundcloud:hover { + color: #fff; + background-color: #c40; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-soundcloud:active, .btn-soundcloud.active, .open > .dropdown-toggle.btn-soundcloud { + color: #fff; + background-color: #c40; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-soundcloud:active:hover, .btn-soundcloud.active:hover, .open > .dropdown-toggle.btn-soundcloud:hover, .btn-soundcloud:active:focus, .btn-soundcloud.active:focus, .open > .dropdown-toggle.btn-soundcloud:focus, .btn-soundcloud:active.focus, .btn-soundcloud.active.focus, .open > .dropdown-toggle.btn-soundcloud.focus { + color: #fff; + background-color: #a83800; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-soundcloud:active, .btn-soundcloud.active, .open > .dropdown-toggle.btn-soundcloud { + background-image: none +} + +.btn-soundcloud.disabled, .btn-soundcloud[disabled], fieldset[disabled] .btn-soundcloud, .btn-soundcloud.disabled:hover, .btn-soundcloud[disabled]:hover, fieldset[disabled] .btn-soundcloud:hover, .btn-soundcloud.disabled:focus, .btn-soundcloud[disabled]:focus, fieldset[disabled] .btn-soundcloud:focus, .btn-soundcloud.disabled.focus, .btn-soundcloud[disabled].focus, fieldset[disabled] .btn-soundcloud.focus, .btn-soundcloud.disabled:active, .btn-soundcloud[disabled]:active, fieldset[disabled] .btn-soundcloud:active, .btn-soundcloud.disabled.active, .btn-soundcloud[disabled].active, fieldset[disabled] .btn-soundcloud.active { + background-color: #f50; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-soundcloud .badge { + color: #f50; + background-color: #fff +} + +.btn-tumblr { + color: #fff; + background-color: #2c4762; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-tumblr:focus, .btn-tumblr.focus { + color: #fff; + background-color: #1c2d3f; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-tumblr:hover { + color: #fff; + background-color: #1c2d3f; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-tumblr:active, .btn-tumblr.active, .open > .dropdown-toggle.btn-tumblr { + color: #fff; + background-color: #1c2d3f; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-tumblr:active:hover, .btn-tumblr.active:hover, .open > .dropdown-toggle.btn-tumblr:hover, .btn-tumblr:active:focus, .btn-tumblr.active:focus, .open > .dropdown-toggle.btn-tumblr:focus, .btn-tumblr:active.focus, .btn-tumblr.active.focus, .open > .dropdown-toggle.btn-tumblr.focus { + color: #fff; + background-color: #111c26; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-tumblr:active, .btn-tumblr.active, .open > .dropdown-toggle.btn-tumblr { + background-image: none +} + +.btn-tumblr.disabled, .btn-tumblr[disabled], fieldset[disabled] .btn-tumblr, .btn-tumblr.disabled:hover, .btn-tumblr[disabled]:hover, fieldset[disabled] .btn-tumblr:hover, .btn-tumblr.disabled:focus, .btn-tumblr[disabled]:focus, fieldset[disabled] .btn-tumblr:focus, .btn-tumblr.disabled.focus, .btn-tumblr[disabled].focus, fieldset[disabled] .btn-tumblr.focus, .btn-tumblr.disabled:active, .btn-tumblr[disabled]:active, fieldset[disabled] .btn-tumblr:active, .btn-tumblr.disabled.active, .btn-tumblr[disabled].active, fieldset[disabled] .btn-tumblr.active { + background-color: #2c4762; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-tumblr .badge { + color: #2c4762; + background-color: #fff +} + +.btn-twitter { + color: #fff; + background-color: #55acee; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-twitter:focus, .btn-twitter.focus { + color: #fff; + background-color: #2795e9; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-twitter:hover { + color: #fff; + background-color: #2795e9; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-twitter:active, .btn-twitter.active, .open > .dropdown-toggle.btn-twitter { + color: #fff; + background-color: #2795e9; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-twitter:active:hover, .btn-twitter.active:hover, .open > .dropdown-toggle.btn-twitter:hover, .btn-twitter:active:focus, .btn-twitter.active:focus, .open > .dropdown-toggle.btn-twitter:focus, .btn-twitter:active.focus, .btn-twitter.active.focus, .open > .dropdown-toggle.btn-twitter.focus { + color: #fff; + background-color: #1583d7; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-twitter:active, .btn-twitter.active, .open > .dropdown-toggle.btn-twitter { + background-image: none +} + +.btn-twitter.disabled, .btn-twitter[disabled], fieldset[disabled] .btn-twitter, .btn-twitter.disabled:hover, .btn-twitter[disabled]:hover, fieldset[disabled] .btn-twitter:hover, .btn-twitter.disabled:focus, .btn-twitter[disabled]:focus, fieldset[disabled] .btn-twitter:focus, .btn-twitter.disabled.focus, .btn-twitter[disabled].focus, fieldset[disabled] .btn-twitter.focus, .btn-twitter.disabled:active, .btn-twitter[disabled]:active, fieldset[disabled] .btn-twitter:active, .btn-twitter.disabled.active, .btn-twitter[disabled].active, fieldset[disabled] .btn-twitter.active { + background-color: #55acee; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-twitter .badge { + color: #55acee; + background-color: #fff +} + +.btn-vimeo { + color: #fff; + background-color: #1ab7ea; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-vimeo:focus, .btn-vimeo.focus { + color: #fff; + background-color: #1295bf; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-vimeo:hover { + color: #fff; + background-color: #1295bf; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-vimeo:active, .btn-vimeo.active, .open > .dropdown-toggle.btn-vimeo { + color: #fff; + background-color: #1295bf; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-vimeo:active:hover, .btn-vimeo.active:hover, .open > .dropdown-toggle.btn-vimeo:hover, .btn-vimeo:active:focus, .btn-vimeo.active:focus, .open > .dropdown-toggle.btn-vimeo:focus, .btn-vimeo:active.focus, .btn-vimeo.active.focus, .open > .dropdown-toggle.btn-vimeo.focus { + color: #fff; + background-color: #0f7b9f; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-vimeo:active, .btn-vimeo.active, .open > .dropdown-toggle.btn-vimeo { + background-image: none +} + +.btn-vimeo.disabled, .btn-vimeo[disabled], fieldset[disabled] .btn-vimeo, .btn-vimeo.disabled:hover, .btn-vimeo[disabled]:hover, fieldset[disabled] .btn-vimeo:hover, .btn-vimeo.disabled:focus, .btn-vimeo[disabled]:focus, fieldset[disabled] .btn-vimeo:focus, .btn-vimeo.disabled.focus, .btn-vimeo[disabled].focus, fieldset[disabled] .btn-vimeo.focus, .btn-vimeo.disabled:active, .btn-vimeo[disabled]:active, fieldset[disabled] .btn-vimeo:active, .btn-vimeo.disabled.active, .btn-vimeo[disabled].active, fieldset[disabled] .btn-vimeo.active { + background-color: #1ab7ea; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-vimeo .badge { + color: #1ab7ea; + background-color: #fff +} + +.btn-vk { + color: #fff; + background-color: #587ea3; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-vk:focus, .btn-vk.focus { + color: #fff; + background-color: #466482; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-vk:hover { + color: #fff; + background-color: #466482; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-vk:active, .btn-vk.active, .open > .dropdown-toggle.btn-vk { + color: #fff; + background-color: #466482; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-vk:active:hover, .btn-vk.active:hover, .open > .dropdown-toggle.btn-vk:hover, .btn-vk:active:focus, .btn-vk.active:focus, .open > .dropdown-toggle.btn-vk:focus, .btn-vk:active.focus, .btn-vk.active.focus, .open > .dropdown-toggle.btn-vk.focus { + color: #fff; + background-color: #3a526b; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-vk:active, .btn-vk.active, .open > .dropdown-toggle.btn-vk { + background-image: none +} + +.btn-vk.disabled, .btn-vk[disabled], fieldset[disabled] .btn-vk, .btn-vk.disabled:hover, .btn-vk[disabled]:hover, fieldset[disabled] .btn-vk:hover, .btn-vk.disabled:focus, .btn-vk[disabled]:focus, fieldset[disabled] .btn-vk:focus, .btn-vk.disabled.focus, .btn-vk[disabled].focus, fieldset[disabled] .btn-vk.focus, .btn-vk.disabled:active, .btn-vk[disabled]:active, fieldset[disabled] .btn-vk:active, .btn-vk.disabled.active, .btn-vk[disabled].active, fieldset[disabled] .btn-vk.active { + background-color: #587ea3; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-vk .badge { + color: #587ea3; + background-color: #fff +} + +.btn-yahoo { + color: #fff; + background-color: #720e9e; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-yahoo:focus, .btn-yahoo.focus { + color: #fff; + background-color: #500a6f; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-yahoo:hover { + color: #fff; + background-color: #500a6f; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-yahoo:active, .btn-yahoo.active, .open > .dropdown-toggle.btn-yahoo { + color: #fff; + background-color: #500a6f; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-yahoo:active:hover, .btn-yahoo.active:hover, .open > .dropdown-toggle.btn-yahoo:hover, .btn-yahoo:active:focus, .btn-yahoo.active:focus, .open > .dropdown-toggle.btn-yahoo:focus, .btn-yahoo:active.focus, .btn-yahoo.active.focus, .open > .dropdown-toggle.btn-yahoo.focus { + color: #fff; + background-color: #39074e; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-yahoo:active, .btn-yahoo.active, .open > .dropdown-toggle.btn-yahoo { + background-image: none +} + +.btn-yahoo.disabled, .btn-yahoo[disabled], fieldset[disabled] .btn-yahoo, .btn-yahoo.disabled:hover, .btn-yahoo[disabled]:hover, fieldset[disabled] .btn-yahoo:hover, .btn-yahoo.disabled:focus, .btn-yahoo[disabled]:focus, fieldset[disabled] .btn-yahoo:focus, .btn-yahoo.disabled.focus, .btn-yahoo[disabled].focus, fieldset[disabled] .btn-yahoo.focus, .btn-yahoo.disabled:active, .btn-yahoo[disabled]:active, fieldset[disabled] .btn-yahoo:active, .btn-yahoo.disabled.active, .btn-yahoo[disabled].active, fieldset[disabled] .btn-yahoo.active { + background-color: #720e9e; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-yahoo .badge { + color: #720e9e; + background-color: #fff +} + + +.btn-apple { + color: #000; + background-color: #fff; + border-color: rgba(0, 0, 0, 0.5) +} + +.btn-apple:focus, .btn-apple.focus { + color: #000; + background-color: #d2d2d2; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-apple:hover { + color: #000; + background-color: #d2d2d2; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-apple:active, .btn-apple.active, .open > .dropdown-toggle.btn-apple { + color: #000; + background-color: #d2d2d2; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-apple:active:hover, .btn-apple.active:hover, .open > .dropdown-toggle.btn-apple:hover, .btn-apple:active:focus, .btn-apple.active:focus, .open > .dropdown-toggle.btn-apple:focus, .btn-apple:active.focus, .btn-apple.active.focus, .open > .dropdown-toggle.btn-apple.focus { + color: #000; + background-color: #d2d2d2; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-apple:active, .btn-apple.active, .open > .dropdown-toggle.btn-apple { + background-image: none +} + +.btn-apple.disabled, .btn-apple[disabled], fieldset[disabled] .btn-apple, .btn-apple.disabled:hover, .btn-apple[disabled]:hover, fieldset[disabled] .btn-apple:hover, .btn-apple.disabled:focus, .btn-apple[disabled]:focus, fieldset[disabled] .btn-apple:focus, .btn-apple.disabled.focus, .btn-apple[disabled].focus, fieldset[disabled] .btn-apple.focus, .btn-apple.disabled:active, .btn-apple[disabled]:active, fieldset[disabled] .btn-apple:active, .btn-apple.disabled.active, .btn-apple[disabled].active, fieldset[disabled] .btn-apple.active { + background-color: #d2d2d2; + border-color: rgba(0, 0, 0, 0.2) +} + +.btn-apple .badge { + color: #000; + background-color: #fff; } \ No newline at end of file diff --git a/cookbook/static/themes/tandoor.min.css b/cookbook/static/themes/tandoor.min.css index ad9d8ec6..b12beac6 100644 --- a/cookbook/static/themes/tandoor.min.css +++ b/cookbook/static/themes/tandoor.min.css @@ -10402,16 +10402,6 @@ footer a:hover { box-shadow: none } -.modal-content { - width: 500px -} - -@media (max-width: 575px) { - .modal-content { - width: 300px - } -} - .modal-content .modal-header { justify-content: center; border: none diff --git a/cookbook/static/vue/js/chunk-vendors.js b/cookbook/static/vue/js/chunk-vendors.js index 6efc2807..4765ffef 100644 --- a/cookbook/static/vue/js/chunk-vendors.js +++ b/cookbook/static/vue/js/chunk-vendors.js @@ -1,60 +1,60 @@ -(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-vendors"],{"0056":function(e,t,n){"use strict";n.d(t,"a",(function(){return i})),n.d(t,"b",(function(){return r})),n.d(t,"c",(function(){return o})),n.d(t,"d",(function(){return a})),n.d(t,"e",(function(){return s})),n.d(t,"f",(function(){return c})),n.d(t,"g",(function(){return u})),n.d(t,"h",(function(){return d})),n.d(t,"i",(function(){return l})),n.d(t,"j",(function(){return f})),n.d(t,"k",(function(){return p})),n.d(t,"l",(function(){return h})),n.d(t,"m",(function(){return m})),n.d(t,"n",(function(){return b})),n.d(t,"o",(function(){return g})),n.d(t,"p",(function(){return v})),n.d(t,"q",(function(){return y})),n.d(t,"r",(function(){return _})),n.d(t,"s",(function(){return O})),n.d(t,"t",(function(){return j})),n.d(t,"u",(function(){return w})),n.d(t,"v",(function(){return k})),n.d(t,"w",(function(){return M})),n.d(t,"x",(function(){return L})),n.d(t,"y",(function(){return x})),n.d(t,"z",(function(){return T})),n.d(t,"A",(function(){return S})),n.d(t,"B",(function(){return D})),n.d(t,"C",(function(){return A})),n.d(t,"D",(function(){return P})),n.d(t,"E",(function(){return Y})),n.d(t,"F",(function(){return C})),n.d(t,"G",(function(){return E})),n.d(t,"H",(function(){return H})),n.d(t,"I",(function(){return $})),n.d(t,"J",(function(){return F})),n.d(t,"K",(function(){return I})),n.d(t,"L",(function(){return B})),n.d(t,"M",(function(){return R})),n.d(t,"N",(function(){return N})),n.d(t,"O",(function(){return z})),n.d(t,"P",(function(){return W})),n.d(t,"Q",(function(){return V})),n.d(t,"R",(function(){return U})),n.d(t,"S",(function(){return G})),n.d(t,"T",(function(){return q})),n.d(t,"U",(function(){return J})),n.d(t,"V",(function(){return K})),n.d(t,"W",(function(){return X})),n.d(t,"X",(function(){return Z})),n.d(t,"Y",(function(){return Q})),n.d(t,"Z",(function(){return ee})),n.d(t,"ab",(function(){return te})),n.d(t,"bb",(function(){return ne})),n.d(t,"eb",(function(){return ie})),n.d(t,"fb",(function(){return re})),n.d(t,"gb",(function(){return oe})),n.d(t,"hb",(function(){return ae})),n.d(t,"ib",(function(){return se})),n.d(t,"db",(function(){return ce})),n.d(t,"cb",(function(){return ue}));var i="activate-tab",r="blur",o="cancel",a="change",s="changed",c="click",u="close",d="context",l="context-changed",f="destroyed",p="disable",h="disabled",m="dismissed",b="dismiss-count-down",g="enable",v="enabled",y="filtered",_="first",O="focusin",j="focusout",w="head-clicked",k="hidden",M="hide",L="img-error",x="input",T="last",S="mouseenter",D="mouseleave",A="next",P="ok",Y="open",C="page-click",E="paused",H="prev",$="refresh",F="refreshed",I="remove",B="row-clicked",R="row-contextmenu",N="row-dblclicked",z="row-hovered",W="row-middle-clicked",V="row-selected",U="row-unhovered",G="selected",q="show",J="shown",K="sliding-end",X="sliding-start",Z="sort-changed",Q="tag-state",ee="toggle",te="unpaused",ne="update",ie="hook:beforeDestroy",re="hook:destroyed",oe="update:",ae="bv",se="::",ce={passive:!0},ue={passive:!0,capture:!1}},"00ee":function(e,t,n){var i=n("b622"),r=i("toStringTag"),o={};o[r]="z",e.exports="[object z]"===String(o)},"00fd":function(e,t,n){var i=n("9e69"),r=Object.prototype,o=r.hasOwnProperty,a=r.toString,s=i?i.toStringTag:void 0;function c(e){var t=o.call(e,s),n=e[s];try{e[s]=void 0;var i=!0}catch(c){}var r=a.call(e);return i&&(t?e[s]=n:delete e[s]),r}e.exports=c},"010e":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-vendors"],{"0056":function(t,e,n){"use strict";n.d(e,"a",(function(){return r})),n.d(e,"b",(function(){return i})),n.d(e,"c",(function(){return a})),n.d(e,"d",(function(){return o})),n.d(e,"e",(function(){return s})),n.d(e,"f",(function(){return c})),n.d(e,"g",(function(){return u})),n.d(e,"h",(function(){return l})),n.d(e,"i",(function(){return d})),n.d(e,"j",(function(){return f})),n.d(e,"k",(function(){return h})),n.d(e,"l",(function(){return p})),n.d(e,"m",(function(){return m})),n.d(e,"n",(function(){return b})),n.d(e,"o",(function(){return v})),n.d(e,"p",(function(){return _})),n.d(e,"q",(function(){return g})),n.d(e,"r",(function(){return y})),n.d(e,"s",(function(){return O})),n.d(e,"t",(function(){return j})),n.d(e,"u",(function(){return w})),n.d(e,"v",(function(){return M})),n.d(e,"w",(function(){return L})),n.d(e,"x",(function(){return k})),n.d(e,"y",(function(){return T})),n.d(e,"z",(function(){return D})),n.d(e,"A",(function(){return S})),n.d(e,"B",(function(){return Y})),n.d(e,"C",(function(){return x})),n.d(e,"D",(function(){return P})),n.d(e,"E",(function(){return C})),n.d(e,"F",(function(){return E})),n.d(e,"G",(function(){return H})),n.d(e,"H",(function(){return A})),n.d(e,"I",(function(){return $})),n.d(e,"J",(function(){return F})),n.d(e,"K",(function(){return I})),n.d(e,"L",(function(){return B})),n.d(e,"M",(function(){return R})),n.d(e,"N",(function(){return N})),n.d(e,"O",(function(){return V})),n.d(e,"P",(function(){return z})),n.d(e,"Q",(function(){return W})),n.d(e,"R",(function(){return U})),n.d(e,"S",(function(){return G})),n.d(e,"T",(function(){return J})),n.d(e,"U",(function(){return q})),n.d(e,"V",(function(){return K})),n.d(e,"W",(function(){return X})),n.d(e,"X",(function(){return Z})),n.d(e,"Y",(function(){return Q})),n.d(e,"Z",(function(){return tt})),n.d(e,"ab",(function(){return et})),n.d(e,"bb",(function(){return nt})),n.d(e,"eb",(function(){return rt})),n.d(e,"fb",(function(){return it})),n.d(e,"gb",(function(){return at})),n.d(e,"hb",(function(){return ot})),n.d(e,"ib",(function(){return st})),n.d(e,"db",(function(){return ct})),n.d(e,"cb",(function(){return ut}));var r="activate-tab",i="blur",a="cancel",o="change",s="changed",c="click",u="close",l="context",d="context-changed",f="destroyed",h="disable",p="disabled",m="dismissed",b="dismiss-count-down",v="enable",_="enabled",g="filtered",y="first",O="focusin",j="focusout",w="head-clicked",M="hidden",L="hide",k="img-error",T="input",D="last",S="mouseenter",Y="mouseleave",x="next",P="ok",C="open",E="page-click",H="paused",A="prev",$="refresh",F="refreshed",I="remove",B="row-clicked",R="row-contextmenu",N="row-dblclicked",V="row-hovered",z="row-middle-clicked",W="row-selected",U="row-unhovered",G="selected",J="show",q="shown",K="sliding-end",X="sliding-start",Z="sort-changed",Q="tag-state",tt="toggle",et="unpaused",nt="update",rt="hook:beforeDestroy",it="hook:destroyed",at="update:",ot="bv",st="::",ct={passive:!0},ut={passive:!0,capture:!1}},"00ee":function(t,e,n){var r=n("b622"),i=r("toStringTag"),a={};a[i]="z",t.exports="[object z]"===String(a)},"00fd":function(t,e,n){var r=n("9e69"),i=Object.prototype,a=i.hasOwnProperty,o=i.toString,s=r?r.toStringTag:void 0;function c(t){var e=a.call(t,s),n=t[s];try{t[s]=void 0;var r=!0}catch(c){}var i=o.call(t);return r&&(e?t[s]=n:delete t[s]),i}t.exports=c},"010e":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t=e.defineLocale("uz-latn",{months:"Yanvar_Fevral_Mart_Aprel_May_Iyun_Iyul_Avgust_Sentabr_Oktabr_Noyabr_Dekabr".split("_"),monthsShort:"Yan_Fev_Mar_Apr_May_Iyun_Iyul_Avg_Sen_Okt_Noy_Dek".split("_"),weekdays:"Yakshanba_Dushanba_Seshanba_Chorshanba_Payshanba_Juma_Shanba".split("_"),weekdaysShort:"Yak_Dush_Sesh_Chor_Pay_Jum_Shan".split("_"),weekdaysMin:"Ya_Du_Se_Cho_Pa_Ju_Sha".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"D MMMM YYYY, dddd HH:mm"},calendar:{sameDay:"[Bugun soat] LT [da]",nextDay:"[Ertaga] LT [da]",nextWeek:"dddd [kuni soat] LT [da]",lastDay:"[Kecha soat] LT [da]",lastWeek:"[O'tgan] dddd [kuni soat] LT [da]",sameElse:"L"},relativeTime:{future:"Yaqin %s ichida",past:"Bir necha %s oldin",s:"soniya",ss:"%d soniya",m:"bir daqiqa",mm:"%d daqiqa",h:"bir soat",hh:"%d soat",d:"bir kun",dd:"%d kun",M:"bir oy",MM:"%d oy",y:"bir yil",yy:"%d yil"},week:{dow:1,doy:7}});return t}))},"02fb":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e=t.defineLocale("uz-latn",{months:"Yanvar_Fevral_Mart_Aprel_May_Iyun_Iyul_Avgust_Sentabr_Oktabr_Noyabr_Dekabr".split("_"),monthsShort:"Yan_Fev_Mar_Apr_May_Iyun_Iyul_Avg_Sen_Okt_Noy_Dek".split("_"),weekdays:"Yakshanba_Dushanba_Seshanba_Chorshanba_Payshanba_Juma_Shanba".split("_"),weekdaysShort:"Yak_Dush_Sesh_Chor_Pay_Jum_Shan".split("_"),weekdaysMin:"Ya_Du_Se_Cho_Pa_Ju_Sha".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"D MMMM YYYY, dddd HH:mm"},calendar:{sameDay:"[Bugun soat] LT [da]",nextDay:"[Ertaga] LT [da]",nextWeek:"dddd [kuni soat] LT [da]",lastDay:"[Kecha soat] LT [da]",lastWeek:"[O'tgan] dddd [kuni soat] LT [da]",sameElse:"L"},relativeTime:{future:"Yaqin %s ichida",past:"Bir necha %s oldin",s:"soniya",ss:"%d soniya",m:"bir daqiqa",mm:"%d daqiqa",h:"bir soat",hh:"%d soat",d:"bir kun",dd:"%d kun",M:"bir oy",MM:"%d oy",y:"bir yil",yy:"%d yil"},week:{dow:1,doy:7}});return e}))},"02fb":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t=e.defineLocale("ml",{months:"ജനുവരി_ഫെബ്രുവരി_മാർച്ച്_ഏപ്രിൽ_മേയ്_ജൂൺ_ജൂലൈ_ഓഗസ്റ്റ്_സെപ്റ്റംബർ_ഒക്ടോബർ_നവംബർ_ഡിസംബർ".split("_"),monthsShort:"ജനു._ഫെബ്രു._മാർ._ഏപ്രി._മേയ്_ജൂൺ_ജൂലൈ._ഓഗ._സെപ്റ്റ._ഒക്ടോ._നവം._ഡിസം.".split("_"),monthsParseExact:!0,weekdays:"ഞായറാഴ്ച_തിങ്കളാഴ്ച_ചൊവ്വാഴ്ച_ബുധനാഴ്ച_വ്യാഴാഴ്ച_വെള്ളിയാഴ്ച_ശനിയാഴ്ച".split("_"),weekdaysShort:"ഞായർ_തിങ്കൾ_ചൊവ്വ_ബുധൻ_വ്യാഴം_വെള്ളി_ശനി".split("_"),weekdaysMin:"ഞാ_തി_ചൊ_ബു_വ്യാ_വെ_ശ".split("_"),longDateFormat:{LT:"A h:mm -നു",LTS:"A h:mm:ss -നു",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm -നു",LLLL:"dddd, D MMMM YYYY, A h:mm -നു"},calendar:{sameDay:"[ഇന്ന്] LT",nextDay:"[നാളെ] LT",nextWeek:"dddd, LT",lastDay:"[ഇന്നലെ] LT",lastWeek:"[കഴിഞ്ഞ] dddd, LT",sameElse:"L"},relativeTime:{future:"%s കഴിഞ്ഞ്",past:"%s മുൻപ്",s:"അൽപ നിമിഷങ്ങൾ",ss:"%d സെക്കൻഡ്",m:"ഒരു മിനിറ്റ്",mm:"%d മിനിറ്റ്",h:"ഒരു മണിക്കൂർ",hh:"%d മണിക്കൂർ",d:"ഒരു ദിവസം",dd:"%d ദിവസം",M:"ഒരു മാസം",MM:"%d മാസം",y:"ഒരു വർഷം",yy:"%d വർഷം"},meridiemParse:/രാത്രി|രാവിലെ|ഉച്ച കഴിഞ്ഞ്|വൈകുന്നേരം|രാത്രി/i,meridiemHour:function(e,t){return 12===e&&(e=0),"രാത്രി"===t&&e>=4||"ഉച്ച കഴിഞ്ഞ്"===t||"വൈകുന്നേരം"===t?e+12:e},meridiem:function(e,t,n){return e<4?"രാത്രി":e<12?"രാവിലെ":e<17?"ഉച്ച കഴിഞ്ഞ്":e<20?"വൈകുന്നേരം":"രാത്രി"}});return t}))},"0366":function(e,t,n){var i=n("1c0b");e.exports=function(e,t,n){if(i(e),void 0===t)return e;switch(n){case 0:return function(){return e.call(t)};case 1:return function(n){return e.call(t,n)};case 2:return function(n,i){return e.call(t,n,i)};case 3:return function(n,i,r){return e.call(t,n,i,r)}}return function(){return e.apply(t,arguments)}}},"03ec":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e=t.defineLocale("ml",{months:"ജനുവരി_ഫെബ്രുവരി_മാർച്ച്_ഏപ്രിൽ_മേയ്_ജൂൺ_ജൂലൈ_ഓഗസ്റ്റ്_സെപ്റ്റംബർ_ഒക്ടോബർ_നവംബർ_ഡിസംബർ".split("_"),monthsShort:"ജനു._ഫെബ്രു._മാർ._ഏപ്രി._മേയ്_ജൂൺ_ജൂലൈ._ഓഗ._സെപ്റ്റ._ഒക്ടോ._നവം._ഡിസം.".split("_"),monthsParseExact:!0,weekdays:"ഞായറാഴ്ച_തിങ്കളാഴ്ച_ചൊവ്വാഴ്ച_ബുധനാഴ്ച_വ്യാഴാഴ്ച_വെള്ളിയാഴ്ച_ശനിയാഴ്ച".split("_"),weekdaysShort:"ഞായർ_തിങ്കൾ_ചൊവ്വ_ബുധൻ_വ്യാഴം_വെള്ളി_ശനി".split("_"),weekdaysMin:"ഞാ_തി_ചൊ_ബു_വ്യാ_വെ_ശ".split("_"),longDateFormat:{LT:"A h:mm -നു",LTS:"A h:mm:ss -നു",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm -നു",LLLL:"dddd, D MMMM YYYY, A h:mm -നു"},calendar:{sameDay:"[ഇന്ന്] LT",nextDay:"[നാളെ] LT",nextWeek:"dddd, LT",lastDay:"[ഇന്നലെ] LT",lastWeek:"[കഴിഞ്ഞ] dddd, LT",sameElse:"L"},relativeTime:{future:"%s കഴിഞ്ഞ്",past:"%s മുൻപ്",s:"അൽപ നിമിഷങ്ങൾ",ss:"%d സെക്കൻഡ്",m:"ഒരു മിനിറ്റ്",mm:"%d മിനിറ്റ്",h:"ഒരു മണിക്കൂർ",hh:"%d മണിക്കൂർ",d:"ഒരു ദിവസം",dd:"%d ദിവസം",M:"ഒരു മാസം",MM:"%d മാസം",y:"ഒരു വർഷം",yy:"%d വർഷം"},meridiemParse:/രാത്രി|രാവിലെ|ഉച്ച കഴിഞ്ഞ്|വൈകുന്നേരം|രാത്രി/i,meridiemHour:function(t,e){return 12===t&&(t=0),"രാത്രി"===e&&t>=4||"ഉച്ച കഴിഞ്ഞ്"===e||"വൈകുന്നേരം"===e?t+12:t},meridiem:function(t,e,n){return t<4?"രാത്രി":t<12?"രാവിലെ":t<17?"ഉച്ച കഴിഞ്ഞ്":t<20?"വൈകുന്നേരം":"രാത്രി"}});return e}))},"0366":function(t,e,n){var r=n("1c0b");t.exports=function(t,e,n){if(r(t),void 0===e)return t;switch(n){case 0:return function(){return t.call(e)};case 1:return function(n){return t.call(e,n)};case 2:return function(n,r){return t.call(e,n,r)};case 3:return function(n,r,i){return t.call(e,n,r,i)}}return function(){return t.apply(e,arguments)}}},"03ec":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t=e.defineLocale("cv",{months:"кӑрлач_нарӑс_пуш_ака_май_ҫӗртме_утӑ_ҫурла_авӑн_юпа_чӳк_раштав".split("_"),monthsShort:"кӑр_нар_пуш_ака_май_ҫӗр_утӑ_ҫур_авн_юпа_чӳк_раш".split("_"),weekdays:"вырсарникун_тунтикун_ытларикун_юнкун_кӗҫнерникун_эрнекун_шӑматкун".split("_"),weekdaysShort:"выр_тун_ытл_юн_кӗҫ_эрн_шӑм".split("_"),weekdaysMin:"вр_тн_ыт_юн_кҫ_эр_шм".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD-MM-YYYY",LL:"YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ]",LLL:"YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ], HH:mm",LLLL:"dddd, YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ], HH:mm"},calendar:{sameDay:"[Паян] LT [сехетре]",nextDay:"[Ыран] LT [сехетре]",lastDay:"[Ӗнер] LT [сехетре]",nextWeek:"[Ҫитес] dddd LT [сехетре]",lastWeek:"[Иртнӗ] dddd LT [сехетре]",sameElse:"L"},relativeTime:{future:function(e){var t=/сехет$/i.exec(e)?"рен":/ҫул$/i.exec(e)?"тан":"ран";return e+t},past:"%s каялла",s:"пӗр-ик ҫеккунт",ss:"%d ҫеккунт",m:"пӗр минут",mm:"%d минут",h:"пӗр сехет",hh:"%d сехет",d:"пӗр кун",dd:"%d кун",M:"пӗр уйӑх",MM:"%d уйӑх",y:"пӗр ҫул",yy:"%d ҫул"},dayOfMonthOrdinalParse:/\d{1,2}-мӗш/,ordinal:"%d-мӗш",week:{dow:1,doy:7}});return t}))},"0558":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e=t.defineLocale("cv",{months:"кӑрлач_нарӑс_пуш_ака_май_ҫӗртме_утӑ_ҫурла_авӑн_юпа_чӳк_раштав".split("_"),monthsShort:"кӑр_нар_пуш_ака_май_ҫӗр_утӑ_ҫур_авн_юпа_чӳк_раш".split("_"),weekdays:"вырсарникун_тунтикун_ытларикун_юнкун_кӗҫнерникун_эрнекун_шӑматкун".split("_"),weekdaysShort:"выр_тун_ытл_юн_кӗҫ_эрн_шӑм".split("_"),weekdaysMin:"вр_тн_ыт_юн_кҫ_эр_шм".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD-MM-YYYY",LL:"YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ]",LLL:"YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ], HH:mm",LLLL:"dddd, YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ], HH:mm"},calendar:{sameDay:"[Паян] LT [сехетре]",nextDay:"[Ыран] LT [сехетре]",lastDay:"[Ӗнер] LT [сехетре]",nextWeek:"[Ҫитес] dddd LT [сехетре]",lastWeek:"[Иртнӗ] dddd LT [сехетре]",sameElse:"L"},relativeTime:{future:function(t){var e=/сехет$/i.exec(t)?"рен":/ҫул$/i.exec(t)?"тан":"ран";return t+e},past:"%s каялла",s:"пӗр-ик ҫеккунт",ss:"%d ҫеккунт",m:"пӗр минут",mm:"%d минут",h:"пӗр сехет",hh:"%d сехет",d:"пӗр кун",dd:"%d кун",M:"пӗр уйӑх",MM:"%d уйӑх",y:"пӗр ҫул",yy:"%d ҫул"},dayOfMonthOrdinalParse:/\d{1,2}-мӗш/,ordinal:"%d-мӗш",week:{dow:1,doy:7}});return e}))},"0558":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -function t(e){return e%100===11||e%10!==1}function n(e,n,i,r){var o=e+" ";switch(i){case"s":return n||r?"nokkrar sekúndur":"nokkrum sekúndum";case"ss":return t(e)?o+(n||r?"sekúndur":"sekúndum"):o+"sekúnda";case"m":return n?"mínúta":"mínútu";case"mm":return t(e)?o+(n||r?"mínútur":"mínútum"):n?o+"mínúta":o+"mínútu";case"hh":return t(e)?o+(n||r?"klukkustundir":"klukkustundum"):o+"klukkustund";case"d":return n?"dagur":r?"dag":"degi";case"dd":return t(e)?n?o+"dagar":o+(r?"daga":"dögum"):n?o+"dagur":o+(r?"dag":"degi");case"M":return n?"mánuður":r?"mánuð":"mánuði";case"MM":return t(e)?n?o+"mánuðir":o+(r?"mánuði":"mánuðum"):n?o+"mánuður":o+(r?"mánuð":"mánuði");case"y":return n||r?"ár":"ári";case"yy":return t(e)?o+(n||r?"ár":"árum"):o+(n||r?"ár":"ári")}}var i=e.defineLocale("is",{months:"janúar_febrúar_mars_apríl_maí_júní_júlí_ágúst_september_október_nóvember_desember".split("_"),monthsShort:"jan_feb_mar_apr_maí_jún_júl_ágú_sep_okt_nóv_des".split("_"),weekdays:"sunnudagur_mánudagur_þriðjudagur_miðvikudagur_fimmtudagur_föstudagur_laugardagur".split("_"),weekdaysShort:"sun_mán_þri_mið_fim_fös_lau".split("_"),weekdaysMin:"Su_Má_Þr_Mi_Fi_Fö_La".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY [kl.] H:mm",LLLL:"dddd, D. MMMM YYYY [kl.] H:mm"},calendar:{sameDay:"[í dag kl.] LT",nextDay:"[á morgun kl.] LT",nextWeek:"dddd [kl.] LT",lastDay:"[í gær kl.] LT",lastWeek:"[síðasta] dddd [kl.] LT",sameElse:"L"},relativeTime:{future:"eftir %s",past:"fyrir %s síðan",s:n,ss:n,m:n,mm:n,h:"klukkustund",hh:n,d:n,dd:n,M:n,MM:n,y:n,yy:n},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return i}))},"057f":function(e,t,n){var i=n("fc6a"),r=n("241c").f,o={}.toString,a="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[],s=function(e){try{return r(e)}catch(t){return a.slice()}};e.exports.f=function(e){return a&&"[object Window]"==o.call(e)?s(e):r(i(e))}},"06cf":function(e,t,n){var i=n("83ab"),r=n("d1e7"),o=n("5c6c"),a=n("fc6a"),s=n("c04e"),c=n("5135"),u=n("0cfb"),d=Object.getOwnPropertyDescriptor;t.f=i?d:function(e,t){if(e=a(e),t=s(t,!0),u)try{return d(e,t)}catch(n){}if(c(e,t))return o(!r.f.call(e,t),e[t])}},"0721":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +function e(t){return t%100===11||t%10!==1}function n(t,n,r,i){var a=t+" ";switch(r){case"s":return n||i?"nokkrar sekúndur":"nokkrum sekúndum";case"ss":return e(t)?a+(n||i?"sekúndur":"sekúndum"):a+"sekúnda";case"m":return n?"mínúta":"mínútu";case"mm":return e(t)?a+(n||i?"mínútur":"mínútum"):n?a+"mínúta":a+"mínútu";case"hh":return e(t)?a+(n||i?"klukkustundir":"klukkustundum"):a+"klukkustund";case"d":return n?"dagur":i?"dag":"degi";case"dd":return e(t)?n?a+"dagar":a+(i?"daga":"dögum"):n?a+"dagur":a+(i?"dag":"degi");case"M":return n?"mánuður":i?"mánuð":"mánuði";case"MM":return e(t)?n?a+"mánuðir":a+(i?"mánuði":"mánuðum"):n?a+"mánuður":a+(i?"mánuð":"mánuði");case"y":return n||i?"ár":"ári";case"yy":return e(t)?a+(n||i?"ár":"árum"):a+(n||i?"ár":"ári")}}var r=t.defineLocale("is",{months:"janúar_febrúar_mars_apríl_maí_júní_júlí_ágúst_september_október_nóvember_desember".split("_"),monthsShort:"jan_feb_mar_apr_maí_jún_júl_ágú_sep_okt_nóv_des".split("_"),weekdays:"sunnudagur_mánudagur_þriðjudagur_miðvikudagur_fimmtudagur_föstudagur_laugardagur".split("_"),weekdaysShort:"sun_mán_þri_mið_fim_fös_lau".split("_"),weekdaysMin:"Su_Má_Þr_Mi_Fi_Fö_La".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY [kl.] H:mm",LLLL:"dddd, D. MMMM YYYY [kl.] H:mm"},calendar:{sameDay:"[í dag kl.] LT",nextDay:"[á morgun kl.] LT",nextWeek:"dddd [kl.] LT",lastDay:"[í gær kl.] LT",lastWeek:"[síðasta] dddd [kl.] LT",sameElse:"L"},relativeTime:{future:"eftir %s",past:"fyrir %s síðan",s:n,ss:n,m:n,mm:n,h:"klukkustund",hh:n,d:n,dd:n,M:n,MM:n,y:n,yy:n},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return r}))},"057f":function(t,e,n){var r=n("fc6a"),i=n("241c").f,a={}.toString,o="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[],s=function(t){try{return i(t)}catch(e){return o.slice()}};t.exports.f=function(t){return o&&"[object Window]"==a.call(t)?s(t):i(r(t))}},"06cf":function(t,e,n){var r=n("83ab"),i=n("d1e7"),a=n("5c6c"),o=n("fc6a"),s=n("c04e"),c=n("5135"),u=n("0cfb"),l=Object.getOwnPropertyDescriptor;e.f=r?l:function(t,e){if(t=o(t),e=s(e,!0),u)try{return l(t,e)}catch(n){}if(c(t,e))return a(!i.f.call(t,e),t[e])}},"0721":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t=e.defineLocale("fo",{months:"januar_februar_mars_apríl_mai_juni_juli_august_september_oktober_november_desember".split("_"),monthsShort:"jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des".split("_"),weekdays:"sunnudagur_mánadagur_týsdagur_mikudagur_hósdagur_fríggjadagur_leygardagur".split("_"),weekdaysShort:"sun_mán_týs_mik_hós_frí_ley".split("_"),weekdaysMin:"su_má_tý_mi_hó_fr_le".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D. MMMM, YYYY HH:mm"},calendar:{sameDay:"[Í dag kl.] LT",nextDay:"[Í morgin kl.] LT",nextWeek:"dddd [kl.] LT",lastDay:"[Í gjár kl.] LT",lastWeek:"[síðstu] dddd [kl] LT",sameElse:"L"},relativeTime:{future:"um %s",past:"%s síðani",s:"fá sekund",ss:"%d sekundir",m:"ein minuttur",mm:"%d minuttir",h:"ein tími",hh:"%d tímar",d:"ein dagur",dd:"%d dagar",M:"ein mánaður",MM:"%d mánaðir",y:"eitt ár",yy:"%d ár"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return t}))},"079e":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e=t.defineLocale("fo",{months:"januar_februar_mars_apríl_mai_juni_juli_august_september_oktober_november_desember".split("_"),monthsShort:"jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des".split("_"),weekdays:"sunnudagur_mánadagur_týsdagur_mikudagur_hósdagur_fríggjadagur_leygardagur".split("_"),weekdaysShort:"sun_mán_týs_mik_hós_frí_ley".split("_"),weekdaysMin:"su_má_tý_mi_hó_fr_le".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D. MMMM, YYYY HH:mm"},calendar:{sameDay:"[Í dag kl.] LT",nextDay:"[Í morgin kl.] LT",nextWeek:"dddd [kl.] LT",lastDay:"[Í gjár kl.] LT",lastWeek:"[síðstu] dddd [kl] LT",sameElse:"L"},relativeTime:{future:"um %s",past:"%s síðani",s:"fá sekund",ss:"%d sekundir",m:"ein minuttur",mm:"%d minuttir",h:"ein tími",hh:"%d tímar",d:"ein dagur",dd:"%d dagar",M:"ein mánaður",MM:"%d mánaðir",y:"eitt ár",yy:"%d ár"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return e}))},"079e":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t=e.defineLocale("ja",{eras:[{since:"2019-05-01",offset:1,name:"令和",narrow:"㋿",abbr:"R"},{since:"1989-01-08",until:"2019-04-30",offset:1,name:"平成",narrow:"㍻",abbr:"H"},{since:"1926-12-25",until:"1989-01-07",offset:1,name:"昭和",narrow:"㍼",abbr:"S"},{since:"1912-07-30",until:"1926-12-24",offset:1,name:"大正",narrow:"㍽",abbr:"T"},{since:"1873-01-01",until:"1912-07-29",offset:6,name:"明治",narrow:"㍾",abbr:"M"},{since:"0001-01-01",until:"1873-12-31",offset:1,name:"西暦",narrow:"AD",abbr:"AD"},{since:"0000-12-31",until:-1/0,offset:1,name:"紀元前",narrow:"BC",abbr:"BC"}],eraYearOrdinalRegex:/(元|\d+)年/,eraYearOrdinalParse:function(e,t){return"元"===t[1]?1:parseInt(t[1]||e,10)},months:"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),monthsShort:"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),weekdays:"日曜日_月曜日_火曜日_水曜日_木曜日_金曜日_土曜日".split("_"),weekdaysShort:"日_月_火_水_木_金_土".split("_"),weekdaysMin:"日_月_火_水_木_金_土".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY/MM/DD",LL:"YYYY年M月D日",LLL:"YYYY年M月D日 HH:mm",LLLL:"YYYY年M月D日 dddd HH:mm",l:"YYYY/MM/DD",ll:"YYYY年M月D日",lll:"YYYY年M月D日 HH:mm",llll:"YYYY年M月D日(ddd) HH:mm"},meridiemParse:/午前|午後/i,isPM:function(e){return"午後"===e},meridiem:function(e,t,n){return e<12?"午前":"午後"},calendar:{sameDay:"[今日] LT",nextDay:"[明日] LT",nextWeek:function(e){return e.week()!==this.week()?"[来週]dddd LT":"dddd LT"},lastDay:"[昨日] LT",lastWeek:function(e){return this.week()!==e.week()?"[先週]dddd LT":"dddd LT"},sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}日/,ordinal:function(e,t){switch(t){case"y":return 1===e?"元年":e+"年";case"d":case"D":case"DDD":return e+"日";default:return e}},relativeTime:{future:"%s後",past:"%s前",s:"数秒",ss:"%d秒",m:"1分",mm:"%d分",h:"1時間",hh:"%d時間",d:"1日",dd:"%d日",M:"1ヶ月",MM:"%dヶ月",y:"1年",yy:"%d年"}});return t}))},"0a06":function(e,t,n){"use strict";var i=n("c532"),r=n("30b5"),o=n("f6b49"),a=n("5270"),s=n("4a7b");function c(e){this.defaults=e,this.interceptors={request:new o,response:new o}}c.prototype.request=function(e){"string"===typeof e?(e=arguments[1]||{},e.url=arguments[0]):e=e||{},e=s(this.defaults,e),e.method?e.method=e.method.toLowerCase():this.defaults.method?e.method=this.defaults.method.toLowerCase():e.method="get";var t=[a,void 0],n=Promise.resolve(e);this.interceptors.request.forEach((function(e){t.unshift(e.fulfilled,e.rejected)})),this.interceptors.response.forEach((function(e){t.push(e.fulfilled,e.rejected)}));while(t.length)n=n.then(t.shift(),t.shift());return n},c.prototype.getUri=function(e){return e=s(this.defaults,e),r(e.url,e.params,e.paramsSerializer).replace(/^\?/,"")},i.forEach(["delete","get","head","options"],(function(e){c.prototype[e]=function(t,n){return this.request(s(n||{},{method:e,url:t,data:(n||{}).data}))}})),i.forEach(["post","put","patch"],(function(e){c.prototype[e]=function(t,n,i){return this.request(s(i||{},{method:e,url:t,data:n}))}})),e.exports=c},"0a3c":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e=t.defineLocale("ja",{eras:[{since:"2019-05-01",offset:1,name:"令和",narrow:"㋿",abbr:"R"},{since:"1989-01-08",until:"2019-04-30",offset:1,name:"平成",narrow:"㍻",abbr:"H"},{since:"1926-12-25",until:"1989-01-07",offset:1,name:"昭和",narrow:"㍼",abbr:"S"},{since:"1912-07-30",until:"1926-12-24",offset:1,name:"大正",narrow:"㍽",abbr:"T"},{since:"1873-01-01",until:"1912-07-29",offset:6,name:"明治",narrow:"㍾",abbr:"M"},{since:"0001-01-01",until:"1873-12-31",offset:1,name:"西暦",narrow:"AD",abbr:"AD"},{since:"0000-12-31",until:-1/0,offset:1,name:"紀元前",narrow:"BC",abbr:"BC"}],eraYearOrdinalRegex:/(元|\d+)年/,eraYearOrdinalParse:function(t,e){return"元"===e[1]?1:parseInt(e[1]||t,10)},months:"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),monthsShort:"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),weekdays:"日曜日_月曜日_火曜日_水曜日_木曜日_金曜日_土曜日".split("_"),weekdaysShort:"日_月_火_水_木_金_土".split("_"),weekdaysMin:"日_月_火_水_木_金_土".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY/MM/DD",LL:"YYYY年M月D日",LLL:"YYYY年M月D日 HH:mm",LLLL:"YYYY年M月D日 dddd HH:mm",l:"YYYY/MM/DD",ll:"YYYY年M月D日",lll:"YYYY年M月D日 HH:mm",llll:"YYYY年M月D日(ddd) HH:mm"},meridiemParse:/午前|午後/i,isPM:function(t){return"午後"===t},meridiem:function(t,e,n){return t<12?"午前":"午後"},calendar:{sameDay:"[今日] LT",nextDay:"[明日] LT",nextWeek:function(t){return t.week()!==this.week()?"[来週]dddd LT":"dddd LT"},lastDay:"[昨日] LT",lastWeek:function(t){return this.week()!==t.week()?"[先週]dddd LT":"dddd LT"},sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}日/,ordinal:function(t,e){switch(e){case"y":return 1===t?"元年":t+"年";case"d":case"D":case"DDD":return t+"日";default:return t}},relativeTime:{future:"%s後",past:"%s前",s:"数秒",ss:"%d秒",m:"1分",mm:"%d分",h:"1時間",hh:"%d時間",d:"1日",dd:"%d日",M:"1ヶ月",MM:"%dヶ月",y:"1年",yy:"%d年"}});return e}))},"0a06":function(t,e,n){"use strict";var r=n("c532"),i=n("30b5"),a=n("f6b49"),o=n("5270"),s=n("4a7b");function c(t){this.defaults=t,this.interceptors={request:new a,response:new a}}c.prototype.request=function(t){"string"===typeof t?(t=arguments[1]||{},t.url=arguments[0]):t=t||{},t=s(this.defaults,t),t.method?t.method=t.method.toLowerCase():this.defaults.method?t.method=this.defaults.method.toLowerCase():t.method="get";var e=[o,void 0],n=Promise.resolve(t);this.interceptors.request.forEach((function(t){e.unshift(t.fulfilled,t.rejected)})),this.interceptors.response.forEach((function(t){e.push(t.fulfilled,t.rejected)}));while(e.length)n=n.then(e.shift(),e.shift());return n},c.prototype.getUri=function(t){return t=s(this.defaults,t),i(t.url,t.params,t.paramsSerializer).replace(/^\?/,"")},r.forEach(["delete","get","head","options"],(function(t){c.prototype[t]=function(e,n){return this.request(s(n||{},{method:t,url:e,data:(n||{}).data}))}})),r.forEach(["post","put","patch"],(function(t){c.prototype[t]=function(e,n,r){return this.request(s(r||{},{method:t,url:e,data:n}))}})),t.exports=c},"0a3c":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),n="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),i=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],r=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,o=e.defineLocale("es-do",{months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(e,i){return e?/-MMM-/.test(i)?n[e.month()]:t[e.month()]:t},monthsRegex:r,monthsShortRegex:r,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,monthsParse:i,longMonthsParse:i,shortMonthsParse:i,weekdays:"domingo_lunes_martes_miércoles_jueves_viernes_sábado".split("_"),weekdaysShort:"dom._lun._mar._mié._jue._vie._sáb.".split("_"),weekdaysMin:"do_lu_ma_mi_ju_vi_sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY h:mm A",LLLL:"dddd, D [de] MMMM [de] YYYY h:mm A"},calendar:{sameDay:function(){return"[hoy a la"+(1!==this.hours()?"s":"")+"] LT"},nextDay:function(){return"[mañana a la"+(1!==this.hours()?"s":"")+"] LT"},nextWeek:function(){return"dddd [a la"+(1!==this.hours()?"s":"")+"] LT"},lastDay:function(){return"[ayer a la"+(1!==this.hours()?"s":"")+"] LT"},lastWeek:function(){return"[el] dddd [pasado a la"+(1!==this.hours()?"s":"")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"hace %s",s:"unos segundos",ss:"%d segundos",m:"un minuto",mm:"%d minutos",h:"una hora",hh:"%d horas",d:"un día",dd:"%d días",w:"una semana",ww:"%d semanas",M:"un mes",MM:"%d meses",y:"un año",yy:"%d años"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}});return o}))},"0a84":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),n="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),r=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],i=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,a=t.defineLocale("es-do",{months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(t,r){return t?/-MMM-/.test(r)?n[t.month()]:e[t.month()]:e},monthsRegex:i,monthsShortRegex:i,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,monthsParse:r,longMonthsParse:r,shortMonthsParse:r,weekdays:"domingo_lunes_martes_miércoles_jueves_viernes_sábado".split("_"),weekdaysShort:"dom._lun._mar._mié._jue._vie._sáb.".split("_"),weekdaysMin:"do_lu_ma_mi_ju_vi_sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY h:mm A",LLLL:"dddd, D [de] MMMM [de] YYYY h:mm A"},calendar:{sameDay:function(){return"[hoy a la"+(1!==this.hours()?"s":"")+"] LT"},nextDay:function(){return"[mañana a la"+(1!==this.hours()?"s":"")+"] LT"},nextWeek:function(){return"dddd [a la"+(1!==this.hours()?"s":"")+"] LT"},lastDay:function(){return"[ayer a la"+(1!==this.hours()?"s":"")+"] LT"},lastWeek:function(){return"[el] dddd [pasado a la"+(1!==this.hours()?"s":"")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"hace %s",s:"unos segundos",ss:"%d segundos",m:"un minuto",mm:"%d minutos",h:"una hora",hh:"%d horas",d:"un día",dd:"%d días",w:"una semana",ww:"%d semanas",M:"un mes",MM:"%d meses",y:"un año",yy:"%d años"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}});return a}))},"0a84":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t=e.defineLocale("ar-ma",{months:"يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر".split("_"),monthsShort:"يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر".split("_"),weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"احد_اثنين_ثلاثاء_اربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[اليوم على الساعة] LT",nextDay:"[غدا على الساعة] LT",nextWeek:"dddd [على الساعة] LT",lastDay:"[أمس على الساعة] LT",lastWeek:"dddd [على الساعة] LT",sameElse:"L"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",ss:"%d ثانية",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"},week:{dow:1,doy:4}});return t}))},"0b4b":function(e,t,n){},"0caa":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e=t.defineLocale("ar-ma",{months:"يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر".split("_"),monthsShort:"يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر".split("_"),weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"احد_اثنين_ثلاثاء_اربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[اليوم على الساعة] LT",nextDay:"[غدا على الساعة] LT",nextWeek:"dddd [على الساعة] LT",lastDay:"[أمس على الساعة] LT",lastWeek:"dddd [على الساعة] LT",sameElse:"L"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",ss:"%d ثانية",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"},week:{dow:1,doy:4}});return e}))},"0b4b":function(t,e,n){},"0caa":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -function t(e,t,n,i){var r={s:["thoddea sekondamni","thodde sekond"],ss:[e+" sekondamni",e+" sekond"],m:["eka mintan","ek minut"],mm:[e+" mintamni",e+" mintam"],h:["eka voran","ek vor"],hh:[e+" voramni",e+" voram"],d:["eka disan","ek dis"],dd:[e+" disamni",e+" dis"],M:["eka mhoinean","ek mhoino"],MM:[e+" mhoineamni",e+" mhoine"],y:["eka vorsan","ek voros"],yy:[e+" vorsamni",e+" vorsam"]};return i?r[n][0]:r[n][1]}var n=e.defineLocale("gom-latn",{months:{standalone:"Janer_Febrer_Mars_Abril_Mai_Jun_Julai_Agost_Setembr_Otubr_Novembr_Dezembr".split("_"),format:"Janerachea_Febrerachea_Marsachea_Abrilachea_Maiachea_Junachea_Julaiachea_Agostachea_Setembrachea_Otubrachea_Novembrachea_Dezembrachea".split("_"),isFormat:/MMMM(\s)+D[oD]?/},monthsShort:"Jan._Feb._Mars_Abr._Mai_Jun_Jul._Ago._Set._Otu._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Aitar_Somar_Mongllar_Budhvar_Birestar_Sukrar_Son'var".split("_"),weekdaysShort:"Ait._Som._Mon._Bud._Bre._Suk._Son.".split("_"),weekdaysMin:"Ai_Sm_Mo_Bu_Br_Su_Sn".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"A h:mm [vazta]",LTS:"A h:mm:ss [vazta]",L:"DD-MM-YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY A h:mm [vazta]",LLLL:"dddd, MMMM Do, YYYY, A h:mm [vazta]",llll:"ddd, D MMM YYYY, A h:mm [vazta]"},calendar:{sameDay:"[Aiz] LT",nextDay:"[Faleam] LT",nextWeek:"[Fuddlo] dddd[,] LT",lastDay:"[Kal] LT",lastWeek:"[Fattlo] dddd[,] LT",sameElse:"L"},relativeTime:{future:"%s",past:"%s adim",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\d{1,2}(er)/,ordinal:function(e,t){switch(t){case"D":return e+"er";default:case"M":case"Q":case"DDD":case"d":case"w":case"W":return e}},week:{dow:0,doy:3},meridiemParse:/rati|sokallim|donparam|sanje/,meridiemHour:function(e,t){return 12===e&&(e=0),"rati"===t?e<4?e:e+12:"sokallim"===t?e:"donparam"===t?e>12?e:e+12:"sanje"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?"rati":e<12?"sokallim":e<16?"donparam":e<20?"sanje":"rati"}});return n}))},"0cb2":function(e,t,n){var i=n("7b0b"),r=Math.floor,o="".replace,a=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,s=/\$([$&'`]|\d{1,2})/g;e.exports=function(e,t,n,c,u,d){var l=n+e.length,f=c.length,p=s;return void 0!==u&&(u=i(u),p=a),o.call(d,p,(function(i,o){var a;switch(o.charAt(0)){case"$":return"$";case"&":return e;case"`":return t.slice(0,n);case"'":return t.slice(l);case"<":a=u[o.slice(1,-1)];break;default:var s=+o;if(0===s)return i;if(s>f){var d=r(s/10);return 0===d?i:d<=f?void 0===c[d-1]?o.charAt(1):c[d-1]+o.charAt(1):i}a=c[s-1]}return void 0===a?"":a}))}},"0cfb":function(e,t,n){var i=n("83ab"),r=n("d039"),o=n("cc12");e.exports=!i&&!r((function(){return 7!=Object.defineProperty(o("div"),"a",{get:function(){return 7}}).a}))},"0d08":function(e){e.exports=JSON.parse('[{"group":0,"description":"😀"},{"group":1,"description":"👍️"},{"group":2,"description":"🦲"},{"group":3,"description":"🐶"},{"group":4,"description":"🍉"},{"group":5,"description":"🏠️"},{"group":6,"description":"🎁"},{"group":7,"description":"🎶"},{"group":8,"description":"🔝"},{"group":9,"description":"🏁"}]')},"0d3b":function(e,t,n){var i=n("d039"),r=n("b622"),o=n("c430"),a=r("iterator");e.exports=!i((function(){var e=new URL("b?a=1&b=2&c=3","http://a"),t=e.searchParams,n="";return e.pathname="c%20d",t.forEach((function(e,i){t["delete"]("b"),n+=i+e})),o&&!e.toJSON||!t.sort||"http://a/c%20d?a=1&c=3"!==e.href||"3"!==t.get("c")||"a=1"!==String(new URLSearchParams("?a=1"))||!t[a]||"a"!==new URL("https://a@b").username||"b"!==new URLSearchParams(new URLSearchParams("a=b")).get("a")||"xn--e1aybc"!==new URL("http://тест").host||"#%D0%B1"!==new URL("http://a#б").hash||"a1c3"!==n||"x"!==new URL("http://x",void 0).host}))},"0df6":function(e,t,n){"use strict";e.exports=function(e){return function(t){return e.apply(null,t)}}},"0e49":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +function e(t,e,n,r){var i={s:["thoddea sekondamni","thodde sekond"],ss:[t+" sekondamni",t+" sekond"],m:["eka mintan","ek minut"],mm:[t+" mintamni",t+" mintam"],h:["eka voran","ek vor"],hh:[t+" voramni",t+" voram"],d:["eka disan","ek dis"],dd:[t+" disamni",t+" dis"],M:["eka mhoinean","ek mhoino"],MM:[t+" mhoineamni",t+" mhoine"],y:["eka vorsan","ek voros"],yy:[t+" vorsamni",t+" vorsam"]};return r?i[n][0]:i[n][1]}var n=t.defineLocale("gom-latn",{months:{standalone:"Janer_Febrer_Mars_Abril_Mai_Jun_Julai_Agost_Setembr_Otubr_Novembr_Dezembr".split("_"),format:"Janerachea_Febrerachea_Marsachea_Abrilachea_Maiachea_Junachea_Julaiachea_Agostachea_Setembrachea_Otubrachea_Novembrachea_Dezembrachea".split("_"),isFormat:/MMMM(\s)+D[oD]?/},monthsShort:"Jan._Feb._Mars_Abr._Mai_Jun_Jul._Ago._Set._Otu._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Aitar_Somar_Mongllar_Budhvar_Birestar_Sukrar_Son'var".split("_"),weekdaysShort:"Ait._Som._Mon._Bud._Bre._Suk._Son.".split("_"),weekdaysMin:"Ai_Sm_Mo_Bu_Br_Su_Sn".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"A h:mm [vazta]",LTS:"A h:mm:ss [vazta]",L:"DD-MM-YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY A h:mm [vazta]",LLLL:"dddd, MMMM Do, YYYY, A h:mm [vazta]",llll:"ddd, D MMM YYYY, A h:mm [vazta]"},calendar:{sameDay:"[Aiz] LT",nextDay:"[Faleam] LT",nextWeek:"[Fuddlo] dddd[,] LT",lastDay:"[Kal] LT",lastWeek:"[Fattlo] dddd[,] LT",sameElse:"L"},relativeTime:{future:"%s",past:"%s adim",s:e,ss:e,m:e,mm:e,h:e,hh:e,d:e,dd:e,M:e,MM:e,y:e,yy:e},dayOfMonthOrdinalParse:/\d{1,2}(er)/,ordinal:function(t,e){switch(e){case"D":return t+"er";default:case"M":case"Q":case"DDD":case"d":case"w":case"W":return t}},week:{dow:0,doy:3},meridiemParse:/rati|sokallim|donparam|sanje/,meridiemHour:function(t,e){return 12===t&&(t=0),"rati"===e?t<4?t:t+12:"sokallim"===e?t:"donparam"===e?t>12?t:t+12:"sanje"===e?t+12:void 0},meridiem:function(t,e,n){return t<4?"rati":t<12?"sokallim":t<16?"donparam":t<20?"sanje":"rati"}});return n}))},"0cb2":function(t,e,n){var r=n("7b0b"),i=Math.floor,a="".replace,o=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,s=/\$([$&'`]|\d{1,2})/g;t.exports=function(t,e,n,c,u,l){var d=n+t.length,f=c.length,h=s;return void 0!==u&&(u=r(u),h=o),a.call(l,h,(function(r,a){var o;switch(a.charAt(0)){case"$":return"$";case"&":return t;case"`":return e.slice(0,n);case"'":return e.slice(d);case"<":o=u[a.slice(1,-1)];break;default:var s=+a;if(0===s)return r;if(s>f){var l=i(s/10);return 0===l?r:l<=f?void 0===c[l-1]?a.charAt(1):c[l-1]+a.charAt(1):r}o=c[s-1]}return void 0===o?"":o}))}},"0cfb":function(t,e,n){var r=n("83ab"),i=n("d039"),a=n("cc12");t.exports=!r&&!i((function(){return 7!=Object.defineProperty(a("div"),"a",{get:function(){return 7}}).a}))},"0d3b":function(t,e,n){var r=n("d039"),i=n("b622"),a=n("c430"),o=i("iterator");t.exports=!r((function(){var t=new URL("b?a=1&b=2&c=3","http://a"),e=t.searchParams,n="";return t.pathname="c%20d",e.forEach((function(t,r){e["delete"]("b"),n+=r+t})),a&&!t.toJSON||!e.sort||"http://a/c%20d?a=1&c=3"!==t.href||"3"!==e.get("c")||"a=1"!==String(new URLSearchParams("?a=1"))||!e[o]||"a"!==new URL("https://a@b").username||"b"!==new URLSearchParams(new URLSearchParams("a=b")).get("a")||"xn--e1aybc"!==new URL("http://тест").host||"#%D0%B1"!==new URL("http://a#б").hash||"a1c3"!==n||"x"!==new URL("http://x",void 0).host}))},"0df6":function(t,e,n){"use strict";t.exports=function(t){return function(e){return t.apply(null,e)}}},"0e49":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t=e.defineLocale("fr-ch",{months:"janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre".split("_"),monthsShort:"janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.".split("_"),monthsParseExact:!0,weekdays:"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"),weekdaysShort:"dim._lun._mar._mer._jeu._ven._sam.".split("_"),weekdaysMin:"di_lu_ma_me_je_ve_sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Aujourd’hui à] LT",nextDay:"[Demain à] LT",nextWeek:"dddd [à] LT",lastDay:"[Hier à] LT",lastWeek:"dddd [dernier à] LT",sameElse:"L"},relativeTime:{future:"dans %s",past:"il y a %s",s:"quelques secondes",ss:"%d secondes",m:"une minute",mm:"%d minutes",h:"une heure",hh:"%d heures",d:"un jour",dd:"%d jours",M:"un mois",MM:"%d mois",y:"un an",yy:"%d ans"},dayOfMonthOrdinalParse:/\d{1,2}(er|e)/,ordinal:function(e,t){switch(t){default:case"M":case"Q":case"D":case"DDD":case"d":return e+(1===e?"er":"e");case"w":case"W":return e+(1===e?"re":"e")}},week:{dow:1,doy:4}});return t}))},"0e6b":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e=t.defineLocale("fr-ch",{months:"janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre".split("_"),monthsShort:"janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.".split("_"),monthsParseExact:!0,weekdays:"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"),weekdaysShort:"dim._lun._mar._mer._jeu._ven._sam.".split("_"),weekdaysMin:"di_lu_ma_me_je_ve_sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Aujourd’hui à] LT",nextDay:"[Demain à] LT",nextWeek:"dddd [à] LT",lastDay:"[Hier à] LT",lastWeek:"dddd [dernier à] LT",sameElse:"L"},relativeTime:{future:"dans %s",past:"il y a %s",s:"quelques secondes",ss:"%d secondes",m:"une minute",mm:"%d minutes",h:"une heure",hh:"%d heures",d:"un jour",dd:"%d jours",M:"un mois",MM:"%d mois",y:"un an",yy:"%d ans"},dayOfMonthOrdinalParse:/\d{1,2}(er|e)/,ordinal:function(t,e){switch(e){default:case"M":case"Q":case"D":case"DDD":case"d":return t+(1===t?"er":"e");case"w":case"W":return t+(1===t?"re":"e")}},week:{dow:1,doy:4}});return e}))},"0e6b":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t=e.defineLocale("en-au",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10,n=1===~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th";return e+n},week:{dow:0,doy:4}});return t}))},"0e81":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e=t.defineLocale("en-au",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(t){var e=t%10,n=1===~~(t%100/10)?"th":1===e?"st":2===e?"nd":3===e?"rd":"th";return t+n},week:{dow:0,doy:4}});return e}))},"0e81":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t={1:"'inci",5:"'inci",8:"'inci",70:"'inci",80:"'inci",2:"'nci",7:"'nci",20:"'nci",50:"'nci",3:"'üncü",4:"'üncü",100:"'üncü",6:"'ncı",9:"'uncu",10:"'uncu",30:"'uncu",60:"'ıncı",90:"'ıncı"},n=e.defineLocale("tr",{months:"Ocak_Şubat_Mart_Nisan_Mayıs_Haziran_Temmuz_Ağustos_Eylül_Ekim_Kasım_Aralık".split("_"),monthsShort:"Oca_Şub_Mar_Nis_May_Haz_Tem_Ağu_Eyl_Eki_Kas_Ara".split("_"),weekdays:"Pazar_Pazartesi_Salı_Çarşamba_Perşembe_Cuma_Cumartesi".split("_"),weekdaysShort:"Paz_Pts_Sal_Çar_Per_Cum_Cts".split("_"),weekdaysMin:"Pz_Pt_Sa_Ça_Pe_Cu_Ct".split("_"),meridiem:function(e,t,n){return e<12?n?"öö":"ÖÖ":n?"ös":"ÖS"},meridiemParse:/öö|ÖÖ|ös|ÖS/,isPM:function(e){return"ös"===e||"ÖS"===e},longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[bugün saat] LT",nextDay:"[yarın saat] LT",nextWeek:"[gelecek] dddd [saat] LT",lastDay:"[dün] LT",lastWeek:"[geçen] dddd [saat] LT",sameElse:"L"},relativeTime:{future:"%s sonra",past:"%s önce",s:"birkaç saniye",ss:"%d saniye",m:"bir dakika",mm:"%d dakika",h:"bir saat",hh:"%d saat",d:"bir gün",dd:"%d gün",w:"bir hafta",ww:"%d hafta",M:"bir ay",MM:"%d ay",y:"bir yıl",yy:"%d yıl"},ordinal:function(e,n){switch(n){case"d":case"D":case"Do":case"DD":return e;default:if(0===e)return e+"'ıncı";var i=e%10,r=e%100-i,o=e>=100?100:null;return e+(t[i]||t[r]||t[o])}},week:{dow:1,doy:7}});return n}))},"0f14":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e={1:"'inci",5:"'inci",8:"'inci",70:"'inci",80:"'inci",2:"'nci",7:"'nci",20:"'nci",50:"'nci",3:"'üncü",4:"'üncü",100:"'üncü",6:"'ncı",9:"'uncu",10:"'uncu",30:"'uncu",60:"'ıncı",90:"'ıncı"},n=t.defineLocale("tr",{months:"Ocak_Şubat_Mart_Nisan_Mayıs_Haziran_Temmuz_Ağustos_Eylül_Ekim_Kasım_Aralık".split("_"),monthsShort:"Oca_Şub_Mar_Nis_May_Haz_Tem_Ağu_Eyl_Eki_Kas_Ara".split("_"),weekdays:"Pazar_Pazartesi_Salı_Çarşamba_Perşembe_Cuma_Cumartesi".split("_"),weekdaysShort:"Paz_Pts_Sal_Çar_Per_Cum_Cts".split("_"),weekdaysMin:"Pz_Pt_Sa_Ça_Pe_Cu_Ct".split("_"),meridiem:function(t,e,n){return t<12?n?"öö":"ÖÖ":n?"ös":"ÖS"},meridiemParse:/öö|ÖÖ|ös|ÖS/,isPM:function(t){return"ös"===t||"ÖS"===t},longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[bugün saat] LT",nextDay:"[yarın saat] LT",nextWeek:"[gelecek] dddd [saat] LT",lastDay:"[dün] LT",lastWeek:"[geçen] dddd [saat] LT",sameElse:"L"},relativeTime:{future:"%s sonra",past:"%s önce",s:"birkaç saniye",ss:"%d saniye",m:"bir dakika",mm:"%d dakika",h:"bir saat",hh:"%d saat",d:"bir gün",dd:"%d gün",w:"bir hafta",ww:"%d hafta",M:"bir ay",MM:"%d ay",y:"bir yıl",yy:"%d yıl"},ordinal:function(t,n){switch(n){case"d":case"D":case"Do":case"DD":return t;default:if(0===t)return t+"'ıncı";var r=t%10,i=t%100-r,a=t>=100?100:null;return t+(e[r]||e[i]||e[a])}},week:{dow:1,doy:7}});return n}))},"0f14":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t=e.defineLocale("da",{months:"januar_februar_marts_april_maj_juni_juli_august_september_oktober_november_december".split("_"),monthsShort:"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec".split("_"),weekdays:"søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag".split("_"),weekdaysShort:"søn_man_tir_ons_tor_fre_lør".split("_"),weekdaysMin:"sø_ma_ti_on_to_fr_lø".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd [d.] D. MMMM YYYY [kl.] HH:mm"},calendar:{sameDay:"[i dag kl.] LT",nextDay:"[i morgen kl.] LT",nextWeek:"på dddd [kl.] LT",lastDay:"[i går kl.] LT",lastWeek:"[i] dddd[s kl.] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"%s siden",s:"få sekunder",ss:"%d sekunder",m:"et minut",mm:"%d minutter",h:"en time",hh:"%d timer",d:"en dag",dd:"%d dage",M:"en måned",MM:"%d måneder",y:"et år",yy:"%d år"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return t}))},"0f38":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e=t.defineLocale("da",{months:"januar_februar_marts_april_maj_juni_juli_august_september_oktober_november_december".split("_"),monthsShort:"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec".split("_"),weekdays:"søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag".split("_"),weekdaysShort:"søn_man_tir_ons_tor_fre_lør".split("_"),weekdaysMin:"sø_ma_ti_on_to_fr_lø".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd [d.] D. MMMM YYYY [kl.] HH:mm"},calendar:{sameDay:"[i dag kl.] LT",nextDay:"[i morgen kl.] LT",nextWeek:"på dddd [kl.] LT",lastDay:"[i går kl.] LT",lastWeek:"[i] dddd[s kl.] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"%s siden",s:"få sekunder",ss:"%d sekunder",m:"et minut",mm:"%d minutter",h:"en time",hh:"%d timer",d:"en dag",dd:"%d dage",M:"en måned",MM:"%d måneder",y:"et år",yy:"%d år"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return e}))},"0f38":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t=e.defineLocale("tl-ph",{months:"Enero_Pebrero_Marso_Abril_Mayo_Hunyo_Hulyo_Agosto_Setyembre_Oktubre_Nobyembre_Disyembre".split("_"),monthsShort:"Ene_Peb_Mar_Abr_May_Hun_Hul_Ago_Set_Okt_Nob_Dis".split("_"),weekdays:"Linggo_Lunes_Martes_Miyerkules_Huwebes_Biyernes_Sabado".split("_"),weekdaysShort:"Lin_Lun_Mar_Miy_Huw_Biy_Sab".split("_"),weekdaysMin:"Li_Lu_Ma_Mi_Hu_Bi_Sab".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"MM/D/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY HH:mm",LLLL:"dddd, MMMM DD, YYYY HH:mm"},calendar:{sameDay:"LT [ngayong araw]",nextDay:"[Bukas ng] LT",nextWeek:"LT [sa susunod na] dddd",lastDay:"LT [kahapon]",lastWeek:"LT [noong nakaraang] dddd",sameElse:"L"},relativeTime:{future:"sa loob ng %s",past:"%s ang nakalipas",s:"ilang segundo",ss:"%d segundo",m:"isang minuto",mm:"%d minuto",h:"isang oras",hh:"%d oras",d:"isang araw",dd:"%d araw",M:"isang buwan",MM:"%d buwan",y:"isang taon",yy:"%d taon"},dayOfMonthOrdinalParse:/\d{1,2}/,ordinal:function(e){return e},week:{dow:1,doy:4}});return t}))},"0f65":function(e,t,n){"use strict";n.d(t,"a",(function(){return b}));var i=n("2b88"),r=n("a026"),o=n("c637"),a=n("0056"),s=n("a723"),c=n("906c"),u=n("6b77"),d=n("cf75"),l=n("686b"),f=n("602d"),p=n("8c18"),h=r["default"].extend({mixins:[p["a"]],data:function(){return{name:"b-toaster"}},methods:{onAfterEnter:function(e){var t=this;Object(c["D"])((function(){Object(c["A"])(e,"".concat(t.name,"-enter-to"))}))}},render:function(e){return e("transition-group",{props:{tag:"div",name:this.name},on:{afterEnter:this.onAfterEnter}},this.normalizeSlot())}}),m=Object(d["d"])({ariaAtomic:Object(d["c"])(s["u"]),ariaLive:Object(d["c"])(s["u"]),name:Object(d["c"])(s["u"],void 0,!0),role:Object(d["c"])(s["u"])},o["qc"]),b=r["default"].extend({name:o["qc"],mixins:[f["a"]],props:m,data:function(){return{doRender:!1,dead:!1,staticName:this.name}},beforeMount:function(){var e=this,t=this.name;this.staticName=t,i["Wormhole"].hasTarget(t)?(Object(l["a"])('A "" with name "'.concat(t,'" already exists in the document.'),o["qc"]),this.dead=!0):(this.doRender=!0,this.$once(a["eb"],(function(){e.emitOnRoot(Object(u["e"])(o["qc"],a["j"]),t)})))},destroyed:function(){var e=this.$el;e&&e.parentNode&&e.parentNode.removeChild(e)},render:function(e){var t=e("div",{class:["d-none",{"b-dead-toaster":this.dead}]});if(this.doRender){var n=e(i["PortalTarget"],{staticClass:"b-toaster-slot",props:{name:this.staticName,multiple:!0,tag:"div",slim:!1,transition:h}});t=e("div",{staticClass:"b-toaster",class:[this.staticName],attrs:{id:this.staticName,role:this.role||null,"aria-live":this.ariaLive,"aria-atomic":this.ariaAtomic}},[n])}return t}})},"0ff2":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e=t.defineLocale("tl-ph",{months:"Enero_Pebrero_Marso_Abril_Mayo_Hunyo_Hulyo_Agosto_Setyembre_Oktubre_Nobyembre_Disyembre".split("_"),monthsShort:"Ene_Peb_Mar_Abr_May_Hun_Hul_Ago_Set_Okt_Nob_Dis".split("_"),weekdays:"Linggo_Lunes_Martes_Miyerkules_Huwebes_Biyernes_Sabado".split("_"),weekdaysShort:"Lin_Lun_Mar_Miy_Huw_Biy_Sab".split("_"),weekdaysMin:"Li_Lu_Ma_Mi_Hu_Bi_Sab".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"MM/D/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY HH:mm",LLLL:"dddd, MMMM DD, YYYY HH:mm"},calendar:{sameDay:"LT [ngayong araw]",nextDay:"[Bukas ng] LT",nextWeek:"LT [sa susunod na] dddd",lastDay:"LT [kahapon]",lastWeek:"LT [noong nakaraang] dddd",sameElse:"L"},relativeTime:{future:"sa loob ng %s",past:"%s ang nakalipas",s:"ilang segundo",ss:"%d segundo",m:"isang minuto",mm:"%d minuto",h:"isang oras",hh:"%d oras",d:"isang araw",dd:"%d araw",M:"isang buwan",MM:"%d buwan",y:"isang taon",yy:"%d taon"},dayOfMonthOrdinalParse:/\d{1,2}/,ordinal:function(t){return t},week:{dow:1,doy:4}});return e}))},"0f65":function(t,e,n){"use strict";n.d(e,"a",(function(){return b}));var r=n("2b88"),i=n("a026"),a=n("c637"),o=n("0056"),s=n("a723"),c=n("906c"),u=n("6b77"),l=n("cf75"),d=n("686b"),f=n("602d"),h=n("8c18"),p=i["default"].extend({mixins:[h["a"]],data:function(){return{name:"b-toaster"}},methods:{onAfterEnter:function(t){var e=this;Object(c["D"])((function(){Object(c["A"])(t,"".concat(e.name,"-enter-to"))}))}},render:function(t){return t("transition-group",{props:{tag:"div",name:this.name},on:{afterEnter:this.onAfterEnter}},this.normalizeSlot())}}),m=Object(l["d"])({ariaAtomic:Object(l["c"])(s["u"]),ariaLive:Object(l["c"])(s["u"]),name:Object(l["c"])(s["u"],void 0,!0),role:Object(l["c"])(s["u"])},a["qc"]),b=i["default"].extend({name:a["qc"],mixins:[f["a"]],props:m,data:function(){return{doRender:!1,dead:!1,staticName:this.name}},beforeMount:function(){var t=this,e=this.name;this.staticName=e,r["Wormhole"].hasTarget(e)?(Object(d["a"])('A "" with name "'.concat(e,'" already exists in the document.'),a["qc"]),this.dead=!0):(this.doRender=!0,this.$once(o["eb"],(function(){t.emitOnRoot(Object(u["e"])(a["qc"],o["j"]),e)})))},destroyed:function(){var t=this.$el;t&&t.parentNode&&t.parentNode.removeChild(t)},render:function(t){var e=t("div",{class:["d-none",{"b-dead-toaster":this.dead}]});if(this.doRender){var n=t(r["PortalTarget"],{staticClass:"b-toaster-slot",props:{name:this.staticName,multiple:!0,tag:"div",slim:!1,transition:p}});e=t("div",{staticClass:"b-toaster",class:[this.staticName],attrs:{id:this.staticName,role:this.role||null,"aria-live":this.ariaLive,"aria-atomic":this.ariaAtomic}},[n])}return e}})},"0ff2":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t=e.defineLocale("eu",{months:"urtarrila_otsaila_martxoa_apirila_maiatza_ekaina_uztaila_abuztua_iraila_urria_azaroa_abendua".split("_"),monthsShort:"urt._ots._mar._api._mai._eka._uzt._abu._ira._urr._aza._abe.".split("_"),monthsParseExact:!0,weekdays:"igandea_astelehena_asteartea_asteazkena_osteguna_ostirala_larunbata".split("_"),weekdaysShort:"ig._al._ar._az._og._ol._lr.".split("_"),weekdaysMin:"ig_al_ar_az_og_ol_lr".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"YYYY[ko] MMMM[ren] D[a]",LLL:"YYYY[ko] MMMM[ren] D[a] HH:mm",LLLL:"dddd, YYYY[ko] MMMM[ren] D[a] HH:mm",l:"YYYY-M-D",ll:"YYYY[ko] MMM D[a]",lll:"YYYY[ko] MMM D[a] HH:mm",llll:"ddd, YYYY[ko] MMM D[a] HH:mm"},calendar:{sameDay:"[gaur] LT[etan]",nextDay:"[bihar] LT[etan]",nextWeek:"dddd LT[etan]",lastDay:"[atzo] LT[etan]",lastWeek:"[aurreko] dddd LT[etan]",sameElse:"L"},relativeTime:{future:"%s barru",past:"duela %s",s:"segundo batzuk",ss:"%d segundo",m:"minutu bat",mm:"%d minutu",h:"ordu bat",hh:"%d ordu",d:"egun bat",dd:"%d egun",M:"hilabete bat",MM:"%d hilabete",y:"urte bat",yy:"%d urte"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}});return t}))},"10e8":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e=t.defineLocale("eu",{months:"urtarrila_otsaila_martxoa_apirila_maiatza_ekaina_uztaila_abuztua_iraila_urria_azaroa_abendua".split("_"),monthsShort:"urt._ots._mar._api._mai._eka._uzt._abu._ira._urr._aza._abe.".split("_"),monthsParseExact:!0,weekdays:"igandea_astelehena_asteartea_asteazkena_osteguna_ostirala_larunbata".split("_"),weekdaysShort:"ig._al._ar._az._og._ol._lr.".split("_"),weekdaysMin:"ig_al_ar_az_og_ol_lr".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"YYYY[ko] MMMM[ren] D[a]",LLL:"YYYY[ko] MMMM[ren] D[a] HH:mm",LLLL:"dddd, YYYY[ko] MMMM[ren] D[a] HH:mm",l:"YYYY-M-D",ll:"YYYY[ko] MMM D[a]",lll:"YYYY[ko] MMM D[a] HH:mm",llll:"ddd, YYYY[ko] MMM D[a] HH:mm"},calendar:{sameDay:"[gaur] LT[etan]",nextDay:"[bihar] LT[etan]",nextWeek:"dddd LT[etan]",lastDay:"[atzo] LT[etan]",lastWeek:"[aurreko] dddd LT[etan]",sameElse:"L"},relativeTime:{future:"%s barru",past:"duela %s",s:"segundo batzuk",ss:"%d segundo",m:"minutu bat",mm:"%d minutu",h:"ordu bat",hh:"%d ordu",d:"egun bat",dd:"%d egun",M:"hilabete bat",MM:"%d hilabete",y:"urte bat",yy:"%d urte"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}});return e}))},"10e8":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t=e.defineLocale("th",{months:"มกราคม_กุมภาพันธ์_มีนาคม_เมษายน_พฤษภาคม_มิถุนายน_กรกฎาคม_สิงหาคม_กันยายน_ตุลาคม_พฤศจิกายน_ธันวาคม".split("_"),monthsShort:"ม.ค._ก.พ._มี.ค._เม.ย._พ.ค._มิ.ย._ก.ค._ส.ค._ก.ย._ต.ค._พ.ย._ธ.ค.".split("_"),monthsParseExact:!0,weekdays:"อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัสบดี_ศุกร์_เสาร์".split("_"),weekdaysShort:"อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัส_ศุกร์_เสาร์".split("_"),weekdaysMin:"อา._จ._อ._พ._พฤ._ศ._ส.".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY เวลา H:mm",LLLL:"วันddddที่ D MMMM YYYY เวลา H:mm"},meridiemParse:/ก่อนเที่ยง|หลังเที่ยง/,isPM:function(e){return"หลังเที่ยง"===e},meridiem:function(e,t,n){return e<12?"ก่อนเที่ยง":"หลังเที่ยง"},calendar:{sameDay:"[วันนี้ เวลา] LT",nextDay:"[พรุ่งนี้ เวลา] LT",nextWeek:"dddd[หน้า เวลา] LT",lastDay:"[เมื่อวานนี้ เวลา] LT",lastWeek:"[วัน]dddd[ที่แล้ว เวลา] LT",sameElse:"L"},relativeTime:{future:"อีก %s",past:"%sที่แล้ว",s:"ไม่กี่วินาที",ss:"%d วินาที",m:"1 นาที",mm:"%d นาที",h:"1 ชั่วโมง",hh:"%d ชั่วโมง",d:"1 วัน",dd:"%d วัน",w:"1 สัปดาห์",ww:"%d สัปดาห์",M:"1 เดือน",MM:"%d เดือน",y:"1 ปี",yy:"%d ปี"}});return t}))},"129f":function(e,t){e.exports=Object.is||function(e,t){return e===t?0!==e||1/e===1/t:e!=e&&t!=t}},1310:function(e,t){function n(e){return null!=e&&"object"==typeof e}e.exports=n},"13e9":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e=t.defineLocale("th",{months:"มกราคม_กุมภาพันธ์_มีนาคม_เมษายน_พฤษภาคม_มิถุนายน_กรกฎาคม_สิงหาคม_กันยายน_ตุลาคม_พฤศจิกายน_ธันวาคม".split("_"),monthsShort:"ม.ค._ก.พ._มี.ค._เม.ย._พ.ค._มิ.ย._ก.ค._ส.ค._ก.ย._ต.ค._พ.ย._ธ.ค.".split("_"),monthsParseExact:!0,weekdays:"อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัสบดี_ศุกร์_เสาร์".split("_"),weekdaysShort:"อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัส_ศุกร์_เสาร์".split("_"),weekdaysMin:"อา._จ._อ._พ._พฤ._ศ._ส.".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY เวลา H:mm",LLLL:"วันddddที่ D MMMM YYYY เวลา H:mm"},meridiemParse:/ก่อนเที่ยง|หลังเที่ยง/,isPM:function(t){return"หลังเที่ยง"===t},meridiem:function(t,e,n){return t<12?"ก่อนเที่ยง":"หลังเที่ยง"},calendar:{sameDay:"[วันนี้ เวลา] LT",nextDay:"[พรุ่งนี้ เวลา] LT",nextWeek:"dddd[หน้า เวลา] LT",lastDay:"[เมื่อวานนี้ เวลา] LT",lastWeek:"[วัน]dddd[ที่แล้ว เวลา] LT",sameElse:"L"},relativeTime:{future:"อีก %s",past:"%sที่แล้ว",s:"ไม่กี่วินาที",ss:"%d วินาที",m:"1 นาที",mm:"%d นาที",h:"1 ชั่วโมง",hh:"%d ชั่วโมง",d:"1 วัน",dd:"%d วัน",w:"1 สัปดาห์",ww:"%d สัปดาห์",M:"1 เดือน",MM:"%d เดือน",y:"1 ปี",yy:"%d ปี"}});return e}))},"129f":function(t,e){t.exports=Object.is||function(t,e){return t===e?0!==t||1/t===1/e:t!=t&&e!=e}},1310:function(t,e){function n(t){return null!=t&&"object"==typeof t}t.exports=n},"13e9":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t={words:{ss:["секунда","секунде","секунди"],m:["један минут","једне минуте"],mm:["минут","минуте","минута"],h:["један сат","једног сата"],hh:["сат","сата","сати"],dd:["дан","дана","дана"],MM:["месец","месеца","месеци"],yy:["година","године","година"]},correctGrammaticalCase:function(e,t){return 1===e?t[0]:e>=2&&e<=4?t[1]:t[2]},translate:function(e,n,i){var r=t.words[i];return 1===i.length?n?r[0]:r[1]:e+" "+t.correctGrammaticalCase(e,r)}},n=e.defineLocale("sr-cyrl",{months:"јануар_фебруар_март_април_мај_јун_јул_август_септембар_октобар_новембар_децембар".split("_"),monthsShort:"јан._феб._мар._апр._мај_јун_јул_авг._сеп._окт._нов._дец.".split("_"),monthsParseExact:!0,weekdays:"недеља_понедељак_уторак_среда_четвртак_петак_субота".split("_"),weekdaysShort:"нед._пон._уто._сре._чет._пет._суб.".split("_"),weekdaysMin:"не_по_ут_ср_че_пе_су".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"D. M. YYYY.",LL:"D. MMMM YYYY.",LLL:"D. MMMM YYYY. H:mm",LLLL:"dddd, D. MMMM YYYY. H:mm"},calendar:{sameDay:"[данас у] LT",nextDay:"[сутра у] LT",nextWeek:function(){switch(this.day()){case 0:return"[у] [недељу] [у] LT";case 3:return"[у] [среду] [у] LT";case 6:return"[у] [суботу] [у] LT";case 1:case 2:case 4:case 5:return"[у] dddd [у] LT"}},lastDay:"[јуче у] LT",lastWeek:function(){var e=["[прошле] [недеље] [у] LT","[прошлог] [понедељка] [у] LT","[прошлог] [уторка] [у] LT","[прошле] [среде] [у] LT","[прошлог] [четвртка] [у] LT","[прошлог] [петка] [у] LT","[прошле] [суботе] [у] LT"];return e[this.day()]},sameElse:"L"},relativeTime:{future:"за %s",past:"пре %s",s:"неколико секунди",ss:t.translate,m:t.translate,mm:t.translate,h:t.translate,hh:t.translate,d:"дан",dd:t.translate,M:"месец",MM:t.translate,y:"годину",yy:t.translate},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}});return n}))},"14c3":function(e,t,n){var i=n("c6b6"),r=n("9263");e.exports=function(e,t){var n=e.exec;if("function"===typeof n){var o=n.call(e,t);if("object"!==typeof o)throw TypeError("RegExp exec method returned something other than an Object or null");return o}if("RegExp"!==i(e))throw TypeError("RegExp#exec called on incompatible receiver");return r.call(e,t)}},"159b":function(e,t,n){var i=n("da84"),r=n("fdbc"),o=n("17c2"),a=n("9112");for(var s in r){var c=i[s],u=c&&c.prototype;if(u&&u.forEach!==o)try{a(u,"forEach",o)}catch(d){u.forEach=o}}},"167b":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e={words:{ss:["секунда","секунде","секунди"],m:["један минут","једне минуте"],mm:["минут","минуте","минута"],h:["један сат","једног сата"],hh:["сат","сата","сати"],dd:["дан","дана","дана"],MM:["месец","месеца","месеци"],yy:["година","године","година"]},correctGrammaticalCase:function(t,e){return 1===t?e[0]:t>=2&&t<=4?e[1]:e[2]},translate:function(t,n,r){var i=e.words[r];return 1===r.length?n?i[0]:i[1]:t+" "+e.correctGrammaticalCase(t,i)}},n=t.defineLocale("sr-cyrl",{months:"јануар_фебруар_март_април_мај_јун_јул_август_септембар_октобар_новембар_децембар".split("_"),monthsShort:"јан._феб._мар._апр._мај_јун_јул_авг._сеп._окт._нов._дец.".split("_"),monthsParseExact:!0,weekdays:"недеља_понедељак_уторак_среда_четвртак_петак_субота".split("_"),weekdaysShort:"нед._пон._уто._сре._чет._пет._суб.".split("_"),weekdaysMin:"не_по_ут_ср_че_пе_су".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"D. M. YYYY.",LL:"D. MMMM YYYY.",LLL:"D. MMMM YYYY. H:mm",LLLL:"dddd, D. MMMM YYYY. H:mm"},calendar:{sameDay:"[данас у] LT",nextDay:"[сутра у] LT",nextWeek:function(){switch(this.day()){case 0:return"[у] [недељу] [у] LT";case 3:return"[у] [среду] [у] LT";case 6:return"[у] [суботу] [у] LT";case 1:case 2:case 4:case 5:return"[у] dddd [у] LT"}},lastDay:"[јуче у] LT",lastWeek:function(){var t=["[прошле] [недеље] [у] LT","[прошлог] [понедељка] [у] LT","[прошлог] [уторка] [у] LT","[прошле] [среде] [у] LT","[прошлог] [четвртка] [у] LT","[прошлог] [петка] [у] LT","[прошле] [суботе] [у] LT"];return t[this.day()]},sameElse:"L"},relativeTime:{future:"за %s",past:"пре %s",s:"неколико секунди",ss:e.translate,m:e.translate,mm:e.translate,h:e.translate,hh:e.translate,d:"дан",dd:e.translate,M:"месец",MM:e.translate,y:"годину",yy:e.translate},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}});return n}))},"14c3":function(t,e,n){var r=n("c6b6"),i=n("9263");t.exports=function(t,e){var n=t.exec;if("function"===typeof n){var a=n.call(t,e);if("object"!==typeof a)throw TypeError("RegExp exec method returned something other than an Object or null");return a}if("RegExp"!==r(t))throw TypeError("RegExp#exec called on incompatible receiver");return i.call(t,e)}},"159b":function(t,e,n){var r=n("da84"),i=n("fdbc"),a=n("17c2"),o=n("9112");for(var s in i){var c=r[s],u=c&&c.prototype;if(u&&u.forEach!==a)try{o(u,"forEach",a)}catch(l){u.forEach=a}}},"167b":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t=e.defineLocale("oc-lnc",{months:{standalone:"genièr_febrièr_març_abril_mai_junh_julhet_agost_setembre_octòbre_novembre_decembre".split("_"),format:"de genièr_de febrièr_de març_d'abril_de mai_de junh_de julhet_d'agost_de setembre_d'octòbre_de novembre_de decembre".split("_"),isFormat:/D[oD]?(\s)+MMMM/},monthsShort:"gen._febr._març_abr._mai_junh_julh._ago._set._oct._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"dimenge_diluns_dimars_dimècres_dijòus_divendres_dissabte".split("_"),weekdaysShort:"dg._dl._dm._dc._dj._dv._ds.".split("_"),weekdaysMin:"dg_dl_dm_dc_dj_dv_ds".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM [de] YYYY",ll:"D MMM YYYY",LLL:"D MMMM [de] YYYY [a] H:mm",lll:"D MMM YYYY, H:mm",LLLL:"dddd D MMMM [de] YYYY [a] H:mm",llll:"ddd D MMM YYYY, H:mm"},calendar:{sameDay:"[uèi a] LT",nextDay:"[deman a] LT",nextWeek:"dddd [a] LT",lastDay:"[ièr a] LT",lastWeek:"dddd [passat a] LT",sameElse:"L"},relativeTime:{future:"d'aquí %s",past:"fa %s",s:"unas segondas",ss:"%d segondas",m:"una minuta",mm:"%d minutas",h:"una ora",hh:"%d oras",d:"un jorn",dd:"%d jorns",M:"un mes",MM:"%d meses",y:"un an",yy:"%d ans"},dayOfMonthOrdinalParse:/\d{1,2}(r|n|t|è|a)/,ordinal:function(e,t){var n=1===e?"r":2===e?"n":3===e?"r":4===e?"t":"è";return"w"!==t&&"W"!==t||(n="a"),e+n},week:{dow:1,doy:4}});return t}))},"17c2":function(e,t,n){"use strict";var i=n("b727").forEach,r=n("a640"),o=r("forEach");e.exports=o?[].forEach:function(e){return i(this,e,arguments.length>1?arguments[1]:void 0)}},"19aa":function(e,t){e.exports=function(e,t,n){if(!(e instanceof t))throw TypeError("Incorrect "+(n?n+" ":"")+"invocation");return e}},"1a8c":function(e,t){function n(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)}e.exports=n},"1b45":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e=t.defineLocale("oc-lnc",{months:{standalone:"genièr_febrièr_març_abril_mai_junh_julhet_agost_setembre_octòbre_novembre_decembre".split("_"),format:"de genièr_de febrièr_de març_d'abril_de mai_de junh_de julhet_d'agost_de setembre_d'octòbre_de novembre_de decembre".split("_"),isFormat:/D[oD]?(\s)+MMMM/},monthsShort:"gen._febr._març_abr._mai_junh_julh._ago._set._oct._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"dimenge_diluns_dimars_dimècres_dijòus_divendres_dissabte".split("_"),weekdaysShort:"dg._dl._dm._dc._dj._dv._ds.".split("_"),weekdaysMin:"dg_dl_dm_dc_dj_dv_ds".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM [de] YYYY",ll:"D MMM YYYY",LLL:"D MMMM [de] YYYY [a] H:mm",lll:"D MMM YYYY, H:mm",LLLL:"dddd D MMMM [de] YYYY [a] H:mm",llll:"ddd D MMM YYYY, H:mm"},calendar:{sameDay:"[uèi a] LT",nextDay:"[deman a] LT",nextWeek:"dddd [a] LT",lastDay:"[ièr a] LT",lastWeek:"dddd [passat a] LT",sameElse:"L"},relativeTime:{future:"d'aquí %s",past:"fa %s",s:"unas segondas",ss:"%d segondas",m:"una minuta",mm:"%d minutas",h:"una ora",hh:"%d oras",d:"un jorn",dd:"%d jorns",M:"un mes",MM:"%d meses",y:"un an",yy:"%d ans"},dayOfMonthOrdinalParse:/\d{1,2}(r|n|t|è|a)/,ordinal:function(t,e){var n=1===t?"r":2===t?"n":3===t?"r":4===t?"t":"è";return"w"!==e&&"W"!==e||(n="a"),t+n},week:{dow:1,doy:4}});return e}))},"17c2":function(t,e,n){"use strict";var r=n("b727").forEach,i=n("a640"),a=i("forEach");t.exports=a?[].forEach:function(t){return r(this,t,arguments.length>1?arguments[1]:void 0)}},"19aa":function(t,e){t.exports=function(t,e,n){if(!(t instanceof e))throw TypeError("Incorrect "+(n?n+" ":"")+"invocation");return t}},"1a8c":function(t,e){function n(t){var e=typeof t;return null!=t&&("object"==e||"function"==e)}t.exports=n},"1b45":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t=e.defineLocale("mt",{months:"Jannar_Frar_Marzu_April_Mejju_Ġunju_Lulju_Awwissu_Settembru_Ottubru_Novembru_Diċembru".split("_"),monthsShort:"Jan_Fra_Mar_Apr_Mej_Ġun_Lul_Aww_Set_Ott_Nov_Diċ".split("_"),weekdays:"Il-Ħadd_It-Tnejn_It-Tlieta_L-Erbgħa_Il-Ħamis_Il-Ġimgħa_Is-Sibt".split("_"),weekdaysShort:"Ħad_Tne_Tli_Erb_Ħam_Ġim_Sib".split("_"),weekdaysMin:"Ħa_Tn_Tl_Er_Ħa_Ġi_Si".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Illum fil-]LT",nextDay:"[Għada fil-]LT",nextWeek:"dddd [fil-]LT",lastDay:"[Il-bieraħ fil-]LT",lastWeek:"dddd [li għadda] [fil-]LT",sameElse:"L"},relativeTime:{future:"f’ %s",past:"%s ilu",s:"ftit sekondi",ss:"%d sekondi",m:"minuta",mm:"%d minuti",h:"siegħa",hh:"%d siegħat",d:"ġurnata",dd:"%d ġranet",M:"xahar",MM:"%d xhur",y:"sena",yy:"%d sni"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}});return t}))},"1be4":function(e,t,n){var i=n("d066");e.exports=i("document","documentElement")},"1c0b":function(e,t){e.exports=function(e){if("function"!=typeof e)throw TypeError(String(e)+" is not a function");return e}},"1c7e":function(e,t,n){var i=n("b622"),r=i("iterator"),o=!1;try{var a=0,s={next:function(){return{done:!!a++}},return:function(){o=!0}};s[r]=function(){return this},Array.from(s,(function(){throw 2}))}catch(c){}e.exports=function(e,t){if(!t&&!o)return!1;var n=!1;try{var i={};i[r]=function(){return{next:function(){return{done:n=!0}}}},e(i)}catch(c){}return n}},"1cdc":function(e,t,n){var i=n("342f");e.exports=/(?:iphone|ipod|ipad).*applewebkit/i.test(i)},"1cfd":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e=t.defineLocale("mt",{months:"Jannar_Frar_Marzu_April_Mejju_Ġunju_Lulju_Awwissu_Settembru_Ottubru_Novembru_Diċembru".split("_"),monthsShort:"Jan_Fra_Mar_Apr_Mej_Ġun_Lul_Aww_Set_Ott_Nov_Diċ".split("_"),weekdays:"Il-Ħadd_It-Tnejn_It-Tlieta_L-Erbgħa_Il-Ħamis_Il-Ġimgħa_Is-Sibt".split("_"),weekdaysShort:"Ħad_Tne_Tli_Erb_Ħam_Ġim_Sib".split("_"),weekdaysMin:"Ħa_Tn_Tl_Er_Ħa_Ġi_Si".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Illum fil-]LT",nextDay:"[Għada fil-]LT",nextWeek:"dddd [fil-]LT",lastDay:"[Il-bieraħ fil-]LT",lastWeek:"dddd [li għadda] [fil-]LT",sameElse:"L"},relativeTime:{future:"f’ %s",past:"%s ilu",s:"ftit sekondi",ss:"%d sekondi",m:"minuta",mm:"%d minuti",h:"siegħa",hh:"%d siegħat",d:"ġurnata",dd:"%d ġranet",M:"xahar",MM:"%d xhur",y:"sena",yy:"%d sni"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}});return e}))},"1be4":function(t,e,n){var r=n("d066");t.exports=r("document","documentElement")},"1c0b":function(t,e){t.exports=function(t){if("function"!=typeof t)throw TypeError(String(t)+" is not a function");return t}},"1c7e":function(t,e,n){var r=n("b622"),i=r("iterator"),a=!1;try{var o=0,s={next:function(){return{done:!!o++}},return:function(){a=!0}};s[i]=function(){return this},Array.from(s,(function(){throw 2}))}catch(c){}t.exports=function(t,e){if(!e&&!a)return!1;var n=!1;try{var r={};r[i]=function(){return{next:function(){return{done:n=!0}}}},t(r)}catch(c){}return n}},"1cdc":function(t,e,n){var r=n("342f");t.exports=/(?:iphone|ipod|ipad).*applewebkit/i.test(r)},"1cfd":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t={1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",0:"0"},n=function(e){return 0===e?0:1===e?1:2===e?2:e%100>=3&&e%100<=10?3:e%100>=11?4:5},i={s:["أقل من ثانية","ثانية واحدة",["ثانيتان","ثانيتين"],"%d ثوان","%d ثانية","%d ثانية"],m:["أقل من دقيقة","دقيقة واحدة",["دقيقتان","دقيقتين"],"%d دقائق","%d دقيقة","%d دقيقة"],h:["أقل من ساعة","ساعة واحدة",["ساعتان","ساعتين"],"%d ساعات","%d ساعة","%d ساعة"],d:["أقل من يوم","يوم واحد",["يومان","يومين"],"%d أيام","%d يومًا","%d يوم"],M:["أقل من شهر","شهر واحد",["شهران","شهرين"],"%d أشهر","%d شهرا","%d شهر"],y:["أقل من عام","عام واحد",["عامان","عامين"],"%d أعوام","%d عامًا","%d عام"]},r=function(e){return function(t,r,o,a){var s=n(t),c=i[e][n(t)];return 2===s&&(c=c[r?0:1]),c.replace(/%d/i,t)}},o=["يناير","فبراير","مارس","أبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],a=e.defineLocale("ar-ly",{months:o,monthsShort:o,weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"D/‏M/‏YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/ص|م/,isPM:function(e){return"م"===e},meridiem:function(e,t,n){return e<12?"ص":"م"},calendar:{sameDay:"[اليوم عند الساعة] LT",nextDay:"[غدًا عند الساعة] LT",nextWeek:"dddd [عند الساعة] LT",lastDay:"[أمس عند الساعة] LT",lastWeek:"dddd [عند الساعة] LT",sameElse:"L"},relativeTime:{future:"بعد %s",past:"منذ %s",s:r("s"),ss:r("s"),m:r("m"),mm:r("m"),h:r("h"),hh:r("h"),d:r("d"),dd:r("d"),M:r("M"),MM:r("M"),y:r("y"),yy:r("y")},preparse:function(e){return e.replace(/،/g,",")},postformat:function(e){return e.replace(/\d/g,(function(e){return t[e]})).replace(/,/g,"،")},week:{dow:6,doy:12}});return a}))},"1d2b":function(e,t,n){"use strict";e.exports=function(e,t){return function(){for(var n=new Array(arguments.length),i=0;i=51||!i((function(){var t=[],n=t.constructor={};return n[a]=function(){return{foo:1}},1!==t[e](Boolean).foo}))}},"1fc1":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e={1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",0:"0"},n=function(t){return 0===t?0:1===t?1:2===t?2:t%100>=3&&t%100<=10?3:t%100>=11?4:5},r={s:["أقل من ثانية","ثانية واحدة",["ثانيتان","ثانيتين"],"%d ثوان","%d ثانية","%d ثانية"],m:["أقل من دقيقة","دقيقة واحدة",["دقيقتان","دقيقتين"],"%d دقائق","%d دقيقة","%d دقيقة"],h:["أقل من ساعة","ساعة واحدة",["ساعتان","ساعتين"],"%d ساعات","%d ساعة","%d ساعة"],d:["أقل من يوم","يوم واحد",["يومان","يومين"],"%d أيام","%d يومًا","%d يوم"],M:["أقل من شهر","شهر واحد",["شهران","شهرين"],"%d أشهر","%d شهرا","%d شهر"],y:["أقل من عام","عام واحد",["عامان","عامين"],"%d أعوام","%d عامًا","%d عام"]},i=function(t){return function(e,i,a,o){var s=n(e),c=r[t][n(e)];return 2===s&&(c=c[i?0:1]),c.replace(/%d/i,e)}},a=["يناير","فبراير","مارس","أبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],o=t.defineLocale("ar-ly",{months:a,monthsShort:a,weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"D/‏M/‏YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/ص|م/,isPM:function(t){return"م"===t},meridiem:function(t,e,n){return t<12?"ص":"م"},calendar:{sameDay:"[اليوم عند الساعة] LT",nextDay:"[غدًا عند الساعة] LT",nextWeek:"dddd [عند الساعة] LT",lastDay:"[أمس عند الساعة] LT",lastWeek:"dddd [عند الساعة] LT",sameElse:"L"},relativeTime:{future:"بعد %s",past:"منذ %s",s:i("s"),ss:i("s"),m:i("m"),mm:i("m"),h:i("h"),hh:i("h"),d:i("d"),dd:i("d"),M:i("M"),MM:i("M"),y:i("y"),yy:i("y")},preparse:function(t){return t.replace(/،/g,",")},postformat:function(t){return t.replace(/\d/g,(function(t){return e[t]})).replace(/,/g,"،")},week:{dow:6,doy:12}});return o}))},"1d2b":function(t,e,n){"use strict";t.exports=function(t,e){return function(){for(var n=new Array(arguments.length),r=0;r=51||!r((function(){var e=[],n=e.constructor={};return n[o]=function(){return{foo:1}},1!==e[t](Boolean).foo}))}},"1fc1":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -function t(e,t){var n=e.split("_");return t%10===1&&t%100!==11?n[0]:t%10>=2&&t%10<=4&&(t%100<10||t%100>=20)?n[1]:n[2]}function n(e,n,i){var r={ss:n?"секунда_секунды_секунд":"секунду_секунды_секунд",mm:n?"хвіліна_хвіліны_хвілін":"хвіліну_хвіліны_хвілін",hh:n?"гадзіна_гадзіны_гадзін":"гадзіну_гадзіны_гадзін",dd:"дзень_дні_дзён",MM:"месяц_месяцы_месяцаў",yy:"год_гады_гадоў"};return"m"===i?n?"хвіліна":"хвіліну":"h"===i?n?"гадзіна":"гадзіну":e+" "+t(r[i],+e)}var i=e.defineLocale("be",{months:{format:"студзеня_лютага_сакавіка_красавіка_траўня_чэрвеня_ліпеня_жніўня_верасня_кастрычніка_лістапада_снежня".split("_"),standalone:"студзень_люты_сакавік_красавік_травень_чэрвень_ліпень_жнівень_верасень_кастрычнік_лістапад_снежань".split("_")},monthsShort:"студ_лют_сак_крас_трав_чэрв_ліп_жнів_вер_каст_ліст_снеж".split("_"),weekdays:{format:"нядзелю_панядзелак_аўторак_сераду_чацвер_пятніцу_суботу".split("_"),standalone:"нядзеля_панядзелак_аўторак_серада_чацвер_пятніца_субота".split("_"),isFormat:/\[ ?[Ууў] ?(?:мінулую|наступную)? ?\] ?dddd/},weekdaysShort:"нд_пн_ат_ср_чц_пт_сб".split("_"),weekdaysMin:"нд_пн_ат_ср_чц_пт_сб".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY г.",LLL:"D MMMM YYYY г., HH:mm",LLLL:"dddd, D MMMM YYYY г., HH:mm"},calendar:{sameDay:"[Сёння ў] LT",nextDay:"[Заўтра ў] LT",lastDay:"[Учора ў] LT",nextWeek:function(){return"[У] dddd [ў] LT"},lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return"[У мінулую] dddd [ў] LT";case 1:case 2:case 4:return"[У мінулы] dddd [ў] LT"}},sameElse:"L"},relativeTime:{future:"праз %s",past:"%s таму",s:"некалькі секунд",m:n,mm:n,h:n,hh:n,d:"дзень",dd:n,M:"месяц",MM:n,y:"год",yy:n},meridiemParse:/ночы|раніцы|дня|вечара/,isPM:function(e){return/^(дня|вечара)$/.test(e)},meridiem:function(e,t,n){return e<4?"ночы":e<12?"раніцы":e<17?"дня":"вечара"},dayOfMonthOrdinalParse:/\d{1,2}-(і|ы|га)/,ordinal:function(e,t){switch(t){case"M":case"d":case"DDD":case"w":case"W":return e%10!==2&&e%10!==3||e%100===12||e%100===13?e+"-ы":e+"-і";case"D":return e+"-га";default:return e}},week:{dow:1,doy:7}});return i}))},"201b":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +function e(t,e){var n=t.split("_");return e%10===1&&e%100!==11?n[0]:e%10>=2&&e%10<=4&&(e%100<10||e%100>=20)?n[1]:n[2]}function n(t,n,r){var i={ss:n?"секунда_секунды_секунд":"секунду_секунды_секунд",mm:n?"хвіліна_хвіліны_хвілін":"хвіліну_хвіліны_хвілін",hh:n?"гадзіна_гадзіны_гадзін":"гадзіну_гадзіны_гадзін",dd:"дзень_дні_дзён",MM:"месяц_месяцы_месяцаў",yy:"год_гады_гадоў"};return"m"===r?n?"хвіліна":"хвіліну":"h"===r?n?"гадзіна":"гадзіну":t+" "+e(i[r],+t)}var r=t.defineLocale("be",{months:{format:"студзеня_лютага_сакавіка_красавіка_траўня_чэрвеня_ліпеня_жніўня_верасня_кастрычніка_лістапада_снежня".split("_"),standalone:"студзень_люты_сакавік_красавік_травень_чэрвень_ліпень_жнівень_верасень_кастрычнік_лістапад_снежань".split("_")},monthsShort:"студ_лют_сак_крас_трав_чэрв_ліп_жнів_вер_каст_ліст_снеж".split("_"),weekdays:{format:"нядзелю_панядзелак_аўторак_сераду_чацвер_пятніцу_суботу".split("_"),standalone:"нядзеля_панядзелак_аўторак_серада_чацвер_пятніца_субота".split("_"),isFormat:/\[ ?[Ууў] ?(?:мінулую|наступную)? ?\] ?dddd/},weekdaysShort:"нд_пн_ат_ср_чц_пт_сб".split("_"),weekdaysMin:"нд_пн_ат_ср_чц_пт_сб".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY г.",LLL:"D MMMM YYYY г., HH:mm",LLLL:"dddd, D MMMM YYYY г., HH:mm"},calendar:{sameDay:"[Сёння ў] LT",nextDay:"[Заўтра ў] LT",lastDay:"[Учора ў] LT",nextWeek:function(){return"[У] dddd [ў] LT"},lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return"[У мінулую] dddd [ў] LT";case 1:case 2:case 4:return"[У мінулы] dddd [ў] LT"}},sameElse:"L"},relativeTime:{future:"праз %s",past:"%s таму",s:"некалькі секунд",m:n,mm:n,h:n,hh:n,d:"дзень",dd:n,M:"месяц",MM:n,y:"год",yy:n},meridiemParse:/ночы|раніцы|дня|вечара/,isPM:function(t){return/^(дня|вечара)$/.test(t)},meridiem:function(t,e,n){return t<4?"ночы":t<12?"раніцы":t<17?"дня":"вечара"},dayOfMonthOrdinalParse:/\d{1,2}-(і|ы|га)/,ordinal:function(t,e){switch(e){case"M":case"d":case"DDD":case"w":case"W":return t%10!==2&&t%10!==3||t%100===12||t%100===13?t+"-ы":t+"-і";case"D":return t+"-га";default:return t}},week:{dow:1,doy:7}});return r}))},"201b":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t=e.defineLocale("ka",{months:"იანვარი_თებერვალი_მარტი_აპრილი_მაისი_ივნისი_ივლისი_აგვისტო_სექტემბერი_ოქტომბერი_ნოემბერი_დეკემბერი".split("_"),monthsShort:"იან_თებ_მარ_აპრ_მაი_ივნ_ივლ_აგვ_სექ_ოქტ_ნოე_დეკ".split("_"),weekdays:{standalone:"კვირა_ორშაბათი_სამშაბათი_ოთხშაბათი_ხუთშაბათი_პარასკევი_შაბათი".split("_"),format:"კვირას_ორშაბათს_სამშაბათს_ოთხშაბათს_ხუთშაბათს_პარასკევს_შაბათს".split("_"),isFormat:/(წინა|შემდეგ)/},weekdaysShort:"კვი_ორშ_სამ_ოთხ_ხუთ_პარ_შაბ".split("_"),weekdaysMin:"კვ_ორ_სა_ოთ_ხუ_პა_შა".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[დღეს] LT[-ზე]",nextDay:"[ხვალ] LT[-ზე]",lastDay:"[გუშინ] LT[-ზე]",nextWeek:"[შემდეგ] dddd LT[-ზე]",lastWeek:"[წინა] dddd LT-ზე",sameElse:"L"},relativeTime:{future:function(e){return e.replace(/(წამ|წუთ|საათ|წელ|დღ|თვ)(ი|ე)/,(function(e,t,n){return"ი"===n?t+"ში":t+n+"ში"}))},past:function(e){return/(წამი|წუთი|საათი|დღე|თვე)/.test(e)?e.replace(/(ი|ე)$/,"ის წინ"):/წელი/.test(e)?e.replace(/წელი$/,"წლის წინ"):e},s:"რამდენიმე წამი",ss:"%d წამი",m:"წუთი",mm:"%d წუთი",h:"საათი",hh:"%d საათი",d:"დღე",dd:"%d დღე",M:"თვე",MM:"%d თვე",y:"წელი",yy:"%d წელი"},dayOfMonthOrdinalParse:/0|1-ლი|მე-\d{1,2}|\d{1,2}-ე/,ordinal:function(e){return 0===e?e:1===e?e+"-ლი":e<20||e<=100&&e%20===0||e%100===0?"მე-"+e:e+"-ე"},week:{dow:1,doy:7}});return t}))},2266:function(e,t,n){var i=n("825a"),r=n("e95a"),o=n("50c4"),a=n("0366"),s=n("35a1"),c=n("2a62"),u=function(e,t){this.stopped=e,this.result=t};e.exports=function(e,t,n){var d,l,f,p,h,m,b,g=n&&n.that,v=!(!n||!n.AS_ENTRIES),y=!(!n||!n.IS_ITERATOR),_=!(!n||!n.INTERRUPTED),O=a(t,g,1+v+_),j=function(e){return d&&c(d),new u(!0,e)},w=function(e){return v?(i(e),_?O(e[0],e[1],j):O(e[0],e[1])):_?O(e,j):O(e)};if(y)d=e;else{if(l=s(e),"function"!=typeof l)throw TypeError("Target is not iterable");if(r(l)){for(f=0,p=o(e.length);p>f;f++)if(h=w(e[f]),h&&h instanceof u)return h;return new u(!1)}d=l.call(e)}m=d.next;while(!(b=m.call(d)).done){try{h=w(b.value)}catch(k){throw c(d),k}if("object"==typeof h&&h&&h instanceof u)return h}return new u(!1)}},"228e":function(e,t,n){"use strict";n.d(t,"c",(function(){return u})),n.d(t,"a",(function(){return d})),n.d(t,"b",(function(){return p}));var i=n("a026"),r=n("50d3"),o=n("c9a9"),a=n("b508"),s=i["default"].prototype,c=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:void 0,n=s[r["c"]];return n?n.getConfigValue(e,t):Object(o["a"])(t)},u=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:void 0;return t?c("".concat(e,".").concat(t),n):c(e,{})},d=function(){return c("breakpoints",r["a"])},l=Object(a["a"])((function(){return d()})),f=function(){return Object(o["a"])(l())},p=Object(a["a"])((function(){var e=f();return e[0]="",e}))},"22f8":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e=t.defineLocale("ka",{months:"იანვარი_თებერვალი_მარტი_აპრილი_მაისი_ივნისი_ივლისი_აგვისტო_სექტემბერი_ოქტომბერი_ნოემბერი_დეკემბერი".split("_"),monthsShort:"იან_თებ_მარ_აპრ_მაი_ივნ_ივლ_აგვ_სექ_ოქტ_ნოე_დეკ".split("_"),weekdays:{standalone:"კვირა_ორშაბათი_სამშაბათი_ოთხშაბათი_ხუთშაბათი_პარასკევი_შაბათი".split("_"),format:"კვირას_ორშაბათს_სამშაბათს_ოთხშაბათს_ხუთშაბათს_პარასკევს_შაბათს".split("_"),isFormat:/(წინა|შემდეგ)/},weekdaysShort:"კვი_ორშ_სამ_ოთხ_ხუთ_პარ_შაბ".split("_"),weekdaysMin:"კვ_ორ_სა_ოთ_ხუ_პა_შა".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[დღეს] LT[-ზე]",nextDay:"[ხვალ] LT[-ზე]",lastDay:"[გუშინ] LT[-ზე]",nextWeek:"[შემდეგ] dddd LT[-ზე]",lastWeek:"[წინა] dddd LT-ზე",sameElse:"L"},relativeTime:{future:function(t){return t.replace(/(წამ|წუთ|საათ|წელ|დღ|თვ)(ი|ე)/,(function(t,e,n){return"ი"===n?e+"ში":e+n+"ში"}))},past:function(t){return/(წამი|წუთი|საათი|დღე|თვე)/.test(t)?t.replace(/(ი|ე)$/,"ის წინ"):/წელი/.test(t)?t.replace(/წელი$/,"წლის წინ"):t},s:"რამდენიმე წამი",ss:"%d წამი",m:"წუთი",mm:"%d წუთი",h:"საათი",hh:"%d საათი",d:"დღე",dd:"%d დღე",M:"თვე",MM:"%d თვე",y:"წელი",yy:"%d წელი"},dayOfMonthOrdinalParse:/0|1-ლი|მე-\d{1,2}|\d{1,2}-ე/,ordinal:function(t){return 0===t?t:1===t?t+"-ლი":t<20||t<=100&&t%20===0||t%100===0?"მე-"+t:t+"-ე"},week:{dow:1,doy:7}});return e}))},2266:function(t,e,n){var r=n("825a"),i=n("e95a"),a=n("50c4"),o=n("0366"),s=n("35a1"),c=n("2a62"),u=function(t,e){this.stopped=t,this.result=e};t.exports=function(t,e,n){var l,d,f,h,p,m,b,v=n&&n.that,_=!(!n||!n.AS_ENTRIES),g=!(!n||!n.IS_ITERATOR),y=!(!n||!n.INTERRUPTED),O=o(e,v,1+_+y),j=function(t){return l&&c(l),new u(!0,t)},w=function(t){return _?(r(t),y?O(t[0],t[1],j):O(t[0],t[1])):y?O(t,j):O(t)};if(g)l=t;else{if(d=s(t),"function"!=typeof d)throw TypeError("Target is not iterable");if(i(d)){for(f=0,h=a(t.length);h>f;f++)if(p=w(t[f]),p&&p instanceof u)return p;return new u(!1)}l=d.call(t)}m=l.next;while(!(b=m.call(l)).done){try{p=w(b.value)}catch(M){throw c(l),M}if("object"==typeof p&&p&&p instanceof u)return p}return new u(!1)}},"228e":function(t,e,n){"use strict";n.d(e,"c",(function(){return u})),n.d(e,"a",(function(){return l})),n.d(e,"b",(function(){return h}));var r=n("a026"),i=n("50d3"),a=n("c9a9"),o=n("b508"),s=r["default"].prototype,c=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:void 0,n=s[i["c"]];return n?n.getConfigValue(t,e):Object(a["a"])(e)},u=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:void 0;return e?c("".concat(t,".").concat(e),n):c(t,{})},l=function(){return c("breakpoints",i["a"])},d=Object(o["a"])((function(){return l()})),f=function(){return Object(a["a"])(d())},h=Object(o["a"])((function(){var t=f();return t[0]="",t}))},"22f8":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t=e.defineLocale("ko",{months:"1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월".split("_"),monthsShort:"1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월".split("_"),weekdays:"일요일_월요일_화요일_수요일_목요일_금요일_토요일".split("_"),weekdaysShort:"일_월_화_수_목_금_토".split("_"),weekdaysMin:"일_월_화_수_목_금_토".split("_"),longDateFormat:{LT:"A h:mm",LTS:"A h:mm:ss",L:"YYYY.MM.DD.",LL:"YYYY년 MMMM D일",LLL:"YYYY년 MMMM D일 A h:mm",LLLL:"YYYY년 MMMM D일 dddd A h:mm",l:"YYYY.MM.DD.",ll:"YYYY년 MMMM D일",lll:"YYYY년 MMMM D일 A h:mm",llll:"YYYY년 MMMM D일 dddd A h:mm"},calendar:{sameDay:"오늘 LT",nextDay:"내일 LT",nextWeek:"dddd LT",lastDay:"어제 LT",lastWeek:"지난주 dddd LT",sameElse:"L"},relativeTime:{future:"%s 후",past:"%s 전",s:"몇 초",ss:"%d초",m:"1분",mm:"%d분",h:"한 시간",hh:"%d시간",d:"하루",dd:"%d일",M:"한 달",MM:"%d달",y:"일 년",yy:"%d년"},dayOfMonthOrdinalParse:/\d{1,2}(일|월|주)/,ordinal:function(e,t){switch(t){case"d":case"D":case"DDD":return e+"일";case"M":return e+"월";case"w":case"W":return e+"주";default:return e}},meridiemParse:/오전|오후/,isPM:function(e){return"오후"===e},meridiem:function(e,t,n){return e<12?"오전":"오후"}});return t}))},2326:function(e,t,n){"use strict";n.d(t,"f",(function(){return r})),n.d(t,"a",(function(){return o})),n.d(t,"b",(function(){return a})),n.d(t,"c",(function(){return s})),n.d(t,"d",(function(){return c})),n.d(t,"e",(function(){return u}));var i=n("7b1e"),r=function(){return Array.from.apply(Array,arguments)},o=function(e,t){return-1!==e.indexOf(t)},a=function(){for(var e=arguments.length,t=new Array(e),n=0;n=200&&e<300},headers:{common:{Accept:"application/json, text/plain, */*"}}};i.forEach(["delete","get","head"],(function(e){c.headers[e]={}})),i.forEach(["post","put","patch"],(function(e){c.headers[e]=i.merge(o)})),e.exports=c}).call(this,n("4362"))},2532:function(e,t,n){"use strict";var i=n("23e7"),r=n("5a34"),o=n("1d80"),a=n("ab13");i({target:"String",proto:!0,forced:!a("includes")},{includes:function(e){return!!~String(o(this)).indexOf(r(e),arguments.length>1?arguments[1]:void 0)}})},2554:function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e={1:"١",2:"٢",3:"٣",4:"٤",5:"٥",6:"٦",7:"٧",8:"٨",9:"٩",0:"٠"},n={"١":"1","٢":"2","٣":"3","٤":"4","٥":"5","٦":"6","٧":"7","٨":"8","٩":"9","٠":"0"},r=["کانونی دووەم","شوبات","ئازار","نیسان","ئایار","حوزەیران","تەمموز","ئاب","ئەیلوول","تشرینی یەكەم","تشرینی دووەم","كانونی یەکەم"],i=t.defineLocale("ku",{months:r,monthsShort:r,weekdays:"یه‌كشه‌ممه‌_دووشه‌ممه‌_سێشه‌ممه‌_چوارشه‌ممه‌_پێنجشه‌ممه‌_هه‌ینی_شه‌ممه‌".split("_"),weekdaysShort:"یه‌كشه‌م_دووشه‌م_سێشه‌م_چوارشه‌م_پێنجشه‌م_هه‌ینی_شه‌ممه‌".split("_"),weekdaysMin:"ی_د_س_چ_پ_ه_ش".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},meridiemParse:/ئێواره‌|به‌یانی/,isPM:function(t){return/ئێواره‌/.test(t)},meridiem:function(t,e,n){return t<12?"به‌یانی":"ئێواره‌"},calendar:{sameDay:"[ئه‌مرۆ كاتژمێر] LT",nextDay:"[به‌یانی كاتژمێر] LT",nextWeek:"dddd [كاتژمێر] LT",lastDay:"[دوێنێ كاتژمێر] LT",lastWeek:"dddd [كاتژمێر] LT",sameElse:"L"},relativeTime:{future:"له‌ %s",past:"%s",s:"چه‌ند چركه‌یه‌ك",ss:"چركه‌ %d",m:"یه‌ك خوله‌ك",mm:"%d خوله‌ك",h:"یه‌ك كاتژمێر",hh:"%d كاتژمێر",d:"یه‌ك ڕۆژ",dd:"%d ڕۆژ",M:"یه‌ك مانگ",MM:"%d مانگ",y:"یه‌ك ساڵ",yy:"%d ساڵ"},preparse:function(t){return t.replace(/[١٢٣٤٥٦٧٨٩٠]/g,(function(t){return n[t]})).replace(/،/g,",")},postformat:function(t){return t.replace(/\d/g,(function(t){return e[t]})).replace(/,/g,"،")},week:{dow:6,doy:12}});return i}))},2444:function(t,e,n){"use strict";(function(e){var r=n("c532"),i=n("c8af"),a={"Content-Type":"application/x-www-form-urlencoded"};function o(t,e){!r.isUndefined(t)&&r.isUndefined(t["Content-Type"])&&(t["Content-Type"]=e)}function s(){var t;return("undefined"!==typeof XMLHttpRequest||"undefined"!==typeof e&&"[object process]"===Object.prototype.toString.call(e))&&(t=n("b50d")),t}var c={adapter:s(),transformRequest:[function(t,e){return i(e,"Accept"),i(e,"Content-Type"),r.isFormData(t)||r.isArrayBuffer(t)||r.isBuffer(t)||r.isStream(t)||r.isFile(t)||r.isBlob(t)?t:r.isArrayBufferView(t)?t.buffer:r.isURLSearchParams(t)?(o(e,"application/x-www-form-urlencoded;charset=utf-8"),t.toString()):r.isObject(t)?(o(e,"application/json;charset=utf-8"),JSON.stringify(t)):t}],transformResponse:[function(t){if("string"===typeof t)try{t=JSON.parse(t)}catch(e){}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,validateStatus:function(t){return t>=200&&t<300},headers:{common:{Accept:"application/json, text/plain, */*"}}};r.forEach(["delete","get","head"],(function(t){c.headers[t]={}})),r.forEach(["post","put","patch"],(function(t){c.headers[t]=r.merge(a)})),t.exports=c}).call(this,n("4362"))},2532:function(t,e,n){"use strict";var r=n("23e7"),i=n("5a34"),a=n("1d80"),o=n("ab13");r({target:"String",proto:!0,forced:!o("includes")},{includes:function(t){return!!~String(a(this)).indexOf(i(t),arguments.length>1?arguments[1]:void 0)}})},2554:function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -function t(e,t,n){var i=e+" ";switch(n){case"ss":return i+=1===e?"sekunda":2===e||3===e||4===e?"sekunde":"sekundi",i;case"m":return t?"jedna minuta":"jedne minute";case"mm":return i+=1===e?"minuta":2===e||3===e||4===e?"minute":"minuta",i;case"h":return t?"jedan sat":"jednog sata";case"hh":return i+=1===e?"sat":2===e||3===e||4===e?"sata":"sati",i;case"dd":return i+=1===e?"dan":"dana",i;case"MM":return i+=1===e?"mjesec":2===e||3===e||4===e?"mjeseca":"mjeseci",i;case"yy":return i+=1===e?"godina":2===e||3===e||4===e?"godine":"godina",i}}var n=e.defineLocale("bs",{months:"januar_februar_mart_april_maj_juni_juli_august_septembar_oktobar_novembar_decembar".split("_"),monthsShort:"jan._feb._mar._apr._maj._jun._jul._aug._sep._okt._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota".split("_"),weekdaysShort:"ned._pon._uto._sri._čet._pet._sub.".split("_"),weekdaysMin:"ne_po_ut_sr_če_pe_su".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedjelju] [u] LT";case 3:return"[u] [srijedu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[jučer u] LT",lastWeek:function(){switch(this.day()){case 0:case 3:return"[prošlu] dddd [u] LT";case 6:return"[prošle] [subote] [u] LT";case 1:case 2:case 4:case 5:return"[prošli] dddd [u] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"prije %s",s:"par sekundi",ss:t,m:t,mm:t,h:t,hh:t,d:"dan",dd:t,M:"mjesec",MM:t,y:"godinu",yy:t},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}});return n}))},"25f0":function(e,t,n){"use strict";var i=n("6eeb"),r=n("825a"),o=n("d039"),a=n("ad6d"),s="toString",c=RegExp.prototype,u=c[s],d=o((function(){return"/a/b"!=u.call({source:"a",flags:"b"})})),l=u.name!=s;(d||l)&&i(RegExp.prototype,s,(function(){var e=r(this),t=String(e.source),n=e.flags,i=String(void 0===n&&e instanceof RegExp&&!("flags"in c)?a.call(e):n);return"/"+t+"/"+i}),{unsafe:!0})},2626:function(e,t,n){"use strict";var i=n("d066"),r=n("9bf2"),o=n("b622"),a=n("83ab"),s=o("species");e.exports=function(e){var t=i(e),n=r.f;a&&t&&!t[s]&&n(t,s,{configurable:!0,get:function(){return this}})}},"26f9":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +function e(t,e,n){var r=t+" ";switch(n){case"ss":return r+=1===t?"sekunda":2===t||3===t||4===t?"sekunde":"sekundi",r;case"m":return e?"jedna minuta":"jedne minute";case"mm":return r+=1===t?"minuta":2===t||3===t||4===t?"minute":"minuta",r;case"h":return e?"jedan sat":"jednog sata";case"hh":return r+=1===t?"sat":2===t||3===t||4===t?"sata":"sati",r;case"dd":return r+=1===t?"dan":"dana",r;case"MM":return r+=1===t?"mjesec":2===t||3===t||4===t?"mjeseca":"mjeseci",r;case"yy":return r+=1===t?"godina":2===t||3===t||4===t?"godine":"godina",r}}var n=t.defineLocale("bs",{months:"januar_februar_mart_april_maj_juni_juli_august_septembar_oktobar_novembar_decembar".split("_"),monthsShort:"jan._feb._mar._apr._maj._jun._jul._aug._sep._okt._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota".split("_"),weekdaysShort:"ned._pon._uto._sri._čet._pet._sub.".split("_"),weekdaysMin:"ne_po_ut_sr_če_pe_su".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedjelju] [u] LT";case 3:return"[u] [srijedu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[jučer u] LT",lastWeek:function(){switch(this.day()){case 0:case 3:return"[prošlu] dddd [u] LT";case 6:return"[prošle] [subote] [u] LT";case 1:case 2:case 4:case 5:return"[prošli] dddd [u] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"prije %s",s:"par sekundi",ss:e,m:e,mm:e,h:e,hh:e,d:"dan",dd:e,M:"mjesec",MM:e,y:"godinu",yy:e},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}});return n}))},"25f0":function(t,e,n){"use strict";var r=n("6eeb"),i=n("825a"),a=n("d039"),o=n("ad6d"),s="toString",c=RegExp.prototype,u=c[s],l=a((function(){return"/a/b"!=u.call({source:"a",flags:"b"})})),d=u.name!=s;(l||d)&&r(RegExp.prototype,s,(function(){var t=i(this),e=String(t.source),n=t.flags,r=String(void 0===n&&t instanceof RegExp&&!("flags"in c)?o.call(t):n);return"/"+e+"/"+r}),{unsafe:!0})},2626:function(t,e,n){"use strict";var r=n("d066"),i=n("9bf2"),a=n("b622"),o=n("83ab"),s=a("species");t.exports=function(t){var e=r(t),n=i.f;o&&e&&!e[s]&&n(e,s,{configurable:!0,get:function(){return this}})}},"26f9":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t={ss:"sekundė_sekundžių_sekundes",m:"minutė_minutės_minutę",mm:"minutės_minučių_minutes",h:"valanda_valandos_valandą",hh:"valandos_valandų_valandas",d:"diena_dienos_dieną",dd:"dienos_dienų_dienas",M:"mėnuo_mėnesio_mėnesį",MM:"mėnesiai_mėnesių_mėnesius",y:"metai_metų_metus",yy:"metai_metų_metus"};function n(e,t,n,i){return t?"kelios sekundės":i?"kelių sekundžių":"kelias sekundes"}function i(e,t,n,i){return t?o(n)[0]:i?o(n)[1]:o(n)[2]}function r(e){return e%10===0||e>10&&e<20}function o(e){return t[e].split("_")}function a(e,t,n,a){var s=e+" ";return 1===e?s+i(e,t,n[0],a):t?s+(r(e)?o(n)[1]:o(n)[0]):a?s+o(n)[1]:s+(r(e)?o(n)[1]:o(n)[2])}var s=e.defineLocale("lt",{months:{format:"sausio_vasario_kovo_balandžio_gegužės_birželio_liepos_rugpjūčio_rugsėjo_spalio_lapkričio_gruodžio".split("_"),standalone:"sausis_vasaris_kovas_balandis_gegužė_birželis_liepa_rugpjūtis_rugsėjis_spalis_lapkritis_gruodis".split("_"),isFormat:/D[oD]?(\[[^\[\]]*\]|\s)+MMMM?|MMMM?(\[[^\[\]]*\]|\s)+D[oD]?/},monthsShort:"sau_vas_kov_bal_geg_bir_lie_rgp_rgs_spa_lap_grd".split("_"),weekdays:{format:"sekmadienį_pirmadienį_antradienį_trečiadienį_ketvirtadienį_penktadienį_šeštadienį".split("_"),standalone:"sekmadienis_pirmadienis_antradienis_trečiadienis_ketvirtadienis_penktadienis_šeštadienis".split("_"),isFormat:/dddd HH:mm/},weekdaysShort:"Sek_Pir_Ant_Tre_Ket_Pen_Šeš".split("_"),weekdaysMin:"S_P_A_T_K_Pn_Š".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"YYYY [m.] MMMM D [d.]",LLL:"YYYY [m.] MMMM D [d.], HH:mm [val.]",LLLL:"YYYY [m.] MMMM D [d.], dddd, HH:mm [val.]",l:"YYYY-MM-DD",ll:"YYYY [m.] MMMM D [d.]",lll:"YYYY [m.] MMMM D [d.], HH:mm [val.]",llll:"YYYY [m.] MMMM D [d.], ddd, HH:mm [val.]"},calendar:{sameDay:"[Šiandien] LT",nextDay:"[Rytoj] LT",nextWeek:"dddd LT",lastDay:"[Vakar] LT",lastWeek:"[Praėjusį] dddd LT",sameElse:"L"},relativeTime:{future:"po %s",past:"prieš %s",s:n,ss:a,m:i,mm:a,h:i,hh:a,d:i,dd:a,M:i,MM:a,y:i,yy:a},dayOfMonthOrdinalParse:/\d{1,2}-oji/,ordinal:function(e){return e+"-oji"},week:{dow:1,doy:4}});return s}))},2877:function(e,t,n){"use strict";function i(e,t,n,i,r,o,a,s){var c,u="function"===typeof e?e.options:e;if(t&&(u.render=t,u.staticRenderFns=n,u._compiled=!0),i&&(u.functional=!0),o&&(u._scopeId="data-v-"+o),a?(c=function(e){e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,e||"undefined"===typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),r&&r.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(a)},u._ssrRegister=c):r&&(c=s?function(){r.call(this,(u.functional?this.parent:this).$root.$options.shadowRoot)}:r),c)if(u.functional){u._injectStyles=c;var d=u.render;u.render=function(e,t){return c.call(t),d(e,t)}}else{var l=u.beforeCreate;u.beforeCreate=l?[].concat(l,c):[c]}return{exports:e,options:u}}n.d(t,"a",(function(){return i}))},2921:function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e={ss:"sekundė_sekundžių_sekundes",m:"minutė_minutės_minutę",mm:"minutės_minučių_minutes",h:"valanda_valandos_valandą",hh:"valandos_valandų_valandas",d:"diena_dienos_dieną",dd:"dienos_dienų_dienas",M:"mėnuo_mėnesio_mėnesį",MM:"mėnesiai_mėnesių_mėnesius",y:"metai_metų_metus",yy:"metai_metų_metus"};function n(t,e,n,r){return e?"kelios sekundės":r?"kelių sekundžių":"kelias sekundes"}function r(t,e,n,r){return e?a(n)[0]:r?a(n)[1]:a(n)[2]}function i(t){return t%10===0||t>10&&t<20}function a(t){return e[t].split("_")}function o(t,e,n,o){var s=t+" ";return 1===t?s+r(t,e,n[0],o):e?s+(i(t)?a(n)[1]:a(n)[0]):o?s+a(n)[1]:s+(i(t)?a(n)[1]:a(n)[2])}var s=t.defineLocale("lt",{months:{format:"sausio_vasario_kovo_balandžio_gegužės_birželio_liepos_rugpjūčio_rugsėjo_spalio_lapkričio_gruodžio".split("_"),standalone:"sausis_vasaris_kovas_balandis_gegužė_birželis_liepa_rugpjūtis_rugsėjis_spalis_lapkritis_gruodis".split("_"),isFormat:/D[oD]?(\[[^\[\]]*\]|\s)+MMMM?|MMMM?(\[[^\[\]]*\]|\s)+D[oD]?/},monthsShort:"sau_vas_kov_bal_geg_bir_lie_rgp_rgs_spa_lap_grd".split("_"),weekdays:{format:"sekmadienį_pirmadienį_antradienį_trečiadienį_ketvirtadienį_penktadienį_šeštadienį".split("_"),standalone:"sekmadienis_pirmadienis_antradienis_trečiadienis_ketvirtadienis_penktadienis_šeštadienis".split("_"),isFormat:/dddd HH:mm/},weekdaysShort:"Sek_Pir_Ant_Tre_Ket_Pen_Šeš".split("_"),weekdaysMin:"S_P_A_T_K_Pn_Š".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"YYYY [m.] MMMM D [d.]",LLL:"YYYY [m.] MMMM D [d.], HH:mm [val.]",LLLL:"YYYY [m.] MMMM D [d.], dddd, HH:mm [val.]",l:"YYYY-MM-DD",ll:"YYYY [m.] MMMM D [d.]",lll:"YYYY [m.] MMMM D [d.], HH:mm [val.]",llll:"YYYY [m.] MMMM D [d.], ddd, HH:mm [val.]"},calendar:{sameDay:"[Šiandien] LT",nextDay:"[Rytoj] LT",nextWeek:"dddd LT",lastDay:"[Vakar] LT",lastWeek:"[Praėjusį] dddd LT",sameElse:"L"},relativeTime:{future:"po %s",past:"prieš %s",s:n,ss:o,m:r,mm:o,h:r,hh:o,d:r,dd:o,M:r,MM:o,y:r,yy:o},dayOfMonthOrdinalParse:/\d{1,2}-oji/,ordinal:function(t){return t+"-oji"},week:{dow:1,doy:4}});return s}))},2877:function(t,e,n){"use strict";function r(t,e,n,r,i,a,o,s){var c,u="function"===typeof t?t.options:t;if(e&&(u.render=e,u.staticRenderFns=n,u._compiled=!0),r&&(u.functional=!0),a&&(u._scopeId="data-v-"+a),o?(c=function(t){t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,t||"undefined"===typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),i&&i.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(o)},u._ssrRegister=c):i&&(c=s?function(){i.call(this,(u.functional?this.parent:this).$root.$options.shadowRoot)}:i),c)if(u.functional){u._injectStyles=c;var l=u.render;u.render=function(t,e){return c.call(e),l(t,e)}}else{var d=u.beforeCreate;u.beforeCreate=d?[].concat(d,c):[c]}return{exports:t,options:u}}n.d(e,"a",(function(){return r}))},2921:function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t=e.defineLocale("vi",{months:"tháng 1_tháng 2_tháng 3_tháng 4_tháng 5_tháng 6_tháng 7_tháng 8_tháng 9_tháng 10_tháng 11_tháng 12".split("_"),monthsShort:"Thg 01_Thg 02_Thg 03_Thg 04_Thg 05_Thg 06_Thg 07_Thg 08_Thg 09_Thg 10_Thg 11_Thg 12".split("_"),monthsParseExact:!0,weekdays:"chủ nhật_thứ hai_thứ ba_thứ tư_thứ năm_thứ sáu_thứ bảy".split("_"),weekdaysShort:"CN_T2_T3_T4_T5_T6_T7".split("_"),weekdaysMin:"CN_T2_T3_T4_T5_T6_T7".split("_"),weekdaysParseExact:!0,meridiemParse:/sa|ch/i,isPM:function(e){return/^ch$/i.test(e)},meridiem:function(e,t,n){return e<12?n?"sa":"SA":n?"ch":"CH"},longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM [năm] YYYY",LLL:"D MMMM [năm] YYYY HH:mm",LLLL:"dddd, D MMMM [năm] YYYY HH:mm",l:"DD/M/YYYY",ll:"D MMM YYYY",lll:"D MMM YYYY HH:mm",llll:"ddd, D MMM YYYY HH:mm"},calendar:{sameDay:"[Hôm nay lúc] LT",nextDay:"[Ngày mai lúc] LT",nextWeek:"dddd [tuần tới lúc] LT",lastDay:"[Hôm qua lúc] LT",lastWeek:"dddd [tuần trước lúc] LT",sameElse:"L"},relativeTime:{future:"%s tới",past:"%s trước",s:"vài giây",ss:"%d giây",m:"một phút",mm:"%d phút",h:"một giờ",hh:"%d giờ",d:"một ngày",dd:"%d ngày",w:"một tuần",ww:"%d tuần",M:"một tháng",MM:"%d tháng",y:"một năm",yy:"%d năm"},dayOfMonthOrdinalParse:/\d{1,2}/,ordinal:function(e){return e},week:{dow:1,doy:4}});return t}))},"293c":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e=t.defineLocale("vi",{months:"tháng 1_tháng 2_tháng 3_tháng 4_tháng 5_tháng 6_tháng 7_tháng 8_tháng 9_tháng 10_tháng 11_tháng 12".split("_"),monthsShort:"Thg 01_Thg 02_Thg 03_Thg 04_Thg 05_Thg 06_Thg 07_Thg 08_Thg 09_Thg 10_Thg 11_Thg 12".split("_"),monthsParseExact:!0,weekdays:"chủ nhật_thứ hai_thứ ba_thứ tư_thứ năm_thứ sáu_thứ bảy".split("_"),weekdaysShort:"CN_T2_T3_T4_T5_T6_T7".split("_"),weekdaysMin:"CN_T2_T3_T4_T5_T6_T7".split("_"),weekdaysParseExact:!0,meridiemParse:/sa|ch/i,isPM:function(t){return/^ch$/i.test(t)},meridiem:function(t,e,n){return t<12?n?"sa":"SA":n?"ch":"CH"},longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM [năm] YYYY",LLL:"D MMMM [năm] YYYY HH:mm",LLLL:"dddd, D MMMM [năm] YYYY HH:mm",l:"DD/M/YYYY",ll:"D MMM YYYY",lll:"D MMM YYYY HH:mm",llll:"ddd, D MMM YYYY HH:mm"},calendar:{sameDay:"[Hôm nay lúc] LT",nextDay:"[Ngày mai lúc] LT",nextWeek:"dddd [tuần tới lúc] LT",lastDay:"[Hôm qua lúc] LT",lastWeek:"dddd [tuần trước lúc] LT",sameElse:"L"},relativeTime:{future:"%s tới",past:"%s trước",s:"vài giây",ss:"%d giây",m:"một phút",mm:"%d phút",h:"một giờ",hh:"%d giờ",d:"một ngày",dd:"%d ngày",w:"một tuần",ww:"%d tuần",M:"một tháng",MM:"%d tháng",y:"một năm",yy:"%d năm"},dayOfMonthOrdinalParse:/\d{1,2}/,ordinal:function(t){return t},week:{dow:1,doy:4}});return e}))},"293c":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t={words:{ss:["sekund","sekunda","sekundi"],m:["jedan minut","jednog minuta"],mm:["minut","minuta","minuta"],h:["jedan sat","jednog sata"],hh:["sat","sata","sati"],dd:["dan","dana","dana"],MM:["mjesec","mjeseca","mjeseci"],yy:["godina","godine","godina"]},correctGrammaticalCase:function(e,t){return 1===e?t[0]:e>=2&&e<=4?t[1]:t[2]},translate:function(e,n,i){var r=t.words[i];return 1===i.length?n?r[0]:r[1]:e+" "+t.correctGrammaticalCase(e,r)}},n=e.defineLocale("me",{months:"januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar".split("_"),monthsShort:"jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota".split("_"),weekdaysShort:"ned._pon._uto._sri._čet._pet._sub.".split("_"),weekdaysMin:"ne_po_ut_sr_če_pe_su".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sjutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedjelju] [u] LT";case 3:return"[u] [srijedu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[juče u] LT",lastWeek:function(){var e=["[prošle] [nedjelje] [u] LT","[prošlog] [ponedjeljka] [u] LT","[prošlog] [utorka] [u] LT","[prošle] [srijede] [u] LT","[prošlog] [četvrtka] [u] LT","[prošlog] [petka] [u] LT","[prošle] [subote] [u] LT"];return e[this.day()]},sameElse:"L"},relativeTime:{future:"za %s",past:"prije %s",s:"nekoliko sekundi",ss:t.translate,m:t.translate,mm:t.translate,h:t.translate,hh:t.translate,d:"dan",dd:t.translate,M:"mjesec",MM:t.translate,y:"godinu",yy:t.translate},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}});return n}))},"29f3":function(e,t){var n=Object.prototype,i=n.toString;function r(e){return i.call(e)}e.exports=r},"2a62":function(e,t,n){var i=n("825a");e.exports=function(e){var t=e["return"];if(void 0!==t)return i(t.call(e)).value}},"2b27":function(e,t,n){(function(){var t={expires:"1d",path:"; path=/",domain:"",secure:"",sameSite:"; SameSite=Lax"},n={install:function(e){e.prototype.$cookies=this,e.$cookies=this},config:function(e,n,i,r,o){t.expires=e||"1d",t.path=n?"; path="+n:"; path=/",t.domain=i?"; domain="+i:"",t.secure=r?"; Secure":"",t.sameSite=o?"; SameSite="+o:"; SameSite=Lax"},get:function(e){var t=decodeURIComponent(document.cookie.replace(new RegExp("(?:(?:^|.*;)\\s*"+encodeURIComponent(e).replace(/[\-\.\+\*]/g,"\\$&")+"\\s*\\=\\s*([^;]*).*$)|^.*$"),"$1"))||null;if(t&&"{"===t.substring(0,1)&&"}"===t.substring(t.length-1,t.length))try{t=JSON.parse(t)}catch(n){return t}return t},set:function(e,n,i,r,o,a,s){if(!e)throw new Error("Cookie name is not find in first argument.");if(/^(?:expires|max\-age|path|domain|secure|SameSite)$/i.test(e))throw new Error('Cookie key name illegality, Cannot be set to ["expires","max-age","path","domain","secure","SameSite"]\t current key name: '+e);n&&n.constructor===Object&&(n=JSON.stringify(n));var c="";if(i=void 0==i?t.expires:i,i&&0!=i)switch(i.constructor){case Number:c=i===1/0||-1===i?"; expires=Fri, 31 Dec 9999 23:59:59 GMT":"; max-age="+i;break;case String:if(/^(?:\d+(y|m|d|h|min|s))$/i.test(i)){var u=i.replace(/^(\d+)(?:y|m|d|h|min|s)$/i,"$1");switch(i.replace(/^(?:\d+)(y|m|d|h|min|s)$/i,"$1").toLowerCase()){case"m":c="; max-age="+2592e3*+u;break;case"d":c="; max-age="+86400*+u;break;case"h":c="; max-age="+3600*+u;break;case"min":c="; max-age="+60*+u;break;case"s":c="; max-age="+u;break;case"y":c="; max-age="+31104e3*+u;break;default:new Error('unknown exception of "set operation"')}}else c="; expires="+i;break;case Date:c="; expires="+i.toUTCString();break}return document.cookie=encodeURIComponent(e)+"="+encodeURIComponent(n)+c+(o?"; domain="+o:t.domain)+(r?"; path="+r:t.path)+(void 0==a?t.secure:a?"; Secure":"")+(void 0==s?t.sameSite:s?"; SameSite="+s:""),this},remove:function(e,n,i){return!(!e||!this.isKey(e))&&(document.cookie=encodeURIComponent(e)+"=; expires=Thu, 01 Jan 1970 00:00:00 GMT"+(i?"; domain="+i:t.domain)+(n?"; path="+n:t.path)+"; SameSite=Lax",this)},isKey:function(e){return new RegExp("(?:^|;\\s*)"+encodeURIComponent(e).replace(/[\-\.\+\*]/g,"\\$&")+"\\s*\\=").test(document.cookie)},keys:function(){if(!document.cookie)return[];for(var e=document.cookie.replace(/((?:^|\s*;)[^\=]+)(?=;|$)|^\s*|\s*(?:\=[^;]*)?(?:\1|$)/g,"").split(/\s*(?:\=[^;]*)?;\s*/),t=0;t4)return e;for(n=[],i=0;i1&&"0"==r.charAt(0)&&(o=Y.test(r)?16:8,r=r.slice(8==o?1:2)),""===r)a=0;else{if(!(10==o?E:8==o?C:H).test(r))return e;a=parseInt(r,o)}n.push(a)}for(i=0;i=M(256,5-t))return null}else if(a>255)return null;for(s=n.pop(),i=0;i6)return;i=0;while(f()){if(r=null,i>0){if(!("."==f()&&i<4))return;l++}if(!P.test(f()))return;while(P.test(f())){if(o=parseInt(f(),10),null===r)r=o;else{if(0==r)return;r=10*r+o}if(r>255)return;l++}c[u]=256*c[u]+r,i++,2!=i&&4!=i||u++}if(4!=i)return;break}if(":"==f()){if(l++,!f())return}else if(f())return;c[u++]=t}else{if(null!==d)return;l++,u++,d=u}}if(null!==d){a=u-d,u=7;while(0!=u&&a>0)s=c[u],c[u--]=c[d+a-1],c[d+--a]=s}else if(8!=u)return;return c},W=function(e){for(var t=null,n=1,i=null,r=0,o=0;o<8;o++)0!==e[o]?(r>n&&(t=i,n=r),i=null,r=0):(null===i&&(i=o),++r);return r>n&&(t=i,n=r),t},V=function(e){var t,n,i,r;if("number"==typeof e){for(t=[],n=0;n<4;n++)t.unshift(e%256),e=k(e/256);return t.join(".")}if("object"==typeof e){for(t="",i=W(e),n=0;n<8;n++)r&&0===e[n]||(r&&(r=!1),i===n?(t+=n?":":"::",r=!0):(t+=e[n].toString(16),n<7&&(t+=":")));return"["+t+"]"}return e},U={},G=f({},U,{" ":1,'"':1,"<":1,">":1,"`":1}),q=f({},G,{"#":1,"?":1,"{":1,"}":1}),J=f({},q,{"/":1,":":1,";":1,"=":1,"@":1,"[":1,"\\":1,"]":1,"^":1,"|":1}),K=function(e,t){var n=h(e,0);return n>32&&n<127&&!l(t,e)?e:encodeURIComponent(e)},X={ftp:21,file:null,http:80,https:443,ws:80,wss:443},Z=function(e){return l(X,e.scheme)},Q=function(e){return""!=e.username||""!=e.password},ee=function(e){return!e.host||e.cannotBeABaseURL||"file"==e.scheme},te=function(e,t){var n;return 2==e.length&&D.test(e.charAt(0))&&(":"==(n=e.charAt(1))||!t&&"|"==n)},ne=function(e){var t;return e.length>1&&te(e.slice(0,2))&&(2==e.length||"/"===(t=e.charAt(2))||"\\"===t||"?"===t||"#"===t)},ie=function(e){var t=e.path,n=t.length;!n||"file"==e.scheme&&1==n&&te(t[0],!0)||t.pop()},re=function(e){return"."===e||"%2e"===e.toLowerCase()},oe=function(e){return e=e.toLowerCase(),".."===e||"%2e."===e||".%2e"===e||"%2e%2e"===e},ae={},se={},ce={},ue={},de={},le={},fe={},pe={},he={},me={},be={},ge={},ve={},ye={},_e={},Oe={},je={},we={},ke={},Me={},Le={},xe=function(e,t,n,r){var o,a,s,c,u=n||ae,d=0,f="",h=!1,m=!1,b=!1;n||(e.scheme="",e.username="",e.password="",e.host=null,e.port=null,e.path=[],e.query=null,e.fragment=null,e.cannotBeABaseURL=!1,t=t.replace(I,"")),t=t.replace(B,""),o=p(t);while(d<=o.length){switch(a=o[d],u){case ae:if(!a||!D.test(a)){if(n)return x;u=ce;continue}f+=a.toLowerCase(),u=se;break;case se:if(a&&(A.test(a)||"+"==a||"-"==a||"."==a))f+=a.toLowerCase();else{if(":"!=a){if(n)return x;f="",u=ce,d=0;continue}if(n&&(Z(e)!=l(X,f)||"file"==f&&(Q(e)||null!==e.port)||"file"==e.scheme&&!e.host))return;if(e.scheme=f,n)return void(Z(e)&&X[e.scheme]==e.port&&(e.port=null));f="","file"==e.scheme?u=ye:Z(e)&&r&&r.scheme==e.scheme?u=ue:Z(e)?u=pe:"/"==o[d+1]?(u=de,d++):(e.cannotBeABaseURL=!0,e.path.push(""),u=ke)}break;case ce:if(!r||r.cannotBeABaseURL&&"#"!=a)return x;if(r.cannotBeABaseURL&&"#"==a){e.scheme=r.scheme,e.path=r.path.slice(),e.query=r.query,e.fragment="",e.cannotBeABaseURL=!0,u=Le;break}u="file"==r.scheme?ye:le;continue;case ue:if("/"!=a||"/"!=o[d+1]){u=le;continue}u=he,d++;break;case de:if("/"==a){u=me;break}u=we;continue;case le:if(e.scheme=r.scheme,a==i)e.username=r.username,e.password=r.password,e.host=r.host,e.port=r.port,e.path=r.path.slice(),e.query=r.query;else if("/"==a||"\\"==a&&Z(e))u=fe;else if("?"==a)e.username=r.username,e.password=r.password,e.host=r.host,e.port=r.port,e.path=r.path.slice(),e.query="",u=Me;else{if("#"!=a){e.username=r.username,e.password=r.password,e.host=r.host,e.port=r.port,e.path=r.path.slice(),e.path.pop(),u=we;continue}e.username=r.username,e.password=r.password,e.host=r.host,e.port=r.port,e.path=r.path.slice(),e.query=r.query,e.fragment="",u=Le}break;case fe:if(!Z(e)||"/"!=a&&"\\"!=a){if("/"!=a){e.username=r.username,e.password=r.password,e.host=r.host,e.port=r.port,u=we;continue}u=me}else u=he;break;case pe:if(u=he,"/"!=a||"/"!=f.charAt(d+1))continue;d++;break;case he:if("/"!=a&&"\\"!=a){u=me;continue}break;case me:if("@"==a){h&&(f="%40"+f),h=!0,s=p(f);for(var g=0;g65535)return S;e.port=Z(e)&&_===X[e.scheme]?null:_,f=""}if(n)return;u=je;continue}return S}f+=a;break;case ye:if(e.scheme="file","/"==a||"\\"==a)u=_e;else{if(!r||"file"!=r.scheme){u=we;continue}if(a==i)e.host=r.host,e.path=r.path.slice(),e.query=r.query;else if("?"==a)e.host=r.host,e.path=r.path.slice(),e.query="",u=Me;else{if("#"!=a){ne(o.slice(d).join(""))||(e.host=r.host,e.path=r.path.slice(),ie(e)),u=we;continue}e.host=r.host,e.path=r.path.slice(),e.query=r.query,e.fragment="",u=Le}}break;case _e:if("/"==a||"\\"==a){u=Oe;break}r&&"file"==r.scheme&&!ne(o.slice(d).join(""))&&(te(r.path[0],!0)?e.path.push(r.path[0]):e.host=r.host),u=we;continue;case Oe:if(a==i||"/"==a||"\\"==a||"?"==a||"#"==a){if(!n&&te(f))u=we;else if(""==f){if(e.host="",n)return;u=je}else{if(c=R(e,f),c)return c;if("localhost"==e.host&&(e.host=""),n)return;f="",u=je}continue}f+=a;break;case je:if(Z(e)){if(u=we,"/"!=a&&"\\"!=a)continue}else if(n||"?"!=a)if(n||"#"!=a){if(a!=i&&(u=we,"/"!=a))continue}else e.fragment="",u=Le;else e.query="",u=Me;break;case we:if(a==i||"/"==a||"\\"==a&&Z(e)||!n&&("?"==a||"#"==a)){if(oe(f)?(ie(e),"/"==a||"\\"==a&&Z(e)||e.path.push("")):re(f)?"/"==a||"\\"==a&&Z(e)||e.path.push(""):("file"==e.scheme&&!e.path.length&&te(f)&&(e.host&&(e.host=""),f=f.charAt(0)+":"),e.path.push(f)),f="","file"==e.scheme&&(a==i||"?"==a||"#"==a))while(e.path.length>1&&""===e.path[0])e.path.shift();"?"==a?(e.query="",u=Me):"#"==a&&(e.fragment="",u=Le)}else f+=K(a,q);break;case ke:"?"==a?(e.query="",u=Me):"#"==a?(e.fragment="",u=Le):a!=i&&(e.path[0]+=K(a,U));break;case Me:n||"#"!=a?a!=i&&("'"==a&&Z(e)?e.query+="%27":e.query+="#"==a?"%23":K(a,U)):(e.fragment="",u=Le);break;case Le:a!=i&&(e.fragment+=K(a,G));break}d++}},Te=function(e){var t,n,i=d(this,Te,"URL"),r=arguments.length>1?arguments[1]:void 0,a=String(e),s=j(i,{type:"URL"});if(void 0!==r)if(r instanceof Te)t=w(r);else if(n=xe(t={},String(r)),n)throw TypeError(n);if(n=xe(s,a,null,t),n)throw TypeError(n);var c=s.searchParams=new _,u=O(c);u.updateSearchParams(s.query),u.updateURL=function(){s.query=String(c)||null},o||(i.href=De.call(i),i.origin=Ae.call(i),i.protocol=Pe.call(i),i.username=Ye.call(i),i.password=Ce.call(i),i.host=Ee.call(i),i.hostname=He.call(i),i.port=$e.call(i),i.pathname=Fe.call(i),i.search=Ie.call(i),i.searchParams=Be.call(i),i.hash=Re.call(i))},Se=Te.prototype,De=function(){var e=w(this),t=e.scheme,n=e.username,i=e.password,r=e.host,o=e.port,a=e.path,s=e.query,c=e.fragment,u=t+":";return null!==r?(u+="//",Q(e)&&(u+=n+(i?":"+i:"")+"@"),u+=V(r),null!==o&&(u+=":"+o)):"file"==t&&(u+="//"),u+=e.cannotBeABaseURL?a[0]:a.length?"/"+a.join("/"):"",null!==s&&(u+="?"+s),null!==c&&(u+="#"+c),u},Ae=function(){var e=w(this),t=e.scheme,n=e.port;if("blob"==t)try{return new Te(t.path[0]).origin}catch(i){return"null"}return"file"!=t&&Z(e)?t+"://"+V(e.host)+(null!==n?":"+n:""):"null"},Pe=function(){return w(this).scheme+":"},Ye=function(){return w(this).username},Ce=function(){return w(this).password},Ee=function(){var e=w(this),t=e.host,n=e.port;return null===t?"":null===n?V(t):V(t)+":"+n},He=function(){var e=w(this).host;return null===e?"":V(e)},$e=function(){var e=w(this).port;return null===e?"":String(e)},Fe=function(){var e=w(this),t=e.path;return e.cannotBeABaseURL?t[0]:t.length?"/"+t.join("/"):""},Ie=function(){var e=w(this).query;return e?"?"+e:""},Be=function(){return w(this).searchParams},Re=function(){var e=w(this).fragment;return e?"#"+e:""},Ne=function(e,t){return{get:e,set:t,configurable:!0,enumerable:!0}};if(o&&c(Se,{href:Ne(De,(function(e){var t=w(this),n=String(e),i=xe(t,n);if(i)throw TypeError(i);O(t.searchParams).updateSearchParams(t.query)})),origin:Ne(Ae),protocol:Ne(Pe,(function(e){var t=w(this);xe(t,String(e)+":",ae)})),username:Ne(Ye,(function(e){var t=w(this),n=p(String(e));if(!ee(t)){t.username="";for(var i=0;i=2&&t<=4?e[1]:e[2]},translate:function(t,n,r){var i=e.words[r];return 1===r.length?n?i[0]:i[1]:t+" "+e.correctGrammaticalCase(t,i)}},n=t.defineLocale("me",{months:"januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar".split("_"),monthsShort:"jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota".split("_"),weekdaysShort:"ned._pon._uto._sri._čet._pet._sub.".split("_"),weekdaysMin:"ne_po_ut_sr_če_pe_su".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sjutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedjelju] [u] LT";case 3:return"[u] [srijedu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[juče u] LT",lastWeek:function(){var t=["[prošle] [nedjelje] [u] LT","[prošlog] [ponedjeljka] [u] LT","[prošlog] [utorka] [u] LT","[prošle] [srijede] [u] LT","[prošlog] [četvrtka] [u] LT","[prošlog] [petka] [u] LT","[prošle] [subote] [u] LT"];return t[this.day()]},sameElse:"L"},relativeTime:{future:"za %s",past:"prije %s",s:"nekoliko sekundi",ss:e.translate,m:e.translate,mm:e.translate,h:e.translate,hh:e.translate,d:"dan",dd:e.translate,M:"mjesec",MM:e.translate,y:"godinu",yy:e.translate},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}});return n}))},"29f3":function(t,e){var n=Object.prototype,r=n.toString;function i(t){return r.call(t)}t.exports=i},"2a62":function(t,e,n){var r=n("825a");t.exports=function(t){var e=t["return"];if(void 0!==e)return r(e.call(t)).value}},"2b27":function(t,e,n){(function(){var e={expires:"1d",path:"; path=/",domain:"",secure:"",sameSite:"; SameSite=Lax"},n={install:function(t){t.prototype.$cookies=this,t.$cookies=this},config:function(t,n,r,i,a){e.expires=t||"1d",e.path=n?"; path="+n:"; path=/",e.domain=r?"; domain="+r:"",e.secure=i?"; Secure":"",e.sameSite=a?"; SameSite="+a:"; SameSite=Lax"},get:function(t){var e=decodeURIComponent(document.cookie.replace(new RegExp("(?:(?:^|.*;)\\s*"+encodeURIComponent(t).replace(/[\-\.\+\*]/g,"\\$&")+"\\s*\\=\\s*([^;]*).*$)|^.*$"),"$1"))||null;if(e&&"{"===e.substring(0,1)&&"}"===e.substring(e.length-1,e.length))try{e=JSON.parse(e)}catch(n){return e}return e},set:function(t,n,r,i,a,o,s){if(!t)throw new Error("Cookie name is not find in first argument.");if(/^(?:expires|max\-age|path|domain|secure|SameSite)$/i.test(t))throw new Error('Cookie key name illegality, Cannot be set to ["expires","max-age","path","domain","secure","SameSite"]\t current key name: '+t);n&&n.constructor===Object&&(n=JSON.stringify(n));var c="";if(r=void 0==r?e.expires:r,r&&0!=r)switch(r.constructor){case Number:c=r===1/0||-1===r?"; expires=Fri, 31 Dec 9999 23:59:59 GMT":"; max-age="+r;break;case String:if(/^(?:\d+(y|m|d|h|min|s))$/i.test(r)){var u=r.replace(/^(\d+)(?:y|m|d|h|min|s)$/i,"$1");switch(r.replace(/^(?:\d+)(y|m|d|h|min|s)$/i,"$1").toLowerCase()){case"m":c="; max-age="+2592e3*+u;break;case"d":c="; max-age="+86400*+u;break;case"h":c="; max-age="+3600*+u;break;case"min":c="; max-age="+60*+u;break;case"s":c="; max-age="+u;break;case"y":c="; max-age="+31104e3*+u;break;default:new Error('unknown exception of "set operation"')}}else c="; expires="+r;break;case Date:c="; expires="+r.toUTCString();break}return document.cookie=encodeURIComponent(t)+"="+encodeURIComponent(n)+c+(a?"; domain="+a:e.domain)+(i?"; path="+i:e.path)+(void 0==o?e.secure:o?"; Secure":"")+(void 0==s?e.sameSite:s?"; SameSite="+s:""),this},remove:function(t,n,r){return!(!t||!this.isKey(t))&&(document.cookie=encodeURIComponent(t)+"=; expires=Thu, 01 Jan 1970 00:00:00 GMT"+(r?"; domain="+r:e.domain)+(n?"; path="+n:e.path)+"; SameSite=Lax",this)},isKey:function(t){return new RegExp("(?:^|;\\s*)"+encodeURIComponent(t).replace(/[\-\.\+\*]/g,"\\$&")+"\\s*\\=").test(document.cookie)},keys:function(){if(!document.cookie)return[];for(var t=document.cookie.replace(/((?:^|\s*;)[^\=]+)(?=;|$)|^\s*|\s*(?:\=[^;]*)?(?:\1|$)/g,"").split(/\s*(?:\=[^;]*)?;\s*/),e=0;e4)return t;for(n=[],r=0;r1&&"0"==i.charAt(0)&&(a=C.test(i)?16:8,i=i.slice(8==a?1:2)),""===i)o=0;else{if(!(10==a?H:8==a?E:A).test(i))return t;o=parseInt(i,a)}n.push(o)}for(r=0;r=L(256,5-e))return null}else if(o>255)return null;for(s=n.pop(),r=0;r6)return;r=0;while(f()){if(i=null,r>0){if(!("."==f()&&r<4))return;d++}if(!P.test(f()))return;while(P.test(f())){if(a=parseInt(f(),10),null===i)i=a;else{if(0==i)return;i=10*i+a}if(i>255)return;d++}c[u]=256*c[u]+i,r++,2!=r&&4!=r||u++}if(4!=r)return;break}if(":"==f()){if(d++,!f())return}else if(f())return;c[u++]=e}else{if(null!==l)return;d++,u++,l=u}}if(null!==l){o=u-l,u=7;while(0!=u&&o>0)s=c[u],c[u--]=c[l+o-1],c[l+--o]=s}else if(8!=u)return;return c},z=function(t){for(var e=null,n=1,r=null,i=0,a=0;a<8;a++)0!==t[a]?(i>n&&(e=r,n=i),r=null,i=0):(null===r&&(r=a),++i);return i>n&&(e=r,n=i),e},W=function(t){var e,n,r,i;if("number"==typeof t){for(e=[],n=0;n<4;n++)e.unshift(t%256),t=M(t/256);return e.join(".")}if("object"==typeof t){for(e="",r=z(t),n=0;n<8;n++)i&&0===t[n]||(i&&(i=!1),r===n?(e+=n?":":"::",i=!0):(e+=t[n].toString(16),n<7&&(e+=":")));return"["+e+"]"}return t},U={},G=f({},U,{" ":1,'"':1,"<":1,">":1,"`":1}),J=f({},G,{"#":1,"?":1,"{":1,"}":1}),q=f({},J,{"/":1,":":1,";":1,"=":1,"@":1,"[":1,"\\":1,"]":1,"^":1,"|":1}),K=function(t,e){var n=p(t,0);return n>32&&n<127&&!d(e,t)?t:encodeURIComponent(t)},X={ftp:21,file:null,http:80,https:443,ws:80,wss:443},Z=function(t){return d(X,t.scheme)},Q=function(t){return""!=t.username||""!=t.password},tt=function(t){return!t.host||t.cannotBeABaseURL||"file"==t.scheme},et=function(t,e){var n;return 2==t.length&&Y.test(t.charAt(0))&&(":"==(n=t.charAt(1))||!e&&"|"==n)},nt=function(t){var e;return t.length>1&&et(t.slice(0,2))&&(2==t.length||"/"===(e=t.charAt(2))||"\\"===e||"?"===e||"#"===e)},rt=function(t){var e=t.path,n=e.length;!n||"file"==t.scheme&&1==n&&et(e[0],!0)||e.pop()},it=function(t){return"."===t||"%2e"===t.toLowerCase()},at=function(t){return t=t.toLowerCase(),".."===t||"%2e."===t||".%2e"===t||"%2e%2e"===t},ot={},st={},ct={},ut={},lt={},dt={},ft={},ht={},pt={},mt={},bt={},vt={},_t={},gt={},yt={},Ot={},jt={},wt={},Mt={},Lt={},kt={},Tt=function(t,e,n,i){var a,o,s,c,u=n||ot,l=0,f="",p=!1,m=!1,b=!1;n||(t.scheme="",t.username="",t.password="",t.host=null,t.port=null,t.path=[],t.query=null,t.fragment=null,t.cannotBeABaseURL=!1,e=e.replace(I,"")),e=e.replace(B,""),a=h(e);while(l<=a.length){switch(o=a[l],u){case ot:if(!o||!Y.test(o)){if(n)return T;u=ct;continue}f+=o.toLowerCase(),u=st;break;case st:if(o&&(x.test(o)||"+"==o||"-"==o||"."==o))f+=o.toLowerCase();else{if(":"!=o){if(n)return T;f="",u=ct,l=0;continue}if(n&&(Z(t)!=d(X,f)||"file"==f&&(Q(t)||null!==t.port)||"file"==t.scheme&&!t.host))return;if(t.scheme=f,n)return void(Z(t)&&X[t.scheme]==t.port&&(t.port=null));f="","file"==t.scheme?u=gt:Z(t)&&i&&i.scheme==t.scheme?u=ut:Z(t)?u=ht:"/"==a[l+1]?(u=lt,l++):(t.cannotBeABaseURL=!0,t.path.push(""),u=Mt)}break;case ct:if(!i||i.cannotBeABaseURL&&"#"!=o)return T;if(i.cannotBeABaseURL&&"#"==o){t.scheme=i.scheme,t.path=i.path.slice(),t.query=i.query,t.fragment="",t.cannotBeABaseURL=!0,u=kt;break}u="file"==i.scheme?gt:dt;continue;case ut:if("/"!=o||"/"!=a[l+1]){u=dt;continue}u=pt,l++;break;case lt:if("/"==o){u=mt;break}u=wt;continue;case dt:if(t.scheme=i.scheme,o==r)t.username=i.username,t.password=i.password,t.host=i.host,t.port=i.port,t.path=i.path.slice(),t.query=i.query;else if("/"==o||"\\"==o&&Z(t))u=ft;else if("?"==o)t.username=i.username,t.password=i.password,t.host=i.host,t.port=i.port,t.path=i.path.slice(),t.query="",u=Lt;else{if("#"!=o){t.username=i.username,t.password=i.password,t.host=i.host,t.port=i.port,t.path=i.path.slice(),t.path.pop(),u=wt;continue}t.username=i.username,t.password=i.password,t.host=i.host,t.port=i.port,t.path=i.path.slice(),t.query=i.query,t.fragment="",u=kt}break;case ft:if(!Z(t)||"/"!=o&&"\\"!=o){if("/"!=o){t.username=i.username,t.password=i.password,t.host=i.host,t.port=i.port,u=wt;continue}u=mt}else u=pt;break;case ht:if(u=pt,"/"!=o||"/"!=f.charAt(l+1))continue;l++;break;case pt:if("/"!=o&&"\\"!=o){u=mt;continue}break;case mt:if("@"==o){p&&(f="%40"+f),p=!0,s=h(f);for(var v=0;v65535)return S;t.port=Z(t)&&y===X[t.scheme]?null:y,f=""}if(n)return;u=jt;continue}return S}f+=o;break;case gt:if(t.scheme="file","/"==o||"\\"==o)u=yt;else{if(!i||"file"!=i.scheme){u=wt;continue}if(o==r)t.host=i.host,t.path=i.path.slice(),t.query=i.query;else if("?"==o)t.host=i.host,t.path=i.path.slice(),t.query="",u=Lt;else{if("#"!=o){nt(a.slice(l).join(""))||(t.host=i.host,t.path=i.path.slice(),rt(t)),u=wt;continue}t.host=i.host,t.path=i.path.slice(),t.query=i.query,t.fragment="",u=kt}}break;case yt:if("/"==o||"\\"==o){u=Ot;break}i&&"file"==i.scheme&&!nt(a.slice(l).join(""))&&(et(i.path[0],!0)?t.path.push(i.path[0]):t.host=i.host),u=wt;continue;case Ot:if(o==r||"/"==o||"\\"==o||"?"==o||"#"==o){if(!n&&et(f))u=wt;else if(""==f){if(t.host="",n)return;u=jt}else{if(c=R(t,f),c)return c;if("localhost"==t.host&&(t.host=""),n)return;f="",u=jt}continue}f+=o;break;case jt:if(Z(t)){if(u=wt,"/"!=o&&"\\"!=o)continue}else if(n||"?"!=o)if(n||"#"!=o){if(o!=r&&(u=wt,"/"!=o))continue}else t.fragment="",u=kt;else t.query="",u=Lt;break;case wt:if(o==r||"/"==o||"\\"==o&&Z(t)||!n&&("?"==o||"#"==o)){if(at(f)?(rt(t),"/"==o||"\\"==o&&Z(t)||t.path.push("")):it(f)?"/"==o||"\\"==o&&Z(t)||t.path.push(""):("file"==t.scheme&&!t.path.length&&et(f)&&(t.host&&(t.host=""),f=f.charAt(0)+":"),t.path.push(f)),f="","file"==t.scheme&&(o==r||"?"==o||"#"==o))while(t.path.length>1&&""===t.path[0])t.path.shift();"?"==o?(t.query="",u=Lt):"#"==o&&(t.fragment="",u=kt)}else f+=K(o,J);break;case Mt:"?"==o?(t.query="",u=Lt):"#"==o?(t.fragment="",u=kt):o!=r&&(t.path[0]+=K(o,U));break;case Lt:n||"#"!=o?o!=r&&("'"==o&&Z(t)?t.query+="%27":t.query+="#"==o?"%23":K(o,U)):(t.fragment="",u=kt);break;case kt:o!=r&&(t.fragment+=K(o,G));break}l++}},Dt=function(t){var e,n,r=l(this,Dt,"URL"),i=arguments.length>1?arguments[1]:void 0,o=String(t),s=j(r,{type:"URL"});if(void 0!==i)if(i instanceof Dt)e=w(i);else if(n=Tt(e={},String(i)),n)throw TypeError(n);if(n=Tt(s,o,null,e),n)throw TypeError(n);var c=s.searchParams=new y,u=O(c);u.updateSearchParams(s.query),u.updateURL=function(){s.query=String(c)||null},a||(r.href=Yt.call(r),r.origin=xt.call(r),r.protocol=Pt.call(r),r.username=Ct.call(r),r.password=Et.call(r),r.host=Ht.call(r),r.hostname=At.call(r),r.port=$t.call(r),r.pathname=Ft.call(r),r.search=It.call(r),r.searchParams=Bt.call(r),r.hash=Rt.call(r))},St=Dt.prototype,Yt=function(){var t=w(this),e=t.scheme,n=t.username,r=t.password,i=t.host,a=t.port,o=t.path,s=t.query,c=t.fragment,u=e+":";return null!==i?(u+="//",Q(t)&&(u+=n+(r?":"+r:"")+"@"),u+=W(i),null!==a&&(u+=":"+a)):"file"==e&&(u+="//"),u+=t.cannotBeABaseURL?o[0]:o.length?"/"+o.join("/"):"",null!==s&&(u+="?"+s),null!==c&&(u+="#"+c),u},xt=function(){var t=w(this),e=t.scheme,n=t.port;if("blob"==e)try{return new Dt(e.path[0]).origin}catch(r){return"null"}return"file"!=e&&Z(t)?e+"://"+W(t.host)+(null!==n?":"+n:""):"null"},Pt=function(){return w(this).scheme+":"},Ct=function(){return w(this).username},Et=function(){return w(this).password},Ht=function(){var t=w(this),e=t.host,n=t.port;return null===e?"":null===n?W(e):W(e)+":"+n},At=function(){var t=w(this).host;return null===t?"":W(t)},$t=function(){var t=w(this).port;return null===t?"":String(t)},Ft=function(){var t=w(this),e=t.path;return t.cannotBeABaseURL?e[0]:e.length?"/"+e.join("/"):""},It=function(){var t=w(this).query;return t?"?"+t:""},Bt=function(){return w(this).searchParams},Rt=function(){var t=w(this).fragment;return t?"#"+t:""},Nt=function(t,e){return{get:t,set:e,configurable:!0,enumerable:!0}};if(a&&c(St,{href:Nt(Yt,(function(t){var e=w(this),n=String(t),r=Tt(e,n);if(r)throw TypeError(r);O(e.searchParams).updateSearchParams(e.query)})),origin:Nt(xt),protocol:Nt(Pt,(function(t){var e=w(this);Tt(e,String(t)+":",ot)})),username:Nt(Ct,(function(t){var e=w(this),n=h(String(t));if(!tt(e)){e.username="";for(var r=0;r1&&void 0!==arguments[1]?arguments[1]:{};return e.reduce((function(e,n){var i=n.passengers[0],r="function"===typeof i?i(t):n.passengers;return e.concat(r)}),[])}function p(e,t){return e.map((function(e,t){return[t,e]})).sort((function(e,n){return t(e[1],n[1])||e[0]-n[0]})).map((function(e){return e[1]}))}function h(e,t){return t.reduce((function(t,n){return e.hasOwnProperty(n)&&(t[n]=e[n]),t}),{})}var m={},b={},g={},v=r.extend({data:function(){return{transports:m,targets:b,sources:g,trackInstances:d}},methods:{open:function(e){if(d){var t=e.to,n=e.from,i=e.passengers,o=e.order,a=void 0===o?1/0:o;if(t&&n&&i){var s={to:t,from:n,passengers:l(i),order:a},c=Object.keys(this.transports);-1===c.indexOf(t)&&r.set(this.transports,t,[]);var u=this.$_getTransportIndex(s),f=this.transports[t].slice(0);-1===u?f.push(s):f[u]=s,this.transports[t]=p(f,(function(e,t){return e.order-t.order}))}}},close:function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=e.to,i=e.from;if(n&&(i||!1!==t)&&this.transports[n])if(t)this.transports[n]=[];else{var r=this.$_getTransportIndex(e);if(r>=0){var o=this.transports[n].slice(0);o.splice(r,1),this.transports[n]=o}}},registerTarget:function(e,t,n){d&&(this.trackInstances&&!n&&this.targets[e]&&console.warn("[portal-vue]: Target ".concat(e," already exists")),this.$set(this.targets,e,Object.freeze([t])))},unregisterTarget:function(e){this.$delete(this.targets,e)},registerSource:function(e,t,n){d&&(this.trackInstances&&!n&&this.sources[e]&&console.warn("[portal-vue]: source ".concat(e," already exists")),this.$set(this.sources,e,Object.freeze([t])))},unregisterSource:function(e){this.$delete(this.sources,e)},hasTarget:function(e){return!(!this.targets[e]||!this.targets[e][0])},hasSource:function(e){return!(!this.sources[e]||!this.sources[e][0])},hasContentFor:function(e){return!!this.transports[e]&&!!this.transports[e].length},$_getTransportIndex:function(e){var t=e.to,n=e.from;for(var i in this.transports[t])if(this.transports[t][i].from===n)return+i;return-1}}}),y=new v(m),_=1,O=r.extend({name:"portal",props:{disabled:{type:Boolean},name:{type:String,default:function(){return String(_++)}},order:{type:Number,default:0},slim:{type:Boolean},slotProps:{type:Object,default:function(){return{}}},tag:{type:String,default:"DIV"},to:{type:String,default:function(){return String(Math.round(1e7*Math.random()))}}},created:function(){var e=this;this.$nextTick((function(){y.registerSource(e.name,e)}))},mounted:function(){this.disabled||this.sendUpdate()},updated:function(){this.disabled?this.clear():this.sendUpdate()},beforeDestroy:function(){y.unregisterSource(this.name),this.clear()},watch:{to:function(e,t){t&&t!==e&&this.clear(t),this.sendUpdate()}},methods:{clear:function(e){var t={from:this.name,to:e||this.to};y.close(t)},normalizeSlots:function(){return this.$scopedSlots.default?[this.$scopedSlots.default]:this.$slots.default},normalizeOwnChildren:function(e){return"function"===typeof e?e(this.slotProps):e},sendUpdate:function(){var e=this.normalizeSlots();if(e){var t={from:this.name,to:this.to,passengers:a(e),order:this.order};y.open(t)}else this.clear()}},render:function(e){var t=this.$slots.default||this.$scopedSlots.default||[],n=this.tag;return t&&this.disabled?t.length<=1&&this.slim?this.normalizeOwnChildren(t)[0]:e(n,[this.normalizeOwnChildren(t)]):this.slim?e():e(n,{class:{"v-portal":!0},style:{display:"none"},key:"v-portal-placeholder"})}}),j=r.extend({name:"portalTarget",props:{multiple:{type:Boolean,default:!1},name:{type:String,required:!0},slim:{type:Boolean,default:!1},slotProps:{type:Object,default:function(){return{}}},tag:{type:String,default:"div"},transition:{type:[String,Object,Function]}},data:function(){return{transports:y.transports,firstRender:!0}},created:function(){var e=this;this.$nextTick((function(){y.registerTarget(e.name,e)}))},watch:{ownTransports:function(){this.$emit("change",this.children().length>0)},name:function(e,t){y.unregisterTarget(t),y.registerTarget(e,this)}},mounted:function(){var e=this;this.transition&&this.$nextTick((function(){e.firstRender=!1}))},beforeDestroy:function(){y.unregisterTarget(this.name)},computed:{ownTransports:function(){var e=this.transports[this.name]||[];return this.multiple?e:0===e.length?[]:[e[e.length-1]]},passengers:function(){return f(this.ownTransports,this.slotProps)}},methods:{children:function(){return 0!==this.passengers.length?this.passengers:this.$scopedSlots.default?this.$scopedSlots.default(this.slotProps):this.$slots.default||[]},noWrapper:function(){var e=this.slim&&!this.transition;return e&&this.children().length>1&&console.warn("[portal-vue]: PortalTarget with `slim` option received more than one child element."),e}},render:function(e){var t=this.noWrapper(),n=this.children(),i=this.transition||this.tag;return t?n[0]:this.slim&&!i?e():e(i,{props:{tag:this.transition&&this.tag?this.tag:void 0},class:{"vue-portal-target":!0}},n)}}),w=0,k=["disabled","name","order","slim","slotProps","tag","to"],M=["multiple","transition"],L=r.extend({name:"MountingPortal",inheritAttrs:!1,props:{append:{type:[Boolean,String]},bail:{type:Boolean},mountTo:{type:String,required:!0},disabled:{type:Boolean},name:{type:String,default:function(){return"mounted_"+String(w++)}},order:{type:Number,default:0},slim:{type:Boolean},slotProps:{type:Object,default:function(){return{}}},tag:{type:String,default:"DIV"},to:{type:String,default:function(){return String(Math.round(1e7*Math.random()))}},multiple:{type:Boolean,default:!1},targetSlim:{type:Boolean},targetSlotProps:{type:Object,default:function(){return{}}},targetTag:{type:String,default:"div"},transition:{type:[String,Object,Function]}},created:function(){if("undefined"!==typeof document){var e=document.querySelector(this.mountTo);if(e){var t=this.$props;if(y.targets[t.name])t.bail?console.warn("[portal-vue]: Target ".concat(t.name," is already mounted.\n Aborting because 'bail: true' is set")):this.portalTarget=y.targets[t.name];else{var n=t.append;if(n){var i="string"===typeof n?n:"DIV",r=document.createElement(i);e.appendChild(r),e=r}var o=h(this.$props,M);o.slim=this.targetSlim,o.tag=this.targetTag,o.slotProps=this.targetSlotProps,o.name=this.to,this.portalTarget=new j({el:e,parent:this.$parent||this,propsData:o})}}else console.error("[portal-vue]: Mount Point '".concat(this.mountTo,"' not found in document"))}},beforeDestroy:function(){var e=this.portalTarget;if(this.append){var t=e.$el;t.parentNode.removeChild(t)}e.$destroy()},render:function(e){if(!this.portalTarget)return console.warn("[portal-vue] Target wasn't mounted"),e();if(!this.$scopedSlots.manual){var t=h(this.$props,k);return e(O,{props:t,attrs:this.$attrs,on:this.$listeners,scopedSlots:this.$scopedSlots},this.$slots.default)}var n=this.$scopedSlots.manual({to:this.to});return Array.isArray(n)&&(n=n[0]),n||e()}});function x(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};e.component(t.portalName||"Portal",O),e.component(t.portalTargetName||"PortalTarget",j),e.component(t.MountingPortalName||"MountingPortal",L)}var T={install:x};t.default=T,t.Portal=O,t.PortalTarget=j,t.MountingPortal=L,t.Wormhole=y},"2bfb":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; + */function r(t){return t&&"object"===typeof t&&"default"in t?t["default"]:t}Object.defineProperty(e,"__esModule",{value:!0});var i=r(n("a026"));function a(t){return a="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"===typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},a(t)}function o(t){return s(t)||c(t)||u()}function s(t){if(Array.isArray(t)){for(var e=0,n=new Array(t.length);e1&&void 0!==arguments[1]?arguments[1]:{};return t.reduce((function(t,n){var r=n.passengers[0],i="function"===typeof r?r(e):n.passengers;return t.concat(i)}),[])}function h(t,e){return t.map((function(t,e){return[e,t]})).sort((function(t,n){return e(t[1],n[1])||t[0]-n[0]})).map((function(t){return t[1]}))}function p(t,e){return e.reduce((function(e,n){return t.hasOwnProperty(n)&&(e[n]=t[n]),e}),{})}var m={},b={},v={},_=i.extend({data:function(){return{transports:m,targets:b,sources:v,trackInstances:l}},methods:{open:function(t){if(l){var e=t.to,n=t.from,r=t.passengers,a=t.order,o=void 0===a?1/0:a;if(e&&n&&r){var s={to:e,from:n,passengers:d(r),order:o},c=Object.keys(this.transports);-1===c.indexOf(e)&&i.set(this.transports,e,[]);var u=this.$_getTransportIndex(s),f=this.transports[e].slice(0);-1===u?f.push(s):f[u]=s,this.transports[e]=h(f,(function(t,e){return t.order-e.order}))}}},close:function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=t.to,r=t.from;if(n&&(r||!1!==e)&&this.transports[n])if(e)this.transports[n]=[];else{var i=this.$_getTransportIndex(t);if(i>=0){var a=this.transports[n].slice(0);a.splice(i,1),this.transports[n]=a}}},registerTarget:function(t,e,n){l&&(this.trackInstances&&!n&&this.targets[t]&&console.warn("[portal-vue]: Target ".concat(t," already exists")),this.$set(this.targets,t,Object.freeze([e])))},unregisterTarget:function(t){this.$delete(this.targets,t)},registerSource:function(t,e,n){l&&(this.trackInstances&&!n&&this.sources[t]&&console.warn("[portal-vue]: source ".concat(t," already exists")),this.$set(this.sources,t,Object.freeze([e])))},unregisterSource:function(t){this.$delete(this.sources,t)},hasTarget:function(t){return!(!this.targets[t]||!this.targets[t][0])},hasSource:function(t){return!(!this.sources[t]||!this.sources[t][0])},hasContentFor:function(t){return!!this.transports[t]&&!!this.transports[t].length},$_getTransportIndex:function(t){var e=t.to,n=t.from;for(var r in this.transports[e])if(this.transports[e][r].from===n)return+r;return-1}}}),g=new _(m),y=1,O=i.extend({name:"portal",props:{disabled:{type:Boolean},name:{type:String,default:function(){return String(y++)}},order:{type:Number,default:0},slim:{type:Boolean},slotProps:{type:Object,default:function(){return{}}},tag:{type:String,default:"DIV"},to:{type:String,default:function(){return String(Math.round(1e7*Math.random()))}}},created:function(){var t=this;this.$nextTick((function(){g.registerSource(t.name,t)}))},mounted:function(){this.disabled||this.sendUpdate()},updated:function(){this.disabled?this.clear():this.sendUpdate()},beforeDestroy:function(){g.unregisterSource(this.name),this.clear()},watch:{to:function(t,e){e&&e!==t&&this.clear(e),this.sendUpdate()}},methods:{clear:function(t){var e={from:this.name,to:t||this.to};g.close(e)},normalizeSlots:function(){return this.$scopedSlots.default?[this.$scopedSlots.default]:this.$slots.default},normalizeOwnChildren:function(t){return"function"===typeof t?t(this.slotProps):t},sendUpdate:function(){var t=this.normalizeSlots();if(t){var e={from:this.name,to:this.to,passengers:o(t),order:this.order};g.open(e)}else this.clear()}},render:function(t){var e=this.$slots.default||this.$scopedSlots.default||[],n=this.tag;return e&&this.disabled?e.length<=1&&this.slim?this.normalizeOwnChildren(e)[0]:t(n,[this.normalizeOwnChildren(e)]):this.slim?t():t(n,{class:{"v-portal":!0},style:{display:"none"},key:"v-portal-placeholder"})}}),j=i.extend({name:"portalTarget",props:{multiple:{type:Boolean,default:!1},name:{type:String,required:!0},slim:{type:Boolean,default:!1},slotProps:{type:Object,default:function(){return{}}},tag:{type:String,default:"div"},transition:{type:[String,Object,Function]}},data:function(){return{transports:g.transports,firstRender:!0}},created:function(){var t=this;this.$nextTick((function(){g.registerTarget(t.name,t)}))},watch:{ownTransports:function(){this.$emit("change",this.children().length>0)},name:function(t,e){g.unregisterTarget(e),g.registerTarget(t,this)}},mounted:function(){var t=this;this.transition&&this.$nextTick((function(){t.firstRender=!1}))},beforeDestroy:function(){g.unregisterTarget(this.name)},computed:{ownTransports:function(){var t=this.transports[this.name]||[];return this.multiple?t:0===t.length?[]:[t[t.length-1]]},passengers:function(){return f(this.ownTransports,this.slotProps)}},methods:{children:function(){return 0!==this.passengers.length?this.passengers:this.$scopedSlots.default?this.$scopedSlots.default(this.slotProps):this.$slots.default||[]},noWrapper:function(){var t=this.slim&&!this.transition;return t&&this.children().length>1&&console.warn("[portal-vue]: PortalTarget with `slim` option received more than one child element."),t}},render:function(t){var e=this.noWrapper(),n=this.children(),r=this.transition||this.tag;return e?n[0]:this.slim&&!r?t():t(r,{props:{tag:this.transition&&this.tag?this.tag:void 0},class:{"vue-portal-target":!0}},n)}}),w=0,M=["disabled","name","order","slim","slotProps","tag","to"],L=["multiple","transition"],k=i.extend({name:"MountingPortal",inheritAttrs:!1,props:{append:{type:[Boolean,String]},bail:{type:Boolean},mountTo:{type:String,required:!0},disabled:{type:Boolean},name:{type:String,default:function(){return"mounted_"+String(w++)}},order:{type:Number,default:0},slim:{type:Boolean},slotProps:{type:Object,default:function(){return{}}},tag:{type:String,default:"DIV"},to:{type:String,default:function(){return String(Math.round(1e7*Math.random()))}},multiple:{type:Boolean,default:!1},targetSlim:{type:Boolean},targetSlotProps:{type:Object,default:function(){return{}}},targetTag:{type:String,default:"div"},transition:{type:[String,Object,Function]}},created:function(){if("undefined"!==typeof document){var t=document.querySelector(this.mountTo);if(t){var e=this.$props;if(g.targets[e.name])e.bail?console.warn("[portal-vue]: Target ".concat(e.name," is already mounted.\n Aborting because 'bail: true' is set")):this.portalTarget=g.targets[e.name];else{var n=e.append;if(n){var r="string"===typeof n?n:"DIV",i=document.createElement(r);t.appendChild(i),t=i}var a=p(this.$props,L);a.slim=this.targetSlim,a.tag=this.targetTag,a.slotProps=this.targetSlotProps,a.name=this.to,this.portalTarget=new j({el:t,parent:this.$parent||this,propsData:a})}}else console.error("[portal-vue]: Mount Point '".concat(this.mountTo,"' not found in document"))}},beforeDestroy:function(){var t=this.portalTarget;if(this.append){var e=t.$el;e.parentNode.removeChild(e)}t.$destroy()},render:function(t){if(!this.portalTarget)return console.warn("[portal-vue] Target wasn't mounted"),t();if(!this.$scopedSlots.manual){var e=p(this.$props,M);return t(O,{props:e,attrs:this.$attrs,on:this.$listeners,scopedSlots:this.$scopedSlots},this.$slots.default)}var n=this.$scopedSlots.manual({to:this.to});return Array.isArray(n)&&(n=n[0]),n||t()}});function T(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};t.component(e.portalName||"Portal",O),t.component(e.portalTargetName||"PortalTarget",j),t.component(e.MountingPortalName||"MountingPortal",k)}var D={install:T};e.default=D,e.Portal=O,e.PortalTarget=j,e.MountingPortal=k,e.Wormhole=g},"2bfb":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t=e.defineLocale("af",{months:"Januarie_Februarie_Maart_April_Mei_Junie_Julie_Augustus_September_Oktober_November_Desember".split("_"),monthsShort:"Jan_Feb_Mrt_Apr_Mei_Jun_Jul_Aug_Sep_Okt_Nov_Des".split("_"),weekdays:"Sondag_Maandag_Dinsdag_Woensdag_Donderdag_Vrydag_Saterdag".split("_"),weekdaysShort:"Son_Maa_Din_Woe_Don_Vry_Sat".split("_"),weekdaysMin:"So_Ma_Di_Wo_Do_Vr_Sa".split("_"),meridiemParse:/vm|nm/i,isPM:function(e){return/^nm$/i.test(e)},meridiem:function(e,t,n){return e<12?n?"vm":"VM":n?"nm":"NM"},longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Vandag om] LT",nextDay:"[Môre om] LT",nextWeek:"dddd [om] LT",lastDay:"[Gister om] LT",lastWeek:"[Laas] dddd [om] LT",sameElse:"L"},relativeTime:{future:"oor %s",past:"%s gelede",s:"'n paar sekondes",ss:"%d sekondes",m:"'n minuut",mm:"%d minute",h:"'n uur",hh:"%d ure",d:"'n dag",dd:"%d dae",M:"'n maand",MM:"%d maande",y:"'n jaar",yy:"%d jaar"},dayOfMonthOrdinalParse:/\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?"ste":"de")},week:{dow:1,doy:4}});return t}))},"2cf4":function(e,t,n){var i,r,o,a=n("da84"),s=n("d039"),c=n("0366"),u=n("1be4"),d=n("cc12"),l=n("1cdc"),f=n("605d"),p=a.location,h=a.setImmediate,m=a.clearImmediate,b=a.process,g=a.MessageChannel,v=a.Dispatch,y=0,_={},O="onreadystatechange",j=function(e){if(_.hasOwnProperty(e)){var t=_[e];delete _[e],t()}},w=function(e){return function(){j(e)}},k=function(e){j(e.data)},M=function(e){a.postMessage(e+"",p.protocol+"//"+p.host)};h&&m||(h=function(e){var t=[],n=1;while(arguments.length>n)t.push(arguments[n++]);return _[++y]=function(){("function"==typeof e?e:Function(e)).apply(void 0,t)},i(y),y},m=function(e){delete _[e]},f?i=function(e){b.nextTick(w(e))}:v&&v.now?i=function(e){v.now(w(e))}:g&&!l?(r=new g,o=r.port2,r.port1.onmessage=k,i=c(o.postMessage,o,1)):a.addEventListener&&"function"==typeof postMessage&&!a.importScripts&&p&&"file:"!==p.protocol&&!s(M)?(i=M,a.addEventListener("message",k,!1)):i=O in d("script")?function(e){u.appendChild(d("script"))[O]=function(){u.removeChild(this),j(e)}}:function(e){setTimeout(w(e),0)}),e.exports={set:h,clear:m}},"2d00":function(e,t,n){var i,r,o=n("da84"),a=n("342f"),s=o.process,c=s&&s.versions,u=c&&c.v8;u?(i=u.split("."),r=i[0]<4?1:i[0]+i[1]):a&&(i=a.match(/Edge\/(\d+)/),(!i||i[1]>=74)&&(i=a.match(/Chrome\/(\d+)/),i&&(r=i[1]))),e.exports=r&&+r},"2d83":function(e,t,n){"use strict";var i=n("387f");e.exports=function(e,t,n,r,o){var a=new Error(e);return i(a,t,n,r,o)}},"2dd8":function(e,t,n){},"2e67":function(e,t,n){"use strict";e.exports=function(e){return!(!e||!e.__CANCEL__)}},"2e8c":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e=t.defineLocale("af",{months:"Januarie_Februarie_Maart_April_Mei_Junie_Julie_Augustus_September_Oktober_November_Desember".split("_"),monthsShort:"Jan_Feb_Mrt_Apr_Mei_Jun_Jul_Aug_Sep_Okt_Nov_Des".split("_"),weekdays:"Sondag_Maandag_Dinsdag_Woensdag_Donderdag_Vrydag_Saterdag".split("_"),weekdaysShort:"Son_Maa_Din_Woe_Don_Vry_Sat".split("_"),weekdaysMin:"So_Ma_Di_Wo_Do_Vr_Sa".split("_"),meridiemParse:/vm|nm/i,isPM:function(t){return/^nm$/i.test(t)},meridiem:function(t,e,n){return t<12?n?"vm":"VM":n?"nm":"NM"},longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Vandag om] LT",nextDay:"[Môre om] LT",nextWeek:"dddd [om] LT",lastDay:"[Gister om] LT",lastWeek:"[Laas] dddd [om] LT",sameElse:"L"},relativeTime:{future:"oor %s",past:"%s gelede",s:"'n paar sekondes",ss:"%d sekondes",m:"'n minuut",mm:"%d minute",h:"'n uur",hh:"%d ure",d:"'n dag",dd:"%d dae",M:"'n maand",MM:"%d maande",y:"'n jaar",yy:"%d jaar"},dayOfMonthOrdinalParse:/\d{1,2}(ste|de)/,ordinal:function(t){return t+(1===t||8===t||t>=20?"ste":"de")},week:{dow:1,doy:4}});return e}))},"2cf4":function(t,e,n){var r,i,a,o=n("da84"),s=n("d039"),c=n("0366"),u=n("1be4"),l=n("cc12"),d=n("1cdc"),f=n("605d"),h=o.location,p=o.setImmediate,m=o.clearImmediate,b=o.process,v=o.MessageChannel,_=o.Dispatch,g=0,y={},O="onreadystatechange",j=function(t){if(y.hasOwnProperty(t)){var e=y[t];delete y[t],e()}},w=function(t){return function(){j(t)}},M=function(t){j(t.data)},L=function(t){o.postMessage(t+"",h.protocol+"//"+h.host)};p&&m||(p=function(t){var e=[],n=1;while(arguments.length>n)e.push(arguments[n++]);return y[++g]=function(){("function"==typeof t?t:Function(t)).apply(void 0,e)},r(g),g},m=function(t){delete y[t]},f?r=function(t){b.nextTick(w(t))}:_&&_.now?r=function(t){_.now(w(t))}:v&&!d?(i=new v,a=i.port2,i.port1.onmessage=M,r=c(a.postMessage,a,1)):o.addEventListener&&"function"==typeof postMessage&&!o.importScripts&&h&&"file:"!==h.protocol&&!s(L)?(r=L,o.addEventListener("message",M,!1)):r=O in l("script")?function(t){u.appendChild(l("script"))[O]=function(){u.removeChild(this),j(t)}}:function(t){setTimeout(w(t),0)}),t.exports={set:p,clear:m}},"2d00":function(t,e,n){var r,i,a=n("da84"),o=n("342f"),s=a.process,c=s&&s.versions,u=c&&c.v8;u?(r=u.split("."),i=r[0]+r[1]):o&&(r=o.match(/Edge\/(\d+)/),(!r||r[1]>=74)&&(r=o.match(/Chrome\/(\d+)/),r&&(i=r[1]))),t.exports=i&&+i},"2d83":function(t,e,n){"use strict";var r=n("387f");t.exports=function(t,e,n,i,a){var o=new Error(t);return r(o,e,n,i,a)}},"2dd8":function(t,e,n){},"2e67":function(t,e,n){"use strict";t.exports=function(t){return!(!t||!t.__CANCEL__)}},"2e8c":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t=e.defineLocale("uz",{months:"январ_феврал_март_апрел_май_июн_июл_август_сентябр_октябр_ноябр_декабр".split("_"),monthsShort:"янв_фев_мар_апр_май_июн_июл_авг_сен_окт_ноя_дек".split("_"),weekdays:"Якшанба_Душанба_Сешанба_Чоршанба_Пайшанба_Жума_Шанба".split("_"),weekdaysShort:"Якш_Душ_Сеш_Чор_Пай_Жум_Шан".split("_"),weekdaysMin:"Як_Ду_Се_Чо_Па_Жу_Ша".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"D MMMM YYYY, dddd HH:mm"},calendar:{sameDay:"[Бугун соат] LT [да]",nextDay:"[Эртага] LT [да]",nextWeek:"dddd [куни соат] LT [да]",lastDay:"[Кеча соат] LT [да]",lastWeek:"[Утган] dddd [куни соат] LT [да]",sameElse:"L"},relativeTime:{future:"Якин %s ичида",past:"Бир неча %s олдин",s:"фурсат",ss:"%d фурсат",m:"бир дакика",mm:"%d дакика",h:"бир соат",hh:"%d соат",d:"бир кун",dd:"%d кун",M:"бир ой",MM:"%d ой",y:"бир йил",yy:"%d йил"},week:{dow:1,doy:7}});return t}))},"2f79":function(e,t,n){"use strict";n.d(t,"a",(function(){return i}));n("b42e");var i="_uid"},"30b5":function(e,t,n){"use strict";var i=n("c532");function r(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}e.exports=function(e,t,n){if(!t)return e;var o;if(n)o=n(t);else if(i.isURLSearchParams(t))o=t.toString();else{var a=[];i.forEach(t,(function(e,t){null!==e&&"undefined"!==typeof e&&(i.isArray(e)?t+="[]":e=[e],i.forEach(e,(function(e){i.isDate(e)?e=e.toISOString():i.isObject(e)&&(e=JSON.stringify(e)),a.push(r(t)+"="+r(e))})))})),o=a.join("&")}if(o){var s=e.indexOf("#");-1!==s&&(e=e.slice(0,s)),e+=(-1===e.indexOf("?")?"?":"&")+o}return e}},"342f":function(e,t,n){var i=n("d066");e.exports=i("navigator","userAgent")||""},"34ef":function(e){e.exports=JSON.parse('[{"group":0,"emojiList":[{"unicode":"😀","tags":["face","grin"]},{"unicode":"😃","tags":["face","mouth","open","smile"]},{"unicode":"😄","tags":["eye","face","mouth","open","smile"]},{"unicode":"😁","tags":["eye","face","grin","smile"]},{"unicode":"😆","tags":["face","laugh","mouth","satisfied","smile"]},{"unicode":"😅","tags":["cold","face","open","smile","sweat"]},{"unicode":"🤣","tags":["face","floor","laugh","rolling"]},{"unicode":"😂","tags":["face","joy","laugh","tear"]},{"unicode":"🙂","tags":["face","smile"]},{"unicode":"🙃","tags":["face","upside-down"]},{"unicode":"😉","tags":["face","wink"]},{"unicode":"😊","tags":["blush","eye","face","smile"]},{"unicode":"😇","tags":["angel","face","fantasy","halo","innocent"]},{"unicode":"🥰","tags":["adore","crush","hearts","in love"]},{"unicode":"😍","tags":["eye","face","love","smile"]},{"unicode":"🤩","tags":["eyes","face","grinning","star"]},{"unicode":"😘","tags":["face","kiss"]},{"unicode":"😗","tags":["face","kiss"]},{"unicode":"☺️","tags":["face","outlined","relaxed","smile"]},{"unicode":"😚","tags":["closed","eye","face","kiss"]},{"unicode":"😙","tags":["eye","face","kiss","smile"]},{"unicode":"🥲","tags":["grateful","proud","relieved","smiling","tear","touched"]},{"unicode":"😋","tags":["delicious","face","savouring","smile","yum"]},{"unicode":"😛","tags":["face","tongue"]},{"unicode":"😜","tags":["eye","face","joke","tongue","wink"]},{"unicode":"🤪","tags":["eye","goofy","large","small"]},{"unicode":"😝","tags":["eye","face","horrible","taste","tongue"]},{"unicode":"🤑","tags":["face","money","mouth"]},{"unicode":"🤗","tags":["face","hug","hugging"]},{"unicode":"🤭","tags":["whoops"]},{"unicode":"🤫","tags":["quiet","shush"]},{"unicode":"🤔","tags":["face","thinking"]},{"unicode":"🤐","tags":["face","mouth","zipper"]},{"unicode":"🤨","tags":["distrust","skeptic"]},{"unicode":"😐️","tags":["deadpan","face","meh","neutral"]},{"unicode":"😑","tags":["expressionless","face","inexpressive","meh","unexpressive"]},{"unicode":"😶","tags":["face","mouth","quiet","silent"]},{"unicode":"😏","tags":["face","smirk"]},{"unicode":"😒","tags":["face","unamused","unhappy"]},{"unicode":"🙄","tags":["eyeroll","eyes","face","rolling"]},{"unicode":"😬","tags":["face","grimace"]},{"unicode":"🤥","tags":["face","lie","pinocchio"]},{"unicode":"😌","tags":["face","relieved"]},{"unicode":"😔","tags":["dejected","face","pensive"]},{"unicode":"😪","tags":["face","sleep"]},{"unicode":"🤤","tags":["drooling","face"]},{"unicode":"😴","tags":["face","sleep","zzz"]},{"unicode":"😷","tags":["cold","doctor","face","mask","sick"]},{"unicode":"🤒","tags":["face","ill","sick","thermometer"]},{"unicode":"🤕","tags":["bandage","face","hurt","injury"]},{"unicode":"🤢","tags":["face","nauseated","vomit"]},{"unicode":"🤮","tags":["sick","vomit"]},{"unicode":"🤧","tags":["face","gesundheit","sneeze"]},{"unicode":"🥵","tags":["feverish","heat stroke","hot","red-faced","sweating"]},{"unicode":"🥶","tags":["blue-faced","cold","freezing","frostbite","icicles"]},{"unicode":"🥴","tags":["dizzy","intoxicated","tipsy","uneven eyes","wavy mouth"]},{"unicode":"😵","tags":["dizzy","face"]},{"unicode":"🤯","tags":["mind blown","shocked"]},{"unicode":"🤠","tags":["cowboy","cowgirl","face","hat"]},{"unicode":"🥳","tags":["celebration","hat","horn","party"]},{"unicode":"🥸","tags":["disguise","face","glasses","incognito","nose"]},{"unicode":"😎","tags":["bright","cool","face","sun","sunglasses"]},{"unicode":"🤓","tags":["face","geek","nerd"]},{"unicode":"🧐","tags":["stuffy"]},{"unicode":"😕","tags":["confused","face","meh"]},{"unicode":"😟","tags":["face","worried"]},{"unicode":"🙁","tags":["face","frown"]},{"unicode":"☹️","tags":["face","frown"]},{"unicode":"😮","tags":["face","mouth","open","sympathy"]},{"unicode":"😯","tags":["face","hushed","stunned","surprised"]},{"unicode":"😲","tags":["astonished","face","shocked","totally"]},{"unicode":"😳","tags":["dazed","face","flushed"]},{"unicode":"🥺","tags":["begging","mercy","puppy eyes"]},{"unicode":"😦","tags":["face","frown","mouth","open"]},{"unicode":"😧","tags":["anguished","face"]},{"unicode":"😨","tags":["face","fear","fearful","scared"]},{"unicode":"😰","tags":["blue","cold","face","rushed","sweat"]},{"unicode":"😥","tags":["disappointed","face","relieved","whew"]},{"unicode":"😢","tags":["cry","face","sad","tear"]},{"unicode":"😭","tags":["cry","face","sad","sob","tear"]},{"unicode":"😱","tags":["face","fear","munch","scared","scream"]},{"unicode":"😖","tags":["confounded","face"]},{"unicode":"😣","tags":["face","persevere"]},{"unicode":"😞","tags":["disappointed","face"]},{"unicode":"😓","tags":["cold","face","sweat"]},{"unicode":"😩","tags":["face","tired","weary"]},{"unicode":"😫","tags":["face","tired"]},{"unicode":"🥱","tags":["bored","tired","yawn"]},{"unicode":"😤","tags":["face","triumph","won"]},{"unicode":"😡","tags":["angry","face","mad","pouting","rage","red"]},{"unicode":"😠","tags":["angry","face","mad"]},{"unicode":"🤬","tags":["swearing"]},{"unicode":"😈","tags":["face","fairy tale","fantasy","horns","smile"]},{"unicode":"👿","tags":["demon","devil","face","fantasy","imp"]},{"unicode":"💀","tags":["death","face","fairy tale","monster"]},{"unicode":"☠️","tags":["crossbones","death","face","monster","skull"]},{"unicode":"💩","tags":["dung","face","monster","poo","poop"]},{"unicode":"🤡","tags":["clown","face"]},{"unicode":"👹","tags":["creature","face","fairy tale","fantasy","monster"]},{"unicode":"👺","tags":["creature","face","fairy tale","fantasy","monster"]},{"unicode":"👻","tags":["creature","face","fairy tale","fantasy","monster"]},{"unicode":"👽️","tags":["creature","extraterrestrial","face","fantasy","ufo"]},{"unicode":"👾","tags":["alien","creature","extraterrestrial","face","monster","ufo"]},{"unicode":"🤖","tags":["face","monster"]},{"unicode":"😺","tags":["cat","face","grinning","mouth","open","smile"]},{"unicode":"😸","tags":["cat","eye","face","grin","smile"]},{"unicode":"😹","tags":["cat","face","joy","tear"]},{"unicode":"😻","tags":["cat","eye","face","heart","love","smile"]},{"unicode":"😼","tags":["cat","face","ironic","smile","wry"]},{"unicode":"😽","tags":["cat","eye","face","kiss"]},{"unicode":"🙀","tags":["cat","face","oh","surprised","weary"]},{"unicode":"😿","tags":["cat","cry","face","sad","tear"]},{"unicode":"😾","tags":["cat","face","pouting"]},{"unicode":"🙈","tags":["evil","face","forbidden","monkey","see"]},{"unicode":"🙉","tags":["evil","face","forbidden","hear","monkey"]},{"unicode":"🙊","tags":["evil","face","forbidden","monkey","speak"]},{"unicode":"💋","tags":["kiss","lips"]},{"unicode":"💌","tags":["heart","letter","love","mail"]},{"unicode":"💘","tags":["arrow","cupid"]},{"unicode":"💝","tags":["ribbon","valentine"]},{"unicode":"💖","tags":["excited","sparkle"]},{"unicode":"💗","tags":["excited","growing","nervous","pulse"]},{"unicode":"💓","tags":["beating","heartbeat","pulsating"]},{"unicode":"💞","tags":["revolving"]},{"unicode":"💕","tags":["love"]},{"unicode":"💟","tags":["heart"]},{"unicode":"❣️","tags":["exclamation","mark","punctuation"]},{"unicode":"💔","tags":["break","broken"]},{"unicode":"❤️","tags":["heart"]},{"unicode":"🧡","tags":["orange"]},{"unicode":"💛","tags":["yellow"]},{"unicode":"💚","tags":["green"]},{"unicode":"💙","tags":["blue"]},{"unicode":"💜","tags":["purple"]},{"unicode":"🤎","tags":["brown","heart"]},{"unicode":"🖤","tags":["black","evil","wicked"]},{"unicode":"🤍","tags":["heart","white"]},{"unicode":"💯","tags":["100","full","hundred","score"]},{"unicode":"💢","tags":["angry","comic","mad"]},{"unicode":"💥","tags":["boom","comic"]},{"unicode":"💫","tags":["comic","star"]},{"unicode":"💦","tags":["comic","splashing","sweat"]},{"unicode":"💨","tags":["comic","dash","running"]},{"unicode":"🕳️","tags":["hole"]},{"unicode":"💣️","tags":["comic"]},{"unicode":"💬","tags":["balloon","bubble","comic","dialog","speech"]},{"unicode":"👁️‍🗨️","tags":["eye","speech bubble","witness"]},{"unicode":"🗨️","tags":["dialog","speech"]},{"unicode":"🗯️","tags":["angry","balloon","bubble","mad"]},{"unicode":"💭","tags":["balloon","bubble","comic","thought"]},{"unicode":"💤","tags":["comic","sleep"]}]},{"group":1,"emojiList":[{"unicode":"👋","tags":["hand","wave","waving"],"skins":[{"unicode":"👋🏻"},{"unicode":"👋🏼"},{"unicode":"👋🏽"},{"unicode":"👋🏾"},{"unicode":"👋🏿"}]},{"unicode":"🤚","tags":["backhand","raised"],"skins":[{"unicode":"🤚🏻"},{"unicode":"🤚🏼"},{"unicode":"🤚🏽"},{"unicode":"🤚🏾"},{"unicode":"🤚🏿"}]},{"unicode":"🖐️","tags":["finger","hand","splayed"],"skins":[{"unicode":"🖐🏻"},{"unicode":"🖐🏼"},{"unicode":"🖐🏽"},{"unicode":"🖐🏾"},{"unicode":"🖐🏿"}]},{"unicode":"✋","tags":["hand"],"skins":[{"unicode":"✋🏻"},{"unicode":"✋🏼"},{"unicode":"✋🏽"},{"unicode":"✋🏾"},{"unicode":"✋🏿"}]},{"unicode":"🖖","tags":["finger","hand","spock","vulcan"],"skins":[{"unicode":"🖖🏻"},{"unicode":"🖖🏼"},{"unicode":"🖖🏽"},{"unicode":"🖖🏾"},{"unicode":"🖖🏿"}]},{"unicode":"👌","tags":["hand","ok"],"skins":[{"unicode":"👌🏻"},{"unicode":"👌🏼"},{"unicode":"👌🏽"},{"unicode":"👌🏾"},{"unicode":"👌🏿"}]},{"unicode":"🤌","tags":["fingers","hand gesture","interrogation","pinched","sarcastic"],"skins":[{"unicode":"🤌🏻"},{"unicode":"🤌🏼"},{"unicode":"🤌🏽"},{"unicode":"🤌🏾"},{"unicode":"🤌🏿"}]},{"unicode":"🤏","tags":["small amount"],"skins":[{"unicode":"🤏🏻"},{"unicode":"🤏🏼"},{"unicode":"🤏🏽"},{"unicode":"🤏🏾"},{"unicode":"🤏🏿"}]},{"unicode":"✌️","tags":["hand","v","victory"],"skins":[{"unicode":"✌🏻"},{"unicode":"✌🏼"},{"unicode":"✌🏽"},{"unicode":"✌🏾"},{"unicode":"✌🏿"}]},{"unicode":"🤞","tags":["cross","finger","hand","luck"],"skins":[{"unicode":"🤞🏻"},{"unicode":"🤞🏼"},{"unicode":"🤞🏽"},{"unicode":"🤞🏾"},{"unicode":"🤞🏿"}]},{"unicode":"🤟","tags":["hand","ily"],"skins":[{"unicode":"🤟🏻"},{"unicode":"🤟🏼"},{"unicode":"🤟🏽"},{"unicode":"🤟🏾"},{"unicode":"🤟🏿"}]},{"unicode":"🤘","tags":["finger","hand","horns","rock-on"],"skins":[{"unicode":"🤘🏻"},{"unicode":"🤘🏼"},{"unicode":"🤘🏽"},{"unicode":"🤘🏾"},{"unicode":"🤘🏿"}]},{"unicode":"🤙","tags":["call","hand"],"skins":[{"unicode":"🤙🏻"},{"unicode":"🤙🏼"},{"unicode":"🤙🏽"},{"unicode":"🤙🏾"},{"unicode":"🤙🏿"}]},{"unicode":"👈️","tags":["backhand","finger","hand","index","point"],"skins":[{"unicode":"👈🏻"},{"unicode":"👈🏼"},{"unicode":"👈🏽"},{"unicode":"👈🏾"},{"unicode":"👈🏿"}]},{"unicode":"👉️","tags":["backhand","finger","hand","index","point"],"skins":[{"unicode":"👉🏻"},{"unicode":"👉🏼"},{"unicode":"👉🏽"},{"unicode":"👉🏾"},{"unicode":"👉🏿"}]},{"unicode":"👆️","tags":["backhand","finger","hand","point","up"],"skins":[{"unicode":"👆🏻"},{"unicode":"👆🏼"},{"unicode":"👆🏽"},{"unicode":"👆🏾"},{"unicode":"👆🏿"}]},{"unicode":"🖕","tags":["finger","hand"],"skins":[{"unicode":"🖕🏻"},{"unicode":"🖕🏼"},{"unicode":"🖕🏽"},{"unicode":"🖕🏾"},{"unicode":"🖕🏿"}]},{"unicode":"👇️","tags":["backhand","down","finger","hand","point"],"skins":[{"unicode":"👇🏻"},{"unicode":"👇🏼"},{"unicode":"👇🏽"},{"unicode":"👇🏾"},{"unicode":"👇🏿"}]},{"unicode":"☝️","tags":["finger","hand","index","point","up"],"skins":[{"unicode":"☝🏻"},{"unicode":"☝🏼"},{"unicode":"☝🏽"},{"unicode":"☝🏾"},{"unicode":"☝🏿"}]},{"unicode":"👍️","tags":["+1","hand","thumb","up"],"skins":[{"unicode":"👍🏻"},{"unicode":"👍🏼"},{"unicode":"👍🏽"},{"unicode":"👍🏾"},{"unicode":"👍🏿"}]},{"unicode":"👎️","tags":["-1","down","hand","thumb"],"skins":[{"unicode":"👎🏻"},{"unicode":"👎🏼"},{"unicode":"👎🏽"},{"unicode":"👎🏾"},{"unicode":"👎🏿"}]},{"unicode":"✊","tags":["clenched","fist","hand","punch"],"skins":[{"unicode":"✊🏻"},{"unicode":"✊🏼"},{"unicode":"✊🏽"},{"unicode":"✊🏾"},{"unicode":"✊🏿"}]},{"unicode":"👊","tags":["clenched","fist","hand","punch"],"skins":[{"unicode":"👊🏻"},{"unicode":"👊🏼"},{"unicode":"👊🏽"},{"unicode":"👊🏾"},{"unicode":"👊🏿"}]},{"unicode":"🤛","tags":["fist","leftwards"],"skins":[{"unicode":"🤛🏻"},{"unicode":"🤛🏼"},{"unicode":"🤛🏽"},{"unicode":"🤛🏾"},{"unicode":"🤛🏿"}]},{"unicode":"🤜","tags":["fist","rightwards"],"skins":[{"unicode":"🤜🏻"},{"unicode":"🤜🏼"},{"unicode":"🤜🏽"},{"unicode":"🤜🏾"},{"unicode":"🤜🏿"}]},{"unicode":"👏","tags":["clap","hand"],"skins":[{"unicode":"👏🏻"},{"unicode":"👏🏼"},{"unicode":"👏🏽"},{"unicode":"👏🏾"},{"unicode":"👏🏿"}]},{"unicode":"🙌","tags":["celebration","gesture","hand","hooray","raised"],"skins":[{"unicode":"🙌🏻"},{"unicode":"🙌🏼"},{"unicode":"🙌🏽"},{"unicode":"🙌🏾"},{"unicode":"🙌🏿"}]},{"unicode":"👐","tags":["hand","open"],"skins":[{"unicode":"👐🏻"},{"unicode":"👐🏼"},{"unicode":"👐🏽"},{"unicode":"👐🏾"},{"unicode":"👐🏿"}]},{"unicode":"🤲","tags":["prayer"],"skins":[{"unicode":"🤲🏻"},{"unicode":"🤲🏼"},{"unicode":"🤲🏽"},{"unicode":"🤲🏾"},{"unicode":"🤲🏿"}]},{"unicode":"🤝","tags":["agreement","hand","meeting","shake"]},{"unicode":"🙏","tags":["ask","hand","please","pray","thanks"],"skins":[{"unicode":"🙏🏻"},{"unicode":"🙏🏼"},{"unicode":"🙏🏽"},{"unicode":"🙏🏾"},{"unicode":"🙏🏿"}]},{"unicode":"✍️","tags":["hand","write"],"skins":[{"unicode":"✍🏻"},{"unicode":"✍🏼"},{"unicode":"✍🏽"},{"unicode":"✍🏾"},{"unicode":"✍🏿"}]},{"unicode":"💅","tags":["care","cosmetics","manicure","nail","polish"],"skins":[{"unicode":"💅🏻"},{"unicode":"💅🏼"},{"unicode":"💅🏽"},{"unicode":"💅🏾"},{"unicode":"💅🏿"}]},{"unicode":"🤳","tags":["camera","phone"],"skins":[{"unicode":"🤳🏻"},{"unicode":"🤳🏼"},{"unicode":"🤳🏽"},{"unicode":"🤳🏾"},{"unicode":"🤳🏿"}]},{"unicode":"💪","tags":["biceps","comic","flex","muscle"],"skins":[{"unicode":"💪🏻"},{"unicode":"💪🏼"},{"unicode":"💪🏽"},{"unicode":"💪🏾"},{"unicode":"💪🏿"}]},{"unicode":"🦾","tags":["accessibility","prosthetic"]},{"unicode":"🦿","tags":["accessibility","prosthetic"]},{"unicode":"🦵","tags":["kick","limb"],"skins":[{"unicode":"🦵🏻"},{"unicode":"🦵🏼"},{"unicode":"🦵🏽"},{"unicode":"🦵🏾"},{"unicode":"🦵🏿"}]},{"unicode":"🦶","tags":["kick","stomp"],"skins":[{"unicode":"🦶🏻"},{"unicode":"🦶🏼"},{"unicode":"🦶🏽"},{"unicode":"🦶🏾"},{"unicode":"🦶🏿"}]},{"unicode":"👂️","tags":["body"],"skins":[{"unicode":"👂🏻"},{"unicode":"👂🏼"},{"unicode":"👂🏽"},{"unicode":"👂🏾"},{"unicode":"👂🏿"}]},{"unicode":"🦻","tags":["accessibility","hard of hearing"],"skins":[{"unicode":"🦻🏻"},{"unicode":"🦻🏼"},{"unicode":"🦻🏽"},{"unicode":"🦻🏾"},{"unicode":"🦻🏿"}]},{"unicode":"👃","tags":["body"],"skins":[{"unicode":"👃🏻"},{"unicode":"👃🏼"},{"unicode":"👃🏽"},{"unicode":"👃🏾"},{"unicode":"👃🏿"}]},{"unicode":"🧠","tags":["intelligent"]},{"unicode":"🫀","tags":["anatomical","cardiology","heart","organ","pulse"]},{"unicode":"🫁","tags":["breath","exhalation","inhalation","organ","respiration"]},{"unicode":"🦷","tags":["dentist"]},{"unicode":"🦴","tags":["skeleton"]},{"unicode":"👀","tags":["eye","face"]},{"unicode":"👁️","tags":["body"]},{"unicode":"👅","tags":["body"]},{"unicode":"👄","tags":["lips"]},{"unicode":"👶","tags":["young"],"skins":[{"unicode":"👶🏻"},{"unicode":"👶🏼"},{"unicode":"👶🏽"},{"unicode":"👶🏾"},{"unicode":"👶🏿"}]},{"unicode":"🧒","tags":["gender-neutral","unspecified gender","young"],"skins":[{"unicode":"🧒🏻"},{"unicode":"🧒🏼"},{"unicode":"🧒🏽"},{"unicode":"🧒🏾"},{"unicode":"🧒🏿"}]},{"unicode":"👦","tags":["young"],"skins":[{"unicode":"👦🏻"},{"unicode":"👦🏼"},{"unicode":"👦🏽"},{"unicode":"👦🏾"},{"unicode":"👦🏿"}]},{"unicode":"👧","tags":["virgo","young","zodiac"],"skins":[{"unicode":"👧🏻"},{"unicode":"👧🏼"},{"unicode":"👧🏽"},{"unicode":"👧🏾"},{"unicode":"👧🏿"}]},{"unicode":"🧑","tags":["adult","gender-neutral","unspecified gender"],"skins":[{"unicode":"🧑🏻"},{"unicode":"🧑🏼"},{"unicode":"🧑🏽"},{"unicode":"🧑🏾"},{"unicode":"🧑🏿"}]},{"unicode":"👱","tags":["blond","blond-haired person","hair"],"skins":[{"unicode":"👱🏻"},{"unicode":"👱🏼"},{"unicode":"👱🏽"},{"unicode":"👱🏾"},{"unicode":"👱🏿"}]},{"unicode":"👨","tags":["adult"],"skins":[{"unicode":"👨🏻"},{"unicode":"👨🏼"},{"unicode":"👨🏽"},{"unicode":"👨🏾"},{"unicode":"👨🏿"}]},{"unicode":"🧔","tags":["beard","man","person"],"skins":[{"unicode":"🧔🏻"},{"unicode":"🧔🏼"},{"unicode":"🧔🏽"},{"unicode":"🧔🏾"},{"unicode":"🧔🏿"}]},{"unicode":"👨‍🦰","tags":["adult","man","red hair"],"skins":[{"unicode":"👨🏻‍🦰"},{"unicode":"👨🏼‍🦰"},{"unicode":"👨🏽‍🦰"},{"unicode":"👨🏾‍🦰"},{"unicode":"👨🏿‍🦰"}]},{"unicode":"👨‍🦱","tags":["adult","curly hair","man"],"skins":[{"unicode":"👨🏻‍🦱"},{"unicode":"👨🏼‍🦱"},{"unicode":"👨🏽‍🦱"},{"unicode":"👨🏾‍🦱"},{"unicode":"👨🏿‍🦱"}]},{"unicode":"👨‍🦳","tags":["adult","man","white hair"],"skins":[{"unicode":"👨🏻‍🦳"},{"unicode":"👨🏼‍🦳"},{"unicode":"👨🏽‍🦳"},{"unicode":"👨🏾‍🦳"},{"unicode":"👨🏿‍🦳"}]},{"unicode":"👨‍🦲","tags":["adult","bald","man"],"skins":[{"unicode":"👨🏻‍🦲"},{"unicode":"👨🏼‍🦲"},{"unicode":"👨🏽‍🦲"},{"unicode":"👨🏾‍🦲"},{"unicode":"👨🏿‍🦲"}]},{"unicode":"👩","tags":["adult"],"skins":[{"unicode":"👩🏻"},{"unicode":"👩🏼"},{"unicode":"👩🏽"},{"unicode":"👩🏾"},{"unicode":"👩🏿"}]},{"unicode":"👩‍🦰","tags":["adult","red hair","woman"],"skins":[{"unicode":"👩🏻‍🦰"},{"unicode":"👩🏼‍🦰"},{"unicode":"👩🏽‍🦰"},{"unicode":"👩🏾‍🦰"},{"unicode":"👩🏿‍🦰"}]},{"unicode":"🧑‍🦰","tags":["adult","gender-neutral","person","red hair","unspecified gender"],"skins":[{"unicode":"🧑🏻‍🦰"},{"unicode":"🧑🏼‍🦰"},{"unicode":"🧑🏽‍🦰"},{"unicode":"🧑🏾‍🦰"},{"unicode":"🧑🏿‍🦰"}]},{"unicode":"👩‍🦱","tags":["adult","curly hair","woman"],"skins":[{"unicode":"👩🏻‍🦱"},{"unicode":"👩🏼‍🦱"},{"unicode":"👩🏽‍🦱"},{"unicode":"👩🏾‍🦱"},{"unicode":"👩🏿‍🦱"}]},{"unicode":"🧑‍🦱","tags":["adult","curly hair","gender-neutral","person","unspecified gender"],"skins":[{"unicode":"🧑🏻‍🦱"},{"unicode":"🧑🏼‍🦱"},{"unicode":"🧑🏽‍🦱"},{"unicode":"🧑🏾‍🦱"},{"unicode":"🧑🏿‍🦱"}]},{"unicode":"👩‍🦳","tags":["adult","white hair","woman"],"skins":[{"unicode":"👩🏻‍🦳"},{"unicode":"👩🏼‍🦳"},{"unicode":"👩🏽‍🦳"},{"unicode":"👩🏾‍🦳"},{"unicode":"👩🏿‍🦳"}]},{"unicode":"🧑‍🦳","tags":["adult","gender-neutral","person","unspecified gender","white hair"],"skins":[{"unicode":"🧑🏻‍🦳"},{"unicode":"🧑🏼‍🦳"},{"unicode":"🧑🏽‍🦳"},{"unicode":"🧑🏾‍🦳"},{"unicode":"🧑🏿‍🦳"}]},{"unicode":"👩‍🦲","tags":["adult","bald","woman"],"skins":[{"unicode":"👩🏻‍🦲"},{"unicode":"👩🏼‍🦲"},{"unicode":"👩🏽‍🦲"},{"unicode":"👩🏾‍🦲"},{"unicode":"👩🏿‍🦲"}]},{"unicode":"🧑‍🦲","tags":["adult","bald","gender-neutral","person","unspecified gender"],"skins":[{"unicode":"🧑🏻‍🦲"},{"unicode":"🧑🏼‍🦲"},{"unicode":"🧑🏽‍🦲"},{"unicode":"🧑🏾‍🦲"},{"unicode":"🧑🏿‍🦲"}]},{"unicode":"👱‍♀️","tags":["blond-haired woman","blonde","hair","woman"],"skins":[{"unicode":"👱🏻‍♀️"},{"unicode":"👱🏼‍♀️"},{"unicode":"👱🏽‍♀️"},{"unicode":"👱🏾‍♀️"},{"unicode":"👱🏿‍♀️"}]},{"unicode":"👱‍♂️","tags":["blond","blond-haired man","hair","man"],"skins":[{"unicode":"👱🏻‍♂️"},{"unicode":"👱🏼‍♂️"},{"unicode":"👱🏽‍♂️"},{"unicode":"👱🏾‍♂️"},{"unicode":"👱🏿‍♂️"}]},{"unicode":"🧓","tags":["adult","gender-neutral","old","unspecified gender"],"skins":[{"unicode":"🧓🏻"},{"unicode":"🧓🏼"},{"unicode":"🧓🏽"},{"unicode":"🧓🏾"},{"unicode":"🧓🏿"}]},{"unicode":"👴","tags":["adult","man","old"],"skins":[{"unicode":"👴🏻"},{"unicode":"👴🏼"},{"unicode":"👴🏽"},{"unicode":"👴🏾"},{"unicode":"👴🏿"}]},{"unicode":"👵","tags":["adult","old","woman"],"skins":[{"unicode":"👵🏻"},{"unicode":"👵🏼"},{"unicode":"👵🏽"},{"unicode":"👵🏾"},{"unicode":"👵🏿"}]},{"unicode":"🙍","tags":["frown","gesture"],"skins":[{"unicode":"🙍🏻"},{"unicode":"🙍🏼"},{"unicode":"🙍🏽"},{"unicode":"🙍🏾"},{"unicode":"🙍🏿"}]},{"unicode":"🙍‍♂️","tags":["frowning","gesture","man"],"skins":[{"unicode":"🙍🏻‍♂️"},{"unicode":"🙍🏼‍♂️"},{"unicode":"🙍🏽‍♂️"},{"unicode":"🙍🏾‍♂️"},{"unicode":"🙍🏿‍♂️"}]},{"unicode":"🙍‍♀️","tags":["frowning","gesture","woman"],"skins":[{"unicode":"🙍🏻‍♀️"},{"unicode":"🙍🏼‍♀️"},{"unicode":"🙍🏽‍♀️"},{"unicode":"🙍🏾‍♀️"},{"unicode":"🙍🏿‍♀️"}]},{"unicode":"🙎","tags":["gesture","pouting"],"skins":[{"unicode":"🙎🏻"},{"unicode":"🙎🏼"},{"unicode":"🙎🏽"},{"unicode":"🙎🏾"},{"unicode":"🙎🏿"}]},{"unicode":"🙎‍♂️","tags":["gesture","man","pouting"],"skins":[{"unicode":"🙎🏻‍♂️"},{"unicode":"🙎🏼‍♂️"},{"unicode":"🙎🏽‍♂️"},{"unicode":"🙎🏾‍♂️"},{"unicode":"🙎🏿‍♂️"}]},{"unicode":"🙎‍♀️","tags":["gesture","pouting","woman"],"skins":[{"unicode":"🙎🏻‍♀️"},{"unicode":"🙎🏼‍♀️"},{"unicode":"🙎🏽‍♀️"},{"unicode":"🙎🏾‍♀️"},{"unicode":"🙎🏿‍♀️"}]},{"unicode":"🙅","tags":["forbidden","gesture","hand","person gesturing no","prohibited"],"skins":[{"unicode":"🙅🏻"},{"unicode":"🙅🏼"},{"unicode":"🙅🏽"},{"unicode":"🙅🏾"},{"unicode":"🙅🏿"}]},{"unicode":"🙅‍♂️","tags":["forbidden","gesture","hand","man","man gesturing no","prohibited"],"skins":[{"unicode":"🙅🏻‍♂️"},{"unicode":"🙅🏼‍♂️"},{"unicode":"🙅🏽‍♂️"},{"unicode":"🙅🏾‍♂️"},{"unicode":"🙅🏿‍♂️"}]},{"unicode":"🙅‍♀️","tags":["forbidden","gesture","hand","prohibited","woman","woman gesturing no"],"skins":[{"unicode":"🙅🏻‍♀️"},{"unicode":"🙅🏼‍♀️"},{"unicode":"🙅🏽‍♀️"},{"unicode":"🙅🏾‍♀️"},{"unicode":"🙅🏿‍♀️"}]},{"unicode":"🙆","tags":["gesture","hand","ok","person gesturing ok"],"skins":[{"unicode":"🙆🏻"},{"unicode":"🙆🏼"},{"unicode":"🙆🏽"},{"unicode":"🙆🏾"},{"unicode":"🙆🏿"}]},{"unicode":"🙆‍♂️","tags":["gesture","hand","man","man gesturing ok","ok"],"skins":[{"unicode":"🙆🏻‍♂️"},{"unicode":"🙆🏼‍♂️"},{"unicode":"🙆🏽‍♂️"},{"unicode":"🙆🏾‍♂️"},{"unicode":"🙆🏿‍♂️"}]},{"unicode":"🙆‍♀️","tags":["gesture","hand","ok","woman","woman gesturing ok"],"skins":[{"unicode":"🙆🏻‍♀️"},{"unicode":"🙆🏼‍♀️"},{"unicode":"🙆🏽‍♀️"},{"unicode":"🙆🏾‍♀️"},{"unicode":"🙆🏿‍♀️"}]},{"unicode":"💁","tags":["hand","help","information","sassy","tipping"],"skins":[{"unicode":"💁🏻"},{"unicode":"💁🏼"},{"unicode":"💁🏽"},{"unicode":"💁🏾"},{"unicode":"💁🏿"}]},{"unicode":"💁‍♂️","tags":["man","sassy","tipping hand"],"skins":[{"unicode":"💁🏻‍♂️"},{"unicode":"💁🏼‍♂️"},{"unicode":"💁🏽‍♂️"},{"unicode":"💁🏾‍♂️"},{"unicode":"💁🏿‍♂️"}]},{"unicode":"💁‍♀️","tags":["sassy","tipping hand","woman"],"skins":[{"unicode":"💁🏻‍♀️"},{"unicode":"💁🏼‍♀️"},{"unicode":"💁🏽‍♀️"},{"unicode":"💁🏾‍♀️"},{"unicode":"💁🏿‍♀️"}]},{"unicode":"🙋","tags":["gesture","hand","happy","raised"],"skins":[{"unicode":"🙋🏻"},{"unicode":"🙋🏼"},{"unicode":"🙋🏽"},{"unicode":"🙋🏾"},{"unicode":"🙋🏿"}]},{"unicode":"🙋‍♂️","tags":["gesture","man","raising hand"],"skins":[{"unicode":"🙋🏻‍♂️"},{"unicode":"🙋🏼‍♂️"},{"unicode":"🙋🏽‍♂️"},{"unicode":"🙋🏾‍♂️"},{"unicode":"🙋🏿‍♂️"}]},{"unicode":"🙋‍♀️","tags":["gesture","raising hand","woman"],"skins":[{"unicode":"🙋🏻‍♀️"},{"unicode":"🙋🏼‍♀️"},{"unicode":"🙋🏽‍♀️"},{"unicode":"🙋🏾‍♀️"},{"unicode":"🙋🏿‍♀️"}]},{"unicode":"🧏","tags":["accessibility","deaf","ear","hear"],"skins":[{"unicode":"🧏🏻"},{"unicode":"🧏🏼"},{"unicode":"🧏🏽"},{"unicode":"🧏🏾"},{"unicode":"🧏🏿"}]},{"unicode":"🧏‍♂️","tags":["deaf","man"],"skins":[{"unicode":"🧏🏻‍♂️"},{"unicode":"🧏🏼‍♂️"},{"unicode":"🧏🏽‍♂️"},{"unicode":"🧏🏾‍♂️"},{"unicode":"🧏🏿‍♂️"}]},{"unicode":"🧏‍♀️","tags":["deaf","woman"],"skins":[{"unicode":"🧏🏻‍♀️"},{"unicode":"🧏🏼‍♀️"},{"unicode":"🧏🏽‍♀️"},{"unicode":"🧏🏾‍♀️"},{"unicode":"🧏🏿‍♀️"}]},{"unicode":"🙇","tags":["apology","bow","gesture","sorry"],"skins":[{"unicode":"🙇🏻"},{"unicode":"🙇🏼"},{"unicode":"🙇🏽"},{"unicode":"🙇🏾"},{"unicode":"🙇🏿"}]},{"unicode":"🙇‍♂️","tags":["apology","bowing","favor","gesture","man","sorry"],"skins":[{"unicode":"🙇🏻‍♂️"},{"unicode":"🙇🏼‍♂️"},{"unicode":"🙇🏽‍♂️"},{"unicode":"🙇🏾‍♂️"},{"unicode":"🙇🏿‍♂️"}]},{"unicode":"🙇‍♀️","tags":["apology","bowing","favor","gesture","sorry","woman"],"skins":[{"unicode":"🙇🏻‍♀️"},{"unicode":"🙇🏼‍♀️"},{"unicode":"🙇🏽‍♀️"},{"unicode":"🙇🏾‍♀️"},{"unicode":"🙇🏿‍♀️"}]},{"unicode":"🤦","tags":["disbelief","exasperation","face","palm"],"skins":[{"unicode":"🤦🏻"},{"unicode":"🤦🏼"},{"unicode":"🤦🏽"},{"unicode":"🤦🏾"},{"unicode":"🤦🏿"}]},{"unicode":"🤦‍♂️","tags":["disbelief","exasperation","facepalm","man"],"skins":[{"unicode":"🤦🏻‍♂️"},{"unicode":"🤦🏼‍♂️"},{"unicode":"🤦🏽‍♂️"},{"unicode":"🤦🏾‍♂️"},{"unicode":"🤦🏿‍♂️"}]},{"unicode":"🤦‍♀️","tags":["disbelief","exasperation","facepalm","woman"],"skins":[{"unicode":"🤦🏻‍♀️"},{"unicode":"🤦🏼‍♀️"},{"unicode":"🤦🏽‍♀️"},{"unicode":"🤦🏾‍♀️"},{"unicode":"🤦🏿‍♀️"}]},{"unicode":"🤷","tags":["doubt","ignorance","indifference","shrug"],"skins":[{"unicode":"🤷🏻"},{"unicode":"🤷🏼"},{"unicode":"🤷🏽"},{"unicode":"🤷🏾"},{"unicode":"🤷🏿"}]},{"unicode":"🤷‍♂️","tags":["doubt","ignorance","indifference","man","shrug"],"skins":[{"unicode":"🤷🏻‍♂️"},{"unicode":"🤷🏼‍♂️"},{"unicode":"🤷🏽‍♂️"},{"unicode":"🤷🏾‍♂️"},{"unicode":"🤷🏿‍♂️"}]},{"unicode":"🤷‍♀️","tags":["doubt","ignorance","indifference","shrug","woman"],"skins":[{"unicode":"🤷🏻‍♀️"},{"unicode":"🤷🏼‍♀️"},{"unicode":"🤷🏽‍♀️"},{"unicode":"🤷🏾‍♀️"},{"unicode":"🤷🏿‍♀️"}]},{"unicode":"🧑‍⚕️","tags":["doctor","healthcare","nurse","therapist"],"skins":[{"unicode":"🧑🏻‍⚕️"},{"unicode":"🧑🏼‍⚕️"},{"unicode":"🧑🏽‍⚕️"},{"unicode":"🧑🏾‍⚕️"},{"unicode":"🧑🏿‍⚕️"}]},{"unicode":"👨‍⚕️","tags":["doctor","healthcare","man","nurse","therapist"],"skins":[{"unicode":"👨🏻‍⚕️"},{"unicode":"👨🏼‍⚕️"},{"unicode":"👨🏽‍⚕️"},{"unicode":"👨🏾‍⚕️"},{"unicode":"👨🏿‍⚕️"}]},{"unicode":"👩‍⚕️","tags":["doctor","healthcare","nurse","therapist","woman"],"skins":[{"unicode":"👩🏻‍⚕️"},{"unicode":"👩🏼‍⚕️"},{"unicode":"👩🏽‍⚕️"},{"unicode":"👩🏾‍⚕️"},{"unicode":"👩🏿‍⚕️"}]},{"unicode":"🧑‍🎓","tags":["graduate"],"skins":[{"unicode":"🧑🏻‍🎓"},{"unicode":"🧑🏼‍🎓"},{"unicode":"🧑🏽‍🎓"},{"unicode":"🧑🏾‍🎓"},{"unicode":"🧑🏿‍🎓"}]},{"unicode":"👨‍🎓","tags":["graduate","man","student"],"skins":[{"unicode":"👨🏻‍🎓"},{"unicode":"👨🏼‍🎓"},{"unicode":"👨🏽‍🎓"},{"unicode":"👨🏾‍🎓"},{"unicode":"👨🏿‍🎓"}]},{"unicode":"👩‍🎓","tags":["graduate","student","woman"],"skins":[{"unicode":"👩🏻‍🎓"},{"unicode":"👩🏼‍🎓"},{"unicode":"👩🏽‍🎓"},{"unicode":"👩🏾‍🎓"},{"unicode":"👩🏿‍🎓"}]},{"unicode":"🧑‍🏫","tags":["instructor","professor"],"skins":[{"unicode":"🧑🏻‍🏫"},{"unicode":"🧑🏼‍🏫"},{"unicode":"🧑🏽‍🏫"},{"unicode":"🧑🏾‍🏫"},{"unicode":"🧑🏿‍🏫"}]},{"unicode":"👨‍🏫","tags":["instructor","man","professor","teacher"],"skins":[{"unicode":"👨🏻‍🏫"},{"unicode":"👨🏼‍🏫"},{"unicode":"👨🏽‍🏫"},{"unicode":"👨🏾‍🏫"},{"unicode":"👨🏿‍🏫"}]},{"unicode":"👩‍🏫","tags":["instructor","professor","teacher","woman"],"skins":[{"unicode":"👩🏻‍🏫"},{"unicode":"👩🏼‍🏫"},{"unicode":"👩🏽‍🏫"},{"unicode":"👩🏾‍🏫"},{"unicode":"👩🏿‍🏫"}]},{"unicode":"🧑‍⚖️","tags":["scales"],"skins":[{"unicode":"🧑🏻‍⚖️"},{"unicode":"🧑🏼‍⚖️"},{"unicode":"🧑🏽‍⚖️"},{"unicode":"🧑🏾‍⚖️"},{"unicode":"🧑🏿‍⚖️"}]},{"unicode":"👨‍⚖️","tags":["justice","man","scales"],"skins":[{"unicode":"👨🏻‍⚖️"},{"unicode":"👨🏼‍⚖️"},{"unicode":"👨🏽‍⚖️"},{"unicode":"👨🏾‍⚖️"},{"unicode":"👨🏿‍⚖️"}]},{"unicode":"👩‍⚖️","tags":["judge","scales","woman"],"skins":[{"unicode":"👩🏻‍⚖️"},{"unicode":"👩🏼‍⚖️"},{"unicode":"👩🏽‍⚖️"},{"unicode":"👩🏾‍⚖️"},{"unicode":"👩🏿‍⚖️"}]},{"unicode":"🧑‍🌾","tags":["gardener","rancher"],"skins":[{"unicode":"🧑🏻‍🌾"},{"unicode":"🧑🏼‍🌾"},{"unicode":"🧑🏽‍🌾"},{"unicode":"🧑🏾‍🌾"},{"unicode":"🧑🏿‍🌾"}]},{"unicode":"👨‍🌾","tags":["farmer","gardener","man","rancher"],"skins":[{"unicode":"👨🏻‍🌾"},{"unicode":"👨🏼‍🌾"},{"unicode":"👨🏽‍🌾"},{"unicode":"👨🏾‍🌾"},{"unicode":"👨🏿‍🌾"}]},{"unicode":"👩‍🌾","tags":["farmer","gardener","rancher","woman"],"skins":[{"unicode":"👩🏻‍🌾"},{"unicode":"👩🏼‍🌾"},{"unicode":"👩🏽‍🌾"},{"unicode":"👩🏾‍🌾"},{"unicode":"👩🏿‍🌾"}]},{"unicode":"🧑‍🍳","tags":["chef"],"skins":[{"unicode":"🧑🏻‍🍳"},{"unicode":"🧑🏼‍🍳"},{"unicode":"🧑🏽‍🍳"},{"unicode":"🧑🏾‍🍳"},{"unicode":"🧑🏿‍🍳"}]},{"unicode":"👨‍🍳","tags":["chef","cook","man"],"skins":[{"unicode":"👨🏻‍🍳"},{"unicode":"👨🏼‍🍳"},{"unicode":"👨🏽‍🍳"},{"unicode":"👨🏾‍🍳"},{"unicode":"👨🏿‍🍳"}]},{"unicode":"👩‍🍳","tags":["chef","cook","woman"],"skins":[{"unicode":"👩🏻‍🍳"},{"unicode":"👩🏼‍🍳"},{"unicode":"👩🏽‍🍳"},{"unicode":"👩🏾‍🍳"},{"unicode":"👩🏿‍🍳"}]},{"unicode":"🧑‍🔧","tags":["electrician","plumber","tradesperson"],"skins":[{"unicode":"🧑🏻‍🔧"},{"unicode":"🧑🏼‍🔧"},{"unicode":"🧑🏽‍🔧"},{"unicode":"🧑🏾‍🔧"},{"unicode":"🧑🏿‍🔧"}]},{"unicode":"👨‍🔧","tags":["electrician","man","mechanic","plumber","tradesperson"],"skins":[{"unicode":"👨🏻‍🔧"},{"unicode":"👨🏼‍🔧"},{"unicode":"👨🏽‍🔧"},{"unicode":"👨🏾‍🔧"},{"unicode":"👨🏿‍🔧"}]},{"unicode":"👩‍🔧","tags":["electrician","mechanic","plumber","tradesperson","woman"],"skins":[{"unicode":"👩🏻‍🔧"},{"unicode":"👩🏼‍🔧"},{"unicode":"👩🏽‍🔧"},{"unicode":"👩🏾‍🔧"},{"unicode":"👩🏿‍🔧"}]},{"unicode":"🧑‍🏭","tags":["assembly","factory","industrial","worker"],"skins":[{"unicode":"🧑🏻‍🏭"},{"unicode":"🧑🏼‍🏭"},{"unicode":"🧑🏽‍🏭"},{"unicode":"🧑🏾‍🏭"},{"unicode":"🧑🏿‍🏭"}]},{"unicode":"👨‍🏭","tags":["assembly","factory","industrial","man","worker"],"skins":[{"unicode":"👨🏻‍🏭"},{"unicode":"👨🏼‍🏭"},{"unicode":"👨🏽‍🏭"},{"unicode":"👨🏾‍🏭"},{"unicode":"👨🏿‍🏭"}]},{"unicode":"👩‍🏭","tags":["assembly","factory","industrial","woman","worker"],"skins":[{"unicode":"👩🏻‍🏭"},{"unicode":"👩🏼‍🏭"},{"unicode":"👩🏽‍🏭"},{"unicode":"👩🏾‍🏭"},{"unicode":"👩🏿‍🏭"}]},{"unicode":"🧑‍💼","tags":["architect","business","manager","white-collar"],"skins":[{"unicode":"🧑🏻‍💼"},{"unicode":"🧑🏼‍💼"},{"unicode":"🧑🏽‍💼"},{"unicode":"🧑🏾‍💼"},{"unicode":"🧑🏿‍💼"}]},{"unicode":"👨‍💼","tags":["architect","business","man","manager","white-collar"],"skins":[{"unicode":"👨🏻‍💼"},{"unicode":"👨🏼‍💼"},{"unicode":"👨🏽‍💼"},{"unicode":"👨🏾‍💼"},{"unicode":"👨🏿‍💼"}]},{"unicode":"👩‍💼","tags":["architect","business","manager","white-collar","woman"],"skins":[{"unicode":"👩🏻‍💼"},{"unicode":"👩🏼‍💼"},{"unicode":"👩🏽‍💼"},{"unicode":"👩🏾‍💼"},{"unicode":"👩🏿‍💼"}]},{"unicode":"🧑‍🔬","tags":["biologist","chemist","engineer","physicist"],"skins":[{"unicode":"🧑🏻‍🔬"},{"unicode":"🧑🏼‍🔬"},{"unicode":"🧑🏽‍🔬"},{"unicode":"🧑🏾‍🔬"},{"unicode":"🧑🏿‍🔬"}]},{"unicode":"👨‍🔬","tags":["biologist","chemist","engineer","man","physicist","scientist"],"skins":[{"unicode":"👨🏻‍🔬"},{"unicode":"👨🏼‍🔬"},{"unicode":"👨🏽‍🔬"},{"unicode":"👨🏾‍🔬"},{"unicode":"👨🏿‍🔬"}]},{"unicode":"👩‍🔬","tags":["biologist","chemist","engineer","physicist","scientist","woman"],"skins":[{"unicode":"👩🏻‍🔬"},{"unicode":"👩🏼‍🔬"},{"unicode":"👩🏽‍🔬"},{"unicode":"👩🏾‍🔬"},{"unicode":"👩🏿‍🔬"}]},{"unicode":"🧑‍💻","tags":["coder","developer","inventor","software"],"skins":[{"unicode":"🧑🏻‍💻"},{"unicode":"🧑🏼‍💻"},{"unicode":"🧑🏽‍💻"},{"unicode":"🧑🏾‍💻"},{"unicode":"🧑🏿‍💻"}]},{"unicode":"👨‍💻","tags":["coder","developer","inventor","man","software","technologist"],"skins":[{"unicode":"👨🏻‍💻"},{"unicode":"👨🏼‍💻"},{"unicode":"👨🏽‍💻"},{"unicode":"👨🏾‍💻"},{"unicode":"👨🏿‍💻"}]},{"unicode":"👩‍💻","tags":["coder","developer","inventor","software","technologist","woman"],"skins":[{"unicode":"👩🏻‍💻"},{"unicode":"👩🏼‍💻"},{"unicode":"👩🏽‍💻"},{"unicode":"👩🏾‍💻"},{"unicode":"👩🏿‍💻"}]},{"unicode":"🧑‍🎤","tags":["actor","entertainer","rock","star"],"skins":[{"unicode":"🧑🏻‍🎤"},{"unicode":"🧑🏼‍🎤"},{"unicode":"🧑🏽‍🎤"},{"unicode":"🧑🏾‍🎤"},{"unicode":"🧑🏿‍🎤"}]},{"unicode":"👨‍🎤","tags":["actor","entertainer","man","rock","singer","star"],"skins":[{"unicode":"👨🏻‍🎤"},{"unicode":"👨🏼‍🎤"},{"unicode":"👨🏽‍🎤"},{"unicode":"👨🏾‍🎤"},{"unicode":"👨🏿‍🎤"}]},{"unicode":"👩‍🎤","tags":["actor","entertainer","rock","singer","star","woman"],"skins":[{"unicode":"👩🏻‍🎤"},{"unicode":"👩🏼‍🎤"},{"unicode":"👩🏽‍🎤"},{"unicode":"👩🏾‍🎤"},{"unicode":"👩🏿‍🎤"}]},{"unicode":"🧑‍🎨","tags":["palette"],"skins":[{"unicode":"🧑🏻‍🎨"},{"unicode":"🧑🏼‍🎨"},{"unicode":"🧑🏽‍🎨"},{"unicode":"🧑🏾‍🎨"},{"unicode":"🧑🏿‍🎨"}]},{"unicode":"👨‍🎨","tags":["artist","man","palette"],"skins":[{"unicode":"👨🏻‍🎨"},{"unicode":"👨🏼‍🎨"},{"unicode":"👨🏽‍🎨"},{"unicode":"👨🏾‍🎨"},{"unicode":"👨🏿‍🎨"}]},{"unicode":"👩‍🎨","tags":["artist","palette","woman"],"skins":[{"unicode":"👩🏻‍🎨"},{"unicode":"👩🏼‍🎨"},{"unicode":"👩🏽‍🎨"},{"unicode":"👩🏾‍🎨"},{"unicode":"👩🏿‍🎨"}]},{"unicode":"🧑‍✈️","tags":["plane"],"skins":[{"unicode":"🧑🏻‍✈️"},{"unicode":"🧑🏼‍✈️"},{"unicode":"🧑🏽‍✈️"},{"unicode":"🧑🏾‍✈️"},{"unicode":"🧑🏿‍✈️"}]},{"unicode":"👨‍✈️","tags":["man","pilot","plane"],"skins":[{"unicode":"👨🏻‍✈️"},{"unicode":"👨🏼‍✈️"},{"unicode":"👨🏽‍✈️"},{"unicode":"👨🏾‍✈️"},{"unicode":"👨🏿‍✈️"}]},{"unicode":"👩‍✈️","tags":["pilot","plane","woman"],"skins":[{"unicode":"👩🏻‍✈️"},{"unicode":"👩🏼‍✈️"},{"unicode":"👩🏽‍✈️"},{"unicode":"👩🏾‍✈️"},{"unicode":"👩🏿‍✈️"}]},{"unicode":"🧑‍🚀","tags":["rocket"],"skins":[{"unicode":"🧑🏻‍🚀"},{"unicode":"🧑🏼‍🚀"},{"unicode":"🧑🏽‍🚀"},{"unicode":"🧑🏾‍🚀"},{"unicode":"🧑🏿‍🚀"}]},{"unicode":"👨‍🚀","tags":["astronaut","man","rocket"],"skins":[{"unicode":"👨🏻‍🚀"},{"unicode":"👨🏼‍🚀"},{"unicode":"👨🏽‍🚀"},{"unicode":"👨🏾‍🚀"},{"unicode":"👨🏿‍🚀"}]},{"unicode":"👩‍🚀","tags":["astronaut","rocket","woman"],"skins":[{"unicode":"👩🏻‍🚀"},{"unicode":"👩🏼‍🚀"},{"unicode":"👩🏽‍🚀"},{"unicode":"👩🏾‍🚀"},{"unicode":"👩🏿‍🚀"}]},{"unicode":"🧑‍🚒","tags":["firetruck"],"skins":[{"unicode":"🧑🏻‍🚒"},{"unicode":"🧑🏼‍🚒"},{"unicode":"🧑🏽‍🚒"},{"unicode":"🧑🏾‍🚒"},{"unicode":"🧑🏿‍🚒"}]},{"unicode":"👨‍🚒","tags":["firefighter","firetruck","man"],"skins":[{"unicode":"👨🏻‍🚒"},{"unicode":"👨🏼‍🚒"},{"unicode":"👨🏽‍🚒"},{"unicode":"👨🏾‍🚒"},{"unicode":"👨🏿‍🚒"}]},{"unicode":"👩‍🚒","tags":["firefighter","firetruck","woman"],"skins":[{"unicode":"👩🏻‍🚒"},{"unicode":"👩🏼‍🚒"},{"unicode":"👩🏽‍🚒"},{"unicode":"👩🏾‍🚒"},{"unicode":"👩🏿‍🚒"}]},{"unicode":"👮","tags":["cop","officer","police"],"skins":[{"unicode":"👮🏻"},{"unicode":"👮🏼"},{"unicode":"👮🏽"},{"unicode":"👮🏾"},{"unicode":"👮🏿"}]},{"unicode":"👮‍♂️","tags":["cop","man","officer","police"],"skins":[{"unicode":"👮🏻‍♂️"},{"unicode":"👮🏼‍♂️"},{"unicode":"👮🏽‍♂️"},{"unicode":"👮🏾‍♂️"},{"unicode":"👮🏿‍♂️"}]},{"unicode":"👮‍♀️","tags":["cop","officer","police","woman"],"skins":[{"unicode":"👮🏻‍♀️"},{"unicode":"👮🏼‍♀️"},{"unicode":"👮🏽‍♀️"},{"unicode":"👮🏾‍♀️"},{"unicode":"👮🏿‍♀️"}]},{"unicode":"🕵️","tags":["sleuth","spy"],"skins":[{"unicode":"🕵🏻"},{"unicode":"🕵🏼"},{"unicode":"🕵🏽"},{"unicode":"🕵🏾"},{"unicode":"🕵🏿"}]},{"unicode":"🕵️‍♂️","tags":["detective","man","sleuth","spy"],"skins":[{"unicode":"🕵🏻‍♂️"},{"unicode":"🕵🏼‍♂️"},{"unicode":"🕵🏽‍♂️"},{"unicode":"🕵🏾‍♂️"},{"unicode":"🕵🏿‍♂️"}]},{"unicode":"🕵️‍♀️","tags":["detective","sleuth","spy","woman"],"skins":[{"unicode":"🕵🏻‍♀️"},{"unicode":"🕵🏼‍♀️"},{"unicode":"🕵🏽‍♀️"},{"unicode":"🕵🏾‍♀️"},{"unicode":"🕵🏿‍♀️"}]},{"unicode":"💂","tags":["guard"],"skins":[{"unicode":"💂🏻"},{"unicode":"💂🏼"},{"unicode":"💂🏽"},{"unicode":"💂🏾"},{"unicode":"💂🏿"}]},{"unicode":"💂‍♂️","tags":["guard","man"],"skins":[{"unicode":"💂🏻‍♂️"},{"unicode":"💂🏼‍♂️"},{"unicode":"💂🏽‍♂️"},{"unicode":"💂🏾‍♂️"},{"unicode":"💂🏿‍♂️"}]},{"unicode":"💂‍♀️","tags":["guard","woman"],"skins":[{"unicode":"💂🏻‍♀️"},{"unicode":"💂🏼‍♀️"},{"unicode":"💂🏽‍♀️"},{"unicode":"💂🏾‍♀️"},{"unicode":"💂🏿‍♀️"}]},{"unicode":"🥷","tags":["fighter","hidden","stealth"],"skins":[{"unicode":"🥷🏻"},{"unicode":"🥷🏼"},{"unicode":"🥷🏽"},{"unicode":"🥷🏾"},{"unicode":"🥷🏿"}]},{"unicode":"👷","tags":["construction","hat","worker"],"skins":[{"unicode":"👷🏻"},{"unicode":"👷🏼"},{"unicode":"👷🏽"},{"unicode":"👷🏾"},{"unicode":"👷🏿"}]},{"unicode":"👷‍♂️","tags":["construction","man","worker"],"skins":[{"unicode":"👷🏻‍♂️"},{"unicode":"👷🏼‍♂️"},{"unicode":"👷🏽‍♂️"},{"unicode":"👷🏾‍♂️"},{"unicode":"👷🏿‍♂️"}]},{"unicode":"👷‍♀️","tags":["construction","woman","worker"],"skins":[{"unicode":"👷🏻‍♀️"},{"unicode":"👷🏼‍♀️"},{"unicode":"👷🏽‍♀️"},{"unicode":"👷🏾‍♀️"},{"unicode":"👷🏿‍♀️"}]},{"unicode":"🤴","tags":["prince"],"skins":[{"unicode":"🤴🏻"},{"unicode":"🤴🏼"},{"unicode":"🤴🏽"},{"unicode":"🤴🏾"},{"unicode":"🤴🏿"}]},{"unicode":"👸","tags":["fairy tale","fantasy"],"skins":[{"unicode":"👸🏻"},{"unicode":"👸🏼"},{"unicode":"👸🏽"},{"unicode":"👸🏾"},{"unicode":"👸🏿"}]},{"unicode":"👳","tags":["turban"],"skins":[{"unicode":"👳🏻"},{"unicode":"👳🏼"},{"unicode":"👳🏽"},{"unicode":"👳🏾"},{"unicode":"👳🏿"}]},{"unicode":"👳‍♂️","tags":["man","turban"],"skins":[{"unicode":"👳🏻‍♂️"},{"unicode":"👳🏼‍♂️"},{"unicode":"👳🏽‍♂️"},{"unicode":"👳🏾‍♂️"},{"unicode":"👳🏿‍♂️"}]},{"unicode":"👳‍♀️","tags":["turban","woman"],"skins":[{"unicode":"👳🏻‍♀️"},{"unicode":"👳🏼‍♀️"},{"unicode":"👳🏽‍♀️"},{"unicode":"👳🏾‍♀️"},{"unicode":"👳🏿‍♀️"}]},{"unicode":"👲","tags":["cap","gua pi mao","hat","person","skullcap"],"skins":[{"unicode":"👲🏻"},{"unicode":"👲🏼"},{"unicode":"👲🏽"},{"unicode":"👲🏾"},{"unicode":"👲🏿"}]},{"unicode":"🧕","tags":["headscarf","hijab","mantilla","tichel"],"skins":[{"unicode":"🧕🏻"},{"unicode":"🧕🏼"},{"unicode":"🧕🏽"},{"unicode":"🧕🏾"},{"unicode":"🧕🏿"}]},{"unicode":"🤵","tags":["groom","person","tuxedo"],"skins":[{"unicode":"🤵🏻"},{"unicode":"🤵🏼"},{"unicode":"🤵🏽"},{"unicode":"🤵🏾"},{"unicode":"🤵🏿"}]},{"unicode":"🤵‍♂️","tags":["man","tuxedo"],"skins":[{"unicode":"🤵🏻‍♂️"},{"unicode":"🤵🏼‍♂️"},{"unicode":"🤵🏽‍♂️"},{"unicode":"🤵🏾‍♂️"},{"unicode":"🤵🏿‍♂️"}]},{"unicode":"🤵‍♀️","tags":["tuxedo","woman"],"skins":[{"unicode":"🤵🏻‍♀️"},{"unicode":"🤵🏼‍♀️"},{"unicode":"🤵🏽‍♀️"},{"unicode":"🤵🏾‍♀️"},{"unicode":"🤵🏿‍♀️"}]},{"unicode":"👰","tags":["bride","person","veil","wedding"],"skins":[{"unicode":"👰🏻"},{"unicode":"👰🏼"},{"unicode":"👰🏽"},{"unicode":"👰🏾"},{"unicode":"👰🏿"}]},{"unicode":"👰‍♂️","tags":["man","veil"],"skins":[{"unicode":"👰🏻‍♂️"},{"unicode":"👰🏼‍♂️"},{"unicode":"👰🏽‍♂️"},{"unicode":"👰🏾‍♂️"},{"unicode":"👰🏿‍♂️"}]},{"unicode":"👰‍♀️","tags":["veil","woman"],"skins":[{"unicode":"👰🏻‍♀️"},{"unicode":"👰🏼‍♀️"},{"unicode":"👰🏽‍♀️"},{"unicode":"👰🏾‍♀️"},{"unicode":"👰🏿‍♀️"}]},{"unicode":"🤰","tags":["pregnant","woman"],"skins":[{"unicode":"🤰🏻"},{"unicode":"🤰🏼"},{"unicode":"🤰🏽"},{"unicode":"🤰🏾"},{"unicode":"🤰🏿"}]},{"unicode":"🤱","tags":["baby","breast","nursing"],"skins":[{"unicode":"🤱🏻"},{"unicode":"🤱🏼"},{"unicode":"🤱🏽"},{"unicode":"🤱🏾"},{"unicode":"🤱🏿"}]},{"unicode":"👩‍🍼","tags":["baby","feeding","nursing","woman"],"skins":[{"unicode":"👩🏻‍🍼"},{"unicode":"👩🏼‍🍼"},{"unicode":"👩🏽‍🍼"},{"unicode":"👩🏾‍🍼"},{"unicode":"👩🏿‍🍼"}]},{"unicode":"👨‍🍼","tags":["baby","feeding","man","nursing"],"skins":[{"unicode":"👨🏻‍🍼"},{"unicode":"👨🏼‍🍼"},{"unicode":"👨🏽‍🍼"},{"unicode":"👨🏾‍🍼"},{"unicode":"👨🏿‍🍼"}]},{"unicode":"🧑‍🍼","tags":["baby","feeding","nursing","person"],"skins":[{"unicode":"🧑🏻‍🍼"},{"unicode":"🧑🏼‍🍼"},{"unicode":"🧑🏽‍🍼"},{"unicode":"🧑🏾‍🍼"},{"unicode":"🧑🏿‍🍼"}]},{"unicode":"👼","tags":["angel","baby","face","fairy tale","fantasy"],"skins":[{"unicode":"👼🏻"},{"unicode":"👼🏼"},{"unicode":"👼🏽"},{"unicode":"👼🏾"},{"unicode":"👼🏿"}]},{"unicode":"🎅","tags":["celebration","christmas","claus","father","santa","santa claus"],"skins":[{"unicode":"🎅🏻"},{"unicode":"🎅🏼"},{"unicode":"🎅🏽"},{"unicode":"🎅🏾"},{"unicode":"🎅🏿"}]},{"unicode":"🤶","tags":["celebration","christmas","claus","mother","mrs.","mrs. claus"],"skins":[{"unicode":"🤶🏻"},{"unicode":"🤶🏼"},{"unicode":"🤶🏽"},{"unicode":"🤶🏾"},{"unicode":"🤶🏿"}]},{"unicode":"🧑‍🎄","tags":["claus, christmas"],"skins":[{"unicode":"🧑🏻‍🎄"},{"unicode":"🧑🏼‍🎄"},{"unicode":"🧑🏽‍🎄"},{"unicode":"🧑🏾‍🎄"},{"unicode":"🧑🏿‍🎄"}]},{"unicode":"🦸","tags":["good","hero","heroine","superpower"],"skins":[{"unicode":"🦸🏻"},{"unicode":"🦸🏼"},{"unicode":"🦸🏽"},{"unicode":"🦸🏾"},{"unicode":"🦸🏿"}]},{"unicode":"🦸‍♂️","tags":["good","hero","man","superpower"],"skins":[{"unicode":"🦸🏻‍♂️"},{"unicode":"🦸🏼‍♂️"},{"unicode":"🦸🏽‍♂️"},{"unicode":"🦸🏾‍♂️"},{"unicode":"🦸🏿‍♂️"}]},{"unicode":"🦸‍♀️","tags":["good","hero","heroine","superpower","woman"],"skins":[{"unicode":"🦸🏻‍♀️"},{"unicode":"🦸🏼‍♀️"},{"unicode":"🦸🏽‍♀️"},{"unicode":"🦸🏾‍♀️"},{"unicode":"🦸🏿‍♀️"}]},{"unicode":"🦹","tags":["criminal","evil","superpower","villain"],"skins":[{"unicode":"🦹🏻"},{"unicode":"🦹🏼"},{"unicode":"🦹🏽"},{"unicode":"🦹🏾"},{"unicode":"🦹🏿"}]},{"unicode":"🦹‍♂️","tags":["criminal","evil","man","superpower","villain"],"skins":[{"unicode":"🦹🏻‍♂️"},{"unicode":"🦹🏼‍♂️"},{"unicode":"🦹🏽‍♂️"},{"unicode":"🦹🏾‍♂️"},{"unicode":"🦹🏿‍♂️"}]},{"unicode":"🦹‍♀️","tags":["criminal","evil","superpower","villain","woman"],"skins":[{"unicode":"🦹🏻‍♀️"},{"unicode":"🦹🏼‍♀️"},{"unicode":"🦹🏽‍♀️"},{"unicode":"🦹🏾‍♀️"},{"unicode":"🦹🏿‍♀️"}]},{"unicode":"🧙","tags":["sorcerer","sorceress","witch","wizard"],"skins":[{"unicode":"🧙🏻"},{"unicode":"🧙🏼"},{"unicode":"🧙🏽"},{"unicode":"🧙🏾"},{"unicode":"🧙🏿"}]},{"unicode":"🧙‍♂️","tags":["sorcerer","wizard"],"skins":[{"unicode":"🧙🏻‍♂️"},{"unicode":"🧙🏼‍♂️"},{"unicode":"🧙🏽‍♂️"},{"unicode":"🧙🏾‍♂️"},{"unicode":"🧙🏿‍♂️"}]},{"unicode":"🧙‍♀️","tags":["sorceress","witch"],"skins":[{"unicode":"🧙🏻‍♀️"},{"unicode":"🧙🏼‍♀️"},{"unicode":"🧙🏽‍♀️"},{"unicode":"🧙🏾‍♀️"},{"unicode":"🧙🏿‍♀️"}]},{"unicode":"🧚","tags":["oberon","puck","titania"],"skins":[{"unicode":"🧚🏻"},{"unicode":"🧚🏼"},{"unicode":"🧚🏽"},{"unicode":"🧚🏾"},{"unicode":"🧚🏿"}]},{"unicode":"🧚‍♂️","tags":["oberon","puck"],"skins":[{"unicode":"🧚🏻‍♂️"},{"unicode":"🧚🏼‍♂️"},{"unicode":"🧚🏽‍♂️"},{"unicode":"🧚🏾‍♂️"},{"unicode":"🧚🏿‍♂️"}]},{"unicode":"🧚‍♀️","tags":["titania"],"skins":[{"unicode":"🧚🏻‍♀️"},{"unicode":"🧚🏼‍♀️"},{"unicode":"🧚🏽‍♀️"},{"unicode":"🧚🏾‍♀️"},{"unicode":"🧚🏿‍♀️"}]},{"unicode":"🧛","tags":["dracula","undead"],"skins":[{"unicode":"🧛🏻"},{"unicode":"🧛🏼"},{"unicode":"🧛🏽"},{"unicode":"🧛🏾"},{"unicode":"🧛🏿"}]},{"unicode":"🧛‍♂️","tags":["dracula","undead"],"skins":[{"unicode":"🧛🏻‍♂️"},{"unicode":"🧛🏼‍♂️"},{"unicode":"🧛🏽‍♂️"},{"unicode":"🧛🏾‍♂️"},{"unicode":"🧛🏿‍♂️"}]},{"unicode":"🧛‍♀️","tags":["undead"],"skins":[{"unicode":"🧛🏻‍♀️"},{"unicode":"🧛🏼‍♀️"},{"unicode":"🧛🏽‍♀️"},{"unicode":"🧛🏾‍♀️"},{"unicode":"🧛🏿‍♀️"}]},{"unicode":"🧜","tags":["mermaid","merman","merwoman"],"skins":[{"unicode":"🧜🏻"},{"unicode":"🧜🏼"},{"unicode":"🧜🏽"},{"unicode":"🧜🏾"},{"unicode":"🧜🏿"}]},{"unicode":"🧜‍♂️","tags":["triton"],"skins":[{"unicode":"🧜🏻‍♂️"},{"unicode":"🧜🏼‍♂️"},{"unicode":"🧜🏽‍♂️"},{"unicode":"🧜🏾‍♂️"},{"unicode":"🧜🏿‍♂️"}]},{"unicode":"🧜‍♀️","tags":["merwoman"],"skins":[{"unicode":"🧜🏻‍♀️"},{"unicode":"🧜🏼‍♀️"},{"unicode":"🧜🏽‍♀️"},{"unicode":"🧜🏾‍♀️"},{"unicode":"🧜🏿‍♀️"}]},{"unicode":"🧝","tags":["magical"],"skins":[{"unicode":"🧝🏻"},{"unicode":"🧝🏼"},{"unicode":"🧝🏽"},{"unicode":"🧝🏾"},{"unicode":"🧝🏿"}]},{"unicode":"🧝‍♂️","tags":["magical"],"skins":[{"unicode":"🧝🏻‍♂️"},{"unicode":"🧝🏼‍♂️"},{"unicode":"🧝🏽‍♂️"},{"unicode":"🧝🏾‍♂️"},{"unicode":"🧝🏿‍♂️"}]},{"unicode":"🧝‍♀️","tags":["magical"],"skins":[{"unicode":"🧝🏻‍♀️"},{"unicode":"🧝🏼‍♀️"},{"unicode":"🧝🏽‍♀️"},{"unicode":"🧝🏾‍♀️"},{"unicode":"🧝🏿‍♀️"}]},{"unicode":"🧞","tags":["djinn"]},{"unicode":"🧞‍♂️","tags":["djinn"]},{"unicode":"🧞‍♀️","tags":["djinn"]},{"unicode":"🧟","tags":["undead","walking dead"]},{"unicode":"🧟‍♂️","tags":["undead","walking dead"]},{"unicode":"🧟‍♀️","tags":["undead","walking dead"]},{"unicode":"💆","tags":["face","massage","salon"],"skins":[{"unicode":"💆🏻"},{"unicode":"💆🏼"},{"unicode":"💆🏽"},{"unicode":"💆🏾"},{"unicode":"💆🏿"}]},{"unicode":"💆‍♂️","tags":["face","man","massage"],"skins":[{"unicode":"💆🏻‍♂️"},{"unicode":"💆🏼‍♂️"},{"unicode":"💆🏽‍♂️"},{"unicode":"💆🏾‍♂️"},{"unicode":"💆🏿‍♂️"}]},{"unicode":"💆‍♀️","tags":["face","massage","woman"],"skins":[{"unicode":"💆🏻‍♀️"},{"unicode":"💆🏼‍♀️"},{"unicode":"💆🏽‍♀️"},{"unicode":"💆🏾‍♀️"},{"unicode":"💆🏿‍♀️"}]},{"unicode":"💇","tags":["barber","beauty","haircut","parlor"],"skins":[{"unicode":"💇🏻"},{"unicode":"💇🏼"},{"unicode":"💇🏽"},{"unicode":"💇🏾"},{"unicode":"💇🏿"}]},{"unicode":"💇‍♂️","tags":["haircut","man"],"skins":[{"unicode":"💇🏻‍♂️"},{"unicode":"💇🏼‍♂️"},{"unicode":"💇🏽‍♂️"},{"unicode":"💇🏾‍♂️"},{"unicode":"💇🏿‍♂️"}]},{"unicode":"💇‍♀️","tags":["haircut","woman"],"skins":[{"unicode":"💇🏻‍♀️"},{"unicode":"💇🏼‍♀️"},{"unicode":"💇🏽‍♀️"},{"unicode":"💇🏾‍♀️"},{"unicode":"💇🏿‍♀️"}]},{"unicode":"🚶","tags":["hike","walk","walking"],"skins":[{"unicode":"🚶🏻"},{"unicode":"🚶🏼"},{"unicode":"🚶🏽"},{"unicode":"🚶🏾"},{"unicode":"🚶🏿"}]},{"unicode":"🚶‍♂️","tags":["hike","man","walk"],"skins":[{"unicode":"🚶🏻‍♂️"},{"unicode":"🚶🏼‍♂️"},{"unicode":"🚶🏽‍♂️"},{"unicode":"🚶🏾‍♂️"},{"unicode":"🚶🏿‍♂️"}]},{"unicode":"🚶‍♀️","tags":["hike","walk","woman"],"skins":[{"unicode":"🚶🏻‍♀️"},{"unicode":"🚶🏼‍♀️"},{"unicode":"🚶🏽‍♀️"},{"unicode":"🚶🏾‍♀️"},{"unicode":"🚶🏿‍♀️"}]},{"unicode":"🧍","tags":["stand","standing"],"skins":[{"unicode":"🧍🏻"},{"unicode":"🧍🏼"},{"unicode":"🧍🏽"},{"unicode":"🧍🏾"},{"unicode":"🧍🏿"}]},{"unicode":"🧍‍♂️","tags":["man","standing"],"skins":[{"unicode":"🧍🏻‍♂️"},{"unicode":"🧍🏼‍♂️"},{"unicode":"🧍🏽‍♂️"},{"unicode":"🧍🏾‍♂️"},{"unicode":"🧍🏿‍♂️"}]},{"unicode":"🧍‍♀️","tags":["standing","woman"],"skins":[{"unicode":"🧍🏻‍♀️"},{"unicode":"🧍🏼‍♀️"},{"unicode":"🧍🏽‍♀️"},{"unicode":"🧍🏾‍♀️"},{"unicode":"🧍🏿‍♀️"}]},{"unicode":"🧎","tags":["kneel","kneeling"],"skins":[{"unicode":"🧎🏻"},{"unicode":"🧎🏼"},{"unicode":"🧎🏽"},{"unicode":"🧎🏾"},{"unicode":"🧎🏿"}]},{"unicode":"🧎‍♂️","tags":["kneeling","man"],"skins":[{"unicode":"🧎🏻‍♂️"},{"unicode":"🧎🏼‍♂️"},{"unicode":"🧎🏽‍♂️"},{"unicode":"🧎🏾‍♂️"},{"unicode":"🧎🏿‍♂️"}]},{"unicode":"🧎‍♀️","tags":["kneeling","woman"],"skins":[{"unicode":"🧎🏻‍♀️"},{"unicode":"🧎🏼‍♀️"},{"unicode":"🧎🏽‍♀️"},{"unicode":"🧎🏾‍♀️"},{"unicode":"🧎🏿‍♀️"}]},{"unicode":"🧑‍🦯","tags":["accessibility","blind"],"skins":[{"unicode":"🧑🏻‍🦯"},{"unicode":"🧑🏼‍🦯"},{"unicode":"🧑🏽‍🦯"},{"unicode":"🧑🏾‍🦯"},{"unicode":"🧑🏿‍🦯"}]},{"unicode":"👨‍🦯","tags":["accessibility","blind","man"],"skins":[{"unicode":"👨🏻‍🦯"},{"unicode":"👨🏼‍🦯"},{"unicode":"👨🏽‍🦯"},{"unicode":"👨🏾‍🦯"},{"unicode":"👨🏿‍🦯"}]},{"unicode":"👩‍🦯","tags":["accessibility","blind","woman"],"skins":[{"unicode":"👩🏻‍🦯"},{"unicode":"👩🏼‍🦯"},{"unicode":"👩🏽‍🦯"},{"unicode":"👩🏾‍🦯"},{"unicode":"👩🏿‍🦯"}]},{"unicode":"🧑‍🦼","tags":["accessibility","wheelchair"],"skins":[{"unicode":"🧑🏻‍🦼"},{"unicode":"🧑🏼‍🦼"},{"unicode":"🧑🏽‍🦼"},{"unicode":"🧑🏾‍🦼"},{"unicode":"🧑🏿‍🦼"}]},{"unicode":"👨‍🦼","tags":["accessibility","man","wheelchair"],"skins":[{"unicode":"👨🏻‍🦼"},{"unicode":"👨🏼‍🦼"},{"unicode":"👨🏽‍🦼"},{"unicode":"👨🏾‍🦼"},{"unicode":"👨🏿‍🦼"}]},{"unicode":"👩‍🦼","tags":["accessibility","wheelchair","woman"],"skins":[{"unicode":"👩🏻‍🦼"},{"unicode":"👩🏼‍🦼"},{"unicode":"👩🏽‍🦼"},{"unicode":"👩🏾‍🦼"},{"unicode":"👩🏿‍🦼"}]},{"unicode":"🧑‍🦽","tags":["accessibility","wheelchair"],"skins":[{"unicode":"🧑🏻‍🦽"},{"unicode":"🧑🏼‍🦽"},{"unicode":"🧑🏽‍🦽"},{"unicode":"🧑🏾‍🦽"},{"unicode":"🧑🏿‍🦽"}]},{"unicode":"👨‍🦽","tags":["accessibility","man","wheelchair"],"skins":[{"unicode":"👨🏻‍🦽"},{"unicode":"👨🏼‍🦽"},{"unicode":"👨🏽‍🦽"},{"unicode":"👨🏾‍🦽"},{"unicode":"👨🏿‍🦽"}]},{"unicode":"👩‍🦽","tags":["accessibility","wheelchair","woman"],"skins":[{"unicode":"👩🏻‍🦽"},{"unicode":"👩🏼‍🦽"},{"unicode":"👩🏽‍🦽"},{"unicode":"👩🏾‍🦽"},{"unicode":"👩🏿‍🦽"}]},{"unicode":"🏃","tags":["marathon","running"],"skins":[{"unicode":"🏃🏻"},{"unicode":"🏃🏼"},{"unicode":"🏃🏽"},{"unicode":"🏃🏾"},{"unicode":"🏃🏿"}]},{"unicode":"🏃‍♂️","tags":["man","marathon","racing","running"],"skins":[{"unicode":"🏃🏻‍♂️"},{"unicode":"🏃🏼‍♂️"},{"unicode":"🏃🏽‍♂️"},{"unicode":"🏃🏾‍♂️"},{"unicode":"🏃🏿‍♂️"}]},{"unicode":"🏃‍♀️","tags":["marathon","racing","running","woman"],"skins":[{"unicode":"🏃🏻‍♀️"},{"unicode":"🏃🏼‍♀️"},{"unicode":"🏃🏽‍♀️"},{"unicode":"🏃🏾‍♀️"},{"unicode":"🏃🏿‍♀️"}]},{"unicode":"💃","tags":["dancing","woman"],"skins":[{"unicode":"💃🏻"},{"unicode":"💃🏼"},{"unicode":"💃🏽"},{"unicode":"💃🏾"},{"unicode":"💃🏿"}]},{"unicode":"🕺","tags":["dance","man"],"skins":[{"unicode":"🕺🏻"},{"unicode":"🕺🏼"},{"unicode":"🕺🏽"},{"unicode":"🕺🏾"},{"unicode":"🕺🏿"}]},{"unicode":"🕴️","tags":["business","person","suit"],"skins":[{"unicode":"🕴🏻"},{"unicode":"🕴🏼"},{"unicode":"🕴🏽"},{"unicode":"🕴🏾"},{"unicode":"🕴🏿"}]},{"unicode":"👯","tags":["bunny ear","dancer","partying"]},{"unicode":"👯‍♂️","tags":["bunny ear","dancer","men","partying"]},{"unicode":"👯‍♀️","tags":["bunny ear","dancer","partying","women"]},{"unicode":"🧖","tags":["sauna","steam room"],"skins":[{"unicode":"🧖🏻"},{"unicode":"🧖🏼"},{"unicode":"🧖🏽"},{"unicode":"🧖🏾"},{"unicode":"🧖🏿"}]},{"unicode":"🧖‍♂️","tags":["sauna","steam room"],"skins":[{"unicode":"🧖🏻‍♂️"},{"unicode":"🧖🏼‍♂️"},{"unicode":"🧖🏽‍♂️"},{"unicode":"🧖🏾‍♂️"},{"unicode":"🧖🏿‍♂️"}]},{"unicode":"🧖‍♀️","tags":["sauna","steam room"],"skins":[{"unicode":"🧖🏻‍♀️"},{"unicode":"🧖🏼‍♀️"},{"unicode":"🧖🏽‍♀️"},{"unicode":"🧖🏾‍♀️"},{"unicode":"🧖🏿‍♀️"}]},{"unicode":"🧗","tags":["climber"],"skins":[{"unicode":"🧗🏻"},{"unicode":"🧗🏼"},{"unicode":"🧗🏽"},{"unicode":"🧗🏾"},{"unicode":"🧗🏿"}]},{"unicode":"🧗‍♂️","tags":["climber"],"skins":[{"unicode":"🧗🏻‍♂️"},{"unicode":"🧗🏼‍♂️"},{"unicode":"🧗🏽‍♂️"},{"unicode":"🧗🏾‍♂️"},{"unicode":"🧗🏿‍♂️"}]},{"unicode":"🧗‍♀️","tags":["climber"],"skins":[{"unicode":"🧗🏻‍♀️"},{"unicode":"🧗🏼‍♀️"},{"unicode":"🧗🏽‍♀️"},{"unicode":"🧗🏾‍♀️"},{"unicode":"🧗🏿‍♀️"}]},{"unicode":"🤺","tags":["fencer","fencing","sword"]},{"unicode":"🏇","tags":["horse","jockey","racehorse","racing"],"skins":[{"unicode":"🏇🏻"},{"unicode":"🏇🏼"},{"unicode":"🏇🏽"},{"unicode":"🏇🏾"},{"unicode":"🏇🏿"}]},{"unicode":"⛷️","tags":["ski","snow"]},{"unicode":"🏂️","tags":["ski","snow","snowboard"],"skins":[{"unicode":"🏂🏻"},{"unicode":"🏂🏼"},{"unicode":"🏂🏽"},{"unicode":"🏂🏾"},{"unicode":"🏂🏿"}]},{"unicode":"🏌️","tags":["ball","golf"],"skins":[{"unicode":"🏌🏻"},{"unicode":"🏌🏼"},{"unicode":"🏌🏽"},{"unicode":"🏌🏾"},{"unicode":"🏌🏿"}]},{"unicode":"🏌️‍♂️","tags":["golf","man"],"skins":[{"unicode":"🏌🏻‍♂️"},{"unicode":"🏌🏼‍♂️"},{"unicode":"🏌🏽‍♂️"},{"unicode":"🏌🏾‍♂️"},{"unicode":"🏌🏿‍♂️"}]},{"unicode":"🏌️‍♀️","tags":["golf","woman"],"skins":[{"unicode":"🏌🏻‍♀️"},{"unicode":"🏌🏼‍♀️"},{"unicode":"🏌🏽‍♀️"},{"unicode":"🏌🏾‍♀️"},{"unicode":"🏌🏿‍♀️"}]},{"unicode":"🏄️","tags":["surfing"],"skins":[{"unicode":"🏄🏻"},{"unicode":"🏄🏼"},{"unicode":"🏄🏽"},{"unicode":"🏄🏾"},{"unicode":"🏄🏿"}]},{"unicode":"🏄‍♂️","tags":["man","surfing"],"skins":[{"unicode":"🏄🏻‍♂️"},{"unicode":"🏄🏼‍♂️"},{"unicode":"🏄🏽‍♂️"},{"unicode":"🏄🏾‍♂️"},{"unicode":"🏄🏿‍♂️"}]},{"unicode":"🏄‍♀️","tags":["surfing","woman"],"skins":[{"unicode":"🏄🏻‍♀️"},{"unicode":"🏄🏼‍♀️"},{"unicode":"🏄🏽‍♀️"},{"unicode":"🏄🏾‍♀️"},{"unicode":"🏄🏿‍♀️"}]},{"unicode":"🚣","tags":["boat","rowboat"],"skins":[{"unicode":"🚣🏻"},{"unicode":"🚣🏼"},{"unicode":"🚣🏽"},{"unicode":"🚣🏾"},{"unicode":"🚣🏿"}]},{"unicode":"🚣‍♂️","tags":["boat","man","rowboat"],"skins":[{"unicode":"🚣🏻‍♂️"},{"unicode":"🚣🏼‍♂️"},{"unicode":"🚣🏽‍♂️"},{"unicode":"🚣🏾‍♂️"},{"unicode":"🚣🏿‍♂️"}]},{"unicode":"🚣‍♀️","tags":["boat","rowboat","woman"],"skins":[{"unicode":"🚣🏻‍♀️"},{"unicode":"🚣🏼‍♀️"},{"unicode":"🚣🏽‍♀️"},{"unicode":"🚣🏾‍♀️"},{"unicode":"🚣🏿‍♀️"}]},{"unicode":"🏊️","tags":["swim"],"skins":[{"unicode":"🏊🏻"},{"unicode":"🏊🏼"},{"unicode":"🏊🏽"},{"unicode":"🏊🏾"},{"unicode":"🏊🏿"}]},{"unicode":"🏊‍♂️","tags":["man","swim"],"skins":[{"unicode":"🏊🏻‍♂️"},{"unicode":"🏊🏼‍♂️"},{"unicode":"🏊🏽‍♂️"},{"unicode":"🏊🏾‍♂️"},{"unicode":"🏊🏿‍♂️"}]},{"unicode":"🏊‍♀️","tags":["swim","woman"],"skins":[{"unicode":"🏊🏻‍♀️"},{"unicode":"🏊🏼‍♀️"},{"unicode":"🏊🏽‍♀️"},{"unicode":"🏊🏾‍♀️"},{"unicode":"🏊🏿‍♀️"}]},{"unicode":"⛹️","tags":["ball"],"skins":[{"unicode":"⛹🏻"},{"unicode":"⛹🏼"},{"unicode":"⛹🏽"},{"unicode":"⛹🏾"},{"unicode":"⛹🏿"}]},{"unicode":"⛹️‍♂️","tags":["ball","man"],"skins":[{"unicode":"⛹🏻‍♂️"},{"unicode":"⛹🏼‍♂️"},{"unicode":"⛹🏽‍♂️"},{"unicode":"⛹🏾‍♂️"},{"unicode":"⛹🏿‍♂️"}]},{"unicode":"⛹️‍♀️","tags":["ball","woman"],"skins":[{"unicode":"⛹🏻‍♀️"},{"unicode":"⛹🏼‍♀️"},{"unicode":"⛹🏽‍♀️"},{"unicode":"⛹🏾‍♀️"},{"unicode":"⛹🏿‍♀️"}]},{"unicode":"🏋️","tags":["lifter","weight"],"skins":[{"unicode":"🏋🏻"},{"unicode":"🏋🏼"},{"unicode":"🏋🏽"},{"unicode":"🏋🏾"},{"unicode":"🏋🏿"}]},{"unicode":"🏋️‍♂️","tags":["man","weight lifter"],"skins":[{"unicode":"🏋🏻‍♂️"},{"unicode":"🏋🏼‍♂️"},{"unicode":"🏋🏽‍♂️"},{"unicode":"🏋🏾‍♂️"},{"unicode":"🏋🏿‍♂️"}]},{"unicode":"🏋️‍♀️","tags":["weight lifter","woman"],"skins":[{"unicode":"🏋🏻‍♀️"},{"unicode":"🏋🏼‍♀️"},{"unicode":"🏋🏽‍♀️"},{"unicode":"🏋🏾‍♀️"},{"unicode":"🏋🏿‍♀️"}]},{"unicode":"🚴","tags":["bicycle","biking","cyclist"],"skins":[{"unicode":"🚴🏻"},{"unicode":"🚴🏼"},{"unicode":"🚴🏽"},{"unicode":"🚴🏾"},{"unicode":"🚴🏿"}]},{"unicode":"🚴‍♂️","tags":["bicycle","biking","cyclist","man"],"skins":[{"unicode":"🚴🏻‍♂️"},{"unicode":"🚴🏼‍♂️"},{"unicode":"🚴🏽‍♂️"},{"unicode":"🚴🏾‍♂️"},{"unicode":"🚴🏿‍♂️"}]},{"unicode":"🚴‍♀️","tags":["bicycle","biking","cyclist","woman"],"skins":[{"unicode":"🚴🏻‍♀️"},{"unicode":"🚴🏼‍♀️"},{"unicode":"🚴🏽‍♀️"},{"unicode":"🚴🏾‍♀️"},{"unicode":"🚴🏿‍♀️"}]},{"unicode":"🚵","tags":["bicycle","bicyclist","bike","cyclist","mountain"],"skins":[{"unicode":"🚵🏻"},{"unicode":"🚵🏼"},{"unicode":"🚵🏽"},{"unicode":"🚵🏾"},{"unicode":"🚵🏿"}]},{"unicode":"🚵‍♂️","tags":["bicycle","bike","cyclist","man","mountain"],"skins":[{"unicode":"🚵🏻‍♂️"},{"unicode":"🚵🏼‍♂️"},{"unicode":"🚵🏽‍♂️"},{"unicode":"🚵🏾‍♂️"},{"unicode":"🚵🏿‍♂️"}]},{"unicode":"🚵‍♀️","tags":["bicycle","bike","biking","cyclist","mountain","woman"],"skins":[{"unicode":"🚵🏻‍♀️"},{"unicode":"🚵🏼‍♀️"},{"unicode":"🚵🏽‍♀️"},{"unicode":"🚵🏾‍♀️"},{"unicode":"🚵🏿‍♀️"}]},{"unicode":"🤸","tags":["cartwheel","gymnastics"],"skins":[{"unicode":"🤸🏻"},{"unicode":"🤸🏼"},{"unicode":"🤸🏽"},{"unicode":"🤸🏾"},{"unicode":"🤸🏿"}]},{"unicode":"🤸‍♂️","tags":["cartwheel","gymnastics","man"],"skins":[{"unicode":"🤸🏻‍♂️"},{"unicode":"🤸🏼‍♂️"},{"unicode":"🤸🏽‍♂️"},{"unicode":"🤸🏾‍♂️"},{"unicode":"🤸🏿‍♂️"}]},{"unicode":"🤸‍♀️","tags":["cartwheel","gymnastics","woman"],"skins":[{"unicode":"🤸🏻‍♀️"},{"unicode":"🤸🏼‍♀️"},{"unicode":"🤸🏽‍♀️"},{"unicode":"🤸🏾‍♀️"},{"unicode":"🤸🏿‍♀️"}]},{"unicode":"🤼","tags":["wrestle","wrestler"]},{"unicode":"🤼‍♂️","tags":["men","wrestle"]},{"unicode":"🤼‍♀️","tags":["women","wrestle"]},{"unicode":"🤽","tags":["polo","water"],"skins":[{"unicode":"🤽🏻"},{"unicode":"🤽🏼"},{"unicode":"🤽🏽"},{"unicode":"🤽🏾"},{"unicode":"🤽🏿"}]},{"unicode":"🤽‍♂️","tags":["man","water polo"],"skins":[{"unicode":"🤽🏻‍♂️"},{"unicode":"🤽🏼‍♂️"},{"unicode":"🤽🏽‍♂️"},{"unicode":"🤽🏾‍♂️"},{"unicode":"🤽🏿‍♂️"}]},{"unicode":"🤽‍♀️","tags":["water polo","woman"],"skins":[{"unicode":"🤽🏻‍♀️"},{"unicode":"🤽🏼‍♀️"},{"unicode":"🤽🏽‍♀️"},{"unicode":"🤽🏾‍♀️"},{"unicode":"🤽🏿‍♀️"}]},{"unicode":"🤾","tags":["ball","handball"],"skins":[{"unicode":"🤾🏻"},{"unicode":"🤾🏼"},{"unicode":"🤾🏽"},{"unicode":"🤾🏾"},{"unicode":"🤾🏿"}]},{"unicode":"🤾‍♂️","tags":["handball","man"],"skins":[{"unicode":"🤾🏻‍♂️"},{"unicode":"🤾🏼‍♂️"},{"unicode":"🤾🏽‍♂️"},{"unicode":"🤾🏾‍♂️"},{"unicode":"🤾🏿‍♂️"}]},{"unicode":"🤾‍♀️","tags":["handball","woman"],"skins":[{"unicode":"🤾🏻‍♀️"},{"unicode":"🤾🏼‍♀️"},{"unicode":"🤾🏽‍♀️"},{"unicode":"🤾🏾‍♀️"},{"unicode":"🤾🏿‍♀️"}]},{"unicode":"🤹","tags":["balance","juggle","multitask","skill"],"skins":[{"unicode":"🤹🏻"},{"unicode":"🤹🏼"},{"unicode":"🤹🏽"},{"unicode":"🤹🏾"},{"unicode":"🤹🏿"}]},{"unicode":"🤹‍♂️","tags":["juggling","man","multitask"],"skins":[{"unicode":"🤹🏻‍♂️"},{"unicode":"🤹🏼‍♂️"},{"unicode":"🤹🏽‍♂️"},{"unicode":"🤹🏾‍♂️"},{"unicode":"🤹🏿‍♂️"}]},{"unicode":"🤹‍♀️","tags":["juggling","multitask","woman"],"skins":[{"unicode":"🤹🏻‍♀️"},{"unicode":"🤹🏼‍♀️"},{"unicode":"🤹🏽‍♀️"},{"unicode":"🤹🏾‍♀️"},{"unicode":"🤹🏿‍♀️"}]},{"unicode":"🧘","tags":["meditation","yoga"],"skins":[{"unicode":"🧘🏻"},{"unicode":"🧘🏼"},{"unicode":"🧘🏽"},{"unicode":"🧘🏾"},{"unicode":"🧘🏿"}]},{"unicode":"🧘‍♂️","tags":["meditation","yoga"],"skins":[{"unicode":"🧘🏻‍♂️"},{"unicode":"🧘🏼‍♂️"},{"unicode":"🧘🏽‍♂️"},{"unicode":"🧘🏾‍♂️"},{"unicode":"🧘🏿‍♂️"}]},{"unicode":"🧘‍♀️","tags":["meditation","yoga"],"skins":[{"unicode":"🧘🏻‍♀️"},{"unicode":"🧘🏼‍♀️"},{"unicode":"🧘🏽‍♀️"},{"unicode":"🧘🏾‍♀️"},{"unicode":"🧘🏿‍♀️"}]},{"unicode":"🛀","tags":["bath","bathtub"],"skins":[{"unicode":"🛀🏻"},{"unicode":"🛀🏼"},{"unicode":"🛀🏽"},{"unicode":"🛀🏾"},{"unicode":"🛀🏿"}]},{"unicode":"🛌","tags":["hotel","sleep"],"skins":[{"unicode":"🛌🏻"},{"unicode":"🛌🏼"},{"unicode":"🛌🏽"},{"unicode":"🛌🏾"},{"unicode":"🛌🏿"}]},{"unicode":"🧑‍🤝‍🧑","tags":["couple","hand","hold","holding hands","person"],"skins":[{"unicode":"🧑🏻‍🤝‍🧑🏻"},{"unicode":"🧑🏻‍🤝‍🧑🏼"},{"unicode":"🧑🏻‍🤝‍🧑🏽"},{"unicode":"🧑🏻‍🤝‍🧑🏾"},{"unicode":"🧑🏻‍🤝‍🧑🏿"},{"unicode":"🧑🏼‍🤝‍🧑🏻"},{"unicode":"🧑🏼‍🤝‍🧑🏼"},{"unicode":"🧑🏼‍🤝‍🧑🏽"},{"unicode":"🧑🏼‍🤝‍🧑🏾"},{"unicode":"🧑🏼‍🤝‍🧑🏿"},{"unicode":"🧑🏽‍🤝‍🧑🏻"},{"unicode":"🧑🏽‍🤝‍🧑🏼"},{"unicode":"🧑🏽‍🤝‍🧑🏽"},{"unicode":"🧑🏽‍🤝‍🧑🏾"},{"unicode":"🧑🏽‍🤝‍🧑🏿"},{"unicode":"🧑🏾‍🤝‍🧑🏻"},{"unicode":"🧑🏾‍🤝‍🧑🏼"},{"unicode":"🧑🏾‍🤝‍🧑🏽"},{"unicode":"🧑🏾‍🤝‍🧑🏾"},{"unicode":"🧑🏾‍🤝‍🧑🏿"},{"unicode":"🧑🏿‍🤝‍🧑🏻"},{"unicode":"🧑🏿‍🤝‍🧑🏼"},{"unicode":"🧑🏿‍🤝‍🧑🏽"},{"unicode":"🧑🏿‍🤝‍🧑🏾"},{"unicode":"🧑🏿‍🤝‍🧑🏿"}]},{"unicode":"👭","tags":["couple","hand","holding hands","women"],"skins":[{"unicode":"👭🏻"},{"unicode":"👭🏼"},{"unicode":"👭🏽"},{"unicode":"👭🏾"},{"unicode":"👭🏿"},{"unicode":"👩🏻‍🤝‍👩🏼"},{"unicode":"👩🏻‍🤝‍👩🏽"},{"unicode":"👩🏻‍🤝‍👩🏾"},{"unicode":"👩🏻‍🤝‍👩🏿"},{"unicode":"👩🏼‍🤝‍👩🏻"},{"unicode":"👩🏼‍🤝‍👩🏽"},{"unicode":"👩🏼‍🤝‍👩🏾"},{"unicode":"👩🏼‍🤝‍👩🏿"},{"unicode":"👩🏽‍🤝‍👩🏻"},{"unicode":"👩🏽‍🤝‍👩🏼"},{"unicode":"👩🏽‍🤝‍👩🏾"},{"unicode":"👩🏽‍🤝‍👩🏿"},{"unicode":"👩🏾‍🤝‍👩🏻"},{"unicode":"👩🏾‍🤝‍👩🏼"},{"unicode":"👩🏾‍🤝‍👩🏽"},{"unicode":"👩🏾‍🤝‍👩🏿"},{"unicode":"👩🏿‍🤝‍👩🏻"},{"unicode":"👩🏿‍🤝‍👩🏼"},{"unicode":"👩🏿‍🤝‍👩🏽"},{"unicode":"👩🏿‍🤝‍👩🏾"}]},{"unicode":"👫","tags":["couple","hand","hold","holding hands","man","woman"],"skins":[{"unicode":"👫🏻"},{"unicode":"👫🏼"},{"unicode":"👫🏽"},{"unicode":"👫🏾"},{"unicode":"👫🏿"},{"unicode":"👩🏻‍🤝‍👨🏼"},{"unicode":"👩🏻‍🤝‍👨🏽"},{"unicode":"👩🏻‍🤝‍👨🏾"},{"unicode":"👩🏻‍🤝‍👨🏿"},{"unicode":"👩🏼‍🤝‍👨🏻"},{"unicode":"👩🏼‍🤝‍👨🏽"},{"unicode":"👩🏼‍🤝‍👨🏾"},{"unicode":"👩🏼‍🤝‍👨🏿"},{"unicode":"👩🏽‍🤝‍👨🏻"},{"unicode":"👩🏽‍🤝‍👨🏼"},{"unicode":"👩🏽‍🤝‍👨🏾"},{"unicode":"👩🏽‍🤝‍👨🏿"},{"unicode":"👩🏾‍🤝‍👨🏻"},{"unicode":"👩🏾‍🤝‍👨🏼"},{"unicode":"👩🏾‍🤝‍👨🏽"},{"unicode":"👩🏾‍🤝‍👨🏿"},{"unicode":"👩🏿‍🤝‍👨🏻"},{"unicode":"👩🏿‍🤝‍👨🏼"},{"unicode":"👩🏿‍🤝‍👨🏽"},{"unicode":"👩🏿‍🤝‍👨🏾"}]},{"unicode":"👬","tags":["couple","gemini","holding hands","man","men","twins","zodiac"],"skins":[{"unicode":"👬🏻"},{"unicode":"👬🏼"},{"unicode":"👬🏽"},{"unicode":"👬🏾"},{"unicode":"👬🏿"},{"unicode":"👨🏻‍🤝‍👨🏼"},{"unicode":"👨🏻‍🤝‍👨🏽"},{"unicode":"👨🏻‍🤝‍👨🏾"},{"unicode":"👨🏻‍🤝‍👨🏿"},{"unicode":"👨🏼‍🤝‍👨🏻"},{"unicode":"👨🏼‍🤝‍👨🏽"},{"unicode":"👨🏼‍🤝‍👨🏾"},{"unicode":"👨🏼‍🤝‍👨🏿"},{"unicode":"👨🏽‍🤝‍👨🏻"},{"unicode":"👨🏽‍🤝‍👨🏼"},{"unicode":"👨🏽‍🤝‍👨🏾"},{"unicode":"👨🏽‍🤝‍👨🏿"},{"unicode":"👨🏾‍🤝‍👨🏻"},{"unicode":"👨🏾‍🤝‍👨🏼"},{"unicode":"👨🏾‍🤝‍👨🏽"},{"unicode":"👨🏾‍🤝‍👨🏿"},{"unicode":"👨🏿‍🤝‍👨🏻"},{"unicode":"👨🏿‍🤝‍👨🏼"},{"unicode":"👨🏿‍🤝‍👨🏽"},{"unicode":"👨🏿‍🤝‍👨🏾"}]},{"unicode":"💏","tags":["couple"]},{"unicode":"👩‍❤️‍💋‍👨","tags":["couple","kiss","man","woman"]},{"unicode":"👨‍❤️‍💋‍👨","tags":["couple","kiss","man"]},{"unicode":"👩‍❤️‍💋‍👩","tags":["couple","kiss","woman"]},{"unicode":"💑","tags":["couple","love"]},{"unicode":"👩‍❤️‍👨","tags":["couple","couple with heart","love","man","woman"]},{"unicode":"👨‍❤️‍👨","tags":["couple","couple with heart","love","man"]},{"unicode":"👩‍❤️‍👩","tags":["couple","couple with heart","love","woman"]},{"unicode":"👪️","tags":["family"]},{"unicode":"👨‍👩‍👦","tags":["boy","family","man","woman"]},{"unicode":"👨‍👩‍👧","tags":["family","girl","man","woman"]},{"unicode":"👨‍👩‍👧‍👦","tags":["boy","family","girl","man","woman"]},{"unicode":"👨‍👩‍👦‍👦","tags":["boy","family","man","woman"]},{"unicode":"👨‍👩‍👧‍👧","tags":["family","girl","man","woman"]},{"unicode":"👨‍👨‍👦","tags":["boy","family","man"]},{"unicode":"👨‍👨‍👧","tags":["family","girl","man"]},{"unicode":"👨‍👨‍👧‍👦","tags":["boy","family","girl","man"]},{"unicode":"👨‍👨‍👦‍👦","tags":["boy","family","man"]},{"unicode":"👨‍👨‍👧‍👧","tags":["family","girl","man"]},{"unicode":"👩‍👩‍👦","tags":["boy","family","woman"]},{"unicode":"👩‍👩‍👧","tags":["family","girl","woman"]},{"unicode":"👩‍👩‍👧‍👦","tags":["boy","family","girl","woman"]},{"unicode":"👩‍👩‍👦‍👦","tags":["boy","family","woman"]},{"unicode":"👩‍👩‍👧‍👧","tags":["family","girl","woman"]},{"unicode":"👨‍👦","tags":["boy","family","man"]},{"unicode":"👨‍👦‍👦","tags":["boy","family","man"]},{"unicode":"👨‍👧","tags":["family","girl","man"]},{"unicode":"👨‍👧‍👦","tags":["boy","family","girl","man"]},{"unicode":"👨‍👧‍👧","tags":["family","girl","man"]},{"unicode":"👩‍👦","tags":["boy","family","woman"]},{"unicode":"👩‍👦‍👦","tags":["boy","family","woman"]},{"unicode":"👩‍👧","tags":["family","girl","woman"]},{"unicode":"👩‍👧‍👦","tags":["boy","family","girl","woman"]},{"unicode":"👩‍👧‍👧","tags":["family","girl","woman"]},{"unicode":"🗣️","tags":["face","head","silhouette","speak","speaking"]},{"unicode":"👤","tags":["bust","silhouette"]},{"unicode":"👥","tags":["bust","silhouette"]},{"unicode":"🫂","tags":["goodbye","hello","hug","thanks"]},{"unicode":"👣","tags":["clothing","footprint","print"]}]},{"group":2,"emojiList":[{"unicode":"🏻","tags":["skin tone","type 1–2"]},{"unicode":"🏼","tags":["skin tone","type 3"]},{"unicode":"🏽","tags":["skin tone","type 4"]},{"unicode":"🏾","tags":["skin tone","type 5"]},{"unicode":"🏿","tags":["skin tone","type 6"]},{"unicode":"🦰","tags":["ginger","redhead"]},{"unicode":"🦱","tags":["afro","curly","ringlets"]},{"unicode":"🦳","tags":["gray","hair","old","white"]},{"unicode":"🦲","tags":["chemotherapy","hairless","no hair","shaven"]}]},{"group":3,"emojiList":[{"unicode":"🐵","tags":["face","monkey"]},{"unicode":"🐒","tags":["monkey"]},{"unicode":"🦍","tags":["gorilla"]},{"unicode":"🦧","tags":["ape"]},{"unicode":"🐶","tags":["dog","face","pet"]},{"unicode":"🐕️","tags":["pet"]},{"unicode":"🦮","tags":["accessibility","blind","guide"]},{"unicode":"🐕‍🦺","tags":["accessibility","assistance","dog","service"]},{"unicode":"🐩","tags":["dog"]},{"unicode":"🐺","tags":["face"]},{"unicode":"🦊","tags":["face"]},{"unicode":"🦝","tags":["curious","sly"]},{"unicode":"🐱","tags":["cat","face","pet"]},{"unicode":"🐈️","tags":["pet"]},{"unicode":"🐈‍⬛","tags":["black","cat","unlucky"]},{"unicode":"🦁","tags":["face","leo","zodiac"]},{"unicode":"🐯","tags":["face","tiger"]},{"unicode":"🐅","tags":["tiger"]},{"unicode":"🐆","tags":["leopard"]},{"unicode":"🐴","tags":["face","horse"]},{"unicode":"🐎","tags":["equestrian","racehorse","racing"]},{"unicode":"🦄","tags":["face"]},{"unicode":"🦓","tags":["stripe"]},{"unicode":"🦌","tags":["deer"]},{"unicode":"🦬","tags":["buffalo","herd","wisent"]},{"unicode":"🐮","tags":["cow","face"]},{"unicode":"🐂","tags":["bull","taurus","zodiac"]},{"unicode":"🐃","tags":["buffalo","water"]},{"unicode":"🐄","tags":["cow"]},{"unicode":"🐷","tags":["face","pig"]},{"unicode":"🐖","tags":["sow"]},{"unicode":"🐗","tags":["pig"]},{"unicode":"🐽","tags":["face","nose","pig"]},{"unicode":"🐏","tags":["aries","male","sheep","zodiac"]},{"unicode":"🐑","tags":["female","sheep"]},{"unicode":"🐐","tags":["capricorn","zodiac"]},{"unicode":"🐪","tags":["dromedary","hump"]},{"unicode":"🐫","tags":["bactrian","camel","hump"]},{"unicode":"🦙","tags":["alpaca","guanaco","vicuña","wool"]},{"unicode":"🦒","tags":["spots"]},{"unicode":"🐘","tags":["elephant"]},{"unicode":"🦣","tags":["extinction","large","tusk","woolly"]},{"unicode":"🦏","tags":["rhinoceros"]},{"unicode":"🦛","tags":["hippo"]},{"unicode":"🐭","tags":["face","mouse"]},{"unicode":"🐁","tags":["mouse"]},{"unicode":"🐀","tags":["rat"]},{"unicode":"🐹","tags":["face","pet"]},{"unicode":"🐰","tags":["bunny","face","pet","rabbit"]},{"unicode":"🐇","tags":["bunny","pet"]},{"unicode":"🐿️","tags":["squirrel"]},{"unicode":"🦫","tags":["dam"]},{"unicode":"🦔","tags":["spiny"]},{"unicode":"🦇","tags":["vampire"]},{"unicode":"🐻","tags":["face"]},{"unicode":"🐻‍❄️","tags":["arctic","bear","white"]},{"unicode":"🐨","tags":["bear"]},{"unicode":"🐼","tags":["face"]},{"unicode":"🦥","tags":["lazy","slow"]},{"unicode":"🦦","tags":["fishing","playful"]},{"unicode":"🦨","tags":["stink"]},{"unicode":"🦘","tags":["australia","joey","jump","marsupial"]},{"unicode":"🦡","tags":["honey badger","pester"]},{"unicode":"🐾","tags":["feet","paw","print"]},{"unicode":"🦃","tags":["bird"]},{"unicode":"🐔","tags":["bird"]},{"unicode":"🐓","tags":["bird"]},{"unicode":"🐣","tags":["baby","bird","chick","hatching"]},{"unicode":"🐤","tags":["baby","bird","chick"]},{"unicode":"🐥","tags":["baby","bird","chick"]},{"unicode":"🐦️","tags":["bird"]},{"unicode":"🐧","tags":["bird"]},{"unicode":"🕊️","tags":["bird","fly","peace"]},{"unicode":"🦅","tags":["bird"]},{"unicode":"🦆","tags":["bird"]},{"unicode":"🦢","tags":["bird","cygnet","ugly duckling"]},{"unicode":"🦉","tags":["bird","wise"]},{"unicode":"🦤","tags":["extinction","large","mauritius"]},{"unicode":"🪶","tags":["bird","flight","light","plumage"]},{"unicode":"🦩","tags":["flamboyant","tropical"]},{"unicode":"🦚","tags":["bird","ostentatious","peahen","proud"]},{"unicode":"🦜","tags":["bird","pirate","talk"]},{"unicode":"🐸","tags":["face"]},{"unicode":"🐊","tags":["crocodile"]},{"unicode":"🐢","tags":["terrapin","tortoise"]},{"unicode":"🦎","tags":["reptile"]},{"unicode":"🐍","tags":["bearer","ophiuchus","serpent","zodiac"]},{"unicode":"🐲","tags":["dragon","face","fairy tale"]},{"unicode":"🐉","tags":["fairy tale"]},{"unicode":"🦕","tags":["brachiosaurus","brontosaurus","diplodocus"]},{"unicode":"🦖","tags":["t-rex","tyrannosaurus rex"]},{"unicode":"🐳","tags":["face","spouting","whale"]},{"unicode":"🐋","tags":["whale"]},{"unicode":"🐬","tags":["flipper"]},{"unicode":"🦭","tags":["sea lion"]},{"unicode":"🐟️","tags":["pisces","zodiac"]},{"unicode":"🐠","tags":["fish","tropical"]},{"unicode":"🐡","tags":["fish"]},{"unicode":"🦈","tags":["fish"]},{"unicode":"🐙","tags":["octopus"]},{"unicode":"🐚","tags":["shell","spiral"]},{"unicode":"🐌","tags":["snail"]},{"unicode":"🦋","tags":["insect","pretty"]},{"unicode":"🐛","tags":["insect"]},{"unicode":"🐜","tags":["insect"]},{"unicode":"🐝","tags":["bee","insect"]},{"unicode":"🪲","tags":["bug","insect"]},{"unicode":"🐞","tags":["beetle","insect","ladybird","ladybug"]},{"unicode":"🦗","tags":["grasshopper"]},{"unicode":"🪳","tags":["insect","pest","roach"]},{"unicode":"🕷️","tags":["insect"]},{"unicode":"🕸️","tags":["spider","web"]},{"unicode":"🦂","tags":["scorpio","zodiac"]},{"unicode":"🦟","tags":["disease","fever","malaria","pest","virus"]},{"unicode":"🪰","tags":["disease","maggot","pest","rotting"]},{"unicode":"🪱","tags":["annelid","earthworm","parasite"]},{"unicode":"🦠","tags":["amoeba","bacteria","virus"]},{"unicode":"💐","tags":["flower"]},{"unicode":"🌸","tags":["blossom","cherry","flower"]},{"unicode":"💮","tags":["flower"]},{"unicode":"🏵️","tags":["plant"]},{"unicode":"🌹","tags":["flower"]},{"unicode":"🥀","tags":["flower","wilted"]},{"unicode":"🌺","tags":["flower"]},{"unicode":"🌻","tags":["flower","sun"]},{"unicode":"🌼","tags":["flower"]},{"unicode":"🌷","tags":["flower"]},{"unicode":"🌱","tags":["young"]},{"unicode":"🪴","tags":["boring","grow","house","nurturing","plant","useless"]},{"unicode":"🌲","tags":["tree"]},{"unicode":"🌳","tags":["deciduous","shedding","tree"]},{"unicode":"🌴","tags":["palm","tree"]},{"unicode":"🌵","tags":["plant"]},{"unicode":"🌾","tags":["ear","grain","rice"]},{"unicode":"🌿","tags":["leaf"]},{"unicode":"☘️","tags":["plant"]},{"unicode":"🍀","tags":["4","clover","four","four-leaf clover","leaf"]},{"unicode":"🍁","tags":["falling","leaf","maple"]},{"unicode":"🍂","tags":["falling","leaf"]},{"unicode":"🍃","tags":["blow","flutter","leaf","wind"]}]},{"group":4,"emojiList":[{"unicode":"🍇","tags":["fruit","grape"]},{"unicode":"🍈","tags":["fruit"]},{"unicode":"🍉","tags":["fruit"]},{"unicode":"🍊","tags":["fruit","orange"]},{"unicode":"🍋","tags":["citrus","fruit"]},{"unicode":"🍌","tags":["fruit"]},{"unicode":"🍍","tags":["fruit"]},{"unicode":"🥭","tags":["fruit","tropical"]},{"unicode":"🍎","tags":["apple","fruit","red"]},{"unicode":"🍏","tags":["apple","fruit","green"]},{"unicode":"🍐","tags":["fruit"]},{"unicode":"🍑","tags":["fruit"]},{"unicode":"🍒","tags":["berries","cherry","fruit","red"]},{"unicode":"🍓","tags":["berry","fruit"]},{"unicode":"🫐","tags":["berry","bilberry","blue","blueberry"]},{"unicode":"🥝","tags":["food","fruit","kiwi"]},{"unicode":"🍅","tags":["fruit","vegetable"]},{"unicode":"🫒","tags":["food"]},{"unicode":"🥥","tags":["palm","piña colada"]},{"unicode":"🥑","tags":["food","fruit"]},{"unicode":"🍆","tags":["aubergine","vegetable"]},{"unicode":"🥔","tags":["food","vegetable"]},{"unicode":"🥕","tags":["food","vegetable"]},{"unicode":"🌽","tags":["corn","ear","maize","maze"]},{"unicode":"🌶️","tags":["hot","pepper"]},{"unicode":"🫑","tags":["capsicum","pepper","vegetable"]},{"unicode":"🥒","tags":["food","pickle","vegetable"]},{"unicode":"🥬","tags":["bok choy","cabbage","kale","lettuce"]},{"unicode":"🥦","tags":["wild cabbage"]},{"unicode":"🧄","tags":["flavoring"]},{"unicode":"🧅","tags":["flavoring"]},{"unicode":"🍄","tags":["toadstool"]},{"unicode":"🥜","tags":["food","nut","peanut","vegetable"]},{"unicode":"🌰","tags":["plant"]},{"unicode":"🍞","tags":["loaf"]},{"unicode":"🥐","tags":["bread","breakfast","food","french","roll"]},{"unicode":"🥖","tags":["baguette","bread","food","french"]},{"unicode":"🫓","tags":["arepa","lavash","naan","pita"]},{"unicode":"🥨","tags":["twisted"]},{"unicode":"🥯","tags":["bakery","breakfast","schmear"]},{"unicode":"🥞","tags":["breakfast","crêpe","food","hotcake","pancake"]},{"unicode":"🧇","tags":["breakfast","indecisive","iron"]},{"unicode":"🧀","tags":["cheese"]},{"unicode":"🍖","tags":["bone","meat"]},{"unicode":"🍗","tags":["bone","chicken","drumstick","leg","poultry"]},{"unicode":"🥩","tags":["chop","lambchop","porkchop","steak"]},{"unicode":"🥓","tags":["breakfast","food","meat"]},{"unicode":"🍔","tags":["burger"]},{"unicode":"🍟","tags":["french","fries"]},{"unicode":"🍕","tags":["cheese","slice"]},{"unicode":"🌭","tags":["frankfurter","hotdog","sausage"]},{"unicode":"🥪","tags":["bread"]},{"unicode":"🌮","tags":["mexican"]},{"unicode":"🌯","tags":["mexican","wrap"]},{"unicode":"🫔","tags":["mexican","wrapped"]},{"unicode":"🥙","tags":["falafel","flatbread","food","gyro","kebab","stuffed"]},{"unicode":"🧆","tags":["chickpea","meatball"]},{"unicode":"🥚","tags":["breakfast","food"]},{"unicode":"🍳","tags":["breakfast","egg","frying","pan"]},{"unicode":"🥘","tags":["casserole","food","paella","pan","shallow"]},{"unicode":"🍲","tags":["pot","stew"]},{"unicode":"🫕","tags":["cheese","chocolate","melted","pot","swiss"]},{"unicode":"🥣","tags":["breakfast","cereal","congee"]},{"unicode":"🥗","tags":["food","green","salad"]},{"unicode":"🍿","tags":["popcorn"]},{"unicode":"🧈","tags":["dairy"]},{"unicode":"🧂","tags":["condiment","shaker"]},{"unicode":"🥫","tags":["can"]},{"unicode":"🍱","tags":["bento","box"]},{"unicode":"🍘","tags":["cracker","rice"]},{"unicode":"🍙","tags":["ball","japanese","rice"]},{"unicode":"🍚","tags":["cooked","rice"]},{"unicode":"🍛","tags":["curry","rice"]},{"unicode":"🍜","tags":["bowl","noodle","ramen","steaming"]},{"unicode":"🍝","tags":["pasta"]},{"unicode":"🍠","tags":["potato","roasted","sweet"]},{"unicode":"🍢","tags":["kebab","seafood","skewer","stick"]},{"unicode":"🍣","tags":["sushi"]},{"unicode":"🍤","tags":["fried","prawn","shrimp","tempura"]},{"unicode":"🍥","tags":["cake","fish","pastry","swirl"]},{"unicode":"🥮","tags":["autumn","festival","yuèbǐng"]},{"unicode":"🍡","tags":["dessert","japanese","skewer","stick","sweet"]},{"unicode":"🥟","tags":["empanada","gyōza","jiaozi","pierogi","potsticker"]},{"unicode":"🥠","tags":["prophecy"]},{"unicode":"🥡","tags":["oyster pail"]},{"unicode":"🦀","tags":["cancer","zodiac"]},{"unicode":"🦞","tags":["bisque","claws","seafood"]},{"unicode":"🦐","tags":["food","shellfish","small"]},{"unicode":"🦑","tags":["food","molusc"]},{"unicode":"🦪","tags":["diving","pearl"]},{"unicode":"🍦","tags":["cream","dessert","ice","icecream","soft","sweet"]},{"unicode":"🍧","tags":["dessert","ice","shaved","sweet"]},{"unicode":"🍨","tags":["cream","dessert","ice","sweet"]},{"unicode":"🍩","tags":["breakfast","dessert","donut","sweet"]},{"unicode":"🍪","tags":["dessert","sweet"]},{"unicode":"🎂","tags":["birthday","cake","celebration","dessert","pastry","sweet"]},{"unicode":"🍰","tags":["cake","dessert","pastry","slice","sweet"]},{"unicode":"🧁","tags":["bakery","sweet"]},{"unicode":"🥧","tags":["filling","pastry"]},{"unicode":"🍫","tags":["bar","chocolate","dessert","sweet"]},{"unicode":"🍬","tags":["dessert","sweet"]},{"unicode":"🍭","tags":["candy","dessert","sweet"]},{"unicode":"🍮","tags":["dessert","pudding","sweet"]},{"unicode":"🍯","tags":["honey","honeypot","pot","sweet"]},{"unicode":"🍼","tags":["baby","bottle","drink","milk"]},{"unicode":"🥛","tags":["drink","glass","milk"]},{"unicode":"☕️","tags":["beverage","coffee","drink","hot","steaming","tea"]},{"unicode":"🫖","tags":["drink","pot","tea"]},{"unicode":"🍵","tags":["beverage","cup","drink","tea","teacup"]},{"unicode":"🍶","tags":["bar","beverage","bottle","cup","drink"]},{"unicode":"🍾","tags":["bar","bottle","cork","drink","popping"]},{"unicode":"🍷","tags":["bar","beverage","drink","glass","wine"]},{"unicode":"🍸️","tags":["bar","cocktail","drink","glass"]},{"unicode":"🍹","tags":["bar","drink","tropical"]},{"unicode":"🍺","tags":["bar","beer","drink","mug"]},{"unicode":"🍻","tags":["bar","beer","clink","drink","mug"]},{"unicode":"🥂","tags":["celebrate","clink","drink","glass"]},{"unicode":"🥃","tags":["glass","liquor","shot","tumbler","whisky"]},{"unicode":"🥤","tags":["juice","soda"]},{"unicode":"🧋","tags":["bubble","milk","pearl","tea"]},{"unicode":"🧃","tags":["beverage","box","juice","straw","sweet"]},{"unicode":"🧉","tags":["drink"]},{"unicode":"🧊","tags":["cold","ice cube","iceberg"]},{"unicode":"🥢","tags":["hashi"]},{"unicode":"🍽️","tags":["cooking","fork","knife","plate"]},{"unicode":"🍴","tags":["cooking","cutlery","fork","knife"]},{"unicode":"🥄","tags":["tableware"]},{"unicode":"🔪","tags":["cooking","hocho","knife","tool","weapon"]},{"unicode":"🏺","tags":["aquarius","cooking","drink","jug","zodiac"]}]},{"group":5,"emojiList":[{"unicode":"🌍️","tags":["africa","earth","europe","globe","globe showing europe-africa","world"]},{"unicode":"🌎️","tags":["americas","earth","globe","globe showing americas","world"]},{"unicode":"🌏️","tags":["asia","australia","earth","globe","globe showing asia-australia","world"]},{"unicode":"🌐","tags":["earth","globe","meridians","world"]},{"unicode":"🗺️","tags":["map","world"]},{"unicode":"🗾","tags":["japan","map","map of japan"]},{"unicode":"🧭","tags":["magnetic","navigation","orienteering"]},{"unicode":"🏔️","tags":["cold","mountain","snow"]},{"unicode":"⛰️","tags":["mountain"]},{"unicode":"🌋","tags":["eruption","mountain"]},{"unicode":"🗻","tags":["fuji","mountain"]},{"unicode":"🏕️","tags":["camping"]},{"unicode":"🏖️","tags":["beach","umbrella"]},{"unicode":"🏜️","tags":["desert"]},{"unicode":"🏝️","tags":["desert","island"]},{"unicode":"🏞️","tags":["park"]},{"unicode":"🏟️","tags":["stadium"]},{"unicode":"🏛️","tags":["classical"]},{"unicode":"🏗️","tags":["construction"]},{"unicode":"🧱","tags":["bricks","clay","mortar","wall"]},{"unicode":"🪨","tags":["boulder","heavy","solid","stone"]},{"unicode":"🪵","tags":["log","lumber","timber"]},{"unicode":"🛖","tags":["house","roundhouse","yurt"]},{"unicode":"🏘️","tags":["houses"]},{"unicode":"🏚️","tags":["derelict","house"]},{"unicode":"🏠️","tags":["home"]},{"unicode":"🏡","tags":["garden","home","house"]},{"unicode":"🏢","tags":["building"]},{"unicode":"🏣","tags":["japanese","japanese post office","post"]},{"unicode":"🏤","tags":["european","post"]},{"unicode":"🏥","tags":["doctor","medicine"]},{"unicode":"🏦","tags":["building"]},{"unicode":"🏨","tags":["building"]},{"unicode":"🏩","tags":["hotel","love"]},{"unicode":"🏪","tags":["convenience","store"]},{"unicode":"🏫","tags":["building"]},{"unicode":"🏬","tags":["department","store"]},{"unicode":"🏭️","tags":["building"]},{"unicode":"🏯","tags":["castle","japanese"]},{"unicode":"🏰","tags":["european"]},{"unicode":"💒","tags":["chapel","romance"]},{"unicode":"🗼","tags":["tokyo","tower"]},{"unicode":"🗽","tags":["liberty","statue","statue of liberty"]},{"unicode":"⛪️","tags":["christian","cross","religion"]},{"unicode":"🕌","tags":["islam","muslim","religion"]},{"unicode":"🛕","tags":["hindu","temple"]},{"unicode":"🕍","tags":["jew","jewish","religion","temple"]},{"unicode":"⛩️","tags":["religion","shinto","shrine"]},{"unicode":"🕋","tags":["islam","muslim","religion"]},{"unicode":"⛲️","tags":["fountain"]},{"unicode":"⛺️","tags":["camping"]},{"unicode":"🌁","tags":["fog"]},{"unicode":"🌃","tags":["night","star"]},{"unicode":"🏙️","tags":["city"]},{"unicode":"🌄","tags":["morning","mountain","sun","sunrise"]},{"unicode":"🌅","tags":["morning","sun"]},{"unicode":"🌆","tags":["city","dusk","evening","landscape","sunset"]},{"unicode":"🌇","tags":["dusk","sun"]},{"unicode":"🌉","tags":["bridge","night"]},{"unicode":"♨️","tags":["hot","hotsprings","springs","steaming"]},{"unicode":"🎠","tags":["carousel","horse"]},{"unicode":"🎡","tags":["amusement park","ferris","wheel"]},{"unicode":"🎢","tags":["amusement park","coaster","roller"]},{"unicode":"💈","tags":["barber","haircut","pole"]},{"unicode":"🎪","tags":["circus","tent"]},{"unicode":"🚂","tags":["engine","railway","steam","train"]},{"unicode":"🚃","tags":["car","electric","railway","train","tram","trolleybus"]},{"unicode":"🚄","tags":["railway","shinkansen","speed","train"]},{"unicode":"🚅","tags":["bullet","railway","shinkansen","speed","train"]},{"unicode":"🚆","tags":["railway"]},{"unicode":"🚇️","tags":["subway"]},{"unicode":"🚈","tags":["railway"]},{"unicode":"🚉","tags":["railway","train"]},{"unicode":"🚊","tags":["trolleybus"]},{"unicode":"🚝","tags":["vehicle"]},{"unicode":"🚞","tags":["car","mountain","railway"]},{"unicode":"🚋","tags":["car","tram","trolleybus"]},{"unicode":"🚌","tags":["vehicle"]},{"unicode":"🚍️","tags":["bus","oncoming"]},{"unicode":"🚎","tags":["bus","tram","trolley"]},{"unicode":"🚐","tags":["bus"]},{"unicode":"🚑️","tags":["vehicle"]},{"unicode":"🚒","tags":["engine","fire","truck"]},{"unicode":"🚓","tags":["car","patrol","police"]},{"unicode":"🚔️","tags":["car","oncoming","police"]},{"unicode":"🚕","tags":["vehicle"]},{"unicode":"🚖","tags":["oncoming","taxi"]},{"unicode":"🚗","tags":["car"]},{"unicode":"🚘️","tags":["automobile","car","oncoming"]},{"unicode":"🚙","tags":["recreational","sport utility"]},{"unicode":"🛻","tags":["pick-up","pickup","truck"]},{"unicode":"🚚","tags":["delivery","truck"]},{"unicode":"🚛","tags":["lorry","semi","truck"]},{"unicode":"🚜","tags":["vehicle"]},{"unicode":"🏎️","tags":["car","racing"]},{"unicode":"🏍️","tags":["racing"]},{"unicode":"🛵","tags":["motor","scooter"]},{"unicode":"🦽","tags":["accessibility"]},{"unicode":"🦼","tags":["accessibility"]},{"unicode":"🛺","tags":["tuk tuk"]},{"unicode":"🚲️","tags":["bike"]},{"unicode":"🛴","tags":["kick","scooter"]},{"unicode":"🛹","tags":["board"]},{"unicode":"🛼","tags":["roller","skate"]},{"unicode":"🚏","tags":["bus","busstop","stop"]},{"unicode":"🛣️","tags":["highway","road"]},{"unicode":"🛤️","tags":["railway","train"]},{"unicode":"🛢️","tags":["drum","oil"]},{"unicode":"⛽️","tags":["diesel","fuel","fuelpump","gas","pump","station"]},{"unicode":"🚨","tags":["beacon","car","light","police","revolving"]},{"unicode":"🚥","tags":["light","signal","traffic"]},{"unicode":"🚦","tags":["light","signal","traffic"]},{"unicode":"🛑","tags":["octagonal","sign","stop"]},{"unicode":"🚧","tags":["barrier"]},{"unicode":"⚓️","tags":["ship","tool"]},{"unicode":"⛵️","tags":["boat","resort","sea","yacht"]},{"unicode":"🛶","tags":["boat"]},{"unicode":"🚤","tags":["boat"]},{"unicode":"🛳️","tags":["passenger","ship"]},{"unicode":"⛴️","tags":["boat","passenger"]},{"unicode":"🛥️","tags":["boat","motorboat"]},{"unicode":"🚢","tags":["boat","passenger"]},{"unicode":"✈️","tags":["aeroplane"]},{"unicode":"🛩️","tags":["aeroplane","airplane"]},{"unicode":"🛫","tags":["aeroplane","airplane","check-in","departure","departures"]},{"unicode":"🛬","tags":["aeroplane","airplane","arrivals","arriving","landing"]},{"unicode":"🪂","tags":["hang-glide","parasail","skydive"]},{"unicode":"💺","tags":["chair"]},{"unicode":"🚁","tags":["vehicle"]},{"unicode":"🚟","tags":["railway","suspension"]},{"unicode":"🚠","tags":["cable","gondola","mountain"]},{"unicode":"🚡","tags":["aerial","cable","car","gondola","tramway"]},{"unicode":"🛰️","tags":["space"]},{"unicode":"🚀","tags":["space"]},{"unicode":"🛸","tags":["ufo"]},{"unicode":"🛎️","tags":["bell","bellhop","hotel"]},{"unicode":"🧳","tags":["packing","travel"]},{"unicode":"⌛️","tags":["sand","timer"]},{"unicode":"⏳️","tags":["hourglass","sand","timer"]},{"unicode":"⌚️","tags":["clock"]},{"unicode":"⏰","tags":["alarm","clock"]},{"unicode":"⏱️","tags":["clock"]},{"unicode":"⏲️","tags":["clock","timer"]},{"unicode":"🕰️","tags":["clock"]},{"unicode":"🕛️","tags":["00","12","12:00","clock","o’clock","twelve"]},{"unicode":"🕧️","tags":["12","12:30","clock","thirty","twelve"]},{"unicode":"🕐️","tags":["00","1","1:00","clock","one","o’clock"]},{"unicode":"🕜️","tags":["1","1:30","clock","one","thirty"]},{"unicode":"🕑️","tags":["00","2","2:00","clock","o’clock","two"]},{"unicode":"🕝️","tags":["2","2:30","clock","thirty","two"]},{"unicode":"🕒️","tags":["00","3","3:00","clock","o’clock","three"]},{"unicode":"🕞️","tags":["3","3:30","clock","thirty","three"]},{"unicode":"🕓️","tags":["00","4","4:00","clock","four","o’clock"]},{"unicode":"🕟️","tags":["4","4:30","clock","four","thirty"]},{"unicode":"🕔️","tags":["00","5","5:00","clock","five","o’clock"]},{"unicode":"🕠️","tags":["5","5:30","clock","five","thirty"]},{"unicode":"🕕️","tags":["00","6","6:00","clock","o’clock","six"]},{"unicode":"🕡️","tags":["6","6:30","clock","six","thirty"]},{"unicode":"🕖️","tags":["00","7","7:00","clock","o’clock","seven"]},{"unicode":"🕢️","tags":["7","7:30","clock","seven","thirty"]},{"unicode":"🕗️","tags":["00","8","8:00","clock","eight","o’clock"]},{"unicode":"🕣️","tags":["8","8:30","clock","eight","thirty"]},{"unicode":"🕘️","tags":["00","9","9:00","clock","nine","o’clock"]},{"unicode":"🕤️","tags":["9","9:30","clock","nine","thirty"]},{"unicode":"🕙️","tags":["00","10","10:00","clock","o’clock","ten"]},{"unicode":"🕥️","tags":["10","10:30","clock","ten","thirty"]},{"unicode":"🕚️","tags":["00","11","11:00","clock","eleven","o’clock"]},{"unicode":"🕦️","tags":["11","11:30","clock","eleven","thirty"]},{"unicode":"🌑","tags":["dark","moon"]},{"unicode":"🌒","tags":["crescent","moon","waxing"]},{"unicode":"🌓","tags":["moon","quarter"]},{"unicode":"🌔","tags":["gibbous","moon","waxing"]},{"unicode":"🌕️","tags":["full","moon"]},{"unicode":"🌖","tags":["gibbous","moon","waning"]},{"unicode":"🌗","tags":["moon","quarter"]},{"unicode":"🌘","tags":["crescent","moon","waning"]},{"unicode":"🌙","tags":["crescent","moon"]},{"unicode":"🌚","tags":["face","moon"]},{"unicode":"🌛","tags":["face","moon","quarter"]},{"unicode":"🌜️","tags":["face","moon","quarter"]},{"unicode":"🌡️","tags":["weather"]},{"unicode":"☀️","tags":["bright","rays","sunny"]},{"unicode":"🌝","tags":["bright","face","full","moon"]},{"unicode":"🌞","tags":["bright","face","sun"]},{"unicode":"🪐","tags":["saturn","saturnine"]},{"unicode":"⭐️","tags":["star"]},{"unicode":"🌟","tags":["glittery","glow","shining","sparkle","star"]},{"unicode":"🌠","tags":["falling","shooting","star"]},{"unicode":"🌌","tags":["space"]},{"unicode":"☁️","tags":["weather"]},{"unicode":"⛅️","tags":["cloud","sun"]},{"unicode":"⛈️","tags":["cloud","rain","thunder"]},{"unicode":"🌤️","tags":["cloud","sun"]},{"unicode":"🌥️","tags":["cloud","sun"]},{"unicode":"🌦️","tags":["cloud","rain","sun"]},{"unicode":"🌧️","tags":["cloud","rain"]},{"unicode":"🌨️","tags":["cloud","cold","snow"]},{"unicode":"🌩️","tags":["cloud","lightning"]},{"unicode":"🌪️","tags":["cloud","whirlwind"]},{"unicode":"🌫️","tags":["cloud"]},{"unicode":"🌬️","tags":["blow","cloud","face","wind"]},{"unicode":"🌀","tags":["dizzy","hurricane","twister","typhoon"]},{"unicode":"🌈","tags":["rain"]},{"unicode":"🌂","tags":["clothing","rain","umbrella"]},{"unicode":"☂️","tags":["clothing","rain"]},{"unicode":"☔️","tags":["clothing","drop","rain","umbrella"]},{"unicode":"⛱️","tags":["rain","sun","umbrella"]},{"unicode":"⚡️","tags":["danger","electric","lightning","voltage","zap"]},{"unicode":"❄️","tags":["cold","snow"]},{"unicode":"☃️","tags":["cold","snow"]},{"unicode":"⛄️","tags":["cold","snow","snowman"]},{"unicode":"☄️","tags":["space"]},{"unicode":"🔥","tags":["flame","tool"]},{"unicode":"💧","tags":["cold","comic","drop","sweat"]},{"unicode":"🌊","tags":["ocean","water","wave"]}]},{"group":6,"emojiList":[{"unicode":"🎃","tags":["celebration","halloween","jack","lantern"]},{"unicode":"🎄","tags":["celebration","christmas","tree"]},{"unicode":"🎆","tags":["celebration"]},{"unicode":"🎇","tags":["celebration","fireworks","sparkle"]},{"unicode":"🧨","tags":["dynamite","explosive","fireworks"]},{"unicode":"✨","tags":["*","sparkle","star"]},{"unicode":"🎈","tags":["celebration"]},{"unicode":"🎉","tags":["celebration","party","popper","tada"]},{"unicode":"🎊","tags":["ball","celebration","confetti"]},{"unicode":"🎋","tags":["banner","celebration","japanese","tree"]},{"unicode":"🎍","tags":["bamboo","celebration","japanese","pine"]},{"unicode":"🎎","tags":["celebration","doll","festival","japanese","japanese dolls"]},{"unicode":"🎏","tags":["carp","celebration","streamer"]},{"unicode":"🎐","tags":["bell","celebration","chime","wind"]},{"unicode":"🎑","tags":["celebration","ceremony","moon"]},{"unicode":"🧧","tags":["gift","good luck","hóngbāo","lai see","money"]},{"unicode":"🎀","tags":["celebration"]},{"unicode":"🎁","tags":["box","celebration","gift","present","wrapped"]},{"unicode":"🎗️","tags":["celebration","reminder","ribbon"]},{"unicode":"🎟️","tags":["admission","ticket"]},{"unicode":"🎫","tags":["admission"]},{"unicode":"🎖️","tags":["celebration","medal","military"]},{"unicode":"🏆️","tags":["prize"]},{"unicode":"🏅","tags":["medal"]},{"unicode":"🥇","tags":["first","gold","medal"]},{"unicode":"🥈","tags":["medal","second","silver"]},{"unicode":"🥉","tags":["bronze","medal","third"]},{"unicode":"⚽️","tags":["ball","football","soccer"]},{"unicode":"⚾️","tags":["ball"]},{"unicode":"🥎","tags":["ball","glove","underarm"]},{"unicode":"🏀","tags":["ball","hoop"]},{"unicode":"🏐","tags":["ball","game"]},{"unicode":"🏈","tags":["american","ball","football"]},{"unicode":"🏉","tags":["ball","football","rugby"]},{"unicode":"🎾","tags":["ball","racquet"]},{"unicode":"🥏","tags":["ultimate"]},{"unicode":"🎳","tags":["ball","game"]},{"unicode":"🏏","tags":["ball","bat","game"]},{"unicode":"🏑","tags":["ball","field","game","hockey","stick"]},{"unicode":"🏒","tags":["game","hockey","ice","puck","stick"]},{"unicode":"🥍","tags":["ball","goal","stick"]},{"unicode":"🏓","tags":["ball","bat","game","paddle","table tennis"]},{"unicode":"🏸","tags":["birdie","game","racquet","shuttlecock"]},{"unicode":"🥊","tags":["boxing","glove"]},{"unicode":"🥋","tags":["judo","karate","martial arts","taekwondo","uniform"]},{"unicode":"🥅","tags":["goal","net"]},{"unicode":"⛳️","tags":["golf","hole"]},{"unicode":"⛸️","tags":["ice","skate"]},{"unicode":"🎣","tags":["fish","pole"]},{"unicode":"🤿","tags":["diving","scuba","snorkeling"]},{"unicode":"🎽","tags":["athletics","running","sash","shirt"]},{"unicode":"🎿","tags":["ski","snow"]},{"unicode":"🛷","tags":["sledge","sleigh"]},{"unicode":"🥌","tags":["game","rock"]},{"unicode":"🎯","tags":["bullseye","dart","game","hit","target"]},{"unicode":"🪀","tags":["fluctuate","toy"]},{"unicode":"🪁","tags":["fly","soar"]},{"unicode":"🎱","tags":["8","ball","billiard","eight","game"]},{"unicode":"🔮","tags":["ball","crystal","fairy tale","fantasy","fortune","tool"]},{"unicode":"🪄","tags":["magic","witch","wizard"]},{"unicode":"🧿","tags":["bead","charm","evil-eye","nazar","talisman"]},{"unicode":"🎮️","tags":["controller","game"]},{"unicode":"🕹️","tags":["game","video game"]},{"unicode":"🎰","tags":["game","slot"]},{"unicode":"🎲","tags":["dice","die","game"]},{"unicode":"🧩","tags":["clue","interlocking","jigsaw","piece","puzzle"]},{"unicode":"🧸","tags":["plaything","plush","stuffed","toy"]},{"unicode":"🪅","tags":["celebration","party"]},{"unicode":"🪆","tags":["doll","nesting","russia"]},{"unicode":"♠️","tags":["card","game"]},{"unicode":"♥️","tags":["card","game"]},{"unicode":"♦️","tags":["card","game"]},{"unicode":"♣️","tags":["card","game"]},{"unicode":"♟️","tags":["chess","dupe","expendable"]},{"unicode":"🃏","tags":["card","game","wildcard"]},{"unicode":"🀄️","tags":["game","mahjong","red"]},{"unicode":"🎴","tags":["card","flower","game","japanese","playing"]},{"unicode":"🎭️","tags":["art","mask","performing","theater","theatre"]},{"unicode":"🖼️","tags":["art","frame","museum","painting","picture"]},{"unicode":"🎨","tags":["art","museum","painting","palette"]},{"unicode":"🧵","tags":["needle","sewing","spool","string"]},{"unicode":"🪡","tags":["embroidery","needle","sewing","stitches","sutures","tailoring"]},{"unicode":"🧶","tags":["ball","crochet","knit"]},{"unicode":"🪢","tags":["rope","tangled","tie","twine","twist"]}]},{"group":7,"emojiList":[{"unicode":"👓️","tags":["clothing","eye","eyeglasses","eyewear"]},{"unicode":"🕶️","tags":["dark","eye","eyewear","glasses"]},{"unicode":"🥽","tags":["eye protection","swimming","welding"]},{"unicode":"🥼","tags":["doctor","experiment","scientist"]},{"unicode":"🦺","tags":["emergency","safety","vest"]},{"unicode":"👔","tags":["clothing","tie"]},{"unicode":"👕","tags":["clothing","shirt","tshirt"]},{"unicode":"👖","tags":["clothing","pants","trousers"]},{"unicode":"🧣","tags":["neck"]},{"unicode":"🧤","tags":["hand"]},{"unicode":"🧥","tags":["jacket"]},{"unicode":"🧦","tags":["stocking"]},{"unicode":"👗","tags":["clothing"]},{"unicode":"👘","tags":["clothing"]},{"unicode":"🥻","tags":["clothing","dress"]},{"unicode":"🩱","tags":["bathing suit"]},{"unicode":"🩲","tags":["bathing suit","one-piece","swimsuit","underwear"]},{"unicode":"🩳","tags":["bathing suit","pants","underwear"]},{"unicode":"👙","tags":["clothing","swim"]},{"unicode":"👚","tags":["clothing","woman"]},{"unicode":"👛","tags":["clothing","coin"]},{"unicode":"👜","tags":["bag","clothing","purse"]},{"unicode":"👝","tags":["bag","clothing","pouch"]},{"unicode":"🛍️","tags":["bag","hotel","shopping"]},{"unicode":"🎒","tags":["bag","rucksack","satchel","school"]},{"unicode":"🩴","tags":["beach sandals","sandals","thong sandals","thongs","zōri"]},{"unicode":"👞","tags":["clothing","man","shoe"]},{"unicode":"👟","tags":["athletic","clothing","shoe","sneaker"]},{"unicode":"🥾","tags":["backpacking","boot","camping","hiking"]},{"unicode":"🥿","tags":["ballet flat","slip-on","slipper"]},{"unicode":"👠","tags":["clothing","heel","shoe","woman"]},{"unicode":"👡","tags":["clothing","sandal","shoe","woman"]},{"unicode":"🩰","tags":["ballet","dance"]},{"unicode":"👢","tags":["boot","clothing","shoe","woman"]},{"unicode":"👑","tags":["clothing","king","queen"]},{"unicode":"👒","tags":["clothing","hat","woman"]},{"unicode":"🎩","tags":["clothing","hat","top","tophat"]},{"unicode":"🎓️","tags":["cap","celebration","clothing","graduation","hat"]},{"unicode":"🧢","tags":["baseball cap"]},{"unicode":"🪖","tags":["army","helmet","military","soldier","warrior"]},{"unicode":"⛑️","tags":["aid","cross","face","hat","helmet"]},{"unicode":"📿","tags":["beads","clothing","necklace","prayer","religion"]},{"unicode":"💄","tags":["cosmetics","makeup"]},{"unicode":"💍","tags":["diamond"]},{"unicode":"💎","tags":["diamond","gem","jewel"]},{"unicode":"🔇","tags":["mute","quiet","silent","speaker"]},{"unicode":"🔈️","tags":["soft"]},{"unicode":"🔉","tags":["medium"]},{"unicode":"🔊","tags":["loud"]},{"unicode":"📢","tags":["loud","public address"]},{"unicode":"📣","tags":["cheering"]},{"unicode":"📯","tags":["horn","post","postal"]},{"unicode":"🔔","tags":["bell"]},{"unicode":"🔕","tags":["bell","forbidden","mute","quiet","silent"]},{"unicode":"🎼","tags":["music","score"]},{"unicode":"🎵","tags":["music","note"]},{"unicode":"🎶","tags":["music","note","notes"]},{"unicode":"🎙️","tags":["mic","microphone","music","studio"]},{"unicode":"🎚️","tags":["level","music","slider"]},{"unicode":"🎛️","tags":["control","knobs","music"]},{"unicode":"🎤","tags":["karaoke","mic"]},{"unicode":"🎧️","tags":["earbud"]},{"unicode":"📻️","tags":["video"]},{"unicode":"🎷","tags":["instrument","music","sax"]},{"unicode":"🪗","tags":["accordian","concertina","squeeze box"]},{"unicode":"🎸","tags":["instrument","music"]},{"unicode":"🎹","tags":["instrument","keyboard","music","piano"]},{"unicode":"🎺","tags":["instrument","music"]},{"unicode":"🎻","tags":["instrument","music"]},{"unicode":"🪕","tags":["music","stringed"]},{"unicode":"🥁","tags":["drumsticks","music"]},{"unicode":"🪘","tags":["beat","conga","drum","rhythm"]},{"unicode":"📱","tags":["cell","mobile","phone","telephone"]},{"unicode":"📲","tags":["arrow","cell","mobile","phone","receive"]},{"unicode":"☎️","tags":["phone"]},{"unicode":"📞","tags":["phone","receiver","telephone"]},{"unicode":"📟️","tags":["pager"]},{"unicode":"📠","tags":["fax"]},{"unicode":"🔋","tags":["battery"]},{"unicode":"🔌","tags":["electric","electricity","plug"]},{"unicode":"💻️","tags":["computer","pc","personal"]},{"unicode":"🖥️","tags":["computer","desktop"]},{"unicode":"🖨️","tags":["computer"]},{"unicode":"⌨️","tags":["computer"]},{"unicode":"🖱️","tags":["computer"]},{"unicode":"🖲️","tags":["computer"]},{"unicode":"💽","tags":["computer","disk","minidisk","optical"]},{"unicode":"💾","tags":["computer","disk","floppy"]},{"unicode":"💿️","tags":["cd","computer","disk","optical"]},{"unicode":"📀","tags":["blu-ray","computer","disk","optical"]},{"unicode":"🧮","tags":["calculation"]},{"unicode":"🎥","tags":["camera","cinema","movie"]},{"unicode":"🎞️","tags":["cinema","film","frames","movie"]},{"unicode":"📽️","tags":["cinema","film","movie","projector","video"]},{"unicode":"🎬️","tags":["clapper","movie"]},{"unicode":"📺️","tags":["tv","video"]},{"unicode":"📷️","tags":["video"]},{"unicode":"📸","tags":["camera","flash","video"]},{"unicode":"📹️","tags":["camera","video"]},{"unicode":"📼","tags":["tape","vhs","video"]},{"unicode":"🔍️","tags":["glass","magnifying","search","tool"]},{"unicode":"🔎","tags":["glass","magnifying","search","tool"]},{"unicode":"🕯️","tags":["light"]},{"unicode":"💡","tags":["bulb","comic","electric","idea","light"]},{"unicode":"🔦","tags":["electric","light","tool","torch"]},{"unicode":"🏮","tags":["bar","lantern","light","red"]},{"unicode":"🪔","tags":["diya","lamp","oil"]},{"unicode":"📔","tags":["book","cover","decorated","notebook"]},{"unicode":"📕","tags":["book","closed"]},{"unicode":"📖","tags":["book","open"]},{"unicode":"📗","tags":["book","green"]},{"unicode":"📘","tags":["blue","book"]},{"unicode":"📙","tags":["book","orange"]},{"unicode":"📚️","tags":["book"]},{"unicode":"📓","tags":["notebook"]},{"unicode":"📒","tags":["notebook"]},{"unicode":"📃","tags":["curl","document","page"]},{"unicode":"📜","tags":["paper"]},{"unicode":"📄","tags":["document","page"]},{"unicode":"📰","tags":["news","paper"]},{"unicode":"🗞️","tags":["news","newspaper","paper","rolled"]},{"unicode":"📑","tags":["bookmark","mark","marker","tabs"]},{"unicode":"🔖","tags":["mark"]},{"unicode":"🏷️","tags":["label"]},{"unicode":"💰️","tags":["bag","dollar","money","moneybag"]},{"unicode":"🪙","tags":["gold","metal","money","silver","treasure"]},{"unicode":"💴","tags":["banknote","bill","currency","money","note","yen"]},{"unicode":"💵","tags":["banknote","bill","currency","dollar","money","note"]},{"unicode":"💶","tags":["banknote","bill","currency","euro","money","note"]},{"unicode":"💷","tags":["banknote","bill","currency","money","note","pound"]},{"unicode":"💸","tags":["banknote","bill","fly","money","wings"]},{"unicode":"💳️","tags":["card","credit","money"]},{"unicode":"🧾","tags":["accounting","bookkeeping","evidence","proof"]},{"unicode":"💹","tags":["chart","graph","growth","money","yen"]},{"unicode":"✉️","tags":["email","letter"]},{"unicode":"📧","tags":["email","letter","mail"]},{"unicode":"📨","tags":["e-mail","email","envelope","incoming","letter","receive"]},{"unicode":"📩","tags":["arrow","e-mail","email","envelope","outgoing"]},{"unicode":"📤️","tags":["box","letter","mail","outbox","sent","tray"]},{"unicode":"📥️","tags":["box","inbox","letter","mail","receive","tray"]},{"unicode":"📦️","tags":["box","parcel"]},{"unicode":"📫️","tags":["closed","mail","mailbox","postbox"]},{"unicode":"📪️","tags":["closed","lowered","mail","mailbox","postbox"]},{"unicode":"📬️","tags":["mail","mailbox","open","postbox"]},{"unicode":"📭️","tags":["lowered","mail","mailbox","open","postbox"]},{"unicode":"📮","tags":["mail","mailbox"]},{"unicode":"🗳️","tags":["ballot","box"]},{"unicode":"✏️","tags":["pencil"]},{"unicode":"✒️","tags":["nib","pen"]},{"unicode":"🖋️","tags":["fountain","pen"]},{"unicode":"🖊️","tags":["ballpoint"]},{"unicode":"🖌️","tags":["painting"]},{"unicode":"🖍️","tags":["crayon"]},{"unicode":"📝","tags":["pencil"]},{"unicode":"💼","tags":["briefcase"]},{"unicode":"📁","tags":["file","folder"]},{"unicode":"📂","tags":["file","folder","open"]},{"unicode":"🗂️","tags":["card","dividers","index"]},{"unicode":"📅","tags":["date"]},{"unicode":"📆","tags":["calendar"]},{"unicode":"🗒️","tags":["note","pad","spiral"]},{"unicode":"🗓️","tags":["calendar","pad","spiral"]},{"unicode":"📇","tags":["card","index","rolodex"]},{"unicode":"📈","tags":["chart","graph","growth","trend","upward"]},{"unicode":"📉","tags":["chart","down","graph","trend"]},{"unicode":"📊","tags":["bar","chart","graph"]},{"unicode":"📋️","tags":["clipboard"]},{"unicode":"📌","tags":["pin"]},{"unicode":"📍","tags":["pin","pushpin"]},{"unicode":"📎","tags":["paperclip"]},{"unicode":"🖇️","tags":["link","paperclip"]},{"unicode":"📏","tags":["ruler","straight edge"]},{"unicode":"📐","tags":["ruler","set","triangle"]},{"unicode":"✂️","tags":["cutting","tool"]},{"unicode":"🗃️","tags":["box","card","file"]},{"unicode":"🗄️","tags":["cabinet","file","filing"]},{"unicode":"🗑️","tags":["wastebasket"]},{"unicode":"🔒️","tags":["closed"]},{"unicode":"🔓️","tags":["lock","open","unlock"]},{"unicode":"🔏","tags":["ink","lock","nib","pen","privacy"]},{"unicode":"🔐","tags":["closed","key","lock","secure"]},{"unicode":"🔑","tags":["lock","password"]},{"unicode":"🗝️","tags":["clue","key","lock","old"]},{"unicode":"🔨","tags":["tool"]},{"unicode":"🪓","tags":["chop","hatchet","split","wood"]},{"unicode":"⛏️","tags":["mining","tool"]},{"unicode":"⚒️","tags":["hammer","pick","tool"]},{"unicode":"🛠️","tags":["hammer","spanner","tool","wrench"]},{"unicode":"🗡️","tags":["knife","weapon"]},{"unicode":"⚔️","tags":["crossed","swords","weapon"]},{"unicode":"🔫","tags":["gun","handgun","revolver","tool","weapon"]},{"unicode":"🪃","tags":["australia","rebound","repercussion"]},{"unicode":"🏹","tags":["archer","arrow","bow","sagittarius","zodiac"]},{"unicode":"🛡️","tags":["weapon"]},{"unicode":"🪚","tags":["carpenter","lumber","saw","tool"]},{"unicode":"🔧","tags":["spanner","tool"]},{"unicode":"🪛","tags":["screw","tool"]},{"unicode":"🔩","tags":["bolt","nut","tool"]},{"unicode":"⚙️","tags":["cog","cogwheel","tool"]},{"unicode":"🗜️","tags":["compress","tool","vice"]},{"unicode":"⚖️","tags":["balance","justice","libra","scale","zodiac"]},{"unicode":"🦯","tags":["accessibility","blind"]},{"unicode":"🔗","tags":["link"]},{"unicode":"⛓️","tags":["chain"]},{"unicode":"🪝","tags":["catch","crook","curve","ensnare","selling point"]},{"unicode":"🧰","tags":["chest","mechanic","tool"]},{"unicode":"🧲","tags":["attraction","horseshoe","magnetic"]},{"unicode":"🪜","tags":["climb","rung","step"]},{"unicode":"⚗️","tags":["chemistry","tool"]},{"unicode":"🧪","tags":["chemist","chemistry","experiment","lab","science"]},{"unicode":"🧫","tags":["bacteria","biologist","biology","culture","lab"]},{"unicode":"🧬","tags":["biologist","evolution","gene","genetics","life"]},{"unicode":"🔬","tags":["science","tool"]},{"unicode":"🔭","tags":["science","tool"]},{"unicode":"📡","tags":["antenna","dish","satellite"]},{"unicode":"💉","tags":["medicine","needle","shot","sick"]},{"unicode":"🩸","tags":["bleed","blood donation","injury","medicine","menstruation"]},{"unicode":"💊","tags":["doctor","medicine","sick"]},{"unicode":"🩹","tags":["bandage"]},{"unicode":"🩺","tags":["doctor","heart","medicine"]},{"unicode":"🚪","tags":["door"]},{"unicode":"🛗","tags":["accessibility","hoist","lift"]},{"unicode":"🪞","tags":["reflection","reflector","speculum"]},{"unicode":"🪟","tags":["frame","fresh air","opening","transparent","view"]},{"unicode":"🛏️","tags":["hotel","sleep"]},{"unicode":"🛋️","tags":["couch","hotel","lamp"]},{"unicode":"🪑","tags":["seat","sit"]},{"unicode":"🚽","tags":["toilet"]},{"unicode":"🪠","tags":["force cup","plumber","suction","toilet"]},{"unicode":"🚿","tags":["water"]},{"unicode":"🛁","tags":["bath"]},{"unicode":"🪤","tags":["bait","mousetrap","snare","trap"]},{"unicode":"🪒","tags":["sharp","shave"]},{"unicode":"🧴","tags":["lotion","moisturizer","shampoo","sunscreen"]},{"unicode":"🧷","tags":["diaper","punk rock"]},{"unicode":"🧹","tags":["cleaning","sweeping","witch"]},{"unicode":"🧺","tags":["farming","laundry","picnic"]},{"unicode":"🧻","tags":["paper towels","toilet paper"]},{"unicode":"🪣","tags":["cask","pail","vat"]},{"unicode":"🧼","tags":["bar","bathing","cleaning","lather","soapdish"]},{"unicode":"🪥","tags":["bathroom","brush","clean","dental","hygiene","teeth"]},{"unicode":"🧽","tags":["absorbing","cleaning","porous"]},{"unicode":"🧯","tags":["extinguish","fire","quench"]},{"unicode":"🛒","tags":["cart","shopping","trolley"]},{"unicode":"🚬","tags":["smoking"]},{"unicode":"⚰️","tags":["death"]},{"unicode":"🪦","tags":["cemetery","grave","graveyard","tombstone"]},{"unicode":"⚱️","tags":["ashes","death","funeral","urn"]},{"unicode":"🗿","tags":["face","moyai","statue"]},{"unicode":"🪧","tags":["demonstration","picket","protest","sign"]}]},{"group":8,"emojiList":[{"unicode":"🏧","tags":["atm","atm sign","automated","bank","teller"]},{"unicode":"🚮","tags":["litter","litter bin"]},{"unicode":"🚰","tags":["drinking","potable","water"]},{"unicode":"♿️","tags":["access"]},{"unicode":"🚹️","tags":["lavatory","man","restroom","wc"]},{"unicode":"🚺️","tags":["lavatory","restroom","wc","woman"]},{"unicode":"🚻","tags":["lavatory","wc"]},{"unicode":"🚼️","tags":["baby","changing"]},{"unicode":"🚾","tags":["closet","lavatory","restroom","water","wc"]},{"unicode":"🛂","tags":["control","passport"]},{"unicode":"🛃","tags":["customs"]},{"unicode":"🛄","tags":["baggage","claim"]},{"unicode":"🛅","tags":["baggage","locker","luggage"]},{"unicode":"⚠️","tags":["warning"]},{"unicode":"🚸","tags":["child","crossing","pedestrian","traffic"]},{"unicode":"⛔️","tags":["entry","forbidden","no","not","prohibited","traffic"]},{"unicode":"🚫","tags":["entry","forbidden","no","not"]},{"unicode":"🚳","tags":["bicycle","bike","forbidden","no","prohibited"]},{"unicode":"🚭️","tags":["forbidden","no","not","prohibited","smoking"]},{"unicode":"🚯","tags":["forbidden","litter","no","not","prohibited"]},{"unicode":"🚱","tags":["non-drinking","non-potable","water"]},{"unicode":"🚷","tags":["forbidden","no","not","pedestrian","prohibited"]},{"unicode":"📵","tags":["cell","forbidden","mobile","no","phone"]},{"unicode":"🔞","tags":["18","age restriction","eighteen","prohibited","underage"]},{"unicode":"☢️","tags":["sign"]},{"unicode":"☣️","tags":["sign"]},{"unicode":"⬆️","tags":["arrow","cardinal","direction","north"]},{"unicode":"↗️","tags":["arrow","direction","intercardinal","northeast"]},{"unicode":"➡️","tags":["arrow","cardinal","direction","east"]},{"unicode":"↘️","tags":["arrow","direction","intercardinal","southeast"]},{"unicode":"⬇️","tags":["arrow","cardinal","direction","down","south"]},{"unicode":"↙️","tags":["arrow","direction","intercardinal","southwest"]},{"unicode":"⬅️","tags":["arrow","cardinal","direction","west"]},{"unicode":"↖️","tags":["arrow","direction","intercardinal","northwest"]},{"unicode":"↕️","tags":["arrow"]},{"unicode":"↔️","tags":["arrow"]},{"unicode":"↩️","tags":["arrow"]},{"unicode":"↪️","tags":["arrow"]},{"unicode":"⤴️","tags":["arrow"]},{"unicode":"⤵️","tags":["arrow","down"]},{"unicode":"🔃","tags":["arrow","clockwise","reload"]},{"unicode":"🔄","tags":["anticlockwise","arrow","counterclockwise","withershins"]},{"unicode":"🔙","tags":["arrow","back","back arrow"]},{"unicode":"🔚","tags":["arrow","end","end arrow"]},{"unicode":"🔛","tags":["arrow","mark","on","on! arrow"]},{"unicode":"🔜","tags":["arrow","soon","soon arrow"]},{"unicode":"🔝","tags":["arrow","top","top arrow","up"]},{"unicode":"🛐","tags":["religion","worship"]},{"unicode":"⚛️","tags":["atheist","atom"]},{"unicode":"🕉️","tags":["hindu","religion"]},{"unicode":"✡️","tags":["david","jew","jewish","religion","star","star of david"]},{"unicode":"☸️","tags":["buddhist","dharma","religion","wheel"]},{"unicode":"☯️","tags":["religion","tao","taoist","yang","yin"]},{"unicode":"✝️","tags":["christian","cross","religion"]},{"unicode":"☦️","tags":["christian","cross","religion"]},{"unicode":"☪️","tags":["islam","muslim","religion"]},{"unicode":"☮️","tags":["peace"]},{"unicode":"🕎","tags":["candelabrum","candlestick","religion"]},{"unicode":"🔯","tags":["fortune","star"]},{"unicode":"♈️","tags":["aries","ram","zodiac"]},{"unicode":"♉️","tags":["bull","ox","taurus","zodiac"]},{"unicode":"♊️","tags":["gemini","twins","zodiac"]},{"unicode":"♋️","tags":["cancer","crab","zodiac"]},{"unicode":"♌️","tags":["leo","lion","zodiac"]},{"unicode":"♍️","tags":["virgo","zodiac"]},{"unicode":"♎️","tags":["balance","justice","libra","scales","zodiac"]},{"unicode":"♏️","tags":["scorpio","scorpion","scorpius","zodiac"]},{"unicode":"♐️","tags":["archer","sagittarius","zodiac"]},{"unicode":"♑️","tags":["capricorn","goat","zodiac"]},{"unicode":"♒️","tags":["aquarius","bearer","water","zodiac"]},{"unicode":"♓️","tags":["fish","pisces","zodiac"]},{"unicode":"⛎","tags":["bearer","ophiuchus","serpent","snake","zodiac"]},{"unicode":"🔀","tags":["arrow","crossed"]},{"unicode":"🔁","tags":["arrow","clockwise","repeat"]},{"unicode":"🔂","tags":["arrow","clockwise","once"]},{"unicode":"▶️","tags":["arrow","play","right","triangle"]},{"unicode":"⏩️","tags":["arrow","double","fast","forward"]},{"unicode":"⏭️","tags":["arrow","next scene","next track","triangle"]},{"unicode":"⏯️","tags":["arrow","pause","play","right","triangle"]},{"unicode":"◀️","tags":["arrow","left","reverse","triangle"]},{"unicode":"⏪️","tags":["arrow","double","rewind"]},{"unicode":"⏮️","tags":["arrow","previous scene","previous track","triangle"]},{"unicode":"🔼","tags":["arrow","button","red"]},{"unicode":"⏫","tags":["arrow","double"]},{"unicode":"🔽","tags":["arrow","button","down","red"]},{"unicode":"⏬","tags":["arrow","double","down"]},{"unicode":"⏸️","tags":["bar","double","pause","vertical"]},{"unicode":"⏹️","tags":["square","stop"]},{"unicode":"⏺️","tags":["circle","record"]},{"unicode":"⏏️","tags":["eject"]},{"unicode":"🎦","tags":["camera","film","movie"]},{"unicode":"🔅","tags":["brightness","dim","low"]},{"unicode":"🔆","tags":["bright","brightness"]},{"unicode":"📶","tags":["antenna","bar","cell","mobile","phone"]},{"unicode":"📳","tags":["cell","mobile","mode","phone","telephone","vibration"]},{"unicode":"📴","tags":["cell","mobile","off","phone","telephone"]},{"unicode":"♀️","tags":["woman"]},{"unicode":"♂️","tags":["man"]},{"unicode":"⚧️","tags":["transgender"]},{"unicode":"✖️","tags":["cancel","multiplication","sign","x","×"]},{"unicode":"➕","tags":["+","math","sign"]},{"unicode":"➖","tags":["-","math","sign","−"]},{"unicode":"➗","tags":["division","math","sign","÷"]},{"unicode":"♾️","tags":["forever","unbounded","universal"]},{"unicode":"‼️","tags":["!","!!","bangbang","exclamation","mark"]},{"unicode":"⁉️","tags":["!","!?","?","exclamation","interrobang","mark","punctuation","question"]},{"unicode":"❓️","tags":["?","mark","punctuation","question"]},{"unicode":"❔","tags":["?","mark","outlined","punctuation","question"]},{"unicode":"❕","tags":["!","exclamation","mark","outlined","punctuation"]},{"unicode":"❗️","tags":["!","exclamation","mark","punctuation"]},{"unicode":"〰️","tags":["dash","punctuation","wavy"]},{"unicode":"💱","tags":["bank","currency","exchange","money"]},{"unicode":"💲","tags":["currency","dollar","money"]},{"unicode":"⚕️","tags":["aesculapius","medicine","staff"]},{"unicode":"♻️","tags":["recycle"]},{"unicode":"⚜️","tags":["fleur-de-lis"]},{"unicode":"🔱","tags":["anchor","emblem","ship","tool","trident"]},{"unicode":"📛","tags":["badge","name"]},{"unicode":"🔰","tags":["beginner","chevron","japanese","japanese symbol for beginner","leaf"]},{"unicode":"⭕️","tags":["circle","large","o","red"]},{"unicode":"✅","tags":["button","check","mark","✓"]},{"unicode":"☑️","tags":["box","check","✓"]},{"unicode":"✔️","tags":["check","mark","✓"]},{"unicode":"❌","tags":["cancel","cross","mark","multiplication","multiply","x","×"]},{"unicode":"❎","tags":["mark","square","x","×"]},{"unicode":"➰","tags":["curl","loop"]},{"unicode":"➿","tags":["curl","double","loop"]},{"unicode":"〽️","tags":["mark","part"]},{"unicode":"✳️","tags":["*","asterisk"]},{"unicode":"✴️","tags":["*","star"]},{"unicode":"❇️","tags":["*"]},{"unicode":"©️","tags":["c"]},{"unicode":"®️","tags":["r"]},{"unicode":"™️","tags":["mark","tm","trademark"]},{"unicode":"#️⃣","tags":["keycap"]},{"unicode":"*️⃣","tags":["keycap"]},{"unicode":"0️⃣","tags":["keycap"]},{"unicode":"1️⃣","tags":["keycap"]},{"unicode":"2️⃣","tags":["keycap"]},{"unicode":"3️⃣","tags":["keycap"]},{"unicode":"4️⃣","tags":["keycap"]},{"unicode":"5️⃣","tags":["keycap"]},{"unicode":"6️⃣","tags":["keycap"]},{"unicode":"7️⃣","tags":["keycap"]},{"unicode":"8️⃣","tags":["keycap"]},{"unicode":"9️⃣","tags":["keycap"]},{"unicode":"🔟","tags":["keycap"]},{"unicode":"🔠","tags":["abcd","input","latin","letters","uppercase"]},{"unicode":"🔡","tags":["abcd","input","latin","letters","lowercase"]},{"unicode":"🔢","tags":["1234","input","numbers"]},{"unicode":"🔣","tags":["input","〒♪&%"]},{"unicode":"🔤","tags":["abc","alphabet","input","latin","letters"]},{"unicode":"🅰️","tags":["a","a button (blood type)","blood type"]},{"unicode":"🆎","tags":["ab","ab button (blood type)","blood type"]},{"unicode":"🅱️","tags":["b","b button (blood type)","blood type"]},{"unicode":"🆑","tags":["cl","cl button"]},{"unicode":"🆒","tags":["cool","cool button"]},{"unicode":"🆓","tags":["free","free button"]},{"unicode":"ℹ️","tags":["i"]},{"unicode":"🆔","tags":["id","id button","identity"]},{"unicode":"Ⓜ️","tags":["circle","circled m","m"]},{"unicode":"🆕","tags":["new","new button"]},{"unicode":"🆖","tags":["ng","ng button"]},{"unicode":"🅾️","tags":["blood type","o","o button (blood type)"]},{"unicode":"🆗","tags":["ok","ok button"]},{"unicode":"🅿️","tags":["p button","parking"]},{"unicode":"🆘","tags":["help","sos","sos button"]},{"unicode":"🆙","tags":["mark","up","up! button"]},{"unicode":"🆚","tags":["versus","vs","vs button"]},{"unicode":"🈁","tags":["japanese","japanese “here” button","katakana","“here”","ココ"]},{"unicode":"🈂️","tags":["japanese","japanese “service charge” button","katakana","“service charge”","サ"]},{"unicode":"🈷️","tags":["ideograph","japanese","japanese “monthly amount” button","“monthly amount”","月"]},{"unicode":"🈶","tags":["ideograph","japanese","japanese “not free of charge” button","“not free of charge”","有"]},{"unicode":"🈯️","tags":["ideograph","japanese","japanese “reserved” button","“reserved”","指"]},{"unicode":"🉐","tags":["ideograph","japanese","japanese “bargain” button","“bargain”","得"]},{"unicode":"🈹","tags":["ideograph","japanese","japanese “discount” button","“discount”","割"]},{"unicode":"🈚️","tags":["ideograph","japanese","japanese “free of charge” button","“free of charge”","無"]},{"unicode":"🈲","tags":["ideograph","japanese","japanese “prohibited” button","“prohibited”","禁"]},{"unicode":"🉑","tags":["ideograph","japanese","japanese “acceptable” button","“acceptable”","可"]},{"unicode":"🈸","tags":["ideograph","japanese","japanese “application” button","“application”","申"]},{"unicode":"🈴","tags":["ideograph","japanese","japanese “passing grade” button","“passing grade”","合"]},{"unicode":"🈳","tags":["ideograph","japanese","japanese “vacancy” button","“vacancy”","空"]},{"unicode":"㊗️","tags":["ideograph","japanese","japanese “congratulations” button","“congratulations”","祝"]},{"unicode":"㊙️","tags":["ideograph","japanese","japanese “secret” button","“secret”","秘"]},{"unicode":"🈺","tags":["ideograph","japanese","japanese “open for business” button","“open for business”","営"]},{"unicode":"🈵","tags":["ideograph","japanese","japanese “no vacancy” button","“no vacancy”","満"]},{"unicode":"🔴","tags":["circle","geometric","red"]},{"unicode":"🟠","tags":["circle","orange"]},{"unicode":"🟡","tags":["circle","yellow"]},{"unicode":"🟢","tags":["circle","green"]},{"unicode":"🔵","tags":["blue","circle","geometric"]},{"unicode":"🟣","tags":["circle","purple"]},{"unicode":"🟤","tags":["brown","circle"]},{"unicode":"⚫️","tags":["circle","geometric"]},{"unicode":"⚪️","tags":["circle","geometric"]},{"unicode":"🟥","tags":["red","square"]},{"unicode":"🟧","tags":["orange","square"]},{"unicode":"🟨","tags":["square","yellow"]},{"unicode":"🟩","tags":["green","square"]},{"unicode":"🟦","tags":["blue","square"]},{"unicode":"🟪","tags":["purple","square"]},{"unicode":"🟫","tags":["brown","square"]},{"unicode":"⬛️","tags":["geometric","square"]},{"unicode":"⬜️","tags":["geometric","square"]},{"unicode":"◼️","tags":["geometric","square"]},{"unicode":"◻️","tags":["geometric","square"]},{"unicode":"◾️","tags":["geometric","square"]},{"unicode":"◽️","tags":["geometric","square"]},{"unicode":"▪️","tags":["geometric","square"]},{"unicode":"▫️","tags":["geometric","square"]},{"unicode":"🔶","tags":["diamond","geometric","orange"]},{"unicode":"🔷","tags":["blue","diamond","geometric"]},{"unicode":"🔸","tags":["diamond","geometric","orange"]},{"unicode":"🔹","tags":["blue","diamond","geometric"]},{"unicode":"🔺","tags":["geometric","red"]},{"unicode":"🔻","tags":["down","geometric","red"]},{"unicode":"💠","tags":["comic","diamond","geometric","inside"]},{"unicode":"🔘","tags":["button","geometric","radio"]},{"unicode":"🔳","tags":["button","geometric","outlined","square"]},{"unicode":"🔲","tags":["button","geometric","square"]}]},{"group":9,"emojiList":[{"unicode":"🏁","tags":["checkered","chequered","racing"]},{"unicode":"🚩","tags":["post"]},{"unicode":"🎌","tags":["celebration","cross","crossed","japanese"]},{"unicode":"🏴","tags":["waving"]},{"unicode":"🏳️","tags":["waving"]},{"unicode":"🏳️‍🌈","tags":["pride","rainbow"]},{"unicode":"🏳️‍⚧️","tags":["flag","light blue","pink","transgender","white"]},{"unicode":"🏴‍☠️","tags":["jolly roger","pirate","plunder","treasure"]},{"unicode":"🇦🇨","tags":["AC","flag"]},{"unicode":"🇦🇩","tags":["AD","flag"]},{"unicode":"🇦🇪","tags":["AE","flag"]},{"unicode":"🇦🇫","tags":["AF","flag"]},{"unicode":"🇦🇬","tags":["AG","flag"]},{"unicode":"🇦🇮","tags":["AI","flag"]},{"unicode":"🇦🇱","tags":["AL","flag"]},{"unicode":"🇦🇲","tags":["AM","flag"]},{"unicode":"🇦🇴","tags":["AO","flag"]},{"unicode":"🇦🇶","tags":["AQ","flag"]},{"unicode":"🇦🇷","tags":["AR","flag"]},{"unicode":"🇦🇸","tags":["AS","flag"]},{"unicode":"🇦🇹","tags":["AT","flag"]},{"unicode":"🇦🇺","tags":["AU","flag"]},{"unicode":"🇦🇼","tags":["AW","flag"]},{"unicode":"🇦🇽","tags":["AX","flag"]},{"unicode":"🇦🇿","tags":["AZ","flag"]},{"unicode":"🇧🇦","tags":["BA","flag"]},{"unicode":"🇧🇧","tags":["BB","flag"]},{"unicode":"🇧🇩","tags":["BD","flag"]},{"unicode":"🇧🇪","tags":["BE","flag"]},{"unicode":"🇧🇫","tags":["BF","flag"]},{"unicode":"🇧🇬","tags":["BG","flag"]},{"unicode":"🇧🇭","tags":["BH","flag"]},{"unicode":"🇧🇮","tags":["BI","flag"]},{"unicode":"🇧🇯","tags":["BJ","flag"]},{"unicode":"🇧🇱","tags":["BL","flag"]},{"unicode":"🇧🇲","tags":["BM","flag"]},{"unicode":"🇧🇳","tags":["BN","flag"]},{"unicode":"🇧🇴","tags":["BO","flag"]},{"unicode":"🇧🇶","tags":["BQ","flag"]},{"unicode":"🇧🇷","tags":["BR","flag"]},{"unicode":"🇧🇸","tags":["BS","flag"]},{"unicode":"🇧🇹","tags":["BT","flag"]},{"unicode":"🇧🇻","tags":["BV","flag"]},{"unicode":"🇧🇼","tags":["BW","flag"]},{"unicode":"🇧🇾","tags":["BY","flag"]},{"unicode":"🇧🇿","tags":["BZ","flag"]},{"unicode":"🇨🇦","tags":["CA","flag"]},{"unicode":"🇨🇨","tags":["CC","flag"]},{"unicode":"🇨🇩","tags":["CD","flag"]},{"unicode":"🇨🇫","tags":["CF","flag"]},{"unicode":"🇨🇬","tags":["CG","flag"]},{"unicode":"🇨🇭","tags":["CH","flag"]},{"unicode":"🇨🇮","tags":["CI","flag"]},{"unicode":"🇨🇰","tags":["CK","flag"]},{"unicode":"🇨🇱","tags":["CL","flag"]},{"unicode":"🇨🇲","tags":["CM","flag"]},{"unicode":"🇨🇳","tags":["CN","flag"]},{"unicode":"🇨🇴","tags":["CO","flag"]},{"unicode":"🇨🇵","tags":["CP","flag"]},{"unicode":"🇨🇷","tags":["CR","flag"]},{"unicode":"🇨🇺","tags":["CU","flag"]},{"unicode":"🇨🇻","tags":["CV","flag"]},{"unicode":"🇨🇼","tags":["CW","flag"]},{"unicode":"🇨🇽","tags":["CX","flag"]},{"unicode":"🇨🇾","tags":["CY","flag"]},{"unicode":"🇨🇿","tags":["CZ","flag"]},{"unicode":"🇩🇪","tags":["DE","flag"]},{"unicode":"🇩🇬","tags":["DG","flag"]},{"unicode":"🇩🇯","tags":["DJ","flag"]},{"unicode":"🇩🇰","tags":["DK","flag"]},{"unicode":"🇩🇲","tags":["DM","flag"]},{"unicode":"🇩🇴","tags":["DO","flag"]},{"unicode":"🇩🇿","tags":["DZ","flag"]},{"unicode":"🇪🇦","tags":["EA","flag"]},{"unicode":"🇪🇨","tags":["EC","flag"]},{"unicode":"🇪🇪","tags":["EE","flag"]},{"unicode":"🇪🇬","tags":["EG","flag"]},{"unicode":"🇪🇭","tags":["EH","flag"]},{"unicode":"🇪🇷","tags":["ER","flag"]},{"unicode":"🇪🇸","tags":["ES","flag"]},{"unicode":"🇪🇹","tags":["ET","flag"]},{"unicode":"🇪🇺","tags":["EU","flag"]},{"unicode":"🇫🇮","tags":["FI","flag"]},{"unicode":"🇫🇯","tags":["FJ","flag"]},{"unicode":"🇫🇰","tags":["FK","flag"]},{"unicode":"🇫🇲","tags":["FM","flag"]},{"unicode":"🇫🇴","tags":["FO","flag"]},{"unicode":"🇫🇷","tags":["FR","flag"]},{"unicode":"🇬🇦","tags":["GA","flag"]},{"unicode":"🇬🇧","tags":["GB","flag"]},{"unicode":"🇬🇩","tags":["GD","flag"]},{"unicode":"🇬🇪","tags":["GE","flag"]},{"unicode":"🇬🇫","tags":["GF","flag"]},{"unicode":"🇬🇬","tags":["GG","flag"]},{"unicode":"🇬🇭","tags":["GH","flag"]},{"unicode":"🇬🇮","tags":["GI","flag"]},{"unicode":"🇬🇱","tags":["GL","flag"]},{"unicode":"🇬🇲","tags":["GM","flag"]},{"unicode":"🇬🇳","tags":["GN","flag"]},{"unicode":"🇬🇵","tags":["GP","flag"]},{"unicode":"🇬🇶","tags":["GQ","flag"]},{"unicode":"🇬🇷","tags":["GR","flag"]},{"unicode":"🇬🇸","tags":["GS","flag"]},{"unicode":"🇬🇹","tags":["GT","flag"]},{"unicode":"🇬🇺","tags":["GU","flag"]},{"unicode":"🇬🇼","tags":["GW","flag"]},{"unicode":"🇬🇾","tags":["GY","flag"]},{"unicode":"🇭🇰","tags":["HK","flag"]},{"unicode":"🇭🇲","tags":["HM","flag"]},{"unicode":"🇭🇳","tags":["HN","flag"]},{"unicode":"🇭🇷","tags":["HR","flag"]},{"unicode":"🇭🇹","tags":["HT","flag"]},{"unicode":"🇭🇺","tags":["HU","flag"]},{"unicode":"🇮🇨","tags":["IC","flag"]},{"unicode":"🇮🇩","tags":["ID","flag"]},{"unicode":"🇮🇪","tags":["IE","flag"]},{"unicode":"🇮🇱","tags":["IL","flag"]},{"unicode":"🇮🇲","tags":["IM","flag"]},{"unicode":"🇮🇳","tags":["IN","flag"]},{"unicode":"🇮🇴","tags":["IO","flag"]},{"unicode":"🇮🇶","tags":["IQ","flag"]},{"unicode":"🇮🇷","tags":["IR","flag"]},{"unicode":"🇮🇸","tags":["IS","flag"]},{"unicode":"🇮🇹","tags":["IT","flag"]},{"unicode":"🇯🇪","tags":["JE","flag"]},{"unicode":"🇯🇲","tags":["JM","flag"]},{"unicode":"🇯🇴","tags":["JO","flag"]},{"unicode":"🇯🇵","tags":["JP","flag"]},{"unicode":"🇰🇪","tags":["KE","flag"]},{"unicode":"🇰🇬","tags":["KG","flag"]},{"unicode":"🇰🇭","tags":["KH","flag"]},{"unicode":"🇰🇮","tags":["KI","flag"]},{"unicode":"🇰🇲","tags":["KM","flag"]},{"unicode":"🇰🇳","tags":["KN","flag"]},{"unicode":"🇰🇵","tags":["KP","flag"]},{"unicode":"🇰🇷","tags":["KR","flag"]},{"unicode":"🇰🇼","tags":["KW","flag"]},{"unicode":"🇰🇾","tags":["KY","flag"]},{"unicode":"🇰🇿","tags":["KZ","flag"]},{"unicode":"🇱🇦","tags":["LA","flag"]},{"unicode":"🇱🇧","tags":["LB","flag"]},{"unicode":"🇱🇨","tags":["LC","flag"]},{"unicode":"🇱🇮","tags":["LI","flag"]},{"unicode":"🇱🇰","tags":["LK","flag"]},{"unicode":"🇱🇷","tags":["LR","flag"]},{"unicode":"🇱🇸","tags":["LS","flag"]},{"unicode":"🇱🇹","tags":["LT","flag"]},{"unicode":"🇱🇺","tags":["LU","flag"]},{"unicode":"🇱🇻","tags":["LV","flag"]},{"unicode":"🇱🇾","tags":["LY","flag"]},{"unicode":"🇲🇦","tags":["MA","flag"]},{"unicode":"🇲🇨","tags":["MC","flag"]},{"unicode":"🇲🇩","tags":["MD","flag"]},{"unicode":"🇲🇪","tags":["ME","flag"]},{"unicode":"🇲🇫","tags":["MF","flag"]},{"unicode":"🇲🇬","tags":["MG","flag"]},{"unicode":"🇲🇭","tags":["MH","flag"]},{"unicode":"🇲🇰","tags":["MK","flag"]},{"unicode":"🇲🇱","tags":["ML","flag"]},{"unicode":"🇲🇲","tags":["MM","flag"]},{"unicode":"🇲🇳","tags":["MN","flag"]},{"unicode":"🇲🇴","tags":["MO","flag"]},{"unicode":"🇲🇵","tags":["MP","flag"]},{"unicode":"🇲🇶","tags":["MQ","flag"]},{"unicode":"🇲🇷","tags":["MR","flag"]},{"unicode":"🇲🇸","tags":["MS","flag"]},{"unicode":"🇲🇹","tags":["MT","flag"]},{"unicode":"🇲🇺","tags":["MU","flag"]},{"unicode":"🇲🇻","tags":["MV","flag"]},{"unicode":"🇲🇼","tags":["MW","flag"]},{"unicode":"🇲🇽","tags":["MX","flag"]},{"unicode":"🇲🇾","tags":["MY","flag"]},{"unicode":"🇲🇿","tags":["MZ","flag"]},{"unicode":"🇳🇦","tags":["NA","flag"]},{"unicode":"🇳🇨","tags":["NC","flag"]},{"unicode":"🇳🇪","tags":["NE","flag"]},{"unicode":"🇳🇫","tags":["NF","flag"]},{"unicode":"🇳🇬","tags":["NG","flag"]},{"unicode":"🇳🇮","tags":["NI","flag"]},{"unicode":"🇳🇱","tags":["NL","flag"]},{"unicode":"🇳🇴","tags":["NO","flag"]},{"unicode":"🇳🇵","tags":["NP","flag"]},{"unicode":"🇳🇷","tags":["NR","flag"]},{"unicode":"🇳🇺","tags":["NU","flag"]},{"unicode":"🇳🇿","tags":["NZ","flag"]},{"unicode":"🇴🇲","tags":["OM","flag"]},{"unicode":"🇵🇦","tags":["PA","flag"]},{"unicode":"🇵🇪","tags":["PE","flag"]},{"unicode":"🇵🇫","tags":["PF","flag"]},{"unicode":"🇵🇬","tags":["PG","flag"]},{"unicode":"🇵🇭","tags":["PH","flag"]},{"unicode":"🇵🇰","tags":["PK","flag"]},{"unicode":"🇵🇱","tags":["PL","flag"]},{"unicode":"🇵🇲","tags":["PM","flag"]},{"unicode":"🇵🇳","tags":["PN","flag"]},{"unicode":"🇵🇷","tags":["PR","flag"]},{"unicode":"🇵🇸","tags":["PS","flag"]},{"unicode":"🇵🇹","tags":["PT","flag"]},{"unicode":"🇵🇼","tags":["PW","flag"]},{"unicode":"🇵🇾","tags":["PY","flag"]},{"unicode":"🇶🇦","tags":["QA","flag"]},{"unicode":"🇷🇪","tags":["RE","flag"]},{"unicode":"🇷🇴","tags":["RO","flag"]},{"unicode":"🇷🇸","tags":["RS","flag"]},{"unicode":"🇷🇺","tags":["RU","flag"]},{"unicode":"🇷🇼","tags":["RW","flag"]},{"unicode":"🇸🇦","tags":["SA","flag"]},{"unicode":"🇸🇧","tags":["SB","flag"]},{"unicode":"🇸🇨","tags":["SC","flag"]},{"unicode":"🇸🇩","tags":["SD","flag"]},{"unicode":"🇸🇪","tags":["SE","flag"]},{"unicode":"🇸🇬","tags":["SG","flag"]},{"unicode":"🇸🇭","tags":["SH","flag"]},{"unicode":"🇸🇮","tags":["SI","flag"]},{"unicode":"🇸🇯","tags":["SJ","flag"]},{"unicode":"🇸🇰","tags":["SK","flag"]},{"unicode":"🇸🇱","tags":["SL","flag"]},{"unicode":"🇸🇲","tags":["SM","flag"]},{"unicode":"🇸🇳","tags":["SN","flag"]},{"unicode":"🇸🇴","tags":["SO","flag"]},{"unicode":"🇸🇷","tags":["SR","flag"]},{"unicode":"🇸🇸","tags":["SS","flag"]},{"unicode":"🇸🇹","tags":["ST","flag"]},{"unicode":"🇸🇻","tags":["SV","flag"]},{"unicode":"🇸🇽","tags":["SX","flag"]},{"unicode":"🇸🇾","tags":["SY","flag"]},{"unicode":"🇸🇿","tags":["SZ","flag"]},{"unicode":"🇹🇦","tags":["TA","flag"]},{"unicode":"🇹🇨","tags":["TC","flag"]},{"unicode":"🇹🇩","tags":["TD","flag"]},{"unicode":"🇹🇫","tags":["TF","flag"]},{"unicode":"🇹🇬","tags":["TG","flag"]},{"unicode":"🇹🇭","tags":["TH","flag"]},{"unicode":"🇹🇯","tags":["TJ","flag"]},{"unicode":"🇹🇰","tags":["TK","flag"]},{"unicode":"🇹🇱","tags":["TL","flag"]},{"unicode":"🇹🇲","tags":["TM","flag"]},{"unicode":"🇹🇳","tags":["TN","flag"]},{"unicode":"🇹🇴","tags":["TO","flag"]},{"unicode":"🇹🇷","tags":["TR","flag"]},{"unicode":"🇹🇹","tags":["TT","flag"]},{"unicode":"🇹🇻","tags":["TV","flag"]},{"unicode":"🇹🇼","tags":["TW","flag"]},{"unicode":"🇹🇿","tags":["TZ","flag"]},{"unicode":"🇺🇦","tags":["UA","flag"]},{"unicode":"🇺🇬","tags":["UG","flag"]},{"unicode":"🇺🇲","tags":["UM","flag"]},{"unicode":"🇺🇳","tags":["UN","flag"]},{"unicode":"🇺🇸","tags":["US","flag"]},{"unicode":"🇺🇾","tags":["UY","flag"]},{"unicode":"🇺🇿","tags":["UZ","flag"]},{"unicode":"🇻🇦","tags":["VA","flag"]},{"unicode":"🇻🇨","tags":["VC","flag"]},{"unicode":"🇻🇪","tags":["VE","flag"]},{"unicode":"🇻🇬","tags":["VG","flag"]},{"unicode":"🇻🇮","tags":["VI","flag"]},{"unicode":"🇻🇳","tags":["VN","flag"]},{"unicode":"🇻🇺","tags":["VU","flag"]},{"unicode":"🇼🇫","tags":["WF","flag"]},{"unicode":"🇼🇸","tags":["WS","flag"]},{"unicode":"🇽🇰","tags":["XK","flag"]},{"unicode":"🇾🇪","tags":["YE","flag"]},{"unicode":"🇾🇹","tags":["YT","flag"]},{"unicode":"🇿🇦","tags":["ZA","flag"]},{"unicode":"🇿🇲","tags":["ZM","flag"]},{"unicode":"🇿🇼","tags":["ZW","flag"]},{"unicode":"🏴󠁧󠁢󠁥󠁮󠁧󠁿","tags":["flag","gbeng"]},{"unicode":"🏴󠁧󠁢󠁳󠁣󠁴󠁿","tags":["flag","gbsct"]},{"unicode":"🏴󠁧󠁢󠁷󠁬󠁳󠁿","tags":["flag","gbwls"]}]}]')},"35a1":function(e,t,n){var i=n("f5df"),r=n("3f8c"),o=n("b622"),a=o("iterator");e.exports=function(e){if(void 0!=e)return e[a]||e["@@iterator"]||r[i(e)]}},"365c":function(e,t,n){"use strict";n.d(t,"a",(function(){return a})),n.d(t,"b",(function(){return s}));var i=n("2326"),r=n("6c06"),o=n("7b1e"),a=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return e=Object(i["b"])(e).filter(r["a"]),e.some((function(e){return t[e]||n[e]}))},s=function(e){var t,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},s=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{};e=Object(i["b"])(e).filter(r["a"]);for(var c=0;cc)r.f(e,n=i[c++],t[n]);return e}},"387f":function(e,t,n){"use strict";e.exports=function(e,t,n,i,r){return e.config=t,n&&(e.code=n),e.request=i,e.response=r,e.isAxiosError=!0,e.toJSON=function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:this.config,code:this.code}},e}},3886:function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e=t.defineLocale("uz",{months:"январ_феврал_март_апрел_май_июн_июл_август_сентябр_октябр_ноябр_декабр".split("_"),monthsShort:"янв_фев_мар_апр_май_июн_июл_авг_сен_окт_ноя_дек".split("_"),weekdays:"Якшанба_Душанба_Сешанба_Чоршанба_Пайшанба_Жума_Шанба".split("_"),weekdaysShort:"Якш_Душ_Сеш_Чор_Пай_Жум_Шан".split("_"),weekdaysMin:"Як_Ду_Се_Чо_Па_Жу_Ша".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"D MMMM YYYY, dddd HH:mm"},calendar:{sameDay:"[Бугун соат] LT [да]",nextDay:"[Эртага] LT [да]",nextWeek:"dddd [куни соат] LT [да]",lastDay:"[Кеча соат] LT [да]",lastWeek:"[Утган] dddd [куни соат] LT [да]",sameElse:"L"},relativeTime:{future:"Якин %s ичида",past:"Бир неча %s олдин",s:"фурсат",ss:"%d фурсат",m:"бир дакика",mm:"%d дакика",h:"бир соат",hh:"%d соат",d:"бир кун",dd:"%d кун",M:"бир ой",MM:"%d ой",y:"бир йил",yy:"%d йил"},week:{dow:1,doy:7}});return e}))},"2f79":function(t,e,n){"use strict";n.d(e,"a",(function(){return r}));n("b42e");var r="_uid"},"30b5":function(t,e,n){"use strict";var r=n("c532");function i(t){return encodeURIComponent(t).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}t.exports=function(t,e,n){if(!e)return t;var a;if(n)a=n(e);else if(r.isURLSearchParams(e))a=e.toString();else{var o=[];r.forEach(e,(function(t,e){null!==t&&"undefined"!==typeof t&&(r.isArray(t)?e+="[]":t=[t],r.forEach(t,(function(t){r.isDate(t)?t=t.toISOString():r.isObject(t)&&(t=JSON.stringify(t)),o.push(i(e)+"="+i(t))})))})),a=o.join("&")}if(a){var s=t.indexOf("#");-1!==s&&(t=t.slice(0,s)),t+=(-1===t.indexOf("?")?"?":"&")+a}return t}},"342f":function(t,e,n){var r=n("d066");t.exports=r("navigator","userAgent")||""},"35a1":function(t,e,n){var r=n("f5df"),i=n("3f8c"),a=n("b622"),o=a("iterator");t.exports=function(t){if(void 0!=t)return t[o]||t["@@iterator"]||i[r(t)]}},"365c":function(t,e,n){"use strict";n.d(e,"a",(function(){return o})),n.d(e,"b",(function(){return s}));var r=n("2326"),i=n("6c06"),a=n("7b1e"),o=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return t=Object(r["b"])(t).filter(i["a"]),t.some((function(t){return e[t]||n[t]}))},s=function(t){var e,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},s=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{};t=Object(r["b"])(t).filter(i["a"]);for(var c=0;cc)i.f(t,n=r[c++],e[n]);return t}},"387f":function(t,e,n){"use strict";t.exports=function(t,e,n,r,i){return t.config=e,n&&(t.code=n),t.request=r,t.response=i,t.isAxiosError=!0,t.toJSON=function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:this.config,code:this.code}},t}},3886:function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t=e.defineLocale("en-ca",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"YYYY-MM-DD",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10,n=1===~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th";return e+n}});return t}))},3934:function(e,t,n){"use strict";var i=n("c532");e.exports=i.isStandardBrowserEnv()?function(){var e,t=/(msie|trident)/i.test(navigator.userAgent),n=document.createElement("a");function r(e){var i=e;return t&&(n.setAttribute("href",i),i=n.href),n.setAttribute("href",i),{href:n.href,protocol:n.protocol?n.protocol.replace(/:$/,""):"",host:n.host,search:n.search?n.search.replace(/^\?/,""):"",hash:n.hash?n.hash.replace(/^#/,""):"",hostname:n.hostname,port:n.port,pathname:"/"===n.pathname.charAt(0)?n.pathname:"/"+n.pathname}}return e=r(window.location.href),function(t){var n=i.isString(t)?r(t):t;return n.protocol===e.protocol&&n.host===e.host}}():function(){return function(){return!0}}()},"39a6":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e=t.defineLocale("en-ca",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"YYYY-MM-DD",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(t){var e=t%10,n=1===~~(t%100/10)?"th":1===e?"st":2===e?"nd":3===e?"rd":"th";return t+n}});return e}))},3934:function(t,e,n){"use strict";var r=n("c532");t.exports=r.isStandardBrowserEnv()?function(){var t,e=/(msie|trident)/i.test(navigator.userAgent),n=document.createElement("a");function i(t){var r=t;return e&&(n.setAttribute("href",r),r=n.href),n.setAttribute("href",r),{href:n.href,protocol:n.protocol?n.protocol.replace(/:$/,""):"",host:n.host,search:n.search?n.search.replace(/^\?/,""):"",hash:n.hash?n.hash.replace(/^#/,""):"",hostname:n.hostname,port:n.port,pathname:"/"===n.pathname.charAt(0)?n.pathname:"/"+n.pathname}}return t=i(window.location.href),function(e){var n=r.isString(e)?i(e):e;return n.protocol===t.protocol&&n.host===t.host}}():function(){return function(){return!0}}()},"39a6":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t=e.defineLocale("en-gb",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10,n=1===~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th";return e+n},week:{dow:1,doy:4}});return t}))},"39bd":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e=t.defineLocale("en-gb",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(t){var e=t%10,n=1===~~(t%100/10)?"th":1===e?"st":2===e?"nd":3===e?"rd":"th";return t+n},week:{dow:1,doy:4}});return e}))},"39bd":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t={1:"१",2:"२",3:"३",4:"४",5:"५",6:"६",7:"७",8:"८",9:"९",0:"०"},n={"१":"1","२":"2","३":"3","४":"4","५":"5","६":"6","७":"7","८":"8","९":"9","०":"0"};function i(e,t,n,i){var r="";if(t)switch(n){case"s":r="काही सेकंद";break;case"ss":r="%d सेकंद";break;case"m":r="एक मिनिट";break;case"mm":r="%d मिनिटे";break;case"h":r="एक तास";break;case"hh":r="%d तास";break;case"d":r="एक दिवस";break;case"dd":r="%d दिवस";break;case"M":r="एक महिना";break;case"MM":r="%d महिने";break;case"y":r="एक वर्ष";break;case"yy":r="%d वर्षे";break}else switch(n){case"s":r="काही सेकंदां";break;case"ss":r="%d सेकंदां";break;case"m":r="एका मिनिटा";break;case"mm":r="%d मिनिटां";break;case"h":r="एका तासा";break;case"hh":r="%d तासां";break;case"d":r="एका दिवसा";break;case"dd":r="%d दिवसां";break;case"M":r="एका महिन्या";break;case"MM":r="%d महिन्यां";break;case"y":r="एका वर्षा";break;case"yy":r="%d वर्षां";break}return r.replace(/%d/i,e)}var r=e.defineLocale("mr",{months:"जानेवारी_फेब्रुवारी_मार्च_एप्रिल_मे_जून_जुलै_ऑगस्ट_सप्टेंबर_ऑक्टोबर_नोव्हेंबर_डिसेंबर".split("_"),monthsShort:"जाने._फेब्रु._मार्च._एप्रि._मे._जून._जुलै._ऑग._सप्टें._ऑक्टो._नोव्हें._डिसें.".split("_"),monthsParseExact:!0,weekdays:"रविवार_सोमवार_मंगळवार_बुधवार_गुरूवार_शुक्रवार_शनिवार".split("_"),weekdaysShort:"रवि_सोम_मंगळ_बुध_गुरू_शुक्र_शनि".split("_"),weekdaysMin:"र_सो_मं_बु_गु_शु_श".split("_"),longDateFormat:{LT:"A h:mm वाजता",LTS:"A h:mm:ss वाजता",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm वाजता",LLLL:"dddd, D MMMM YYYY, A h:mm वाजता"},calendar:{sameDay:"[आज] LT",nextDay:"[उद्या] LT",nextWeek:"dddd, LT",lastDay:"[काल] LT",lastWeek:"[मागील] dddd, LT",sameElse:"L"},relativeTime:{future:"%sमध्ये",past:"%sपूर्वी",s:i,ss:i,m:i,mm:i,h:i,hh:i,d:i,dd:i,M:i,MM:i,y:i,yy:i},preparse:function(e){return e.replace(/[१२३४५६७८९०]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\d/g,(function(e){return t[e]}))},meridiemParse:/पहाटे|सकाळी|दुपारी|सायंकाळी|रात्री/,meridiemHour:function(e,t){return 12===e&&(e=0),"पहाटे"===t||"सकाळी"===t?e:"दुपारी"===t||"सायंकाळी"===t||"रात्री"===t?e>=12?e:e+12:void 0},meridiem:function(e,t,n){return e>=0&&e<6?"पहाटे":e<12?"सकाळी":e<17?"दुपारी":e<20?"सायंकाळी":"रात्री"},week:{dow:0,doy:6}});return r}))},"39c3":function(e,t,n){"use strict";function i(e){var t=e.getBoundingClientRect();return{width:t.width,height:t.height,top:t.top,right:t.right,bottom:t.bottom,left:t.left,x:t.left,y:t.top}}function r(e){if(null==e)return window;if("[object Window]"!==e.toString()){var t=e.ownerDocument;return t&&t.defaultView||window}return e}function o(e){var t=r(e),n=t.pageXOffset,i=t.pageYOffset;return{scrollLeft:n,scrollTop:i}}function a(e){var t=r(e).Element;return e instanceof t||e instanceof Element}function s(e){var t=r(e).HTMLElement;return e instanceof t||e instanceof HTMLElement}function c(e){if("undefined"===typeof ShadowRoot)return!1;var t=r(e).ShadowRoot;return e instanceof t||e instanceof ShadowRoot}function u(e){return{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}}function d(e){return e!==r(e)&&s(e)?u(e):o(e)}function l(e){return e?(e.nodeName||"").toLowerCase():null}function f(e){return((a(e)?e.ownerDocument:e.document)||window.document).documentElement}function p(e){return i(f(e)).left+o(e).scrollLeft}function h(e){return r(e).getComputedStyle(e)}function m(e){var t=h(e),n=t.overflow,i=t.overflowX,r=t.overflowY;return/auto|scroll|overlay|hidden/.test(n+r+i)}function b(e,t,n){void 0===n&&(n=!1);var r=f(t),o=i(e),a=s(t),c={scrollLeft:0,scrollTop:0},u={x:0,y:0};return(a||!a&&!n)&&(("body"!==l(t)||m(r))&&(c=d(t)),s(t)?(u=i(t),u.x+=t.clientLeft,u.y+=t.clientTop):r&&(u.x=p(r))),{x:o.left+c.scrollLeft-u.x,y:o.top+c.scrollTop-u.y,width:o.width,height:o.height}}function g(e){var t=i(e),n=e.offsetWidth,r=e.offsetHeight;return Math.abs(t.width-n)<=1&&(n=t.width),Math.abs(t.height-r)<=1&&(r=t.height),{x:e.offsetLeft,y:e.offsetTop,width:n,height:r}}function v(e){return"html"===l(e)?e:e.assignedSlot||e.parentNode||(c(e)?e.host:null)||f(e)}function y(e){return["html","body","#document"].indexOf(l(e))>=0?e.ownerDocument.body:s(e)&&m(e)?e:y(v(e))}function _(e,t){var n;void 0===t&&(t=[]);var i=y(e),o=i===(null==(n=e.ownerDocument)?void 0:n.body),a=r(i),s=o?[a].concat(a.visualViewport||[],m(i)?i:[]):i,c=t.concat(s);return o?c:c.concat(_(v(s)))}function O(e){return["table","td","th"].indexOf(l(e))>=0}function j(e){return s(e)&&"fixed"!==h(e).position?e.offsetParent:null}function w(e){var t=-1!==navigator.userAgent.toLowerCase().indexOf("firefox"),n=-1!==navigator.userAgent.indexOf("Trident");if(n&&s(e)){var i=h(e);if("fixed"===i.position)return null}var r=v(e);while(s(r)&&["html","body"].indexOf(l(r))<0){var o=h(r);if("none"!==o.transform||"none"!==o.perspective||"paint"===o.contain||-1!==["transform","perspective"].indexOf(o.willChange)||t&&"filter"===o.willChange||t&&o.filter&&"none"!==o.filter)return r;r=r.parentNode}return null}function k(e){var t=r(e),n=j(e);while(n&&O(n)&&"static"===h(n).position)n=j(n);return n&&("html"===l(n)||"body"===l(n)&&"static"===h(n).position)?t:n||w(e)||t}n.d(t,"a",(function(){return rt}));var M="top",L="bottom",x="right",T="left",S="auto",D=[M,L,x,T],A="start",P="end",Y="clippingParents",C="viewport",E="popper",H="reference",$=D.reduce((function(e,t){return e.concat([t+"-"+A,t+"-"+P])}),[]),F=[].concat(D,[S]).reduce((function(e,t){return e.concat([t,t+"-"+A,t+"-"+P])}),[]),I="beforeRead",B="read",R="afterRead",N="beforeMain",z="main",W="afterMain",V="beforeWrite",U="write",G="afterWrite",q=[I,B,R,N,z,W,V,U,G];function J(e){var t=new Map,n=new Set,i=[];function r(e){n.add(e.name);var o=[].concat(e.requires||[],e.requiresIfExists||[]);o.forEach((function(e){if(!n.has(e)){var i=t.get(e);i&&r(i)}})),i.push(e)}return e.forEach((function(e){t.set(e.name,e)})),e.forEach((function(e){n.has(e.name)||r(e)})),i}function K(e){var t=J(e);return q.reduce((function(e,n){return e.concat(t.filter((function(e){return e.phase===n})))}),[])}function X(e){var t;return function(){return t||(t=new Promise((function(n){Promise.resolve().then((function(){t=void 0,n(e())}))}))),t}}function Z(e){var t=e.reduce((function(e,t){var n=e[t.name];return e[t.name]=n?Object.assign({},n,t,{options:Object.assign({},n.options,t.options),data:Object.assign({},n.data,t.data)}):t,e}),{});return Object.keys(t).map((function(e){return t[e]}))}var Q={placement:"bottom",modifiers:[],strategy:"absolute"};function ee(){for(var e=arguments.length,t=new Array(e),n=0;n=0?"x":"y"}function ce(e){var t,n=e.reference,i=e.element,r=e.placement,o=r?oe(r):null,a=r?ae(r):null,s=n.x+n.width/2-i.width/2,c=n.y+n.height/2-i.height/2;switch(o){case M:t={x:s,y:n.y-i.height};break;case L:t={x:s,y:n.y+n.height};break;case x:t={x:n.x+n.width,y:c};break;case T:t={x:n.x-i.width,y:c};break;default:t={x:n.x,y:n.y}}var u=o?se(o):null;if(null!=u){var d="y"===u?"height":"width";switch(a){case A:t[u]=t[u]-(n[d]/2-i[d]/2);break;case P:t[u]=t[u]+(n[d]/2-i[d]/2);break;default:}}return t}function ue(e){var t=e.state,n=e.name;t.modifiersData[n]=ce({reference:t.rects.reference,element:t.rects.popper,strategy:"absolute",placement:t.placement})}var de={name:"popperOffsets",enabled:!0,phase:"read",fn:ue,data:{}},le=Math.max,fe=Math.min,pe=Math.round,he={top:"auto",right:"auto",bottom:"auto",left:"auto"};function me(e){var t=e.x,n=e.y,i=window,r=i.devicePixelRatio||1;return{x:pe(pe(t*r)/r)||0,y:pe(pe(n*r)/r)||0}}function be(e){var t,n=e.popper,i=e.popperRect,o=e.placement,a=e.offsets,s=e.position,c=e.gpuAcceleration,u=e.adaptive,d=e.roundOffsets,l=!0===d?me(a):"function"===typeof d?d(a):a,p=l.x,m=void 0===p?0:p,b=l.y,g=void 0===b?0:b,v=a.hasOwnProperty("x"),y=a.hasOwnProperty("y"),_=T,O=M,j=window;if(u){var w=k(n),S="clientHeight",D="clientWidth";w===r(n)&&(w=f(n),"static"!==h(w).position&&(S="scrollHeight",D="scrollWidth")),w=w,o===M&&(O=L,g-=w[S]-i.height,g*=c?1:-1),o===T&&(_=x,m-=w[D]-i.width,m*=c?1:-1)}var A,P=Object.assign({position:s},u&&he);return c?Object.assign({},P,(A={},A[O]=y?"0":"",A[_]=v?"0":"",A.transform=(j.devicePixelRatio||1)<2?"translate("+m+"px, "+g+"px)":"translate3d("+m+"px, "+g+"px, 0)",A)):Object.assign({},P,(t={},t[O]=y?g+"px":"",t[_]=v?m+"px":"",t.transform="",t))}function ge(e){var t=e.state,n=e.options,i=n.gpuAcceleration,r=void 0===i||i,o=n.adaptive,a=void 0===o||o,s=n.roundOffsets,c=void 0===s||s,u={placement:oe(t.placement),popper:t.elements.popper,popperRect:t.rects.popper,gpuAcceleration:r};null!=t.modifiersData.popperOffsets&&(t.styles.popper=Object.assign({},t.styles.popper,be(Object.assign({},u,{offsets:t.modifiersData.popperOffsets,position:t.options.strategy,adaptive:a,roundOffsets:c})))),null!=t.modifiersData.arrow&&(t.styles.arrow=Object.assign({},t.styles.arrow,be(Object.assign({},u,{offsets:t.modifiersData.arrow,position:"absolute",adaptive:!1,roundOffsets:c})))),t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-placement":t.placement})}var ve={name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:ge,data:{}};function ye(e){var t=e.state;Object.keys(t.elements).forEach((function(e){var n=t.styles[e]||{},i=t.attributes[e]||{},r=t.elements[e];s(r)&&l(r)&&(Object.assign(r.style,n),Object.keys(i).forEach((function(e){var t=i[e];!1===t?r.removeAttribute(e):r.setAttribute(e,!0===t?"":t)})))}))}function _e(e){var t=e.state,n={popper:{position:t.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(t.elements.popper.style,n.popper),t.styles=n,t.elements.arrow&&Object.assign(t.elements.arrow.style,n.arrow),function(){Object.keys(t.elements).forEach((function(e){var i=t.elements[e],r=t.attributes[e]||{},o=Object.keys(t.styles.hasOwnProperty(e)?t.styles[e]:n[e]),a=o.reduce((function(e,t){return e[t]="",e}),{});s(i)&&l(i)&&(Object.assign(i.style,a),Object.keys(r).forEach((function(e){i.removeAttribute(e)})))}))}}var Oe={name:"applyStyles",enabled:!0,phase:"write",fn:ye,effect:_e,requires:["computeStyles"]};function je(e,t,n){var i=oe(e),r=[T,M].indexOf(i)>=0?-1:1,o="function"===typeof n?n(Object.assign({},t,{placement:e})):n,a=o[0],s=o[1];return a=a||0,s=(s||0)*r,[T,x].indexOf(i)>=0?{x:s,y:a}:{x:a,y:s}}function we(e){var t=e.state,n=e.options,i=e.name,r=n.offset,o=void 0===r?[0,0]:r,a=F.reduce((function(e,n){return e[n]=je(n,t.rects,o),e}),{}),s=a[t.placement],c=s.x,u=s.y;null!=t.modifiersData.popperOffsets&&(t.modifiersData.popperOffsets.x+=c,t.modifiersData.popperOffsets.y+=u),t.modifiersData[i]=a}var ke={name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:we},Me={left:"right",right:"left",bottom:"top",top:"bottom"};function Le(e){return e.replace(/left|right|bottom|top/g,(function(e){return Me[e]}))}var xe={start:"end",end:"start"};function Te(e){return e.replace(/start|end/g,(function(e){return xe[e]}))}function Se(e){var t=r(e),n=f(e),i=t.visualViewport,o=n.clientWidth,a=n.clientHeight,s=0,c=0;return i&&(o=i.width,a=i.height,/^((?!chrome|android).)*safari/i.test(navigator.userAgent)||(s=i.offsetLeft,c=i.offsetTop)),{width:o,height:a,x:s+p(e),y:c}}function De(e){var t,n=f(e),i=o(e),r=null==(t=e.ownerDocument)?void 0:t.body,a=le(n.scrollWidth,n.clientWidth,r?r.scrollWidth:0,r?r.clientWidth:0),s=le(n.scrollHeight,n.clientHeight,r?r.scrollHeight:0,r?r.clientHeight:0),c=-i.scrollLeft+p(e),u=-i.scrollTop;return"rtl"===h(r||n).direction&&(c+=le(n.clientWidth,r?r.clientWidth:0)-a),{width:a,height:s,x:c,y:u}}function Ae(e,t){var n=t.getRootNode&&t.getRootNode();if(e.contains(t))return!0;if(n&&c(n)){var i=t;do{if(i&&e.isSameNode(i))return!0;i=i.parentNode||i.host}while(i)}return!1}function Pe(e){return Object.assign({},e,{left:e.x,top:e.y,right:e.x+e.width,bottom:e.y+e.height})}function Ye(e){var t=i(e);return t.top=t.top+e.clientTop,t.left=t.left+e.clientLeft,t.bottom=t.top+e.clientHeight,t.right=t.left+e.clientWidth,t.width=e.clientWidth,t.height=e.clientHeight,t.x=t.left,t.y=t.top,t}function Ce(e,t){return t===C?Pe(Se(e)):s(t)?Ye(t):Pe(De(f(e)))}function Ee(e){var t=_(v(e)),n=["absolute","fixed"].indexOf(h(e).position)>=0,i=n&&s(e)?k(e):e;return a(i)?t.filter((function(e){return a(e)&&Ae(e,i)&&"body"!==l(e)})):[]}function He(e,t,n){var i="clippingParents"===t?Ee(e):[].concat(t),r=[].concat(i,[n]),o=r[0],a=r.reduce((function(t,n){var i=Ce(e,n);return t.top=le(i.top,t.top),t.right=fe(i.right,t.right),t.bottom=fe(i.bottom,t.bottom),t.left=le(i.left,t.left),t}),Ce(e,o));return a.width=a.right-a.left,a.height=a.bottom-a.top,a.x=a.left,a.y=a.top,a}function $e(){return{top:0,right:0,bottom:0,left:0}}function Fe(e){return Object.assign({},$e(),e)}function Ie(e,t){return t.reduce((function(t,n){return t[n]=e,t}),{})}function Be(e,t){void 0===t&&(t={});var n=t,r=n.placement,o=void 0===r?e.placement:r,s=n.boundary,c=void 0===s?Y:s,u=n.rootBoundary,d=void 0===u?C:u,l=n.elementContext,p=void 0===l?E:l,h=n.altBoundary,m=void 0!==h&&h,b=n.padding,g=void 0===b?0:b,v=Fe("number"!==typeof g?g:Ie(g,D)),y=p===E?H:E,_=e.elements.reference,O=e.rects.popper,j=e.elements[m?y:p],w=He(a(j)?j:j.contextElement||f(e.elements.popper),c,d),k=i(_),T=ce({reference:k,element:O,strategy:"absolute",placement:o}),S=Pe(Object.assign({},O,T)),A=p===E?S:k,P={top:w.top-A.top+v.top,bottom:A.bottom-w.bottom+v.bottom,left:w.left-A.left+v.left,right:A.right-w.right+v.right},$=e.modifiersData.offset;if(p===E&&$){var F=$[o];Object.keys(P).forEach((function(e){var t=[x,L].indexOf(e)>=0?1:-1,n=[M,L].indexOf(e)>=0?"y":"x";P[e]+=F[n]*t}))}return P}function Re(e,t){void 0===t&&(t={});var n=t,i=n.placement,r=n.boundary,o=n.rootBoundary,a=n.padding,s=n.flipVariations,c=n.allowedAutoPlacements,u=void 0===c?F:c,d=ae(i),l=d?s?$:$.filter((function(e){return ae(e)===d})):D,f=l.filter((function(e){return u.indexOf(e)>=0}));0===f.length&&(f=l);var p=f.reduce((function(t,n){return t[n]=Be(e,{placement:n,boundary:r,rootBoundary:o,padding:a})[oe(n)],t}),{});return Object.keys(p).sort((function(e,t){return p[e]-p[t]}))}function Ne(e){if(oe(e)===S)return[];var t=Le(e);return[Te(e),t,Te(t)]}function ze(e){var t=e.state,n=e.options,i=e.name;if(!t.modifiersData[i]._skip){for(var r=n.mainAxis,o=void 0===r||r,a=n.altAxis,s=void 0===a||a,c=n.fallbackPlacements,u=n.padding,d=n.boundary,l=n.rootBoundary,f=n.altBoundary,p=n.flipVariations,h=void 0===p||p,m=n.allowedAutoPlacements,b=t.options.placement,g=oe(b),v=g===b,y=c||(v||!h?[Le(b)]:Ne(b)),_=[b].concat(y).reduce((function(e,n){return e.concat(oe(n)===S?Re(t,{placement:n,boundary:d,rootBoundary:l,padding:u,flipVariations:h,allowedAutoPlacements:m}):n)}),[]),O=t.rects.reference,j=t.rects.popper,w=new Map,k=!0,D=_[0],P=0;P<_.length;P++){var Y=_[P],C=oe(Y),E=ae(Y)===A,H=[M,L].indexOf(C)>=0,$=H?"width":"height",F=Be(t,{placement:Y,boundary:d,rootBoundary:l,altBoundary:f,padding:u}),I=H?E?x:T:E?L:M;O[$]>j[$]&&(I=Le(I));var B=Le(I),R=[];if(o&&R.push(F[C]<=0),s&&R.push(F[I]<=0,F[B]<=0),R.every((function(e){return e}))){D=Y,k=!1;break}w.set(Y,R)}if(k)for(var N=h?3:1,z=function(e){var t=_.find((function(t){var n=w.get(t);if(n)return n.slice(0,e).every((function(e){return e}))}));if(t)return D=t,"break"},W=N;W>0;W--){var V=z(W);if("break"===V)break}t.placement!==D&&(t.modifiersData[i]._skip=!0,t.placement=D,t.reset=!0)}}var We={name:"flip",enabled:!0,phase:"main",fn:ze,requiresIfExists:["offset"],data:{_skip:!1}};function Ve(e){return"x"===e?"y":"x"}function Ue(e,t,n){return le(e,fe(t,n))}function Ge(e){var t=e.state,n=e.options,i=e.name,r=n.mainAxis,o=void 0===r||r,a=n.altAxis,s=void 0!==a&&a,c=n.boundary,u=n.rootBoundary,d=n.altBoundary,l=n.padding,f=n.tether,p=void 0===f||f,h=n.tetherOffset,m=void 0===h?0:h,b=Be(t,{boundary:c,rootBoundary:u,padding:l,altBoundary:d}),v=oe(t.placement),y=ae(t.placement),_=!y,O=se(v),j=Ve(O),w=t.modifiersData.popperOffsets,S=t.rects.reference,D=t.rects.popper,P="function"===typeof m?m(Object.assign({},t.rects,{placement:t.placement})):m,Y={x:0,y:0};if(w){if(o||s){var C="y"===O?M:T,E="y"===O?L:x,H="y"===O?"height":"width",$=w[O],F=w[O]+b[C],I=w[O]-b[E],B=p?-D[H]/2:0,R=y===A?S[H]:D[H],N=y===A?-D[H]:-S[H],z=t.elements.arrow,W=p&&z?g(z):{width:0,height:0},V=t.modifiersData["arrow#persistent"]?t.modifiersData["arrow#persistent"].padding:$e(),U=V[C],G=V[E],q=Ue(0,S[H],W[H]),J=_?S[H]/2-B-q-U-P:R-q-U-P,K=_?-S[H]/2+B+q+G+P:N+q+G+P,X=t.elements.arrow&&k(t.elements.arrow),Z=X?"y"===O?X.clientTop||0:X.clientLeft||0:0,Q=t.modifiersData.offset?t.modifiersData.offset[t.placement][O]:0,ee=w[O]+J-Q-Z,te=w[O]+K-Q;if(o){var ne=Ue(p?fe(F,ee):F,$,p?le(I,te):I);w[O]=ne,Y[O]=ne-$}if(s){var ie="x"===O?M:T,re="x"===O?L:x,ce=w[j],ue=ce+b[ie],de=ce-b[re],pe=Ue(p?fe(ue,ee):ue,ce,p?le(de,te):de);w[j]=pe,Y[j]=pe-ce}}t.modifiersData[i]=Y}}var qe={name:"preventOverflow",enabled:!0,phase:"main",fn:Ge,requiresIfExists:["offset"]},Je=function(e,t){return e="function"===typeof e?e(Object.assign({},t.rects,{placement:t.placement})):e,Fe("number"!==typeof e?e:Ie(e,D))};function Ke(e){var t,n=e.state,i=e.name,r=e.options,o=n.elements.arrow,a=n.modifiersData.popperOffsets,s=oe(n.placement),c=se(s),u=[T,x].indexOf(s)>=0,d=u?"height":"width";if(o&&a){var l=Je(r.padding,n),f=g(o),p="y"===c?M:T,h="y"===c?L:x,m=n.rects.reference[d]+n.rects.reference[c]-a[c]-n.rects.popper[d],b=a[c]-n.rects.reference[c],v=k(o),y=v?"y"===c?v.clientHeight||0:v.clientWidth||0:0,_=m/2-b/2,O=l[p],j=y-f[d]-l[h],w=y/2-f[d]/2+_,S=Ue(O,w,j),D=c;n.modifiersData[i]=(t={},t[D]=S,t.centerOffset=S-w,t)}}function Xe(e){var t=e.state,n=e.options,i=n.element,r=void 0===i?"[data-popper-arrow]":i;null!=r&&("string"!==typeof r||(r=t.elements.popper.querySelector(r),r))&&Ae(t.elements.popper,r)&&(t.elements.arrow=r)}var Ze={name:"arrow",enabled:!0,phase:"main",fn:Ke,effect:Xe,requires:["popperOffsets"],requiresIfExists:["preventOverflow"]};function Qe(e,t,n){return void 0===n&&(n={x:0,y:0}),{top:e.top-t.height-n.y,right:e.right-t.width+n.x,bottom:e.bottom-t.height+n.y,left:e.left-t.width-n.x}}function et(e){return[M,x,L,T].some((function(t){return e[t]>=0}))}function tt(e){var t=e.state,n=e.name,i=t.rects.reference,r=t.rects.popper,o=t.modifiersData.preventOverflow,a=Be(t,{elementContext:"reference"}),s=Be(t,{altBoundary:!0}),c=Qe(a,i),u=Qe(s,r,o),d=et(c),l=et(u);t.modifiersData[n]={referenceClippingOffsets:c,popperEscapeOffsets:u,isReferenceHidden:d,hasPopperEscaped:l},t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-reference-hidden":d,"data-popper-escaped":l})}var nt={name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:tt},it=[re,de,ve,Oe,ke,We,qe,Ze,nt],rt=te({defaultModifiers:it})},"3a39":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e={1:"१",2:"२",3:"३",4:"४",5:"५",6:"६",7:"७",8:"८",9:"९",0:"०"},n={"१":"1","२":"2","३":"3","४":"4","५":"5","६":"6","७":"7","८":"8","९":"9","०":"0"};function r(t,e,n,r){var i="";if(e)switch(n){case"s":i="काही सेकंद";break;case"ss":i="%d सेकंद";break;case"m":i="एक मिनिट";break;case"mm":i="%d मिनिटे";break;case"h":i="एक तास";break;case"hh":i="%d तास";break;case"d":i="एक दिवस";break;case"dd":i="%d दिवस";break;case"M":i="एक महिना";break;case"MM":i="%d महिने";break;case"y":i="एक वर्ष";break;case"yy":i="%d वर्षे";break}else switch(n){case"s":i="काही सेकंदां";break;case"ss":i="%d सेकंदां";break;case"m":i="एका मिनिटा";break;case"mm":i="%d मिनिटां";break;case"h":i="एका तासा";break;case"hh":i="%d तासां";break;case"d":i="एका दिवसा";break;case"dd":i="%d दिवसां";break;case"M":i="एका महिन्या";break;case"MM":i="%d महिन्यां";break;case"y":i="एका वर्षा";break;case"yy":i="%d वर्षां";break}return i.replace(/%d/i,t)}var i=t.defineLocale("mr",{months:"जानेवारी_फेब्रुवारी_मार्च_एप्रिल_मे_जून_जुलै_ऑगस्ट_सप्टेंबर_ऑक्टोबर_नोव्हेंबर_डिसेंबर".split("_"),monthsShort:"जाने._फेब्रु._मार्च._एप्रि._मे._जून._जुलै._ऑग._सप्टें._ऑक्टो._नोव्हें._डिसें.".split("_"),monthsParseExact:!0,weekdays:"रविवार_सोमवार_मंगळवार_बुधवार_गुरूवार_शुक्रवार_शनिवार".split("_"),weekdaysShort:"रवि_सोम_मंगळ_बुध_गुरू_शुक्र_शनि".split("_"),weekdaysMin:"र_सो_मं_बु_गु_शु_श".split("_"),longDateFormat:{LT:"A h:mm वाजता",LTS:"A h:mm:ss वाजता",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm वाजता",LLLL:"dddd, D MMMM YYYY, A h:mm वाजता"},calendar:{sameDay:"[आज] LT",nextDay:"[उद्या] LT",nextWeek:"dddd, LT",lastDay:"[काल] LT",lastWeek:"[मागील] dddd, LT",sameElse:"L"},relativeTime:{future:"%sमध्ये",past:"%sपूर्वी",s:r,ss:r,m:r,mm:r,h:r,hh:r,d:r,dd:r,M:r,MM:r,y:r,yy:r},preparse:function(t){return t.replace(/[१२३४५६७८९०]/g,(function(t){return n[t]}))},postformat:function(t){return t.replace(/\d/g,(function(t){return e[t]}))},meridiemParse:/पहाटे|सकाळी|दुपारी|सायंकाळी|रात्री/,meridiemHour:function(t,e){return 12===t&&(t=0),"पहाटे"===e||"सकाळी"===e?t:"दुपारी"===e||"सायंकाळी"===e||"रात्री"===e?t>=12?t:t+12:void 0},meridiem:function(t,e,n){return t>=0&&t<6?"पहाटे":t<12?"सकाळी":t<17?"दुपारी":t<20?"सायंकाळी":"रात्री"},week:{dow:0,doy:6}});return i}))},"3a39":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t={1:"१",2:"२",3:"३",4:"४",5:"५",6:"६",7:"७",8:"८",9:"९",0:"०"},n={"१":"1","२":"2","३":"3","४":"4","५":"5","६":"6","७":"7","८":"8","९":"9","०":"0"},i=e.defineLocale("ne",{months:"जनवरी_फेब्रुवरी_मार्च_अप्रिल_मई_जुन_जुलाई_अगष्ट_सेप्टेम्बर_अक्टोबर_नोभेम्बर_डिसेम्बर".split("_"),monthsShort:"जन._फेब्रु._मार्च_अप्रि._मई_जुन_जुलाई._अग._सेप्ट._अक्टो._नोभे._डिसे.".split("_"),monthsParseExact:!0,weekdays:"आइतबार_सोमबार_मङ्गलबार_बुधबार_बिहिबार_शुक्रबार_शनिबार".split("_"),weekdaysShort:"आइत._सोम._मङ्गल._बुध._बिहि._शुक्र._शनि.".split("_"),weekdaysMin:"आ._सो._मं._बु._बि._शु._श.".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"Aको h:mm बजे",LTS:"Aको h:mm:ss बजे",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, Aको h:mm बजे",LLLL:"dddd, D MMMM YYYY, Aको h:mm बजे"},preparse:function(e){return e.replace(/[१२३४५६७८९०]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\d/g,(function(e){return t[e]}))},meridiemParse:/राति|बिहान|दिउँसो|साँझ/,meridiemHour:function(e,t){return 12===e&&(e=0),"राति"===t?e<4?e:e+12:"बिहान"===t?e:"दिउँसो"===t?e>=10?e:e+12:"साँझ"===t?e+12:void 0},meridiem:function(e,t,n){return e<3?"राति":e<12?"बिहान":e<16?"दिउँसो":e<20?"साँझ":"राति"},calendar:{sameDay:"[आज] LT",nextDay:"[भोलि] LT",nextWeek:"[आउँदो] dddd[,] LT",lastDay:"[हिजो] LT",lastWeek:"[गएको] dddd[,] LT",sameElse:"L"},relativeTime:{future:"%sमा",past:"%s अगाडि",s:"केही क्षण",ss:"%d सेकेण्ड",m:"एक मिनेट",mm:"%d मिनेट",h:"एक घण्टा",hh:"%d घण्टा",d:"एक दिन",dd:"%d दिन",M:"एक महिना",MM:"%d महिना",y:"एक बर्ष",yy:"%d बर्ष"},week:{dow:0,doy:6}});return i}))},"3a58":function(e,t,n){"use strict";n.d(t,"c",(function(){return i})),n.d(t,"b",(function(){return r})),n.d(t,"a",(function(){return o}));var i=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:NaN,n=parseInt(e,10);return isNaN(n)?t:n},r=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:NaN,n=parseFloat(e);return isNaN(n)?t:n},o=function(e,t){return r(e).toFixed(i(t,0))}},"3a6c":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e={1:"१",2:"२",3:"३",4:"४",5:"५",6:"६",7:"७",8:"८",9:"९",0:"०"},n={"१":"1","२":"2","३":"3","४":"4","५":"5","६":"6","७":"7","८":"8","९":"9","०":"0"},r=t.defineLocale("ne",{months:"जनवरी_फेब्रुवरी_मार्च_अप्रिल_मई_जुन_जुलाई_अगष्ट_सेप्टेम्बर_अक्टोबर_नोभेम्बर_डिसेम्बर".split("_"),monthsShort:"जन._फेब्रु._मार्च_अप्रि._मई_जुन_जुलाई._अग._सेप्ट._अक्टो._नोभे._डिसे.".split("_"),monthsParseExact:!0,weekdays:"आइतबार_सोमबार_मङ्गलबार_बुधबार_बिहिबार_शुक्रबार_शनिबार".split("_"),weekdaysShort:"आइत._सोम._मङ्गल._बुध._बिहि._शुक्र._शनि.".split("_"),weekdaysMin:"आ._सो._मं._बु._बि._शु._श.".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"Aको h:mm बजे",LTS:"Aको h:mm:ss बजे",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, Aको h:mm बजे",LLLL:"dddd, D MMMM YYYY, Aको h:mm बजे"},preparse:function(t){return t.replace(/[१२३४५६७८९०]/g,(function(t){return n[t]}))},postformat:function(t){return t.replace(/\d/g,(function(t){return e[t]}))},meridiemParse:/राति|बिहान|दिउँसो|साँझ/,meridiemHour:function(t,e){return 12===t&&(t=0),"राति"===e?t<4?t:t+12:"बिहान"===e?t:"दिउँसो"===e?t>=10?t:t+12:"साँझ"===e?t+12:void 0},meridiem:function(t,e,n){return t<3?"राति":t<12?"बिहान":t<16?"दिउँसो":t<20?"साँझ":"राति"},calendar:{sameDay:"[आज] LT",nextDay:"[भोलि] LT",nextWeek:"[आउँदो] dddd[,] LT",lastDay:"[हिजो] LT",lastWeek:"[गएको] dddd[,] LT",sameElse:"L"},relativeTime:{future:"%sमा",past:"%s अगाडि",s:"केही क्षण",ss:"%d सेकेण्ड",m:"एक मिनेट",mm:"%d मिनेट",h:"एक घण्टा",hh:"%d घण्टा",d:"एक दिन",dd:"%d दिन",M:"एक महिना",MM:"%d महिना",y:"एक बर्ष",yy:"%d बर्ष"},week:{dow:0,doy:6}});return r}))},"3a58":function(t,e,n){"use strict";n.d(e,"c",(function(){return r})),n.d(e,"b",(function(){return i})),n.d(e,"a",(function(){return a}));var r=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:NaN,n=parseInt(t,10);return isNaN(n)?e:n},i=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:NaN,n=parseFloat(t);return isNaN(n)?e:n},a=function(t,e){return i(t).toFixed(r(e,0))}},"3a6c":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t=e.defineLocale("zh-mo",{months:"一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月".split("_"),monthsShort:"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),weekdays:"星期日_星期一_星期二_星期三_星期四_星期五_星期六".split("_"),weekdaysShort:"週日_週一_週二_週三_週四_週五_週六".split("_"),weekdaysMin:"日_一_二_三_四_五_六".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"YYYY年M月D日",LLL:"YYYY年M月D日 HH:mm",LLLL:"YYYY年M月D日dddd HH:mm",l:"D/M/YYYY",ll:"YYYY年M月D日",lll:"YYYY年M月D日 HH:mm",llll:"YYYY年M月D日dddd HH:mm"},meridiemParse:/凌晨|早上|上午|中午|下午|晚上/,meridiemHour:function(e,t){return 12===e&&(e=0),"凌晨"===t||"早上"===t||"上午"===t?e:"中午"===t?e>=11?e:e+12:"下午"===t||"晚上"===t?e+12:void 0},meridiem:function(e,t,n){var i=100*e+t;return i<600?"凌晨":i<900?"早上":i<1130?"上午":i<1230?"中午":i<1800?"下午":"晚上"},calendar:{sameDay:"[今天] LT",nextDay:"[明天] LT",nextWeek:"[下]dddd LT",lastDay:"[昨天] LT",lastWeek:"[上]dddd LT",sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}(日|月|週)/,ordinal:function(e,t){switch(t){case"d":case"D":case"DDD":return e+"日";case"M":return e+"月";case"w":case"W":return e+"週";default:return e}},relativeTime:{future:"%s內",past:"%s前",s:"幾秒",ss:"%d 秒",m:"1 分鐘",mm:"%d 分鐘",h:"1 小時",hh:"%d 小時",d:"1 天",dd:"%d 天",M:"1 個月",MM:"%d 個月",y:"1 年",yy:"%d 年"}});return t}))},"3b1b":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e=t.defineLocale("zh-mo",{months:"一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月".split("_"),monthsShort:"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),weekdays:"星期日_星期一_星期二_星期三_星期四_星期五_星期六".split("_"),weekdaysShort:"週日_週一_週二_週三_週四_週五_週六".split("_"),weekdaysMin:"日_一_二_三_四_五_六".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"YYYY年M月D日",LLL:"YYYY年M月D日 HH:mm",LLLL:"YYYY年M月D日dddd HH:mm",l:"D/M/YYYY",ll:"YYYY年M月D日",lll:"YYYY年M月D日 HH:mm",llll:"YYYY年M月D日dddd HH:mm"},meridiemParse:/凌晨|早上|上午|中午|下午|晚上/,meridiemHour:function(t,e){return 12===t&&(t=0),"凌晨"===e||"早上"===e||"上午"===e?t:"中午"===e?t>=11?t:t+12:"下午"===e||"晚上"===e?t+12:void 0},meridiem:function(t,e,n){var r=100*t+e;return r<600?"凌晨":r<900?"早上":r<1130?"上午":r<1230?"中午":r<1800?"下午":"晚上"},calendar:{sameDay:"[今天] LT",nextDay:"[明天] LT",nextWeek:"[下]dddd LT",lastDay:"[昨天] LT",lastWeek:"[上]dddd LT",sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}(日|月|週)/,ordinal:function(t,e){switch(e){case"d":case"D":case"DDD":return t+"日";case"M":return t+"月";case"w":case"W":return t+"週";default:return t}},relativeTime:{future:"%s內",past:"%s前",s:"幾秒",ss:"%d 秒",m:"1 分鐘",mm:"%d 分鐘",h:"1 小時",hh:"%d 小時",d:"1 天",dd:"%d 天",M:"1 個月",MM:"%d 個月",y:"1 年",yy:"%d 年"}});return e}))},"3b1b":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t={0:"-ум",1:"-ум",2:"-юм",3:"-юм",4:"-ум",5:"-ум",6:"-ум",7:"-ум",8:"-ум",9:"-ум",10:"-ум",12:"-ум",13:"-ум",20:"-ум",30:"-юм",40:"-ум",50:"-ум",60:"-ум",70:"-ум",80:"-ум",90:"-ум",100:"-ум"},n=e.defineLocale("tg",{months:{format:"январи_феврали_марти_апрели_майи_июни_июли_августи_сентябри_октябри_ноябри_декабри".split("_"),standalone:"январ_феврал_март_апрел_май_июн_июл_август_сентябр_октябр_ноябр_декабр".split("_")},monthsShort:"янв_фев_мар_апр_май_июн_июл_авг_сен_окт_ноя_дек".split("_"),weekdays:"якшанбе_душанбе_сешанбе_чоршанбе_панҷшанбе_ҷумъа_шанбе".split("_"),weekdaysShort:"яшб_дшб_сшб_чшб_пшб_ҷум_шнб".split("_"),weekdaysMin:"яш_дш_сш_чш_пш_ҷм_шб".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Имрӯз соати] LT",nextDay:"[Фардо соати] LT",lastDay:"[Дирӯз соати] LT",nextWeek:"dddd[и] [ҳафтаи оянда соати] LT",lastWeek:"dddd[и] [ҳафтаи гузашта соати] LT",sameElse:"L"},relativeTime:{future:"баъди %s",past:"%s пеш",s:"якчанд сония",m:"як дақиқа",mm:"%d дақиқа",h:"як соат",hh:"%d соат",d:"як рӯз",dd:"%d рӯз",M:"як моҳ",MM:"%d моҳ",y:"як сол",yy:"%d сол"},meridiemParse:/шаб|субҳ|рӯз|бегоҳ/,meridiemHour:function(e,t){return 12===e&&(e=0),"шаб"===t?e<4?e:e+12:"субҳ"===t?e:"рӯз"===t?e>=11?e:e+12:"бегоҳ"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?"шаб":e<11?"субҳ":e<16?"рӯз":e<19?"бегоҳ":"шаб"},dayOfMonthOrdinalParse:/\d{1,2}-(ум|юм)/,ordinal:function(e){var n=e%10,i=e>=100?100:null;return e+(t[e]||t[n]||t[i])},week:{dow:1,doy:7}});return n}))},"3bbe":function(e,t,n){var i=n("861d");e.exports=function(e){if(!i(e)&&null!==e)throw TypeError("Can't set "+String(e)+" as a prototype");return e}},"3c0d":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e={0:"-ум",1:"-ум",2:"-юм",3:"-юм",4:"-ум",5:"-ум",6:"-ум",7:"-ум",8:"-ум",9:"-ум",10:"-ум",12:"-ум",13:"-ум",20:"-ум",30:"-юм",40:"-ум",50:"-ум",60:"-ум",70:"-ум",80:"-ум",90:"-ум",100:"-ум"},n=t.defineLocale("tg",{months:{format:"январи_феврали_марти_апрели_майи_июни_июли_августи_сентябри_октябри_ноябри_декабри".split("_"),standalone:"январ_феврал_март_апрел_май_июн_июл_август_сентябр_октябр_ноябр_декабр".split("_")},monthsShort:"янв_фев_мар_апр_май_июн_июл_авг_сен_окт_ноя_дек".split("_"),weekdays:"якшанбе_душанбе_сешанбе_чоршанбе_панҷшанбе_ҷумъа_шанбе".split("_"),weekdaysShort:"яшб_дшб_сшб_чшб_пшб_ҷум_шнб".split("_"),weekdaysMin:"яш_дш_сш_чш_пш_ҷм_шб".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Имрӯз соати] LT",nextDay:"[Фардо соати] LT",lastDay:"[Дирӯз соати] LT",nextWeek:"dddd[и] [ҳафтаи оянда соати] LT",lastWeek:"dddd[и] [ҳафтаи гузашта соати] LT",sameElse:"L"},relativeTime:{future:"баъди %s",past:"%s пеш",s:"якчанд сония",m:"як дақиқа",mm:"%d дақиқа",h:"як соат",hh:"%d соат",d:"як рӯз",dd:"%d рӯз",M:"як моҳ",MM:"%d моҳ",y:"як сол",yy:"%d сол"},meridiemParse:/шаб|субҳ|рӯз|бегоҳ/,meridiemHour:function(t,e){return 12===t&&(t=0),"шаб"===e?t<4?t:t+12:"субҳ"===e?t:"рӯз"===e?t>=11?t:t+12:"бегоҳ"===e?t+12:void 0},meridiem:function(t,e,n){return t<4?"шаб":t<11?"субҳ":t<16?"рӯз":t<19?"бегоҳ":"шаб"},dayOfMonthOrdinalParse:/\d{1,2}-(ум|юм)/,ordinal:function(t){var n=t%10,r=t>=100?100:null;return t+(e[t]||e[n]||e[r])},week:{dow:1,doy:7}});return n}))},"3bbe":function(t,e,n){var r=n("861d");t.exports=function(t){if(!r(t)&&null!==t)throw TypeError("Can't set "+String(t)+" as a prototype");return t}},"3c0d":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t="leden_únor_březen_duben_květen_červen_červenec_srpen_září_říjen_listopad_prosinec".split("_"),n="led_úno_bře_dub_kvě_čvn_čvc_srp_zář_říj_lis_pro".split("_"),i=[/^led/i,/^úno/i,/^bře/i,/^dub/i,/^kvě/i,/^(čvn|červen$|června)/i,/^(čvc|červenec|července)/i,/^srp/i,/^zář/i,/^říj/i,/^lis/i,/^pro/i],r=/^(leden|únor|březen|duben|květen|červenec|července|červen|června|srpen|září|říjen|listopad|prosinec|led|úno|bře|dub|kvě|čvn|čvc|srp|zář|říj|lis|pro)/i;function o(e){return e>1&&e<5&&1!==~~(e/10)}function a(e,t,n,i){var r=e+" ";switch(n){case"s":return t||i?"pár sekund":"pár sekundami";case"ss":return t||i?r+(o(e)?"sekundy":"sekund"):r+"sekundami";case"m":return t?"minuta":i?"minutu":"minutou";case"mm":return t||i?r+(o(e)?"minuty":"minut"):r+"minutami";case"h":return t?"hodina":i?"hodinu":"hodinou";case"hh":return t||i?r+(o(e)?"hodiny":"hodin"):r+"hodinami";case"d":return t||i?"den":"dnem";case"dd":return t||i?r+(o(e)?"dny":"dní"):r+"dny";case"M":return t||i?"měsíc":"měsícem";case"MM":return t||i?r+(o(e)?"měsíce":"měsíců"):r+"měsíci";case"y":return t||i?"rok":"rokem";case"yy":return t||i?r+(o(e)?"roky":"let"):r+"lety"}}var s=e.defineLocale("cs",{months:t,monthsShort:n,monthsRegex:r,monthsShortRegex:r,monthsStrictRegex:/^(leden|ledna|února|únor|březen|března|duben|dubna|květen|května|červenec|července|červen|června|srpen|srpna|září|říjen|října|listopadu|listopad|prosinec|prosince)/i,monthsShortStrictRegex:/^(led|úno|bře|dub|kvě|čvn|čvc|srp|zář|říj|lis|pro)/i,monthsParse:i,longMonthsParse:i,shortMonthsParse:i,weekdays:"neděle_pondělí_úterý_středa_čtvrtek_pátek_sobota".split("_"),weekdaysShort:"ne_po_út_st_čt_pá_so".split("_"),weekdaysMin:"ne_po_út_st_čt_pá_so".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd D. MMMM YYYY H:mm",l:"D. M. YYYY"},calendar:{sameDay:"[dnes v] LT",nextDay:"[zítra v] LT",nextWeek:function(){switch(this.day()){case 0:return"[v neděli v] LT";case 1:case 2:return"[v] dddd [v] LT";case 3:return"[ve středu v] LT";case 4:return"[ve čtvrtek v] LT";case 5:return"[v pátek v] LT";case 6:return"[v sobotu v] LT"}},lastDay:"[včera v] LT",lastWeek:function(){switch(this.day()){case 0:return"[minulou neděli v] LT";case 1:case 2:return"[minulé] dddd [v] LT";case 3:return"[minulou středu v] LT";case 4:case 5:return"[minulý] dddd [v] LT";case 6:return"[minulou sobotu v] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"před %s",s:a,ss:a,m:a,mm:a,h:a,hh:a,d:a,dd:a,M:a,MM:a,y:a,yy:a},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return s}))},"3c21":function(e,t,n){"use strict";n.d(t,"a",(function(){return a}));var i=n("d82f"),r=n("7b1e"),o=function(e,t){if(e.length!==t.length)return!1;for(var n=!0,i=0;n&&i=n.length?{value:void 0,done:!0}:(e=i(n,r),t.index+=e.length,{value:e,done:!1})}))},"3de5":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e="leden_únor_březen_duben_květen_červen_červenec_srpen_září_říjen_listopad_prosinec".split("_"),n="led_úno_bře_dub_kvě_čvn_čvc_srp_zář_říj_lis_pro".split("_"),r=[/^led/i,/^úno/i,/^bře/i,/^dub/i,/^kvě/i,/^(čvn|červen$|června)/i,/^(čvc|červenec|července)/i,/^srp/i,/^zář/i,/^říj/i,/^lis/i,/^pro/i],i=/^(leden|únor|březen|duben|květen|červenec|července|červen|června|srpen|září|říjen|listopad|prosinec|led|úno|bře|dub|kvě|čvn|čvc|srp|zář|říj|lis|pro)/i;function a(t){return t>1&&t<5&&1!==~~(t/10)}function o(t,e,n,r){var i=t+" ";switch(n){case"s":return e||r?"pár sekund":"pár sekundami";case"ss":return e||r?i+(a(t)?"sekundy":"sekund"):i+"sekundami";case"m":return e?"minuta":r?"minutu":"minutou";case"mm":return e||r?i+(a(t)?"minuty":"minut"):i+"minutami";case"h":return e?"hodina":r?"hodinu":"hodinou";case"hh":return e||r?i+(a(t)?"hodiny":"hodin"):i+"hodinami";case"d":return e||r?"den":"dnem";case"dd":return e||r?i+(a(t)?"dny":"dní"):i+"dny";case"M":return e||r?"měsíc":"měsícem";case"MM":return e||r?i+(a(t)?"měsíce":"měsíců"):i+"měsíci";case"y":return e||r?"rok":"rokem";case"yy":return e||r?i+(a(t)?"roky":"let"):i+"lety"}}var s=t.defineLocale("cs",{months:e,monthsShort:n,monthsRegex:i,monthsShortRegex:i,monthsStrictRegex:/^(leden|ledna|února|únor|březen|března|duben|dubna|květen|května|červenec|července|červen|června|srpen|srpna|září|říjen|října|listopadu|listopad|prosinec|prosince)/i,monthsShortStrictRegex:/^(led|úno|bře|dub|kvě|čvn|čvc|srp|zář|říj|lis|pro)/i,monthsParse:r,longMonthsParse:r,shortMonthsParse:r,weekdays:"neděle_pondělí_úterý_středa_čtvrtek_pátek_sobota".split("_"),weekdaysShort:"ne_po_út_st_čt_pá_so".split("_"),weekdaysMin:"ne_po_út_st_čt_pá_so".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd D. MMMM YYYY H:mm",l:"D. M. YYYY"},calendar:{sameDay:"[dnes v] LT",nextDay:"[zítra v] LT",nextWeek:function(){switch(this.day()){case 0:return"[v neděli v] LT";case 1:case 2:return"[v] dddd [v] LT";case 3:return"[ve středu v] LT";case 4:return"[ve čtvrtek v] LT";case 5:return"[v pátek v] LT";case 6:return"[v sobotu v] LT"}},lastDay:"[včera v] LT",lastWeek:function(){switch(this.day()){case 0:return"[minulou neděli v] LT";case 1:case 2:return"[minulé] dddd [v] LT";case 3:return"[minulou středu v] LT";case 4:case 5:return"[minulý] dddd [v] LT";case 6:return"[minulou sobotu v] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"před %s",s:o,ss:o,m:o,mm:o,h:o,hh:o,d:o,dd:o,M:o,MM:o,y:o,yy:o},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return s}))},"3c21":function(t,e,n){"use strict";n.d(e,"a",(function(){return o}));var r=n("d82f"),i=n("7b1e"),a=function(t,e){if(t.length!==e.length)return!1;for(var n=!0,r=0;n&&r=n.length?{value:void 0,done:!0}:(t=r(n,i),e.index+=t.length,{value:t,done:!1})}))},"3de5":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t={1:"௧",2:"௨",3:"௩",4:"௪",5:"௫",6:"௬",7:"௭",8:"௮",9:"௯",0:"௦"},n={"௧":"1","௨":"2","௩":"3","௪":"4","௫":"5","௬":"6","௭":"7","௮":"8","௯":"9","௦":"0"},i=e.defineLocale("ta",{months:"ஜனவரி_பிப்ரவரி_மார்ச்_ஏப்ரல்_மே_ஜூன்_ஜூலை_ஆகஸ்ட்_செப்டெம்பர்_அக்டோபர்_நவம்பர்_டிசம்பர்".split("_"),monthsShort:"ஜனவரி_பிப்ரவரி_மார்ச்_ஏப்ரல்_மே_ஜூன்_ஜூலை_ஆகஸ்ட்_செப்டெம்பர்_அக்டோபர்_நவம்பர்_டிசம்பர்".split("_"),weekdays:"ஞாயிற்றுக்கிழமை_திங்கட்கிழமை_செவ்வாய்கிழமை_புதன்கிழமை_வியாழக்கிழமை_வெள்ளிக்கிழமை_சனிக்கிழமை".split("_"),weekdaysShort:"ஞாயிறு_திங்கள்_செவ்வாய்_புதன்_வியாழன்_வெள்ளி_சனி".split("_"),weekdaysMin:"ஞா_தி_செ_பு_வி_வெ_ச".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, HH:mm",LLLL:"dddd, D MMMM YYYY, HH:mm"},calendar:{sameDay:"[இன்று] LT",nextDay:"[நாளை] LT",nextWeek:"dddd, LT",lastDay:"[நேற்று] LT",lastWeek:"[கடந்த வாரம்] dddd, LT",sameElse:"L"},relativeTime:{future:"%s இல்",past:"%s முன்",s:"ஒரு சில விநாடிகள்",ss:"%d விநாடிகள்",m:"ஒரு நிமிடம்",mm:"%d நிமிடங்கள்",h:"ஒரு மணி நேரம்",hh:"%d மணி நேரம்",d:"ஒரு நாள்",dd:"%d நாட்கள்",M:"ஒரு மாதம்",MM:"%d மாதங்கள்",y:"ஒரு வருடம்",yy:"%d ஆண்டுகள்"},dayOfMonthOrdinalParse:/\d{1,2}வது/,ordinal:function(e){return e+"வது"},preparse:function(e){return e.replace(/[௧௨௩௪௫௬௭௮௯௦]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\d/g,(function(e){return t[e]}))},meridiemParse:/யாமம்|வைகறை|காலை|நண்பகல்|எற்பாடு|மாலை/,meridiem:function(e,t,n){return e<2?" யாமம்":e<6?" வைகறை":e<10?" காலை":e<14?" நண்பகல்":e<18?" எற்பாடு":e<22?" மாலை":" யாமம்"},meridiemHour:function(e,t){return 12===e&&(e=0),"யாமம்"===t?e<2?e:e+12:"வைகறை"===t||"காலை"===t||"நண்பகல்"===t&&e>=10?e:e+12},week:{dow:0,doy:6}});return i}))},"3e92":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e={1:"௧",2:"௨",3:"௩",4:"௪",5:"௫",6:"௬",7:"௭",8:"௮",9:"௯",0:"௦"},n={"௧":"1","௨":"2","௩":"3","௪":"4","௫":"5","௬":"6","௭":"7","௮":"8","௯":"9","௦":"0"},r=t.defineLocale("ta",{months:"ஜனவரி_பிப்ரவரி_மார்ச்_ஏப்ரல்_மே_ஜூன்_ஜூலை_ஆகஸ்ட்_செப்டெம்பர்_அக்டோபர்_நவம்பர்_டிசம்பர்".split("_"),monthsShort:"ஜனவரி_பிப்ரவரி_மார்ச்_ஏப்ரல்_மே_ஜூன்_ஜூலை_ஆகஸ்ட்_செப்டெம்பர்_அக்டோபர்_நவம்பர்_டிசம்பர்".split("_"),weekdays:"ஞாயிற்றுக்கிழமை_திங்கட்கிழமை_செவ்வாய்கிழமை_புதன்கிழமை_வியாழக்கிழமை_வெள்ளிக்கிழமை_சனிக்கிழமை".split("_"),weekdaysShort:"ஞாயிறு_திங்கள்_செவ்வாய்_புதன்_வியாழன்_வெள்ளி_சனி".split("_"),weekdaysMin:"ஞா_தி_செ_பு_வி_வெ_ச".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, HH:mm",LLLL:"dddd, D MMMM YYYY, HH:mm"},calendar:{sameDay:"[இன்று] LT",nextDay:"[நாளை] LT",nextWeek:"dddd, LT",lastDay:"[நேற்று] LT",lastWeek:"[கடந்த வாரம்] dddd, LT",sameElse:"L"},relativeTime:{future:"%s இல்",past:"%s முன்",s:"ஒரு சில விநாடிகள்",ss:"%d விநாடிகள்",m:"ஒரு நிமிடம்",mm:"%d நிமிடங்கள்",h:"ஒரு மணி நேரம்",hh:"%d மணி நேரம்",d:"ஒரு நாள்",dd:"%d நாட்கள்",M:"ஒரு மாதம்",MM:"%d மாதங்கள்",y:"ஒரு வருடம்",yy:"%d ஆண்டுகள்"},dayOfMonthOrdinalParse:/\d{1,2}வது/,ordinal:function(t){return t+"வது"},preparse:function(t){return t.replace(/[௧௨௩௪௫௬௭௮௯௦]/g,(function(t){return n[t]}))},postformat:function(t){return t.replace(/\d/g,(function(t){return e[t]}))},meridiemParse:/யாமம்|வைகறை|காலை|நண்பகல்|எற்பாடு|மாலை/,meridiem:function(t,e,n){return t<2?" யாமம்":t<6?" வைகறை":t<10?" காலை":t<14?" நண்பகல்":t<18?" எற்பாடு":t<22?" மாலை":" யாமம்"},meridiemHour:function(t,e){return 12===t&&(t=0),"யாமம்"===e?t<2?t:t+12:"வைகறை"===e||"காலை"===e||"நண்பகல்"===e&&t>=10?t:t+12},week:{dow:0,doy:6}});return r}))},"3e92":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t={1:"೧",2:"೨",3:"೩",4:"೪",5:"೫",6:"೬",7:"೭",8:"೮",9:"೯",0:"೦"},n={"೧":"1","೨":"2","೩":"3","೪":"4","೫":"5","೬":"6","೭":"7","೮":"8","೯":"9","೦":"0"},i=e.defineLocale("kn",{months:"ಜನವರಿ_ಫೆಬ್ರವರಿ_ಮಾರ್ಚ್_ಏಪ್ರಿಲ್_ಮೇ_ಜೂನ್_ಜುಲೈ_ಆಗಸ್ಟ್_ಸೆಪ್ಟೆಂಬರ್_ಅಕ್ಟೋಬರ್_ನವೆಂಬರ್_ಡಿಸೆಂಬರ್".split("_"),monthsShort:"ಜನ_ಫೆಬ್ರ_ಮಾರ್ಚ್_ಏಪ್ರಿಲ್_ಮೇ_ಜೂನ್_ಜುಲೈ_ಆಗಸ್ಟ್_ಸೆಪ್ಟೆಂ_ಅಕ್ಟೋ_ನವೆಂ_ಡಿಸೆಂ".split("_"),monthsParseExact:!0,weekdays:"ಭಾನುವಾರ_ಸೋಮವಾರ_ಮಂಗಳವಾರ_ಬುಧವಾರ_ಗುರುವಾರ_ಶುಕ್ರವಾರ_ಶನಿವಾರ".split("_"),weekdaysShort:"ಭಾನು_ಸೋಮ_ಮಂಗಳ_ಬುಧ_ಗುರು_ಶುಕ್ರ_ಶನಿ".split("_"),weekdaysMin:"ಭಾ_ಸೋ_ಮಂ_ಬು_ಗು_ಶು_ಶ".split("_"),longDateFormat:{LT:"A h:mm",LTS:"A h:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm",LLLL:"dddd, D MMMM YYYY, A h:mm"},calendar:{sameDay:"[ಇಂದು] LT",nextDay:"[ನಾಳೆ] LT",nextWeek:"dddd, LT",lastDay:"[ನಿನ್ನೆ] LT",lastWeek:"[ಕೊನೆಯ] dddd, LT",sameElse:"L"},relativeTime:{future:"%s ನಂತರ",past:"%s ಹಿಂದೆ",s:"ಕೆಲವು ಕ್ಷಣಗಳು",ss:"%d ಸೆಕೆಂಡುಗಳು",m:"ಒಂದು ನಿಮಿಷ",mm:"%d ನಿಮಿಷ",h:"ಒಂದು ಗಂಟೆ",hh:"%d ಗಂಟೆ",d:"ಒಂದು ದಿನ",dd:"%d ದಿನ",M:"ಒಂದು ತಿಂಗಳು",MM:"%d ತಿಂಗಳು",y:"ಒಂದು ವರ್ಷ",yy:"%d ವರ್ಷ"},preparse:function(e){return e.replace(/[೧೨೩೪೫೬೭೮೯೦]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\d/g,(function(e){return t[e]}))},meridiemParse:/ರಾತ್ರಿ|ಬೆಳಿಗ್ಗೆ|ಮಧ್ಯಾಹ್ನ|ಸಂಜೆ/,meridiemHour:function(e,t){return 12===e&&(e=0),"ರಾತ್ರಿ"===t?e<4?e:e+12:"ಬೆಳಿಗ್ಗೆ"===t?e:"ಮಧ್ಯಾಹ್ನ"===t?e>=10?e:e+12:"ಸಂಜೆ"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?"ರಾತ್ರಿ":e<10?"ಬೆಳಿಗ್ಗೆ":e<17?"ಮಧ್ಯಾಹ್ನ":e<20?"ಸಂಜೆ":"ರಾತ್ರಿ"},dayOfMonthOrdinalParse:/\d{1,2}(ನೇ)/,ordinal:function(e){return e+"ನೇ"},week:{dow:0,doy:6}});return i}))},"3f8c":function(e,t){e.exports={}},"408c":function(e,t,n){var i=n("2b3e"),r=function(){return i.Date.now()};e.exports=r},"423e":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e={1:"೧",2:"೨",3:"೩",4:"೪",5:"೫",6:"೬",7:"೭",8:"೮",9:"೯",0:"೦"},n={"೧":"1","೨":"2","೩":"3","೪":"4","೫":"5","೬":"6","೭":"7","೮":"8","೯":"9","೦":"0"},r=t.defineLocale("kn",{months:"ಜನವರಿ_ಫೆಬ್ರವರಿ_ಮಾರ್ಚ್_ಏಪ್ರಿಲ್_ಮೇ_ಜೂನ್_ಜುಲೈ_ಆಗಸ್ಟ್_ಸೆಪ್ಟೆಂಬರ್_ಅಕ್ಟೋಬರ್_ನವೆಂಬರ್_ಡಿಸೆಂಬರ್".split("_"),monthsShort:"ಜನ_ಫೆಬ್ರ_ಮಾರ್ಚ್_ಏಪ್ರಿಲ್_ಮೇ_ಜೂನ್_ಜುಲೈ_ಆಗಸ್ಟ್_ಸೆಪ್ಟೆಂ_ಅಕ್ಟೋ_ನವೆಂ_ಡಿಸೆಂ".split("_"),monthsParseExact:!0,weekdays:"ಭಾನುವಾರ_ಸೋಮವಾರ_ಮಂಗಳವಾರ_ಬುಧವಾರ_ಗುರುವಾರ_ಶುಕ್ರವಾರ_ಶನಿವಾರ".split("_"),weekdaysShort:"ಭಾನು_ಸೋಮ_ಮಂಗಳ_ಬುಧ_ಗುರು_ಶುಕ್ರ_ಶನಿ".split("_"),weekdaysMin:"ಭಾ_ಸೋ_ಮಂ_ಬು_ಗು_ಶು_ಶ".split("_"),longDateFormat:{LT:"A h:mm",LTS:"A h:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm",LLLL:"dddd, D MMMM YYYY, A h:mm"},calendar:{sameDay:"[ಇಂದು] LT",nextDay:"[ನಾಳೆ] LT",nextWeek:"dddd, LT",lastDay:"[ನಿನ್ನೆ] LT",lastWeek:"[ಕೊನೆಯ] dddd, LT",sameElse:"L"},relativeTime:{future:"%s ನಂತರ",past:"%s ಹಿಂದೆ",s:"ಕೆಲವು ಕ್ಷಣಗಳು",ss:"%d ಸೆಕೆಂಡುಗಳು",m:"ಒಂದು ನಿಮಿಷ",mm:"%d ನಿಮಿಷ",h:"ಒಂದು ಗಂಟೆ",hh:"%d ಗಂಟೆ",d:"ಒಂದು ದಿನ",dd:"%d ದಿನ",M:"ಒಂದು ತಿಂಗಳು",MM:"%d ತಿಂಗಳು",y:"ಒಂದು ವರ್ಷ",yy:"%d ವರ್ಷ"},preparse:function(t){return t.replace(/[೧೨೩೪೫೬೭೮೯೦]/g,(function(t){return n[t]}))},postformat:function(t){return t.replace(/\d/g,(function(t){return e[t]}))},meridiemParse:/ರಾತ್ರಿ|ಬೆಳಿಗ್ಗೆ|ಮಧ್ಯಾಹ್ನ|ಸಂಜೆ/,meridiemHour:function(t,e){return 12===t&&(t=0),"ರಾತ್ರಿ"===e?t<4?t:t+12:"ಬೆಳಿಗ್ಗೆ"===e?t:"ಮಧ್ಯಾಹ್ನ"===e?t>=10?t:t+12:"ಸಂಜೆ"===e?t+12:void 0},meridiem:function(t,e,n){return t<4?"ರಾತ್ರಿ":t<10?"ಬೆಳಿಗ್ಗೆ":t<17?"ಮಧ್ಯಾಹ್ನ":t<20?"ಸಂಜೆ":"ರಾತ್ರಿ"},dayOfMonthOrdinalParse:/\d{1,2}(ನೇ)/,ordinal:function(t){return t+"ನೇ"},week:{dow:0,doy:6}});return r}))},"3f8c":function(t,e){t.exports={}},"408c":function(t,e,n){var r=n("2b3e"),i=function(){return r.Date.now()};t.exports=i},"423e":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t=e.defineLocale("ar-kw",{months:"يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر".split("_"),monthsShort:"يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر".split("_"),weekdays:"الأحد_الإتنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"احد_اتنين_ثلاثاء_اربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[اليوم على الساعة] LT",nextDay:"[غدا على الساعة] LT",nextWeek:"dddd [على الساعة] LT",lastDay:"[أمس على الساعة] LT",lastWeek:"dddd [على الساعة] LT",sameElse:"L"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",ss:"%d ثانية",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"},week:{dow:0,doy:12}});return t}))},"428f":function(e,t,n){var i=n("da84");e.exports=i},4362:function(e,t,n){t.nextTick=function(e){var t=Array.prototype.slice.call(arguments);t.shift(),setTimeout((function(){e.apply(null,t)}),0)},t.platform=t.arch=t.execPath=t.title="browser",t.pid=1,t.browser=!0,t.env={},t.argv=[],t.binding=function(e){throw new Error("No such module. (Possibly not yet loaded)")},function(){var e,i="/";t.cwd=function(){return i},t.chdir=function(t){e||(e=n("df7c")),i=e.resolve(t,i)}}(),t.exit=t.kill=t.umask=t.dlopen=t.uptime=t.memoryUsage=t.uvCounters=function(){},t.features={}},"440c":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e=t.defineLocale("ar-kw",{months:"يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر".split("_"),monthsShort:"يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر".split("_"),weekdays:"الأحد_الإتنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"احد_اتنين_ثلاثاء_اربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[اليوم على الساعة] LT",nextDay:"[غدا على الساعة] LT",nextWeek:"dddd [على الساعة] LT",lastDay:"[أمس على الساعة] LT",lastWeek:"dddd [على الساعة] LT",sameElse:"L"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",ss:"%d ثانية",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"},week:{dow:0,doy:12}});return e}))},"428f":function(t,e,n){var r=n("da84");t.exports=r},4362:function(t,e,n){e.nextTick=function(t){var e=Array.prototype.slice.call(arguments);e.shift(),setTimeout((function(){t.apply(null,e)}),0)},e.platform=e.arch=e.execPath=e.title="browser",e.pid=1,e.browser=!0,e.env={},e.argv=[],e.binding=function(t){throw new Error("No such module. (Possibly not yet loaded)")},function(){var t,r="/";e.cwd=function(){return r},e.chdir=function(e){t||(t=n("df7c")),r=t.resolve(e,r)}}(),e.exit=e.kill=e.umask=e.dlopen=e.uptime=e.memoryUsage=e.uvCounters=function(){},e.features={}},"440c":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -function t(e,t,n,i){var r={m:["eng Minutt","enger Minutt"],h:["eng Stonn","enger Stonn"],d:["een Dag","engem Dag"],M:["ee Mount","engem Mount"],y:["ee Joer","engem Joer"]};return t?r[n][0]:r[n][1]}function n(e){var t=e.substr(0,e.indexOf(" "));return r(t)?"a "+e:"an "+e}function i(e){var t=e.substr(0,e.indexOf(" "));return r(t)?"viru "+e:"virun "+e}function r(e){if(e=parseInt(e,10),isNaN(e))return!1;if(e<0)return!0;if(e<10)return 4<=e&&e<=7;if(e<100){var t=e%10,n=e/10;return r(0===t?n:t)}if(e<1e4){while(e>=10)e/=10;return r(e)}return e/=1e3,r(e)}var o=e.defineLocale("lb",{months:"Januar_Februar_Mäerz_Abrëll_Mee_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jan._Febr._Mrz._Abr._Mee_Jun._Jul._Aug._Sept._Okt._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Sonndeg_Méindeg_Dënschdeg_Mëttwoch_Donneschdeg_Freideg_Samschdeg".split("_"),weekdaysShort:"So._Mé._Dë._Më._Do._Fr._Sa.".split("_"),weekdaysMin:"So_Mé_Dë_Më_Do_Fr_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm [Auer]",LTS:"H:mm:ss [Auer]",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm [Auer]",LLLL:"dddd, D. MMMM YYYY H:mm [Auer]"},calendar:{sameDay:"[Haut um] LT",sameElse:"L",nextDay:"[Muer um] LT",nextWeek:"dddd [um] LT",lastDay:"[Gëschter um] LT",lastWeek:function(){switch(this.day()){case 2:case 4:return"[Leschten] dddd [um] LT";default:return"[Leschte] dddd [um] LT"}}},relativeTime:{future:n,past:i,s:"e puer Sekonnen",ss:"%d Sekonnen",m:t,mm:"%d Minutten",h:t,hh:"%d Stonnen",d:t,dd:"%d Deeg",M:t,MM:"%d Méint",y:t,yy:"%d Joer"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return o}))},"44ad":function(e,t,n){var i=n("d039"),r=n("c6b6"),o="".split;e.exports=i((function(){return!Object("z").propertyIsEnumerable(0)}))?function(e){return"String"==r(e)?o.call(e,""):Object(e)}:Object},"44d2":function(e,t,n){var i=n("b622"),r=n("7c73"),o=n("9bf2"),a=i("unscopables"),s=Array.prototype;void 0==s[a]&&o.f(s,a,{configurable:!0,value:r(null)}),e.exports=function(e){s[a][e]=!0}},"44de":function(e,t,n){var i=n("da84");e.exports=function(e,t){var n=i.console;n&&n.error&&(1===arguments.length?n.error(e):n.error(e,t))}},"44e7":function(e,t,n){var i=n("861d"),r=n("c6b6"),o=n("b622"),a=o("match");e.exports=function(e){var t;return i(e)&&(void 0!==(t=e[a])?!!t:"RegExp"==r(e))}},"466d":function(e,t,n){"use strict";var i=n("d784"),r=n("825a"),o=n("50c4"),a=n("1d80"),s=n("8aa5"),c=n("14c3");i("match",1,(function(e,t,n){return[function(t){var n=a(this),i=void 0==t?void 0:t[e];return void 0!==i?i.call(t,n):new RegExp(t)[e](String(n))},function(e){var i=n(t,e,this);if(i.done)return i.value;var a=r(e),u=String(this);if(!a.global)return c(a,u);var d=a.unicode;a.lastIndex=0;var l,f=[],p=0;while(null!==(l=c(a,u))){var h=String(l[0]);f[p]=h,""===h&&(a.lastIndex=s(u,o(a.lastIndex),d)),p++}return 0===p?null:f}]}))},"467f":function(e,t,n){"use strict";var i=n("2d83");e.exports=function(e,t,n){var r=n.config.validateStatus;n.status&&r&&!r(n.status)?t(i("Request failed with status code "+n.status,n.config,null,n.request,n)):e(n)}},4840:function(e,t,n){var i=n("825a"),r=n("1c0b"),o=n("b622"),a=o("species");e.exports=function(e,t){var n,o=i(e).constructor;return void 0===o||void 0==(n=i(o)[a])?t:r(n)}},"485c":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +function e(t,e,n,r){var i={m:["eng Minutt","enger Minutt"],h:["eng Stonn","enger Stonn"],d:["een Dag","engem Dag"],M:["ee Mount","engem Mount"],y:["ee Joer","engem Joer"]};return e?i[n][0]:i[n][1]}function n(t){var e=t.substr(0,t.indexOf(" "));return i(e)?"a "+t:"an "+t}function r(t){var e=t.substr(0,t.indexOf(" "));return i(e)?"viru "+t:"virun "+t}function i(t){if(t=parseInt(t,10),isNaN(t))return!1;if(t<0)return!0;if(t<10)return 4<=t&&t<=7;if(t<100){var e=t%10,n=t/10;return i(0===e?n:e)}if(t<1e4){while(t>=10)t/=10;return i(t)}return t/=1e3,i(t)}var a=t.defineLocale("lb",{months:"Januar_Februar_Mäerz_Abrëll_Mee_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jan._Febr._Mrz._Abr._Mee_Jun._Jul._Aug._Sept._Okt._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Sonndeg_Méindeg_Dënschdeg_Mëttwoch_Donneschdeg_Freideg_Samschdeg".split("_"),weekdaysShort:"So._Mé._Dë._Më._Do._Fr._Sa.".split("_"),weekdaysMin:"So_Mé_Dë_Më_Do_Fr_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm [Auer]",LTS:"H:mm:ss [Auer]",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm [Auer]",LLLL:"dddd, D. MMMM YYYY H:mm [Auer]"},calendar:{sameDay:"[Haut um] LT",sameElse:"L",nextDay:"[Muer um] LT",nextWeek:"dddd [um] LT",lastDay:"[Gëschter um] LT",lastWeek:function(){switch(this.day()){case 2:case 4:return"[Leschten] dddd [um] LT";default:return"[Leschte] dddd [um] LT"}}},relativeTime:{future:n,past:r,s:"e puer Sekonnen",ss:"%d Sekonnen",m:e,mm:"%d Minutten",h:e,hh:"%d Stonnen",d:e,dd:"%d Deeg",M:e,MM:"%d Méint",y:e,yy:"%d Joer"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return a}))},"44ad":function(t,e,n){var r=n("d039"),i=n("c6b6"),a="".split;t.exports=r((function(){return!Object("z").propertyIsEnumerable(0)}))?function(t){return"String"==i(t)?a.call(t,""):Object(t)}:Object},"44d2":function(t,e,n){var r=n("b622"),i=n("7c73"),a=n("9bf2"),o=r("unscopables"),s=Array.prototype;void 0==s[o]&&a.f(s,o,{configurable:!0,value:i(null)}),t.exports=function(t){s[o][t]=!0}},"44de":function(t,e,n){var r=n("da84");t.exports=function(t,e){var n=r.console;n&&n.error&&(1===arguments.length?n.error(t):n.error(t,e))}},"44e7":function(t,e,n){var r=n("861d"),i=n("c6b6"),a=n("b622"),o=a("match");t.exports=function(t){var e;return r(t)&&(void 0!==(e=t[o])?!!e:"RegExp"==i(t))}},"466d":function(t,e,n){"use strict";var r=n("d784"),i=n("825a"),a=n("50c4"),o=n("1d80"),s=n("8aa5"),c=n("14c3");r("match",1,(function(t,e,n){return[function(e){var n=o(this),r=void 0==e?void 0:e[t];return void 0!==r?r.call(e,n):new RegExp(e)[t](String(n))},function(t){var r=n(e,t,this);if(r.done)return r.value;var o=i(t),u=String(this);if(!o.global)return c(o,u);var l=o.unicode;o.lastIndex=0;var d,f=[],h=0;while(null!==(d=c(o,u))){var p=String(d[0]);f[h]=p,""===p&&(o.lastIndex=s(u,a(o.lastIndex),l)),h++}return 0===h?null:f}]}))},"467f":function(t,e,n){"use strict";var r=n("2d83");t.exports=function(t,e,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?e(r("Request failed with status code "+n.status,n.config,null,n.request,n)):t(n)}},4840:function(t,e,n){var r=n("825a"),i=n("1c0b"),a=n("b622"),o=a("species");t.exports=function(t,e){var n,a=r(t).constructor;return void 0===a||void 0==(n=r(a)[o])?e:i(n)}},"485c":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t={1:"-inci",5:"-inci",8:"-inci",70:"-inci",80:"-inci",2:"-nci",7:"-nci",20:"-nci",50:"-nci",3:"-üncü",4:"-üncü",100:"-üncü",6:"-ncı",9:"-uncu",10:"-uncu",30:"-uncu",60:"-ıncı",90:"-ıncı"},n=e.defineLocale("az",{months:"yanvar_fevral_mart_aprel_may_iyun_iyul_avqust_sentyabr_oktyabr_noyabr_dekabr".split("_"),monthsShort:"yan_fev_mar_apr_may_iyn_iyl_avq_sen_okt_noy_dek".split("_"),weekdays:"Bazar_Bazar ertəsi_Çərşənbə axşamı_Çərşənbə_Cümə axşamı_Cümə_Şənbə".split("_"),weekdaysShort:"Baz_BzE_ÇAx_Çər_CAx_Cüm_Şən".split("_"),weekdaysMin:"Bz_BE_ÇA_Çə_CA_Cü_Şə".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[bugün saat] LT",nextDay:"[sabah saat] LT",nextWeek:"[gələn həftə] dddd [saat] LT",lastDay:"[dünən] LT",lastWeek:"[keçən həftə] dddd [saat] LT",sameElse:"L"},relativeTime:{future:"%s sonra",past:"%s əvvəl",s:"bir neçə saniyə",ss:"%d saniyə",m:"bir dəqiqə",mm:"%d dəqiqə",h:"bir saat",hh:"%d saat",d:"bir gün",dd:"%d gün",M:"bir ay",MM:"%d ay",y:"bir il",yy:"%d il"},meridiemParse:/gecə|səhər|gündüz|axşam/,isPM:function(e){return/^(gündüz|axşam)$/.test(e)},meridiem:function(e,t,n){return e<4?"gecə":e<12?"səhər":e<17?"gündüz":"axşam"},dayOfMonthOrdinalParse:/\d{1,2}-(ıncı|inci|nci|üncü|ncı|uncu)/,ordinal:function(e){if(0===e)return e+"-ıncı";var n=e%10,i=e%100-n,r=e>=100?100:null;return e+(t[n]||t[i]||t[r])},week:{dow:1,doy:7}});return n}))},4930:function(e,t,n){var i=n("2d00"),r=n("d039");e.exports=!!Object.getOwnPropertySymbols&&!r((function(){var e=Symbol();return!String(e)||!(Object(e)instanceof Symbol)||!Symbol.sham&&i&&i<41}))},"493b":function(e,t,n){"use strict";n.d(t,"a",(function(){return r}));var i=n("8c4e"),r=Object(i["a"])("$attrs","bvAttrs")},"49ab":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e={1:"-inci",5:"-inci",8:"-inci",70:"-inci",80:"-inci",2:"-nci",7:"-nci",20:"-nci",50:"-nci",3:"-üncü",4:"-üncü",100:"-üncü",6:"-ncı",9:"-uncu",10:"-uncu",30:"-uncu",60:"-ıncı",90:"-ıncı"},n=t.defineLocale("az",{months:"yanvar_fevral_mart_aprel_may_iyun_iyul_avqust_sentyabr_oktyabr_noyabr_dekabr".split("_"),monthsShort:"yan_fev_mar_apr_may_iyn_iyl_avq_sen_okt_noy_dek".split("_"),weekdays:"Bazar_Bazar ertəsi_Çərşənbə axşamı_Çərşənbə_Cümə axşamı_Cümə_Şənbə".split("_"),weekdaysShort:"Baz_BzE_ÇAx_Çər_CAx_Cüm_Şən".split("_"),weekdaysMin:"Bz_BE_ÇA_Çə_CA_Cü_Şə".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[bugün saat] LT",nextDay:"[sabah saat] LT",nextWeek:"[gələn həftə] dddd [saat] LT",lastDay:"[dünən] LT",lastWeek:"[keçən həftə] dddd [saat] LT",sameElse:"L"},relativeTime:{future:"%s sonra",past:"%s əvvəl",s:"bir neçə saniyə",ss:"%d saniyə",m:"bir dəqiqə",mm:"%d dəqiqə",h:"bir saat",hh:"%d saat",d:"bir gün",dd:"%d gün",M:"bir ay",MM:"%d ay",y:"bir il",yy:"%d il"},meridiemParse:/gecə|səhər|gündüz|axşam/,isPM:function(t){return/^(gündüz|axşam)$/.test(t)},meridiem:function(t,e,n){return t<4?"gecə":t<12?"səhər":t<17?"gündüz":"axşam"},dayOfMonthOrdinalParse:/\d{1,2}-(ıncı|inci|nci|üncü|ncı|uncu)/,ordinal:function(t){if(0===t)return t+"-ıncı";var n=t%10,r=t%100-n,i=t>=100?100:null;return t+(e[n]||e[r]||e[i])},week:{dow:1,doy:7}});return n}))},4930:function(t,e,n){var r=n("605d"),i=n("2d00"),a=n("d039");t.exports=!!Object.getOwnPropertySymbols&&!a((function(){return!Symbol.sham&&(r?38===i:i>37&&i<41)}))},"493b":function(t,e,n){"use strict";n.d(e,"a",(function(){return i}));var r=n("8c4e"),i=Object(r["a"])("$attrs","bvAttrs")},"49ab":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t=e.defineLocale("zh-hk",{months:"一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月".split("_"),monthsShort:"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),weekdays:"星期日_星期一_星期二_星期三_星期四_星期五_星期六".split("_"),weekdaysShort:"週日_週一_週二_週三_週四_週五_週六".split("_"),weekdaysMin:"日_一_二_三_四_五_六".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY/MM/DD",LL:"YYYY年M月D日",LLL:"YYYY年M月D日 HH:mm",LLLL:"YYYY年M月D日dddd HH:mm",l:"YYYY/M/D",ll:"YYYY年M月D日",lll:"YYYY年M月D日 HH:mm",llll:"YYYY年M月D日dddd HH:mm"},meridiemParse:/凌晨|早上|上午|中午|下午|晚上/,meridiemHour:function(e,t){return 12===e&&(e=0),"凌晨"===t||"早上"===t||"上午"===t?e:"中午"===t?e>=11?e:e+12:"下午"===t||"晚上"===t?e+12:void 0},meridiem:function(e,t,n){var i=100*e+t;return i<600?"凌晨":i<900?"早上":i<1200?"上午":1200===i?"中午":i<1800?"下午":"晚上"},calendar:{sameDay:"[今天]LT",nextDay:"[明天]LT",nextWeek:"[下]ddddLT",lastDay:"[昨天]LT",lastWeek:"[上]ddddLT",sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}(日|月|週)/,ordinal:function(e,t){switch(t){case"d":case"D":case"DDD":return e+"日";case"M":return e+"月";case"w":case"W":return e+"週";default:return e}},relativeTime:{future:"%s後",past:"%s前",s:"幾秒",ss:"%d 秒",m:"1 分鐘",mm:"%d 分鐘",h:"1 小時",hh:"%d 小時",d:"1 天",dd:"%d 天",M:"1 個月",MM:"%d 個月",y:"1 年",yy:"%d 年"}});return t}))},"4a38":function(e,t,n){"use strict";n.d(t,"f",(function(){return p})),n.d(t,"d",(function(){return h})),n.d(t,"e",(function(){return m})),n.d(t,"c",(function(){return b})),n.d(t,"b",(function(){return g})),n.d(t,"a",(function(){return v}));var i=n("992e"),r=n("906c"),o=n("7b1e"),a=n("d82f"),s=n("fa73"),c="a",u=function(e){return"%"+e.charCodeAt(0).toString(16)},d=function(e){return encodeURIComponent(Object(s["g"])(e)).replace(i["j"],u).replace(i["i"],",")},l=decodeURIComponent,f=function(e){if(!Object(o["k"])(e))return"";var t=Object(a["h"])(e).map((function(t){var n=e[t];return Object(o["o"])(n)?"":Object(o["g"])(n)?d(t):Object(o["a"])(n)?n.reduce((function(e,n){return Object(o["g"])(n)?e.push(d(t)):Object(o["o"])(n)||e.push(d(t)+"="+d(n)),e}),[]).join("&"):d(t)+"="+d(n)})).filter((function(e){return e.length>0})).join("&");return t?"?".concat(t):""},p=function(e){var t={};return e=Object(s["g"])(e).trim().replace(i["u"],""),e?(e.split("&").forEach((function(e){var n=e.replace(i["t"]," ").split("="),r=l(n.shift()),a=n.length>0?l(n.join("=")):null;Object(o["o"])(t[r])?t[r]=a:Object(o["a"])(t[r])?t[r].push(a):t[r]=[t[r],a]})),t):t},h=function(e){return!(!e.href&&!e.to)},m=function(e){return!(!e||Object(r["t"])(e,"a"))},b=function(e,t){var n=e.to,i=e.disabled,r=e.routerComponentName,o=!!t.$router;return!o||o&&(i||!n)?c:r||(t.$nuxt?"nuxt-link":"router-link")},g=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.target,n=e.rel;return"_blank"===t&&Object(o["g"])(n)?"noopener":n||null},v=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.href,n=e.to,i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:c,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"#",a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"/";if(t)return t;if(m(i))return null;if(Object(o["n"])(n))return n||a;if(Object(o["k"])(n)&&(n.path||n.query||n.hash)){var u=Object(s["g"])(n.path),d=f(n.query),l=Object(s["g"])(n.hash);return l=l&&"#"!==l.charAt(0)?"#".concat(l):l,"".concat(u).concat(d).concat(l)||a}return r}},"4a7b":function(e,t,n){"use strict";var i=n("c532");e.exports=function(e,t){t=t||{};var n={},r=["url","method","data"],o=["headers","auth","proxy","params"],a=["baseURL","transformRequest","transformResponse","paramsSerializer","timeout","timeoutMessage","withCredentials","adapter","responseType","xsrfCookieName","xsrfHeaderName","onUploadProgress","onDownloadProgress","decompress","maxContentLength","maxBodyLength","maxRedirects","transport","httpAgent","httpsAgent","cancelToken","socketPath","responseEncoding"],s=["validateStatus"];function c(e,t){return i.isPlainObject(e)&&i.isPlainObject(t)?i.merge(e,t):i.isPlainObject(t)?i.merge({},t):i.isArray(t)?t.slice():t}function u(r){i.isUndefined(t[r])?i.isUndefined(e[r])||(n[r]=c(void 0,e[r])):n[r]=c(e[r],t[r])}i.forEach(r,(function(e){i.isUndefined(t[e])||(n[e]=c(void 0,t[e]))})),i.forEach(o,u),i.forEach(a,(function(r){i.isUndefined(t[r])?i.isUndefined(e[r])||(n[r]=c(void 0,e[r])):n[r]=c(void 0,t[r])})),i.forEach(s,(function(i){i in t?n[i]=c(e[i],t[i]):i in e&&(n[i]=c(void 0,e[i]))}));var d=r.concat(o).concat(a).concat(s),l=Object.keys(e).concat(Object.keys(t)).filter((function(e){return-1===d.indexOf(e)}));return i.forEach(l,u),n}},"4ba9":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e=t.defineLocale("zh-hk",{months:"一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月".split("_"),monthsShort:"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),weekdays:"星期日_星期一_星期二_星期三_星期四_星期五_星期六".split("_"),weekdaysShort:"週日_週一_週二_週三_週四_週五_週六".split("_"),weekdaysMin:"日_一_二_三_四_五_六".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY/MM/DD",LL:"YYYY年M月D日",LLL:"YYYY年M月D日 HH:mm",LLLL:"YYYY年M月D日dddd HH:mm",l:"YYYY/M/D",ll:"YYYY年M月D日",lll:"YYYY年M月D日 HH:mm",llll:"YYYY年M月D日dddd HH:mm"},meridiemParse:/凌晨|早上|上午|中午|下午|晚上/,meridiemHour:function(t,e){return 12===t&&(t=0),"凌晨"===e||"早上"===e||"上午"===e?t:"中午"===e?t>=11?t:t+12:"下午"===e||"晚上"===e?t+12:void 0},meridiem:function(t,e,n){var r=100*t+e;return r<600?"凌晨":r<900?"早上":r<1200?"上午":1200===r?"中午":r<1800?"下午":"晚上"},calendar:{sameDay:"[今天]LT",nextDay:"[明天]LT",nextWeek:"[下]ddddLT",lastDay:"[昨天]LT",lastWeek:"[上]ddddLT",sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}(日|月|週)/,ordinal:function(t,e){switch(e){case"d":case"D":case"DDD":return t+"日";case"M":return t+"月";case"w":case"W":return t+"週";default:return t}},relativeTime:{future:"%s後",past:"%s前",s:"幾秒",ss:"%d 秒",m:"1 分鐘",mm:"%d 分鐘",h:"1 小時",hh:"%d 小時",d:"1 天",dd:"%d 天",M:"1 個月",MM:"%d 個月",y:"1 年",yy:"%d 年"}});return e}))},"4a38":function(t,e,n){"use strict";n.d(e,"f",(function(){return h})),n.d(e,"d",(function(){return p})),n.d(e,"e",(function(){return m})),n.d(e,"c",(function(){return b})),n.d(e,"b",(function(){return v})),n.d(e,"a",(function(){return _}));var r=n("992e"),i=n("906c"),a=n("7b1e"),o=n("d82f"),s=n("fa73"),c="a",u=function(t){return"%"+t.charCodeAt(0).toString(16)},l=function(t){return encodeURIComponent(Object(s["g"])(t)).replace(r["j"],u).replace(r["i"],",")},d=decodeURIComponent,f=function(t){if(!Object(a["k"])(t))return"";var e=Object(o["h"])(t).map((function(e){var n=t[e];return Object(a["o"])(n)?"":Object(a["g"])(n)?l(e):Object(a["a"])(n)?n.reduce((function(t,n){return Object(a["g"])(n)?t.push(l(e)):Object(a["o"])(n)||t.push(l(e)+"="+l(n)),t}),[]).join("&"):l(e)+"="+l(n)})).filter((function(t){return t.length>0})).join("&");return e?"?".concat(e):""},h=function(t){var e={};return t=Object(s["g"])(t).trim().replace(r["u"],""),t?(t.split("&").forEach((function(t){var n=t.replace(r["t"]," ").split("="),i=d(n.shift()),o=n.length>0?d(n.join("=")):null;Object(a["o"])(e[i])?e[i]=o:Object(a["a"])(e[i])?e[i].push(o):e[i]=[e[i],o]})),e):e},p=function(t){return!(!t.href&&!t.to)},m=function(t){return!(!t||Object(i["t"])(t,"a"))},b=function(t,e){var n=t.to,r=t.disabled,i=t.routerComponentName,a=!!e.$router;return!a||a&&(r||!n)?c:i||(e.$nuxt?"nuxt-link":"router-link")},v=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=t.target,n=t.rel;return"_blank"===e&&Object(a["g"])(n)?"noopener":n||null},_=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=t.href,n=t.to,r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:c,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"#",o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"/";if(e)return e;if(m(r))return null;if(Object(a["n"])(n))return n||o;if(Object(a["k"])(n)&&(n.path||n.query||n.hash)){var u=Object(s["g"])(n.path),l=f(n.query),d=Object(s["g"])(n.hash);return d=d&&"#"!==d.charAt(0)?"#".concat(d):d,"".concat(u).concat(l).concat(d)||o}return i}},"4a7b":function(t,e,n){"use strict";var r=n("c532");t.exports=function(t,e){e=e||{};var n={},i=["url","method","data"],a=["headers","auth","proxy","params"],o=["baseURL","transformRequest","transformResponse","paramsSerializer","timeout","timeoutMessage","withCredentials","adapter","responseType","xsrfCookieName","xsrfHeaderName","onUploadProgress","onDownloadProgress","decompress","maxContentLength","maxBodyLength","maxRedirects","transport","httpAgent","httpsAgent","cancelToken","socketPath","responseEncoding"],s=["validateStatus"];function c(t,e){return r.isPlainObject(t)&&r.isPlainObject(e)?r.merge(t,e):r.isPlainObject(e)?r.merge({},e):r.isArray(e)?e.slice():e}function u(i){r.isUndefined(e[i])?r.isUndefined(t[i])||(n[i]=c(void 0,t[i])):n[i]=c(t[i],e[i])}r.forEach(i,(function(t){r.isUndefined(e[t])||(n[t]=c(void 0,e[t]))})),r.forEach(a,u),r.forEach(o,(function(i){r.isUndefined(e[i])?r.isUndefined(t[i])||(n[i]=c(void 0,t[i])):n[i]=c(void 0,e[i])})),r.forEach(s,(function(r){r in e?n[r]=c(t[r],e[r]):r in t&&(n[r]=c(void 0,t[r]))}));var l=i.concat(a).concat(o).concat(s),d=Object.keys(t).concat(Object.keys(e)).filter((function(t){return-1===l.indexOf(t)}));return r.forEach(d,u),n}},"4ba9":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -function t(e,t,n){var i=e+" ";switch(n){case"ss":return i+=1===e?"sekunda":2===e||3===e||4===e?"sekunde":"sekundi",i;case"m":return t?"jedna minuta":"jedne minute";case"mm":return i+=1===e?"minuta":2===e||3===e||4===e?"minute":"minuta",i;case"h":return t?"jedan sat":"jednog sata";case"hh":return i+=1===e?"sat":2===e||3===e||4===e?"sata":"sati",i;case"dd":return i+=1===e?"dan":"dana",i;case"MM":return i+=1===e?"mjesec":2===e||3===e||4===e?"mjeseca":"mjeseci",i;case"yy":return i+=1===e?"godina":2===e||3===e||4===e?"godine":"godina",i}}var n=e.defineLocale("hr",{months:{format:"siječnja_veljače_ožujka_travnja_svibnja_lipnja_srpnja_kolovoza_rujna_listopada_studenoga_prosinca".split("_"),standalone:"siječanj_veljača_ožujak_travanj_svibanj_lipanj_srpanj_kolovoz_rujan_listopad_studeni_prosinac".split("_")},monthsShort:"sij._velj._ožu._tra._svi._lip._srp._kol._ruj._lis._stu._pro.".split("_"),monthsParseExact:!0,weekdays:"nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota".split("_"),weekdaysShort:"ned._pon._uto._sri._čet._pet._sub.".split("_"),weekdaysMin:"ne_po_ut_sr_če_pe_su".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"Do MMMM YYYY",LLL:"Do MMMM YYYY H:mm",LLLL:"dddd, Do MMMM YYYY H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedjelju] [u] LT";case 3:return"[u] [srijedu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[jučer u] LT",lastWeek:function(){switch(this.day()){case 0:return"[prošlu] [nedjelju] [u] LT";case 3:return"[prošlu] [srijedu] [u] LT";case 6:return"[prošle] [subote] [u] LT";case 1:case 2:case 4:case 5:return"[prošli] dddd [u] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"prije %s",s:"par sekundi",ss:t,m:t,mm:t,h:t,hh:t,d:"dan",dd:t,M:"mjesec",MM:t,y:"godinu",yy:t},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}});return n}))},"4cef":function(e,t){var n=/\s/;function i(e){var t=e.length;while(t--&&n.test(e.charAt(t)));return t}e.exports=i},"4d64":function(e,t,n){var i=n("fc6a"),r=n("50c4"),o=n("23cb"),a=function(e){return function(t,n,a){var s,c=i(t),u=r(c.length),d=o(a,u);if(e&&n!=n){while(u>d)if(s=c[d++],s!=s)return!0}else for(;u>d;d++)if((e||d in c)&&c[d]===n)return e||d||0;return!e&&-1}};e.exports={includes:a(!0),indexOf:a(!1)}},"4de4":function(e,t,n){"use strict";var i=n("23e7"),r=n("b727").filter,o=n("1dde"),a=o("filter");i({target:"Array",proto:!0,forced:!a},{filter:function(e){return r(this,e,arguments.length>1?arguments[1]:void 0)}})},"4df4":function(e,t,n){"use strict";var i=n("0366"),r=n("7b0b"),o=n("9bdd"),a=n("e95a"),s=n("50c4"),c=n("8418"),u=n("35a1");e.exports=function(e){var t,n,d,l,f,p,h=r(e),m="function"==typeof this?this:Array,b=arguments.length,g=b>1?arguments[1]:void 0,v=void 0!==g,y=u(h),_=0;if(v&&(g=i(g,b>2?arguments[2]:void 0,2)),void 0==y||m==Array&&a(y))for(t=s(h.length),n=new m(t);t>_;_++)p=v?g(h[_],_):h[_],c(n,_,p);else for(l=y.call(h),f=l.next,n=new m;!(d=f.call(l)).done;_++)p=v?o(l,g,[d.value,_],!0):d.value,c(n,_,p);return n.length=_,n}},5038:function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +function e(t,e,n){var r=t+" ";switch(n){case"ss":return r+=1===t?"sekunda":2===t||3===t||4===t?"sekunde":"sekundi",r;case"m":return e?"jedna minuta":"jedne minute";case"mm":return r+=1===t?"minuta":2===t||3===t||4===t?"minute":"minuta",r;case"h":return e?"jedan sat":"jednog sata";case"hh":return r+=1===t?"sat":2===t||3===t||4===t?"sata":"sati",r;case"dd":return r+=1===t?"dan":"dana",r;case"MM":return r+=1===t?"mjesec":2===t||3===t||4===t?"mjeseca":"mjeseci",r;case"yy":return r+=1===t?"godina":2===t||3===t||4===t?"godine":"godina",r}}var n=t.defineLocale("hr",{months:{format:"siječnja_veljače_ožujka_travnja_svibnja_lipnja_srpnja_kolovoza_rujna_listopada_studenoga_prosinca".split("_"),standalone:"siječanj_veljača_ožujak_travanj_svibanj_lipanj_srpanj_kolovoz_rujan_listopad_studeni_prosinac".split("_")},monthsShort:"sij._velj._ožu._tra._svi._lip._srp._kol._ruj._lis._stu._pro.".split("_"),monthsParseExact:!0,weekdays:"nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota".split("_"),weekdaysShort:"ned._pon._uto._sri._čet._pet._sub.".split("_"),weekdaysMin:"ne_po_ut_sr_če_pe_su".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"Do MMMM YYYY",LLL:"Do MMMM YYYY H:mm",LLLL:"dddd, Do MMMM YYYY H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedjelju] [u] LT";case 3:return"[u] [srijedu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[jučer u] LT",lastWeek:function(){switch(this.day()){case 0:return"[prošlu] [nedjelju] [u] LT";case 3:return"[prošlu] [srijedu] [u] LT";case 6:return"[prošle] [subote] [u] LT";case 1:case 2:case 4:case 5:return"[prošli] dddd [u] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"prije %s",s:"par sekundi",ss:e,m:e,mm:e,h:e,hh:e,d:"dan",dd:e,M:"mjesec",MM:e,y:"godinu",yy:e},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}});return n}))},"4cef":function(t,e){var n=/\s/;function r(t){var e=t.length;while(e--&&n.test(t.charAt(e)));return e}t.exports=r},"4d64":function(t,e,n){var r=n("fc6a"),i=n("50c4"),a=n("23cb"),o=function(t){return function(e,n,o){var s,c=r(e),u=i(c.length),l=a(o,u);if(t&&n!=n){while(u>l)if(s=c[l++],s!=s)return!0}else for(;u>l;l++)if((t||l in c)&&c[l]===n)return t||l||0;return!t&&-1}};t.exports={includes:o(!0),indexOf:o(!1)}},"4de4":function(t,e,n){"use strict";var r=n("23e7"),i=n("b727").filter,a=n("1dde"),o=a("filter");r({target:"Array",proto:!0,forced:!o},{filter:function(t){return i(this,t,arguments.length>1?arguments[1]:void 0)}})},"4df4":function(t,e,n){"use strict";var r=n("0366"),i=n("7b0b"),a=n("9bdd"),o=n("e95a"),s=n("50c4"),c=n("8418"),u=n("35a1");t.exports=function(t){var e,n,l,d,f,h,p=i(t),m="function"==typeof this?this:Array,b=arguments.length,v=b>1?arguments[1]:void 0,_=void 0!==v,g=u(p),y=0;if(_&&(v=r(v,b>2?arguments[2]:void 0,2)),void 0==g||m==Array&&o(g))for(e=s(p.length),n=new m(e);e>y;y++)h=_?v(p[y],y):p[y],c(n,y,h);else for(d=g.call(p),f=d.next,n=new m;!(l=f.call(d)).done;y++)h=_?a(d,v,[l.value,y],!0):l.value,c(n,y,h);return n.length=y,n}},5038:function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t=e.defineLocale("id",{months:"Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_November_Desember".split("_"),monthsShort:"Jan_Feb_Mar_Apr_Mei_Jun_Jul_Agt_Sep_Okt_Nov_Des".split("_"),weekdays:"Minggu_Senin_Selasa_Rabu_Kamis_Jumat_Sabtu".split("_"),weekdaysShort:"Min_Sen_Sel_Rab_Kam_Jum_Sab".split("_"),weekdaysMin:"Mg_Sn_Sl_Rb_Km_Jm_Sb".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] HH.mm",LLLL:"dddd, D MMMM YYYY [pukul] HH.mm"},meridiemParse:/pagi|siang|sore|malam/,meridiemHour:function(e,t){return 12===e&&(e=0),"pagi"===t?e:"siang"===t?e>=11?e:e+12:"sore"===t||"malam"===t?e+12:void 0},meridiem:function(e,t,n){return e<11?"pagi":e<15?"siang":e<19?"sore":"malam"},calendar:{sameDay:"[Hari ini pukul] LT",nextDay:"[Besok pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kemarin pukul] LT",lastWeek:"dddd [lalu pukul] LT",sameElse:"L"},relativeTime:{future:"dalam %s",past:"%s yang lalu",s:"beberapa detik",ss:"%d detik",m:"semenit",mm:"%d menit",h:"sejam",hh:"%d jam",d:"sehari",dd:"%d hari",M:"sebulan",MM:"%d bulan",y:"setahun",yy:"%d tahun"},week:{dow:0,doy:6}});return t}))},"50c4":function(e,t,n){var i=n("a691"),r=Math.min;e.exports=function(e){return e>0?r(i(e),9007199254740991):0}},"50d3":function(e,t,n){"use strict";n.d(t,"b",(function(){return i})),n.d(t,"c",(function(){return r})),n.d(t,"a",(function(){return o}));var i="BvConfig",r="$bvConfig",o=["xs","sm","md","lg","xl"]},5120:function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e=t.defineLocale("id",{months:"Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_November_Desember".split("_"),monthsShort:"Jan_Feb_Mar_Apr_Mei_Jun_Jul_Agt_Sep_Okt_Nov_Des".split("_"),weekdays:"Minggu_Senin_Selasa_Rabu_Kamis_Jumat_Sabtu".split("_"),weekdaysShort:"Min_Sen_Sel_Rab_Kam_Jum_Sab".split("_"),weekdaysMin:"Mg_Sn_Sl_Rb_Km_Jm_Sb".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] HH.mm",LLLL:"dddd, D MMMM YYYY [pukul] HH.mm"},meridiemParse:/pagi|siang|sore|malam/,meridiemHour:function(t,e){return 12===t&&(t=0),"pagi"===e?t:"siang"===e?t>=11?t:t+12:"sore"===e||"malam"===e?t+12:void 0},meridiem:function(t,e,n){return t<11?"pagi":t<15?"siang":t<19?"sore":"malam"},calendar:{sameDay:"[Hari ini pukul] LT",nextDay:"[Besok pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kemarin pukul] LT",lastWeek:"dddd [lalu pukul] LT",sameElse:"L"},relativeTime:{future:"dalam %s",past:"%s yang lalu",s:"beberapa detik",ss:"%d detik",m:"semenit",mm:"%d menit",h:"sejam",hh:"%d jam",d:"sehari",dd:"%d hari",M:"sebulan",MM:"%d bulan",y:"setahun",yy:"%d tahun"},week:{dow:0,doy:6}});return e}))},"50c4":function(t,e,n){var r=n("a691"),i=Math.min;t.exports=function(t){return t>0?i(r(t),9007199254740991):0}},"50d3":function(t,e,n){"use strict";n.d(e,"b",(function(){return r})),n.d(e,"c",(function(){return i})),n.d(e,"a",(function(){return a}));var r="BvConfig",i="$bvConfig",a=["xs","sm","md","lg","xl"]},5120:function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t=["Eanáir","Feabhra","Márta","Aibreán","Bealtaine","Meitheamh","Iúil","Lúnasa","Meán Fómhair","Deireadh Fómhair","Samhain","Nollaig"],n=["Ean","Feabh","Márt","Aib","Beal","Meith","Iúil","Lún","M.F.","D.F.","Samh","Noll"],i=["Dé Domhnaigh","Dé Luain","Dé Máirt","Dé Céadaoin","Déardaoin","Dé hAoine","Dé Sathairn"],r=["Domh","Luan","Máirt","Céad","Déar","Aoine","Sath"],o=["Do","Lu","Má","Cé","Dé","A","Sa"],a=e.defineLocale("ga",{months:t,monthsShort:n,monthsParseExact:!0,weekdays:i,weekdaysShort:r,weekdaysMin:o,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Inniu ag] LT",nextDay:"[Amárach ag] LT",nextWeek:"dddd [ag] LT",lastDay:"[Inné ag] LT",lastWeek:"dddd [seo caite] [ag] LT",sameElse:"L"},relativeTime:{future:"i %s",past:"%s ó shin",s:"cúpla soicind",ss:"%d soicind",m:"nóiméad",mm:"%d nóiméad",h:"uair an chloig",hh:"%d uair an chloig",d:"lá",dd:"%d lá",M:"mí",MM:"%d míonna",y:"bliain",yy:"%d bliain"},dayOfMonthOrdinalParse:/\d{1,2}(d|na|mh)/,ordinal:function(e){var t=1===e?"d":e%10===2?"na":"mh";return e+t},week:{dow:1,doy:4}});return a}))},5135:function(e,t,n){var i=n("7b0b"),r={}.hasOwnProperty;e.exports=Object.hasOwn||function(e,t){return r.call(i(e),t)}},5270:function(e,t,n){"use strict";var i=n("c532"),r=n("c401"),o=n("2e67"),a=n("2444");function s(e){e.cancelToken&&e.cancelToken.throwIfRequested()}e.exports=function(e){s(e),e.headers=e.headers||{},e.data=r(e.data,e.headers,e.transformRequest),e.headers=i.merge(e.headers.common||{},e.headers[e.method]||{},e.headers),i.forEach(["delete","get","head","post","put","patch","common"],(function(t){delete e.headers[t]}));var t=e.adapter||a.adapter;return t(e).then((function(t){return s(e),t.data=r(t.data,t.headers,e.transformResponse),t}),(function(t){return o(t)||(s(e),t&&t.response&&(t.response.data=r(t.response.data,t.response.headers,e.transformResponse))),Promise.reject(t)}))}},5294:function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e=["Eanáir","Feabhra","Márta","Aibreán","Bealtaine","Meitheamh","Iúil","Lúnasa","Meán Fómhair","Deireadh Fómhair","Samhain","Nollaig"],n=["Ean","Feabh","Márt","Aib","Beal","Meith","Iúil","Lún","M.F.","D.F.","Samh","Noll"],r=["Dé Domhnaigh","Dé Luain","Dé Máirt","Dé Céadaoin","Déardaoin","Dé hAoine","Dé Sathairn"],i=["Domh","Luan","Máirt","Céad","Déar","Aoine","Sath"],a=["Do","Lu","Má","Cé","Dé","A","Sa"],o=t.defineLocale("ga",{months:e,monthsShort:n,monthsParseExact:!0,weekdays:r,weekdaysShort:i,weekdaysMin:a,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Inniu ag] LT",nextDay:"[Amárach ag] LT",nextWeek:"dddd [ag] LT",lastDay:"[Inné ag] LT",lastWeek:"dddd [seo caite] [ag] LT",sameElse:"L"},relativeTime:{future:"i %s",past:"%s ó shin",s:"cúpla soicind",ss:"%d soicind",m:"nóiméad",mm:"%d nóiméad",h:"uair an chloig",hh:"%d uair an chloig",d:"lá",dd:"%d lá",M:"mí",MM:"%d míonna",y:"bliain",yy:"%d bliain"},dayOfMonthOrdinalParse:/\d{1,2}(d|na|mh)/,ordinal:function(t){var e=1===t?"d":t%10===2?"na":"mh";return t+e},week:{dow:1,doy:4}});return o}))},5135:function(t,e,n){var r=n("7b0b"),i={}.hasOwnProperty;t.exports=function(t,e){return i.call(r(t),e)}},5270:function(t,e,n){"use strict";var r=n("c532"),i=n("c401"),a=n("2e67"),o=n("2444");function s(t){t.cancelToken&&t.cancelToken.throwIfRequested()}t.exports=function(t){s(t),t.headers=t.headers||{},t.data=i(t.data,t.headers,t.transformRequest),t.headers=r.merge(t.headers.common||{},t.headers[t.method]||{},t.headers),r.forEach(["delete","get","head","post","put","patch","common"],(function(e){delete t.headers[e]}));var e=t.adapter||o.adapter;return e(t).then((function(e){return s(t),e.data=i(e.data,e.headers,t.transformResponse),e}),(function(e){return a(e)||(s(t),e&&e.response&&(e.response.data=i(e.response.data,e.response.headers,t.transformResponse))),Promise.reject(e)}))}},5294:function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t=["جنوری","فروری","مارچ","اپریل","مئی","جون","جولائی","اگست","ستمبر","اکتوبر","نومبر","دسمبر"],n=["اتوار","پیر","منگل","بدھ","جمعرات","جمعہ","ہفتہ"],i=e.defineLocale("ur",{months:t,monthsShort:t,weekdays:n,weekdaysShort:n,weekdaysMin:n,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd، D MMMM YYYY HH:mm"},meridiemParse:/صبح|شام/,isPM:function(e){return"شام"===e},meridiem:function(e,t,n){return e<12?"صبح":"شام"},calendar:{sameDay:"[آج بوقت] LT",nextDay:"[کل بوقت] LT",nextWeek:"dddd [بوقت] LT",lastDay:"[گذشتہ روز بوقت] LT",lastWeek:"[گذشتہ] dddd [بوقت] LT",sameElse:"L"},relativeTime:{future:"%s بعد",past:"%s قبل",s:"چند سیکنڈ",ss:"%d سیکنڈ",m:"ایک منٹ",mm:"%d منٹ",h:"ایک گھنٹہ",hh:"%d گھنٹے",d:"ایک دن",dd:"%d دن",M:"ایک ماہ",MM:"%d ماہ",y:"ایک سال",yy:"%d سال"},preparse:function(e){return e.replace(/،/g,",")},postformat:function(e){return e.replace(/,/g,"،")},week:{dow:1,doy:4}});return i}))},"52bd":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e=["جنوری","فروری","مارچ","اپریل","مئی","جون","جولائی","اگست","ستمبر","اکتوبر","نومبر","دسمبر"],n=["اتوار","پیر","منگل","بدھ","جمعرات","جمعہ","ہفتہ"],r=t.defineLocale("ur",{months:e,monthsShort:e,weekdays:n,weekdaysShort:n,weekdaysMin:n,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd، D MMMM YYYY HH:mm"},meridiemParse:/صبح|شام/,isPM:function(t){return"شام"===t},meridiem:function(t,e,n){return t<12?"صبح":"شام"},calendar:{sameDay:"[آج بوقت] LT",nextDay:"[کل بوقت] LT",nextWeek:"dddd [بوقت] LT",lastDay:"[گذشتہ روز بوقت] LT",lastWeek:"[گذشتہ] dddd [بوقت] LT",sameElse:"L"},relativeTime:{future:"%s بعد",past:"%s قبل",s:"چند سیکنڈ",ss:"%d سیکنڈ",m:"ایک منٹ",mm:"%d منٹ",h:"ایک گھنٹہ",hh:"%d گھنٹے",d:"ایک دن",dd:"%d دن",M:"ایک ماہ",MM:"%d ماہ",y:"ایک سال",yy:"%d سال"},preparse:function(t){return t.replace(/،/g,",")},postformat:function(t){return t.replace(/,/g,"،")},week:{dow:1,doy:4}});return r}))},"52bd":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t=e.defineLocale("ss",{months:"Bhimbidvwane_Indlovana_Indlov'lenkhulu_Mabasa_Inkhwekhweti_Inhlaba_Kholwane_Ingci_Inyoni_Imphala_Lweti_Ingongoni".split("_"),monthsShort:"Bhi_Ina_Inu_Mab_Ink_Inh_Kho_Igc_Iny_Imp_Lwe_Igo".split("_"),weekdays:"Lisontfo_Umsombuluko_Lesibili_Lesitsatfu_Lesine_Lesihlanu_Umgcibelo".split("_"),weekdaysShort:"Lis_Umb_Lsb_Les_Lsi_Lsh_Umg".split("_"),weekdaysMin:"Li_Us_Lb_Lt_Ls_Lh_Ug".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[Namuhla nga] LT",nextDay:"[Kusasa nga] LT",nextWeek:"dddd [nga] LT",lastDay:"[Itolo nga] LT",lastWeek:"dddd [leliphelile] [nga] LT",sameElse:"L"},relativeTime:{future:"nga %s",past:"wenteka nga %s",s:"emizuzwana lomcane",ss:"%d mzuzwana",m:"umzuzu",mm:"%d emizuzu",h:"lihora",hh:"%d emahora",d:"lilanga",dd:"%d emalanga",M:"inyanga",MM:"%d tinyanga",y:"umnyaka",yy:"%d iminyaka"},meridiemParse:/ekuseni|emini|entsambama|ebusuku/,meridiem:function(e,t,n){return e<11?"ekuseni":e<15?"emini":e<19?"entsambama":"ebusuku"},meridiemHour:function(e,t){return 12===e&&(e=0),"ekuseni"===t?e:"emini"===t?e>=11?e:e+12:"entsambama"===t||"ebusuku"===t?0===e?0:e+12:void 0},dayOfMonthOrdinalParse:/\d{1,2}/,ordinal:"%d",week:{dow:1,doy:4}});return t}))},5319:function(e,t,n){"use strict";var i=n("d784"),r=n("825a"),o=n("50c4"),a=n("a691"),s=n("1d80"),c=n("8aa5"),u=n("0cb2"),d=n("14c3"),l=Math.max,f=Math.min,p=function(e){return void 0===e?e:String(e)};i("replace",2,(function(e,t,n,i){var h=i.REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE,m=i.REPLACE_KEEPS_$0,b=h?"$":"$0";return[function(n,i){var r=s(this),o=void 0==n?void 0:n[e];return void 0!==o?o.call(n,r,i):t.call(String(r),n,i)},function(e,i){if(!h&&m||"string"===typeof i&&-1===i.indexOf(b)){var s=n(t,e,this,i);if(s.done)return s.value}var g=r(e),v=String(this),y="function"===typeof i;y||(i=String(i));var _=g.global;if(_){var O=g.unicode;g.lastIndex=0}var j=[];while(1){var w=d(g,v);if(null===w)break;if(j.push(w),!_)break;var k=String(w[0]);""===k&&(g.lastIndex=c(v,o(g.lastIndex),O))}for(var M="",L=0,x=0;x=L&&(M+=v.slice(L,S)+C,L=S+T.length)}return M+v.slice(L)}]}))},"53ca":function(e,t,n){"use strict";n.d(t,"a",(function(){return i}));n("a4d3"),n("e01a"),n("d3b7"),n("d28b"),n("3ca3"),n("ddb0");function i(e){return i="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i(e)}},"55c9":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e=t.defineLocale("ss",{months:"Bhimbidvwane_Indlovana_Indlov'lenkhulu_Mabasa_Inkhwekhweti_Inhlaba_Kholwane_Ingci_Inyoni_Imphala_Lweti_Ingongoni".split("_"),monthsShort:"Bhi_Ina_Inu_Mab_Ink_Inh_Kho_Igc_Iny_Imp_Lwe_Igo".split("_"),weekdays:"Lisontfo_Umsombuluko_Lesibili_Lesitsatfu_Lesine_Lesihlanu_Umgcibelo".split("_"),weekdaysShort:"Lis_Umb_Lsb_Les_Lsi_Lsh_Umg".split("_"),weekdaysMin:"Li_Us_Lb_Lt_Ls_Lh_Ug".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[Namuhla nga] LT",nextDay:"[Kusasa nga] LT",nextWeek:"dddd [nga] LT",lastDay:"[Itolo nga] LT",lastWeek:"dddd [leliphelile] [nga] LT",sameElse:"L"},relativeTime:{future:"nga %s",past:"wenteka nga %s",s:"emizuzwana lomcane",ss:"%d mzuzwana",m:"umzuzu",mm:"%d emizuzu",h:"lihora",hh:"%d emahora",d:"lilanga",dd:"%d emalanga",M:"inyanga",MM:"%d tinyanga",y:"umnyaka",yy:"%d iminyaka"},meridiemParse:/ekuseni|emini|entsambama|ebusuku/,meridiem:function(t,e,n){return t<11?"ekuseni":t<15?"emini":t<19?"entsambama":"ebusuku"},meridiemHour:function(t,e){return 12===t&&(t=0),"ekuseni"===e?t:"emini"===e?t>=11?t:t+12:"entsambama"===e||"ebusuku"===e?0===t?0:t+12:void 0},dayOfMonthOrdinalParse:/\d{1,2}/,ordinal:"%d",week:{dow:1,doy:4}});return e}))},5319:function(t,e,n){"use strict";var r=n("d784"),i=n("825a"),a=n("50c4"),o=n("a691"),s=n("1d80"),c=n("8aa5"),u=n("0cb2"),l=n("14c3"),d=Math.max,f=Math.min,h=function(t){return void 0===t?t:String(t)};r("replace",2,(function(t,e,n,r){var p=r.REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE,m=r.REPLACE_KEEPS_$0,b=p?"$":"$0";return[function(n,r){var i=s(this),a=void 0==n?void 0:n[t];return void 0!==a?a.call(n,i,r):e.call(String(i),n,r)},function(t,r){if(!p&&m||"string"===typeof r&&-1===r.indexOf(b)){var s=n(e,t,this,r);if(s.done)return s.value}var v=i(t),_=String(this),g="function"===typeof r;g||(r=String(r));var y=v.global;if(y){var O=v.unicode;v.lastIndex=0}var j=[];while(1){var w=l(v,_);if(null===w)break;if(j.push(w),!y)break;var M=String(w[0]);""===M&&(v.lastIndex=c(_,a(v.lastIndex),O))}for(var L="",k=0,T=0;T=k&&(L+=_.slice(k,S)+E,k=S+D.length)}return L+_.slice(k)}]}))},"55c9":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),n="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),i=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],r=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,o=e.defineLocale("es-us",{months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(e,i){return e?/-MMM-/.test(i)?n[e.month()]:t[e.month()]:t},monthsRegex:r,monthsShortRegex:r,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,monthsParse:i,longMonthsParse:i,shortMonthsParse:i,weekdays:"domingo_lunes_martes_miércoles_jueves_viernes_sábado".split("_"),weekdaysShort:"dom._lun._mar._mié._jue._vie._sáb.".split("_"),weekdaysMin:"do_lu_ma_mi_ju_vi_sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"MM/DD/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY h:mm A",LLLL:"dddd, D [de] MMMM [de] YYYY h:mm A"},calendar:{sameDay:function(){return"[hoy a la"+(1!==this.hours()?"s":"")+"] LT"},nextDay:function(){return"[mañana a la"+(1!==this.hours()?"s":"")+"] LT"},nextWeek:function(){return"dddd [a la"+(1!==this.hours()?"s":"")+"] LT"},lastDay:function(){return"[ayer a la"+(1!==this.hours()?"s":"")+"] LT"},lastWeek:function(){return"[el] dddd [pasado a la"+(1!==this.hours()?"s":"")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"hace %s",s:"unos segundos",ss:"%d segundos",m:"un minuto",mm:"%d minutos",h:"una hora",hh:"%d horas",d:"un día",dd:"%d días",w:"una semana",ww:"%d semanas",M:"un mes",MM:"%d meses",y:"un año",yy:"%d años"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:0,doy:6}});return o}))},5692:function(e,t,n){var i=n("c430"),r=n("c6cd");(e.exports=function(e,t){return r[e]||(r[e]=void 0!==t?t:{})})("versions",[]).push({version:"3.14.0",mode:i?"pure":"global",copyright:"© 2021 Denis Pushkarev (zloirock.ru)"})},"56ef":function(e,t,n){var i=n("d066"),r=n("241c"),o=n("7418"),a=n("825a");e.exports=i("Reflect","ownKeys")||function(e){var t=r.f(a(e)),n=o.f;return n?t.concat(n(e)):t}},"576c":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),n="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),r=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],i=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,a=t.defineLocale("es-us",{months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(t,r){return t?/-MMM-/.test(r)?n[t.month()]:e[t.month()]:e},monthsRegex:i,monthsShortRegex:i,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,monthsParse:r,longMonthsParse:r,shortMonthsParse:r,weekdays:"domingo_lunes_martes_miércoles_jueves_viernes_sábado".split("_"),weekdaysShort:"dom._lun._mar._mié._jue._vie._sáb.".split("_"),weekdaysMin:"do_lu_ma_mi_ju_vi_sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"MM/DD/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY h:mm A",LLLL:"dddd, D [de] MMMM [de] YYYY h:mm A"},calendar:{sameDay:function(){return"[hoy a la"+(1!==this.hours()?"s":"")+"] LT"},nextDay:function(){return"[mañana a la"+(1!==this.hours()?"s":"")+"] LT"},nextWeek:function(){return"dddd [a la"+(1!==this.hours()?"s":"")+"] LT"},lastDay:function(){return"[ayer a la"+(1!==this.hours()?"s":"")+"] LT"},lastWeek:function(){return"[el] dddd [pasado a la"+(1!==this.hours()?"s":"")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"hace %s",s:"unos segundos",ss:"%d segundos",m:"un minuto",mm:"%d minutos",h:"una hora",hh:"%d horas",d:"un día",dd:"%d días",w:"una semana",ww:"%d semanas",M:"un mes",MM:"%d meses",y:"un año",yy:"%d años"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:0,doy:6}});return a}))},5692:function(t,e,n){var r=n("c430"),i=n("c6cd");(t.exports=function(t,e){return i[t]||(i[t]=void 0!==e?e:{})})("versions",[]).push({version:"3.11.0",mode:r?"pure":"global",copyright:"© 2021 Denis Pushkarev (zloirock.ru)"})},"56ef":function(t,e,n){var r=n("d066"),i=n("241c"),a=n("7418"),o=n("825a");t.exports=r("Reflect","ownKeys")||function(t){var e=i.f(o(t)),n=a.f;return n?e.concat(n(t)):e}},"576c":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t=e.defineLocale("tet",{months:"Janeiru_Fevereiru_Marsu_Abril_Maiu_Juñu_Jullu_Agustu_Setembru_Outubru_Novembru_Dezembru".split("_"),monthsShort:"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez".split("_"),weekdays:"Domingu_Segunda_Tersa_Kuarta_Kinta_Sesta_Sabadu".split("_"),weekdaysShort:"Dom_Seg_Ters_Kua_Kint_Sest_Sab".split("_"),weekdaysMin:"Do_Seg_Te_Ku_Ki_Ses_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Ohin iha] LT",nextDay:"[Aban iha] LT",nextWeek:"dddd [iha] LT",lastDay:"[Horiseik iha] LT",lastWeek:"dddd [semana kotuk] [iha] LT",sameElse:"L"},relativeTime:{future:"iha %s",past:"%s liuba",s:"segundu balun",ss:"segundu %d",m:"minutu ida",mm:"minutu %d",h:"oras ida",hh:"oras %d",d:"loron ida",dd:"loron %d",M:"fulan ida",MM:"fulan %d",y:"tinan ida",yy:"tinan %d"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10,n=1===~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th";return e+n},week:{dow:1,doy:4}});return t}))},"585a":function(e,t,n){(function(t){var n="object"==typeof t&&t&&t.Object===Object&&t;e.exports=n}).call(this,n("c8ba"))},5899:function(e,t){e.exports="\t\n\v\f\r                 \u2028\u2029\ufeff"},"58a8":function(e,t,n){var i=n("1d80"),r=n("5899"),o="["+r+"]",a=RegExp("^"+o+o+"*"),s=RegExp(o+o+"*$"),c=function(e){return function(t){var n=String(i(t));return 1&e&&(n=n.replace(a,"")),2&e&&(n=n.replace(s,"")),n}};e.exports={start:c(1),end:c(2),trim:c(3)}},"58f2":function(e,t,n){"use strict";n.d(t,"a",(function(){return c}));var i=n("a026"),r=n("0056"),o=n("a723"),a=n("cf75");function s(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var c=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=t.type,c=void 0===n?o["a"]:n,u=t.defaultValue,d=void 0===u?void 0:u,l=t.validator,f=void 0===l?void 0:l,p=t.event,h=void 0===p?r["y"]:p,m=s({},e,Object(a["c"])(c,d,f)),b=i["default"].extend({model:{prop:e,event:h},props:m});return{mixin:b,props:m,prop:e,event:h}}},"598a":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e=t.defineLocale("tet",{months:"Janeiru_Fevereiru_Marsu_Abril_Maiu_Juñu_Jullu_Agustu_Setembru_Outubru_Novembru_Dezembru".split("_"),monthsShort:"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez".split("_"),weekdays:"Domingu_Segunda_Tersa_Kuarta_Kinta_Sesta_Sabadu".split("_"),weekdaysShort:"Dom_Seg_Ters_Kua_Kint_Sest_Sab".split("_"),weekdaysMin:"Do_Seg_Te_Ku_Ki_Ses_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Ohin iha] LT",nextDay:"[Aban iha] LT",nextWeek:"dddd [iha] LT",lastDay:"[Horiseik iha] LT",lastWeek:"dddd [semana kotuk] [iha] LT",sameElse:"L"},relativeTime:{future:"iha %s",past:"%s liuba",s:"segundu balun",ss:"segundu %d",m:"minutu ida",mm:"minutu %d",h:"oras ida",hh:"oras %d",d:"loron ida",dd:"loron %d",M:"fulan ida",MM:"fulan %d",y:"tinan ida",yy:"tinan %d"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(t){var e=t%10,n=1===~~(t%100/10)?"th":1===e?"st":2===e?"nd":3===e?"rd":"th";return t+n},week:{dow:1,doy:4}});return e}))},"585a":function(t,e,n){(function(e){var n="object"==typeof e&&e&&e.Object===Object&&e;t.exports=n}).call(this,n("c8ba"))},5899:function(t,e){t.exports="\t\n\v\f\r                 \u2028\u2029\ufeff"},"58a8":function(t,e,n){var r=n("1d80"),i=n("5899"),a="["+i+"]",o=RegExp("^"+a+a+"*"),s=RegExp(a+a+"*$"),c=function(t){return function(e){var n=String(r(e));return 1&t&&(n=n.replace(o,"")),2&t&&(n=n.replace(s,"")),n}};t.exports={start:c(1),end:c(2),trim:c(3)}},"58f2":function(t,e,n){"use strict";n.d(e,"a",(function(){return c}));var r=n("a026"),i=n("0056"),a=n("a723"),o=n("cf75");function s(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var c=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=e.type,c=void 0===n?a["a"]:n,u=e.defaultValue,l=void 0===u?void 0:u,d=e.validator,f=void 0===d?void 0:d,h=e.event,p=void 0===h?i["y"]:h,m=s({},t,Object(o["c"])(c,l,f)),b=r["default"].extend({model:{prop:t,event:p},props:m});return{mixin:b,props:m,prop:t,event:p}}},"598a":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t=["ޖެނުއަރީ","ފެބްރުއަރީ","މާރިޗު","އޭޕްރީލު","މޭ","ޖޫން","ޖުލައި","އޯގަސްޓު","ސެޕްޓެމްބަރު","އޮކްޓޯބަރު","ނޮވެމްބަރު","ޑިސެމްބަރު"],n=["އާދިއްތަ","ހޯމަ","އަންގާރަ","ބުދަ","ބުރާސްފަތި","ހުކުރު","ހޮނިހިރު"],i=e.defineLocale("dv",{months:t,monthsShort:t,weekdays:n,weekdaysShort:n,weekdaysMin:"އާދި_ހޯމަ_އަން_ބުދަ_ބުރާ_ހުކު_ހޮނި".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"D/M/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/މކ|މފ/,isPM:function(e){return"މފ"===e},meridiem:function(e,t,n){return e<12?"މކ":"މފ"},calendar:{sameDay:"[މިއަދު] LT",nextDay:"[މާދަމާ] LT",nextWeek:"dddd LT",lastDay:"[އިއްޔެ] LT",lastWeek:"[ފާއިތުވި] dddd LT",sameElse:"L"},relativeTime:{future:"ތެރޭގައި %s",past:"ކުރިން %s",s:"ސިކުންތުކޮޅެއް",ss:"d% ސިކުންތު",m:"މިނިޓެއް",mm:"މިނިޓު %d",h:"ގަޑިއިރެއް",hh:"ގަޑިއިރު %d",d:"ދުވަހެއް",dd:"ދުވަސް %d",M:"މަހެއް",MM:"މަސް %d",y:"އަހަރެއް",yy:"އަހަރު %d"},preparse:function(e){return e.replace(/،/g,",")},postformat:function(e){return e.replace(/,/g,"،")},week:{dow:7,doy:12}});return i}))},"59e4":function(e,t,n){"use strict";n.d(t,"b",(function(){return I})),n.d(t,"a",(function(){return B}));var i,r=n("2b88"),o=n("a026"),a=n("2f79"),s=n("c637"),c=n("0056"),u=n("a723"),d=n("9b76"),l=n("6d40"),f=n("906c"),p=n("6b77"),h=n("a8c8"),m=n("58f2"),b=n("3a58"),g=n("d82f"),v=n("cf75"),y=n("4a38"),_=n("493b"),O=n("90ef"),j=n("602d"),w=n("8c18"),k=n("8d32"),M=n("f29e"),L=n("aa59"),x=n("ce2a"),T=n("0f65");function S(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,i)}return n}function D(e){for(var t=1;t1&&void 0!==arguments[1]?arguments[1]:{};return new l["a"](e,D(D({cancelable:!1,target:this.$el||null,relatedTarget:null},t),{},{vueTarget:this,componentId:this.safeId()}))},emitEvent:function(e){var t=e.type;this.emitOnRoot(Object(p["e"])(s["pc"],t),e),this.$emit(t,e)},ensureToaster:function(){if(!this.static){var e=this.computedToaster;if(!r["Wormhole"].hasTarget(e)){var t=document.createElement("div");document.body.appendChild(t);var n=new T["a"]({parent:this.$root,propsData:{name:e}});n.$mount(t)}}},startDismissTimer:function(){this.clearDismissTimer(),this.noAutoHide||(this.$_dismissTimer=setTimeout(this.hide,this.resumeDismiss||this.computedDuration),this.dismissStarted=Date.now(),this.resumeDismiss=0)},clearDismissTimer:function(){clearTimeout(this.$_dismissTimer),this.$_dismissTimer=null},setHoverHandler:function(e){var t=this.$refs["b-toast"];Object(p["c"])(e,t,"mouseenter",this.onPause,c["cb"]),Object(p["c"])(e,t,"mouseleave",this.onUnPause,c["cb"])},onPause:function(){if(!this.noAutoHide&&!this.noHoverPause&&this.$_dismissTimer&&!this.resumeDismiss){var e=Date.now()-this.dismissStarted;e>0&&(this.clearDismissTimer(),this.resumeDismiss=Object(h["d"])(this.computedDuration-e,$))}},onUnPause:function(){this.noAutoHide||this.noHoverPause||!this.resumeDismiss?this.resumeDismiss=this.dismissStarted=0:this.startDismissTimer()},onLinkClick:function(){var e=this;this.$nextTick((function(){Object(f["D"])((function(){e.hide()}))}))},onBeforeEnter:function(){this.isTransitioning=!0},onAfterEnter:function(){this.isTransitioning=!1;var e=this.buildEvent(c["U"]);this.emitEvent(e),this.startDismissTimer(),this.setHoverHandler(!0)},onBeforeLeave:function(){this.isTransitioning=!0},onAfterLeave:function(){this.isTransitioning=!1,this.order=0,this.resumeDismiss=this.dismissStarted=0;var e=this.buildEvent(c["v"]);this.emitEvent(e),this.doRender=!1},makeToast:function(e){var t=this,n=this.title,i=this.slotScope,r=Object(y["d"])(this),o=[],s=this.normalizeSlot(d["jb"],i);s?o.push(s):n&&o.push(e("strong",{staticClass:"mr-2"},n)),this.noCloseButton||o.push(e(M["a"],{staticClass:"ml-auto mb-1",on:{click:function(){t.hide()}}}));var c=e();o.length>0&&(c=e("header",{staticClass:"toast-header",class:this.headerClass},o));var u=e(r?L["a"]:"div",{staticClass:"toast-body",class:this.bodyClass,props:r?Object(v["e"])(F,this):{},on:r?{click:this.onLinkClick}:{}},this.normalizeSlot(d["i"],i));return e("div",{staticClass:"toast",class:this.toastClass,attrs:this.computedAttrs,key:"toast-".concat(this[a["a"]]),ref:"toast"},[c,u])}},render:function(e){if(!this.doRender||!this.isMounted)return e();var t=this.order,n=this.static,i=this.isHiding,o=this.isStatus,s="b-toast-".concat(this[a["a"]]),c=e("div",{staticClass:"b-toast",class:this.toastClasses,attrs:D(D({},n?{}:this.scopedStyleAttrs),{},{id:this.safeId("_toast_outer"),role:i?null:o?"status":"alert","aria-live":i?null:o?"polite":"assertive","aria-atomic":i?null:"true"}),key:s,ref:"b-toast"},[e(x["a"],{props:{noFade:this.noFade},on:this.transitionHandlers},[this.localShow?this.makeToast(e):e()])]);return e(r["Portal"],{props:{name:s,to:this.computedToaster,order:t,slim:!0,disabled:n}},[c])}})},"5a34":function(e,t,n){var i=n("44e7");e.exports=function(e){if(i(e))throw TypeError("The method doesn't accept regular expressions");return e}},"5aff":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e=["ޖެނުއަރީ","ފެބްރުއަރީ","މާރިޗު","އޭޕްރީލު","މޭ","ޖޫން","ޖުލައި","އޯގަސްޓު","ސެޕްޓެމްބަރު","އޮކްޓޯބަރު","ނޮވެމްބަރު","ޑިސެމްބަރު"],n=["އާދިއްތަ","ހޯމަ","އަންގާރަ","ބުދަ","ބުރާސްފަތި","ހުކުރު","ހޮނިހިރު"],r=t.defineLocale("dv",{months:e,monthsShort:e,weekdays:n,weekdaysShort:n,weekdaysMin:"އާދި_ހޯމަ_އަން_ބުދަ_ބުރާ_ހުކު_ހޮނި".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"D/M/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/މކ|މފ/,isPM:function(t){return"މފ"===t},meridiem:function(t,e,n){return t<12?"މކ":"މފ"},calendar:{sameDay:"[މިއަދު] LT",nextDay:"[މާދަމާ] LT",nextWeek:"dddd LT",lastDay:"[އިއްޔެ] LT",lastWeek:"[ފާއިތުވި] dddd LT",sameElse:"L"},relativeTime:{future:"ތެރޭގައި %s",past:"ކުރިން %s",s:"ސިކުންތުކޮޅެއް",ss:"d% ސިކުންތު",m:"މިނިޓެއް",mm:"މިނިޓު %d",h:"ގަޑިއިރެއް",hh:"ގަޑިއިރު %d",d:"ދުވަހެއް",dd:"ދުވަސް %d",M:"މަހެއް",MM:"މަސް %d",y:"އަހަރެއް",yy:"އަހަރު %d"},preparse:function(t){return t.replace(/،/g,",")},postformat:function(t){return t.replace(/,/g,"،")},week:{dow:7,doy:12}});return r}))},"59e4":function(t,e,n){"use strict";n.d(e,"b",(function(){return I})),n.d(e,"a",(function(){return B}));var r,i=n("2b88"),a=n("a026"),o=n("2f79"),s=n("c637"),c=n("0056"),u=n("a723"),l=n("9b76"),d=n("6d40"),f=n("906c"),h=n("6b77"),p=n("a8c8"),m=n("58f2"),b=n("3a58"),v=n("d82f"),_=n("cf75"),g=n("4a38"),y=n("493b"),O=n("90ef"),j=n("602d"),w=n("8c18"),M=n("8d32"),L=n("f29e"),k=n("aa59"),T=n("ce2a"),D=n("0f65");function S(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function Y(t){for(var e=1;e1&&void 0!==arguments[1]?arguments[1]:{};return new d["a"](t,Y(Y({cancelable:!1,target:this.$el||null,relatedTarget:null},e),{},{vueTarget:this,componentId:this.safeId()}))},emitEvent:function(t){var e=t.type;this.emitOnRoot(Object(h["e"])(s["pc"],e),t),this.$emit(e,t)},ensureToaster:function(){if(!this.static){var t=this.computedToaster;if(!i["Wormhole"].hasTarget(t)){var e=document.createElement("div");document.body.appendChild(e);var n=new D["a"]({parent:this.$root,propsData:{name:t}});n.$mount(e)}}},startDismissTimer:function(){this.clearDismissTimer(),this.noAutoHide||(this.$_dismissTimer=setTimeout(this.hide,this.resumeDismiss||this.computedDuration),this.dismissStarted=Date.now(),this.resumeDismiss=0)},clearDismissTimer:function(){clearTimeout(this.$_dismissTimer),this.$_dismissTimer=null},setHoverHandler:function(t){var e=this.$refs["b-toast"];Object(h["c"])(t,e,"mouseenter",this.onPause,c["cb"]),Object(h["c"])(t,e,"mouseleave",this.onUnPause,c["cb"])},onPause:function(){if(!this.noAutoHide&&!this.noHoverPause&&this.$_dismissTimer&&!this.resumeDismiss){var t=Date.now()-this.dismissStarted;t>0&&(this.clearDismissTimer(),this.resumeDismiss=Object(p["d"])(this.computedDuration-t,$))}},onUnPause:function(){this.noAutoHide||this.noHoverPause||!this.resumeDismiss?this.resumeDismiss=this.dismissStarted=0:this.startDismissTimer()},onLinkClick:function(){var t=this;this.$nextTick((function(){Object(f["D"])((function(){t.hide()}))}))},onBeforeEnter:function(){this.isTransitioning=!0},onAfterEnter:function(){this.isTransitioning=!1;var t=this.buildEvent(c["U"]);this.emitEvent(t),this.startDismissTimer(),this.setHoverHandler(!0)},onBeforeLeave:function(){this.isTransitioning=!0},onAfterLeave:function(){this.isTransitioning=!1,this.order=0,this.resumeDismiss=this.dismissStarted=0;var t=this.buildEvent(c["v"]);this.emitEvent(t),this.doRender=!1},makeToast:function(t){var e=this,n=this.title,r=this.slotScope,i=Object(g["d"])(this),a=[],s=this.normalizeSlot(l["jb"],r);s?a.push(s):n&&a.push(t("strong",{staticClass:"mr-2"},n)),this.noCloseButton||a.push(t(L["a"],{staticClass:"ml-auto mb-1",on:{click:function(){e.hide()}}}));var c=t();a.length>0&&(c=t("header",{staticClass:"toast-header",class:this.headerClass},a));var u=t(i?k["a"]:"div",{staticClass:"toast-body",class:this.bodyClass,props:i?Object(_["e"])(F,this):{},on:i?{click:this.onLinkClick}:{}},this.normalizeSlot(l["i"],r));return t("div",{staticClass:"toast",class:this.toastClass,attrs:this.computedAttrs,key:"toast-".concat(this[o["a"]]),ref:"toast"},[c,u])}},render:function(t){if(!this.doRender||!this.isMounted)return t();var e=this.order,n=this.static,r=this.isHiding,a=this.isStatus,s="b-toast-".concat(this[o["a"]]),c=t("div",{staticClass:"b-toast",class:this.toastClasses,attrs:Y(Y({},n?{}:this.scopedStyleAttrs),{},{id:this.safeId("_toast_outer"),role:r?null:a?"status":"alert","aria-live":r?null:a?"polite":"assertive","aria-atomic":r?null:"true"}),key:s,ref:"b-toast"},[t(T["a"],{props:{noFade:this.noFade},on:this.transitionHandlers},[this.localShow?this.makeToast(t):t()])]);return t(i["Portal"],{props:{name:s,to:this.computedToaster,order:e,slim:!0,disabled:n}},[c])}})},"5a34":function(t,e,n){var r=n("44e7");t.exports=function(t){if(r(t))throw TypeError("The method doesn't accept regular expressions");return t}},"5aff":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t={1:"'inji",5:"'inji",8:"'inji",70:"'inji",80:"'inji",2:"'nji",7:"'nji",20:"'nji",50:"'nji",3:"'ünji",4:"'ünji",100:"'ünji",6:"'njy",9:"'unjy",10:"'unjy",30:"'unjy",60:"'ynjy",90:"'ynjy"},n=e.defineLocale("tk",{months:"Ýanwar_Fewral_Mart_Aprel_Maý_Iýun_Iýul_Awgust_Sentýabr_Oktýabr_Noýabr_Dekabr".split("_"),monthsShort:"Ýan_Few_Mar_Apr_Maý_Iýn_Iýl_Awg_Sen_Okt_Noý_Dek".split("_"),weekdays:"Ýekşenbe_Duşenbe_Sişenbe_Çarşenbe_Penşenbe_Anna_Şenbe".split("_"),weekdaysShort:"Ýek_Duş_Siş_Çar_Pen_Ann_Şen".split("_"),weekdaysMin:"Ýk_Dş_Sş_Çr_Pn_An_Şn".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[bugün sagat] LT",nextDay:"[ertir sagat] LT",nextWeek:"[indiki] dddd [sagat] LT",lastDay:"[düýn] LT",lastWeek:"[geçen] dddd [sagat] LT",sameElse:"L"},relativeTime:{future:"%s soň",past:"%s öň",s:"birnäçe sekunt",m:"bir minut",mm:"%d minut",h:"bir sagat",hh:"%d sagat",d:"bir gün",dd:"%d gün",M:"bir aý",MM:"%d aý",y:"bir ýyl",yy:"%d ýyl"},ordinal:function(e,n){switch(n){case"d":case"D":case"Do":case"DD":return e;default:if(0===e)return e+"'unjy";var i=e%10,r=e%100-i,o=e>=100?100:null;return e+(t[i]||t[r]||t[o])}},week:{dow:1,doy:7}});return n}))},"5b14":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e={1:"'inji",5:"'inji",8:"'inji",70:"'inji",80:"'inji",2:"'nji",7:"'nji",20:"'nji",50:"'nji",3:"'ünji",4:"'ünji",100:"'ünji",6:"'njy",9:"'unjy",10:"'unjy",30:"'unjy",60:"'ynjy",90:"'ynjy"},n=t.defineLocale("tk",{months:"Ýanwar_Fewral_Mart_Aprel_Maý_Iýun_Iýul_Awgust_Sentýabr_Oktýabr_Noýabr_Dekabr".split("_"),monthsShort:"Ýan_Few_Mar_Apr_Maý_Iýn_Iýl_Awg_Sen_Okt_Noý_Dek".split("_"),weekdays:"Ýekşenbe_Duşenbe_Sişenbe_Çarşenbe_Penşenbe_Anna_Şenbe".split("_"),weekdaysShort:"Ýek_Duş_Siş_Çar_Pen_Ann_Şen".split("_"),weekdaysMin:"Ýk_Dş_Sş_Çr_Pn_An_Şn".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[bugün sagat] LT",nextDay:"[ertir sagat] LT",nextWeek:"[indiki] dddd [sagat] LT",lastDay:"[düýn] LT",lastWeek:"[geçen] dddd [sagat] LT",sameElse:"L"},relativeTime:{future:"%s soň",past:"%s öň",s:"birnäçe sekunt",m:"bir minut",mm:"%d minut",h:"bir sagat",hh:"%d sagat",d:"bir gün",dd:"%d gün",M:"bir aý",MM:"%d aý",y:"bir ýyl",yy:"%d ýyl"},ordinal:function(t,n){switch(n){case"d":case"D":case"Do":case"DD":return t;default:if(0===t)return t+"'unjy";var r=t%10,i=t%100-r,a=t>=100?100:null;return t+(e[r]||e[i]||e[a])}},week:{dow:1,doy:7}});return n}))},"5b14":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t="vasárnap hétfőn kedden szerdán csütörtökön pénteken szombaton".split(" ");function n(e,t,n,i){var r=e;switch(n){case"s":return i||t?"néhány másodperc":"néhány másodperce";case"ss":return r+(i||t)?" másodperc":" másodperce";case"m":return"egy"+(i||t?" perc":" perce");case"mm":return r+(i||t?" perc":" perce");case"h":return"egy"+(i||t?" óra":" órája");case"hh":return r+(i||t?" óra":" órája");case"d":return"egy"+(i||t?" nap":" napja");case"dd":return r+(i||t?" nap":" napja");case"M":return"egy"+(i||t?" hónap":" hónapja");case"MM":return r+(i||t?" hónap":" hónapja");case"y":return"egy"+(i||t?" év":" éve");case"yy":return r+(i||t?" év":" éve")}return""}function i(e){return(e?"":"[múlt] ")+"["+t[this.day()]+"] LT[-kor]"}var r=e.defineLocale("hu",{months:"január_február_március_április_május_június_július_augusztus_szeptember_október_november_december".split("_"),monthsShort:"jan._feb._márc._ápr._máj._jún._júl._aug._szept._okt._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"vasárnap_hétfő_kedd_szerda_csütörtök_péntek_szombat".split("_"),weekdaysShort:"vas_hét_kedd_sze_csüt_pén_szo".split("_"),weekdaysMin:"v_h_k_sze_cs_p_szo".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"YYYY.MM.DD.",LL:"YYYY. MMMM D.",LLL:"YYYY. MMMM D. H:mm",LLLL:"YYYY. MMMM D., dddd H:mm"},meridiemParse:/de|du/i,isPM:function(e){return"u"===e.charAt(1).toLowerCase()},meridiem:function(e,t,n){return e<12?!0===n?"de":"DE":!0===n?"du":"DU"},calendar:{sameDay:"[ma] LT[-kor]",nextDay:"[holnap] LT[-kor]",nextWeek:function(){return i.call(this,!0)},lastDay:"[tegnap] LT[-kor]",lastWeek:function(){return i.call(this,!1)},sameElse:"L"},relativeTime:{future:"%s múlva",past:"%s",s:n,ss:n,m:n,mm:n,h:n,hh:n,d:n,dd:n,M:n,MM:n,y:n,yy:n},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return r}))},"5c3a":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e="vasárnap hétfőn kedden szerdán csütörtökön pénteken szombaton".split(" ");function n(t,e,n,r){var i=t;switch(n){case"s":return r||e?"néhány másodperc":"néhány másodperce";case"ss":return i+(r||e)?" másodperc":" másodperce";case"m":return"egy"+(r||e?" perc":" perce");case"mm":return i+(r||e?" perc":" perce");case"h":return"egy"+(r||e?" óra":" órája");case"hh":return i+(r||e?" óra":" órája");case"d":return"egy"+(r||e?" nap":" napja");case"dd":return i+(r||e?" nap":" napja");case"M":return"egy"+(r||e?" hónap":" hónapja");case"MM":return i+(r||e?" hónap":" hónapja");case"y":return"egy"+(r||e?" év":" éve");case"yy":return i+(r||e?" év":" éve")}return""}function r(t){return(t?"":"[múlt] ")+"["+e[this.day()]+"] LT[-kor]"}var i=t.defineLocale("hu",{months:"január_február_március_április_május_június_július_augusztus_szeptember_október_november_december".split("_"),monthsShort:"jan._feb._márc._ápr._máj._jún._júl._aug._szept._okt._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"vasárnap_hétfő_kedd_szerda_csütörtök_péntek_szombat".split("_"),weekdaysShort:"vas_hét_kedd_sze_csüt_pén_szo".split("_"),weekdaysMin:"v_h_k_sze_cs_p_szo".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"YYYY.MM.DD.",LL:"YYYY. MMMM D.",LLL:"YYYY. MMMM D. H:mm",LLLL:"YYYY. MMMM D., dddd H:mm"},meridiemParse:/de|du/i,isPM:function(t){return"u"===t.charAt(1).toLowerCase()},meridiem:function(t,e,n){return t<12?!0===n?"de":"DE":!0===n?"du":"DU"},calendar:{sameDay:"[ma] LT[-kor]",nextDay:"[holnap] LT[-kor]",nextWeek:function(){return r.call(this,!0)},lastDay:"[tegnap] LT[-kor]",lastWeek:function(){return r.call(this,!1)},sameElse:"L"},relativeTime:{future:"%s múlva",past:"%s",s:n,ss:n,m:n,mm:n,h:n,hh:n,d:n,dd:n,M:n,MM:n,y:n,yy:n},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return i}))},"5c3a":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t=e.defineLocale("zh-cn",{months:"一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月".split("_"),monthsShort:"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),weekdays:"星期日_星期一_星期二_星期三_星期四_星期五_星期六".split("_"),weekdaysShort:"周日_周一_周二_周三_周四_周五_周六".split("_"),weekdaysMin:"日_一_二_三_四_五_六".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY/MM/DD",LL:"YYYY年M月D日",LLL:"YYYY年M月D日Ah点mm分",LLLL:"YYYY年M月D日ddddAh点mm分",l:"YYYY/M/D",ll:"YYYY年M月D日",lll:"YYYY年M月D日 HH:mm",llll:"YYYY年M月D日dddd HH:mm"},meridiemParse:/凌晨|早上|上午|中午|下午|晚上/,meridiemHour:function(e,t){return 12===e&&(e=0),"凌晨"===t||"早上"===t||"上午"===t?e:"下午"===t||"晚上"===t?e+12:e>=11?e:e+12},meridiem:function(e,t,n){var i=100*e+t;return i<600?"凌晨":i<900?"早上":i<1130?"上午":i<1230?"中午":i<1800?"下午":"晚上"},calendar:{sameDay:"[今天]LT",nextDay:"[明天]LT",nextWeek:function(e){return e.week()!==this.week()?"[下]dddLT":"[本]dddLT"},lastDay:"[昨天]LT",lastWeek:function(e){return this.week()!==e.week()?"[上]dddLT":"[本]dddLT"},sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}(日|月|周)/,ordinal:function(e,t){switch(t){case"d":case"D":case"DDD":return e+"日";case"M":return e+"月";case"w":case"W":return e+"周";default:return e}},relativeTime:{future:"%s后",past:"%s前",s:"几秒",ss:"%d 秒",m:"1 分钟",mm:"%d 分钟",h:"1 小时",hh:"%d 小时",d:"1 天",dd:"%d 天",w:"1 周",ww:"%d 周",M:"1 个月",MM:"%d 个月",y:"1 年",yy:"%d 年"},week:{dow:1,doy:4}});return t}))},"5c6c":function(e,t){e.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}}},"5cbb":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e=t.defineLocale("zh-cn",{months:"一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月".split("_"),monthsShort:"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),weekdays:"星期日_星期一_星期二_星期三_星期四_星期五_星期六".split("_"),weekdaysShort:"周日_周一_周二_周三_周四_周五_周六".split("_"),weekdaysMin:"日_一_二_三_四_五_六".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY/MM/DD",LL:"YYYY年M月D日",LLL:"YYYY年M月D日Ah点mm分",LLLL:"YYYY年M月D日ddddAh点mm分",l:"YYYY/M/D",ll:"YYYY年M月D日",lll:"YYYY年M月D日 HH:mm",llll:"YYYY年M月D日dddd HH:mm"},meridiemParse:/凌晨|早上|上午|中午|下午|晚上/,meridiemHour:function(t,e){return 12===t&&(t=0),"凌晨"===e||"早上"===e||"上午"===e?t:"下午"===e||"晚上"===e?t+12:t>=11?t:t+12},meridiem:function(t,e,n){var r=100*t+e;return r<600?"凌晨":r<900?"早上":r<1130?"上午":r<1230?"中午":r<1800?"下午":"晚上"},calendar:{sameDay:"[今天]LT",nextDay:"[明天]LT",nextWeek:function(t){return t.week()!==this.week()?"[下]dddLT":"[本]dddLT"},lastDay:"[昨天]LT",lastWeek:function(t){return this.week()!==t.week()?"[上]dddLT":"[本]dddLT"},sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}(日|月|周)/,ordinal:function(t,e){switch(e){case"d":case"D":case"DDD":return t+"日";case"M":return t+"月";case"w":case"W":return t+"周";default:return t}},relativeTime:{future:"%s后",past:"%s前",s:"几秒",ss:"%d 秒",m:"1 分钟",mm:"%d 分钟",h:"1 小时",hh:"%d 小时",d:"1 天",dd:"%d 天",w:"1 周",ww:"%d 周",M:"1 个月",MM:"%d 个月",y:"1 年",yy:"%d 年"},week:{dow:1,doy:4}});return e}))},"5c6c":function(t,e){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},"5cbb":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t=e.defineLocale("te",{months:"జనవరి_ఫిబ్రవరి_మార్చి_ఏప్రిల్_మే_జూన్_జులై_ఆగస్టు_సెప్టెంబర్_అక్టోబర్_నవంబర్_డిసెంబర్".split("_"),monthsShort:"జన._ఫిబ్ర._మార్చి_ఏప్రి._మే_జూన్_జులై_ఆగ._సెప్._అక్టో._నవ._డిసె.".split("_"),monthsParseExact:!0,weekdays:"ఆదివారం_సోమవారం_మంగళవారం_బుధవారం_గురువారం_శుక్రవారం_శనివారం".split("_"),weekdaysShort:"ఆది_సోమ_మంగళ_బుధ_గురు_శుక్ర_శని".split("_"),weekdaysMin:"ఆ_సో_మం_బు_గు_శు_శ".split("_"),longDateFormat:{LT:"A h:mm",LTS:"A h:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm",LLLL:"dddd, D MMMM YYYY, A h:mm"},calendar:{sameDay:"[నేడు] LT",nextDay:"[రేపు] LT",nextWeek:"dddd, LT",lastDay:"[నిన్న] LT",lastWeek:"[గత] dddd, LT",sameElse:"L"},relativeTime:{future:"%s లో",past:"%s క్రితం",s:"కొన్ని క్షణాలు",ss:"%d సెకన్లు",m:"ఒక నిమిషం",mm:"%d నిమిషాలు",h:"ఒక గంట",hh:"%d గంటలు",d:"ఒక రోజు",dd:"%d రోజులు",M:"ఒక నెల",MM:"%d నెలలు",y:"ఒక సంవత్సరం",yy:"%d సంవత్సరాలు"},dayOfMonthOrdinalParse:/\d{1,2}వ/,ordinal:"%dవ",meridiemParse:/రాత్రి|ఉదయం|మధ్యాహ్నం|సాయంత్రం/,meridiemHour:function(e,t){return 12===e&&(e=0),"రాత్రి"===t?e<4?e:e+12:"ఉదయం"===t?e:"మధ్యాహ్నం"===t?e>=10?e:e+12:"సాయంత్రం"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?"రాత్రి":e<10?"ఉదయం":e<17?"మధ్యాహ్నం":e<20?"సాయంత్రం":"రాత్రి"},week:{dow:0,doy:6}});return t}))},"5f02":function(e,t,n){"use strict";e.exports=function(e){return"object"===typeof e&&!0===e.isAxiosError}},"5f5b":function(e,t,n){"use strict";n.d(t,"a",(function(){return vk}));var i=n("a026"),r=n("e863"),o=n("50d3"),a=n("c9a9"),s=n("992e"),c=n("6c06"),u=n("7b1e"),d=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:void 0;if(t=Object(u["a"])(t)?t.join("."):t,!t||!Object(u["j"])(e))return n;if(t in e)return e[t];t=String(t).replace(s["a"],".$1");var i=t.split(".").filter(c["a"]);return 0===i.length?n:i.every((function(t){return Object(u["j"])(e)&&t in e&&!Object(u["p"])(e=e[t])}))?e:Object(u["g"])(e)?null:n},l=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,i=d(e,t);return Object(u["p"])(i)?n:i},f=n("d82f"),p=n("686b");function h(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function m(e,t){for(var n=0;n0&&void 0!==arguments[0]?arguments[0]:{};if(Object(u["k"])(t)){var n=Object(f["f"])(t);n.forEach((function(n){var i=t[n];"breakpoints"===n?!Object(u["a"])(i)||i.length<2||i.some((function(e){return!Object(u["n"])(e)||0===e.length}))?Object(p["a"])('"breakpoints" must be an array of at least 2 breakpoint names',o["b"]):e.$_config[n]=Object(a["a"])(i):Object(u["k"])(i)&&(e.$_config[n]=Object(f["f"])(i).reduce((function(e,t){return Object(u["o"])(i[t])||(e[t]=Object(a["a"])(i[t])),e}),e.$_config[n]||{}))}))}}},{key:"resetConfig",value:function(){this.$_config={}}},{key:"getConfig",value:function(){return Object(a["a"])(this.$_config)}},{key:"getConfigValue",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:void 0;return Object(a["a"])(d(this.$_config,e,t))}}]),e}(),v=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:i["default"];t.prototype[o["c"]]=i["default"].prototype[o["c"]]=t.prototype[o["c"]]||i["default"].prototype[o["c"]]||new g,t.prototype[o["c"]].setConfig(e)};function y(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,i)}return n}function _(e){for(var t=1;t0&&void 0!==arguments[0]?arguments[0]:{},t=e.components,n=e.directives,i=e.plugins,r=function e(r){var o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};e.installed||(e.installed=!0,w(r),v(o,r),T(r,t),D(r,n),L(r,i))};return r.installed=!1,r},M=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return _(_({},t),{},{install:k(e)})},L=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};for(var n in t)n&&t[n]&&e.use(t[n])},x=function(e,t,n){e&&t&&n&&e.component(t,n)},T=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};for(var n in t)x(e,n,t[n])},S=function(e,t,n){e&&t&&n&&e.directive(t.replace(/^VB/,"B"),n)},D=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};for(var n in t)S(e,n,t[n])},A=n("2f79"),P=n("c637"),Y=n("0056"),C=n("a723"),E=n("9b76"),H=n("906c"),$=n("58f2"),F=n("3a58"),I=n("cf75"),B=n("8c18"),R=n("f29e"),N=n("ce2a");function z(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,i)}return n}function W(e){for(var t=1;t0?e:0)},Z=function(e){return""===e||!0===e||!(Object(F["c"])(e,0)<1)&&!!e},Q=Object(I["d"])(Object(f["m"])(W(W({},q),{},{dismissLabel:Object(I["c"])(C["u"],"Close"),dismissible:Object(I["c"])(C["g"],!1),fade:Object(I["c"])(C["g"],!1),variant:Object(I["c"])(C["u"],"info")})),P["a"]),ee=i["default"].extend({name:P["a"],mixins:[G,B["a"]],props:Q,data:function(){return{countDown:0,localShow:Z(this[J])}},watch:(j={},V(j,J,(function(e){this.countDown=X(e),this.localShow=Z(e)})),V(j,"countDown",(function(e){var t=this;this.clearCountDownInterval();var n=this[J];Object(u["i"])(n)&&(this.$emit(Y["n"],e),n!==e&&this.$emit(K,e),e>0?(this.localShow=!0,this.$_countDownTimeout=setTimeout((function(){t.countDown--}),1e3)):this.$nextTick((function(){Object(H["D"])((function(){t.localShow=!1}))})))})),V(j,"localShow",(function(e){var t=this[J];e||!this.dismissible&&!Object(u["i"])(t)||this.$emit(Y["m"]),Object(u["i"])(t)||t===e||this.$emit(K,e)})),j),created:function(){this.$_filterTimer=null;var e=this[J];this.countDown=X(e),this.localShow=Z(e)},beforeDestroy:function(){this.clearCountDownInterval()},methods:{dismiss:function(){this.clearCountDownInterval(),this.countDown=0,this.localShow=!1},clearCountDownInterval:function(){clearTimeout(this.$_countDownTimeout),this.$_countDownTimeout=null}},render:function(e){var t=e();if(this.localShow){var n=this.dismissible,i=this.variant,r=e();n&&(r=e(R["a"],{attrs:{"aria-label":this.dismissLabel},on:{click:this.dismiss}},[this.normalizeSlot(E["k"])])),t=e("div",{staticClass:"alert",class:V({"alert-dismissible":n},"alert-".concat(i),i),attrs:{role:"alert","aria-live":"polite","aria-atomic":!0},key:this[A["a"]]},[r,this.normalizeSlot()])}return e(N["a"],{props:{noFade:!this.fade}},[t])}}),te=M({components:{BAlert:ee}}),ne=n("a8c8");function ie(e,t){return ce(e)||se(e,t)||oe(e,t)||re()}function re(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function oe(e,t){if(e){if("string"===typeof e)return ae(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?ae(e,t):void 0}}function ae(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,i=new Array(t);n'),xe=ke("CalendarFill",''),Te=ke("ChevronBarLeft",''),Se=ke("ChevronDoubleLeft",''),De=ke("ChevronDown",''),Ae=ke("ChevronLeft",''),Pe=ke("ChevronUp",''),Ye=ke("CircleFill",''),Ce=ke("Clock",''),Ee=ke("ClockFill",''),He=ke("Dash",''),$e=ke("PersonFill",''),Fe=ke("Plus",''),Ie=ke("Star",''),Be=ke("StarFill",''),Re=ke("StarHalf",''),Ne=ke("X",''); +var e=t.defineLocale("te",{months:"జనవరి_ఫిబ్రవరి_మార్చి_ఏప్రిల్_మే_జూన్_జులై_ఆగస్టు_సెప్టెంబర్_అక్టోబర్_నవంబర్_డిసెంబర్".split("_"),monthsShort:"జన._ఫిబ్ర._మార్చి_ఏప్రి._మే_జూన్_జులై_ఆగ._సెప్._అక్టో._నవ._డిసె.".split("_"),monthsParseExact:!0,weekdays:"ఆదివారం_సోమవారం_మంగళవారం_బుధవారం_గురువారం_శుక్రవారం_శనివారం".split("_"),weekdaysShort:"ఆది_సోమ_మంగళ_బుధ_గురు_శుక్ర_శని".split("_"),weekdaysMin:"ఆ_సో_మం_బు_గు_శు_శ".split("_"),longDateFormat:{LT:"A h:mm",LTS:"A h:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm",LLLL:"dddd, D MMMM YYYY, A h:mm"},calendar:{sameDay:"[నేడు] LT",nextDay:"[రేపు] LT",nextWeek:"dddd, LT",lastDay:"[నిన్న] LT",lastWeek:"[గత] dddd, LT",sameElse:"L"},relativeTime:{future:"%s లో",past:"%s క్రితం",s:"కొన్ని క్షణాలు",ss:"%d సెకన్లు",m:"ఒక నిమిషం",mm:"%d నిమిషాలు",h:"ఒక గంట",hh:"%d గంటలు",d:"ఒక రోజు",dd:"%d రోజులు",M:"ఒక నెల",MM:"%d నెలలు",y:"ఒక సంవత్సరం",yy:"%d సంవత్సరాలు"},dayOfMonthOrdinalParse:/\d{1,2}వ/,ordinal:"%dవ",meridiemParse:/రాత్రి|ఉదయం|మధ్యాహ్నం|సాయంత్రం/,meridiemHour:function(t,e){return 12===t&&(t=0),"రాత్రి"===e?t<4?t:t+12:"ఉదయం"===e?t:"మధ్యాహ్నం"===e?t>=10?t:t+12:"సాయంత్రం"===e?t+12:void 0},meridiem:function(t,e,n){return t<4?"రాత్రి":t<10?"ఉదయం":t<17?"మధ్యాహ్నం":t<20?"సాయంత్రం":"రాత్రి"},week:{dow:0,doy:6}});return e}))},"5f02":function(t,e,n){"use strict";t.exports=function(t){return"object"===typeof t&&!0===t.isAxiosError}},"5f5b":function(t,e,n){"use strict";n.d(e,"a",(function(){return _M}));var r=n("a026"),i=n("e863"),a=n("50d3"),o=n("c9a9"),s=n("992e"),c=n("6c06"),u=n("7b1e"),l=function(t,e){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:void 0;if(e=Object(u["a"])(e)?e.join("."):e,!e||!Object(u["j"])(t))return n;if(e in t)return t[e];e=String(e).replace(s["a"],".$1");var r=e.split(".").filter(c["a"]);return 0===r.length?n:r.every((function(e){return Object(u["j"])(t)&&e in t&&!Object(u["p"])(t=t[e])}))?t:Object(u["g"])(t)?null:n},d=function(t,e){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,r=l(t,e);return Object(u["p"])(r)?n:r},f=n("d82f"),h=n("686b");function p(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function m(t,e){for(var n=0;n0&&void 0!==arguments[0]?arguments[0]:{};if(Object(u["k"])(e)){var n=Object(f["f"])(e);n.forEach((function(n){var r=e[n];"breakpoints"===n?!Object(u["a"])(r)||r.length<2||r.some((function(t){return!Object(u["n"])(t)||0===t.length}))?Object(h["a"])('"breakpoints" must be an array of at least 2 breakpoint names',a["b"]):t.$_config[n]=Object(o["a"])(r):Object(u["k"])(r)&&(t.$_config[n]=Object(f["f"])(r).reduce((function(t,e){return Object(u["o"])(r[e])||(t[e]=Object(o["a"])(r[e])),t}),t.$_config[n]||{}))}))}}},{key:"resetConfig",value:function(){this.$_config={}}},{key:"getConfig",value:function(){return Object(o["a"])(this.$_config)}},{key:"getConfigValue",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:void 0;return Object(o["a"])(l(this.$_config,t,e))}}]),t}(),_=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:r["default"];e.prototype[a["c"]]=r["default"].prototype[a["c"]]=e.prototype[a["c"]]||r["default"].prototype[a["c"]]||new v,e.prototype[a["c"]].setConfig(t)};function g(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function y(t){for(var e=1;e0&&void 0!==arguments[0]?arguments[0]:{},e=t.components,n=t.directives,r=t.plugins,i=function t(i){var a=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};t.installed||(t.installed=!0,w(i),_(a,i),D(i,e),Y(i,n),k(i,r))};return i.installed=!1,i},L=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return y(y({},e),{},{install:M(t)})},k=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};for(var n in e)n&&e[n]&&t.use(e[n])},T=function(t,e,n){t&&e&&n&&t.component(e,n)},D=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};for(var n in e)T(t,n,e[n])},S=function(t,e,n){t&&e&&n&&t.directive(e.replace(/^VB/,"B"),n)},Y=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};for(var n in e)S(t,n,e[n])},x=n("2f79"),P=n("c637"),C=n("0056"),E=n("a723"),H=n("9b76"),A=n("906c"),$=n("58f2"),F=n("3a58"),I=n("cf75"),B=n("8c18"),R=n("f29e"),N=n("ce2a");function V(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function z(t){for(var e=1;e0?t:0)},Z=function(t){return""===t||!0===t||!(Object(F["c"])(t,0)<1)&&!!t},Q=Object(I["d"])(Object(f["m"])(z(z({},J),{},{dismissLabel:Object(I["c"])(E["u"],"Close"),dismissible:Object(I["c"])(E["g"],!1),fade:Object(I["c"])(E["g"],!1),variant:Object(I["c"])(E["u"],"info")})),P["a"]),tt=r["default"].extend({name:P["a"],mixins:[G,B["a"]],props:Q,data:function(){return{countDown:0,localShow:Z(this[q])}},watch:(j={},W(j,q,(function(t){this.countDown=X(t),this.localShow=Z(t)})),W(j,"countDown",(function(t){var e=this;this.clearCountDownInterval();var n=this[q];Object(u["i"])(n)&&(this.$emit(C["n"],t),n!==t&&this.$emit(K,t),t>0?(this.localShow=!0,this.$_countDownTimeout=setTimeout((function(){e.countDown--}),1e3)):this.$nextTick((function(){Object(A["D"])((function(){e.localShow=!1}))})))})),W(j,"localShow",(function(t){var e=this[q];t||!this.dismissible&&!Object(u["i"])(e)||this.$emit(C["m"]),Object(u["i"])(e)||e===t||this.$emit(K,t)})),j),created:function(){this.$_filterTimer=null;var t=this[q];this.countDown=X(t),this.localShow=Z(t)},beforeDestroy:function(){this.clearCountDownInterval()},methods:{dismiss:function(){this.clearCountDownInterval(),this.countDown=0,this.localShow=!1},clearCountDownInterval:function(){clearTimeout(this.$_countDownTimeout),this.$_countDownTimeout=null}},render:function(t){var e=t();if(this.localShow){var n=this.dismissible,r=this.variant,i=t();n&&(i=t(R["a"],{attrs:{"aria-label":this.dismissLabel},on:{click:this.dismiss}},[this.normalizeSlot(H["k"])])),e=t("div",{staticClass:"alert",class:W({"alert-dismissible":n},"alert-".concat(r),r),attrs:{role:"alert","aria-live":"polite","aria-atomic":!0},key:this[x["a"]]},[i,this.normalizeSlot()])}return t(N["a"],{props:{noFade:!this.fade}},[e])}}),et=L({components:{BAlert:tt}}),nt=n("a8c8");function rt(t,e){return ct(t)||st(t,e)||at(t,e)||it()}function it(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function at(t,e){if(t){if("string"===typeof t)return ot(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(t):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?ot(t,e):void 0}}function ot(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);n'),Tt=Mt("CalendarFill",''),Dt=Mt("ChevronBarLeft",''),St=Mt("ChevronDoubleLeft",''),Yt=Mt("ChevronDown",''),xt=Mt("ChevronLeft",''),Pt=Mt("ChevronUp",''),Ct=Mt("CircleFill",''),Et=Mt("Clock",''),Ht=Mt("ClockFill",''),At=Mt("Dash",''),$t=Mt("PersonFill",''),Ft=Mt("Plus",''),It=Mt("Star",''),Bt=Mt("StarFill",''),Rt=Mt("StarHalf",''),Nt=Mt("X",''); /*! * BootstrapVue Icons, generated from Bootstrap Icons 1.2.2 * * @link https://icons.getbootstrap.com/ * @license MIT * https://github.com/twbs/icons/blob/master/LICENSE.md - */function ze(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,i)}return n}function We(e){for(var t=1;t0&&void 0!==arguments[0]?arguments[0]:"";return String(e).replace(s["o"],"")},qt=function(e,t){return e?{innerHTML:e}:t?{textContent:t}:{}};function Jt(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,i)}return n}function Kt(e){for(var t=1;t-1&&(t=t.slice(0,n).reverse(),Object(H["d"])(t[0]))},focusNext:function(e){var t=this.getItems(),n=t.indexOf(e.target);n>-1&&(t=t.slice(n+1),Object(H["d"])(t[0]))},focusLast:function(){var e=this.getItems().reverse();Object(H["d"])(e[0])},onFocusin:function(e){var t=this.$el;e.target!==t||Object(H["f"])(t,e.relatedTarget)||(Object(dt["f"])(e),this.focusFirst(e))},onKeydown:function(e){var t=e.keyCode,n=e.shiftKey;t===ct||t===it?(Object(dt["f"])(e),n?this.focusFirst(e):this.focusPrev(e)):t!==Ze&&t!==at||(Object(dt["f"])(e),n?this.focusLast(e):this.focusNext(e))}},render:function(e){var t=this.keyNav;return e("div",{staticClass:"btn-toolbar",class:{"justify-content-between":this.justify},attrs:{role:"toolbar",tabindex:t?"0":null},on:t?{focusin:this.onFocusin,keydown:this.onKeydown}:{}},[this.normalizeSlot()])}}),yn=M({components:{BButtonToolbar:vn,BBtnToolbar:vn}}),_n="gregory",On="long",jn="narrow",wn="short",kn="2-digit",Mn="numeric";function Ln(e,t){return An(e)||Dn(e,t)||Tn(e,t)||xn()}function xn(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function Tn(e,t){if(e){if("string"===typeof e)return Sn(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Sn(e,t):void 0}}function Sn(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,i=new Array(t);n1&&void 0!==arguments[1]?arguments[1]:_n;e=Object(ut["b"])(e).filter(c["a"]);var n=new Intl.DateTimeFormat(e,{calendar:t});return n.resolvedOptions().locale},Bn=function(e,t){var n=new Intl.DateTimeFormat(e,t);return n.format},Rn=function(e,t){return Fn(e)===Fn(t)},Nn=function(e){return e=Hn(e),e.setDate(1),e},zn=function(e){return e=Hn(e),e.setMonth(e.getMonth()+1),e.setDate(0),e},Wn=function(e,t){e=Hn(e);var n=e.getMonth();return e.setFullYear(e.getFullYear()+t),e.getMonth()!==n&&e.setDate(0),e},Vn=function(e){e=Hn(e);var t=e.getMonth();return e.setMonth(t-1),e.getMonth()===t&&e.setDate(0),e},Un=function(e){e=Hn(e);var t=e.getMonth();return e.setMonth(t+1),e.getMonth()===(t+2)%12&&e.setDate(0),e},Gn=function(e){return Wn(e,-1)},qn=function(e){return Wn(e,1)},Jn=function(e){return Wn(e,-10)},Kn=function(e){return Wn(e,10)},Xn=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;return e=$n(e),t=$n(t)||e,n=$n(n)||e,e?en?n:e:null},Zn=["ar","az","ckb","fa","he","ks","lrc","mzn","ps","sd","te","ug","ur","yi"].map((function(e){return e.toLowerCase()})),Qn=function(e){var t=Object(me["g"])(e).toLowerCase().replace(s["A"],"").split("-"),n=t.slice(0,2).join("-"),i=t[0];return Object(ut["a"])(Zn,n)||Object(ut["a"])(Zn,i)},ei=n("3c21"),ti=n("493b"),ni=n("90ef");function ii(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,i)}return n}function ri(e){for(var t=1;tt}},dateDisabled:function(){var e=this,t=this.dateOutOfRange;return function(n){n=$n(n);var i=Fn(n);return!(!t(n)&&!e.computedDateDisabledFn(i,n))}},formatDateString:function(){return Bn(this.calendarLocale,ri(ri({year:Mn,month:kn,day:kn},this.dateFormatOptions),{},{hour:void 0,minute:void 0,second:void 0,calendar:_n}))},formatYearMonth:function(){return Bn(this.calendarLocale,{year:Mn,month:On,calendar:_n})},formatWeekdayName:function(){return Bn(this.calendarLocale,{weekday:On,calendar:_n})},formatWeekdayNameShort:function(){return Bn(this.calendarLocale,{weekday:this.weekdayHeaderFormat||wn,calendar:_n})},formatDay:function(){var e=new Intl.NumberFormat([this.computedLocale],{style:"decimal",minimumIntegerDigits:1,minimumFractionDigits:0,maximumFractionDigits:0,notation:"standard"});return function(t){return e.format(t.getDate())}},prevDecadeDisabled:function(){var e=this.computedMin;return this.disabled||e&&zn(Jn(this.activeDate))e},nextYearDisabled:function(){var e=this.computedMax;return this.disabled||e&&Nn(qn(this.activeDate))>e},nextDecadeDisabled:function(){var e=this.computedMax;return this.disabled||e&&Nn(Kn(this.activeDate))>e},calendar:function(){for(var e=[],t=this.calendarFirstDay,n=t.getFullYear(),i=t.getMonth(),r=this.calendarDaysInMonth,o=t.getDay(),a=(this.computedWeekStarts>o?7:0)-this.computedWeekStarts,s=0-a-o,c=0;c<6&&s0);n!==this.visible&&(this.visible=n,this.callback(n),this.once&&this.visible&&(this.doneOnce=!0,this.stop()))}},{key:"stop",value:function(){this.observer&&this.observer.disconnect(),this.observer=null}}]),e}(),ir=function(e){var t=e[tr];t&&t.stop&&t.stop(),delete e[tr]},rr=function(e,t,n){var i=t.value,r=t.modifiers,o={margin:"0px",once:!1,callback:i};Object(f["h"])(r).forEach((function(e){s["h"].test(e)?o.margin="".concat(e,"px"):"once"===e.toLowerCase()&&(o.once=!0)})),ir(e),e[tr]=new nr(e,o,n),e[tr]._prevModifiers=Object(f["b"])(r)},or=function(e,t,n){var i=t.value,r=t.oldValue,o=t.modifiers;o=Object(f["b"])(o),!e||i===r&&e[tr]&&Object(ei["a"])(o,e[tr]._prevModifiers)||rr(e,{value:i,modifiers:o},n)},ar=function(e){ir(e)},sr={bind:rr,componentUpdated:or,unbind:ar};function cr(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,i)}return n}function ur(e){for(var t=1;t0||r.removedNodes.length>0))&&(n=!0)}n&&t()}));return i.observe(e,Tr({childList:!0,subtree:!0},n)),i};function Pr(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,i)}return n}function Yr(e){for(var t=1;t0),touchStartX:0,touchDeltaX:0}},computed:{numSlides:function(){return this.slides.length}},watch:(Dr={},Cr(Dr,Fr,(function(e,t){e!==t&&this.setSlide(Object(F["c"])(e,0))})),Cr(Dr,"interval",(function(e,t){e!==t&&(e?(this.pause(!0),this.start(!1)):this.pause(!1))})),Cr(Dr,"isPaused",(function(e,t){e!==t&&this.$emit(e?Y["G"]:Y["ab"])})),Cr(Dr,"index",(function(e,t){e===t||this.isSliding||this.doSlide(e,t)})),Dr),created:function(){this.$_interval=null,this.$_animationTimeout=null,this.$_touchTimeout=null,this.$_observer=null,this.isPaused=!(Object(F["c"])(this.interval,0)>0)},mounted:function(){this.transitionEndEvent=Ur(this.$el)||null,this.updateSlides(),this.setObserver(!0)},beforeDestroy:function(){this.clearInterval(),this.clearAnimationTimeout(),this.clearTouchTimeout(),this.setObserver(!1)},methods:{clearInterval:function(e){function t(){return e.apply(this,arguments)}return t.toString=function(){return e.toString()},t}((function(){clearInterval(this.$_interval),this.$_interval=null})),clearAnimationTimeout:function(){clearTimeout(this.$_animationTimeout),this.$_animationTimeout=null},clearTouchTimeout:function(){clearTimeout(this.$_touchTimeout),this.$_touchTimeout=null},setObserver:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];this.$_observer&&this.$_observer.disconnect(),this.$_observer=null,e&&(this.$_observer=Ar(this.$refs.inner,this.updateSlides.bind(this),{subtree:!1,childList:!0,attributes:!0,attributeFilter:["id"]}))},setSlide:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if(!(r["i"]&&document.visibilityState&&document.hidden)){var i=this.noWrap,o=this.numSlides;e=Object(ne["c"])(e),0!==o&&(this.isSliding?this.$once(Y["V"],(function(){Object(H["D"])((function(){return t.setSlide(e,n)}))})):(this.direction=n,this.index=e>=o?i?o-1:0:e<0?i?0:o-1:e,i&&this.index!==e&&this.index!==this[Fr]&&this.$emit(Ir,this.index)))}},prev:function(){this.setSlide(this.index-1,"prev")},next:function(){this.setSlide(this.index+1,"next")},pause:function(e){e||(this.isPaused=!0),this.clearInterval()},start:function(e){e||(this.isPaused=!1),this.clearInterval(),this.interval&&this.numSlides>1&&(this.$_interval=setInterval(this.next,Object(ne["d"])(1e3,this.interval)))},restart:function(){this.$el.contains(Object(H["g"])())||this.start()},doSlide:function(e,t){var n=this,i=Boolean(this.interval),r=this.calcDirection(this.direction,t,e),o=r.overlayClass,a=r.dirClass,s=this.slides[t],c=this.slides[e];if(s&&c){if(this.isSliding=!0,i&&this.pause(!1),this.$emit(Y["W"],e),this.$emit(Ir,this.index),this.noAnimation)Object(H["b"])(c,"active"),Object(H["A"])(s,"active"),this.isSliding=!1,this.$nextTick((function(){return n.$emit(Y["V"],e)}));else{Object(H["b"])(c,o),Object(H["y"])(c),Object(H["b"])(s,a),Object(H["b"])(c,a);var u=!1,d=function t(){if(!u){if(u=!0,n.transitionEndEvent){var i=n.transitionEndEvent.split(/\s+/);i.forEach((function(e){return Object(dt["a"])(c,e,t,Y["cb"])}))}n.clearAnimationTimeout(),Object(H["A"])(c,a),Object(H["A"])(c,o),Object(H["b"])(c,"active"),Object(H["A"])(s,"active"),Object(H["A"])(s,a),Object(H["A"])(s,o),Object(H["G"])(s,"aria-current","false"),Object(H["G"])(c,"aria-current","true"),Object(H["G"])(s,"aria-hidden","true"),Object(H["G"])(c,"aria-hidden","false"),n.isSliding=!1,n.direction=null,n.$nextTick((function(){return n.$emit(Y["V"],e)}))}};if(this.transitionEndEvent){var l=this.transitionEndEvent.split(/\s+/);l.forEach((function(e){return Object(dt["b"])(c,e,d,Y["cb"])}))}this.$_animationTimeout=setTimeout(d,Rr)}i&&this.start(!1)}},updateSlides:function(){this.pause(!0),this.slides=Object(H["F"])(".carousel-item",this.$refs.inner);var e=this.slides.length,t=Object(ne["d"])(0,Object(ne["e"])(Object(ne["c"])(this.index),e-1));this.slides.forEach((function(n,i){var r=i+1;i===t?(Object(H["b"])(n,"active"),Object(H["G"])(n,"aria-current","true")):(Object(H["A"])(n,"active"),Object(H["G"])(n,"aria-current","false")),Object(H["G"])(n,"aria-posinset",String(r)),Object(H["G"])(n,"aria-setsize",String(e))})),this.setSlide(t),this.start(this.isPaused)},calcDirection:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;return e?Br[e]:n>t?Br.next:Br.prev},handleClick:function(e,t){var n=e.keyCode;"click"!==e.type&&n!==st&&n!==et||(Object(dt["f"])(e),t())},handleSwipe:function(){var e=Object(ne["a"])(this.touchDeltaX);if(!(e<=zr)){var t=e/this.touchDeltaX;this.touchDeltaX=0,t>0?this.prev():t<0&&this.next()}},touchStart:function(e){r["e"]&&Wr[e.pointerType.toUpperCase()]?this.touchStartX=e.clientX:r["e"]||(this.touchStartX=e.touches[0].clientX)},touchMove:function(e){e.touches&&e.touches.length>1?this.touchDeltaX=0:this.touchDeltaX=e.touches[0].clientX-this.touchStartX},touchEnd:function(e){r["e"]&&Wr[e.pointerType.toUpperCase()]&&(this.touchDeltaX=e.clientX-this.touchStartX),this.handleSwipe(),this.pause(!1),this.clearTouchTimeout(),this.$_touchTimeout=setTimeout(this.start,Nr+Object(ne["d"])(1e3,this.interval))}},render:function(e){var t=this,n=this.indicators,i=this.background,o=this.noAnimation,a=this.noHoverPause,s=this.noTouch,c=this.index,u=this.isSliding,d=this.pause,l=this.restart,f=this.touchStart,p=this.touchEnd,h=this.safeId("__BV_inner_"),m=e("div",{staticClass:"carousel-inner",attrs:{id:h,role:"list"},ref:"inner"},[this.normalizeSlot()]),b=e();if(this.controls){var g=function(n,i,r){var o=function(e){u?Object(dt["f"])(e,{propagation:!1}):t.handleClick(e,r)};return e("a",{staticClass:"carousel-control-".concat(n),attrs:{href:"#",role:"button","aria-controls":h,"aria-disabled":u?"true":null},on:{click:o,keydown:o}},[e("span",{staticClass:"carousel-control-".concat(n,"-icon"),attrs:{"aria-hidden":"true"}}),e("span",{class:"sr-only"},[i])])};b=[g("prev",this.labelPrev,this.prev),g("next",this.labelNext,this.next)]}var v=e("ol",{staticClass:"carousel-indicators",directives:[{name:"show",value:n}],attrs:{id:this.safeId("__BV_indicators_"),"aria-hidden":n?"false":"true","aria-label":this.labelIndicators,"aria-owns":h}},this.slides.map((function(i,r){var o=function(e){t.handleClick(e,(function(){t.setSlide(r)}))};return e("li",{class:{active:r===c},attrs:{role:"button",id:t.safeId("__BV_indicator_".concat(r+1,"_")),tabindex:n?"0":"-1","aria-current":r===c?"true":"false","aria-label":"".concat(t.labelGotoSlide," ").concat(r+1),"aria-describedby":i.id||null,"aria-controls":h},on:{click:o,keydown:o},key:"slide_".concat(r)})}))),y={mouseenter:a?Lr:d,mouseleave:a?Lr:l,focusin:d,focusout:l,keydown:function(e){if(!/input|textarea/i.test(e.target.tagName)){var n=e.keyCode;n!==it&&n!==at||(Object(dt["f"])(e),t[n===it?"prev":"next"]())}}};return r["g"]&&!s&&(r["e"]?(y["&pointerdown"]=f,y["&pointerup"]=p):(y["&touchstart"]=f,y["&touchmove"]=this.touchMove,y["&touchend"]=p)),e("div",{staticClass:"carousel",class:{slide:!o,"carousel-fade":!o&&this.fade,"pointer-event":r["g"]&&r["e"]&&!s},style:{background:i},attrs:{role:"region",id:this.safeId(),"aria-busy":u?"true":"false"},on:y},[m,b,v])}});function Jr(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,i)}return n}function Kr(e){for(var t=1;t0?(Object(H["G"])(e,Fo,i.join(" ")),Object(H["H"])(e,No,"none")):(Object(H["z"])(e,Fo),Object(H["C"])(e,No)),Object(H["D"])((function(){Xo(e,n)})),Object(ei["a"])(i,e[Eo])||(e[Eo]=i,i.forEach((function(e){n.context.$root.$emit(Uo,e)})))}},ia={bind:function(e,t,n){e[Co]=!1,e[Eo]=[],Qo(e,n),na(e,t,n)},componentUpdated:na,updated:na,unbind:function(e,t,n){Ko(e),Zo(e,n),ta(e,Po),ta(e,Yo),ta(e,Co),ta(e,Eo),Object(H["A"])(e,So),Object(H["A"])(e,Do),Object(H["z"])(e,Io),Object(H["z"])(e,Fo),Object(H["z"])(e,Bo),Object(H["C"])(e,No)}},ra=M({directives:{VBToggle:ia}}),oa=M({components:{BCollapse:To},plugins:{VBTogglePlugin:ra}}),aa=n("f0bd"),sa="top-start",ca="top-end",ua="bottom-start",da="bottom-end",la="right-start",fa="left-start",pa=n("ca88"),ha=n("6d40"),ma=i["default"].extend({data:function(){return{listenForClickOut:!1}},watch:{listenForClickOut:function(e,t){e!==t&&(Object(dt["a"])(this.clickOutElement,this.clickOutEventName,this._clickOutHandler,Y["cb"]),e&&Object(dt["b"])(this.clickOutElement,this.clickOutEventName,this._clickOutHandler,Y["cb"]))}},beforeCreate:function(){this.clickOutElement=null,this.clickOutEventName=null},mounted:function(){this.clickOutElement||(this.clickOutElement=document),this.clickOutEventName||(this.clickOutEventName="click"),this.listenForClickOut&&Object(dt["b"])(this.clickOutElement,this.clickOutEventName,this._clickOutHandler,Y["cb"])},beforeDestroy:function(){Object(dt["a"])(this.clickOutElement,this.clickOutEventName,this._clickOutHandler,Y["cb"])},methods:{isClickOut:function(e){return!Object(H["f"])(this.$el,e.target)},_clickOutHandler:function(e){this.clickOutHandler&&this.isClickOut(e)&&this.clickOutHandler(e)}}}),ba=i["default"].extend({data:function(){return{listenForFocusIn:!1}},watch:{listenForFocusIn:function(e,t){e!==t&&(Object(dt["a"])(this.focusInElement,"focusin",this._focusInHandler,Y["cb"]),e&&Object(dt["b"])(this.focusInElement,"focusin",this._focusInHandler,Y["cb"]))}},beforeCreate:function(){this.focusInElement=null},mounted:function(){this.focusInElement||(this.focusInElement=document),this.listenForFocusIn&&Object(dt["b"])(this.focusInElement,"focusin",this._focusInHandler,Y["cb"])},beforeDestroy:function(){Object(dt["a"])(this.focusInElement,"focusin",this._focusInHandler,Y["cb"])},methods:{_focusInHandler:function(e){this.focusInHandler&&this.focusInHandler(e)}}});function ga(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,i)}return n}function va(e){for(var t=1;t0&&void 0!==arguments[0]&&arguments[0];this.disabled||(this.visible=!1,e&&this.$once(Y["v"],this.focusToggler))},toggle:function(e){e=e||{};var t=e,n=t.type,i=t.keyCode;("click"===n||"keydown"===n&&-1!==[et,st,Ze].indexOf(i))&&(this.disabled?this.visible=!1:(this.$emit(Y["Z"],e),Object(dt["f"])(e),this.visible?this.hide(!0):this.show()))},onMousedown:function(e){Object(dt["f"])(e,{propagation:!1})},onKeydown:function(e){var t=e.keyCode;t===tt?this.onEsc(e):t===Ze?this.focusNext(e,!1):t===ct&&this.focusNext(e,!0)},onEsc:function(e){this.visible&&(this.visible=!1,Object(dt["f"])(e),this.$once(Y["v"],this.focusToggler))},onSplitClick:function(e){this.disabled?this.visible=!1:this.$emit(Y["f"],e)},hideHandler:function(e){var t=this,n=e.target;!this.visible||Object(H["f"])(this.$refs.menu,n)||Object(H["f"])(this.toggler,n)||(this.clearHideTimeout(),this.$_hideTimeout=setTimeout((function(){return t.hide()}),this.inNavbar?300:0))},clickOutHandler:function(e){this.hideHandler(e)},focusInHandler:function(e){this.hideHandler(e)},focusNext:function(e,t){var n=this,i=e.target;!this.visible||e&&Object(H["e"])(ja,i)||(Object(dt["f"])(e),this.$nextTick((function(){var e=n.getItems();if(!(e.length<1)){var r=e.indexOf(i);t&&r>0?r--:!t&&r1&&void 0!==arguments[1]?arguments[1]:null;if(Object(u["k"])(e)){var n=l(e,this.valueField),i=l(e,this.textField);return{value:Object(u["o"])(n)?t||i:n,text:Gt(String(Object(u["o"])(i)?t:i)),html:l(e,this.htmlField),disabled:Boolean(l(e,this.disabledField))}}return{value:t||e,text:Gt(String(e)),disabled:!1}},normalizeOptions:function(e){var t=this;return Object(u["a"])(e)?e.map((function(e){return t.normalizeOption(e)})):Object(u["k"])(e)?(Object(p["a"])(_s,this.$options.name),Object(f["h"])(e).map((function(n){return t.normalizeOption(e[n]||{},n)}))):[]}}});function ws(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,i)}return n}function ks(e){for(var t=1;t-1:Object(ei["a"])(t,e)},isRadio:function(){return!1}},watch:uc({},dc,(function(e,t){Object(ei["a"])(e,t)||this.setIndeterminate(e)})),mounted:function(){this.setIndeterminate(this[dc])},methods:{computedLocalCheckedWatcher:function(e,t){if(!Object(ei["a"])(e,t)){this.$emit(rc,e);var n=this.$refs.input;n&&this.$emit(lc,n.indeterminate)}},handleChange:function(e){var t=this,n=e.target,i=n.checked,r=n.indeterminate,o=this.value,a=this.uncheckedValue,s=this.computedLocalChecked;if(Object(u["a"])(s)){var c=Bs(s,o);i&&c<0?s=s.concat(o):!i&&c>-1&&(s=s.slice(0,c).concat(s.slice(c+1)))}else s=i?o:a;this.computedLocalChecked=s,this.$nextTick((function(){t.$emit(Y["d"],s),t.isGroup&&t.bvGroup.$emit(Y["d"],s),t.$emit(lc,r)}))},setIndeterminate:function(e){Object(u["a"])(this.computedLocalChecked)&&(e=!1);var t=this.$refs.input;t&&(t.indeterminate=e,this.$emit(lc,e))}}});function hc(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,i)}return n}function mc(e){for(var t=1;t0&&(c=[e("div",{staticClass:"b-form-date-controls d-flex flex-wrap",class:{"justify-content-between":c.length>1,"justify-content-end":c.length<2}},c)]);var h=e(fi,{staticClass:"b-form-date-calendar w-100",props:Zc(Zc({},Object(I["e"])(au,o)),{},{hidden:!this.isVisible,value:t,valueAsDate:!1,width:this.calendarWidth}),on:{selected:this.onSelected,input:this.onInput,context:this.onContext},scopedSlots:Object(f["k"])(a,["nav-prev-decade","nav-prev-year","nav-prev-month","nav-this-month","nav-next-month","nav-next-year","nav-next-decade"]),key:"calendar",ref:"calendar"},c);return e(Kc,{staticClass:"b-form-datepicker",props:Zc(Zc({},Object(I["e"])(su,o)),{},{formattedValue:t?this.formattedValue:"",id:this.safeId(),lang:this.computedLang,menuClass:[{"bg-dark":r,"text-light":r},this.menuClass],placeholder:s,rtl:this.isRTL,value:t}),on:{show:this.onShow,shown:this.onShown,hidden:this.onHidden},scopedSlots:Qc({},E["f"],a[E["f"]]||this.defaultButtonFn),ref:"control"},[h])}}),du=M({components:{BFormDatepicker:uu,BDatepicker:uu}});function lu(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,i)}return n}function fu(e){for(var t=1;t1&&void 0!==arguments[1])||arguments[1];return Promise.all(Object(ut["f"])(e).filter((function(e){return"file"===e.kind})).map((function(e){var n=Ou(e);if(n){if(n.isDirectory&&t)return wu(n.createReader(),"".concat(n.name,"/"));if(n.isFile)return new Promise((function(e){n.file((function(t){t.$path="",e(t)}))}))}return null})).filter(c["a"]))},wu=function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";return new Promise((function(i){var r=[],o=function o(){t.readEntries((function(t){0===t.length?i(Promise.all(r).then((function(e){return Object(ut["d"])(e)}))):(r.push(Promise.all(t.map((function(t){if(t){if(t.isDirectory)return e(t.createReader(),"".concat(n).concat(t.name,"/"));if(t.isFile)return new Promise((function(e){t.file((function(t){t.$path="".concat(n).concat(t.name),e(t)}))}))}return null})).filter(c["a"]))),o())}))};o()}))},ku=Object(I["d"])(Object(f["m"])(fu(fu(fu(fu(fu(fu(fu({},ni["b"]),bu),Ns),Ws),qs),Us),{},{accept:Object(I["c"])(C["u"],""),browseText:Object(I["c"])(C["u"],"Browse"),capture:Object(I["c"])(C["g"],!1),directory:Object(I["c"])(C["g"],!1),dropPlaceholder:Object(I["c"])(C["u"],"Drop files here"),fileNameFormatter:Object(I["c"])(C["l"]),multiple:Object(I["c"])(C["g"],!1),noDrop:Object(I["c"])(C["g"],!1),noDropPlaceholder:Object(I["c"])(C["u"],"Not allowed"),noTraverse:Object(I["c"])(C["g"],!1),placeholder:Object(I["c"])(C["u"],"No file chosen")})),P["S"]),Mu=i["default"].extend({name:P["S"],mixins:[ti["a"],ni["a"],mu,B["a"],zs,Js,Vs,B["a"]],inheritAttrs:!1,props:ku,data:function(){return{files:[],dragging:!1,dropAllowed:!this.noDrop,hasFocus:!1}},computed:{computedAccept:function(){var e=this.accept;return e=(e||"").trim().split(/[,\s]+/).filter(c["a"]),0===e.length?null:e.map((function(e){var t="name",n="^",i="$";s["k"].test(e)?n="":(t="type",s["y"].test(e)&&(i=".+$",e=e.slice(0,-1))),e=Object(me["a"])(e);var r=new RegExp("".concat(n).concat(e).concat(i));return{rx:r,prop:t}}))},computedCapture:function(){var e=this.capture;return!0===e||""===e||(e||null)},computedAttrs:function(){var e=this.name,t=this.disabled,n=this.required,i=this.form,r=this.computedCapture,o=this.accept,a=this.multiple,s=this.directory;return fu(fu({},this.bvAttrs),{},{type:"file",id:this.safeId(),name:e,disabled:t,required:n,form:i||null,capture:r,accept:o||null,multiple:a,directory:s,webkitdirectory:s,"aria-required":n?"true":null})},computedFileNameFormatter:function(){var e=this.fileNameFormatter;return Object(I["b"])(e)?e:this.defaultFileNameFormatter},clonedFiles:function(){return Object(a["a"])(this.files)},flattenedFiles:function(){return Object(ut["e"])(this.files)},fileNames:function(){return this.flattenedFiles.map((function(e){return e.name}))},labelContent:function(){if(this.dragging&&!this.noDrop)return this.normalizeSlot(E["l"],{allowed:this.dropAllowed})||(this.dropAllowed?this.dropPlaceholder:this.$createElement("span",{staticClass:"text-danger"},this.noDropPlaceholder));if(0===this.files.length)return this.normalizeSlot(E["X"])||this.placeholder;var e=this.flattenedFiles,t=this.clonedFiles,n=this.fileNames,i=this.computedFileNameFormatter;return this.hasNormalizedSlot(E["p"])?this.normalizeSlot(E["p"],{files:e,filesTraversed:t,names:n}):i(e,t,n)}},watch:(eu={},pu(eu,gu,(function(e){(!e||Object(u["a"])(e)&&0===e.length)&&this.reset()})),pu(eu,"files",(function(e,t){if(!Object(ei["a"])(e,t)){var n=this.multiple,i=this.noTraverse,r=!n||i?Object(ut["e"])(e):e;this.$emit(vu,n?r:r[0]||null)}})),eu),created:function(){this.$_form=null},mounted:function(){var e=Object(H["e"])("form",this.$el);e&&(Object(dt["b"])(e,"reset",this.reset,Y["db"]),this.$_form=e)},beforeDestroy:function(){var e=this.$_form;e&&Object(dt["a"])(e,"reset",this.reset,Y["db"])},methods:{isFileValid:function(e){if(!e)return!1;var t=this.computedAccept;return!t||t.some((function(t){return t.rx.test(e[t.prop])}))},isFilesArrayValid:function(e){var t=this;return Object(u["a"])(e)?e.every((function(e){return t.isFileValid(e)})):this.isFileValid(e)},defaultFileNameFormatter:function(e,t,n){return n.join(", ")},setFiles:function(e){this.dropAllowed=!this.noDrop,this.dragging=!1,this.files=this.multiple?this.directory?e:Object(ut["e"])(e):Object(ut["e"])(e).slice(0,1)},setInputFiles:function(e){try{var t=new ClipboardEvent("").clipboardData||new DataTransfer;Object(ut["e"])(Object(a["a"])(e)).forEach((function(e){delete e.$path,t.items.add(e)})),this.$refs.input.files=t.files}catch(n){}},reset:function(){try{var e=this.$refs.input;e.value="",e.type="",e.type="file"}catch(t){}this.files=[]},handleFiles:function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(t){var n=e.filter(this.isFilesArrayValid);n.length>0&&(this.setFiles(n),this.setInputFiles(n))}else this.setFiles(e)},focusHandler:function(e){this.plain||"focusout"===e.type?this.hasFocus=!1:this.hasFocus=!0},onChange:function(e){var t=this,n=e.type,i=e.target,o=e.dataTransfer,a=void 0===o?{}:o,s="drop"===n;this.$emit(Y["d"],e);var c=Object(ut["f"])(a.items||[]);if(r["f"]&&c.length>0&&!Object(u["g"])(Ou(c[0])))ju(c,this.directory).then((function(e){return t.handleFiles(e,s)}));else{var d=Object(ut["f"])(i.files||a.files||[]).map((function(e){return e.$path=e.webkitRelativePath||"",e}));this.handleFiles(d,s)}},onDragenter:function(e){Object(dt["f"])(e),this.dragging=!0;var t=e.dataTransfer,n=void 0===t?{}:t;if(this.noDrop||this.disabled||!this.dropAllowed)return n.dropEffect="none",void(this.dropAllowed=!1);n.dropEffect="copy"},onDragover:function(e){Object(dt["f"])(e),this.dragging=!0;var t=e.dataTransfer,n=void 0===t?{}:t;if(this.noDrop||this.disabled||!this.dropAllowed)return n.dropEffect="none",void(this.dropAllowed=!1);n.dropEffect="copy"},onDragleave:function(e){var t=this;Object(dt["f"])(e),this.$nextTick((function(){t.dragging=!1,t.dropAllowed=!t.noDrop}))},onDrop:function(e){var t=this;Object(dt["f"])(e),this.dragging=!1,this.noDrop||this.disabled||!this.dropAllowed?this.$nextTick((function(){t.dropAllowed=!t.noDrop})):this.onChange(e)}},render:function(e){var t=this.custom,n=this.plain,i=this.size,r=this.dragging,o=this.stateClass,a=this.bvAttrs,s=e("input",{class:[{"form-control-file":n,"custom-file-input":t,focus:t&&this.hasFocus},o],style:t?{zIndex:-5}:{},attrs:this.computedAttrs,on:{change:this.onChange,focusin:this.focusHandler,focusout:this.focusHandler,reset:this.reset},ref:"input"});if(n)return s;var c=e("label",{staticClass:"custom-file-label",class:{dragging:r},attrs:{for:this.safeId(),"data-browse":this.browseText||null}},[e("span",{staticClass:"d-block form-file-text",style:{pointerEvents:"none"}},[this.labelContent])]);return e("div",{staticClass:"custom-file b-form-file",class:[pu({},"b-custom-control-".concat(i),i),o,a.class],style:a.style,attrs:{id:this.safeId("_BV_file_outer_")},on:{dragenter:this.onDragenter,dragover:this.onDragover,dragleave:this.onDragleave,drop:this.onDrop}},[s,c])}}),Lu=M({components:{BFormFile:Mu,BFile:Mu}}),xu=n("228e"),Tu=function(e){return"\\"+e},Su=function(e){e=Object(me["g"])(e);var t=e.length,n=e.charCodeAt(0);return e.split("").reduce((function(i,r,o){var a=e.charCodeAt(o);return 0===a?i+"�":127===a||a>=1&&a<=31||0===o&&a>=48&&a<=57||1===o&&a>=48&&a<=57&&45===n?i+Tu("".concat(a.toString(16)," ")):0===o&&45===a&&1===t?i+Tu(r):a>=128||45===a||95===a||a>=48&&a<=57||a>=65&&a<=90||a>=97&&a<=122?i+r:i+Tu(r)}),"")},Du=n("b508");function Au(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,i)}return n}function Pu(e){for(var t=1;t0||Object(f["h"])(this.labelColProps).length>0}},watch:{ariaDescribedby:function(e,t){e!==t&&this.updateAriaDescribedby(e,t)}},mounted:function(){var e=this;this.$nextTick((function(){e.updateAriaDescribedby(e.ariaDescribedby)}))},methods:{getAlignClasses:function(e,t){return Object(xu["b"])().reduce((function(n,i){var r=e[Object(I["g"])(i,"".concat(t,"Align"))]||null;return r&&n.push(["text",i,r].filter(c["a"]).join("-")),n}),[])},getColProps:function(e,t){return Object(xu["b"])().reduce((function(n,i){var r=e[Object(I["g"])(i,"".concat(t,"Cols"))];return r=""===r||(r||!1),Object(u["b"])(r)||"auto"===r||(r=Object(F["c"])(r,0),r=r>0&&r),r&&(n[i||(Object(u["b"])(r)?"col":"cols")]=r),n}),{})},updateAriaDescribedby:function(e,t){var n=this.labelFor;if(r["i"]&&n){var i=Object(H["E"])("#".concat(Su(n)),this.$refs.content);if(i){var o="aria-describedby",a=(e||"").split(s["x"]),u=(t||"").split(s["x"]),d=(Object(H["h"])(i,o)||"").split(s["x"]).filter((function(e){return!Object(ut["a"])(u,e)})).concat(a).filter((function(e,t,n){return n.indexOf(e)===t})).filter(c["a"]).join(" ").trim();d?Object(H["G"])(i,o,d):Object(H["z"])(i,o)}}},onLegendClick:function(e){if(!this.labelFor){var t=e.target,n=t?t.tagName:"";if(-1===Vu.indexOf(n)){var i=Object(H["F"])(Wu,this.$refs.content).filter(H["u"]);1===i.length&&Object(H["d"])(i[0])}}}},render:function(e){var t=this.computedState,n=this.feedbackAriaLive,i=this.isHorizontal,r=this.labelFor,o=this.normalizeSlot,a=this.safeId,s=this.tooltip,u=a(),d=!r,l=e(),f=o(E["C"])||this.label,p=f?a("_BV_label_"):null;if(f||i){var h=this.labelSize,m=this.labelColProps,b=d?"legend":"label";this.labelSrOnly?(f&&(l=e(b,{class:"sr-only",attrs:{id:p,for:r||null}},[f])),l=e(i?Iu:"div",{props:i?m:{}},[l])):l=e(i?Iu:b,{on:d?{click:this.onLegendClick}:{},props:i?Ru(Ru({},m),{},{tag:b}):{},attrs:{id:p,for:r||null,tabindex:d?"-1":null},class:[d?"bv-no-focus-ring":"",i||d?"col-form-label":"",!i&&d?"pt-0":"",i||d?"":"d-block",h?"col-form-label-".concat(h):"",this.labelAlignClasses,this.labelClass]},[f])}var g=e(),v=o(E["B"])||this.invalidFeedback,y=v?a("_BV_feedback_invalid_"):null;v&&(g=e(Cs,{props:{ariaLive:n,id:y,role:n?"alert":null,state:t,tooltip:s},attrs:{tabindex:v?"-1":null}},[v]));var _=e(),O=o(E["lb"])||this.validFeedback,j=O?a("_BV_feedback_valid_"):null;O&&(_=e(Hs,{props:{ariaLive:n,id:j,role:n?"alert":null,state:t,tooltip:s},attrs:{tabindex:O?"-1":null}},[O]));var w=e(),k=o(E["j"])||this.description,M=k?a("_BV_description_"):null;k&&(w=e(Ps,{attrs:{id:M,tabindex:"-1"}},[k]));var L=this.ariaDescribedby=[M,!1===t?y:null,!0===t?j:null].filter(c["a"]).join(" ")||null,x=e(i?Iu:"div",{props:i?this.contentColProps:{},ref:"content"},[o(E["i"],{ariaDescribedby:L,descriptionId:M,id:u,labelId:p})||e(),g,_,w]);return e(d?"fieldset":i?Fs:"div",{staticClass:"form-group",class:[{"was-validated":this.validated},this.stateClass],attrs:{id:u,disabled:d?this.disabled:null,role:d?null:"group","aria-invalid":this.computedAriaInvalid,"aria-labelledby":d&&i?p:null}},i&&d?[e(Fs,[l,x])]:[l,x])}},qu=M({components:{BFormGroup:Gu,BFormFieldset:Gu}}),Ju=i["default"].extend({computed:{selectionStart:{cache:!1,get:function(){return this.$refs.input.selectionStart},set:function(e){this.$refs.input.selectionStart=e}},selectionEnd:{cache:!1,get:function(){return this.$refs.input.selectionEnd},set:function(e){this.$refs.input.selectionEnd=e}},selectionDirection:{cache:!1,get:function(){return this.$refs.input.selectionDirection},set:function(e){this.$refs.input.selectionDirection=e}}},methods:{select:function(){var e;(e=this.$refs.input).select.apply(e,arguments)},setSelectionRange:function(){var e;(e=this.$refs.input).setSelectionRange.apply(e,arguments)},setRangeText:function(){var e;(e=this.$refs.input).setRangeText.apply(e,arguments)}}});function Ku(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,i)}return n}function Xu(e){for(var t=1;t2&&void 0!==arguments[2]&&arguments[2];return e=Object(me["g"])(e),!this.hasFormatter||this.lazyFormatter&&!n||(e=this.formatter(e,t)),e},modifyValue:function(e){return e=Object(me["g"])(e),this.trim&&(e=e.trim()),this.number&&(e=Object(F["b"])(e,e)),e},updateValue:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]&&arguments[1],i=this.lazy;if(!i||n){this.clearDebounce();var r=function(){if(e=t.modifyValue(e),e!==t.vModelValue)t.vModelValue=e,t.$emit(id,e);else if(t.hasFormatter){var n=t.$refs.input;n&&e!==n.value&&(n.value=e)}},o=this.computedDebounce;o>0&&!i&&!n?this.$_inputDebounceTimer=setTimeout(r,o):r()}},onInput:function(e){if(!e.target.composing){var t=e.target.value,n=this.formatValue(t,e);!1===n||e.defaultPrevented?Object(dt["f"])(e,{propagation:!1}):(this.localValue=n,this.updateValue(n),this.$emit(Y["y"],n))}},onChange:function(e){var t=e.target.value,n=this.formatValue(t,e);!1===n||e.defaultPrevented?Object(dt["f"])(e,{propagation:!1}):(this.localValue=n,this.updateValue(n,!0),this.$emit(Y["d"],n))},onBlur:function(e){var t=e.target.value,n=this.formatValue(t,e,!0);!1!==n&&(this.localValue=Object(me["g"])(this.modifyValue(n)),this.updateValue(n,!0)),this.$emit(Y["b"],e)},focus:function(){this.disabled||Object(H["d"])(this.$el)},blur:function(){this.disabled||Object(H["c"])(this.$el)}}}),ad=i["default"].extend({computed:{validity:{cache:!1,get:function(){return this.$refs.input.validity}},validationMessage:{cache:!1,get:function(){return this.$refs.input.validationMessage}},willValidate:{cache:!1,get:function(){return this.$refs.input.willValidate}}},methods:{setCustomValidity:function(){var e;return(e=this.$refs.input).setCustomValidity.apply(e,arguments)},checkValidity:function(){var e;return(e=this.$refs.input).checkValidity.apply(e,arguments)},reportValidity:function(){var e;return(e=this.$refs.input).reportValidity.apply(e,arguments)}}}),sd=n("bc9a");function cd(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,i)}return n}function ud(e){for(var t=1;t=n?"full":t>=n-.5?"half":"empty",d={variant:o,disabled:a,readonly:s};return e("span",{staticClass:"b-rating-star",class:{focused:i&&t===n||!Object(F["c"])(t)&&n===c,"b-rating-star-empty":"empty"===u,"b-rating-star-half":"half"===u,"b-rating-star-full":"full"===u},attrs:{tabindex:a||s?null:"-1"},on:{click:this.onClick}},[e("span",{staticClass:"b-rating-icon"},[this.normalizeSlot(u,d)])])}}),Pd=Object(I["d"])(Object(f["m"])(_d(_d(_d(_d(_d({},ni["b"]),kd),Object(f["j"])(Ns,["required","autofocus"])),Us),{},{color:Object(I["c"])(C["u"]),iconClear:Object(I["c"])(C["u"],"x"),iconEmpty:Object(I["c"])(C["u"],"star"),iconFull:Object(I["c"])(C["u"],"star-fill"),iconHalf:Object(I["c"])(C["u"],"star-half"),inline:Object(I["c"])(C["g"],!1),locale:Object(I["c"])(C["f"]),noBorder:Object(I["c"])(C["g"],!1),precision:Object(I["c"])(C["p"]),readonly:Object(I["c"])(C["g"],!1),showClear:Object(I["c"])(C["g"],!1),showValue:Object(I["c"])(C["g"],!1),showValueMax:Object(I["c"])(C["g"],!1),stars:Object(I["c"])(C["p"],Td,(function(e){return Object(F["c"])(e)>=xd})),variant:Object(I["c"])(C["u"])})),P["Y"]),Yd=i["default"].extend({name:P["Y"],components:{BIconStar:Ie,BIconStarHalf:Re,BIconStarFill:Be,BIconX:Ne},mixins:[ni["a"],wd,Gs],props:Pd,data:function(){var e=Object(F["b"])(this[Md],null),t=Sd(this.stars);return{localValue:Object(u["g"])(e)?null:Dd(e,0,t),hasFocus:!1}},computed:{computedStars:function(){return Sd(this.stars)},computedRating:function(){var e=Object(F["b"])(this.localValue,0),t=Object(F["c"])(this.precision,3);return Dd(Object(F["b"])(e.toFixed(t)),0,this.computedStars)},computedLocale:function(){var e=Object(ut["b"])(this.locale).filter(c["a"]),t=new Intl.NumberFormat(e);return t.resolvedOptions().locale},isInteractive:function(){return!this.disabled&&!this.readonly},isRTL:function(){return Qn(this.computedLocale)},formattedRating:function(){var e=Object(F["c"])(this.precision),t=this.showValueMax,n=this.computedLocale,i={notation:"standard",minimumFractionDigits:isNaN(e)?0:e,maximumFractionDigits:isNaN(e)?3:e},r=this.computedStars.toLocaleString(n),o=this.localValue;return o=Object(u["g"])(o)?t?"-":"":o.toLocaleString(n,i),t?"".concat(o,"/").concat(r):o}},watch:(ld={},Od(ld,Md,(function(e,t){if(e!==t){var n=Object(F["b"])(e,null);this.localValue=Object(u["g"])(n)?null:Dd(n,0,this.computedStars)}})),Od(ld,"localValue",(function(e,t){e!==t&&e!==(this.value||0)&&this.$emit(Ld,e||null)})),Od(ld,"disabled",(function(e){e&&(this.hasFocus=!1,this.blur())})),ld),methods:{focus:function(){this.disabled||Object(H["d"])(this.$el)},blur:function(){this.disabled||Object(H["c"])(this.$el)},onKeydown:function(e){var t=e.keyCode;if(this.isInteractive&&Object(ut["a"])([it,Ze,at,ct],t)){Object(dt["f"])(e,{propagation:!1});var n=Object(F["c"])(this.localValue,0),i=this.showClear?0:1,r=this.computedStars,o=this.isRTL?-1:1;t===it?this.localValue=Dd(n-o,i,r)||null:t===at?this.localValue=Dd(n+o,i,r):t===Ze?this.localValue=Dd(n-1,i,r)||null:t===ct&&(this.localValue=Dd(n+1,i,r))}},onSelected:function(e){this.isInteractive&&(this.localValue=e)},onFocus:function(e){this.hasFocus=!!this.isInteractive&&"focus"===e.type},renderIcon:function(e){return this.$createElement(Je,{props:{icon:e,variant:this.disabled||this.color?null:this.variant||null}})},iconEmptyFn:function(){return this.renderIcon(this.iconEmpty)},iconHalfFn:function(){return this.renderIcon(this.iconHalf)},iconFullFn:function(){return this.renderIcon(this.iconFull)},iconClearFn:function(){return this.$createElement(Je,{props:{icon:this.iconClear}})}},render:function(e){var t=this,n=this.disabled,i=this.readonly,r=this.name,o=this.form,a=this.inline,s=this.variant,c=this.color,d=this.noBorder,l=this.hasFocus,f=this.computedRating,p=this.computedStars,h=this.formattedRating,m=this.showClear,b=this.isRTL,g=this.isInteractive,v=this.$scopedSlots,y=[];if(m&&!n&&!i){var _=e("span",{staticClass:"b-rating-icon"},[(v[E["v"]]||this.iconClearFn)()]);y.push(e("span",{staticClass:"b-rating-star b-rating-star-clear flex-grow-1",class:{focused:l&&0===f},attrs:{tabindex:g?"-1":null},on:{click:function(){return t.onSelected(null)}},key:"clear"},[_]))}for(var O=0;O1&&void 0!==arguments[1]?arguments[1]:null;if(Object(u["k"])(e)){var n=l(e,this.valueField),i=l(e,this.textField),r=l(e,this.optionsField,null);return Object(u["g"])(r)?{value:Object(u["o"])(n)?t||i:n,text:String(Object(u["o"])(i)?t:i),html:l(e,this.htmlField),disabled:Boolean(l(e,this.disabledField))}:{label:String(l(e,this.labelField)||i),options:this.normalizeOptions(r)}}return{value:t||e,text:String(e),disabled:!1}}}}),Vd=Object(I["d"])({disabled:Object(I["c"])(C["g"],!1),value:Object(I["c"])(C["a"],void 0,!0)},P["cb"]),Ud=i["default"].extend({name:P["cb"],functional:!0,props:Vd,render:function(e,t){var n=t.props,i=t.data,r=t.children,o=n.value,a=n.disabled;return e("option",Object(he["a"])(i,{attrs:{disabled:a},domProps:{value:o}}),r)}});function Gd(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,i)}return n}function qd(e){for(var t=1;t0?e:bl},computedInterval:function(){var e=Object(F["c"])(this.repeatInterval,0);return e>0?e:gl},computedThreshold:function(){return Object(ne["d"])(Object(F["c"])(this.repeatThreshold,vl),1)},computedStepMultiplier:function(){return Object(ne["d"])(Object(F["c"])(this.repeatStepMultiplier,yl),1)},computedPrecision:function(){var e=this.computedStep;return Object(ne["c"])(e)===e?0:(e.toString().split(".")[1]||"").length},computedMultiplier:function(){return Object(ne["f"])(10,this.computedPrecision||0)},valueAsFixed:function(){var e=this.localValue;return Object(u["g"])(e)?"":e.toFixed(this.computedPrecision)},computedLocale:function(){var e=Object(ut["b"])(this.locale).filter(c["a"]),t=new Intl.NumberFormat(e);return t.resolvedOptions().locale},computedRTL:function(){return Qn(this.computedLocale)},defaultFormatter:function(){var e=this.computedPrecision,t=new Intl.NumberFormat(this.computedLocale,{style:"decimal",useGrouping:!1,minimumIntegerDigits:1,minimumFractionDigits:e,maximumFractionDigits:e,notation:"standard"});return t.format},computedFormatter:function(){var e=this.formatterFn;return Object(I["b"])(e)?e:this.defaultFormatter},computedAttrs:function(){return al(al({},this.bvAttrs),{},{role:"group",lang:this.computedLocale,tabindex:this.disabled?null:"-1",title:this.ariaLabel})},computedSpinAttrs:function(){var e=this.spinId,t=this.localValue,n=this.computedRequired,i=this.disabled,r=this.state,o=this.computedFormatter,a=!Object(u["g"])(t);return al(al({dir:this.computedRTL?"rtl":"ltr"},this.bvAttrs),{},{id:e,role:"spinbutton",tabindex:i?null:"0","aria-live":"off","aria-label":this.ariaLabel||null,"aria-controls":this.ariaControls||null,"aria-invalid":!1===r||!a&&n?"true":null,"aria-required":n?"true":null,"aria-valuemin":Object(me["g"])(this.computedMin),"aria-valuemax":Object(me["g"])(this.computedMax),"aria-valuenow":a?t:null,"aria-valuetext":a?o(t):null})}},watch:(tl={},sl(tl,ll,(function(e){this.localValue=Object(F["b"])(e,null)})),sl(tl,"localValue",(function(e){this.$emit(fl,e)})),sl(tl,"disabled",(function(e){e&&this.clearRepeat()})),sl(tl,"readonly",(function(e){e&&this.clearRepeat()})),tl),created:function(){this.$_autoDelayTimer=null,this.$_autoRepeatTimer=null,this.$_keyIsDown=!1},beforeDestroy:function(){this.clearRepeat()},deactivated:function(){this.clearRepeat()},methods:{focus:function(){this.disabled||Object(H["d"])(this.$refs.spinner)},blur:function(){this.disabled||Object(H["c"])(this.$refs.spinner)},emitChange:function(){this.$emit(Y["d"],this.localValue)},stepValue:function(e){var t=this.localValue;if(!this.disabled&&!Object(u["g"])(t)){var n=this.computedStep*e,i=this.computedMin,r=this.computedMax,o=this.computedMultiplier,a=this.wrap;t=Object(ne["g"])((t-i)/n)*n+i+n,t=Object(ne["g"])(t*o)/o,this.localValue=t>r?a?i:r:t0&&void 0!==arguments[0]?arguments[0]:1,t=this.localValue;Object(u["g"])(t)?this.localValue=this.computedMin:this.stepValue(1*e)},stepDown:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:1,t=this.localValue;Object(u["g"])(t)?this.localValue=this.wrap?this.computedMax:this.computedMin:this.stepValue(-1*e)},onKeydown:function(e){var t=e.keyCode,n=e.altKey,i=e.ctrlKey,r=e.metaKey;if(!(this.disabled||this.readonly||n||i||r)&&Object(ut["a"])(_l,t)){if(Object(dt["f"])(e,{propagation:!1}),this.$_keyIsDown)return;this.resetTimers(),Object(ut["a"])([ct,Ze],t)?(this.$_keyIsDown=!0,t===ct?this.handleStepRepeat(e,this.stepUp):t===Ze&&this.handleStepRepeat(e,this.stepDown)):t===ot?this.stepUp(this.computedStepMultiplier):t===rt?this.stepDown(this.computedStepMultiplier):t===nt?this.localValue=this.computedMin:t===Qe&&(this.localValue=this.computedMax)}},onKeyup:function(e){var t=e.keyCode,n=e.altKey,i=e.ctrlKey,r=e.metaKey;this.disabled||this.readonly||n||i||r||Object(ut["a"])(_l,t)&&(Object(dt["f"])(e,{propagation:!1}),this.resetTimers(),this.$_keyIsDown=!1,this.emitChange())},handleStepRepeat:function(e,t){var n=this,i=e||{},r=i.type,o=i.button;if(!this.disabled&&!this.readonly){if("mousedown"===r&&o)return;this.resetTimers(),t(1);var a=this.computedThreshold,s=this.computedStepMultiplier,c=this.computedDelay,u=this.computedInterval;this.$_autoDelayTimer=setTimeout((function(){var e=0;n.$_autoRepeatTimer=setInterval((function(){t(ee.length)&&(t=e.length);for(var n=0,i=new Array(t);n0&&n.indexOf(e)===t}))},ql=function(e){return Object(u["n"])(e)?e:Object(u["d"])(e)&&e.target.value||""},Jl=function(){return{all:[],valid:[],invalid:[],duplicate:[]}},Kl=Object(I["d"])(Object(f["m"])($l($l($l($l($l($l({},ni["b"]),Rl),Ns),Us),qs),{},{addButtonText:Object(I["c"])(C["u"],"Add"),addButtonVariant:Object(I["c"])(C["u"],"outline-secondary"),addOnChange:Object(I["c"])(C["g"],!1),duplicateTagText:Object(I["c"])(C["u"],"Duplicate tag(s)"),ignoreInputFocusSelector:Object(I["c"])(C["f"],Vl),inputAttrs:Object(I["c"])(C["q"],{}),inputClass:Object(I["c"])(C["e"]),inputId:Object(I["c"])(C["u"]),inputType:Object(I["c"])(C["u"],"text",(function(e){return Object(ut["a"])(Wl,e)})),invalidTagText:Object(I["c"])(C["u"],"Invalid tag(s)"),limit:Object(I["c"])(C["n"]),limitTagsText:Object(I["c"])(C["u"],"Tag limit reached"),noAddOnEnter:Object(I["c"])(C["g"],!1),noOuterFocus:Object(I["c"])(C["g"],!1),noTagRemove:Object(I["c"])(C["g"],!1),placeholder:Object(I["c"])(C["u"],"Add tag..."),removeOnDelete:Object(I["c"])(C["g"],!1),separator:Object(I["c"])(C["f"]),tagClass:Object(I["c"])(C["e"]),tagPills:Object(I["c"])(C["g"],!1),tagRemoveLabel:Object(I["c"])(C["u"],"Remove tag"),tagRemovedLabel:Object(I["c"])(C["u"],"Tag removed"),tagValidator:Object(I["c"])(C["l"]),tagVariant:Object(I["c"])(C["u"],"secondary")})),P["gb"]),Xl=i["default"].extend({name:P["gb"],mixins:[ni["a"],Bl,zs,Gs,Js,B["a"]],props:Kl,data:function(){return{hasFocus:!1,newTag:"",tags:[],removedTags:[],tagsState:Jl()}},computed:{computedInputId:function(){return this.inputId||this.safeId("__input__")},computedInputType:function(){return Object(ut["a"])(Wl,this.inputType)?this.inputType:"text"},computedInputAttrs:function(){var e=this.disabled,t=this.form;return $l($l({},this.inputAttrs),{},{id:this.computedInputId,value:this.newTag,disabled:e,form:t})},computedInputHandlers:function(){return{input:this.onInputInput,change:this.onInputChange,keydown:this.onInputKeydown,reset:this.reset}},computedSeparator:function(){return Object(ut["b"])(this.separator).filter(u["n"]).filter(c["a"]).join("")},computedSeparatorRegExp:function(){var e=this.computedSeparator;return e?new RegExp("[".concat(Ul(e),"]+")):null},computedJoiner:function(){var e=this.computedSeparator.charAt(0);return" "!==e?"".concat(e," "):e},computeIgnoreInputFocusSelector:function(){return Object(ut["b"])(this.ignoreInputFocusSelector).filter(c["a"]).join(",").trim()},disableAddButton:function(){var e=this,t=Object(me["h"])(this.newTag);return""===t||!this.splitTags(t).some((function(t){return!Object(ut["a"])(e.tags,t)&&e.validateTag(t)}))},duplicateTags:function(){return this.tagsState.duplicate},hasDuplicateTags:function(){return this.duplicateTags.length>0},invalidTags:function(){return this.tagsState.invalid},hasInvalidTags:function(){return this.invalidTags.length>0},isLimitReached:function(){var e=this.limit;return Object(u["h"])(e)&&e>=0&&this.tags.length>=e}},watch:(xl={},Fl(xl,Nl,(function(e){this.tags=Gl(e)})),Fl(xl,"tags",(function(e,t){Object(ei["a"])(e,this[Nl])||this.$emit(zl,e),Object(ei["a"])(e,t)||(e=Object(ut["b"])(e).filter(c["a"]),t=Object(ut["b"])(t).filter(c["a"]),this.removedTags=t.filter((function(t){return!Object(ut["a"])(e,t)})))})),Fl(xl,"tagsState",(function(e,t){Object(ei["a"])(e,t)||this.$emit(Y["Y"],e.valid,e.invalid,e.duplicate)})),xl),created:function(){this.tags=Gl(this[Nl])},mounted:function(){var e=this,t=Object(H["e"])("form",this.$el);t&&(Object(dt["b"])(t,"reset",this.reset,Y["db"]),this.$on(Y["eb"],(function(){Object(dt["a"])(t,"reset",e.reset,Y["db"])})))},methods:{addTag:function(e){if(e=Object(u["n"])(e)?e:this.newTag,!this.disabled&&""!==Object(me["h"])(e)&&!this.isLimitReached){var t=this.parseTags(e);if(t.valid.length>0||0===t.all.length)if(Object(H["v"])(this.getInput(),"select"))this.newTag="";else{var n=[].concat(Dl(t.invalid),Dl(t.duplicate));this.newTag=t.all.filter((function(e){return Object(ut["a"])(n,e)})).join(this.computedJoiner).concat(n.length>0?this.computedJoiner.charAt(0):"")}t.valid.length>0&&(this.tags=Object(ut["b"])(this.tags,t.valid)),this.tagsState=t,this.focus()}},removeTag:function(e){var t=this;this.disabled||(this.tags=this.tags.filter((function(t){return t!==e})),this.$nextTick((function(){t.focus()})))},reset:function(){var e=this;this.newTag="",this.tags=[],this.$nextTick((function(){e.removedTags=[],e.tagsState=Jl()}))},onInputInput:function(e){if(!(this.disabled||Object(u["d"])(e)&&e.target.composing)){var t=ql(e),n=this.computedSeparatorRegExp;this.newTag!==t&&(this.newTag=t),t=Object(me["i"])(t),n&&n.test(t.slice(-1))?this.addTag():this.tagsState=""===t?Jl():this.parseTags(t)}},onInputChange:function(e){if(!this.disabled&&this.addOnChange){var t=ql(e);this.newTag!==t&&(this.newTag=t),this.addTag()}},onInputKeydown:function(e){if(!this.disabled&&Object(u["d"])(e)){var t=e.keyCode,n=e.target.value||"";this.noAddOnEnter||t!==et?!this.removeOnDelete||t!==Ke&&t!==Xe||""!==n||(Object(dt["f"])(e,{propagation:!1}),this.tags=this.tags.slice(0,-1)):(Object(dt["f"])(e,{propagation:!1}),this.addTag())}},onClick:function(e){var t=this,n=this.computeIgnoreInputFocusSelector,i=e.target;this.disabled||Object(H["q"])(i)||n&&Object(H["e"])(n,i,!0)||this.$nextTick((function(){t.focus()}))},onFocusin:function(){this.hasFocus=!0},onFocusout:function(){this.hasFocus=!1},handleAutofocus:function(){var e=this;this.$nextTick((function(){Object(H["D"])((function(){e.autofocus&&!e.disabled&&e.focus()}))}))},focus:function(){this.disabled||Object(H["d"])(this.getInput())},blur:function(){this.disabled||Object(H["c"])(this.getInput())},splitTags:function(e){e=Object(me["g"])(e);var t=this.computedSeparatorRegExp;return(t?e.split(t):[e]).map(me["h"]).filter(c["a"])},parseTags:function(e){var t=this,n=this.splitTags(e),i={all:n,valid:[],invalid:[],duplicate:[]};return n.forEach((function(e){Object(ut["a"])(t.tags,e)||Object(ut["a"])(i.valid,e)?Object(ut["a"])(i.duplicate,e)||i.duplicate.push(e):t.validateTag(e)?i.valid.push(e):Object(ut["a"])(i.invalid,e)||i.invalid.push(e)})),i},validateTag:function(e){var t=this.tagValidator;return!Object(I["b"])(t)||t(e)},getInput:function(){return Object(H["E"])("#".concat(Su(this.computedInputId)),this.$el)},defaultRender:function(e){var t=e.addButtonText,n=e.addButtonVariant,i=e.addTag,r=e.disableAddButton,o=e.disabled,a=e.duplicateTagText,s=e.inputAttrs,u=e.inputClass,d=e.inputHandlers,l=e.inputType,f=e.invalidTagText,p=e.isDuplicate,h=e.isInvalid,m=e.isLimitReached,b=e.limitTagsText,g=e.noTagRemove,v=e.placeholder,y=e.removeTag,_=e.tagClass,O=e.tagPills,j=e.tagRemoveLabel,w=e.tagVariant,k=e.tags,M=this.$createElement,L=k.map((function(e){return e=Object(me["g"])(e),M(Sl,{class:_,props:{disabled:o,noRemove:g,pill:O,removeLabel:j,tag:"li",title:e,variant:w},on:{remove:function(){return y(e)}},key:"tags_".concat(e)},e)})),x=f&&h?this.safeId("__invalid_feedback__"):null,T=a&&p?this.safeId("__duplicate_feedback__"):null,S=b&&m?this.safeId("__limit_feedback__"):null,D=[s["aria-describedby"],x,T,S].filter(c["a"]).join(" "),A=M("input",{staticClass:"b-form-tags-input w-100 flex-grow-1 p-0 m-0 bg-transparent border-0",class:u,style:{outline:0,minWidth:"5rem"},attrs:$l($l({},s),{},{"aria-describedby":D||null,type:l,placeholder:v||null}),domProps:{value:s.value},on:d,directives:[{name:"model",value:s.value}],ref:"input"}),P=M(Mt,{staticClass:"b-form-tags-button py-0",class:{invisible:r},style:{fontSize:"90%"},props:{disabled:r||m,variant:n},on:{click:function(){return i()}},ref:"button"},[this.normalizeSlot(E["a"])||t]),Y=this.safeId("__tag_list__"),C=M("li",{staticClass:"b-from-tags-field flex-grow-1",attrs:{role:"none","aria-live":"off","aria-controls":Y},key:"tags_field"},[M("div",{staticClass:"d-flex",attrs:{role:"group"}},[A,P])]),H=M("ul",{staticClass:"b-form-tags-list list-unstyled mb-0 d-flex flex-wrap align-items-center",attrs:{id:Y},key:"tags_list"},[L,C]),$=M();if(f||a||b){var F=this.computedJoiner,I=M();x&&(I=M(Cs,{props:{id:x,forceShow:!0},key:"tags_invalid_feedback"},[this.invalidTagText,": ",this.invalidTags.join(F)]));var B=M();T&&(B=M(Ps,{props:{id:T},key:"tags_duplicate_feedback"},[this.duplicateTagText,": ",this.duplicateTags.join(F)]));var R=M();S&&(R=M(Ps,{props:{id:S},key:"tags_limit_feedback"},[b])),$=M("div",{attrs:{"aria-live":"polite","aria-atomic":"true"},key:"tags_feedback"},[I,B,R])}return[H,$]}},render:function(e){var t=this.name,n=this.disabled,i=this.required,r=this.form,o=this.tags,a=this.computedInputId,s=this.hasFocus,c=this.noOuterFocus,u=$l({tags:o.slice(),inputAttrs:this.computedInputAttrs,inputType:this.computedInputType,inputHandlers:this.computedInputHandlers,removeTag:this.removeTag,addTag:this.addTag,reset:this.reset,inputId:a,isInvalid:this.hasInvalidTags,invalidTags:this.invalidTags.slice(),isDuplicate:this.hasDuplicateTags,duplicateTags:this.duplicateTags.slice(),isLimitReached:this.isLimitReached,disableAddButton:this.disableAddButton},Object(f["k"])(this.$props,["addButtonText","addButtonVariant","disabled","duplicateTagText","form","inputClass","invalidTagText","limit","limitTagsText","noTagRemove","placeholder","required","separator","size","state","tagClass","tagPills","tagRemoveLabel","tagVariant"])),d=this.normalizeSlot(E["i"],u)||this.defaultRender(u),l=e("output",{staticClass:"sr-only",attrs:{id:this.safeId("__selected_tags__"),role:"status",for:a,"aria-live":s?"polite":"off","aria-atomic":"true","aria-relevant":"additions text"}},this.tags.join(", ")),p=e("div",{staticClass:"sr-only",attrs:{id:this.safeId("__removed_tags__"),role:"status","aria-live":s?"assertive":"off","aria-atomic":"true"}},this.removedTags.length>0?"(".concat(this.tagRemovedLabel,") ").concat(this.removedTags.join(", ")):""),h=e();if(t&&!n){var m=o.length>0;h=(m?o:[""]).map((function(n){return e("input",{class:{"sr-only":!m},attrs:{type:m?"hidden":"text",value:n,required:i,name:t,form:r},key:"tag_input_".concat(n)})}))}return e("div",{staticClass:"b-form-tags form-control h-auto",class:[{focus:s&&!c&&!n,disabled:n},this.sizeFormClass,this.stateClass],attrs:{id:this.safeId(),role:"group",tabindex:n||c?null:"-1","aria-describedby":this.safeId("__selected_tags__")},on:{click:this.onClick,focusin:this.onFocusin,focusout:this.onFocusout}},[l,p,d,h])}}),Zl=M({components:{BFormTags:Xl,BTags:Xl,BFormTag:Sl,BTag:Sl}});function Ql(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,i)}return n}function ef(e){for(var t=1;tf?s:"".concat(f,"px")}},render:function(e){return e("textarea",{class:this.computedClass,style:this.computedStyle,directives:[{name:"b-visible",value:this.visibleCallback,modifiers:{640:!0}}],attrs:this.computedAttrs,domProps:{value:this.localValue},on:this.computedListeners,ref:"input"})}}),af=M({components:{BFormTextarea:of,BTextarea:of}});function sf(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,i)}return n}function cf(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,i=new Array(t);n1&&void 0!==arguments[1]&&arguments[1];if(Object(u["g"])(t)||Object(u["g"])(n)||r&&Object(u["g"])(i))return"";var o=[t,n,r?i:0];return o.map(wf).join(":")},Lf=Object(I["d"])(Object(f["m"])(cf(cf(cf(cf({},ni["b"]),yf),Object(f["k"])(Ol,["labelIncrement","labelDecrement"])),{},{ariaLabelledby:Object(I["c"])(C["u"]),disabled:Object(I["c"])(C["g"],!1),hidden:Object(I["c"])(C["g"],!1),hideHeader:Object(I["c"])(C["g"],!1),hour12:Object(I["c"])(C["g"],null),labelAm:Object(I["c"])(C["u"],"AM"),labelAmpm:Object(I["c"])(C["u"],"AM/PM"),labelHours:Object(I["c"])(C["u"],"Hours"),labelMinutes:Object(I["c"])(C["u"],"Minutes"),labelNoTimeSelected:Object(I["c"])(C["u"],"No time selected"),labelPm:Object(I["c"])(C["u"],"PM"),labelSeconds:Object(I["c"])(C["u"],"Seconds"),labelSelected:Object(I["c"])(C["u"],"Selected time"),locale:Object(I["c"])(C["f"]),minutesStep:Object(I["c"])(C["p"],1),readonly:Object(I["c"])(C["g"],!1),secondsStep:Object(I["c"])(C["p"],1),showSeconds:Object(I["c"])(C["g"],!1)})),P["oc"]),xf=i["default"].extend({name:P["oc"],mixins:[ni["a"],vf,B["a"]],props:Lf,data:function(){var e=kf(this[_f]||"");return{modelHours:e.hours,modelMinutes:e.minutes,modelSeconds:e.seconds,modelAmpm:e.ampm,isLive:!1}},computed:{computedHMS:function(){var e=this.modelHours,t=this.modelMinutes,n=this.modelSeconds;return Mf({hours:e,minutes:t,seconds:n},this.showSeconds)},resolvedOptions:function(){var e=Object(ut["b"])(this.locale).filter(c["a"]),t={hour:jf,minute:jf,second:jf};Object(u["p"])(this.hour12)||(t.hour12=!!this.hour12);var n=new Intl.DateTimeFormat(e,t),i=n.resolvedOptions(),r=i.hour12||!1,o=i.hourCycle||(r?"h12":"h23");return{locale:i.locale,hour12:r,hourCycle:o}},computedLocale:function(){return this.resolvedOptions.locale},computedLang:function(){return(this.computedLocale||"").replace(/-u-.*$/,"")},computedRTL:function(){return Qn(this.computedLang)},computedHourCycle:function(){return this.resolvedOptions.hourCycle},is12Hour:function(){return!!this.resolvedOptions.hour12},context:function(){return{locale:this.computedLocale,isRTL:this.computedRTL,hourCycle:this.computedHourCycle,hour12:this.is12Hour,hours:this.modelHours,minutes:this.modelMinutes,seconds:this.showSeconds?this.modelSeconds:0,value:this.computedHMS,formatted:this.formattedTimeString}},valueId:function(){return this.safeId()||null},computedAriaLabelledby:function(){return[this.ariaLabelledby,this.valueId].filter(c["a"]).join(" ")||null},timeFormatter:function(){var e={hour12:this.is12Hour,hourCycle:this.computedHourCycle,hour:jf,minute:jf,timeZone:"UTC"};return this.showSeconds&&(e.second=jf),Bn(this.computedLocale,e)},numberFormatter:function(){var e=new Intl.NumberFormat(this.computedLocale,{style:"decimal",minimumIntegerDigits:2,minimumFractionDigits:0,maximumFractionDigits:0,notation:"standard"});return e.format},formattedTimeString:function(){var e=this.modelHours,t=this.modelMinutes,n=this.showSeconds&&this.modelSeconds||0;return this.computedHMS?this.timeFormatter(Hn(Date.UTC(0,0,1,e,t,n))):this.labelNoTimeSelected||" "},spinScopedSlots:function(){var e=this.$createElement;return{increment:function(t){var n=t.hasFocus;return e(Pe,{props:{scale:n?1.5:1.25},attrs:{"aria-hidden":"true"}})},decrement:function(t){var n=t.hasFocus;return e(Pe,{props:{flipV:!0,scale:n?1.5:1.25},attrs:{"aria-hidden":"true"}})}}}},watch:(nf={},uf(nf,_f,(function(e,t){if(e!==t&&!Object(ei["a"])(kf(e),kf(this.computedHMS))){var n=kf(e),i=n.hours,r=n.minutes,o=n.seconds,a=n.ampm;this.modelHours=i,this.modelMinutes=r,this.modelSeconds=o,this.modelAmpm=a}})),uf(nf,"computedHMS",(function(e,t){e!==t&&this.$emit(Of,e)})),uf(nf,"context",(function(e,t){Object(ei["a"])(e,t)||this.$emit(Y["h"],e)})),uf(nf,"modelAmpm",(function(e,t){var n=this;if(e!==t){var i=Object(u["g"])(this.modelHours)?0:this.modelHours;this.$nextTick((function(){0===e&&i>11?n.modelHours=i-12:1===e&&i<12&&(n.modelHours=i+12)}))}})),uf(nf,"modelHours",(function(e,t){e!==t&&(this.modelAmpm=e>11?1:0)})),nf),created:function(){var e=this;this.$nextTick((function(){e.$emit(Y["h"],e.context)}))},mounted:function(){this.setLive(!0)},activated:function(){this.setLive(!0)},deactivated:function(){this.setLive(!1)},beforeDestroy:function(){this.setLive(!1)},methods:{focus:function(){this.disabled||Object(H["d"])(this.$refs.spinners[0])},blur:function(){if(!this.disabled){var e=Object(H["g"])();Object(H["f"])(this.$el,e)&&Object(H["c"])(e)}},formatHours:function(e){var t=this.computedHourCycle;return e=this.is12Hour&&e>12?e-12:e,e=0===e&&"h12"===t?12:0===e&&"h24"===t?24:12===e&&"h11"===t?0:e,this.numberFormatter(e)},formatMinutes:function(e){return this.numberFormatter(e)},formatSeconds:function(e){return this.numberFormatter(e)},formatAmpm:function(e){return 0===e?this.labelAm:1===e?this.labelPm:""},setHours:function(e){this.modelHours=e},setMinutes:function(e){this.modelMinutes=e},setSeconds:function(e){this.modelSeconds=e},setAmpm:function(e){this.modelAmpm=e},onSpinLeftRight:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.type,n=e.keyCode;if(!this.disabled&&"keydown"===t&&(n===it||n===at)){Object(dt["f"])(e);var i=this.$refs.spinners||[],r=i.map((function(e){return!!e.hasFocus})).indexOf(!0);r+=n===it?-1:1,r=r>=i.length?0:r<0?i.length-1:r,Object(H["d"])(i[r])}},setLive:function(e){var t=this;e?this.$nextTick((function(){Object(H["D"])((function(){t.isLive=!0}))})):this.isLive=!1}},render:function(e){var t=this;if(this.hidden)return e();var n=this.valueId,i=this.computedAriaLabelledby,r=[],o=function(i,o,a){var s=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},c=t.safeId("_spinbutton_".concat(o,"_"))||null;return r.push(c),e(jl,{class:a,props:cf({id:c,placeholder:"--",vertical:!0,required:!0,disabled:t.disabled,readonly:t.readonly,locale:t.computedLocale,labelIncrement:t.labelIncrement,labelDecrement:t.labelDecrement,wrap:!0,ariaControls:n,min:0},s),scopedSlots:t.spinScopedSlots,on:{change:i},key:o,ref:"spinners",refInFor:!0})},a=function(){return e("div",{staticClass:"d-flex flex-column",class:{"text-muted":t.disabled||t.readonly},attrs:{"aria-hidden":"true"}},[e(Ye,{props:{shiftV:4,scale:.5}}),e(Ye,{props:{shiftV:-4,scale:.5}})])},s=[];s.push(o(this.setHours,"hours","b-time-hours",{value:this.modelHours,max:23,step:1,formatterFn:this.formatHours,ariaLabel:this.labelHours})),s.push(a()),s.push(o(this.setMinutes,"minutes","b-time-minutes",{value:this.modelMinutes,max:59,step:this.minutesStep||1,formatterFn:this.formatMinutes,ariaLabel:this.labelMinutes})),this.showSeconds&&(s.push(a()),s.push(o(this.setSeconds,"seconds","b-time-seconds",{value:this.modelSeconds,max:59,step:this.secondsStep||1,formatterFn:this.formatSeconds,ariaLabel:this.labelSeconds}))),this.is12Hour&&s.push(o(this.setAmpm,"ampm","b-time-ampm",{value:this.modelAmpm,max:1,formatterFn:this.formatAmpm,ariaLabel:this.labelAmpm,required:!1})),s=e("div",{staticClass:"d-flex align-items-center justify-content-center mx-auto",attrs:{role:"group",tabindex:this.disabled||this.readonly?null:"-1","aria-labelledby":i},on:{keydown:this.onSpinLeftRight,click:function(e){e.target===e.currentTarget&&t.focus()}}},s);var u=e("output",{staticClass:"form-control form-control-sm text-center",class:{disabled:this.disabled||this.readonly},attrs:{id:n,role:"status",for:r.filter(c["a"]).join(" ")||null,tabindex:this.disabled?null:"-1","aria-live":this.isLive?"polite":"off","aria-atomic":"true"},on:{click:this.focus,focus:this.focus}},[e("bdi",this.formattedTimeString),this.computedHMS?e("span",{staticClass:"sr-only"}," (".concat(this.labelSelected,") ")):""]),d=e("header",{staticClass:"b-time-header",class:{"sr-only":this.hideHeader}},[u]),l=this.normalizeSlot();return l=l?e("footer",{staticClass:"b-time-footer"},l):e(),e("div",{staticClass:"b-time d-inline-flex flex-column text-center",attrs:{role:"group",lang:this.computedLang||null,"aria-labelledby":i||null,"aria-disabled":this.disabled?"true":null,"aria-readonly":this.readonly&&!this.disabled?"true":null}},[d,s,l])}});function Tf(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,i)}return n}function Sf(e){for(var t=1;t0&&a.push(e("span"," "));var c=this.labelResetButton;a.push(e(Mt,{props:{size:"sm",disabled:n||i,variant:this.resetButtonVariant},attrs:{"aria-label":c||null},on:{click:this.onResetButton},key:"reset-btn"},c))}if(!this.noCloseButton){a.length>0&&a.push(e("span"," "));var d=this.labelCloseButton;a.push(e(Mt,{props:{size:"sm",disabled:n,variant:this.closeButtonVariant},attrs:{"aria-label":d||null},on:{click:this.onCloseButton},key:"close-btn"},d))}a.length>0&&(a=[e("div",{staticClass:"b-form-date-controls d-flex flex-wrap",class:{"justify-content-between":a.length>1,"justify-content-end":a.length<2}},a)]);var l=e(xf,{staticClass:"b-form-time-control",props:Sf(Sf({},Object(I["e"])(Hf,r)),{},{value:t,hidden:!this.isVisible}),on:{input:this.onInput,context:this.onContext},ref:"time"},a);return e(Kc,{staticClass:"b-form-timepicker",props:Sf(Sf({},Object(I["e"])($f,r)),{},{id:this.safeId(),value:t,formattedValue:t?this.formattedValue:"",placeholder:o,rtl:this.isRTL,lang:this.computedLang}),on:{show:this.onShow,shown:this.onShown,hidden:this.onHidden},scopedSlots:Df({},E["f"],this.$scopedSlots[E["f"]]||this.defaultButtonFn),ref:"control"},[l])}}),Bf=M({components:{BFormTimepicker:If,BTimepicker:If}}),Rf=M({components:{BImg:Ii,BImgLazy:mr}}),Nf=Object(I["d"])({tag:Object(I["c"])(C["u"],"div")},P["tb"]),zf=i["default"].extend({name:P["tb"],functional:!0,props:Nf,render:function(e,t){var n=t.props,i=t.data,r=t.children;return e(n.tag,Object(he["a"])(i,{staticClass:"input-group-text"}),r)}}),Wf=Object(I["d"])({append:Object(I["c"])(C["g"],!1),id:Object(I["c"])(C["u"]),isText:Object(I["c"])(C["g"],!1),tag:Object(I["c"])(C["u"],"div")},P["qb"]),Vf=i["default"].extend({name:P["qb"],functional:!0,props:Wf,render:function(e,t){var n=t.props,i=t.data,r=t.children,o=n.append;return e(n.tag,Object(he["a"])(i,{class:{"input-group-append":o,"input-group-prepend":!o},attrs:{id:n.id}}),n.isText?[e(zf,r)]:r)}});function Uf(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,i)}return n}function Gf(e){for(var t=1;t0&&!n[0].text?n[0]:e()}}),Jp={container:Object(I["c"])([pa["c"],C["u"]],"body"),disabled:Object(I["c"])(C["g"],!1),tag:Object(I["c"])(C["u"],"div")},Kp=i["default"].extend({name:P["xc"],mixins:[B["a"]],props:Jp,watch:{disabled:{immediate:!0,handler:function(e){e?this.unmountTarget():this.$nextTick(this.mountTarget)}}},created:function(){this.$_defaultFn=null,this.$_target=null},beforeMount:function(){this.mountTarget()},updated:function(){this.updateTarget()},beforeDestroy:function(){this.unmountTarget(),this.$_defaultFn=null},methods:{getContainer:function(){if(r["i"]){var e=this.container;return Object(u["n"])(e)?Object(H["E"])(e):e}return null},mountTarget:function(){if(!this.$_target){var e=this.getContainer();if(e){var t=document.createElement("div");e.appendChild(t),this.$_target=new qp({el:t,parent:this,propsData:{nodes:Object(ut["b"])(this.normalizeSlot())}})}}},updateTarget:function(){if(r["i"]&&this.$_target){var e=this.$scopedSlots.default;this.disabled||(e&&this.$_defaultFn!==e?this.$_target.updatedNodes=e:e||(this.$_target.updatedNodes=this.$slots.default)),this.$_defaultFn=e}},unmountTarget:function(){this.$_target&&this.$_target.$destroy(),this.$_target=null}},render:function(e){if(this.disabled){var t=Object(ut["b"])(this.normalizeSlot()).filter(c["a"]);if(t.length>0&&!t[0].text)return t[0]}return e()}});function Xp(e){return Xp="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Xp(e)}function Zp(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,i)}return n}function Qp(e){for(var t=1;t1&&void 0!==arguments[1]?arguments[1]:{};return th(this,n),i=t.call(this,e,r),Object(f["d"])(dh(i),{trigger:Object(f["l"])()}),i}return ih(n,null,[{key:"Defaults",get:function(){return Qp(Qp({},rh(fh(n),"Defaults",this)),{},{trigger:null})}}]),n}(ha["a"]),hh=1040,mh=".fixed-top, .fixed-bottom, .is-fixed, .sticky-top",bh=".sticky-top",gh=".navbar-toggler",vh=i["default"].extend({data:function(){return{modals:[],baseZIndex:null,scrollbarWidth:null,isBodyOverflowing:!1}},computed:{modalCount:function(){return this.modals.length},modalsAreOpen:function(){return this.modalCount>0}},watch:{modalCount:function(e,t){r["i"]&&(this.getScrollbarWidth(),e>0&&0===t?(this.checkScrollbar(),this.setScrollbar(),Object(H["b"])(document.body,"modal-open")):0===e&&t>0&&(this.resetScrollbar(),Object(H["A"])(document.body,"modal-open")),Object(H["G"])(document.body,"data-modal-open-count",String(e)))},modals:function(e){var t=this;this.checkScrollbar(),Object(H["D"])((function(){t.updateModals(e||[])}))}},methods:{registerModal:function(e){var t=this;e&&-1===this.modals.indexOf(e)&&(this.modals.push(e),e.$once(Y["eb"],(function(){t.unregisterModal(e)})))},unregisterModal:function(e){var t=this.modals.indexOf(e);t>-1&&(this.modals.splice(t,1),e._isBeingDestroyed||e._isDestroyed||this.resetModal(e))},getBaseZIndex:function(){if(Object(u["g"])(this.baseZIndex)&&r["i"]){var e=document.createElement("div");Object(H["b"])(e,"modal-backdrop"),Object(H["b"])(e,"d-none"),Object(H["H"])(e,"display","none"),document.body.appendChild(e),this.baseZIndex=Object(F["c"])(Object(H["k"])(e).zIndex,hh),document.body.removeChild(e)}return this.baseZIndex||hh},getScrollbarWidth:function(){if(Object(u["g"])(this.scrollbarWidth)&&r["i"]){var e=document.createElement("div");Object(H["b"])(e,"modal-scrollbar-measure"),document.body.appendChild(e),this.scrollbarWidth=Object(H["i"])(e).width-e.clientWidth,document.body.removeChild(e)}return this.scrollbarWidth||0},updateModals:function(e){var t=this,n=this.getBaseZIndex(),i=this.getScrollbarWidth();e.forEach((function(e,r){e.zIndex=n+r,e.scrollbarWidth=i,e.isTop=r===t.modals.length-1,e.isBodyOverflowing=t.isBodyOverflowing}))},resetModal:function(e){e&&(e.zIndex=this.getBaseZIndex(),e.isTop=!0,e.isBodyOverflowing=!1)},checkScrollbar:function(){var e=Object(H["i"])(document.body),t=e.left,n=e.right;this.isBodyOverflowing=t+n0&&void 0!==arguments[0]&&arguments[0];this.$_observer&&this.$_observer.disconnect(),this.$_observer=null,e&&(this.$_observer=Ar(this.$refs.content,this.checkModalOverflow.bind(this),Hh))},updateModel:function(e){e!==this[Lh]&&this.$emit(xh,e)},buildEvent:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return new ph(e,Oh(Oh({cancelable:!1,target:this.$refs.modal||this.$el||null,relatedTarget:null,trigger:null},t),{},{vueTarget:this,componentId:this.modalId}))},show:function(){if(!this.isVisible&&!this.isOpening)if(this.isClosing)this.$once(Y["v"],this.show);else{this.isOpening=!0,this.$_returnFocus=this.$_returnFocus||this.getActiveElement();var e=this.buildEvent(Y["T"],{cancelable:!0});if(this.emitEvent(e),e.defaultPrevented||this.isVisible)return this.isOpening=!1,void this.updateModel(!1);this.doShow()}},hide:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";if(this.isVisible&&!this.isClosing){this.isClosing=!0;var t=this.buildEvent(Y["w"],{cancelable:e!==Dh,trigger:e||null});if(e===Ch?this.$emit(Y["D"],t):e===Ph?this.$emit(Y["c"],t):e===Yh&&this.$emit(Y["g"],t),this.emitEvent(t),t.defaultPrevented||!this.isVisible)return this.isClosing=!1,void this.updateModel(!0);this.setObserver(!1),this.isVisible=!1,this.updateModel(!1)}},toggle:function(e){e&&(this.$_returnFocus=e),this.isVisible?this.hide(Ah):this.show()},getActiveElement:function(){var e=Object(H["g"])(r["i"]?[document.body]:[]);return e&&e.focus?e:null},doShow:function(){var e=this;yh.modalsAreOpen&&this.noStacking?this.listenOnRootOnce(Object(dt["e"])(P["Bb"],Y["v"]),this.doShow):(yh.registerModal(this),this.isHidden=!1,this.$nextTick((function(){e.isVisible=!0,e.isOpening=!1,e.updateModel(!0),e.$nextTick((function(){e.setObserver(!0)}))})))},onBeforeEnter:function(){this.isTransitioning=!0,this.setResizeEvent(!0)},onEnter:function(){var e=this;this.isBlock=!0,Object(H["D"])((function(){Object(H["D"])((function(){e.isShow=!0}))}))},onAfterEnter:function(){var e=this;this.checkModalOverflow(),this.isTransitioning=!1,Object(H["D"])((function(){e.emitEvent(e.buildEvent(Y["U"])),e.setEnforceFocus(!0),e.$nextTick((function(){e.focusFirst()}))}))},onBeforeLeave:function(){this.isTransitioning=!0,this.setResizeEvent(!1),this.setEnforceFocus(!1)},onLeave:function(){this.isShow=!1},onAfterLeave:function(){var e=this;this.isBlock=!1,this.isTransitioning=!1,this.isModalOverflowing=!1,this.isHidden=!0,this.$nextTick((function(){e.isClosing=!1,yh.unregisterModal(e),e.returnFocusTo(),e.emitEvent(e.buildEvent(Y["v"]))}))},emitEvent:function(e){var t=e.type;this.emitOnRoot(Object(dt["e"])(P["Bb"],t),e,e.componentId),this.$emit(t,e)},onDialogMousedown:function(){var e=this,t=this.$refs.modal,n=function n(i){Object(dt["a"])(t,"mouseup",n,Y["cb"]),i.target===t&&(e.ignoreBackdropClick=!0)};Object(dt["b"])(t,"mouseup",n,Y["cb"])},onClickOut:function(e){this.ignoreBackdropClick?this.ignoreBackdropClick=!1:this.isVisible&&!this.noCloseOnBackdrop&&Object(H["f"])(document.body,e.target)&&(Object(H["f"])(this.$refs.content,e.target)||this.hide(Th))},onOk:function(){this.hide(Ch)},onCancel:function(){this.hide(Ph)},onClose:function(){this.hide(Yh)},onEsc:function(e){e.keyCode===tt&&this.isVisible&&!this.noCloseOnEsc&&this.hide(Sh)},focusHandler:function(e){var t=this.$refs.content,n=e.target;if(!(this.noEnforceFocus||!this.isTop||!this.isVisible||!t||document===n||Object(H["f"])(t,n)||this.computeIgnoreEnforceFocusSelector&&Object(H["e"])(this.computeIgnoreEnforceFocusSelector,n,!0))){var i=Object(H["n"])(this.$refs.content),r=this.$refs["bottom-trap"],o=this.$refs["top-trap"];if(r&&n===r){if(Object(H["d"])(i[0]))return}else if(o&&n===o&&Object(H["d"])(i[i.length-1]))return;Object(H["d"])(t,{preventScroll:!0})}},setEnforceFocus:function(e){this.listenDocument(e,"focusin",this.focusHandler)},setResizeEvent:function(e){this.listenWindow(e,"resize",this.checkModalOverflow),this.listenWindow(e,"orientationchange",this.checkModalOverflow)},showHandler:function(e,t){e===this.modalId&&(this.$_returnFocus=t||this.getActiveElement(),this.show())},hideHandler:function(e){e===this.modalId&&this.hide("event")},toggleHandler:function(e,t){e===this.modalId&&this.toggle(t)},modalListener:function(e){this.noStacking&&e.vueTarget!==this&&this.hide()},focusFirst:function(){var e=this;r["i"]&&Object(H["D"])((function(){var t=e.$refs.modal,n=e.$refs.content,i=e.getActiveElement();if(t&&n&&(!i||!Object(H["f"])(n,i))){var r=e.$refs["ok-button"],o=e.$refs["cancel-button"],a=e.$refs["close-button"],s=e.autoFocusButton,c=s===Ch&&r?r.$el||r:s===Ph&&o?o.$el||o:s===Yh&&a?a.$el||a:n;Object(H["d"])(c),c===n&&e.$nextTick((function(){t.scrollTop=0}))}}))},returnFocusTo:function(){var e=this.returnFocus||this.$_returnFocus||null;this.$_returnFocus=null,this.$nextTick((function(){e=Object(u["n"])(e)?Object(H["E"])(e):e,e&&(e=e.$el||e,Object(H["d"])(e))}))},checkModalOverflow:function(){if(this.isVisible){var e=this.$refs.modal;this.isModalOverflowing=e.scrollHeight>document.documentElement.clientHeight}},makeModal:function(e){var t=e();if(!this.hideHeader){var n=this.normalizeSlot(E["J"],this.slotScope);if(!n){var i=e();this.hideHeaderClose||(i=e(R["a"],{props:{content:this.headerCloseContent,disabled:this.isTransitioning,ariaLabel:this.headerCloseLabel,textVariant:this.headerCloseVariant||this.headerTextVariant},on:{click:this.onClose},ref:"close-button"},[this.normalizeSlot(E["K"])])),n=[e(this.titleTag,{staticClass:"modal-title",class:this.titleClasses,attrs:{id:this.modalTitleId},domProps:this.hasNormalizedSlot(E["M"])?{}:qt(this.titleHtml,this.title)},this.normalizeSlot(E["M"],this.slotScope)),i]}t=e("header",{staticClass:"modal-header",class:this.headerClasses,attrs:{id:this.modalHeaderId},ref:"header"},[n])}var r=e("div",{staticClass:"modal-body",class:this.bodyClasses,attrs:{id:this.modalBodyId},ref:"body"},this.normalizeSlot(E["i"],this.slotScope)),o=e();if(!this.hideFooter){var a=this.normalizeSlot(E["I"],this.slotScope);if(!a){var s=e();this.okOnly||(s=e(Mt,{props:{variant:this.cancelVariant,size:this.buttonSize,disabled:this.cancelDisabled||this.busy||this.isTransitioning},domProps:this.hasNormalizedSlot(E["H"])?{}:qt(this.cancelTitleHtml,this.cancelTitle),on:{click:this.onCancel},ref:"cancel-button"},this.normalizeSlot(E["H"])));var c=e(Mt,{props:{variant:this.okVariant,size:this.buttonSize,disabled:this.okDisabled||this.busy||this.isTransitioning},domProps:this.hasNormalizedSlot(E["L"])?{}:qt(this.okTitleHtml,this.okTitle),on:{click:this.onOk},ref:"ok-button"},this.normalizeSlot(E["L"]));a=[s,c]}o=e("footer",{staticClass:"modal-footer",class:this.footerClasses,attrs:{id:this.modalFooterId},ref:"footer"},[a])}var u=e("div",{staticClass:"modal-content",class:this.contentClass,attrs:{id:this.modalContentId,tabindex:"-1"},ref:"content"},[t,r,o]),d=e(),l=e();this.isVisible&&!this.noEnforceFocus&&(d=e("span",{attrs:{tabindex:"0"},ref:"top-trap"}),l=e("span",{attrs:{tabindex:"0"},ref:"bottom-trap"}));var f=e("div",{staticClass:"modal-dialog",class:this.dialogClasses,on:{mousedown:this.onDialogMousedown},ref:"dialog"},[d,u,l]),p=e("div",{staticClass:"modal",class:this.modalClasses,style:this.modalStyles,attrs:this.computedModalAttrs,on:{keydown:this.onEsc,click:this.onClickOut},directives:[{name:"show",value:this.isVisible}],ref:"modal"},[f]);p=e("transition",{props:{enterClass:"",enterToClass:"",enterActiveClass:"",leaveClass:"",leaveActiveClass:"",leaveToClass:""},on:{beforeEnter:this.onBeforeEnter,enter:this.onEnter,afterEnter:this.onAfterEnter,beforeLeave:this.onBeforeLeave,leave:this.onLeave,afterLeave:this.onAfterLeave}},[p]);var h=e();return!this.hideBackdrop&&this.isVisible&&(h=e("div",{staticClass:"modal-backdrop",attrs:{id:this.modalBackdropId}},this.normalizeSlot(E["G"]))),h=e(N["a"],{props:{noFade:this.noFade}},[h]),e("div",{style:this.modalOuterStyle,attrs:this.computedAttrs,key:"modal-outer-".concat(this[A["a"]])},[p,h])}},render:function(e){return this.static?this.lazy&&this.isHidden?e():this.makeModal(e):this.isHidden?e():e(Kp,[this.makeModal(e)])}}),Ih=Object(dt["d"])(P["Bb"],Y["T"]),Bh="__bv_modal_directive__",Rh=function(e){var t=e.modifiers,n=void 0===t?{}:t,i=e.arg,r=e.value;return Object(u["n"])(r)?r:Object(u["n"])(i)?i:Object(f["h"])(n).reverse()[0]},Nh=function(e){return e&&Object(H["v"])(e,".dropdown-menu > li, li.nav-item")&&Object(H["E"])("a, button",e)||e},zh=function(e){e&&"BUTTON"!==e.tagName&&(Object(H["o"])(e,"role")||Object(H["G"])(e,"role","button"),"A"===e.tagName||Object(H["o"])(e,"tabindex")||Object(H["G"])(e,"tabindex","0"))},Wh=function(e,t,n){var i=Rh(t),r=Nh(e);if(i&&r){var o=function(e){var t=e.currentTarget;if(!Object(H["r"])(t)){var r=e.type,o=e.keyCode;"click"!==r&&("keydown"!==r||o!==et&&o!==st)||n.context.$root.$emit(Ih,i,t)}};e[Bh]={handler:o,target:i,trigger:r},zh(r),Object(dt["b"])(r,"click",o,Y["db"]),"BUTTON"!==r.tagName&&"button"===Object(H["h"])(r,"role")&&Object(dt["b"])(r,"keydown",o,Y["db"])}},Vh=function(e){var t=e[Bh]||{},n=t.trigger,i=t.handler;n&&i&&(Object(dt["a"])(n,"click",i,Y["db"]),Object(dt["a"])(n,"keydown",i,Y["db"]),Object(dt["a"])(e,"click",i,Y["db"]),Object(dt["a"])(e,"keydown",i,Y["db"])),delete e[Bh]},Uh=function(e,t,n){var i=e[Bh]||{},r=Rh(t),o=Nh(e);r===i.target&&o===i.trigger||(Vh(e,t,n),Wh(e,t,n)),zh(o)},Gh=function(){},qh={inserted:Uh,updated:Gh,componentUpdated:Uh,unbind:Vh};function Jh(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Kh(e,t){for(var n=0;ne.length)&&(t=e.length);for(var n=0,i=new Array(t);n2&&void 0!==arguments[2]?arguments[2]:dm;if(!Object(p["d"])(sm)&&!Object(p["c"])(sm)){var r=new t({parent:e,propsData:Qh(Qh(Qh({},fm(Object(xu["c"])(P["Bb"]))),{},{hideHeaderClose:!0,hideHeader:!(n.title||n.titleHtml)},Object(f["j"])(n,Object(f["h"])(lm))),{},{lazy:!1,busy:!1,visible:!1,noStacking:!1,noEnforceFocus:!1})});return Object(f["h"])(lm).forEach((function(e){Object(u["o"])(n[e])||(r.$slots[lm[e]]=Object(ut["b"])(n[e]))})),new Promise((function(e,t){var n=!1;r.$once(Y["fb"],(function(){n||t(new Error("BootstrapVue MsgBox destroyed before resolve"))})),r.$on(Y["w"],(function(t){if(!t.defaultPrevented){var r=i(t);t.defaultPrevented||(n=!0,e(r))}}));var o=document.createElement("div");document.body.appendChild(o),r.$mount(o)}))}},i=function(e,t){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null;if(t&&!Object(p["c"])(sm)&&!Object(p["d"])(sm)&&Object(u["f"])(r))return n(e,Qh(Qh({},fm(i)),{},{msgBoxContent:t}),r)},r=function(){function e(t){Jh(this,e),Object(f["a"])(this,{_vm:t,_root:t.$root}),Object(f["d"])(this,{_vm:Object(f["l"])(),_root:Object(f["l"])()})}return Xh(e,[{key:"show",value:function(e){if(e&&this._root){for(var t,n=arguments.length,i=new Array(n>1?n-1:0),r=1;r1?n-1:0),r=1;r1&&void 0!==arguments[1]?arguments[1]:{},n=Qh(Qh({},t),{},{okOnly:!0,okDisabled:!1,hideFooter:!1,msgBoxContent:e});return i(this._vm,e,n,(function(){return!0}))}},{key:"msgBoxConfirm",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=Qh(Qh({},t),{},{okOnly:!1,okDisabled:!1,cancelDisabled:!1,hideFooter:!1});return i(this._vm,e,n,(function(e){var t=e.trigger;return"ok"===t||"cancel"!==t&&null}))}}]),e}();e.mixin({beforeCreate:function(){this[cm]=new r(this)}}),Object(f["g"])(e.prototype,sm)||Object(f["e"])(e.prototype,sm,{get:function(){return this&&this[cm]||Object(p["a"])('"'.concat(sm,'" must be accessed from a Vue instance "this" context.'),P["Bb"]),this[cm]}})},hm=M({plugins:{plugin:pm}}),mm=M({components:{BModal:Fh},directives:{VBModal:qh},plugins:{BVModalPlugin:hm}});function bm(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var gm=function(e){return e="left"===e?"start":"right"===e?"end":e,"justify-content-".concat(e)},vm=Object(I["d"])({align:Object(I["c"])(C["u"]),cardHeader:Object(I["c"])(C["g"],!1),fill:Object(I["c"])(C["g"],!1),justified:Object(I["c"])(C["g"],!1),pills:Object(I["c"])(C["g"],!1),small:Object(I["c"])(C["g"],!1),tabs:Object(I["c"])(C["g"],!1),tag:Object(I["c"])(C["u"],"ul"),vertical:Object(I["c"])(C["g"],!1)},P["Db"]),ym=i["default"].extend({name:P["Db"],functional:!0,props:vm,render:function(e,t){var n,i=t.props,r=t.data,o=t.children,a=i.tabs,s=i.pills,c=i.vertical,u=i.align,d=i.cardHeader;return e(i.tag,Object(he["a"])(r,{staticClass:"nav",class:(n={"nav-tabs":a,"nav-pills":s&&!a,"card-header-tabs":!c&&d&&a,"card-header-pills":!c&&d&&s&&!a,"flex-column":c,"nav-fill":!c&&i.fill,"nav-justified":!c&&i.justified},bm(n,gm(u),!c&&u),bm(n,"small",i.small),n)}),o)}});function _m(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,i)}return n}function Om(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,i=new Array(t);n=0&&t<=1})),overlayTag:Object(I["c"])(C["u"],"div"),rounded:Object(I["c"])(C["j"],!1),show:Object(I["c"])(C["g"],!1),spinnerSmall:Object(I["c"])(C["g"],!1),spinnerType:Object(I["c"])(C["u"],"border"),spinnerVariant:Object(I["c"])(C["u"]),variant:Object(I["c"])(C["u"],"light"),wrapTag:Object(I["c"])(C["u"],"div"),zIndex:Object(I["c"])(C["p"],10)},P["Mb"]),_b=i["default"].extend({name:P["Mb"],mixins:[B["a"]],props:yb,computed:{computedRounded:function(){var e=this.rounded;return!0===e||""===e?"rounded":e?"rounded-".concat(e):""},computedVariant:function(){var e=this.variant;return e&&!this.bgColor?"bg-".concat(e):""},slotScope:function(){return{spinnerType:this.spinnerType||null,spinnerVariant:this.spinnerVariant||null,spinnerSmall:this.spinnerSmall}}},methods:{defaultOverlayFn:function(e){var t=e.spinnerType,n=e.spinnerVariant,i=e.spinnerSmall;return this.$createElement(pb,{props:{type:t,variant:n,small:i}})}},render:function(e){var t=this,n=this.show,i=this.fixed,r=this.noFade,o=this.noWrap,a=this.slotScope,s=e();if(n){var c=e("div",{staticClass:"position-absolute",class:[this.computedVariant,this.computedRounded],style:mb(mb({},vb),{},{opacity:this.opacity,backgroundColor:this.bgColor||null,backdropFilter:this.blur?"blur(".concat(this.blur,")"):null})}),u=e("div",{staticClass:"position-absolute",style:this.noCenter?mb({},vb):{top:"50%",left:"50%",transform:"translateX(-50%) translateY(-50%)"}},[this.normalizeSlot(E["V"],a)||this.defaultOverlayFn(a)]);s=e(this.overlayTag,{staticClass:"b-overlay",class:{"position-absolute":!o||o&&!i,"position-fixed":o&&i},style:mb(mb({},vb),{},{zIndex:this.zIndex||10}),on:{click:function(e){return t.$emit(Y["f"],e)}},key:"overlay"},[c,u])}return s=e(N["a"],{props:{noFade:r,appear:!0},on:{"after-enter":function(){return t.$emit(Y["U"])},"after-leave":function(){return t.$emit(Y["v"])}}},[s]),o?s:e(this.wrapTag,{staticClass:"b-overlay-wrap position-relative",attrs:{"aria-busy":n?"true":null}},o?[s]:[this.normalizeSlot(),s])}}),Ob=M({components:{BOverlay:_b}});function jb(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,i)}return n}function wb(e){for(var t=1;tt?t:n<1?1:n},Eb=function(e){if(e.keyCode===st)return Object(dt["f"])(e,{immediatePropagation:!0}),e.currentTarget.click(),!1},Hb=Object(I["d"])(Object(f["m"])(wb(wb({},xb),{},{align:Object(I["c"])(C["u"],"left"),ariaLabel:Object(I["c"])(C["u"],"Pagination"),disabled:Object(I["c"])(C["g"],!1),ellipsisClass:Object(I["c"])(C["e"]),ellipsisText:Object(I["c"])(C["u"],"…"),firstClass:Object(I["c"])(C["e"]),firstNumber:Object(I["c"])(C["g"],!1),firstText:Object(I["c"])(C["u"],"«"),hideEllipsis:Object(I["c"])(C["g"],!1),hideGotoEndButtons:Object(I["c"])(C["g"],!1),labelFirstPage:Object(I["c"])(C["u"],"Go to first page"),labelLastPage:Object(I["c"])(C["u"],"Go to last page"),labelNextPage:Object(I["c"])(C["u"],"Go to next page"),labelPage:Object(I["c"])(C["m"],"Go to page"),labelPrevPage:Object(I["c"])(C["u"],"Go to previous page"),lastClass:Object(I["c"])(C["e"]),lastNumber:Object(I["c"])(C["g"],!1),lastText:Object(I["c"])(C["u"],"»"),limit:Object(I["c"])(C["p"],Ab,(function(e){return!(Object(F["c"])(e,0)<1)||(Object(p["a"])('Prop "limit" must be a number greater than "0"',P["Nb"]),!1)})),nextClass:Object(I["c"])(C["e"]),nextText:Object(I["c"])(C["u"],"›"),pageClass:Object(I["c"])(C["e"]),pills:Object(I["c"])(C["g"],!1),prevClass:Object(I["c"])(C["e"]),prevText:Object(I["c"])(C["u"],"‹"),size:Object(I["c"])(C["u"])})),"pagination"),$b=i["default"].extend({mixins:[Lb,B["a"]],props:Hb,data:function(){var e=Object(F["c"])(this[Tb],0);return e=e>0?e:-1,{currentPage:e,localNumberOfPages:1,localLimit:Ab}},computed:{btnSize:function(){var e=this.size;return e?"pagination-".concat(e):""},alignment:function(){var e=this.align;return"center"===e?"justify-content-center":"end"===e||"right"===e?"justify-content-end":"fill"===e?"text-center":""},styleClass:function(){return this.pills?"b-pagination-pills":""},computedCurrentPage:function(){return Cb(this.currentPage,this.localNumberOfPages)},paginationParams:function(){var e=this.localLimit,t=this.localNumberOfPages,n=this.computedCurrentPage,i=this.hideEllipsis,r=this.firstNumber,o=this.lastNumber,a=!1,s=!1,c=e,u=1;t<=e?c=t:nDb?(i&&!o||(s=!0,c=e-(r?0:1)),c=Object(ne["e"])(c,e)):t-n+2Db?(i&&!r||(a=!0,c=e-(o?0:1)),u=t-c+1):(e>Db&&(c=e-(i?0:2),a=!(i&&!r),s=!(i&&!o)),u=n-Object(ne["c"])(c/2)),u<1?(u=1,a=!1):u>t-c&&(u=t-c+1,s=!1),a&&r&&u<4&&(c+=2,u=1,a=!1);var d=u+c-1;return s&&o&&d>t-3&&(c+=d===t-2?2:3,s=!1),e<=Db&&(r&&1===u?c=Object(ne["e"])(c+1,t,e+1):o&&t===u+c-1&&(u=Object(ne["d"])(u-1,1),c=Object(ne["e"])(t-u+1,t,e+1))),c=Object(ne["e"])(c,t-u+1),{showFirstDots:a,showLastDots:s,numberOfLinks:c,startNumber:u}},pageList:function(){var e=this.paginationParams,t=e.numberOfLinks,n=e.startNumber,i=this.computedCurrentPage,r=Pb(n,t);if(r.length>3){var o=i-n,a="bv-d-xs-down-none";if(0===o)for(var s=3;so+1;d--)r[d].classes=a}}return r}},watch:(gb={},kb(gb,Tb,(function(e,t){e!==t&&(this.currentPage=Cb(e,this.localNumberOfPages))})),kb(gb,"currentPage",(function(e,t){e!==t&&this.$emit(Sb,e>0?e:null)})),kb(gb,"limit",(function(e,t){e!==t&&(this.localLimit=Yb(e))})),gb),created:function(){var e=this;this.localLimit=Yb(this.limit),this.$nextTick((function(){e.currentPage=e.currentPage>e.localNumberOfPages?e.localNumberOfPages:e.currentPage}))},methods:{handleKeyNav:function(e){var t=e.keyCode,n=e.shiftKey;this.isNav||(t===it||t===ct?(Object(dt["f"])(e,{propagation:!1}),n?this.focusFirst():this.focusPrev()):t!==at&&t!==Ze||(Object(dt["f"])(e,{propagation:!1}),n?this.focusLast():this.focusNext()))},getButtons:function(){return Object(H["F"])("button.page-link, a.page-link",this.$el).filter((function(e){return Object(H["u"])(e)}))},focusCurrent:function(){var e=this;this.$nextTick((function(){var t=e.getButtons().find((function(t){return Object(F["c"])(Object(H["h"])(t,"aria-posinset"),0)===e.computedCurrentPage}));Object(H["d"])(t)||e.focusFirst()}))},focusFirst:function(){var e=this;this.$nextTick((function(){var t=e.getButtons().find((function(e){return!Object(H["r"])(e)}));Object(H["d"])(t)}))},focusLast:function(){var e=this;this.$nextTick((function(){var t=e.getButtons().reverse().find((function(e){return!Object(H["r"])(e)}));Object(H["d"])(t)}))},focusPrev:function(){var e=this;this.$nextTick((function(){var t=e.getButtons(),n=t.indexOf(Object(H["g"])());n>0&&!Object(H["r"])(t[n-1])&&Object(H["d"])(t[n-1])}))},focusNext:function(){var e=this;this.$nextTick((function(){var t=e.getButtons(),n=t.indexOf(Object(H["g"])());na,h=i<1?1:i>a?a:i,g={disabled:f,page:h,index:h-1},v=t.normalizeSlot(s,g)||Object(me["g"])(c)||e(),y=e(f?"span":o?lt["a"]:"button",{staticClass:"page-link",class:{"flex-grow-1":!o&&!f&&p},props:f||!o?{}:t.linkProps(i),attrs:{role:o?null:"menuitem",type:o||f?null:"button",tabindex:f||o?null:"-1","aria-label":r,"aria-controls":t.ariaControls||null,"aria-disabled":f?"true":null},on:f?{}:{"!click":function(e){t.onClick(e,i)},keydown:Eb}},[v]);return e("li",{key:l,staticClass:"page-item",class:[{disabled:f,"flex-fill":p,"d-flex":p&&!o&&!f},u],attrs:{role:o?null:"presentation","aria-hidden":f?"true":null}},[y])},v=function(n){return e("li",{staticClass:"page-item",class:["disabled","bv-d-xs-down-none",p?"flex-fill":"",t.ellipsisClass],attrs:{role:"separator"},key:"ellipsis-".concat(n?"last":"first")},[e("span",{staticClass:"page-link"},[t.normalizeSlot(E["m"])||Object(me["g"])(t.ellipsisText)||e()])])},y=function(r,s){var c=r.number,d=m(c)&&!b,l=n?null:d||b&&0===s?"0":"-1",f={role:o?null:"menuitemradio",type:o||n?null:"button","aria-disabled":n?"true":null,"aria-controls":t.ariaControls||null,"aria-label":Object(I["b"])(i)?i(c):"".concat(Object(u["f"])(i)?i():i," ").concat(c),"aria-checked":o?null:d?"true":"false","aria-current":o&&d?"page":null,"aria-posinset":o?null:c,"aria-setsize":o?null:a,tabindex:o?null:l},h=Object(me["g"])(t.makePage(c)),g={page:c,index:c-1,content:h,active:d,disabled:n},v=e(n?"span":o?lt["a"]:"button",{props:n||!o?{}:t.linkProps(c),staticClass:"page-link",class:{"flex-grow-1":!o&&!n&&p},attrs:f,on:n?{}:{"!click":function(e){t.onClick(e,c)},keydown:Eb}},[t.normalizeSlot(E["W"],g)||h]);return e("li",{staticClass:"page-item",class:[{disabled:n,active:d,"flex-fill":p,"d-flex":p&&!o&&!n},r.classes,t.pageClass],attrs:{role:o?null:"presentation"},key:"page-".concat(c)},[v])},_=e();this.firstNumber||this.hideGotoEndButtons||(_=g(1,this.labelFirstPage,E["r"],this.firstText,this.firstClass,1,"pagination-goto-first")),h.push(_),h.push(g(s-1,this.labelPrevPage,E["Z"],this.prevText,this.prevClass,1,"pagination-goto-prev")),h.push(this.firstNumber&&1!==c[0]?y({number:1},0):e()),h.push(l?v(!1):e()),this.pageList.forEach((function(e,n){var i=l&&t.firstNumber&&1!==c[0]?1:0;h.push(y(e,n+i))})),h.push(f?v(!0):e()),h.push(this.lastNumber&&c[c.length-1]!==a?y({number:a},-1):e()),h.push(g(s+1,this.labelNextPage,E["U"],this.nextText,this.nextClass,a,"pagination-goto-next"));var O=e();this.lastNumber||this.hideGotoEndButtons||(O=g(a,this.labelLastPage,E["D"],this.lastText,this.lastClass,a,"pagination-goto-last")),h.push(O);var j=e("ul",{staticClass:"pagination",class:["b-pagination",this.btnSize,this.alignment,this.styleClass],attrs:{role:o?null:"menubar","aria-disabled":n?"true":"false","aria-label":o?null:r||null},on:o?{}:{keydown:this.handleKeyNav},ref:"ul"},h);return o?e("nav",{attrs:{"aria-disabled":n?"true":null,"aria-hidden":n?"true":"false","aria-label":o&&r||null}},[j]):j}});function Fb(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,i)}return n}function Ib(e){for(var t=1;te.numberOfPages)&&(this.currentPage=1),this.localNumberOfPages=e.numberOfPages}},created:function(){var e=this;this.localNumberOfPages=this.numberOfPages;var t=Object(F["c"])(this[Tb],0);t>0?this.currentPage=t:this.$nextTick((function(){e.currentPage=0}))},methods:{onClick:function(e,t){var n=this;if(t!==this.currentPage){var i=e.target,r=new ha["a"](Y["F"],{cancelable:!0,vueTarget:this,target:i});this.$emit(r.type,r,t),r.defaultPrevented||(this.currentPage=t,this.$emit(Y["d"],this.currentPage),this.$nextTick((function(){Object(H["u"])(i)&&n.$el.contains(i)?Object(H["d"])(i):n.focusCurrent()})))}},makePage:function(e){return e},linkProps:function(){return{}}}}),Gb=M({components:{BPagination:Ub}});function qb(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,i)}return n}function Jb(e){for(var t=1;t0?this.localNumberOfPages=this.pages.length:this.localNumberOfPages=Xb(this.numberOfPages),this.$nextTick((function(){e.guessCurrentPage()}))},onClick:function(e,t){var n=this;if(t!==this.currentPage){var i=e.currentTarget||e.target,r=new ha["a"](Y["F"],{cancelable:!0,vueTarget:this,target:i});this.$emit(r.type,r,t),r.defaultPrevented||(Object(H["D"])((function(){n.currentPage=t,n.$emit(Y["d"],t)})),this.$nextTick((function(){Object(H["c"])(i)})))}},getPageInfo:function(e){if(!Object(u["a"])(this.pages)||0===this.pages.length||Object(u["o"])(this.pages[e-1])){var t="".concat(this.baseUrl).concat(e);return{link:this.useRouter?{path:t}:t,text:Object(me["g"])(e)}}var n=this.pages[e-1];if(Object(u["j"])(n)){var i=n.link;return{link:Object(u["j"])(i)?i:this.useRouter?{path:i}:i,text:Object(me["g"])(n.text||e)}}return{link:Object(me["g"])(n),text:Object(me["g"])(e)}},makePage:function(e){var t=this.pageGen,n=this.getPageInfo(e);return Object(I["b"])(t)?t(e,n):n.text},makeLink:function(e){var t=this.linkGen,n=this.getPageInfo(e);return Object(I["b"])(t)?t(e,n):n.link},linkProps:function(e){var t=Object(I["e"])(Zb,this),n=this.makeLink(e);return this.useRouter||Object(u["j"])(n)?t.to=n:t.href=n,t},resolveLink:function(){var e,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";try{e=document.createElement("a"),e.href=Object(pe["a"])({to:t},"a","/","/"),document.body.appendChild(e);var n=e,i=n.pathname,r=n.hash,o=n.search;return document.body.removeChild(e),{path:i,hash:r,query:Object(pe["f"])(o)}}catch(a){try{e&&e.parentNode&&e.parentNode.removeChild(e)}catch(s){}return{}}},resolveRoute:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";try{var t=this.$router.resolve(e,this.$route).route;return{path:t.path,hash:t.hash,query:t.query}}catch(n){return{}}},guessCurrentPage:function(){var e=this.$router,t=this.$route,n=this.computedValue;if(!this.noPageDetect&&!n&&(r["i"]||!r["i"]&&e))for(var i=e&&t?{path:t.path,hash:t.hash,query:t.query}:{},o=r["i"]?window.location||document.location:null,a=o?{path:o.pathname,hash:o.hash,query:Object(pe["f"])(o.search)}:{},s=1;!n&&s<=this.localNumberOfPages;s++){var c=this.makeLink(s);n=e&&(Object(u["j"])(c)||this.useRouter)?Object(ei["a"])(this.resolveRoute(c),i)?s:null:r["i"]?Object(ei["a"])(this.resolveLink(c),a)?s:null:-1}this.currentPage=n>0?n:0}}}),tg=M({components:{BPaginationNav:eg}}),ng=n("be29"),ig={AUTO:"auto",TOP:"top",RIGHT:"right",BOTTOM:"bottom",LEFT:"left",TOPLEFT:"top",TOPRIGHT:"top",RIGHTTOP:"right",RIGHTBOTTOM:"right",BOTTOMLEFT:"bottom",BOTTOMRIGHT:"bottom",LEFTTOP:"left",LEFTBOTTOM:"left"},rg={AUTO:0,TOPLEFT:-1,TOP:0,TOPRIGHT:1,RIGHTTOP:-1,RIGHT:0,RIGHTBOTTOM:1,BOTTOMLEFT:-1,BOTTOM:0,BOTTOMRIGHT:1,LEFTTOP:-1,LEFT:0,LEFTBOTTOM:1},og={arrowPadding:Object(I["c"])(C["p"],6),boundary:Object(I["c"])([pa["c"],C["u"]],"scrollParent"),boundaryPadding:Object(I["c"])(C["p"],5),fallbackPlacement:Object(I["c"])(C["f"],"flip"),offset:Object(I["c"])(C["p"],0),placement:Object(I["c"])(C["u"],"top"),target:Object(I["c"])([pa["c"],pa["d"]])},ag=i["default"].extend({name:P["Sb"],props:og,data:function(){return{noFade:!1,localShow:!0,attachment:this.getAttachment(this.placement)}},computed:{templateType:function(){return"unknown"},popperConfig:function(){var e=this,t=this.placement;return{placement:this.getAttachment(t),modifiers:{offset:{offset:this.getOffset(t)},flip:{behavior:this.fallbackPlacement},arrow:{element:".arrow"},preventOverflow:{padding:this.boundaryPadding,boundariesElement:this.boundary}},onCreate:function(t){t.originalPlacement!==t.placement&&e.popperPlacementChange(t)},onUpdate:function(t){e.popperPlacementChange(t)}}}},created:function(){var e=this;this.$_popper=null,this.localShow=!0,this.$on(Y["T"],(function(t){e.popperCreate(t)}));var t=function(){e.$nextTick((function(){Object(H["D"])((function(){e.$destroy()}))}))};this.$parent.$once(Y["fb"],t),this.$once(Y["v"],t)},beforeMount:function(){this.attachment=this.getAttachment(this.placement)},updated:function(){this.updatePopper()},beforeDestroy:function(){this.destroyPopper()},destroyed:function(){var e=this.$el;e&&e.parentNode&&e.parentNode.removeChild(e)},methods:{hide:function(){this.localShow=!1},getAttachment:function(e){return ig[String(e).toUpperCase()]||"auto"},getOffset:function(e){if(!this.offset){var t=this.$refs.arrow||Object(H["E"])(".arrow",this.$el),n=Object(F["b"])(Object(H["k"])(t).width,0)+Object(F["b"])(this.arrowPadding,0);switch(rg[String(e).toUpperCase()]||0){case 1:return"+50%p - ".concat(n,"px");case-1:return"-50%p + ".concat(n,"px");default:return 0}}return this.offset},popperCreate:function(e){this.destroyPopper(),this.$_popper=new aa["a"](this.target,e,this.popperConfig)},destroyPopper:function(){this.$_popper&&this.$_popper.destroy(),this.$_popper=null},updatePopper:function(){this.$_popper&&this.$_popper.scheduleUpdate()},popperPlacementChange:function(e){this.attachment=this.getAttachment(e.placement)},renderTemplate:function(e){return e("div")}},render:function(e){var t=this,n=this.noFade;return e(N["a"],{props:{appear:!0,noFade:n},on:{beforeEnter:function(e){return t.$emit(Y["T"],e)},afterEnter:function(e){return t.$emit(Y["U"],e)},beforeLeave:function(e){return t.$emit(Y["w"],e)},afterLeave:function(e){return t.$emit(Y["v"],e)}}},[this.localShow?this.renderTemplate(e):e()])}});function sg(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,i)}return n}function cg(e){for(var t=1;t0&&void 0!==arguments[0]?arguments[0]:{},n=!1;Object(f["h"])(kg).forEach((function(i){Object(u["o"])(t[i])||e[i]===t[i]||(e[i]=t[i],"title"===i&&(n=!0))})),n&&this.localShow&&this.fixTitle()},createTemplateAndShow:function(){var e=this.getContainer(),t=this.getTemplate(),n=this.$_tip=new t({parent:this,propsData:{id:this.computedId,html:this.html,placement:this.placement,fallbackPlacement:this.fallbackPlacement,target:this.getPlacementTarget(),boundary:this.getBoundary(),offset:Object(F["c"])(this.offset,0),arrowPadding:Object(F["c"])(this.arrowPadding,0),boundaryPadding:Object(F["c"])(this.boundaryPadding,0)}});this.handleTemplateUpdate(),n.$once(Y["T"],this.onTemplateShow),n.$once(Y["U"],this.onTemplateShown),n.$once(Y["w"],this.onTemplateHide),n.$once(Y["v"],this.onTemplateHidden),n.$once(Y["fb"],this.destroyTemplate),n.$on(Y["s"],this.handleEvent),n.$on(Y["t"],this.handleEvent),n.$on(Y["A"],this.handleEvent),n.$on(Y["B"],this.handleEvent),n.$mount(e.appendChild(document.createElement("div")))},hideTemplate:function(){this.$_tip&&this.$_tip.hide(),this.clearActiveTriggers(),this.$_hoverState=""},destroyTemplate:function(){this.setWhileOpenListeners(!1),this.clearHoverTimeout(),this.$_hoverState="",this.clearActiveTriggers(),this.localPlacementTarget=null;try{this.$_tip.$destroy()}catch(e){}this.$_tip=null,this.removeAriaDescribedby(),this.restoreTitle(),this.localShow=!1},getTemplateElement:function(){return this.$_tip?this.$_tip.$el:null},handleTemplateUpdate:function(){var e=this,t=this.$_tip;if(t){var n=["title","content","variant","customClass","noFade","interactive"];n.forEach((function(n){t[n]!==e[n]&&(t[n]=e[n])}))}},show:function(){var e=this.getTarget();if(e&&Object(H["f"])(document.body,e)&&Object(H["u"])(e)&&!this.dropdownOpen()&&(!Object(u["p"])(this.title)&&""!==this.title||!Object(u["p"])(this.content)&&""!==this.content)&&!this.$_tip&&!this.localShow){this.localShow=!0;var t=this.buildEvent(Y["T"],{cancelable:!0});this.emitEvent(t),t.defaultPrevented?this.destroyTemplate():(this.fixTitle(),this.addAriaDescribedby(),this.createTemplateAndShow())}},hide:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=this.getTemplateElement();if(t&&this.localShow){var n=this.buildEvent(Y["w"],{cancelable:!e});this.emitEvent(n),n.defaultPrevented||this.hideTemplate()}else this.restoreTitle()},forceHide:function(){var e=this.getTemplateElement();e&&this.localShow&&(this.setWhileOpenListeners(!1),this.clearHoverTimeout(),this.$_hoverState="",this.clearActiveTriggers(),this.$_tip&&(this.$_tip.noFade=!0),this.hide(!0))},enable:function(){this.$_enabled=!0,this.emitEvent(this.buildEvent(Y["p"]))},disable:function(){this.$_enabled=!1,this.emitEvent(this.buildEvent(Y["l"]))},onTemplateShow:function(){this.setWhileOpenListeners(!0)},onTemplateShown:function(){var e=this.$_hoverState;this.$_hoverState="","out"===e&&this.leave(null),this.emitEvent(this.buildEvent(Y["U"]))},onTemplateHide:function(){this.setWhileOpenListeners(!1)},onTemplateHidden:function(){this.destroyTemplate(),this.emitEvent(this.buildEvent(Y["v"]))},getTarget:function(){var e=this.target;return Object(u["n"])(e)?e=Object(H["j"])(e.replace(/^#/,"")):Object(u["f"])(e)?e=e():e&&(e=e.$el||e),Object(H["s"])(e)?e:null},getPlacementTarget:function(){return this.getTarget()},getTargetId:function(){var e=this.getTarget();return e&&e.id?e.id:null},getContainer:function(){var e=!!this.container&&(this.container.$el||this.container),t=document.body,n=this.getTarget();return!1===e?Object(H["e"])(_g,n)||t:Object(u["n"])(e)&&Object(H["j"])(e.replace(/^#/,""))||t},getBoundary:function(){return this.boundary?this.boundary.$el||this.boundary:"scrollParent"},isInModal:function(){var e=this.getTarget();return e&&Object(H["e"])(gg,e)},isDropdown:function(){var e=this.getTarget();return e&&Object(H["p"])(e,Og)},dropdownOpen:function(){var e=this.getTarget();return this.isDropdown()&&e&&Object(H["E"])(jg,e)},clearHoverTimeout:function(){clearTimeout(this.$_hoverTimeout),this.$_hoverTimeout=null},clearVisibilityInterval:function(){clearInterval(this.$_visibleInterval),this.$_visibleInterval=null},clearActiveTriggers:function(){for(var e in this.activeTrigger)this.activeTrigger[e]=!1},addAriaDescribedby:function(){var e=this.getTarget(),t=Object(H["h"])(e,"aria-describedby")||"";t=t.split(/\s+/).concat(this.computedId).join(" ").trim(),Object(H["G"])(e,"aria-describedby",t)},removeAriaDescribedby:function(){var e=this,t=this.getTarget(),n=Object(H["h"])(t,"aria-describedby")||"";n=n.split(/\s+/).filter((function(t){return t!==e.computedId})).join(" ").trim(),n?Object(H["G"])(t,"aria-describedby",n):Object(H["z"])(t,"aria-describedby")},fixTitle:function(){var e=this.getTarget();if(Object(H["o"])(e,"title")){var t=Object(H["h"])(e,"title");Object(H["G"])(e,"title",""),t&&Object(H["G"])(e,wg,t)}},restoreTitle:function(){var e=this.getTarget();if(Object(H["o"])(e,wg)){var t=Object(H["h"])(e,wg);Object(H["z"])(e,wg),t&&Object(H["G"])(e,"title",t)}},buildEvent:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return new ha["a"](e,pg({cancelable:!1,target:this.getTarget(),relatedTarget:this.getTemplateElement()||null,componentId:this.computedId,vueTarget:this},t))},emitEvent:function(e){var t=e.type;this.emitOnRoot(Object(dt["e"])(this.templateType,t),e),this.$emit(t,e)},listen:function(){var e=this,t=this.getTarget();t&&(this.setRootListener(!0),this.computedTriggers.forEach((function(n){"click"===n?Object(dt["b"])(t,"click",e.handleEvent,Y["cb"]):"focus"===n?(Object(dt["b"])(t,"focusin",e.handleEvent,Y["cb"]),Object(dt["b"])(t,"focusout",e.handleEvent,Y["cb"])):"blur"===n?Object(dt["b"])(t,"focusout",e.handleEvent,Y["cb"]):"hover"===n&&(Object(dt["b"])(t,"mouseenter",e.handleEvent,Y["cb"]),Object(dt["b"])(t,"mouseleave",e.handleEvent,Y["cb"]))}),this))},unListen:function(){var e=this,t=["click","focusin","focusout","mouseenter","mouseleave"],n=this.getTarget();this.setRootListener(!1),t.forEach((function(t){n&&Object(dt["a"])(n,t,e.handleEvent,Y["cb"])}),this)},setRootListener:function(e){var t=this.$root;if(t){var n=e?"$on":"$off",i=this.templateType;t[n](Object(dt["d"])(i,Y["w"]),this.doHide),t[n](Object(dt["d"])(i,Y["T"]),this.doShow),t[n](Object(dt["d"])(i,Y["k"]),this.doDisable),t[n](Object(dt["d"])(i,Y["o"]),this.doEnable)}},setWhileOpenListeners:function(e){this.setModalListener(e),this.setDropdownListener(e),this.visibleCheck(e),this.setOnTouchStartListener(e)},visibleCheck:function(e){var t=this;this.clearVisibilityInterval();var n=this.getTarget(),i=this.getTemplateElement();e&&(this.$_visibleInterval=setInterval((function(){!i||!t.localShow||n.parentNode&&Object(H["u"])(n)||t.forceHide()}),100))},setModalListener:function(e){this.isInModal()&&this.$root[e?"$on":"$off"](vg,this.forceHide)},setOnTouchStartListener:function(e){var t=this;"ontouchstart"in document.documentElement&&Object(ut["f"])(document.body.children).forEach((function(n){Object(dt["c"])(e,n,"mouseover",t.$_noop)}))},setDropdownListener:function(e){var t=this.getTarget();t&&this.$root&&this.isDropdown&&t.__vue__&&t.__vue__[e?"$on":"$off"](Y["U"],this.forceHide)},handleEvent:function(e){var t=this.getTarget();if(t&&!Object(H["r"])(t)&&this.$_enabled&&!this.dropdownOpen()){var n=e.type,i=this.computedTriggers;if("click"===n&&Object(ut["a"])(i,"click"))this.click(e);else if("mouseenter"===n&&Object(ut["a"])(i,"hover"))this.enter(e);else if("focusin"===n&&Object(ut["a"])(i,"focus"))this.enter(e);else if("focusout"===n&&(Object(ut["a"])(i,"focus")||Object(ut["a"])(i,"blur"))||"mouseleave"===n&&Object(ut["a"])(i,"hover")){var r=this.getTemplateElement(),o=e.target,a=e.relatedTarget;if(r&&Object(H["f"])(r,o)&&Object(H["f"])(t,a)||r&&Object(H["f"])(t,o)&&Object(H["f"])(r,a)||r&&Object(H["f"])(r,o)&&Object(H["f"])(r,a)||Object(H["f"])(t,o)&&Object(H["f"])(t,a))return;this.leave(e)}}},doHide:function(e){e&&this.getTargetId()!==e&&this.computedId!==e||this.forceHide()},doShow:function(e){e&&this.getTargetId()!==e&&this.computedId!==e||this.show()},doDisable:function(e){e&&this.getTargetId()!==e&&this.computedId!==e||this.disable()},doEnable:function(e){e&&this.getTargetId()!==e&&this.computedId!==e||this.enable()},click:function(e){this.$_enabled&&!this.dropdownOpen()&&(Object(H["d"])(e.currentTarget),this.activeTrigger.click=!this.activeTrigger.click,this.isWithActiveTrigger?this.enter(null):this.leave(null))},toggle:function(){this.$_enabled&&!this.dropdownOpen()&&(this.localShow?this.leave(null):this.enter(null))},enter:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;t&&(this.activeTrigger["focusin"===t.type?"focus":"hover"]=!0),this.localShow||"in"===this.$_hoverState?this.$_hoverState="in":(this.clearHoverTimeout(),this.$_hoverState="in",this.computedDelay.show?(this.fixTitle(),this.$_hoverTimeout=setTimeout((function(){"in"===e.$_hoverState?e.show():e.localShow||e.restoreTitle()}),this.computedDelay.show)):this.show())},leave:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;t&&(this.activeTrigger["focusout"===t.type?"focus":"hover"]=!1,"focusout"===t.type&&Object(ut["a"])(this.computedTriggers,"blur")&&(this.activeTrigger.click=!1,this.activeTrigger.hover=!1)),this.isWithActiveTrigger||(this.clearHoverTimeout(),this.$_hoverState="out",this.computedDelay.hide?this.$_hoverTimeout=setTimeout((function(){"out"===e.$_hoverState&&e.hide()}),this.computedDelay.hide):this.hide())}}});function Lg(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,i)}return n}function xg(e){for(var t=1;t0&&e[Vg].updateData(t)}))}var a={title:i.title,content:i.content,triggers:i.trigger,placement:i.placement,fallbackPlacement:i.fallbackPlacement,variant:i.variant,customClass:i.customClass,container:i.container,boundary:i.boundary,delay:i.delay,offset:i.offset,noFade:!i.animation,id:i.id,disabled:i.disabled,html:i.html},s=e[Vg].__bv_prev_data__;if(e[Vg].__bv_prev_data__=a,!Object(ei["a"])(a,s)){var c={target:e};Object(f["h"])(a).forEach((function(t){a[t]!==s[t]&&(c[t]="title"!==t&&"content"!==t||!Object(u["f"])(a[t])?a[t]:a[t](e))})),e[Vg].updateData(c)}}},av=function(e){e[Vg]&&(e[Vg].$destroy(),e[Vg]=null),delete e[Vg]},sv={bind:function(e,t,n){ov(e,t,n)},componentUpdated:function(e,t,n){n.context.$nextTick((function(){ov(e,t,n)}))},unbind:function(e){av(e)}},cv=M({directives:{VBPopover:sv}}),uv=M({components:{BPopover:Rg},plugins:{VBPopoverPlugin:cv}}),dv=Object(I["d"])({animated:Object(I["c"])(C["g"],null),label:Object(I["c"])(C["u"]),labelHtml:Object(I["c"])(C["u"]),max:Object(I["c"])(C["p"],null),precision:Object(I["c"])(C["p"],null),showProgress:Object(I["c"])(C["g"],null),showValue:Object(I["c"])(C["g"],null),striped:Object(I["c"])(C["g"],null),value:Object(I["c"])(C["p"],0),variant:Object(I["c"])(C["u"])},P["Ub"]),lv=i["default"].extend({name:P["Ub"],mixins:[B["a"]],inject:{bvProgress:{default:function(){return{}}}},props:dv,computed:{progressBarClasses:function(){var e=this.computedAnimated,t=this.computedVariant;return[t?"bg-".concat(t):"",this.computedStriped||e?"progress-bar-striped":"",e?"progress-bar-animated":""]},progressBarStyles:function(){return{width:this.computedValue/this.computedMax*100+"%"}},computedValue:function(){return Object(F["b"])(this.value,0)},computedMax:function(){var e=Object(F["b"])(this.max)||Object(F["b"])(this.bvProgress.max,0);return e>0?e:100},computedPrecision:function(){return Object(ne["d"])(Object(F["c"])(this.precision,Object(F["c"])(this.bvProgress.precision,0)),0)},computedProgress:function(){var e=this.computedPrecision,t=Object(ne["f"])(10,e);return Object(F["a"])(100*t*this.computedValue/this.computedMax/t,e)},computedVariant:function(){return this.variant||this.bvProgress.variant},computedStriped:function(){return Object(u["b"])(this.striped)?this.striped:this.bvProgress.striped||!1},computedAnimated:function(){return Object(u["b"])(this.animated)?this.animated:this.bvProgress.animated||!1},computedShowProgress:function(){return Object(u["b"])(this.showProgress)?this.showProgress:this.bvProgress.showProgress||!1},computedShowValue:function(){return Object(u["b"])(this.showValue)?this.showValue:this.bvProgress.showValue||!1}},render:function(e){var t,n=this.label,i=this.labelHtml,r=this.computedValue,o=this.computedPrecision,a={};return this.hasNormalizedSlot()?t=this.normalizeSlot():n||i?a=qt(i,n):this.computedShowProgress?t=this.computedProgress:this.computedShowValue&&(t=Object(F["a"])(r,o)),e("div",{staticClass:"progress-bar",class:this.progressBarClasses,style:this.progressBarStyles,attrs:{role:"progressbar","aria-valuemin":"0","aria-valuemax":Object(me["g"])(this.computedMax),"aria-valuenow":Object(F["a"])(r,o)},domProps:a},t)}});function fv(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,i)}return n}function pv(e){for(var t=1;t0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this.noCloseOnRouteChange||e.fullPath===t.fullPath||this.hide()})),mv),created:function(){this.$_returnFocusEl=null},mounted:function(){var e=this;this.listenOnRoot(Mv,this.handleToggle),this.listenOnRoot(kv,this.handleSync),this.$nextTick((function(){e.emitState(e.localShow)}))},activated:function(){this.emitSync()},beforeDestroy:function(){this.localShow=!1,this.$_returnFocusEl=null},methods:{hide:function(){this.localShow=!1},emitState:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.localShow;this.emitOnRoot(Lv,this.safeId(),e)},emitSync:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.localShow;this.emitOnRoot(xv,this.safeId(),e)},handleToggle:function(e){e&&e===this.safeId()&&(this.localShow=!this.localShow)},handleSync:function(e){var t=this;e&&e===this.safeId()&&this.$nextTick((function(){t.emitSync(t.localShow)}))},onKeydown:function(e){var t=e.keyCode;!this.noCloseOnEsc&&t===tt&&this.localShow&&this.hide()},onBackdropClick:function(){this.localShow&&!this.noCloseOnBackdrop&&this.hide()},onTopTrapFocus:function(){var e=Object(H["n"])(this.$refs.content);this.enforceFocus(e.reverse()[0])},onBottomTrapFocus:function(){var e=Object(H["n"])(this.$refs.content);this.enforceFocus(e[0])},onBeforeEnter:function(){this.$_returnFocusEl=Object(H["g"])(r["i"]?[document.body]:[]),this.isOpen=!0},onAfterEnter:function(e){Object(H["f"])(e,Object(H["g"])())||this.enforceFocus(e),this.$emit(Y["U"])},onAfterLeave:function(){this.enforceFocus(this.$_returnFocusEl),this.$_returnFocusEl=null,this.isOpen=!1,this.$emit(Y["v"])},enforceFocus:function(e){this.noEnforceFocus||Object(H["d"])(e)}},render:function(e){var t,n=this.bgVariant,i=this.width,r=this.textVariant,o=this.localShow,a=""===this.shadow||this.shadow,s=e(this.tag,{staticClass:wv,class:[(t={shadow:!0===a},jv(t,"shadow-".concat(a),a&&!0!==a),jv(t,"".concat(wv,"-right"),this.right),jv(t,"bg-".concat(n),n),jv(t,"text-".concat(r),r),t),this.sidebarClass],style:{width:i},attrs:this.computedAttrs,directives:[{name:"show",value:o}],ref:"content"},[Iv(e,this)]);s=e("transition",{props:this.transitionProps,on:{beforeEnter:this.onBeforeEnter,afterEnter:this.onAfterEnter,afterLeave:this.onAfterLeave}},[s]);var c=e(N["a"],{props:{noFade:this.noSlide}},[Bv(e,this)]),u=e(),d=e();return this.backdrop&&o&&(u=e("div",{attrs:{tabindex:"0"},on:{focus:this.onTopTrapFocus}}),d=e("div",{attrs:{tabindex:"0"},on:{focus:this.onBottomTrapFocus}})),e("div",{staticClass:"b-sidebar-outer",style:{zIndex:this.zIndex},attrs:{tabindex:"-1"},on:{keydown:this.onKeydown}},[u,s,d,c])}}),Nv=M({components:{BSidebar:Rv},plugins:{VBTogglePlugin:ra}});function zv(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Wv=Object(I["d"])({animation:Object(I["c"])(C["u"],"wave"),height:Object(I["c"])(C["u"]),size:Object(I["c"])(C["u"]),type:Object(I["c"])(C["u"],"text"),variant:Object(I["c"])(C["u"]),width:Object(I["c"])(C["u"])},P["Xb"]),Vv=i["default"].extend({name:P["Xb"],functional:!0,props:Wv,render:function(e,t){var n,i=t.data,r=t.props,o=r.size,a=r.animation,s=r.variant;return e("div",Object(he["a"])(i,{staticClass:"b-skeleton",style:{width:o||r.width,height:o||r.height},class:(n={},zv(n,"b-skeleton-".concat(r.type),!0),zv(n,"b-skeleton-animate-".concat(a),a),zv(n,"bg-".concat(s),s),n)}))}});function Uv(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,i)}return n}function Gv(e){for(var t=1;t0}}});function ty(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var ny={stacked:Object(I["c"])(C["j"],!1)},iy=i["default"].extend({props:ny,computed:{isStacked:function(){var e=this.stacked;return""===e||e},isStackedAlways:function(){return!0===this.isStacked},stackedTableClasses:function(){var e=this.isStackedAlways;return ty({"b-table-stacked":e},"b-table-stacked-".concat(this.stacked),!e&&this.isStacked)}}});function ry(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,i)}return n}function oy(e){for(var t=1;t0&&!this.computedBusy,[this.tableClass,{"table-striped":this.striped,"table-hover":e,"table-dark":this.dark,"table-bordered":this.bordered,"table-borderless":this.borderless,"table-sm":this.small,border:this.outlined,"b-table-fixed":this.fixed,"b-table-caption-top":this.captionTop,"b-table-no-border-collapse":this.noBorderCollapse},t?"".concat(this.dark?"bg":"table","-").concat(t):"",this.stackedTableClasses,this.selectableTableClasses]},tableAttrs:function(){var e=this.computedItems,t=this.filteredItems,n=this.computedFields,i=this.selectableTableAttrs,r=this.isTableSimple?{}:{"aria-busy":this.computedBusy?"true":"false","aria-colcount":Object(me["g"])(n.length),"aria-describedby":this.bvAttrs["aria-describedby"]||this.$refs.caption?this.captionId:null},o=e&&t&&t.length>e.length?Object(me["g"])(t.length):null;return oy(oy(oy({"aria-rowcount":o},this.bvAttrs),{},{id:this.safeId(),role:"table"},r),i)}},render:function(e){var t=this.wrapperClasses,n=this.renderCaption,i=this.renderColgroup,r=this.renderThead,o=this.renderTbody,a=this.renderTfoot,s=[];this.isTableSimple?s.push(this.normalizeSlot()):(s.push(n?n():null),s.push(i?i():null),s.push(r?r():null),s.push(o?o():null),s.push(a?a():null));var u=e("table",{staticClass:"table b-table",class:this.tableClasses,attrs:this.tableAttrs,key:"b-table"},s.filter(c["a"]));return t.length>0?e("div",{class:t,style:this.wrapperStyles,key:"wrap"},[u]):u}});function uy(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,i)}return n}function dy(e){for(var t=1;t0},vy=Object(I["d"])({animation:Object(I["c"])(C["u"]),columns:Object(I["c"])(C["n"],5,gy),hideHeader:Object(I["c"])(C["g"],!1),rows:Object(I["c"])(C["n"],3,gy),showFooter:Object(I["c"])(C["g"],!1),tableProps:Object(I["c"])(C["q"],{})},P["ac"]),yy=i["default"].extend({name:P["ac"],functional:!0,props:vy,render:function(e,t){var n=t.props,i=n.animation,r=n.columns,o=e("th",[e(Vv,{props:{animation:i}})]),a=e("tr",Object(ut["c"])(r,o)),s=e("td",[e(Vv,{props:{width:"75%",animation:i}})]),c=e("tr",Object(ut["c"])(r,s)),u=e("tbody",Object(ut["c"])(n.rows,c)),d=n.hideHeader?e():e("thead",[a]),l=n.showFooter?e("tfoot",[a]):e();return e(py,{props:my({},n.tableProps)},[d,u,l])}}),_y=Object(I["d"])({loading:Object(I["c"])(C["g"],!1)},P["bc"]),Oy=i["default"].extend({name:P["bc"],functional:!0,props:_y,render:function(e,t){var n=t.data,i=t.props,r=t.slots,o=t.scopedSlots,a=r(),s=o||{},c={};return i.loading?e("div",Object(he["a"])(n,{attrs:{role:"alert","aria-live":"polite","aria-busy":!0},staticClass:"b-skeleton-wrapper",key:"loading"}),Object(hi["b"])(E["F"],c,s,a)):Object(hi["b"])(E["i"],c,s,a)}}),jy=M({components:{BSkeleton:Vv,BSkeletonIcon:Kv,BSkeletonImg:Qv,BSkeletonTable:yy,BSkeletonWrapper:Oy}}),wy=M({components:{BSpinner:pb}});function ky(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,i)}return n}function My(e){for(var t=1;t0?e:null},$y=function(e){return Object(u["p"])(e)||Hy(e)>0},Fy=Object(I["d"])({colspan:Object(I["c"])(C["p"],null,$y),rowspan:Object(I["c"])(C["p"],null,$y),stackedHeading:Object(I["c"])(C["u"]),stickyColumn:Object(I["c"])(C["g"],!1),variant:Object(I["c"])(C["u"])},P["fc"]),Iy=i["default"].extend({name:P["fc"],mixins:[ti["a"],sd["a"],B["a"]],inject:{bvTableTr:{default:function(){return{}}}},inheritAttrs:!1,props:Fy,computed:{tag:function(){return"td"},inTbody:function(){return this.bvTableTr.inTbody},inThead:function(){return this.bvTableTr.inThead},inTfoot:function(){return this.bvTableTr.inTfoot},isDark:function(){return this.bvTableTr.isDark},isStacked:function(){return this.bvTableTr.isStacked},isStackedCell:function(){return this.inTbody&&this.isStacked},isResponsive:function(){return this.bvTableTr.isResponsive},isStickyHeader:function(){return this.bvTableTr.isStickyHeader},hasStickyHeader:function(){return this.bvTableTr.hasStickyHeader},isStickyColumn:function(){return!this.isStacked&&(this.isResponsive||this.hasStickyHeader)&&this.stickyColumn},rowVariant:function(){return this.bvTableTr.variant},headVariant:function(){return this.bvTableTr.headVariant},footVariant:function(){return this.bvTableTr.footVariant},tableVariant:function(){return this.bvTableTr.tableVariant},computedColspan:function(){return Hy(this.colspan)},computedRowspan:function(){return Hy(this.rowspan)},cellClasses:function(){var e=this.variant,t=this.headVariant,n=this.isStickyColumn;return(!e&&this.isStickyHeader&&!t||!e&&n&&this.inTfoot&&!this.footVariant||!e&&n&&this.inThead&&!t||!e&&n&&this.inTbody)&&(e=this.rowVariant||this.tableVariant||"b-table-default"),[e?"".concat(this.isDark?"bg":"table","-").concat(e):null,n?"b-table-sticky-column":null]},cellAttrs:function(){var e=this.stackedHeading,t=this.inThead||this.inTfoot,n=this.computedColspan,i=this.computedRowspan,r="cell",o=null;return t?(r="columnheader",o=n>0?"colspan":"col"):Object(H["t"])(this.tag,"th")&&(r="rowheader",o=i>0?"rowgroup":"row"),Cy(Cy({colspan:n,rowspan:i,role:r,scope:o},this.bvAttrs),{},{"data-label":this.isStackedCell&&!Object(u["p"])(e)?Object(me["g"])(e):null})}},render:function(e){var t=[this.normalizeSlot()];return e(this.tag,{class:this.cellClasses,attrs:this.cellAttrs,on:this.bvListeners},[this.isStackedCell?e("div",[t]):t])}});function By(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Ry="busy",Ny=Y["gb"]+Ry,zy=By({},Ry,Object(I["c"])(C["g"],!1)),Wy=i["default"].extend({props:zy,data:function(){return{localBusy:!1}},computed:{computedBusy:function(){return this[Ry]||this.localBusy}},watch:{localBusy:function(e,t){e!==t&&this.$emit(Ny,e)}},methods:{stopIfBusy:function(e){return!!this.computedBusy&&(Object(dt["f"])(e),!0)},renderBusy:function(){var e=this.tbodyTrClass,t=this.tbodyTrAttr,n=this.$createElement;return this.computedBusy&&this.hasNormalizedSlot(E["bb"])?n(Dy,{staticClass:"b-table-busy-slot",class:[Object(u["f"])(e)?e(null,E["bb"]):e],attrs:Object(u["f"])(t)?t(null,E["bb"]):t,key:"table-busy-slot"},[n(Iy,{props:{colspan:this.computedFields.length||null}},[this.normalizeSlot(E["bb"])])]):null}}}),Vy={caption:Object(I["c"])(C["u"]),captionHtml:Object(I["c"])(C["u"])},Uy=i["default"].extend({props:Vy,computed:{captionId:function(){return this.isStacked?this.safeId("_caption_"):null}},methods:{renderCaption:function(){var e=this.caption,t=this.captionHtml,n=this.$createElement,i=n(),r=this.hasNormalizedSlot(E["cb"]);return(r||e||t)&&(i=n("caption",{attrs:{id:this.captionId},domProps:r?{}:qt(t,e),key:"caption",ref:"caption"},this.normalizeSlot(E["cb"]))),i}}}),Gy={},qy=i["default"].extend({methods:{renderColgroup:function(){var e=this.computedFields,t=this.$createElement,n=t();return this.hasNormalizedSlot(E["db"])&&(n=t("colgroup",{key:"colgroup"},[this.normalizeSlot(E["db"],{columns:e.length,fields:e})])),n}}}),Jy={emptyFilteredHtml:Object(I["c"])(C["u"]),emptyFilteredText:Object(I["c"])(C["u"],"There are no records matching your request"),emptyHtml:Object(I["c"])(C["u"]),emptyText:Object(I["c"])(C["u"],"There are no records to show"),showEmpty:Object(I["c"])(C["g"],!1)},Ky=i["default"].extend({props:Jy,methods:{renderEmpty:function(){var e=this.computedItems,t=this.$createElement,n=t();if(this.showEmpty&&(!e||0===e.length)&&(!this.computedBusy||!this.hasNormalizedSlot(E["bb"]))){var i=this.computedFields,r=this.isFiltered,o=this.emptyText,a=this.emptyHtml,s=this.emptyFilteredText,c=this.emptyFilteredHtml,d=this.tbodyTrClass,l=this.tbodyTrAttr;n=this.normalizeSlot(r?E["o"]:E["n"],{emptyFilteredHtml:c,emptyFilteredText:s,emptyHtml:a,emptyText:o,fields:i,items:e}),n||(n=t("div",{class:["text-center","my-2"],domProps:r?qt(c,s):qt(a,o)})),n=t(Iy,{props:{colspan:i.length||null}},[t("div",{attrs:{role:"alert","aria-live":"polite"}},[n])]),n=t(Dy,{staticClass:"b-table-empty-row",class:[Object(u["f"])(d)?d(null,"row-empty"):d],attrs:Object(u["f"])(l)?l(null,"row-empty"):l,key:r?"b-empty-filtered-row":"b-empty-row"},[n])}return n}}}),Xy=function e(t){return Object(u["p"])(t)?"":Object(u["j"])(t)&&!Object(u["c"])(t)?Object(f["h"])(t).sort().map((function(n){return e(t[n])})).filter((function(e){return!!e})).join(" "):Object(me["g"])(t)};function Zy(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,i)}return n}function Qy(e){for(var t=1;t3&&void 0!==arguments[3]?arguments[3]:{},r=Object(f["h"])(i).reduce((function(t,n){var r=i[n],o=r.filterByFormatted,a=Object(u["f"])(o)?o:o?r.formatter:null;return Object(u["f"])(a)&&(t[n]=a(e[n],n,e)),t}),Object(f["b"])(e)),o=Object(f["h"])(r).filter((function(e){return!r_[e]&&!(Object(u["a"])(t)&&t.length>0&&Object(ut["a"])(t,e))&&!(Object(u["a"])(n)&&n.length>0&&!Object(ut["a"])(n,e))}));return Object(f["k"])(r,o)},s_=function(e,t,n,i){return Object(u["j"])(e)?Xy(a_(e,t,n,i)):""};function c_(e){return f_(e)||l_(e)||d_(e)||u_()}function u_(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function d_(e,t){if(e){if("string"===typeof e)return p_(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?p_(e,t):void 0}}function l_(e){if("undefined"!==typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}function f_(e){if(Array.isArray(e))return p_(e)}function p_(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,i=new Array(t);n0&&Object(p["a"])(h_,P["ec"]),e},localFiltering:function(){return!this.hasProvider||!!this.noProviderFiltering},filteredCheck:function(){var e=this.filteredItems,t=this.localItems,n=this.localFilter;return{filteredItems:e,localItems:t,localFilter:n}},localFilterFn:function(){var e=this.filterFunction;return Object(I["b"])(e)?e:null},filteredItems:function(){var e=this.localItems,t=this.localFilter,n=this.localFiltering?this.filterFnFactory(this.localFilterFn,t)||this.defaultFilterFnFactory(t):null;return n&&e.length>0?e.filter(n):e}},watch:{computedFilterDebounce:function(e){!e&&this.$_filterTimer&&(this.clearFilterTimer(),this.localFilter=this.filterSanitize(this.filter))},filter:{deep:!0,handler:function(e){var t=this,n=this.computedFilterDebounce;this.clearFilterTimer(),n&&n>0?this.$_filterTimer=setTimeout((function(){t.localFilter=t.filterSanitize(e)}),n):this.localFilter=this.filterSanitize(e)}},filteredCheck:function(e){var t=e.filteredItems,n=e.localFilter,i=!1;n?Object(ei["a"])(n,[])||Object(ei["a"])(n,{})?i=!1:n&&(i=!0):i=!1,i&&this.$emit(Y["q"],t,t.length),this.isFiltered=i},isFiltered:function(e,t){if(!1===e&&!0===t){var n=this.localItems;this.$emit(Y["q"],n,n.length)}}},created:function(){var e=this;this.$_filterTimer=null,this.$nextTick((function(){e.isFiltered=Boolean(e.localFilter)}))},beforeDestroy:function(){this.clearFilterTimer()},methods:{clearFilterTimer:function(){clearTimeout(this.$_filterTimer),this.$_filterTimer=null},filterSanitize:function(e){return!this.localFiltering||this.localFilterFn||Object(u["n"])(e)||Object(u["m"])(e)?Object(a["a"])(e):""},filterFnFactory:function(e,t){if(!e||!Object(u["f"])(e)||!t||Object(ei["a"])(t,[])||Object(ei["a"])(t,{}))return null;var n=function(n){return e(n,t)};return n},defaultFilterFnFactory:function(e){var t=this;if(!e||!Object(u["n"])(e)&&!Object(u["m"])(e))return null;var n=e;if(Object(u["n"])(n)){var i=Object(me["a"])(e).replace(s["w"],"\\s+");n=new RegExp(".*".concat(i,".*"),"i")}var r=function(e){return n.lastIndex=0,n.test(s_(e,t.computedFilterIgnored,t.computedFilterIncluded,t.computedFieldsObj))};return r}}}),g_=function(e,t){var n=null;return Object(u["n"])(t)?n={key:e,label:t}:Object(u["f"])(t)?n={key:e,formatter:t}:Object(u["j"])(t)?(n=Object(f["b"])(t),n.key=n.key||e):!1!==t&&(n={key:e}),n},v_=function(e,t){var n=[];if(Object(u["a"])(e)&&e.filter(c["a"]).forEach((function(e){if(Object(u["n"])(e))n.push({key:e,label:Object(me["f"])(e)});else if(Object(u["j"])(e)&&e.key&&Object(u["n"])(e.key))n.push(Object(f["b"])(e));else if(Object(u["j"])(e)&&1===Object(f["h"])(e).length){var t=Object(f["h"])(e)[0],i=g_(t,e[t]);i&&n.push(i)}})),0===n.length&&Object(u["a"])(t)&&t.length>0){var i=t[0];Object(f["h"])(i).forEach((function(e){r_[e]||n.push({key:e,label:Object(me["f"])(e)})}))}var r={};return n.filter((function(e){return!r[e.key]&&(r[e.key]=!0,e.label=Object(u["n"])(e.label)?e.label:Object(me["f"])(e.key),!0)}))};function y_(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,i)}return n}function __(e){for(var t=1;t0&&e.some(c["a"])},selectableIsMultiSelect:function(){return this.isSelectable&&Object(ut["a"])(["range","multi"],this.selectMode)},selectableTableClasses:function(){var e,t=this.isSelectable;return e={"b-table-selectable":t},E_(e,"b-table-select-".concat(this.selectMode),t),E_(e,"b-table-selecting",this.selectableHasSelection),E_(e,"b-table-selectable-no-click",t&&!this.hasSelectableRowClick),e},selectableTableAttrs:function(){return{"aria-multiselectable":this.isSelectable?this.selectableIsMultiSelect?"true":"false":null}}},watch:{computedItems:function(e,t){var n=!1;if(this.isSelectable&&this.selectedRows.length>0){n=Object(u["a"])(e)&&Object(u["a"])(t)&&e.length===t.length;for(var i=0;n&&i=0&&e0&&(this.selectedLastClicked=-1,this.selectedRows=this.selectableIsMultiSelect?Object(ut["c"])(e,!0):[!0])},isRowSelected:function(e){return!(!Object(u["h"])(e)||!this.selectedRows[e])},clearSelected:function(){this.selectedLastClicked=-1,this.selectedRows=[]},selectableRowClasses:function(e){if(this.isSelectable&&this.isRowSelected(e)){var t=this.selectedVariant;return E_({"b-table-row-selected":!0},"".concat(this.dark?"bg":"table","-").concat(t),t)}return{}},selectableRowAttrs:function(e){return{"aria-selected":this.isSelectable?this.isRowSelected(e)?"true":"false":null}},setSelectionHandlers:function(e){var t=e&&!this.noSelectOnClick?"$on":"$off";this[t](Y["L"],this.selectionHandler),this[t](Y["q"],this.clearSelected),this[t](Y["i"],this.clearSelected)},selectionHandler:function(e,t,n){if(this.isSelectable&&!this.noSelectOnClick){var i=this.selectMode,r=this.selectedLastRow,o=this.selectedRows.slice(),a=!o[t];if("single"===i)o=[];else if("range"===i)if(r>-1&&n.shiftKey){for(var s=Object(ne["e"])(r,t);s<=Object(ne["d"])(r,t);s++)o[s]=!0;a=!0}else n.ctrlKey||n.metaKey||(o=[],a=!0),this.selectedLastRow=a?t:-1;o[t]=a,this.selectedRows=o}else this.clearSelected()}}}),R_=function(e,t){return e.map((function(e,t){return[t,e]})).sort(function(e,t){return this(e[1],t[1])||e[0]-t[0]}.bind(t)).map((function(e){return e[1]}))},N_=function(e){return Object(u["p"])(e)?"":Object(u["i"])(e)?Object(F["b"])(e,e):e},z_=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},i=n.sortBy,r=void 0===i?null:i,o=n.formatter,a=void 0===o?null:o,s=n.locale,c=void 0===s?void 0:s,d=n.localeOptions,f=void 0===d?{}:d,p=n.nullLast,h=void 0!==p&&p,m=l(e,r,null),b=l(t,r,null);return Object(u["f"])(a)&&(m=a(m,r,e),b=a(b,r,t)),m=N_(m),b=N_(b),Object(u["c"])(m)&&Object(u["c"])(b)||Object(u["h"])(m)&&Object(u["h"])(b)?mb?1:0:h&&""===m&&""!==b?1:h&&""!==m&&""===b?-1:Xy(m).localeCompare(Xy(b),c,f)};function W_(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,i)}return n}function V_(e){for(var t=1;t0&&void 0!==arguments[0]?arguments[0]:document,t=Object(H["l"])();return!!(t&&""!==t.toString().trim()&&t.containsNode&&Object(H["s"])(e))&&t.containsNode(e,!0)},lO=Object(I["d"])(Fy,P["mc"]),fO=i["default"].extend({name:P["mc"],extends:Iy,props:lO,computed:{tag:function(){return"th"}}});function pO(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,i)}return n}function hO(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,i=new Array(t);n0&&(y=String((a-1)*s+t+1));var _=Object(me["g"])(l(e,o))||null,O=_||Object(me["g"])(t),j=_?this.safeId("_row_".concat(_)):null,w=this.selectableRowClasses?this.selectableRowClasses(t):{},k=this.selectableRowAttrs?this.selectableRowAttrs(t):{},M=Object(u["f"])(c)?c(e,"row"):c,L=Object(u["f"])(d)?d(e,"row"):d;if(b.push(f(Dy,{class:[M,w,h?"b-table-has-details":""],props:{variant:e[n_]||null},attrs:hO(hO({id:j},L),{},{tabindex:m?"0":null,"data-pk":_||null,"aria-details":g,"aria-owns":g,"aria-rowindex":y},k),on:{mouseenter:this.rowHovered,mouseleave:this.rowUnhovered},key:"__b-table-row-".concat(O,"__"),ref:"item-rows",refInFor:!0},v)),h){var x={item:e,index:t,fields:i,toggleDetails:this.toggleDetailsFactory(p,e)};this.supportsSelectableRows&&(x.rowSelected=this.isRowSelected(t),x.selectRow=function(){return n.selectRow(t)},x.unselectRow=function(){return n.unselectRow(t)});var T=f(Iy,{props:{colspan:i.length},class:this.detailsTdClass},[this.normalizeSlot(E["ab"],x)]);r&&b.push(f("tr",{staticClass:"d-none",attrs:{"aria-hidden":"true",role:"presentation"},key:"__b-table-details-stripe__".concat(O)}));var S=Object(u["f"])(this.tbodyTrClass)?this.tbodyTrClass(e,E["ab"]):this.tbodyTrClass,D=Object(u["f"])(this.tbodyTrAttr)?this.tbodyTrAttr(e,E["ab"]):this.tbodyTrAttr;b.push(f(Dy,{staticClass:"b-table-details",class:[S],props:{variant:e[n_]||null},attrs:hO(hO({},D),{},{id:g,tabindex:"-1"}),key:"__b-table-details__".concat(O)},[T]))}else p&&(b.push(f()),r&&b.push(f()));return b}}});function kO(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,i)}return n}function MO(e){for(var t=1;t0&&n&&n.length>0?Object(ut["f"])(t.children).filter((function(e){return Object(ut["a"])(n,e)})):[]},getTbodyTrIndex:function(e){if(!Object(H["s"])(e))return-1;var t="TR"===e.tagName?e:Object(H["e"])("tr",e,!0);return t?this.getTbodyTrs().indexOf(t):-1},emitTbodyRowEvent:function(e,t){if(e&&this.hasListener(e)&&t&&t.target){var n=this.getTbodyTrIndex(t.target);if(n>-1){var i=this.computedItems[n];this.$emit(e,i,n,t)}}},tbodyRowEvtStopped:function(e){return this.stopIfBusy&&this.stopIfBusy(e)},onTbodyRowKeydown:function(e){var t=e.target,n=e.keyCode;if(!this.tbodyRowEvtStopped(e)&&"TR"===t.tagName&&Object(H["q"])(t)&&0===t.tabIndex)if(Object(ut["a"])([et,st],n))Object(dt["f"])(e),this.onTBodyRowClicked(e);else if(Object(ut["a"])([ct,Ze,nt,Qe],n)){var i=this.getTbodyTrIndex(t);if(i>-1){Object(dt["f"])(e);var r=this.getTbodyTrs(),o=e.shiftKey;n===nt||o&&n===ct?Object(H["d"])(r[0]):n===Qe||o&&n===Ze?Object(H["d"])(r[r.length-1]):n===ct&&i>0?Object(H["d"])(r[i-1]):n===Ze&&ie.length)&&(t=e.length);for(var n=0,i=new Array(t);n0&&void 0!==arguments[0]&&arguments[0],n=this.computedFields,i=this.isSortable,r=this.isSelectable,o=this.headVariant,a=this.footVariant,s=this.headRowVariant,d=this.footRowVariant,l=this.$createElement;if(this.isStackedAlways||0===n.length)return l();var f=i||this.hasListener(Y["u"]),p=r?this.selectAllRows:Lr,h=r?this.clearSelected:Lr,m=function(n,r){var o=n.label,a=n.labelHtml,s=n.variant,u=n.stickyColumn,d=n.key,m=null;n.label.trim()||n.headerTitle||(m=Object(me["f"])(n.key));var b={};f&&(b.click=function(i){e.headClicked(i,n,t)},b.keydown=function(i){var r=i.keyCode;r!==et&&r!==st||e.headClicked(i,n,t)});var g=i?e.sortTheadThAttrs(d,n,t):{},v=i?e.sortTheadThClasses(d,n,t):null,y=i?e.sortTheadThLabel(d,n,t):null,_={class:[e.fieldClasses(n),v],props:{variant:s,stickyColumn:u},style:n.thStyle||{},attrs:JO(JO({tabindex:f&&n.sortable?"0":null,abbr:n.headerAbbr||null,title:n.headerTitle||null,"aria-colindex":r+1,"aria-label":m},e.getThValues(null,d,n.thAttr,t?"foot":"head",{})),g),on:b,key:d},O=[XO(d),XO(d.toLowerCase()),XO()];t&&(O=[ZO(d),ZO(d.toLowerCase()),ZO()].concat(NO(O)));var j={label:o,column:d,field:n,isFoot:t,selectAllRows:p,clearSelected:h},w=e.normalizeSlot(O,j)||l("div",{domProps:qt(a,o)}),k=y?l("span",{staticClass:"sr-only"}," (".concat(y,")")):null;return l(fO,_,[w,k].filter(c["a"]))},b=n.map(m).filter(c["a"]),g=[];if(t)g.push(l(Dy,{class:this.tfootTrClass,props:{variant:Object(u["p"])(d)?s:d}},b));else{var v={columns:n.length,fields:n,selectAllRows:p,clearSelected:h};g.push(this.normalizeSlot(E["hb"],v)||l()),g.push(l(Dy,{class:this.theadTrClass,props:{variant:s}},b))}return l(t?CO:RO,{class:(t?this.tfootClass:this.theadClass)||null,props:t?{footVariant:a||o||null}:{headVariant:o||null},key:t?"bv-tfoot":"bv-thead"},g)}}}),tj={},nj=i["default"].extend({methods:{renderTopRow:function(){var e=this.computedFields,t=this.stacked,n=this.tbodyTrClass,i=this.tbodyTrAttr,r=this.$createElement;return this.hasNormalizedSlot(E["kb"])&&!0!==t&&""!==t?r(Dy,{staticClass:"b-table-top-row",class:[Object(u["f"])(n)?n(null,"row-top"):n],attrs:Object(u["f"])(i)?i(null,"row-top"):i,key:"b-top-row"},[this.normalizeSlot(E["kb"],{columns:e.length,fields:e})]):r()}}});function ij(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,i)}return n}function rj(e){for(var t=1;t0&&void 0!==arguments[0])||arguments[0];if(this.$_observer&&this.$_observer.disconnect(),this.$_observer=null,t){var n=function(){e.$nextTick((function(){Object(H["D"])((function(){e.updateTabs()}))}))};this.$_observer=Ar(this.$refs.content,n,{childList:!0,subtree:!1,attributes:!0,attributeFilter:["id"]})}},getTabs:function(){var e=this.registeredTabs.filter((function(e){return 0===e.$children.filter((function(e){return e._isTab})).length})),t=[];if(r["i"]&&e.length>0){var n=e.map((function(e){return"#".concat(e.safeId())})).join(", ");t=Object(H["F"])(n,this.$el).map((function(e){return e.id})).filter(c["a"])}return R_(e,(function(e,n){return t.indexOf(e.safeId())-t.indexOf(n.safeId())}))},updateTabs:function(){var e=this.getTabs(),t=e.indexOf(e.slice().reverse().find((function(e){return e.localActive&&!e.disabled})));if(t<0){var n=this.currentTab;n>=e.length?t=e.indexOf(e.slice().reverse().find(xj)):e[n]&&!e[n].disabled&&(t=n)}t<0&&(t=e.indexOf(e.find(xj))),e.forEach((function(e,n){e.localActive=n===t})),this.tabs=e,this.currentTab=t},getButtonForTab:function(e){return(this.$refs.buttons||[]).find((function(t){return t.tab===e}))},updateButton:function(e){var t=this.getButtonForTab(e);t&&t.$forceUpdate&&t.$forceUpdate()},activateTab:function(e){var t=this.currentTab,n=this.tabs,i=!1;if(e){var r=n.indexOf(e);if(r!==t&&r>-1&&!e.disabled){var o=new ha["a"](Y["a"],{cancelable:!0,vueTarget:this,componentId:this.safeId()});this.$emit(o.type,r,t,o),o.defaultPrevented||(this.currentTab=r,i=!0)}}return i||this[Mj]===t||this.$emit(Lj,t),i},deactivateTab:function(e){return!!e&&this.activateTab(this.tabs.filter((function(t){return t!==e})).find(xj))},focusButton:function(e){var t=this;this.$nextTick((function(){Object(H["d"])(t.getButtonForTab(e))}))},emitTabClick:function(e,t){Object(u["d"])(t)&&e&&e.$emit&&!e.disabled&&e.$emit(Y["f"],t)},clickTab:function(e,t){this.activateTab(e),this.emitTabClick(e,t)},firstTab:function(e){var t=this.tabs.find(xj);this.activateTab(t)&&e&&(this.focusButton(t),this.emitTabClick(t,e))},previousTab:function(e){var t=Object(ne["d"])(this.currentTab,0),n=this.tabs.slice(0,t).reverse().find(xj);this.activateTab(n)&&e&&(this.focusButton(n),this.emitTabClick(n,e))},nextTab:function(e){var t=Object(ne["d"])(this.currentTab,-1),n=this.tabs.slice(t+1).find(xj);this.activateTab(n)&&e&&(this.focusButton(n),this.emitTabClick(n,e))},lastTab:function(e){var t=this.tabs.slice().reverse().find(xj);this.activateTab(t)&&e&&(this.focusButton(t),this.emitTabClick(t,e))}},render:function(e){var t=this,n=this.align,i=this.card,r=this.end,o=this.fill,a=this.firstTab,s=this.justified,c=this.lastTab,u=this.nextTab,d=this.noKeyNav,l=this.noNavStyle,f=this.pills,p=this.previousTab,h=this.small,m=this.tabs,b=this.vertical,g=m.find((function(e){return e.localActive&&!e.disabled})),v=m.find((function(e){return!e.disabled})),y=m.map((function(n,i){var r,o=n.safeId,s=null;return d||(s=-1,(n===g||!g&&n===v)&&(s=null)),e(Tj,{props:{controls:o?o():null,id:n.controlledBy||(o?o("_BV_tab_button_"):null),noKeyNav:d,posInSet:i+1,setSize:m.length,tab:n,tabIndex:s},on:(r={},yj(r,Y["f"],(function(e){t.clickTab(n,e)})),yj(r,Y["r"],a),yj(r,Y["H"],p),yj(r,Y["C"],u),yj(r,Y["z"],c),r),key:n[A["a"]]||i,ref:"buttons",refInFor:!0})})),_=e(ym,{class:this.localNavClass,attrs:{role:"tablist",id:this.safeId("_BV_tab_controls_")},props:{fill:o,justified:s,align:n,tabs:!l&&!f,pills:!l&&f,vertical:b,small:h,cardHeader:i&&!b},ref:"nav"},[this.normalizeSlot(E["fb"])||e(),y,this.normalizeSlot(E["eb"])||e()]);_=e("div",{class:[{"card-header":i&&!b&&!r,"card-footer":i&&!b&&r,"col-auto":b},this.navWrapperClass],key:"bv-tabs-nav"},[_]);var O=this.normalizeSlot()||[],j=e();0===O.length&&(j=e("div",{class:["tab-pane","active",{"card-body":i}],key:"bv-empty-tab"},this.normalizeSlot(E["n"])));var w=e("div",{staticClass:"tab-content",class:[{col:b},this.contentClass],attrs:{id:this.safeId("_BV_tab_container_")},key:"bv-content",ref:"content"},[O,j]);return e(this.tag,{staticClass:"tabs",class:{row:b,"no-gutters":b&&i},attrs:{id:this.safeId()}},[r?w:e(),_,r?e():w])}});function Pj(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,i)}return n}function Yj(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,i=new Array(t);n1&&void 0!==arguments[1]?arguments[1]:{};e&&!Object(p["d"])(ew)&&n(Uj(Uj({},rw(t)),{},{toastContent:e}),this._vm)}},{key:"show",value:function(e){e&&this._root.$emit(Object(dt["d"])(P["pc"],Y["T"]),e)}},{key:"hide",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;this._root.$emit(Object(dt["d"])(P["pc"],Y["w"]),e)}}]),e}();e.mixin({beforeCreate:function(){this[tw]=new i(this)}}),Object(f["g"])(e.prototype,ew)||Object(f["e"])(e.prototype,ew,{get:function(){return this&&this[tw]||Object(p["a"])('"'.concat(ew,'" must be accessed from a Vue instance "this" context.'),P["pc"]),this[tw]}})},aw=M({plugins:{plugin:ow}}),sw=n("0f65"),cw=M({components:{BToast:Rj["a"],BToaster:sw["a"]},plugins:{BVToastPlugin:aw}});function uw(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,i)}return n}function dw(e){for(var t=1;t=n){var i=this.$targets[this.$targets.length-1];this.$activeTarget!==i&&this.activate(i)}else{if(this.$activeTarget&&e0)return this.$activeTarget=null,void this.clear();for(var r=this.$offsets.length;r--;){var o=this.$activeTarget!==this.$targets[r]&&e>=this.$offsets[r]&&(Object(u["o"])(this.$offsets[r+1])||e0&&this.$root&&this.$root.$emit(Xw,e,n)}},{key:"clear",value:function(){var e=this;Object(H["F"])("".concat(this.$selector,", ").concat(Uw),this.$el).filter((function(e){return Object(H["p"])(e,zw)})).forEach((function(t){return e.setActiveState(t,!1)}))}},{key:"setActiveState",value:function(e,t){e&&(t?Object(H["b"])(e,zw):Object(H["A"])(e,zw))}}],[{key:"Name",get:function(){return Rw}},{key:"Default",get:function(){return ek}},{key:"DefaultType",get:function(){return tk}}]),e}(),ak="__BV_ScrollSpy__",sk=/^\d+$/,ck=/^(auto|position|offset)$/,uk=function(e){var t={};return e.arg&&(t.element="#".concat(e.arg)),Object(f["h"])(e.modifiers).forEach((function(e){sk.test(e)?t.offset=Object(F["c"])(e,0):ck.test(e)&&(t.method=e)})),Object(u["n"])(e.value)?t.element=e.value:Object(u["h"])(e.value)?t.offset=Object(ne["g"])(e.value):Object(u["j"])(e.value)&&Object(f["h"])(e.value).filter((function(e){return!!ok.DefaultType[e]})).forEach((function(n){t[n]=e.value[n]})),t},dk=function(e,t,n){if(r["i"]){var i=uk(t);e[ak]?e[ak].updateConfig(i,n.context.$root):e[ak]=new ok(e,i,n.context.$root)}},lk=function(e){e[ak]&&(e[ak].dispose(),e[ak]=null,delete e[ak])},fk={bind:function(e,t,n){dk(e,t,n)},inserted:function(e,t,n){dk(e,t,n)},update:function(e,t,n){t.value!==t.oldValue&&dk(e,t,n)},componentUpdated:function(e,t,n){t.value!==t.oldValue&&dk(e,t,n)},unbind:function(e){lk(e)}},pk=M({directives:{VBScrollspy:fk}}),hk=M({directives:{VBVisible:sr}}),mk=M({plugins:{VBHoverPlugin:Yw,VBModalPlugin:Cw,VBPopoverPlugin:cv,VBScrollspyPlugin:pk,VBTogglePlugin:ra,VBTooltipPlugin:Dw,VBVisiblePlugin:hk}}),bk="BootstrapVue",gk=k({plugins:{componentsPlugin:Pw,directivesPlugin:mk}}),vk={install:gk,NAME:bk}},"5fb2":function(e,t,n){"use strict";var i=2147483647,r=36,o=1,a=26,s=38,c=700,u=72,d=128,l="-",f=/[^\0-\u007E]/,p=/[.\u3002\uFF0E\uFF61]/g,h="Overflow: input needs wider integers to process",m=r-o,b=Math.floor,g=String.fromCharCode,v=function(e){var t=[],n=0,i=e.length;while(n=55296&&r<=56319&&n>1,e+=b(e/t);e>m*a>>1;i+=r)e=b(e/m);return b(i+(m+1)*e/(e+s))},O=function(e){var t=[];e=v(e);var n,s,c=e.length,f=d,p=0,m=u;for(n=0;n=f&&sb((i-p)/k))throw RangeError(h);for(p+=(w-f)*k,f=w,n=0;ni)throw RangeError(h);if(s==f){for(var M=p,L=r;;L+=r){var x=L<=m?o:L>=m+a?a:L-m;if(M0&&void 0!==arguments[0]?arguments[0]:"";return String(t).replace(s["o"],"")},Je=function(t,e){return t?{innerHTML:t}:e?{textContent:e}:{}};function qe(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function Ke(t){for(var e=1;e-1&&(e=e.slice(0,n).reverse(),Object(A["d"])(e[0]))},focusNext:function(t){var e=this.getItems(),n=e.indexOf(t.target);n>-1&&(e=e.slice(n+1),Object(A["d"])(e[0]))},focusLast:function(){var t=this.getItems().reverse();Object(A["d"])(t[0])},onFocusin:function(t){var e=this.$el;t.target!==e||Object(A["f"])(e,t.relatedTarget)||(Object(le["f"])(t),this.focusFirst(t))},onKeydown:function(t){var e=t.keyCode,n=t.shiftKey;e===ce||e===re?(Object(le["f"])(t),n?this.focusFirst(t):this.focusPrev(t)):e!==Zt&&e!==oe||(Object(le["f"])(t),n?this.focusLast(t):this.focusNext(t))}},render:function(t){var e=this.keyNav;return t("div",{staticClass:"btn-toolbar",class:{"justify-content-between":this.justify},attrs:{role:"toolbar",tabindex:e?"0":null},on:e?{focusin:this.onFocusin,keydown:this.onKeydown}:{}},[this.normalizeSlot()])}}),gn=L({components:{BButtonToolbar:_n,BBtnToolbar:_n}}),yn="gregory",On="long",jn="narrow",wn="short",Mn="2-digit",Ln="numeric";function kn(t,e){return xn(t)||Yn(t,e)||Dn(t,e)||Tn()}function Tn(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function Dn(t,e){if(t){if("string"===typeof t)return Sn(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(t):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Sn(t,e):void 0}}function Sn(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);n1&&void 0!==arguments[1]?arguments[1]:yn;t=Object(ue["b"])(t).filter(c["a"]);var n=new Intl.DateTimeFormat(t,{calendar:e});return n.resolvedOptions().locale},Bn=function(t,e){var n=new Intl.DateTimeFormat(t,e);return n.format},Rn=function(t,e){return Fn(t)===Fn(e)},Nn=function(t){return t=An(t),t.setDate(1),t},Vn=function(t){return t=An(t),t.setMonth(t.getMonth()+1),t.setDate(0),t},zn=function(t,e){t=An(t);var n=t.getMonth();return t.setFullYear(t.getFullYear()+e),t.getMonth()!==n&&t.setDate(0),t},Wn=function(t){t=An(t);var e=t.getMonth();return t.setMonth(e-1),t.getMonth()===e&&t.setDate(0),t},Un=function(t){t=An(t);var e=t.getMonth();return t.setMonth(e+1),t.getMonth()===(e+2)%12&&t.setDate(0),t},Gn=function(t){return zn(t,-1)},Jn=function(t){return zn(t,1)},qn=function(t){return zn(t,-10)},Kn=function(t){return zn(t,10)},Xn=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;return t=$n(t),e=$n(e)||t,n=$n(n)||t,t?tn?n:t:null},Zn=["ar","az","ckb","fa","he","ks","lrc","mzn","ps","sd","te","ug","ur","yi"].map((function(t){return t.toLowerCase()})),Qn=function(t){var e=Object(mt["g"])(t).toLowerCase().replace(s["A"],"").split("-"),n=e.slice(0,2).join("-"),r=e[0];return Object(ue["a"])(Zn,n)||Object(ue["a"])(Zn,r)},tr=n("3c21"),er=n("493b"),nr=n("90ef");function rr(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function ir(t){for(var e=1;ee}},dateDisabled:function(){var t=this,e=this.dateOutOfRange;return function(n){n=$n(n);var r=Fn(n);return!(!e(n)&&!t.computedDateDisabledFn(r,n))}},formatDateString:function(){return Bn(this.calendarLocale,ir(ir({year:Ln,month:Mn,day:Mn},this.dateFormatOptions),{},{hour:void 0,minute:void 0,second:void 0,calendar:yn}))},formatYearMonth:function(){return Bn(this.calendarLocale,{year:Ln,month:On,calendar:yn})},formatWeekdayName:function(){return Bn(this.calendarLocale,{weekday:On,calendar:yn})},formatWeekdayNameShort:function(){return Bn(this.calendarLocale,{weekday:this.weekdayHeaderFormat||wn,calendar:yn})},formatDay:function(){var t=new Intl.NumberFormat([this.computedLocale],{style:"decimal",minimumIntegerDigits:1,minimumFractionDigits:0,maximumFractionDigits:0,notation:"standard"});return function(e){return t.format(e.getDate())}},prevDecadeDisabled:function(){var t=this.computedMin;return this.disabled||t&&Vn(qn(this.activeDate))t},nextYearDisabled:function(){var t=this.computedMax;return this.disabled||t&&Nn(Jn(this.activeDate))>t},nextDecadeDisabled:function(){var t=this.computedMax;return this.disabled||t&&Nn(Kn(this.activeDate))>t},calendar:function(){for(var t=[],e=this.calendarFirstDay,n=e.getFullYear(),r=e.getMonth(),i=this.calendarDaysInMonth,a=e.getDay(),o=(this.computedWeekStarts>a?7:0)-this.computedWeekStarts,s=0-o-a,c=0;c<6&&s0);n!==this.visible&&(this.visible=n,this.callback(n),this.once&&this.visible&&(this.doneOnce=!0,this.stop()))}},{key:"stop",value:function(){this.observer&&this.observer.disconnect(),this.observer=null}}]),t}(),ri=function(t){var e=t[ei];e&&e.stop&&e.stop(),delete t[ei]},ii=function(t,e,n){var r=e.value,i=e.modifiers,a={margin:"0px",once:!1,callback:r};Object(f["h"])(i).forEach((function(t){s["h"].test(t)?a.margin="".concat(t,"px"):"once"===t.toLowerCase()&&(a.once=!0)})),ri(t),t[ei]=new ni(t,a,n),t[ei]._prevModifiers=Object(f["b"])(i)},ai=function(t,e,n){var r=e.value,i=e.oldValue,a=e.modifiers;a=Object(f["b"])(a),!t||r===i&&t[ei]&&Object(tr["a"])(a,t[ei]._prevModifiers)||ii(t,{value:r,modifiers:a},n)},oi=function(t){ri(t)},si={bind:ii,componentUpdated:ai,unbind:oi};function ci(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function ui(t){for(var e=1;e0||i.removedNodes.length>0))&&(n=!0)}n&&e()}));return r.observe(t,Di({childList:!0,subtree:!0},n)),r};function Pi(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function Ci(t){for(var e=1;e0),touchStartX:0,touchDeltaX:0}},computed:{numSlides:function(){return this.slides.length}},watch:(Yi={},Ei(Yi,Fi,(function(t,e){t!==e&&this.setSlide(Object(F["c"])(t,0))})),Ei(Yi,"interval",(function(t,e){t!==e&&(t?(this.pause(!0),this.start(!1)):this.pause(!1))})),Ei(Yi,"isPaused",(function(t,e){t!==e&&this.$emit(t?C["G"]:C["ab"])})),Ei(Yi,"index",(function(t,e){t===e||this.isSliding||this.doSlide(t,e)})),Yi),created:function(){this.$_interval=null,this.$_animationTimeout=null,this.$_touchTimeout=null,this.$_observer=null,this.isPaused=!(Object(F["c"])(this.interval,0)>0)},mounted:function(){this.transitionEndEvent=Ui(this.$el)||null,this.updateSlides(),this.setObserver(!0)},beforeDestroy:function(){this.clearInterval(),this.clearAnimationTimeout(),this.clearTouchTimeout(),this.setObserver(!1)},methods:{clearInterval:function(t){function e(){return t.apply(this,arguments)}return e.toString=function(){return t.toString()},e}((function(){clearInterval(this.$_interval),this.$_interval=null})),clearAnimationTimeout:function(){clearTimeout(this.$_animationTimeout),this.$_animationTimeout=null},clearTouchTimeout:function(){clearTimeout(this.$_touchTimeout),this.$_touchTimeout=null},setObserver:function(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0];this.$_observer&&this.$_observer.disconnect(),this.$_observer=null,t&&(this.$_observer=xi(this.$refs.inner,this.updateSlides.bind(this),{subtree:!1,childList:!0,attributes:!0,attributeFilter:["id"]}))},setSlide:function(t){var e=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if(!(i["i"]&&document.visibilityState&&document.hidden)){var r=this.noWrap,a=this.numSlides;t=Object(nt["c"])(t),0!==a&&(this.isSliding?this.$once(C["V"],(function(){Object(A["D"])((function(){return e.setSlide(t,n)}))})):(this.direction=n,this.index=t>=a?r?a-1:0:t<0?r?0:a-1:t,r&&this.index!==t&&this.index!==this[Fi]&&this.$emit(Ii,this.index)))}},prev:function(){this.setSlide(this.index-1,"prev")},next:function(){this.setSlide(this.index+1,"next")},pause:function(t){t||(this.isPaused=!0),this.clearInterval()},start:function(t){t||(this.isPaused=!1),this.clearInterval(),this.interval&&this.numSlides>1&&(this.$_interval=setInterval(this.next,Object(nt["d"])(1e3,this.interval)))},restart:function(){this.$el.contains(Object(A["g"])())||this.start()},doSlide:function(t,e){var n=this,r=Boolean(this.interval),i=this.calcDirection(this.direction,e,t),a=i.overlayClass,o=i.dirClass,s=this.slides[e],c=this.slides[t];if(s&&c){if(this.isSliding=!0,r&&this.pause(!1),this.$emit(C["W"],t),this.$emit(Ii,this.index),this.noAnimation)Object(A["b"])(c,"active"),Object(A["A"])(s,"active"),this.isSliding=!1,this.$nextTick((function(){return n.$emit(C["V"],t)}));else{Object(A["b"])(c,a),Object(A["y"])(c),Object(A["b"])(s,o),Object(A["b"])(c,o);var u=!1,l=function e(){if(!u){if(u=!0,n.transitionEndEvent){var r=n.transitionEndEvent.split(/\s+/);r.forEach((function(t){return Object(le["a"])(c,t,e,C["cb"])}))}n.clearAnimationTimeout(),Object(A["A"])(c,o),Object(A["A"])(c,a),Object(A["b"])(c,"active"),Object(A["A"])(s,"active"),Object(A["A"])(s,o),Object(A["A"])(s,a),Object(A["G"])(s,"aria-current","false"),Object(A["G"])(c,"aria-current","true"),Object(A["G"])(s,"aria-hidden","true"),Object(A["G"])(c,"aria-hidden","false"),n.isSliding=!1,n.direction=null,n.$nextTick((function(){return n.$emit(C["V"],t)}))}};if(this.transitionEndEvent){var d=this.transitionEndEvent.split(/\s+/);d.forEach((function(t){return Object(le["b"])(c,t,l,C["cb"])}))}this.$_animationTimeout=setTimeout(l,Ri)}r&&this.start(!1)}},updateSlides:function(){this.pause(!0),this.slides=Object(A["F"])(".carousel-item",this.$refs.inner);var t=this.slides.length,e=Object(nt["d"])(0,Object(nt["e"])(Object(nt["c"])(this.index),t-1));this.slides.forEach((function(n,r){var i=r+1;r===e?(Object(A["b"])(n,"active"),Object(A["G"])(n,"aria-current","true")):(Object(A["A"])(n,"active"),Object(A["G"])(n,"aria-current","false")),Object(A["G"])(n,"aria-posinset",String(i)),Object(A["G"])(n,"aria-setsize",String(t))})),this.setSlide(e),this.start(this.isPaused)},calcDirection:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;return t?Bi[t]:n>e?Bi.next:Bi.prev},handleClick:function(t,e){var n=t.keyCode;"click"!==t.type&&n!==se&&n!==te||(Object(le["f"])(t),e())},handleSwipe:function(){var t=Object(nt["a"])(this.touchDeltaX);if(!(t<=Vi)){var e=t/this.touchDeltaX;this.touchDeltaX=0,e>0?this.prev():e<0&&this.next()}},touchStart:function(t){i["e"]&&zi[t.pointerType.toUpperCase()]?this.touchStartX=t.clientX:i["e"]||(this.touchStartX=t.touches[0].clientX)},touchMove:function(t){t.touches&&t.touches.length>1?this.touchDeltaX=0:this.touchDeltaX=t.touches[0].clientX-this.touchStartX},touchEnd:function(t){i["e"]&&zi[t.pointerType.toUpperCase()]&&(this.touchDeltaX=t.clientX-this.touchStartX),this.handleSwipe(),this.pause(!1),this.clearTouchTimeout(),this.$_touchTimeout=setTimeout(this.start,Ni+Object(nt["d"])(1e3,this.interval))}},render:function(t){var e=this,n=this.indicators,r=this.background,a=this.noAnimation,o=this.noHoverPause,s=this.noTouch,c=this.index,u=this.isSliding,l=this.pause,d=this.restart,f=this.touchStart,h=this.touchEnd,p=this.safeId("__BV_inner_"),m=t("div",{staticClass:"carousel-inner",attrs:{id:p,role:"list"},ref:"inner"},[this.normalizeSlot()]),b=t();if(this.controls){var v=function(n,r,i){var a=function(t){u?Object(le["f"])(t,{propagation:!1}):e.handleClick(t,i)};return t("a",{staticClass:"carousel-control-".concat(n),attrs:{href:"#",role:"button","aria-controls":p,"aria-disabled":u?"true":null},on:{click:a,keydown:a}},[t("span",{staticClass:"carousel-control-".concat(n,"-icon"),attrs:{"aria-hidden":"true"}}),t("span",{class:"sr-only"},[r])])};b=[v("prev",this.labelPrev,this.prev),v("next",this.labelNext,this.next)]}var _=t("ol",{staticClass:"carousel-indicators",directives:[{name:"show",value:n}],attrs:{id:this.safeId("__BV_indicators_"),"aria-hidden":n?"false":"true","aria-label":this.labelIndicators,"aria-owns":p}},this.slides.map((function(r,i){var a=function(t){e.handleClick(t,(function(){e.setSlide(i)}))};return t("li",{class:{active:i===c},attrs:{role:"button",id:e.safeId("__BV_indicator_".concat(i+1,"_")),tabindex:n?"0":"-1","aria-current":i===c?"true":"false","aria-label":"".concat(e.labelGotoSlide," ").concat(i+1),"aria-describedby":r.id||null,"aria-controls":p},on:{click:a,keydown:a},key:"slide_".concat(i)})}))),g={mouseenter:o?ki:l,mouseleave:o?ki:d,focusin:l,focusout:d,keydown:function(t){if(!/input|textarea/i.test(t.target.tagName)){var n=t.keyCode;n!==re&&n!==oe||(Object(le["f"])(t),e[n===re?"prev":"next"]())}}};return i["g"]&&!s&&(i["e"]?(g["&pointerdown"]=f,g["&pointerup"]=h):(g["&touchstart"]=f,g["&touchmove"]=this.touchMove,g["&touchend"]=h)),t("div",{staticClass:"carousel",class:{slide:!a,"carousel-fade":!a&&this.fade,"pointer-event":i["g"]&&i["e"]&&!s},style:{background:r},attrs:{role:"region",id:this.safeId(),"aria-busy":u?"true":"false"},on:g},[m,b,_])}});function qi(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function Ki(t){for(var e=1;e0?(Object(A["G"])(t,$a,r.join(" ")),Object(A["H"])(t,Ra,"none")):(Object(A["z"])(t,$a),Object(A["C"])(t,Ra)),Object(A["D"])((function(){Ka(t,n)})),Object(tr["a"])(r,t[Ea])||(t[Ea]=r,r.forEach((function(t){n.context.$root.$emit(Wa,t)})))}},no={bind:function(t,e,n){t[Ca]=!1,t[Ea]=[],Za(t,n),eo(t,e,n)},componentUpdated:eo,updated:eo,unbind:function(t,e,n){qa(t),Xa(t,n),to(t,xa),to(t,Pa),to(t,Ca),to(t,Ea),Object(A["A"])(t,Da),Object(A["A"])(t,Sa),Object(A["z"])(t,Fa),Object(A["z"])(t,$a),Object(A["z"])(t,Ia),Object(A["C"])(t,Ra)}},ro=L({directives:{VBToggle:no}}),io=L({components:{BCollapse:Ta},plugins:{VBTogglePlugin:ro}}),ao=n("f0bd"),oo="top-start",so="top-end",co="bottom-start",uo="bottom-end",lo="right-start",fo="left-start",ho=n("ca88"),po=n("6d40"),mo=r["default"].extend({data:function(){return{listenForClickOut:!1}},watch:{listenForClickOut:function(t,e){t!==e&&(Object(le["a"])(this.clickOutElement,this.clickOutEventName,this._clickOutHandler,C["cb"]),t&&Object(le["b"])(this.clickOutElement,this.clickOutEventName,this._clickOutHandler,C["cb"]))}},beforeCreate:function(){this.clickOutElement=null,this.clickOutEventName=null},mounted:function(){this.clickOutElement||(this.clickOutElement=document),this.clickOutEventName||(this.clickOutEventName="click"),this.listenForClickOut&&Object(le["b"])(this.clickOutElement,this.clickOutEventName,this._clickOutHandler,C["cb"])},beforeDestroy:function(){Object(le["a"])(this.clickOutElement,this.clickOutEventName,this._clickOutHandler,C["cb"])},methods:{isClickOut:function(t){return!Object(A["f"])(this.$el,t.target)},_clickOutHandler:function(t){this.clickOutHandler&&this.isClickOut(t)&&this.clickOutHandler(t)}}}),bo=r["default"].extend({data:function(){return{listenForFocusIn:!1}},watch:{listenForFocusIn:function(t,e){t!==e&&(Object(le["a"])(this.focusInElement,"focusin",this._focusInHandler,C["cb"]),t&&Object(le["b"])(this.focusInElement,"focusin",this._focusInHandler,C["cb"]))}},beforeCreate:function(){this.focusInElement=null},mounted:function(){this.focusInElement||(this.focusInElement=document),this.listenForFocusIn&&Object(le["b"])(this.focusInElement,"focusin",this._focusInHandler,C["cb"])},beforeDestroy:function(){Object(le["a"])(this.focusInElement,"focusin",this._focusInHandler,C["cb"])},methods:{_focusInHandler:function(t){this.focusInHandler&&this.focusInHandler(t)}}});function vo(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function _o(t){for(var e=1;e0&&void 0!==arguments[0]&&arguments[0];this.disabled||(this.visible=!1,t&&this.$once(C["v"],this.focusToggler))},toggle:function(t){t=t||{};var e=t,n=e.type,r=e.keyCode;("click"===n||"keydown"===n&&-1!==[te,se,Zt].indexOf(r))&&(this.disabled?this.visible=!1:(this.$emit(C["Z"],t),Object(le["f"])(t),this.visible?this.hide(!0):this.show()))},onMousedown:function(t){Object(le["f"])(t,{propagation:!1})},onKeydown:function(t){var e=t.keyCode;e===ee?this.onEsc(t):e===Zt?this.focusNext(t,!1):e===ce&&this.focusNext(t,!0)},onEsc:function(t){this.visible&&(this.visible=!1,Object(le["f"])(t),this.$once(C["v"],this.focusToggler))},onSplitClick:function(t){this.disabled?this.visible=!1:this.$emit(C["f"],t)},hideHandler:function(t){var e=this,n=t.target;!this.visible||Object(A["f"])(this.$refs.menu,n)||Object(A["f"])(this.toggler,n)||(this.clearHideTimeout(),this.$_hideTimeout=setTimeout((function(){return e.hide()}),this.inNavbar?300:0))},clickOutHandler:function(t){this.hideHandler(t)},focusInHandler:function(t){this.hideHandler(t)},focusNext:function(t,e){var n=this,r=t.target;!this.visible||t&&Object(A["e"])(jo,r)||(Object(le["f"])(t),this.$nextTick((function(){var t=n.getItems();if(!(t.length<1)){var i=t.indexOf(r);e&&i>0?i--:!e&&i1&&void 0!==arguments[1]?arguments[1]:null;if(Object(u["k"])(t)){var n=d(t,this.valueField),r=d(t,this.textField);return{value:Object(u["o"])(n)?e||r:n,text:Ge(String(Object(u["o"])(r)?e:r)),html:d(t,this.htmlField),disabled:Boolean(d(t,this.disabledField))}}return{value:e||t,text:Ge(String(t)),disabled:!1}},normalizeOptions:function(t){var e=this;return Object(u["a"])(t)?t.map((function(t){return e.normalizeOption(t)})):Object(u["k"])(t)?(Object(h["a"])(ys,this.$options.name),Object(f["h"])(t).map((function(n){return e.normalizeOption(t[n]||{},n)}))):[]}}});function ws(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function Ms(t){for(var e=1;e-1:Object(tr["a"])(e,t)},isRadio:function(){return!1}},watch:uc({},lc,(function(t,e){Object(tr["a"])(t,e)||this.setIndeterminate(t)})),mounted:function(){this.setIndeterminate(this[lc])},methods:{computedLocalCheckedWatcher:function(t,e){if(!Object(tr["a"])(t,e)){this.$emit(ic,t);var n=this.$refs.input;n&&this.$emit(dc,n.indeterminate)}},handleChange:function(t){var e=this,n=t.target,r=n.checked,i=n.indeterminate,a=this.value,o=this.uncheckedValue,s=this.computedLocalChecked;if(Object(u["a"])(s)){var c=Bs(s,a);r&&c<0?s=s.concat(a):!r&&c>-1&&(s=s.slice(0,c).concat(s.slice(c+1)))}else s=r?a:o;this.computedLocalChecked=s,this.$nextTick((function(){e.$emit(C["d"],s),e.isGroup&&e.bvGroup.$emit(C["d"],s),e.$emit(dc,i)}))},setIndeterminate:function(t){Object(u["a"])(this.computedLocalChecked)&&(t=!1);var e=this.$refs.input;e&&(e.indeterminate=t,this.$emit(dc,t))}}});function pc(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function mc(t){for(var e=1;e0&&(c=[t("div",{staticClass:"b-form-date-controls d-flex flex-wrap",class:{"justify-content-between":c.length>1,"justify-content-end":c.length<2}},c)]);var p=t(fr,{staticClass:"b-form-date-calendar w-100",props:Zc(Zc({},Object(I["e"])(ou,a)),{},{hidden:!this.isVisible,value:e,valueAsDate:!1,width:this.calendarWidth}),on:{selected:this.onSelected,input:this.onInput,context:this.onContext},scopedSlots:Object(f["k"])(o,["nav-prev-decade","nav-prev-year","nav-prev-month","nav-this-month","nav-next-month","nav-next-year","nav-next-decade"]),key:"calendar",ref:"calendar"},c);return t(Kc,{staticClass:"b-form-datepicker",props:Zc(Zc({},Object(I["e"])(su,a)),{},{formattedValue:e?this.formattedValue:"",id:this.safeId(),lang:this.computedLang,menuClass:[{"bg-dark":i,"text-light":i},this.menuClass],placeholder:s,rtl:this.isRTL,value:e}),on:{show:this.onShow,shown:this.onShown,hidden:this.onHidden},scopedSlots:Qc({},H["f"],o[H["f"]]||this.defaultButtonFn),ref:"control"},[p])}}),lu=L({components:{BFormDatepicker:uu,BDatepicker:uu}});function du(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function fu(t){for(var e=1;e1&&void 0!==arguments[1])||arguments[1];return Promise.all(Object(ue["f"])(t).filter((function(t){return"file"===t.kind})).map((function(t){var n=Ou(t);if(n){if(n.isDirectory&&e)return wu(n.createReader(),"".concat(n.name,"/"));if(n.isFile)return new Promise((function(t){n.file((function(e){e.$path="",t(e)}))}))}return null})).filter(c["a"]))},wu=function t(e){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";return new Promise((function(r){var i=[],a=function a(){e.readEntries((function(e){0===e.length?r(Promise.all(i).then((function(t){return Object(ue["d"])(t)}))):(i.push(Promise.all(e.map((function(e){if(e){if(e.isDirectory)return t(e.createReader(),"".concat(n).concat(e.name,"/"));if(e.isFile)return new Promise((function(t){e.file((function(e){e.$path="".concat(n).concat(e.name),t(e)}))}))}return null})).filter(c["a"]))),a())}))};a()}))},Mu=Object(I["d"])(Object(f["m"])(fu(fu(fu(fu(fu(fu(fu({},nr["b"]),bu),Ns),zs),Js),Us),{},{accept:Object(I["c"])(E["u"],""),browseText:Object(I["c"])(E["u"],"Browse"),capture:Object(I["c"])(E["g"],!1),directory:Object(I["c"])(E["g"],!1),dropPlaceholder:Object(I["c"])(E["u"],"Drop files here"),fileNameFormatter:Object(I["c"])(E["l"]),multiple:Object(I["c"])(E["g"],!1),noDrop:Object(I["c"])(E["g"],!1),noDropPlaceholder:Object(I["c"])(E["u"],"Not allowed"),noTraverse:Object(I["c"])(E["g"],!1),placeholder:Object(I["c"])(E["u"],"No file chosen")})),P["S"]),Lu=r["default"].extend({name:P["S"],mixins:[er["a"],nr["a"],mu,B["a"],Vs,qs,Ws,B["a"]],inheritAttrs:!1,props:Mu,data:function(){return{files:[],dragging:!1,dropAllowed:!this.noDrop,hasFocus:!1}},computed:{computedAccept:function(){var t=this.accept;return t=(t||"").trim().split(/[,\s]+/).filter(c["a"]),0===t.length?null:t.map((function(t){var e="name",n="^",r="$";s["k"].test(t)?n="":(e="type",s["y"].test(t)&&(r=".+$",t=t.slice(0,-1))),t=Object(mt["a"])(t);var i=new RegExp("".concat(n).concat(t).concat(r));return{rx:i,prop:e}}))},computedCapture:function(){var t=this.capture;return!0===t||""===t||(t||null)},computedAttrs:function(){var t=this.name,e=this.disabled,n=this.required,r=this.form,i=this.computedCapture,a=this.accept,o=this.multiple,s=this.directory;return fu(fu({},this.bvAttrs),{},{type:"file",id:this.safeId(),name:t,disabled:e,required:n,form:r||null,capture:i,accept:a||null,multiple:o,directory:s,webkitdirectory:s,"aria-required":n?"true":null})},computedFileNameFormatter:function(){var t=this.fileNameFormatter;return Object(I["b"])(t)?t:this.defaultFileNameFormatter},clonedFiles:function(){return Object(o["a"])(this.files)},flattenedFiles:function(){return Object(ue["e"])(this.files)},fileNames:function(){return this.flattenedFiles.map((function(t){return t.name}))},labelContent:function(){if(this.dragging&&!this.noDrop)return this.normalizeSlot(H["l"],{allowed:this.dropAllowed})||(this.dropAllowed?this.dropPlaceholder:this.$createElement("span",{staticClass:"text-danger"},this.noDropPlaceholder));if(0===this.files.length)return this.normalizeSlot(H["X"])||this.placeholder;var t=this.flattenedFiles,e=this.clonedFiles,n=this.fileNames,r=this.computedFileNameFormatter;return this.hasNormalizedSlot(H["p"])?this.normalizeSlot(H["p"],{files:t,filesTraversed:e,names:n}):r(t,e,n)}},watch:(tu={},hu(tu,vu,(function(t){(!t||Object(u["a"])(t)&&0===t.length)&&this.reset()})),hu(tu,"files",(function(t,e){if(!Object(tr["a"])(t,e)){var n=this.multiple,r=this.noTraverse,i=!n||r?Object(ue["e"])(t):t;this.$emit(_u,n?i:i[0]||null)}})),tu),created:function(){this.$_form=null},mounted:function(){var t=Object(A["e"])("form",this.$el);t&&(Object(le["b"])(t,"reset",this.reset,C["db"]),this.$_form=t)},beforeDestroy:function(){var t=this.$_form;t&&Object(le["a"])(t,"reset",this.reset,C["db"])},methods:{isFileValid:function(t){if(!t)return!1;var e=this.computedAccept;return!e||e.some((function(e){return e.rx.test(t[e.prop])}))},isFilesArrayValid:function(t){var e=this;return Object(u["a"])(t)?t.every((function(t){return e.isFileValid(t)})):this.isFileValid(t)},defaultFileNameFormatter:function(t,e,n){return n.join(", ")},setFiles:function(t){this.dropAllowed=!this.noDrop,this.dragging=!1,this.files=this.multiple?this.directory?t:Object(ue["e"])(t):Object(ue["e"])(t).slice(0,1)},setInputFiles:function(t){try{var e=new ClipboardEvent("").clipboardData||new DataTransfer;Object(ue["e"])(Object(o["a"])(t)).forEach((function(t){delete t.$path,e.items.add(t)})),this.$refs.input.files=e.files}catch(n){}},reset:function(){try{var t=this.$refs.input;t.value="",t.type="",t.type="file"}catch(e){}this.files=[]},handleFiles:function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(e){var n=t.filter(this.isFilesArrayValid);n.length>0&&(this.setFiles(n),this.setInputFiles(n))}else this.setFiles(t)},focusHandler:function(t){this.plain||"focusout"===t.type?this.hasFocus=!1:this.hasFocus=!0},onChange:function(t){var e=this,n=t.type,r=t.target,a=t.dataTransfer,o=void 0===a?{}:a,s="drop"===n;this.$emit(C["d"],t);var c=Object(ue["f"])(o.items||[]);if(i["f"]&&c.length>0&&!Object(u["g"])(Ou(c[0])))ju(c,this.directory).then((function(t){return e.handleFiles(t,s)}));else{var l=Object(ue["f"])(r.files||o.files||[]).map((function(t){return t.$path=t.webkitRelativePath||"",t}));this.handleFiles(l,s)}},onDragenter:function(t){Object(le["f"])(t),this.dragging=!0;var e=t.dataTransfer,n=void 0===e?{}:e;if(this.noDrop||this.disabled||!this.dropAllowed)return n.dropEffect="none",void(this.dropAllowed=!1);n.dropEffect="copy"},onDragover:function(t){Object(le["f"])(t),this.dragging=!0;var e=t.dataTransfer,n=void 0===e?{}:e;if(this.noDrop||this.disabled||!this.dropAllowed)return n.dropEffect="none",void(this.dropAllowed=!1);n.dropEffect="copy"},onDragleave:function(t){var e=this;Object(le["f"])(t),this.$nextTick((function(){e.dragging=!1,e.dropAllowed=!e.noDrop}))},onDrop:function(t){var e=this;Object(le["f"])(t),this.dragging=!1,this.noDrop||this.disabled||!this.dropAllowed?this.$nextTick((function(){e.dropAllowed=!e.noDrop})):this.onChange(t)}},render:function(t){var e=this.custom,n=this.plain,r=this.size,i=this.dragging,a=this.stateClass,o=this.bvAttrs,s=t("input",{class:[{"form-control-file":n,"custom-file-input":e,focus:e&&this.hasFocus},a],style:e?{zIndex:-5}:{},attrs:this.computedAttrs,on:{change:this.onChange,focusin:this.focusHandler,focusout:this.focusHandler,reset:this.reset},ref:"input"});if(n)return s;var c=t("label",{staticClass:"custom-file-label",class:{dragging:i},attrs:{for:this.safeId(),"data-browse":this.browseText||null}},[t("span",{staticClass:"d-block form-file-text",style:{pointerEvents:"none"}},[this.labelContent])]);return t("div",{staticClass:"custom-file b-form-file",class:[hu({},"b-custom-control-".concat(r),r),a,o.class],style:o.style,attrs:{id:this.safeId("_BV_file_outer_")},on:{dragenter:this.onDragenter,dragover:this.onDragover,dragleave:this.onDragleave,drop:this.onDrop}},[s,c])}}),ku=L({components:{BFormFile:Lu,BFile:Lu}}),Tu=n("228e"),Du=function(t){return"\\"+t},Su=function(t){t=Object(mt["g"])(t);var e=t.length,n=t.charCodeAt(0);return t.split("").reduce((function(r,i,a){var o=t.charCodeAt(a);return 0===o?r+"�":127===o||o>=1&&o<=31||0===a&&o>=48&&o<=57||1===a&&o>=48&&o<=57&&45===n?r+Du("".concat(o.toString(16)," ")):0===a&&45===o&&1===e?r+Du(i):o>=128||45===o||95===o||o>=48&&o<=57||o>=65&&o<=90||o>=97&&o<=122?r+i:r+Du(i)}),"")},Yu=n("b508");function xu(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function Pu(t){for(var e=1;e0||Object(f["h"])(this.labelColProps).length>0}},watch:{ariaDescribedby:function(t,e){t!==e&&this.updateAriaDescribedby(t,e)}},mounted:function(){var t=this;this.$nextTick((function(){t.updateAriaDescribedby(t.ariaDescribedby)}))},methods:{getAlignClasses:function(t,e){return Object(Tu["b"])().reduce((function(n,r){var i=t[Object(I["g"])(r,"".concat(e,"Align"))]||null;return i&&n.push(["text",r,i].filter(c["a"]).join("-")),n}),[])},getColProps:function(t,e){return Object(Tu["b"])().reduce((function(n,r){var i=t[Object(I["g"])(r,"".concat(e,"Cols"))];return i=""===i||(i||!1),Object(u["b"])(i)||"auto"===i||(i=Object(F["c"])(i,0),i=i>0&&i),i&&(n[r||(Object(u["b"])(i)?"col":"cols")]=i),n}),{})},updateAriaDescribedby:function(t,e){var n=this.labelFor;if(i["i"]&&n){var r=Object(A["E"])("#".concat(Su(n)),this.$refs.content);if(r){var a="aria-describedby",o=(t||"").split(s["x"]),u=(e||"").split(s["x"]),l=(Object(A["h"])(r,a)||"").split(s["x"]).filter((function(t){return!Object(ue["a"])(u,t)})).concat(o).filter((function(t,e,n){return n.indexOf(t)===e})).filter(c["a"]).join(" ").trim();l?Object(A["G"])(r,a,l):Object(A["z"])(r,a)}}},onLegendClick:function(t){if(!this.labelFor){var e=t.target,n=e?e.tagName:"";if(-1===Wu.indexOf(n)){var r=Object(A["F"])(zu,this.$refs.content).filter(A["u"]);1===r.length&&Object(A["d"])(r[0])}}}},render:function(t){var e=this.computedState,n=this.feedbackAriaLive,r=this.isHorizontal,i=this.labelFor,a=this.normalizeSlot,o=this.safeId,s=this.tooltip,u=o(),l=!i,d=t(),f=a(H["C"])||this.label,h=f?o("_BV_label_"):null;if(f||r){var p=this.labelSize,m=this.labelColProps,b=l?"legend":"label";this.labelSrOnly?(f&&(d=t(b,{class:"sr-only",attrs:{id:h,for:i||null}},[f])),d=t(r?Iu:"div",{props:r?m:{}},[d])):d=t(r?Iu:b,{on:l?{click:this.onLegendClick}:{},props:r?Ru(Ru({},m),{},{tag:b}):{},attrs:{id:h,for:i||null,tabindex:l?"-1":null},class:[l?"bv-no-focus-ring":"",r||l?"col-form-label":"",!r&&l?"pt-0":"",r||l?"":"d-block",p?"col-form-label-".concat(p):"",this.labelAlignClasses,this.labelClass]},[f])}var v=t(),_=a(H["B"])||this.invalidFeedback,g=_?o("_BV_feedback_invalid_"):null;_&&(v=t(Es,{props:{ariaLive:n,id:g,role:n?"alert":null,state:e,tooltip:s},attrs:{tabindex:_?"-1":null}},[_]));var y=t(),O=a(H["lb"])||this.validFeedback,j=O?o("_BV_feedback_valid_"):null;O&&(y=t(As,{props:{ariaLive:n,id:j,role:n?"alert":null,state:e,tooltip:s},attrs:{tabindex:O?"-1":null}},[O]));var w=t(),M=a(H["j"])||this.description,L=M?o("_BV_description_"):null;M&&(w=t(Ps,{attrs:{id:L,tabindex:"-1"}},[M]));var k=this.ariaDescribedby=[L,!1===e?g:null,!0===e?j:null].filter(c["a"]).join(" ")||null,T=t(r?Iu:"div",{props:r?this.contentColProps:{},ref:"content"},[a(H["i"],{ariaDescribedby:k,descriptionId:L,id:u,labelId:h})||t(),v,y,w]);return t(l?"fieldset":r?Fs:"div",{staticClass:"form-group",class:[{"was-validated":this.validated},this.stateClass],attrs:{id:u,disabled:l?this.disabled:null,role:l?null:"group","aria-invalid":this.computedAriaInvalid,"aria-labelledby":l&&r?h:null}},r&&l?[t(Fs,[d,T])]:[d,T])}},Ju=L({components:{BFormGroup:Gu,BFormFieldset:Gu}}),qu=r["default"].extend({computed:{selectionStart:{cache:!1,get:function(){return this.$refs.input.selectionStart},set:function(t){this.$refs.input.selectionStart=t}},selectionEnd:{cache:!1,get:function(){return this.$refs.input.selectionEnd},set:function(t){this.$refs.input.selectionEnd=t}},selectionDirection:{cache:!1,get:function(){return this.$refs.input.selectionDirection},set:function(t){this.$refs.input.selectionDirection=t}}},methods:{select:function(){var t;(t=this.$refs.input).select.apply(t,arguments)},setSelectionRange:function(){var t;(t=this.$refs.input).setSelectionRange.apply(t,arguments)},setRangeText:function(){var t;(t=this.$refs.input).setRangeText.apply(t,arguments)}}});function Ku(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function Xu(t){for(var e=1;e2&&void 0!==arguments[2]&&arguments[2];return t=Object(mt["g"])(t),!this.hasFormatter||this.lazyFormatter&&!n||(t=this.formatter(t,e)),t},modifyValue:function(t){return t=Object(mt["g"])(t),this.trim&&(t=t.trim()),this.number&&(t=Object(F["b"])(t,t)),t},updateValue:function(t){var e=this,n=arguments.length>1&&void 0!==arguments[1]&&arguments[1],r=this.lazy;if(!r||n){this.clearDebounce();var i=function(){if(t=e.modifyValue(t),t!==e.vModelValue)e.vModelValue=t,e.$emit(rl,t);else if(e.hasFormatter){var n=e.$refs.input;n&&t!==n.value&&(n.value=t)}},a=this.computedDebounce;a>0&&!r&&!n?this.$_inputDebounceTimer=setTimeout(i,a):i()}},onInput:function(t){if(!t.target.composing){var e=t.target.value,n=this.formatValue(e,t);!1===n||t.defaultPrevented?Object(le["f"])(t,{propagation:!1}):(this.localValue=n,this.updateValue(n),this.$emit(C["y"],n))}},onChange:function(t){var e=t.target.value,n=this.formatValue(e,t);!1===n||t.defaultPrevented?Object(le["f"])(t,{propagation:!1}):(this.localValue=n,this.updateValue(n,!0),this.$emit(C["d"],n))},onBlur:function(t){var e=t.target.value,n=this.formatValue(e,t,!0);!1!==n&&(this.localValue=Object(mt["g"])(this.modifyValue(n)),this.updateValue(n,!0)),this.$emit(C["b"],t)},focus:function(){this.disabled||Object(A["d"])(this.$el)},blur:function(){this.disabled||Object(A["c"])(this.$el)}}}),ol=r["default"].extend({computed:{validity:{cache:!1,get:function(){return this.$refs.input.validity}},validationMessage:{cache:!1,get:function(){return this.$refs.input.validationMessage}},willValidate:{cache:!1,get:function(){return this.$refs.input.willValidate}}},methods:{setCustomValidity:function(){var t;return(t=this.$refs.input).setCustomValidity.apply(t,arguments)},checkValidity:function(){var t;return(t=this.$refs.input).checkValidity.apply(t,arguments)},reportValidity:function(){var t;return(t=this.$refs.input).reportValidity.apply(t,arguments)}}}),sl=n("bc9a");function cl(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function ul(t){for(var e=1;e=n?"full":e>=n-.5?"half":"empty",l={variant:a,disabled:o,readonly:s};return t("span",{staticClass:"b-rating-star",class:{focused:r&&e===n||!Object(F["c"])(e)&&n===c,"b-rating-star-empty":"empty"===u,"b-rating-star-half":"half"===u,"b-rating-star-full":"full"===u},attrs:{tabindex:o||s?null:"-1"},on:{click:this.onClick}},[t("span",{staticClass:"b-rating-icon"},[this.normalizeSlot(u,l)])])}}),Pl=Object(I["d"])(Object(f["m"])(yl(yl(yl(yl(yl({},nr["b"]),Ml),Object(f["j"])(Ns,["required","autofocus"])),Us),{},{color:Object(I["c"])(E["u"]),iconClear:Object(I["c"])(E["u"],"x"),iconEmpty:Object(I["c"])(E["u"],"star"),iconFull:Object(I["c"])(E["u"],"star-fill"),iconHalf:Object(I["c"])(E["u"],"star-half"),inline:Object(I["c"])(E["g"],!1),locale:Object(I["c"])(E["f"]),noBorder:Object(I["c"])(E["g"],!1),precision:Object(I["c"])(E["p"]),readonly:Object(I["c"])(E["g"],!1),showClear:Object(I["c"])(E["g"],!1),showValue:Object(I["c"])(E["g"],!1),showValueMax:Object(I["c"])(E["g"],!1),stars:Object(I["c"])(E["p"],Dl,(function(t){return Object(F["c"])(t)>=Tl})),variant:Object(I["c"])(E["u"])})),P["Y"]),Cl=r["default"].extend({name:P["Y"],components:{BIconStar:It,BIconStarHalf:Rt,BIconStarFill:Bt,BIconX:Nt},mixins:[nr["a"],wl,Gs],props:Pl,data:function(){var t=Object(F["b"])(this[Ll],null),e=Sl(this.stars);return{localValue:Object(u["g"])(t)?null:Yl(t,0,e),hasFocus:!1}},computed:{computedStars:function(){return Sl(this.stars)},computedRating:function(){var t=Object(F["b"])(this.localValue,0),e=Object(F["c"])(this.precision,3);return Yl(Object(F["b"])(t.toFixed(e)),0,this.computedStars)},computedLocale:function(){var t=Object(ue["b"])(this.locale).filter(c["a"]),e=new Intl.NumberFormat(t);return e.resolvedOptions().locale},isInteractive:function(){return!this.disabled&&!this.readonly},isRTL:function(){return Qn(this.computedLocale)},formattedRating:function(){var t=Object(F["c"])(this.precision),e=this.showValueMax,n=this.computedLocale,r={notation:"standard",minimumFractionDigits:isNaN(t)?0:t,maximumFractionDigits:isNaN(t)?3:t},i=this.computedStars.toLocaleString(n),a=this.localValue;return a=Object(u["g"])(a)?e?"-":"":a.toLocaleString(n,r),e?"".concat(a,"/").concat(i):a}},watch:(dl={},Ol(dl,Ll,(function(t,e){if(t!==e){var n=Object(F["b"])(t,null);this.localValue=Object(u["g"])(n)?null:Yl(n,0,this.computedStars)}})),Ol(dl,"localValue",(function(t,e){t!==e&&t!==(this.value||0)&&this.$emit(kl,t||null)})),Ol(dl,"disabled",(function(t){t&&(this.hasFocus=!1,this.blur())})),dl),methods:{focus:function(){this.disabled||Object(A["d"])(this.$el)},blur:function(){this.disabled||Object(A["c"])(this.$el)},onKeydown:function(t){var e=t.keyCode;if(this.isInteractive&&Object(ue["a"])([re,Zt,oe,ce],e)){Object(le["f"])(t,{propagation:!1});var n=Object(F["c"])(this.localValue,0),r=this.showClear?0:1,i=this.computedStars,a=this.isRTL?-1:1;e===re?this.localValue=Yl(n-a,r,i)||null:e===oe?this.localValue=Yl(n+a,r,i):e===Zt?this.localValue=Yl(n-1,r,i)||null:e===ce&&(this.localValue=Yl(n+1,r,i))}},onSelected:function(t){this.isInteractive&&(this.localValue=t)},onFocus:function(t){this.hasFocus=!!this.isInteractive&&"focus"===t.type},renderIcon:function(t){return this.$createElement(qt,{props:{icon:t,variant:this.disabled||this.color?null:this.variant||null}})},iconEmptyFn:function(){return this.renderIcon(this.iconEmpty)},iconHalfFn:function(){return this.renderIcon(this.iconHalf)},iconFullFn:function(){return this.renderIcon(this.iconFull)},iconClearFn:function(){return this.$createElement(qt,{props:{icon:this.iconClear}})}},render:function(t){var e=this,n=this.disabled,r=this.readonly,i=this.name,a=this.form,o=this.inline,s=this.variant,c=this.color,l=this.noBorder,d=this.hasFocus,f=this.computedRating,h=this.computedStars,p=this.formattedRating,m=this.showClear,b=this.isRTL,v=this.isInteractive,_=this.$scopedSlots,g=[];if(m&&!n&&!r){var y=t("span",{staticClass:"b-rating-icon"},[(_[H["v"]]||this.iconClearFn)()]);g.push(t("span",{staticClass:"b-rating-star b-rating-star-clear flex-grow-1",class:{focused:d&&0===f},attrs:{tabindex:v?"-1":null},on:{click:function(){return e.onSelected(null)}},key:"clear"},[y]))}for(var O=0;O1&&void 0!==arguments[1]?arguments[1]:null;if(Object(u["k"])(t)){var n=d(t,this.valueField),r=d(t,this.textField),i=d(t,this.optionsField,null);return Object(u["g"])(i)?{value:Object(u["o"])(n)?e||r:n,text:String(Object(u["o"])(r)?e:r),html:d(t,this.htmlField),disabled:Boolean(d(t,this.disabledField))}:{label:String(d(t,this.labelField)||r),options:this.normalizeOptions(i)}}return{value:e||t,text:String(t),disabled:!1}}}}),Wl=Object(I["d"])({disabled:Object(I["c"])(E["g"],!1),value:Object(I["c"])(E["a"],void 0,!0)},P["cb"]),Ul=r["default"].extend({name:P["cb"],functional:!0,props:Wl,render:function(t,e){var n=e.props,r=e.data,i=e.children,a=n.value,o=n.disabled;return t("option",Object(pt["a"])(r,{attrs:{disabled:o},domProps:{value:a}}),i)}});function Gl(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function Jl(t){for(var e=1;e0?t:bd},computedInterval:function(){var t=Object(F["c"])(this.repeatInterval,0);return t>0?t:vd},computedThreshold:function(){return Object(nt["d"])(Object(F["c"])(this.repeatThreshold,_d),1)},computedStepMultiplier:function(){return Object(nt["d"])(Object(F["c"])(this.repeatStepMultiplier,gd),1)},computedPrecision:function(){var t=this.computedStep;return Object(nt["c"])(t)===t?0:(t.toString().split(".")[1]||"").length},computedMultiplier:function(){return Object(nt["f"])(10,this.computedPrecision||0)},valueAsFixed:function(){var t=this.localValue;return Object(u["g"])(t)?"":t.toFixed(this.computedPrecision)},computedLocale:function(){var t=Object(ue["b"])(this.locale).filter(c["a"]),e=new Intl.NumberFormat(t);return e.resolvedOptions().locale},computedRTL:function(){return Qn(this.computedLocale)},defaultFormatter:function(){var t=this.computedPrecision,e=new Intl.NumberFormat(this.computedLocale,{style:"decimal",useGrouping:!1,minimumIntegerDigits:1,minimumFractionDigits:t,maximumFractionDigits:t,notation:"standard"});return e.format},computedFormatter:function(){var t=this.formatterFn;return Object(I["b"])(t)?t:this.defaultFormatter},computedAttrs:function(){return od(od({},this.bvAttrs),{},{role:"group",lang:this.computedLocale,tabindex:this.disabled?null:"-1",title:this.ariaLabel})},computedSpinAttrs:function(){var t=this.spinId,e=this.localValue,n=this.computedRequired,r=this.disabled,i=this.state,a=this.computedFormatter,o=!Object(u["g"])(e);return od(od({dir:this.computedRTL?"rtl":"ltr"},this.bvAttrs),{},{id:t,role:"spinbutton",tabindex:r?null:"0","aria-live":"off","aria-label":this.ariaLabel||null,"aria-controls":this.ariaControls||null,"aria-invalid":!1===i||!o&&n?"true":null,"aria-required":n?"true":null,"aria-valuemin":Object(mt["g"])(this.computedMin),"aria-valuemax":Object(mt["g"])(this.computedMax),"aria-valuenow":o?e:null,"aria-valuetext":o?a(e):null})}},watch:(ed={},sd(ed,dd,(function(t){this.localValue=Object(F["b"])(t,null)})),sd(ed,"localValue",(function(t){this.$emit(fd,t)})),sd(ed,"disabled",(function(t){t&&this.clearRepeat()})),sd(ed,"readonly",(function(t){t&&this.clearRepeat()})),ed),created:function(){this.$_autoDelayTimer=null,this.$_autoRepeatTimer=null,this.$_keyIsDown=!1},beforeDestroy:function(){this.clearRepeat()},deactivated:function(){this.clearRepeat()},methods:{focus:function(){this.disabled||Object(A["d"])(this.$refs.spinner)},blur:function(){this.disabled||Object(A["c"])(this.$refs.spinner)},emitChange:function(){this.$emit(C["d"],this.localValue)},stepValue:function(t){var e=this.localValue;if(!this.disabled&&!Object(u["g"])(e)){var n=this.computedStep*t,r=this.computedMin,i=this.computedMax,a=this.computedMultiplier,o=this.wrap;e=Object(nt["g"])((e-r)/n)*n+r+n,e=Object(nt["g"])(e*a)/a,this.localValue=e>i?o?r:i:e0&&void 0!==arguments[0]?arguments[0]:1,e=this.localValue;Object(u["g"])(e)?this.localValue=this.computedMin:this.stepValue(1*t)},stepDown:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:1,e=this.localValue;Object(u["g"])(e)?this.localValue=this.wrap?this.computedMax:this.computedMin:this.stepValue(-1*t)},onKeydown:function(t){var e=t.keyCode,n=t.altKey,r=t.ctrlKey,i=t.metaKey;if(!(this.disabled||this.readonly||n||r||i)&&Object(ue["a"])(yd,e)){if(Object(le["f"])(t,{propagation:!1}),this.$_keyIsDown)return;this.resetTimers(),Object(ue["a"])([ce,Zt],e)?(this.$_keyIsDown=!0,e===ce?this.handleStepRepeat(t,this.stepUp):e===Zt&&this.handleStepRepeat(t,this.stepDown)):e===ae?this.stepUp(this.computedStepMultiplier):e===ie?this.stepDown(this.computedStepMultiplier):e===ne?this.localValue=this.computedMin:e===Qt&&(this.localValue=this.computedMax)}},onKeyup:function(t){var e=t.keyCode,n=t.altKey,r=t.ctrlKey,i=t.metaKey;this.disabled||this.readonly||n||r||i||Object(ue["a"])(yd,e)&&(Object(le["f"])(t,{propagation:!1}),this.resetTimers(),this.$_keyIsDown=!1,this.emitChange())},handleStepRepeat:function(t,e){var n=this,r=t||{},i=r.type,a=r.button;if(!this.disabled&&!this.readonly){if("mousedown"===i&&a)return;this.resetTimers(),e(1);var o=this.computedThreshold,s=this.computedStepMultiplier,c=this.computedDelay,u=this.computedInterval;this.$_autoDelayTimer=setTimeout((function(){var t=0;n.$_autoRepeatTimer=setInterval((function(){e(tt.length)&&(e=t.length);for(var n=0,r=new Array(e);n0&&n.indexOf(t)===e}))},Jd=function(t){return Object(u["n"])(t)?t:Object(u["d"])(t)&&t.target.value||""},qd=function(){return{all:[],valid:[],invalid:[],duplicate:[]}},Kd=Object(I["d"])(Object(f["m"])($d($d($d($d($d($d({},nr["b"]),Rd),Ns),Us),Js),{},{addButtonText:Object(I["c"])(E["u"],"Add"),addButtonVariant:Object(I["c"])(E["u"],"outline-secondary"),addOnChange:Object(I["c"])(E["g"],!1),duplicateTagText:Object(I["c"])(E["u"],"Duplicate tag(s)"),ignoreInputFocusSelector:Object(I["c"])(E["f"],Wd),inputAttrs:Object(I["c"])(E["q"],{}),inputClass:Object(I["c"])(E["e"]),inputId:Object(I["c"])(E["u"]),inputType:Object(I["c"])(E["u"],"text",(function(t){return Object(ue["a"])(zd,t)})),invalidTagText:Object(I["c"])(E["u"],"Invalid tag(s)"),limit:Object(I["c"])(E["n"]),limitTagsText:Object(I["c"])(E["u"],"Tag limit reached"),noAddOnEnter:Object(I["c"])(E["g"],!1),noOuterFocus:Object(I["c"])(E["g"],!1),noTagRemove:Object(I["c"])(E["g"],!1),placeholder:Object(I["c"])(E["u"],"Add tag..."),removeOnDelete:Object(I["c"])(E["g"],!1),separator:Object(I["c"])(E["f"]),tagClass:Object(I["c"])(E["e"]),tagPills:Object(I["c"])(E["g"],!1),tagRemoveLabel:Object(I["c"])(E["u"],"Remove tag"),tagRemovedLabel:Object(I["c"])(E["u"],"Tag removed"),tagValidator:Object(I["c"])(E["l"]),tagVariant:Object(I["c"])(E["u"],"secondary")})),P["gb"]),Xd=r["default"].extend({name:P["gb"],mixins:[nr["a"],Bd,Vs,Gs,qs,B["a"]],props:Kd,data:function(){return{hasFocus:!1,newTag:"",tags:[],removedTags:[],tagsState:qd()}},computed:{computedInputId:function(){return this.inputId||this.safeId("__input__")},computedInputType:function(){return Object(ue["a"])(zd,this.inputType)?this.inputType:"text"},computedInputAttrs:function(){var t=this.disabled,e=this.form;return $d($d({},this.inputAttrs),{},{id:this.computedInputId,value:this.newTag,disabled:t,form:e})},computedInputHandlers:function(){return{input:this.onInputInput,change:this.onInputChange,keydown:this.onInputKeydown,reset:this.reset}},computedSeparator:function(){return Object(ue["b"])(this.separator).filter(u["n"]).filter(c["a"]).join("")},computedSeparatorRegExp:function(){var t=this.computedSeparator;return t?new RegExp("[".concat(Ud(t),"]+")):null},computedJoiner:function(){var t=this.computedSeparator.charAt(0);return" "!==t?"".concat(t," "):t},computeIgnoreInputFocusSelector:function(){return Object(ue["b"])(this.ignoreInputFocusSelector).filter(c["a"]).join(",").trim()},disableAddButton:function(){var t=this,e=Object(mt["h"])(this.newTag);return""===e||!this.splitTags(e).some((function(e){return!Object(ue["a"])(t.tags,e)&&t.validateTag(e)}))},duplicateTags:function(){return this.tagsState.duplicate},hasDuplicateTags:function(){return this.duplicateTags.length>0},invalidTags:function(){return this.tagsState.invalid},hasInvalidTags:function(){return this.invalidTags.length>0},isLimitReached:function(){var t=this.limit;return Object(u["h"])(t)&&t>=0&&this.tags.length>=t}},watch:(Td={},Fd(Td,Nd,(function(t){this.tags=Gd(t)})),Fd(Td,"tags",(function(t,e){Object(tr["a"])(t,this[Nd])||this.$emit(Vd,t),Object(tr["a"])(t,e)||(t=Object(ue["b"])(t).filter(c["a"]),e=Object(ue["b"])(e).filter(c["a"]),this.removedTags=e.filter((function(e){return!Object(ue["a"])(t,e)})))})),Fd(Td,"tagsState",(function(t,e){Object(tr["a"])(t,e)||this.$emit(C["Y"],t.valid,t.invalid,t.duplicate)})),Td),created:function(){this.tags=Gd(this[Nd])},mounted:function(){var t=this,e=Object(A["e"])("form",this.$el);e&&(Object(le["b"])(e,"reset",this.reset,C["db"]),this.$on(C["eb"],(function(){Object(le["a"])(e,"reset",t.reset,C["db"])})))},methods:{addTag:function(t){if(t=Object(u["n"])(t)?t:this.newTag,!this.disabled&&""!==Object(mt["h"])(t)&&!this.isLimitReached){var e=this.parseTags(t);if(e.valid.length>0||0===e.all.length)if(Object(A["v"])(this.getInput(),"select"))this.newTag="";else{var n=[].concat(Yd(e.invalid),Yd(e.duplicate));this.newTag=e.all.filter((function(t){return Object(ue["a"])(n,t)})).join(this.computedJoiner).concat(n.length>0?this.computedJoiner.charAt(0):"")}e.valid.length>0&&(this.tags=Object(ue["b"])(this.tags,e.valid)),this.tagsState=e,this.focus()}},removeTag:function(t){var e=this;this.disabled||(this.tags=this.tags.filter((function(e){return e!==t})),this.$nextTick((function(){e.focus()})))},reset:function(){var t=this;this.newTag="",this.tags=[],this.$nextTick((function(){t.removedTags=[],t.tagsState=qd()}))},onInputInput:function(t){if(!(this.disabled||Object(u["d"])(t)&&t.target.composing)){var e=Jd(t),n=this.computedSeparatorRegExp;this.newTag!==e&&(this.newTag=e),e=Object(mt["i"])(e),n&&n.test(e.slice(-1))?this.addTag():this.tagsState=""===e?qd():this.parseTags(e)}},onInputChange:function(t){if(!this.disabled&&this.addOnChange){var e=Jd(t);this.newTag!==e&&(this.newTag=e),this.addTag()}},onInputKeydown:function(t){if(!this.disabled&&Object(u["d"])(t)){var e=t.keyCode,n=t.target.value||"";this.noAddOnEnter||e!==te?!this.removeOnDelete||e!==Kt&&e!==Xt||""!==n||(Object(le["f"])(t,{propagation:!1}),this.tags=this.tags.slice(0,-1)):(Object(le["f"])(t,{propagation:!1}),this.addTag())}},onClick:function(t){var e=this,n=this.computeIgnoreInputFocusSelector,r=t.target;this.disabled||Object(A["q"])(r)||n&&Object(A["e"])(n,r,!0)||this.$nextTick((function(){e.focus()}))},onFocusin:function(){this.hasFocus=!0},onFocusout:function(){this.hasFocus=!1},handleAutofocus:function(){var t=this;this.$nextTick((function(){Object(A["D"])((function(){t.autofocus&&!t.disabled&&t.focus()}))}))},focus:function(){this.disabled||Object(A["d"])(this.getInput())},blur:function(){this.disabled||Object(A["c"])(this.getInput())},splitTags:function(t){t=Object(mt["g"])(t);var e=this.computedSeparatorRegExp;return(e?t.split(e):[t]).map(mt["h"]).filter(c["a"])},parseTags:function(t){var e=this,n=this.splitTags(t),r={all:n,valid:[],invalid:[],duplicate:[]};return n.forEach((function(t){Object(ue["a"])(e.tags,t)||Object(ue["a"])(r.valid,t)?Object(ue["a"])(r.duplicate,t)||r.duplicate.push(t):e.validateTag(t)?r.valid.push(t):Object(ue["a"])(r.invalid,t)||r.invalid.push(t)})),r},validateTag:function(t){var e=this.tagValidator;return!Object(I["b"])(e)||e(t)},getInput:function(){return Object(A["E"])("#".concat(Su(this.computedInputId)),this.$el)},defaultRender:function(t){var e=t.addButtonText,n=t.addButtonVariant,r=t.addTag,i=t.disableAddButton,a=t.disabled,o=t.duplicateTagText,s=t.inputAttrs,u=t.inputClass,l=t.inputHandlers,d=t.inputType,f=t.invalidTagText,h=t.isDuplicate,p=t.isInvalid,m=t.isLimitReached,b=t.limitTagsText,v=t.noTagRemove,_=t.placeholder,g=t.removeTag,y=t.tagClass,O=t.tagPills,j=t.tagRemoveLabel,w=t.tagVariant,M=t.tags,L=this.$createElement,k=M.map((function(t){return t=Object(mt["g"])(t),L(Sd,{class:y,props:{disabled:a,noRemove:v,pill:O,removeLabel:j,tag:"li",title:t,variant:w},on:{remove:function(){return g(t)}},key:"tags_".concat(t)},t)})),T=f&&p?this.safeId("__invalid_feedback__"):null,D=o&&h?this.safeId("__duplicate_feedback__"):null,S=b&&m?this.safeId("__limit_feedback__"):null,Y=[s["aria-describedby"],T,D,S].filter(c["a"]).join(" "),x=L("input",{staticClass:"b-form-tags-input w-100 flex-grow-1 p-0 m-0 bg-transparent border-0",class:u,style:{outline:0,minWidth:"5rem"},attrs:$d($d({},s),{},{"aria-describedby":Y||null,type:d,placeholder:_||null}),domProps:{value:s.value},on:l,directives:[{name:"model",value:s.value}],ref:"input"}),P=L(Le,{staticClass:"b-form-tags-button py-0",class:{invisible:i},style:{fontSize:"90%"},props:{disabled:i||m,variant:n},on:{click:function(){return r()}},ref:"button"},[this.normalizeSlot(H["a"])||e]),C=this.safeId("__tag_list__"),E=L("li",{staticClass:"b-from-tags-field flex-grow-1",attrs:{role:"none","aria-live":"off","aria-controls":C},key:"tags_field"},[L("div",{staticClass:"d-flex",attrs:{role:"group"}},[x,P])]),A=L("ul",{staticClass:"b-form-tags-list list-unstyled mb-0 d-flex flex-wrap align-items-center",attrs:{id:C},key:"tags_list"},[k,E]),$=L();if(f||o||b){var F=this.computedJoiner,I=L();T&&(I=L(Es,{props:{id:T,forceShow:!0},key:"tags_invalid_feedback"},[this.invalidTagText,": ",this.invalidTags.join(F)]));var B=L();D&&(B=L(Ps,{props:{id:D},key:"tags_duplicate_feedback"},[this.duplicateTagText,": ",this.duplicateTags.join(F)]));var R=L();S&&(R=L(Ps,{props:{id:S},key:"tags_limit_feedback"},[b])),$=L("div",{attrs:{"aria-live":"polite","aria-atomic":"true"},key:"tags_feedback"},[I,B,R])}return[A,$]}},render:function(t){var e=this.name,n=this.disabled,r=this.required,i=this.form,a=this.tags,o=this.computedInputId,s=this.hasFocus,c=this.noOuterFocus,u=$d({tags:a.slice(),inputAttrs:this.computedInputAttrs,inputType:this.computedInputType,inputHandlers:this.computedInputHandlers,removeTag:this.removeTag,addTag:this.addTag,reset:this.reset,inputId:o,isInvalid:this.hasInvalidTags,invalidTags:this.invalidTags.slice(),isDuplicate:this.hasDuplicateTags,duplicateTags:this.duplicateTags.slice(),isLimitReached:this.isLimitReached,disableAddButton:this.disableAddButton},Object(f["k"])(this.$props,["addButtonText","addButtonVariant","disabled","duplicateTagText","form","inputClass","invalidTagText","limit","limitTagsText","noTagRemove","placeholder","required","separator","size","state","tagClass","tagPills","tagRemoveLabel","tagVariant"])),l=this.normalizeSlot(H["i"],u)||this.defaultRender(u),d=t("output",{staticClass:"sr-only",attrs:{id:this.safeId("__selected_tags__"),role:"status",for:o,"aria-live":s?"polite":"off","aria-atomic":"true","aria-relevant":"additions text"}},this.tags.join(", ")),h=t("div",{staticClass:"sr-only",attrs:{id:this.safeId("__removed_tags__"),role:"status","aria-live":s?"assertive":"off","aria-atomic":"true"}},this.removedTags.length>0?"(".concat(this.tagRemovedLabel,") ").concat(this.removedTags.join(", ")):""),p=t();if(e&&!n){var m=a.length>0;p=(m?a:[""]).map((function(n){return t("input",{class:{"sr-only":!m},attrs:{type:m?"hidden":"text",value:n,required:r,name:e,form:i},key:"tag_input_".concat(n)})}))}return t("div",{staticClass:"b-form-tags form-control h-auto",class:[{focus:s&&!c&&!n,disabled:n},this.sizeFormClass,this.stateClass],attrs:{id:this.safeId(),role:"group",tabindex:n||c?null:"-1","aria-describedby":this.safeId("__selected_tags__")},on:{click:this.onClick,focusin:this.onFocusin,focusout:this.onFocusout}},[d,h,l,p])}}),Zd=L({components:{BFormTags:Xd,BTags:Xd,BFormTag:Sd,BTag:Sd}});function Qd(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function tf(t){for(var e=1;ef?s:"".concat(f,"px")}},render:function(t){return t("textarea",{class:this.computedClass,style:this.computedStyle,directives:[{name:"b-visible",value:this.visibleCallback,modifiers:{640:!0}}],attrs:this.computedAttrs,domProps:{value:this.localValue},on:this.computedListeners,ref:"input"})}}),of=L({components:{BFormTextarea:af,BTextarea:af}});function sf(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function cf(t){for(var e=1;et.length)&&(e=t.length);for(var n=0,r=new Array(e);n1&&void 0!==arguments[1]&&arguments[1];if(Object(u["g"])(e)||Object(u["g"])(n)||i&&Object(u["g"])(r))return"";var a=[e,n,i?r:0];return a.map(wf).join(":")},kf=Object(I["d"])(Object(f["m"])(cf(cf(cf(cf({},nr["b"]),gf),Object(f["k"])(Od,["labelIncrement","labelDecrement"])),{},{ariaLabelledby:Object(I["c"])(E["u"]),disabled:Object(I["c"])(E["g"],!1),hidden:Object(I["c"])(E["g"],!1),hideHeader:Object(I["c"])(E["g"],!1),hour12:Object(I["c"])(E["g"],null),labelAm:Object(I["c"])(E["u"],"AM"),labelAmpm:Object(I["c"])(E["u"],"AM/PM"),labelHours:Object(I["c"])(E["u"],"Hours"),labelMinutes:Object(I["c"])(E["u"],"Minutes"),labelNoTimeSelected:Object(I["c"])(E["u"],"No time selected"),labelPm:Object(I["c"])(E["u"],"PM"),labelSeconds:Object(I["c"])(E["u"],"Seconds"),labelSelected:Object(I["c"])(E["u"],"Selected time"),locale:Object(I["c"])(E["f"]),minutesStep:Object(I["c"])(E["p"],1),readonly:Object(I["c"])(E["g"],!1),secondsStep:Object(I["c"])(E["p"],1),showSeconds:Object(I["c"])(E["g"],!1)})),P["oc"]),Tf=r["default"].extend({name:P["oc"],mixins:[nr["a"],_f,B["a"]],props:kf,data:function(){var t=Mf(this[yf]||"");return{modelHours:t.hours,modelMinutes:t.minutes,modelSeconds:t.seconds,modelAmpm:t.ampm,isLive:!1}},computed:{computedHMS:function(){var t=this.modelHours,e=this.modelMinutes,n=this.modelSeconds;return Lf({hours:t,minutes:e,seconds:n},this.showSeconds)},resolvedOptions:function(){var t=Object(ue["b"])(this.locale).filter(c["a"]),e={hour:jf,minute:jf,second:jf};Object(u["p"])(this.hour12)||(e.hour12=!!this.hour12);var n=new Intl.DateTimeFormat(t,e),r=n.resolvedOptions(),i=r.hour12||!1,a=r.hourCycle||(i?"h12":"h23");return{locale:r.locale,hour12:i,hourCycle:a}},computedLocale:function(){return this.resolvedOptions.locale},computedLang:function(){return(this.computedLocale||"").replace(/-u-.*$/,"")},computedRTL:function(){return Qn(this.computedLang)},computedHourCycle:function(){return this.resolvedOptions.hourCycle},is12Hour:function(){return!!this.resolvedOptions.hour12},context:function(){return{locale:this.computedLocale,isRTL:this.computedRTL,hourCycle:this.computedHourCycle,hour12:this.is12Hour,hours:this.modelHours,minutes:this.modelMinutes,seconds:this.showSeconds?this.modelSeconds:0,value:this.computedHMS,formatted:this.formattedTimeString}},valueId:function(){return this.safeId()||null},computedAriaLabelledby:function(){return[this.ariaLabelledby,this.valueId].filter(c["a"]).join(" ")||null},timeFormatter:function(){var t={hour12:this.is12Hour,hourCycle:this.computedHourCycle,hour:jf,minute:jf,timeZone:"UTC"};return this.showSeconds&&(t.second=jf),Bn(this.computedLocale,t)},numberFormatter:function(){var t=new Intl.NumberFormat(this.computedLocale,{style:"decimal",minimumIntegerDigits:2,minimumFractionDigits:0,maximumFractionDigits:0,notation:"standard"});return t.format},formattedTimeString:function(){var t=this.modelHours,e=this.modelMinutes,n=this.showSeconds&&this.modelSeconds||0;return this.computedHMS?this.timeFormatter(An(Date.UTC(0,0,1,t,e,n))):this.labelNoTimeSelected||" "},spinScopedSlots:function(){var t=this.$createElement;return{increment:function(e){var n=e.hasFocus;return t(Pt,{props:{scale:n?1.5:1.25},attrs:{"aria-hidden":"true"}})},decrement:function(e){var n=e.hasFocus;return t(Pt,{props:{flipV:!0,scale:n?1.5:1.25},attrs:{"aria-hidden":"true"}})}}}},watch:(nf={},uf(nf,yf,(function(t,e){if(t!==e&&!Object(tr["a"])(Mf(t),Mf(this.computedHMS))){var n=Mf(t),r=n.hours,i=n.minutes,a=n.seconds,o=n.ampm;this.modelHours=r,this.modelMinutes=i,this.modelSeconds=a,this.modelAmpm=o}})),uf(nf,"computedHMS",(function(t,e){t!==e&&this.$emit(Of,t)})),uf(nf,"context",(function(t,e){Object(tr["a"])(t,e)||this.$emit(C["h"],t)})),uf(nf,"modelAmpm",(function(t,e){var n=this;if(t!==e){var r=Object(u["g"])(this.modelHours)?0:this.modelHours;this.$nextTick((function(){0===t&&r>11?n.modelHours=r-12:1===t&&r<12&&(n.modelHours=r+12)}))}})),uf(nf,"modelHours",(function(t,e){t!==e&&(this.modelAmpm=t>11?1:0)})),nf),created:function(){var t=this;this.$nextTick((function(){t.$emit(C["h"],t.context)}))},mounted:function(){this.setLive(!0)},activated:function(){this.setLive(!0)},deactivated:function(){this.setLive(!1)},beforeDestroy:function(){this.setLive(!1)},methods:{focus:function(){this.disabled||Object(A["d"])(this.$refs.spinners[0])},blur:function(){if(!this.disabled){var t=Object(A["g"])();Object(A["f"])(this.$el,t)&&Object(A["c"])(t)}},formatHours:function(t){var e=this.computedHourCycle;return t=this.is12Hour&&t>12?t-12:t,t=0===t&&"h12"===e?12:0===t&&"h24"===e?24:12===t&&"h11"===e?0:t,this.numberFormatter(t)},formatMinutes:function(t){return this.numberFormatter(t)},formatSeconds:function(t){return this.numberFormatter(t)},formatAmpm:function(t){return 0===t?this.labelAm:1===t?this.labelPm:""},setHours:function(t){this.modelHours=t},setMinutes:function(t){this.modelMinutes=t},setSeconds:function(t){this.modelSeconds=t},setAmpm:function(t){this.modelAmpm=t},onSpinLeftRight:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=t.type,n=t.keyCode;if(!this.disabled&&"keydown"===e&&(n===re||n===oe)){Object(le["f"])(t);var r=this.$refs.spinners||[],i=r.map((function(t){return!!t.hasFocus})).indexOf(!0);i+=n===re?-1:1,i=i>=r.length?0:i<0?r.length-1:i,Object(A["d"])(r[i])}},setLive:function(t){var e=this;t?this.$nextTick((function(){Object(A["D"])((function(){e.isLive=!0}))})):this.isLive=!1}},render:function(t){var e=this;if(this.hidden)return t();var n=this.valueId,r=this.computedAriaLabelledby,i=[],a=function(r,a,o){var s=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},c=e.safeId("_spinbutton_".concat(a,"_"))||null;return i.push(c),t(jd,{class:o,props:cf({id:c,placeholder:"--",vertical:!0,required:!0,disabled:e.disabled,readonly:e.readonly,locale:e.computedLocale,labelIncrement:e.labelIncrement,labelDecrement:e.labelDecrement,wrap:!0,ariaControls:n,min:0},s),scopedSlots:e.spinScopedSlots,on:{change:r},key:a,ref:"spinners",refInFor:!0})},o=function(){return t("div",{staticClass:"d-flex flex-column",class:{"text-muted":e.disabled||e.readonly},attrs:{"aria-hidden":"true"}},[t(Ct,{props:{shiftV:4,scale:.5}}),t(Ct,{props:{shiftV:-4,scale:.5}})])},s=[];s.push(a(this.setHours,"hours","b-time-hours",{value:this.modelHours,max:23,step:1,formatterFn:this.formatHours,ariaLabel:this.labelHours})),s.push(o()),s.push(a(this.setMinutes,"minutes","b-time-minutes",{value:this.modelMinutes,max:59,step:this.minutesStep||1,formatterFn:this.formatMinutes,ariaLabel:this.labelMinutes})),this.showSeconds&&(s.push(o()),s.push(a(this.setSeconds,"seconds","b-time-seconds",{value:this.modelSeconds,max:59,step:this.secondsStep||1,formatterFn:this.formatSeconds,ariaLabel:this.labelSeconds}))),this.is12Hour&&s.push(a(this.setAmpm,"ampm","b-time-ampm",{value:this.modelAmpm,max:1,formatterFn:this.formatAmpm,ariaLabel:this.labelAmpm,required:!1})),s=t("div",{staticClass:"d-flex align-items-center justify-content-center mx-auto",attrs:{role:"group",tabindex:this.disabled||this.readonly?null:"-1","aria-labelledby":r},on:{keydown:this.onSpinLeftRight,click:function(t){t.target===t.currentTarget&&e.focus()}}},s);var u=t("output",{staticClass:"form-control form-control-sm text-center",class:{disabled:this.disabled||this.readonly},attrs:{id:n,role:"status",for:i.filter(c["a"]).join(" ")||null,tabindex:this.disabled?null:"-1","aria-live":this.isLive?"polite":"off","aria-atomic":"true"},on:{click:this.focus,focus:this.focus}},[t("bdi",this.formattedTimeString),this.computedHMS?t("span",{staticClass:"sr-only"}," (".concat(this.labelSelected,") ")):""]),l=t("header",{staticClass:"b-time-header",class:{"sr-only":this.hideHeader}},[u]),d=this.normalizeSlot();return d=d?t("footer",{staticClass:"b-time-footer"},d):t(),t("div",{staticClass:"b-time d-inline-flex flex-column text-center",attrs:{role:"group",lang:this.computedLang||null,"aria-labelledby":r||null,"aria-disabled":this.disabled?"true":null,"aria-readonly":this.readonly&&!this.disabled?"true":null}},[l,s,d])}});function Df(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function Sf(t){for(var e=1;e0&&o.push(t("span"," "));var c=this.labelResetButton;o.push(t(Le,{props:{size:"sm",disabled:n||r,variant:this.resetButtonVariant},attrs:{"aria-label":c||null},on:{click:this.onResetButton},key:"reset-btn"},c))}if(!this.noCloseButton){o.length>0&&o.push(t("span"," "));var l=this.labelCloseButton;o.push(t(Le,{props:{size:"sm",disabled:n,variant:this.closeButtonVariant},attrs:{"aria-label":l||null},on:{click:this.onCloseButton},key:"close-btn"},l))}o.length>0&&(o=[t("div",{staticClass:"b-form-date-controls d-flex flex-wrap",class:{"justify-content-between":o.length>1,"justify-content-end":o.length<2}},o)]);var d=t(Tf,{staticClass:"b-form-time-control",props:Sf(Sf({},Object(I["e"])(Af,i)),{},{value:e,hidden:!this.isVisible}),on:{input:this.onInput,context:this.onContext},ref:"time"},o);return t(Kc,{staticClass:"b-form-timepicker",props:Sf(Sf({},Object(I["e"])($f,i)),{},{id:this.safeId(),value:e,formattedValue:e?this.formattedValue:"",placeholder:a,rtl:this.isRTL,lang:this.computedLang}),on:{show:this.onShow,shown:this.onShown,hidden:this.onHidden},scopedSlots:Yf({},H["f"],this.$scopedSlots[H["f"]]||this.defaultButtonFn),ref:"control"},[d])}}),Bf=L({components:{BFormTimepicker:If,BTimepicker:If}}),Rf=L({components:{BImg:Ir,BImgLazy:mi}}),Nf=Object(I["d"])({tag:Object(I["c"])(E["u"],"div")},P["tb"]),Vf=r["default"].extend({name:P["tb"],functional:!0,props:Nf,render:function(t,e){var n=e.props,r=e.data,i=e.children;return t(n.tag,Object(pt["a"])(r,{staticClass:"input-group-text"}),i)}}),zf=Object(I["d"])({append:Object(I["c"])(E["g"],!1),id:Object(I["c"])(E["u"]),isText:Object(I["c"])(E["g"],!1),tag:Object(I["c"])(E["u"],"div")},P["qb"]),Wf=r["default"].extend({name:P["qb"],functional:!0,props:zf,render:function(t,e){var n=e.props,r=e.data,i=e.children,a=n.append;return t(n.tag,Object(pt["a"])(r,{class:{"input-group-append":a,"input-group-prepend":!a},attrs:{id:n.id}}),n.isText?[t(Vf,i)]:i)}});function Uf(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function Gf(t){for(var e=1;e0&&!n[0].text?n[0]:t()}}),qh={container:Object(I["c"])([ho["c"],E["u"]],"body"),disabled:Object(I["c"])(E["g"],!1),tag:Object(I["c"])(E["u"],"div")},Kh=r["default"].extend({name:P["xc"],mixins:[B["a"]],props:qh,watch:{disabled:{immediate:!0,handler:function(t){t?this.unmountTarget():this.$nextTick(this.mountTarget)}}},created:function(){this.$_defaultFn=null,this.$_target=null},beforeMount:function(){this.mountTarget()},updated:function(){this.updateTarget()},beforeDestroy:function(){this.unmountTarget(),this.$_defaultFn=null},methods:{getContainer:function(){if(i["i"]){var t=this.container;return Object(u["n"])(t)?Object(A["E"])(t):t}return null},mountTarget:function(){if(!this.$_target){var t=this.getContainer();if(t){var e=document.createElement("div");t.appendChild(e),this.$_target=new Jh({el:e,parent:this,propsData:{nodes:Object(ue["b"])(this.normalizeSlot())}})}}},updateTarget:function(){if(i["i"]&&this.$_target){var t=this.$scopedSlots.default;this.disabled||(t&&this.$_defaultFn!==t?this.$_target.updatedNodes=t:t||(this.$_target.updatedNodes=this.$slots.default)),this.$_defaultFn=t}},unmountTarget:function(){this.$_target&&this.$_target.$destroy(),this.$_target=null}},render:function(t){if(this.disabled){var e=Object(ue["b"])(this.normalizeSlot()).filter(c["a"]);if(e.length>0&&!e[0].text)return e[0]}return t()}});function Xh(t){return Xh="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"===typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Xh(t)}function Zh(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function Qh(t){for(var e=1;e1&&void 0!==arguments[1]?arguments[1]:{};return ep(this,n),r=e.call(this,t,i),Object(f["d"])(lp(r),{trigger:Object(f["l"])()}),r}return rp(n,null,[{key:"Defaults",get:function(){return Qh(Qh({},ip(fp(n),"Defaults",this)),{},{trigger:null})}}]),n}(po["a"]),pp=1040,mp=".fixed-top, .fixed-bottom, .is-fixed, .sticky-top",bp=".sticky-top",vp=".navbar-toggler",_p=r["default"].extend({data:function(){return{modals:[],baseZIndex:null,scrollbarWidth:null,isBodyOverflowing:!1}},computed:{modalCount:function(){return this.modals.length},modalsAreOpen:function(){return this.modalCount>0}},watch:{modalCount:function(t,e){i["i"]&&(this.getScrollbarWidth(),t>0&&0===e?(this.checkScrollbar(),this.setScrollbar(),Object(A["b"])(document.body,"modal-open")):0===t&&e>0&&(this.resetScrollbar(),Object(A["A"])(document.body,"modal-open")),Object(A["G"])(document.body,"data-modal-open-count",String(t)))},modals:function(t){var e=this;this.checkScrollbar(),Object(A["D"])((function(){e.updateModals(t||[])}))}},methods:{registerModal:function(t){var e=this;t&&-1===this.modals.indexOf(t)&&(this.modals.push(t),t.$once(C["eb"],(function(){e.unregisterModal(t)})))},unregisterModal:function(t){var e=this.modals.indexOf(t);e>-1&&(this.modals.splice(e,1),t._isBeingDestroyed||t._isDestroyed||this.resetModal(t))},getBaseZIndex:function(){if(Object(u["g"])(this.baseZIndex)&&i["i"]){var t=document.createElement("div");Object(A["b"])(t,"modal-backdrop"),Object(A["b"])(t,"d-none"),Object(A["H"])(t,"display","none"),document.body.appendChild(t),this.baseZIndex=Object(F["c"])(Object(A["k"])(t).zIndex,pp),document.body.removeChild(t)}return this.baseZIndex||pp},getScrollbarWidth:function(){if(Object(u["g"])(this.scrollbarWidth)&&i["i"]){var t=document.createElement("div");Object(A["b"])(t,"modal-scrollbar-measure"),document.body.appendChild(t),this.scrollbarWidth=Object(A["i"])(t).width-t.clientWidth,document.body.removeChild(t)}return this.scrollbarWidth||0},updateModals:function(t){var e=this,n=this.getBaseZIndex(),r=this.getScrollbarWidth();t.forEach((function(t,i){t.zIndex=n+i,t.scrollbarWidth=r,t.isTop=i===e.modals.length-1,t.isBodyOverflowing=e.isBodyOverflowing}))},resetModal:function(t){t&&(t.zIndex=this.getBaseZIndex(),t.isTop=!0,t.isBodyOverflowing=!1)},checkScrollbar:function(){var t=Object(A["i"])(document.body),e=t.left,n=t.right;this.isBodyOverflowing=e+n0&&void 0!==arguments[0]&&arguments[0];this.$_observer&&this.$_observer.disconnect(),this.$_observer=null,t&&(this.$_observer=xi(this.$refs.content,this.checkModalOverflow.bind(this),Ap))},updateModel:function(t){t!==this[kp]&&this.$emit(Tp,t)},buildEvent:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return new hp(t,Op(Op({cancelable:!1,target:this.$refs.modal||this.$el||null,relatedTarget:null,trigger:null},e),{},{vueTarget:this,componentId:this.modalId}))},show:function(){if(!this.isVisible&&!this.isOpening)if(this.isClosing)this.$once(C["v"],this.show);else{this.isOpening=!0,this.$_returnFocus=this.$_returnFocus||this.getActiveElement();var t=this.buildEvent(C["T"],{cancelable:!0});if(this.emitEvent(t),t.defaultPrevented||this.isVisible)return this.isOpening=!1,void this.updateModel(!1);this.doShow()}},hide:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";if(this.isVisible&&!this.isClosing){this.isClosing=!0;var e=this.buildEvent(C["w"],{cancelable:t!==Yp,trigger:t||null});if(t===Ep?this.$emit(C["D"],e):t===Pp?this.$emit(C["c"],e):t===Cp&&this.$emit(C["g"],e),this.emitEvent(e),e.defaultPrevented||!this.isVisible)return this.isClosing=!1,void this.updateModel(!0);this.setObserver(!1),this.isVisible=!1,this.updateModel(!1)}},toggle:function(t){t&&(this.$_returnFocus=t),this.isVisible?this.hide(xp):this.show()},getActiveElement:function(){var t=Object(A["g"])(i["i"]?[document.body]:[]);return t&&t.focus?t:null},doShow:function(){var t=this;gp.modalsAreOpen&&this.noStacking?this.listenOnRootOnce(Object(le["e"])(P["Bb"],C["v"]),this.doShow):(gp.registerModal(this),this.isHidden=!1,this.$nextTick((function(){t.isVisible=!0,t.isOpening=!1,t.updateModel(!0),t.$nextTick((function(){t.setObserver(!0)}))})))},onBeforeEnter:function(){this.isTransitioning=!0,this.setResizeEvent(!0)},onEnter:function(){var t=this;this.isBlock=!0,Object(A["D"])((function(){Object(A["D"])((function(){t.isShow=!0}))}))},onAfterEnter:function(){var t=this;this.checkModalOverflow(),this.isTransitioning=!1,Object(A["D"])((function(){t.emitEvent(t.buildEvent(C["U"])),t.setEnforceFocus(!0),t.$nextTick((function(){t.focusFirst()}))}))},onBeforeLeave:function(){this.isTransitioning=!0,this.setResizeEvent(!1),this.setEnforceFocus(!1)},onLeave:function(){this.isShow=!1},onAfterLeave:function(){var t=this;this.isBlock=!1,this.isTransitioning=!1,this.isModalOverflowing=!1,this.isHidden=!0,this.$nextTick((function(){t.isClosing=!1,gp.unregisterModal(t),t.returnFocusTo(),t.emitEvent(t.buildEvent(C["v"]))}))},emitEvent:function(t){var e=t.type;this.emitOnRoot(Object(le["e"])(P["Bb"],e),t,t.componentId),this.$emit(e,t)},onDialogMousedown:function(){var t=this,e=this.$refs.modal,n=function n(r){Object(le["a"])(e,"mouseup",n,C["cb"]),r.target===e&&(t.ignoreBackdropClick=!0)};Object(le["b"])(e,"mouseup",n,C["cb"])},onClickOut:function(t){this.ignoreBackdropClick?this.ignoreBackdropClick=!1:this.isVisible&&!this.noCloseOnBackdrop&&Object(A["f"])(document.body,t.target)&&(Object(A["f"])(this.$refs.content,t.target)||this.hide(Dp))},onOk:function(){this.hide(Ep)},onCancel:function(){this.hide(Pp)},onClose:function(){this.hide(Cp)},onEsc:function(t){t.keyCode===ee&&this.isVisible&&!this.noCloseOnEsc&&this.hide(Sp)},focusHandler:function(t){var e=this.$refs.content,n=t.target;if(!(this.noEnforceFocus||!this.isTop||!this.isVisible||!e||document===n||Object(A["f"])(e,n)||this.computeIgnoreEnforceFocusSelector&&Object(A["e"])(this.computeIgnoreEnforceFocusSelector,n,!0))){var r=Object(A["n"])(this.$refs.content),i=this.$refs["bottom-trap"],a=this.$refs["top-trap"];if(i&&n===i){if(Object(A["d"])(r[0]))return}else if(a&&n===a&&Object(A["d"])(r[r.length-1]))return;Object(A["d"])(e,{preventScroll:!0})}},setEnforceFocus:function(t){this.listenDocument(t,"focusin",this.focusHandler)},setResizeEvent:function(t){this.listenWindow(t,"resize",this.checkModalOverflow),this.listenWindow(t,"orientationchange",this.checkModalOverflow)},showHandler:function(t,e){t===this.modalId&&(this.$_returnFocus=e||this.getActiveElement(),this.show())},hideHandler:function(t){t===this.modalId&&this.hide("event")},toggleHandler:function(t,e){t===this.modalId&&this.toggle(e)},modalListener:function(t){this.noStacking&&t.vueTarget!==this&&this.hide()},focusFirst:function(){var t=this;i["i"]&&Object(A["D"])((function(){var e=t.$refs.modal,n=t.$refs.content,r=t.getActiveElement();if(e&&n&&(!r||!Object(A["f"])(n,r))){var i=t.$refs["ok-button"],a=t.$refs["cancel-button"],o=t.$refs["close-button"],s=t.autoFocusButton,c=s===Ep&&i?i.$el||i:s===Pp&&a?a.$el||a:s===Cp&&o?o.$el||o:n;Object(A["d"])(c),c===n&&t.$nextTick((function(){e.scrollTop=0}))}}))},returnFocusTo:function(){var t=this.returnFocus||this.$_returnFocus||null;this.$_returnFocus=null,this.$nextTick((function(){t=Object(u["n"])(t)?Object(A["E"])(t):t,t&&(t=t.$el||t,Object(A["d"])(t))}))},checkModalOverflow:function(){if(this.isVisible){var t=this.$refs.modal;this.isModalOverflowing=t.scrollHeight>document.documentElement.clientHeight}},makeModal:function(t){var e=t();if(!this.hideHeader){var n=this.normalizeSlot(H["J"],this.slotScope);if(!n){var r=t();this.hideHeaderClose||(r=t(R["a"],{props:{content:this.headerCloseContent,disabled:this.isTransitioning,ariaLabel:this.headerCloseLabel,textVariant:this.headerCloseVariant||this.headerTextVariant},on:{click:this.onClose},ref:"close-button"},[this.normalizeSlot(H["K"])])),n=[t(this.titleTag,{staticClass:"modal-title",class:this.titleClasses,attrs:{id:this.modalTitleId},domProps:this.hasNormalizedSlot(H["M"])?{}:Je(this.titleHtml,this.title)},this.normalizeSlot(H["M"],this.slotScope)),r]}e=t("header",{staticClass:"modal-header",class:this.headerClasses,attrs:{id:this.modalHeaderId},ref:"header"},[n])}var i=t("div",{staticClass:"modal-body",class:this.bodyClasses,attrs:{id:this.modalBodyId},ref:"body"},this.normalizeSlot(H["i"],this.slotScope)),a=t();if(!this.hideFooter){var o=this.normalizeSlot(H["I"],this.slotScope);if(!o){var s=t();this.okOnly||(s=t(Le,{props:{variant:this.cancelVariant,size:this.buttonSize,disabled:this.cancelDisabled||this.busy||this.isTransitioning},domProps:this.hasNormalizedSlot(H["H"])?{}:Je(this.cancelTitleHtml,this.cancelTitle),on:{click:this.onCancel},ref:"cancel-button"},this.normalizeSlot(H["H"])));var c=t(Le,{props:{variant:this.okVariant,size:this.buttonSize,disabled:this.okDisabled||this.busy||this.isTransitioning},domProps:this.hasNormalizedSlot(H["L"])?{}:Je(this.okTitleHtml,this.okTitle),on:{click:this.onOk},ref:"ok-button"},this.normalizeSlot(H["L"]));o=[s,c]}a=t("footer",{staticClass:"modal-footer",class:this.footerClasses,attrs:{id:this.modalFooterId},ref:"footer"},[o])}var u=t("div",{staticClass:"modal-content",class:this.contentClass,attrs:{id:this.modalContentId,tabindex:"-1"},ref:"content"},[e,i,a]),l=t(),d=t();this.isVisible&&!this.noEnforceFocus&&(l=t("span",{attrs:{tabindex:"0"},ref:"top-trap"}),d=t("span",{attrs:{tabindex:"0"},ref:"bottom-trap"}));var f=t("div",{staticClass:"modal-dialog",class:this.dialogClasses,on:{mousedown:this.onDialogMousedown},ref:"dialog"},[l,u,d]),h=t("div",{staticClass:"modal",class:this.modalClasses,style:this.modalStyles,attrs:this.computedModalAttrs,on:{keydown:this.onEsc,click:this.onClickOut},directives:[{name:"show",value:this.isVisible}],ref:"modal"},[f]);h=t("transition",{props:{enterClass:"",enterToClass:"",enterActiveClass:"",leaveClass:"",leaveActiveClass:"",leaveToClass:""},on:{beforeEnter:this.onBeforeEnter,enter:this.onEnter,afterEnter:this.onAfterEnter,beforeLeave:this.onBeforeLeave,leave:this.onLeave,afterLeave:this.onAfterLeave}},[h]);var p=t();return!this.hideBackdrop&&this.isVisible&&(p=t("div",{staticClass:"modal-backdrop",attrs:{id:this.modalBackdropId}},this.normalizeSlot(H["G"]))),p=t(N["a"],{props:{noFade:this.noFade}},[p]),t("div",{style:this.modalOuterStyle,attrs:this.computedAttrs,key:"modal-outer-".concat(this[x["a"]])},[h,p])}},render:function(t){return this.static?this.lazy&&this.isHidden?t():this.makeModal(t):this.isHidden?t():t(Kh,[this.makeModal(t)])}}),Ip=Object(le["d"])(P["Bb"],C["T"]),Bp="__bv_modal_directive__",Rp=function(t){var e=t.modifiers,n=void 0===e?{}:e,r=t.arg,i=t.value;return Object(u["n"])(i)?i:Object(u["n"])(r)?r:Object(f["h"])(n).reverse()[0]},Np=function(t){return t&&Object(A["v"])(t,".dropdown-menu > li, li.nav-item")&&Object(A["E"])("a, button",t)||t},Vp=function(t){t&&"BUTTON"!==t.tagName&&(Object(A["o"])(t,"role")||Object(A["G"])(t,"role","button"),"A"===t.tagName||Object(A["o"])(t,"tabindex")||Object(A["G"])(t,"tabindex","0"))},zp=function(t,e,n){var r=Rp(e),i=Np(t);if(r&&i){var a=function(t){var e=t.currentTarget;if(!Object(A["r"])(e)){var i=t.type,a=t.keyCode;"click"!==i&&("keydown"!==i||a!==te&&a!==se)||n.context.$root.$emit(Ip,r,e)}};t[Bp]={handler:a,target:r,trigger:i},Vp(i),Object(le["b"])(i,"click",a,C["db"]),"BUTTON"!==i.tagName&&"button"===Object(A["h"])(i,"role")&&Object(le["b"])(i,"keydown",a,C["db"])}},Wp=function(t){var e=t[Bp]||{},n=e.trigger,r=e.handler;n&&r&&(Object(le["a"])(n,"click",r,C["db"]),Object(le["a"])(n,"keydown",r,C["db"]),Object(le["a"])(t,"click",r,C["db"]),Object(le["a"])(t,"keydown",r,C["db"])),delete t[Bp]},Up=function(t,e,n){var r=t[Bp]||{},i=Rp(e),a=Np(t);i===r.target&&a===r.trigger||(Wp(t,e,n),zp(t,e,n)),Vp(a)},Gp=function(){},Jp={inserted:Up,updated:Gp,componentUpdated:Up,unbind:Wp};function qp(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Kp(t,e){for(var n=0;nt.length)&&(e=t.length);for(var n=0,r=new Array(e);n2&&void 0!==arguments[2]?arguments[2]:lm;if(!Object(h["d"])(sm)&&!Object(h["c"])(sm)){var i=new e({parent:t,propsData:Qp(Qp(Qp({},fm(Object(Tu["c"])(P["Bb"]))),{},{hideHeaderClose:!0,hideHeader:!(n.title||n.titleHtml)},Object(f["j"])(n,Object(f["h"])(dm))),{},{lazy:!1,busy:!1,visible:!1,noStacking:!1,noEnforceFocus:!1})});return Object(f["h"])(dm).forEach((function(t){Object(u["o"])(n[t])||(i.$slots[dm[t]]=Object(ue["b"])(n[t]))})),new Promise((function(t,e){var n=!1;i.$once(C["fb"],(function(){n||e(new Error("BootstrapVue MsgBox destroyed before resolve"))})),i.$on(C["w"],(function(e){if(!e.defaultPrevented){var i=r(e);e.defaultPrevented||(n=!0,t(i))}}));var a=document.createElement("div");document.body.appendChild(a),i.$mount(a)}))}},r=function(t,e){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},i=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null;if(e&&!Object(h["c"])(sm)&&!Object(h["d"])(sm)&&Object(u["f"])(i))return n(t,Qp(Qp({},fm(r)),{},{msgBoxContent:e}),i)},i=function(){function t(e){qp(this,t),Object(f["a"])(this,{_vm:e,_root:e.$root}),Object(f["d"])(this,{_vm:Object(f["l"])(),_root:Object(f["l"])()})}return Xp(t,[{key:"show",value:function(t){if(t&&this._root){for(var e,n=arguments.length,r=new Array(n>1?n-1:0),i=1;i1?n-1:0),i=1;i1&&void 0!==arguments[1]?arguments[1]:{},n=Qp(Qp({},e),{},{okOnly:!0,okDisabled:!1,hideFooter:!1,msgBoxContent:t});return r(this._vm,t,n,(function(){return!0}))}},{key:"msgBoxConfirm",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=Qp(Qp({},e),{},{okOnly:!1,okDisabled:!1,cancelDisabled:!1,hideFooter:!1});return r(this._vm,t,n,(function(t){var e=t.trigger;return"ok"===e||"cancel"!==e&&null}))}}]),t}();t.mixin({beforeCreate:function(){this[cm]=new i(this)}}),Object(f["g"])(t.prototype,sm)||Object(f["e"])(t.prototype,sm,{get:function(){return this&&this[cm]||Object(h["a"])('"'.concat(sm,'" must be accessed from a Vue instance "this" context.'),P["Bb"]),this[cm]}})},pm=L({plugins:{plugin:hm}}),mm=L({components:{BModal:Fp},directives:{VBModal:Jp},plugins:{BVModalPlugin:pm}});function bm(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var vm=function(t){return t="left"===t?"start":"right"===t?"end":t,"justify-content-".concat(t)},_m=Object(I["d"])({align:Object(I["c"])(E["u"]),cardHeader:Object(I["c"])(E["g"],!1),fill:Object(I["c"])(E["g"],!1),justified:Object(I["c"])(E["g"],!1),pills:Object(I["c"])(E["g"],!1),small:Object(I["c"])(E["g"],!1),tabs:Object(I["c"])(E["g"],!1),tag:Object(I["c"])(E["u"],"ul"),vertical:Object(I["c"])(E["g"],!1)},P["Db"]),gm=r["default"].extend({name:P["Db"],functional:!0,props:_m,render:function(t,e){var n,r=e.props,i=e.data,a=e.children,o=r.tabs,s=r.pills,c=r.vertical,u=r.align,l=r.cardHeader;return t(r.tag,Object(pt["a"])(i,{staticClass:"nav",class:(n={"nav-tabs":o,"nav-pills":s&&!o,"card-header-tabs":!c&&l&&o,"card-header-pills":!c&&l&&s&&!o,"flex-column":c,"nav-fill":!c&&r.fill,"nav-justified":!c&&r.justified},bm(n,vm(u),!c&&u),bm(n,"small",r.small),n)}),a)}});function ym(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function Om(t){for(var e=1;et.length)&&(e=t.length);for(var n=0,r=new Array(e);n=0&&e<=1})),overlayTag:Object(I["c"])(E["u"],"div"),rounded:Object(I["c"])(E["j"],!1),show:Object(I["c"])(E["g"],!1),spinnerSmall:Object(I["c"])(E["g"],!1),spinnerType:Object(I["c"])(E["u"],"border"),spinnerVariant:Object(I["c"])(E["u"]),variant:Object(I["c"])(E["u"],"light"),wrapTag:Object(I["c"])(E["u"],"div"),zIndex:Object(I["c"])(E["p"],10)},P["Mb"]),yb=r["default"].extend({name:P["Mb"],mixins:[B["a"]],props:gb,computed:{computedRounded:function(){var t=this.rounded;return!0===t||""===t?"rounded":t?"rounded-".concat(t):""},computedVariant:function(){var t=this.variant;return t&&!this.bgColor?"bg-".concat(t):""},slotScope:function(){return{spinnerType:this.spinnerType||null,spinnerVariant:this.spinnerVariant||null,spinnerSmall:this.spinnerSmall}}},methods:{defaultOverlayFn:function(t){var e=t.spinnerType,n=t.spinnerVariant,r=t.spinnerSmall;return this.$createElement(hb,{props:{type:e,variant:n,small:r}})}},render:function(t){var e=this,n=this.show,r=this.fixed,i=this.noFade,a=this.noWrap,o=this.slotScope,s=t();if(n){var c=t("div",{staticClass:"position-absolute",class:[this.computedVariant,this.computedRounded],style:mb(mb({},_b),{},{opacity:this.opacity,backgroundColor:this.bgColor||null,backdropFilter:this.blur?"blur(".concat(this.blur,")"):null})}),u=t("div",{staticClass:"position-absolute",style:this.noCenter?mb({},_b):{top:"50%",left:"50%",transform:"translateX(-50%) translateY(-50%)"}},[this.normalizeSlot(H["V"],o)||this.defaultOverlayFn(o)]);s=t(this.overlayTag,{staticClass:"b-overlay",class:{"position-absolute":!a||a&&!r,"position-fixed":a&&r},style:mb(mb({},_b),{},{zIndex:this.zIndex||10}),on:{click:function(t){return e.$emit(C["f"],t)}},key:"overlay"},[c,u])}return s=t(N["a"],{props:{noFade:i,appear:!0},on:{"after-enter":function(){return e.$emit(C["U"])},"after-leave":function(){return e.$emit(C["v"])}}},[s]),a?s:t(this.wrapTag,{staticClass:"b-overlay-wrap position-relative",attrs:{"aria-busy":n?"true":null}},a?[s]:[this.normalizeSlot(),s])}}),Ob=L({components:{BOverlay:yb}});function jb(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function wb(t){for(var e=1;ee?e:n<1?1:n},Hb=function(t){if(t.keyCode===se)return Object(le["f"])(t,{immediatePropagation:!0}),t.currentTarget.click(),!1},Ab=Object(I["d"])(Object(f["m"])(wb(wb({},Tb),{},{align:Object(I["c"])(E["u"],"left"),ariaLabel:Object(I["c"])(E["u"],"Pagination"),disabled:Object(I["c"])(E["g"],!1),ellipsisClass:Object(I["c"])(E["e"]),ellipsisText:Object(I["c"])(E["u"],"…"),firstClass:Object(I["c"])(E["e"]),firstNumber:Object(I["c"])(E["g"],!1),firstText:Object(I["c"])(E["u"],"«"),hideEllipsis:Object(I["c"])(E["g"],!1),hideGotoEndButtons:Object(I["c"])(E["g"],!1),labelFirstPage:Object(I["c"])(E["u"],"Go to first page"),labelLastPage:Object(I["c"])(E["u"],"Go to last page"),labelNextPage:Object(I["c"])(E["u"],"Go to next page"),labelPage:Object(I["c"])(E["m"],"Go to page"),labelPrevPage:Object(I["c"])(E["u"],"Go to previous page"),lastClass:Object(I["c"])(E["e"]),lastNumber:Object(I["c"])(E["g"],!1),lastText:Object(I["c"])(E["u"],"»"),limit:Object(I["c"])(E["p"],xb,(function(t){return!(Object(F["c"])(t,0)<1)||(Object(h["a"])('Prop "limit" must be a number greater than "0"',P["Nb"]),!1)})),nextClass:Object(I["c"])(E["e"]),nextText:Object(I["c"])(E["u"],"›"),pageClass:Object(I["c"])(E["e"]),pills:Object(I["c"])(E["g"],!1),prevClass:Object(I["c"])(E["e"]),prevText:Object(I["c"])(E["u"],"‹"),size:Object(I["c"])(E["u"])})),"pagination"),$b=r["default"].extend({mixins:[kb,B["a"]],props:Ab,data:function(){var t=Object(F["c"])(this[Db],0);return t=t>0?t:-1,{currentPage:t,localNumberOfPages:1,localLimit:xb}},computed:{btnSize:function(){var t=this.size;return t?"pagination-".concat(t):""},alignment:function(){var t=this.align;return"center"===t?"justify-content-center":"end"===t||"right"===t?"justify-content-end":"fill"===t?"text-center":""},styleClass:function(){return this.pills?"b-pagination-pills":""},computedCurrentPage:function(){return Eb(this.currentPage,this.localNumberOfPages)},paginationParams:function(){var t=this.localLimit,e=this.localNumberOfPages,n=this.computedCurrentPage,r=this.hideEllipsis,i=this.firstNumber,a=this.lastNumber,o=!1,s=!1,c=t,u=1;e<=t?c=e:nYb?(r&&!a||(s=!0,c=t-(i?0:1)),c=Object(nt["e"])(c,t)):e-n+2Yb?(r&&!i||(o=!0,c=t-(a?0:1)),u=e-c+1):(t>Yb&&(c=t-(r?0:2),o=!(r&&!i),s=!(r&&!a)),u=n-Object(nt["c"])(c/2)),u<1?(u=1,o=!1):u>e-c&&(u=e-c+1,s=!1),o&&i&&u<4&&(c+=2,u=1,o=!1);var l=u+c-1;return s&&a&&l>e-3&&(c+=l===e-2?2:3,s=!1),t<=Yb&&(i&&1===u?c=Object(nt["e"])(c+1,e,t+1):a&&e===u+c-1&&(u=Object(nt["d"])(u-1,1),c=Object(nt["e"])(e-u+1,e,t+1))),c=Object(nt["e"])(c,e-u+1),{showFirstDots:o,showLastDots:s,numberOfLinks:c,startNumber:u}},pageList:function(){var t=this.paginationParams,e=t.numberOfLinks,n=t.startNumber,r=this.computedCurrentPage,i=Pb(n,e);if(i.length>3){var a=r-n,o="bv-d-xs-down-none";if(0===a)for(var s=3;sa+1;l--)i[l].classes=o}}return i}},watch:(vb={},Mb(vb,Db,(function(t,e){t!==e&&(this.currentPage=Eb(t,this.localNumberOfPages))})),Mb(vb,"currentPage",(function(t,e){t!==e&&this.$emit(Sb,t>0?t:null)})),Mb(vb,"limit",(function(t,e){t!==e&&(this.localLimit=Cb(t))})),vb),created:function(){var t=this;this.localLimit=Cb(this.limit),this.$nextTick((function(){t.currentPage=t.currentPage>t.localNumberOfPages?t.localNumberOfPages:t.currentPage}))},methods:{handleKeyNav:function(t){var e=t.keyCode,n=t.shiftKey;this.isNav||(e===re||e===ce?(Object(le["f"])(t,{propagation:!1}),n?this.focusFirst():this.focusPrev()):e!==oe&&e!==Zt||(Object(le["f"])(t,{propagation:!1}),n?this.focusLast():this.focusNext()))},getButtons:function(){return Object(A["F"])("button.page-link, a.page-link",this.$el).filter((function(t){return Object(A["u"])(t)}))},focusCurrent:function(){var t=this;this.$nextTick((function(){var e=t.getButtons().find((function(e){return Object(F["c"])(Object(A["h"])(e,"aria-posinset"),0)===t.computedCurrentPage}));Object(A["d"])(e)||t.focusFirst()}))},focusFirst:function(){var t=this;this.$nextTick((function(){var e=t.getButtons().find((function(t){return!Object(A["r"])(t)}));Object(A["d"])(e)}))},focusLast:function(){var t=this;this.$nextTick((function(){var e=t.getButtons().reverse().find((function(t){return!Object(A["r"])(t)}));Object(A["d"])(e)}))},focusPrev:function(){var t=this;this.$nextTick((function(){var e=t.getButtons(),n=e.indexOf(Object(A["g"])());n>0&&!Object(A["r"])(e[n-1])&&Object(A["d"])(e[n-1])}))},focusNext:function(){var t=this;this.$nextTick((function(){var e=t.getButtons(),n=e.indexOf(Object(A["g"])());no,p=r<1?1:r>o?o:r,v={disabled:f,page:p,index:p-1},_=e.normalizeSlot(s,v)||Object(mt["g"])(c)||t(),g=t(f?"span":a?de["a"]:"button",{staticClass:"page-link",class:{"flex-grow-1":!a&&!f&&h},props:f||!a?{}:e.linkProps(r),attrs:{role:a?null:"menuitem",type:a||f?null:"button",tabindex:f||a?null:"-1","aria-label":i,"aria-controls":e.ariaControls||null,"aria-disabled":f?"true":null},on:f?{}:{"!click":function(t){e.onClick(t,r)},keydown:Hb}},[_]);return t("li",{key:d,staticClass:"page-item",class:[{disabled:f,"flex-fill":h,"d-flex":h&&!a&&!f},u],attrs:{role:a?null:"presentation","aria-hidden":f?"true":null}},[g])},_=function(n){return t("li",{staticClass:"page-item",class:["disabled","bv-d-xs-down-none",h?"flex-fill":"",e.ellipsisClass],attrs:{role:"separator"},key:"ellipsis-".concat(n?"last":"first")},[t("span",{staticClass:"page-link"},[e.normalizeSlot(H["m"])||Object(mt["g"])(e.ellipsisText)||t()])])},g=function(i,s){var c=i.number,l=m(c)&&!b,d=n?null:l||b&&0===s?"0":"-1",f={role:a?null:"menuitemradio",type:a||n?null:"button","aria-disabled":n?"true":null,"aria-controls":e.ariaControls||null,"aria-label":Object(I["b"])(r)?r(c):"".concat(Object(u["f"])(r)?r():r," ").concat(c),"aria-checked":a?null:l?"true":"false","aria-current":a&&l?"page":null,"aria-posinset":a?null:c,"aria-setsize":a?null:o,tabindex:a?null:d},p=Object(mt["g"])(e.makePage(c)),v={page:c,index:c-1,content:p,active:l,disabled:n},_=t(n?"span":a?de["a"]:"button",{props:n||!a?{}:e.linkProps(c),staticClass:"page-link",class:{"flex-grow-1":!a&&!n&&h},attrs:f,on:n?{}:{"!click":function(t){e.onClick(t,c)},keydown:Hb}},[e.normalizeSlot(H["W"],v)||p]);return t("li",{staticClass:"page-item",class:[{disabled:n,active:l,"flex-fill":h,"d-flex":h&&!a&&!n},i.classes,e.pageClass],attrs:{role:a?null:"presentation"},key:"page-".concat(c)},[_])},y=t();this.firstNumber||this.hideGotoEndButtons||(y=v(1,this.labelFirstPage,H["r"],this.firstText,this.firstClass,1,"pagination-goto-first")),p.push(y),p.push(v(s-1,this.labelPrevPage,H["Z"],this.prevText,this.prevClass,1,"pagination-goto-prev")),p.push(this.firstNumber&&1!==c[0]?g({number:1},0):t()),p.push(d?_(!1):t()),this.pageList.forEach((function(t,n){var r=d&&e.firstNumber&&1!==c[0]?1:0;p.push(g(t,n+r))})),p.push(f?_(!0):t()),p.push(this.lastNumber&&c[c.length-1]!==o?g({number:o},-1):t()),p.push(v(s+1,this.labelNextPage,H["U"],this.nextText,this.nextClass,o,"pagination-goto-next"));var O=t();this.lastNumber||this.hideGotoEndButtons||(O=v(o,this.labelLastPage,H["D"],this.lastText,this.lastClass,o,"pagination-goto-last")),p.push(O);var j=t("ul",{staticClass:"pagination",class:["b-pagination",this.btnSize,this.alignment,this.styleClass],attrs:{role:a?null:"menubar","aria-disabled":n?"true":"false","aria-label":a?null:i||null},on:a?{}:{keydown:this.handleKeyNav},ref:"ul"},p);return a?t("nav",{attrs:{"aria-disabled":n?"true":null,"aria-hidden":n?"true":"false","aria-label":a&&i||null}},[j]):j}});function Fb(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function Ib(t){for(var e=1;et.numberOfPages)&&(this.currentPage=1),this.localNumberOfPages=t.numberOfPages}},created:function(){var t=this;this.localNumberOfPages=this.numberOfPages;var e=Object(F["c"])(this[Db],0);e>0?this.currentPage=e:this.$nextTick((function(){t.currentPage=0}))},methods:{onClick:function(t,e){var n=this;if(e!==this.currentPage){var r=t.target,i=new po["a"](C["F"],{cancelable:!0,vueTarget:this,target:r});this.$emit(i.type,i,e),i.defaultPrevented||(this.currentPage=e,this.$emit(C["d"],this.currentPage),this.$nextTick((function(){Object(A["u"])(r)&&n.$el.contains(r)?Object(A["d"])(r):n.focusCurrent()})))}},makePage:function(t){return t},linkProps:function(){return{}}}}),Gb=L({components:{BPagination:Ub}});function Jb(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function qb(t){for(var e=1;e0?this.localNumberOfPages=this.pages.length:this.localNumberOfPages=Xb(this.numberOfPages),this.$nextTick((function(){t.guessCurrentPage()}))},onClick:function(t,e){var n=this;if(e!==this.currentPage){var r=t.currentTarget||t.target,i=new po["a"](C["F"],{cancelable:!0,vueTarget:this,target:r});this.$emit(i.type,i,e),i.defaultPrevented||(Object(A["D"])((function(){n.currentPage=e,n.$emit(C["d"],e)})),this.$nextTick((function(){Object(A["c"])(r)})))}},getPageInfo:function(t){if(!Object(u["a"])(this.pages)||0===this.pages.length||Object(u["o"])(this.pages[t-1])){var e="".concat(this.baseUrl).concat(t);return{link:this.useRouter?{path:e}:e,text:Object(mt["g"])(t)}}var n=this.pages[t-1];if(Object(u["j"])(n)){var r=n.link;return{link:Object(u["j"])(r)?r:this.useRouter?{path:r}:r,text:Object(mt["g"])(n.text||t)}}return{link:Object(mt["g"])(n),text:Object(mt["g"])(t)}},makePage:function(t){var e=this.pageGen,n=this.getPageInfo(t);return Object(I["b"])(e)?e(t,n):n.text},makeLink:function(t){var e=this.linkGen,n=this.getPageInfo(t);return Object(I["b"])(e)?e(t,n):n.link},linkProps:function(t){var e=Object(I["e"])(Zb,this),n=this.makeLink(t);return this.useRouter||Object(u["j"])(n)?e.to=n:e.href=n,e},resolveLink:function(){var t,e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";try{t=document.createElement("a"),t.href=Object(ht["a"])({to:e},"a","/","/"),document.body.appendChild(t);var n=t,r=n.pathname,i=n.hash,a=n.search;return document.body.removeChild(t),{path:r,hash:i,query:Object(ht["f"])(a)}}catch(o){try{t&&t.parentNode&&t.parentNode.removeChild(t)}catch(s){}return{}}},resolveRoute:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";try{var e=this.$router.resolve(t,this.$route).route;return{path:e.path,hash:e.hash,query:e.query}}catch(n){return{}}},guessCurrentPage:function(){var t=this.$router,e=this.$route,n=this.computedValue;if(!this.noPageDetect&&!n&&(i["i"]||!i["i"]&&t))for(var r=t&&e?{path:e.path,hash:e.hash,query:e.query}:{},a=i["i"]?window.location||document.location:null,o=a?{path:a.pathname,hash:a.hash,query:Object(ht["f"])(a.search)}:{},s=1;!n&&s<=this.localNumberOfPages;s++){var c=this.makeLink(s);n=t&&(Object(u["j"])(c)||this.useRouter)?Object(tr["a"])(this.resolveRoute(c),r)?s:null:i["i"]?Object(tr["a"])(this.resolveLink(c),o)?s:null:-1}this.currentPage=n>0?n:0}}}),ev=L({components:{BPaginationNav:tv}}),nv=n("be29"),rv={AUTO:"auto",TOP:"top",RIGHT:"right",BOTTOM:"bottom",LEFT:"left",TOPLEFT:"top",TOPRIGHT:"top",RIGHTTOP:"right",RIGHTBOTTOM:"right",BOTTOMLEFT:"bottom",BOTTOMRIGHT:"bottom",LEFTTOP:"left",LEFTBOTTOM:"left"},iv={AUTO:0,TOPLEFT:-1,TOP:0,TOPRIGHT:1,RIGHTTOP:-1,RIGHT:0,RIGHTBOTTOM:1,BOTTOMLEFT:-1,BOTTOM:0,BOTTOMRIGHT:1,LEFTTOP:-1,LEFT:0,LEFTBOTTOM:1},av={arrowPadding:Object(I["c"])(E["p"],6),boundary:Object(I["c"])([ho["c"],E["u"]],"scrollParent"),boundaryPadding:Object(I["c"])(E["p"],5),fallbackPlacement:Object(I["c"])(E["f"],"flip"),offset:Object(I["c"])(E["p"],0),placement:Object(I["c"])(E["u"],"top"),target:Object(I["c"])([ho["c"],ho["d"]])},ov=r["default"].extend({name:P["Sb"],props:av,data:function(){return{noFade:!1,localShow:!0,attachment:this.getAttachment(this.placement)}},computed:{templateType:function(){return"unknown"},popperConfig:function(){var t=this,e=this.placement;return{placement:this.getAttachment(e),modifiers:{offset:{offset:this.getOffset(e)},flip:{behavior:this.fallbackPlacement},arrow:{element:".arrow"},preventOverflow:{padding:this.boundaryPadding,boundariesElement:this.boundary}},onCreate:function(e){e.originalPlacement!==e.placement&&t.popperPlacementChange(e)},onUpdate:function(e){t.popperPlacementChange(e)}}}},created:function(){var t=this;this.$_popper=null,this.localShow=!0,this.$on(C["T"],(function(e){t.popperCreate(e)}));var e=function(){t.$nextTick((function(){Object(A["D"])((function(){t.$destroy()}))}))};this.$parent.$once(C["fb"],e),this.$once(C["v"],e)},beforeMount:function(){this.attachment=this.getAttachment(this.placement)},updated:function(){this.updatePopper()},beforeDestroy:function(){this.destroyPopper()},destroyed:function(){var t=this.$el;t&&t.parentNode&&t.parentNode.removeChild(t)},methods:{hide:function(){this.localShow=!1},getAttachment:function(t){return rv[String(t).toUpperCase()]||"auto"},getOffset:function(t){if(!this.offset){var e=this.$refs.arrow||Object(A["E"])(".arrow",this.$el),n=Object(F["b"])(Object(A["k"])(e).width,0)+Object(F["b"])(this.arrowPadding,0);switch(iv[String(t).toUpperCase()]||0){case 1:return"+50%p - ".concat(n,"px");case-1:return"-50%p + ".concat(n,"px");default:return 0}}return this.offset},popperCreate:function(t){this.destroyPopper(),this.$_popper=new ao["a"](this.target,t,this.popperConfig)},destroyPopper:function(){this.$_popper&&this.$_popper.destroy(),this.$_popper=null},updatePopper:function(){this.$_popper&&this.$_popper.scheduleUpdate()},popperPlacementChange:function(t){this.attachment=this.getAttachment(t.placement)},renderTemplate:function(t){return t("div")}},render:function(t){var e=this,n=this.noFade;return t(N["a"],{props:{appear:!0,noFade:n},on:{beforeEnter:function(t){return e.$emit(C["T"],t)},afterEnter:function(t){return e.$emit(C["U"],t)},beforeLeave:function(t){return e.$emit(C["w"],t)},afterLeave:function(t){return e.$emit(C["v"],t)}}},[this.localShow?this.renderTemplate(t):t()])}});function sv(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function cv(t){for(var e=1;e0&&void 0!==arguments[0]?arguments[0]:{},n=!1;Object(f["h"])(Mv).forEach((function(r){Object(u["o"])(e[r])||t[r]===e[r]||(t[r]=e[r],"title"===r&&(n=!0))})),n&&this.localShow&&this.fixTitle()},createTemplateAndShow:function(){var t=this.getContainer(),e=this.getTemplate(),n=this.$_tip=new e({parent:this,propsData:{id:this.computedId,html:this.html,placement:this.placement,fallbackPlacement:this.fallbackPlacement,target:this.getPlacementTarget(),boundary:this.getBoundary(),offset:Object(F["c"])(this.offset,0),arrowPadding:Object(F["c"])(this.arrowPadding,0),boundaryPadding:Object(F["c"])(this.boundaryPadding,0)}});this.handleTemplateUpdate(),n.$once(C["T"],this.onTemplateShow),n.$once(C["U"],this.onTemplateShown),n.$once(C["w"],this.onTemplateHide),n.$once(C["v"],this.onTemplateHidden),n.$once(C["fb"],this.destroyTemplate),n.$on(C["s"],this.handleEvent),n.$on(C["t"],this.handleEvent),n.$on(C["A"],this.handleEvent),n.$on(C["B"],this.handleEvent),n.$mount(t.appendChild(document.createElement("div")))},hideTemplate:function(){this.$_tip&&this.$_tip.hide(),this.clearActiveTriggers(),this.$_hoverState=""},destroyTemplate:function(){this.setWhileOpenListeners(!1),this.clearHoverTimeout(),this.$_hoverState="",this.clearActiveTriggers(),this.localPlacementTarget=null;try{this.$_tip.$destroy()}catch(t){}this.$_tip=null,this.removeAriaDescribedby(),this.restoreTitle(),this.localShow=!1},getTemplateElement:function(){return this.$_tip?this.$_tip.$el:null},handleTemplateUpdate:function(){var t=this,e=this.$_tip;if(e){var n=["title","content","variant","customClass","noFade","interactive"];n.forEach((function(n){e[n]!==t[n]&&(e[n]=t[n])}))}},show:function(){var t=this.getTarget();if(t&&Object(A["f"])(document.body,t)&&Object(A["u"])(t)&&!this.dropdownOpen()&&(!Object(u["p"])(this.title)&&""!==this.title||!Object(u["p"])(this.content)&&""!==this.content)&&!this.$_tip&&!this.localShow){this.localShow=!0;var e=this.buildEvent(C["T"],{cancelable:!0});this.emitEvent(e),e.defaultPrevented?this.destroyTemplate():(this.fixTitle(),this.addAriaDescribedby(),this.createTemplateAndShow())}},hide:function(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0],e=this.getTemplateElement();if(e&&this.localShow){var n=this.buildEvent(C["w"],{cancelable:!t});this.emitEvent(n),n.defaultPrevented||this.hideTemplate()}else this.restoreTitle()},forceHide:function(){var t=this.getTemplateElement();t&&this.localShow&&(this.setWhileOpenListeners(!1),this.clearHoverTimeout(),this.$_hoverState="",this.clearActiveTriggers(),this.$_tip&&(this.$_tip.noFade=!0),this.hide(!0))},enable:function(){this.$_enabled=!0,this.emitEvent(this.buildEvent(C["p"]))},disable:function(){this.$_enabled=!1,this.emitEvent(this.buildEvent(C["l"]))},onTemplateShow:function(){this.setWhileOpenListeners(!0)},onTemplateShown:function(){var t=this.$_hoverState;this.$_hoverState="","out"===t&&this.leave(null),this.emitEvent(this.buildEvent(C["U"]))},onTemplateHide:function(){this.setWhileOpenListeners(!1)},onTemplateHidden:function(){this.destroyTemplate(),this.emitEvent(this.buildEvent(C["v"]))},getTarget:function(){var t=this.target;return Object(u["n"])(t)?t=Object(A["j"])(t.replace(/^#/,"")):Object(u["f"])(t)?t=t():t&&(t=t.$el||t),Object(A["s"])(t)?t:null},getPlacementTarget:function(){return this.getTarget()},getTargetId:function(){var t=this.getTarget();return t&&t.id?t.id:null},getContainer:function(){var t=!!this.container&&(this.container.$el||this.container),e=document.body,n=this.getTarget();return!1===t?Object(A["e"])(yv,n)||e:Object(u["n"])(t)&&Object(A["j"])(t.replace(/^#/,""))||e},getBoundary:function(){return this.boundary?this.boundary.$el||this.boundary:"scrollParent"},isInModal:function(){var t=this.getTarget();return t&&Object(A["e"])(vv,t)},isDropdown:function(){var t=this.getTarget();return t&&Object(A["p"])(t,Ov)},dropdownOpen:function(){var t=this.getTarget();return this.isDropdown()&&t&&Object(A["E"])(jv,t)},clearHoverTimeout:function(){clearTimeout(this.$_hoverTimeout),this.$_hoverTimeout=null},clearVisibilityInterval:function(){clearInterval(this.$_visibleInterval),this.$_visibleInterval=null},clearActiveTriggers:function(){for(var t in this.activeTrigger)this.activeTrigger[t]=!1},addAriaDescribedby:function(){var t=this.getTarget(),e=Object(A["h"])(t,"aria-describedby")||"";e=e.split(/\s+/).concat(this.computedId).join(" ").trim(),Object(A["G"])(t,"aria-describedby",e)},removeAriaDescribedby:function(){var t=this,e=this.getTarget(),n=Object(A["h"])(e,"aria-describedby")||"";n=n.split(/\s+/).filter((function(e){return e!==t.computedId})).join(" ").trim(),n?Object(A["G"])(e,"aria-describedby",n):Object(A["z"])(e,"aria-describedby")},fixTitle:function(){var t=this.getTarget();if(Object(A["o"])(t,"title")){var e=Object(A["h"])(t,"title");Object(A["G"])(t,"title",""),e&&Object(A["G"])(t,wv,e)}},restoreTitle:function(){var t=this.getTarget();if(Object(A["o"])(t,wv)){var e=Object(A["h"])(t,wv);Object(A["z"])(t,wv),e&&Object(A["G"])(t,"title",e)}},buildEvent:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return new po["a"](t,hv({cancelable:!1,target:this.getTarget(),relatedTarget:this.getTemplateElement()||null,componentId:this.computedId,vueTarget:this},e))},emitEvent:function(t){var e=t.type;this.emitOnRoot(Object(le["e"])(this.templateType,e),t),this.$emit(e,t)},listen:function(){var t=this,e=this.getTarget();e&&(this.setRootListener(!0),this.computedTriggers.forEach((function(n){"click"===n?Object(le["b"])(e,"click",t.handleEvent,C["cb"]):"focus"===n?(Object(le["b"])(e,"focusin",t.handleEvent,C["cb"]),Object(le["b"])(e,"focusout",t.handleEvent,C["cb"])):"blur"===n?Object(le["b"])(e,"focusout",t.handleEvent,C["cb"]):"hover"===n&&(Object(le["b"])(e,"mouseenter",t.handleEvent,C["cb"]),Object(le["b"])(e,"mouseleave",t.handleEvent,C["cb"]))}),this))},unListen:function(){var t=this,e=["click","focusin","focusout","mouseenter","mouseleave"],n=this.getTarget();this.setRootListener(!1),e.forEach((function(e){n&&Object(le["a"])(n,e,t.handleEvent,C["cb"])}),this)},setRootListener:function(t){var e=this.$root;if(e){var n=t?"$on":"$off",r=this.templateType;e[n](Object(le["d"])(r,C["w"]),this.doHide),e[n](Object(le["d"])(r,C["T"]),this.doShow),e[n](Object(le["d"])(r,C["k"]),this.doDisable),e[n](Object(le["d"])(r,C["o"]),this.doEnable)}},setWhileOpenListeners:function(t){this.setModalListener(t),this.setDropdownListener(t),this.visibleCheck(t),this.setOnTouchStartListener(t)},visibleCheck:function(t){var e=this;this.clearVisibilityInterval();var n=this.getTarget(),r=this.getTemplateElement();t&&(this.$_visibleInterval=setInterval((function(){!r||!e.localShow||n.parentNode&&Object(A["u"])(n)||e.forceHide()}),100))},setModalListener:function(t){this.isInModal()&&this.$root[t?"$on":"$off"](_v,this.forceHide)},setOnTouchStartListener:function(t){var e=this;"ontouchstart"in document.documentElement&&Object(ue["f"])(document.body.children).forEach((function(n){Object(le["c"])(t,n,"mouseover",e.$_noop)}))},setDropdownListener:function(t){var e=this.getTarget();e&&this.$root&&this.isDropdown&&e.__vue__&&e.__vue__[t?"$on":"$off"](C["U"],this.forceHide)},handleEvent:function(t){var e=this.getTarget();if(e&&!Object(A["r"])(e)&&this.$_enabled&&!this.dropdownOpen()){var n=t.type,r=this.computedTriggers;if("click"===n&&Object(ue["a"])(r,"click"))this.click(t);else if("mouseenter"===n&&Object(ue["a"])(r,"hover"))this.enter(t);else if("focusin"===n&&Object(ue["a"])(r,"focus"))this.enter(t);else if("focusout"===n&&(Object(ue["a"])(r,"focus")||Object(ue["a"])(r,"blur"))||"mouseleave"===n&&Object(ue["a"])(r,"hover")){var i=this.getTemplateElement(),a=t.target,o=t.relatedTarget;if(i&&Object(A["f"])(i,a)&&Object(A["f"])(e,o)||i&&Object(A["f"])(e,a)&&Object(A["f"])(i,o)||i&&Object(A["f"])(i,a)&&Object(A["f"])(i,o)||Object(A["f"])(e,a)&&Object(A["f"])(e,o))return;this.leave(t)}}},doHide:function(t){t&&this.getTargetId()!==t&&this.computedId!==t||this.forceHide()},doShow:function(t){t&&this.getTargetId()!==t&&this.computedId!==t||this.show()},doDisable:function(t){t&&this.getTargetId()!==t&&this.computedId!==t||this.disable()},doEnable:function(t){t&&this.getTargetId()!==t&&this.computedId!==t||this.enable()},click:function(t){this.$_enabled&&!this.dropdownOpen()&&(Object(A["d"])(t.currentTarget),this.activeTrigger.click=!this.activeTrigger.click,this.isWithActiveTrigger?this.enter(null):this.leave(null))},toggle:function(){this.$_enabled&&!this.dropdownOpen()&&(this.localShow?this.leave(null):this.enter(null))},enter:function(){var t=this,e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;e&&(this.activeTrigger["focusin"===e.type?"focus":"hover"]=!0),this.localShow||"in"===this.$_hoverState?this.$_hoverState="in":(this.clearHoverTimeout(),this.$_hoverState="in",this.computedDelay.show?(this.fixTitle(),this.$_hoverTimeout=setTimeout((function(){"in"===t.$_hoverState?t.show():t.localShow||t.restoreTitle()}),this.computedDelay.show)):this.show())},leave:function(){var t=this,e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;e&&(this.activeTrigger["focusout"===e.type?"focus":"hover"]=!1,"focusout"===e.type&&Object(ue["a"])(this.computedTriggers,"blur")&&(this.activeTrigger.click=!1,this.activeTrigger.hover=!1)),this.isWithActiveTrigger||(this.clearHoverTimeout(),this.$_hoverState="out",this.computedDelay.hide?this.$_hoverTimeout=setTimeout((function(){"out"===t.$_hoverState&&t.hide()}),this.computedDelay.hide):this.hide())}}});function kv(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function Tv(t){for(var e=1;e0&&t[Wv].updateData(e)}))}var o={title:r.title,content:r.content,triggers:r.trigger,placement:r.placement,fallbackPlacement:r.fallbackPlacement,variant:r.variant,customClass:r.customClass,container:r.container,boundary:r.boundary,delay:r.delay,offset:r.offset,noFade:!r.animation,id:r.id,disabled:r.disabled,html:r.html},s=t[Wv].__bv_prev_data__;if(t[Wv].__bv_prev_data__=o,!Object(tr["a"])(o,s)){var c={target:t};Object(f["h"])(o).forEach((function(e){o[e]!==s[e]&&(c[e]="title"!==e&&"content"!==e||!Object(u["f"])(o[e])?o[e]:o[e](t))})),t[Wv].updateData(c)}}},o_=function(t){t[Wv]&&(t[Wv].$destroy(),t[Wv]=null),delete t[Wv]},s_={bind:function(t,e,n){a_(t,e,n)},componentUpdated:function(t,e,n){n.context.$nextTick((function(){a_(t,e,n)}))},unbind:function(t){o_(t)}},c_=L({directives:{VBPopover:s_}}),u_=L({components:{BPopover:Rv},plugins:{VBPopoverPlugin:c_}}),l_=Object(I["d"])({animated:Object(I["c"])(E["g"],null),label:Object(I["c"])(E["u"]),labelHtml:Object(I["c"])(E["u"]),max:Object(I["c"])(E["p"],null),precision:Object(I["c"])(E["p"],null),showProgress:Object(I["c"])(E["g"],null),showValue:Object(I["c"])(E["g"],null),striped:Object(I["c"])(E["g"],null),value:Object(I["c"])(E["p"],0),variant:Object(I["c"])(E["u"])},P["Ub"]),d_=r["default"].extend({name:P["Ub"],mixins:[B["a"]],inject:{bvProgress:{default:function(){return{}}}},props:l_,computed:{progressBarClasses:function(){var t=this.computedAnimated,e=this.computedVariant;return[e?"bg-".concat(e):"",this.computedStriped||t?"progress-bar-striped":"",t?"progress-bar-animated":""]},progressBarStyles:function(){return{width:this.computedValue/this.computedMax*100+"%"}},computedValue:function(){return Object(F["b"])(this.value,0)},computedMax:function(){var t=Object(F["b"])(this.max)||Object(F["b"])(this.bvProgress.max,0);return t>0?t:100},computedPrecision:function(){return Object(nt["d"])(Object(F["c"])(this.precision,Object(F["c"])(this.bvProgress.precision,0)),0)},computedProgress:function(){var t=this.computedPrecision,e=Object(nt["f"])(10,t);return Object(F["a"])(100*e*this.computedValue/this.computedMax/e,t)},computedVariant:function(){return this.variant||this.bvProgress.variant},computedStriped:function(){return Object(u["b"])(this.striped)?this.striped:this.bvProgress.striped||!1},computedAnimated:function(){return Object(u["b"])(this.animated)?this.animated:this.bvProgress.animated||!1},computedShowProgress:function(){return Object(u["b"])(this.showProgress)?this.showProgress:this.bvProgress.showProgress||!1},computedShowValue:function(){return Object(u["b"])(this.showValue)?this.showValue:this.bvProgress.showValue||!1}},render:function(t){var e,n=this.label,r=this.labelHtml,i=this.computedValue,a=this.computedPrecision,o={};return this.hasNormalizedSlot()?e=this.normalizeSlot():n||r?o=Je(r,n):this.computedShowProgress?e=this.computedProgress:this.computedShowValue&&(e=Object(F["a"])(i,a)),t("div",{staticClass:"progress-bar",class:this.progressBarClasses,style:this.progressBarStyles,attrs:{role:"progressbar","aria-valuemin":"0","aria-valuemax":Object(mt["g"])(this.computedMax),"aria-valuenow":Object(F["a"])(i,a)},domProps:o},e)}});function f_(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function h_(t){for(var e=1;e0&&void 0!==arguments[0]?arguments[0]:{},e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this.noCloseOnRouteChange||t.fullPath===e.fullPath||this.hide()})),m_),created:function(){this.$_returnFocusEl=null},mounted:function(){var t=this;this.listenOnRoot(L_,this.handleToggle),this.listenOnRoot(M_,this.handleSync),this.$nextTick((function(){t.emitState(t.localShow)}))},activated:function(){this.emitSync()},beforeDestroy:function(){this.localShow=!1,this.$_returnFocusEl=null},methods:{hide:function(){this.localShow=!1},emitState:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.localShow;this.emitOnRoot(k_,this.safeId(),t)},emitSync:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.localShow;this.emitOnRoot(T_,this.safeId(),t)},handleToggle:function(t){t&&t===this.safeId()&&(this.localShow=!this.localShow)},handleSync:function(t){var e=this;t&&t===this.safeId()&&this.$nextTick((function(){e.emitSync(e.localShow)}))},onKeydown:function(t){var e=t.keyCode;!this.noCloseOnEsc&&e===ee&&this.localShow&&this.hide()},onBackdropClick:function(){this.localShow&&!this.noCloseOnBackdrop&&this.hide()},onTopTrapFocus:function(){var t=Object(A["n"])(this.$refs.content);this.enforceFocus(t.reverse()[0])},onBottomTrapFocus:function(){var t=Object(A["n"])(this.$refs.content);this.enforceFocus(t[0])},onBeforeEnter:function(){this.$_returnFocusEl=Object(A["g"])(i["i"]?[document.body]:[]),this.isOpen=!0},onAfterEnter:function(t){Object(A["f"])(t,Object(A["g"])())||this.enforceFocus(t),this.$emit(C["U"])},onAfterLeave:function(){this.enforceFocus(this.$_returnFocusEl),this.$_returnFocusEl=null,this.isOpen=!1,this.$emit(C["v"])},enforceFocus:function(t){this.noEnforceFocus||Object(A["d"])(t)}},render:function(t){var e,n=this.bgVariant,r=this.width,i=this.textVariant,a=this.localShow,o=""===this.shadow||this.shadow,s=t(this.tag,{staticClass:w_,class:[(e={shadow:!0===o},j_(e,"shadow-".concat(o),o&&!0!==o),j_(e,"".concat(w_,"-right"),this.right),j_(e,"bg-".concat(n),n),j_(e,"text-".concat(i),i),e),this.sidebarClass],style:{width:r},attrs:this.computedAttrs,directives:[{name:"show",value:a}],ref:"content"},[I_(t,this)]);s=t("transition",{props:this.transitionProps,on:{beforeEnter:this.onBeforeEnter,afterEnter:this.onAfterEnter,afterLeave:this.onAfterLeave}},[s]);var c=t(N["a"],{props:{noFade:this.noSlide}},[B_(t,this)]),u=t(),l=t();return this.backdrop&&a&&(u=t("div",{attrs:{tabindex:"0"},on:{focus:this.onTopTrapFocus}}),l=t("div",{attrs:{tabindex:"0"},on:{focus:this.onBottomTrapFocus}})),t("div",{staticClass:"b-sidebar-outer",style:{zIndex:this.zIndex},attrs:{tabindex:"-1"},on:{keydown:this.onKeydown}},[u,s,l,c])}}),N_=L({components:{BSidebar:R_},plugins:{VBTogglePlugin:ro}});function V_(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var z_=Object(I["d"])({animation:Object(I["c"])(E["u"],"wave"),height:Object(I["c"])(E["u"]),size:Object(I["c"])(E["u"]),type:Object(I["c"])(E["u"],"text"),variant:Object(I["c"])(E["u"]),width:Object(I["c"])(E["u"])},P["Xb"]),W_=r["default"].extend({name:P["Xb"],functional:!0,props:z_,render:function(t,e){var n,r=e.data,i=e.props,a=i.size,o=i.animation,s=i.variant;return t("div",Object(pt["a"])(r,{staticClass:"b-skeleton",style:{width:a||i.width,height:a||i.height},class:(n={},V_(n,"b-skeleton-".concat(i.type),!0),V_(n,"b-skeleton-animate-".concat(o),o),V_(n,"bg-".concat(s),s),n)}))}});function U_(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function G_(t){for(var e=1;e0}}});function eg(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var ng={stacked:Object(I["c"])(E["j"],!1)},rg=r["default"].extend({props:ng,computed:{isStacked:function(){var t=this.stacked;return""===t||t},isStackedAlways:function(){return!0===this.isStacked},stackedTableClasses:function(){var t=this.isStackedAlways;return eg({"b-table-stacked":t},"b-table-stacked-".concat(this.stacked),!t&&this.isStacked)}}});function ig(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function ag(t){for(var e=1;e0&&!this.computedBusy,[this.tableClass,{"table-striped":this.striped,"table-hover":t,"table-dark":this.dark,"table-bordered":this.bordered,"table-borderless":this.borderless,"table-sm":this.small,border:this.outlined,"b-table-fixed":this.fixed,"b-table-caption-top":this.captionTop,"b-table-no-border-collapse":this.noBorderCollapse},e?"".concat(this.dark?"bg":"table","-").concat(e):"",this.stackedTableClasses,this.selectableTableClasses]},tableAttrs:function(){var t=this.computedItems,e=this.filteredItems,n=this.computedFields,r=this.selectableTableAttrs,i=this.isTableSimple?{}:{"aria-busy":this.computedBusy?"true":"false","aria-colcount":Object(mt["g"])(n.length),"aria-describedby":this.bvAttrs["aria-describedby"]||this.$refs.caption?this.captionId:null},a=t&&e&&e.length>t.length?Object(mt["g"])(e.length):null;return ag(ag(ag({"aria-rowcount":a},this.bvAttrs),{},{id:this.safeId(),role:"table"},i),r)}},render:function(t){var e=this.wrapperClasses,n=this.renderCaption,r=this.renderColgroup,i=this.renderThead,a=this.renderTbody,o=this.renderTfoot,s=[];this.isTableSimple?s.push(this.normalizeSlot()):(s.push(n?n():null),s.push(r?r():null),s.push(i?i():null),s.push(a?a():null),s.push(o?o():null));var u=t("table",{staticClass:"table b-table",class:this.tableClasses,attrs:this.tableAttrs,key:"b-table"},s.filter(c["a"]));return e.length>0?t("div",{class:e,style:this.wrapperStyles,key:"wrap"},[u]):u}});function ug(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function lg(t){for(var e=1;e0},_g=Object(I["d"])({animation:Object(I["c"])(E["u"]),columns:Object(I["c"])(E["n"],5,vg),hideHeader:Object(I["c"])(E["g"],!1),rows:Object(I["c"])(E["n"],3,vg),showFooter:Object(I["c"])(E["g"],!1),tableProps:Object(I["c"])(E["q"],{})},P["ac"]),gg=r["default"].extend({name:P["ac"],functional:!0,props:_g,render:function(t,e){var n=e.props,r=n.animation,i=n.columns,a=t("th",[t(W_,{props:{animation:r}})]),o=t("tr",Object(ue["c"])(i,a)),s=t("td",[t(W_,{props:{width:"75%",animation:r}})]),c=t("tr",Object(ue["c"])(i,s)),u=t("tbody",Object(ue["c"])(n.rows,c)),l=n.hideHeader?t():t("thead",[o]),d=n.showFooter?t("tfoot",[o]):t();return t(hg,{props:mg({},n.tableProps)},[l,u,d])}}),yg=Object(I["d"])({loading:Object(I["c"])(E["g"],!1)},P["bc"]),Og=r["default"].extend({name:P["bc"],functional:!0,props:yg,render:function(t,e){var n=e.data,r=e.props,i=e.slots,a=e.scopedSlots,o=i(),s=a||{},c={};return r.loading?t("div",Object(pt["a"])(n,{attrs:{role:"alert","aria-live":"polite","aria-busy":!0},staticClass:"b-skeleton-wrapper",key:"loading"}),Object(pr["b"])(H["F"],c,s,o)):Object(pr["b"])(H["i"],c,s,o)}}),jg=L({components:{BSkeleton:W_,BSkeletonIcon:K_,BSkeletonImg:Q_,BSkeletonTable:gg,BSkeletonWrapper:Og}}),wg=L({components:{BSpinner:hb}});function Mg(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function Lg(t){for(var e=1;e0?t:null},$g=function(t){return Object(u["p"])(t)||Ag(t)>0},Fg=Object(I["d"])({colspan:Object(I["c"])(E["p"],null,$g),rowspan:Object(I["c"])(E["p"],null,$g),stackedHeading:Object(I["c"])(E["u"]),stickyColumn:Object(I["c"])(E["g"],!1),variant:Object(I["c"])(E["u"])},P["fc"]),Ig=r["default"].extend({name:P["fc"],mixins:[er["a"],sl["a"],B["a"]],inject:{bvTableTr:{default:function(){return{}}}},inheritAttrs:!1,props:Fg,computed:{tag:function(){return"td"},inTbody:function(){return this.bvTableTr.inTbody},inThead:function(){return this.bvTableTr.inThead},inTfoot:function(){return this.bvTableTr.inTfoot},isDark:function(){return this.bvTableTr.isDark},isStacked:function(){return this.bvTableTr.isStacked},isStackedCell:function(){return this.inTbody&&this.isStacked},isResponsive:function(){return this.bvTableTr.isResponsive},isStickyHeader:function(){return this.bvTableTr.isStickyHeader},hasStickyHeader:function(){return this.bvTableTr.hasStickyHeader},isStickyColumn:function(){return!this.isStacked&&(this.isResponsive||this.hasStickyHeader)&&this.stickyColumn},rowVariant:function(){return this.bvTableTr.variant},headVariant:function(){return this.bvTableTr.headVariant},footVariant:function(){return this.bvTableTr.footVariant},tableVariant:function(){return this.bvTableTr.tableVariant},computedColspan:function(){return Ag(this.colspan)},computedRowspan:function(){return Ag(this.rowspan)},cellClasses:function(){var t=this.variant,e=this.headVariant,n=this.isStickyColumn;return(!t&&this.isStickyHeader&&!e||!t&&n&&this.inTfoot&&!this.footVariant||!t&&n&&this.inThead&&!e||!t&&n&&this.inTbody)&&(t=this.rowVariant||this.tableVariant||"b-table-default"),[t?"".concat(this.isDark?"bg":"table","-").concat(t):null,n?"b-table-sticky-column":null]},cellAttrs:function(){var t=this.stackedHeading,e=this.inThead||this.inTfoot,n=this.computedColspan,r=this.computedRowspan,i="cell",a=null;return e?(i="columnheader",a=n>0?"colspan":"col"):Object(A["t"])(this.tag,"th")&&(i="rowheader",a=r>0?"rowgroup":"row"),Eg(Eg({colspan:n,rowspan:r,role:i,scope:a},this.bvAttrs),{},{"data-label":this.isStackedCell&&!Object(u["p"])(t)?Object(mt["g"])(t):null})}},render:function(t){var e=[this.normalizeSlot()];return t(this.tag,{class:this.cellClasses,attrs:this.cellAttrs,on:this.bvListeners},[this.isStackedCell?t("div",[e]):e])}});function Bg(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var Rg="busy",Ng=C["gb"]+Rg,Vg=Bg({},Rg,Object(I["c"])(E["g"],!1)),zg=r["default"].extend({props:Vg,data:function(){return{localBusy:!1}},computed:{computedBusy:function(){return this[Rg]||this.localBusy}},watch:{localBusy:function(t,e){t!==e&&this.$emit(Ng,t)}},methods:{stopIfBusy:function(t){return!!this.computedBusy&&(Object(le["f"])(t),!0)},renderBusy:function(){var t=this.tbodyTrClass,e=this.tbodyTrAttr,n=this.$createElement;return this.computedBusy&&this.hasNormalizedSlot(H["bb"])?n(Yg,{staticClass:"b-table-busy-slot",class:[Object(u["f"])(t)?t(null,H["bb"]):t],attrs:Object(u["f"])(e)?e(null,H["bb"]):e,key:"table-busy-slot"},[n(Ig,{props:{colspan:this.computedFields.length||null}},[this.normalizeSlot(H["bb"])])]):null}}}),Wg={caption:Object(I["c"])(E["u"]),captionHtml:Object(I["c"])(E["u"])},Ug=r["default"].extend({props:Wg,computed:{captionId:function(){return this.isStacked?this.safeId("_caption_"):null}},methods:{renderCaption:function(){var t=this.caption,e=this.captionHtml,n=this.$createElement,r=n(),i=this.hasNormalizedSlot(H["cb"]);return(i||t||e)&&(r=n("caption",{attrs:{id:this.captionId},domProps:i?{}:Je(e,t),key:"caption",ref:"caption"},this.normalizeSlot(H["cb"]))),r}}}),Gg={},Jg=r["default"].extend({methods:{renderColgroup:function(){var t=this.computedFields,e=this.$createElement,n=e();return this.hasNormalizedSlot(H["db"])&&(n=e("colgroup",{key:"colgroup"},[this.normalizeSlot(H["db"],{columns:t.length,fields:t})])),n}}}),qg={emptyFilteredHtml:Object(I["c"])(E["u"]),emptyFilteredText:Object(I["c"])(E["u"],"There are no records matching your request"),emptyHtml:Object(I["c"])(E["u"]),emptyText:Object(I["c"])(E["u"],"There are no records to show"),showEmpty:Object(I["c"])(E["g"],!1)},Kg=r["default"].extend({props:qg,methods:{renderEmpty:function(){var t=this.computedItems,e=this.$createElement,n=e();if(this.showEmpty&&(!t||0===t.length)&&(!this.computedBusy||!this.hasNormalizedSlot(H["bb"]))){var r=this.computedFields,i=this.isFiltered,a=this.emptyText,o=this.emptyHtml,s=this.emptyFilteredText,c=this.emptyFilteredHtml,l=this.tbodyTrClass,d=this.tbodyTrAttr;n=this.normalizeSlot(i?H["o"]:H["n"],{emptyFilteredHtml:c,emptyFilteredText:s,emptyHtml:o,emptyText:a,fields:r,items:t}),n||(n=e("div",{class:["text-center","my-2"],domProps:i?Je(c,s):Je(o,a)})),n=e(Ig,{props:{colspan:r.length||null}},[e("div",{attrs:{role:"alert","aria-live":"polite"}},[n])]),n=e(Yg,{staticClass:"b-table-empty-row",class:[Object(u["f"])(l)?l(null,"row-empty"):l],attrs:Object(u["f"])(d)?d(null,"row-empty"):d,key:i?"b-empty-filtered-row":"b-empty-row"},[n])}return n}}}),Xg=function t(e){return Object(u["p"])(e)?"":Object(u["j"])(e)&&!Object(u["c"])(e)?Object(f["h"])(e).sort().map((function(n){return t(e[n])})).filter((function(t){return!!t})).join(" "):Object(mt["g"])(e)};function Zg(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function Qg(t){for(var e=1;e3&&void 0!==arguments[3]?arguments[3]:{},i=Object(f["h"])(r).reduce((function(e,n){var i=r[n],a=i.filterByFormatted,o=Object(u["f"])(a)?a:a?i.formatter:null;return Object(u["f"])(o)&&(e[n]=o(t[n],n,t)),e}),Object(f["b"])(t)),a=Object(f["h"])(i).filter((function(t){return!iy[t]&&!(Object(u["a"])(e)&&e.length>0&&Object(ue["a"])(e,t))&&!(Object(u["a"])(n)&&n.length>0&&!Object(ue["a"])(n,t))}));return Object(f["k"])(i,a)},sy=function(t,e,n,r){return Object(u["j"])(t)?Xg(oy(t,e,n,r)):""};function cy(t){return fy(t)||dy(t)||ly(t)||uy()}function uy(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function ly(t,e){if(t){if("string"===typeof t)return hy(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(t):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?hy(t,e):void 0}}function dy(t){if("undefined"!==typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}function fy(t){if(Array.isArray(t))return hy(t)}function hy(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);n0&&Object(h["a"])(py,P["ec"]),t},localFiltering:function(){return!this.hasProvider||!!this.noProviderFiltering},filteredCheck:function(){var t=this.filteredItems,e=this.localItems,n=this.localFilter;return{filteredItems:t,localItems:e,localFilter:n}},localFilterFn:function(){var t=this.filterFunction;return Object(I["b"])(t)?t:null},filteredItems:function(){var t=this.localItems,e=this.localFilter,n=this.localFiltering?this.filterFnFactory(this.localFilterFn,e)||this.defaultFilterFnFactory(e):null;return n&&t.length>0?t.filter(n):t}},watch:{computedFilterDebounce:function(t){!t&&this.$_filterTimer&&(this.clearFilterTimer(),this.localFilter=this.filterSanitize(this.filter))},filter:{deep:!0,handler:function(t){var e=this,n=this.computedFilterDebounce;this.clearFilterTimer(),n&&n>0?this.$_filterTimer=setTimeout((function(){e.localFilter=e.filterSanitize(t)}),n):this.localFilter=this.filterSanitize(t)}},filteredCheck:function(t){var e=t.filteredItems,n=t.localFilter,r=!1;n?Object(tr["a"])(n,[])||Object(tr["a"])(n,{})?r=!1:n&&(r=!0):r=!1,r&&this.$emit(C["q"],e,e.length),this.isFiltered=r},isFiltered:function(t,e){if(!1===t&&!0===e){var n=this.localItems;this.$emit(C["q"],n,n.length)}}},created:function(){var t=this;this.$_filterTimer=null,this.$nextTick((function(){t.isFiltered=Boolean(t.localFilter)}))},beforeDestroy:function(){this.clearFilterTimer()},methods:{clearFilterTimer:function(){clearTimeout(this.$_filterTimer),this.$_filterTimer=null},filterSanitize:function(t){return!this.localFiltering||this.localFilterFn||Object(u["n"])(t)||Object(u["m"])(t)?Object(o["a"])(t):""},filterFnFactory:function(t,e){if(!t||!Object(u["f"])(t)||!e||Object(tr["a"])(e,[])||Object(tr["a"])(e,{}))return null;var n=function(n){return t(n,e)};return n},defaultFilterFnFactory:function(t){var e=this;if(!t||!Object(u["n"])(t)&&!Object(u["m"])(t))return null;var n=t;if(Object(u["n"])(n)){var r=Object(mt["a"])(t).replace(s["w"],"\\s+");n=new RegExp(".*".concat(r,".*"),"i")}var i=function(t){return n.lastIndex=0,n.test(sy(t,e.computedFilterIgnored,e.computedFilterIncluded,e.computedFieldsObj))};return i}}}),vy=function(t,e){var n=null;return Object(u["n"])(e)?n={key:t,label:e}:Object(u["f"])(e)?n={key:t,formatter:e}:Object(u["j"])(e)?(n=Object(f["b"])(e),n.key=n.key||t):!1!==e&&(n={key:t}),n},_y=function(t,e){var n=[];if(Object(u["a"])(t)&&t.filter(c["a"]).forEach((function(t){if(Object(u["n"])(t))n.push({key:t,label:Object(mt["f"])(t)});else if(Object(u["j"])(t)&&t.key&&Object(u["n"])(t.key))n.push(Object(f["b"])(t));else if(Object(u["j"])(t)&&1===Object(f["h"])(t).length){var e=Object(f["h"])(t)[0],r=vy(e,t[e]);r&&n.push(r)}})),0===n.length&&Object(u["a"])(e)&&e.length>0){var r=e[0];Object(f["h"])(r).forEach((function(t){iy[t]||n.push({key:t,label:Object(mt["f"])(t)})}))}var i={};return n.filter((function(t){return!i[t.key]&&(i[t.key]=!0,t.label=Object(u["n"])(t.label)?t.label:Object(mt["f"])(t.key),!0)}))};function gy(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function yy(t){for(var e=1;e0&&t.some(c["a"])},selectableIsMultiSelect:function(){return this.isSelectable&&Object(ue["a"])(["range","multi"],this.selectMode)},selectableTableClasses:function(){var t,e=this.isSelectable;return t={"b-table-selectable":e},Hy(t,"b-table-select-".concat(this.selectMode),e),Hy(t,"b-table-selecting",this.selectableHasSelection),Hy(t,"b-table-selectable-no-click",e&&!this.hasSelectableRowClick),t},selectableTableAttrs:function(){return{"aria-multiselectable":this.isSelectable?this.selectableIsMultiSelect?"true":"false":null}}},watch:{computedItems:function(t,e){var n=!1;if(this.isSelectable&&this.selectedRows.length>0){n=Object(u["a"])(t)&&Object(u["a"])(e)&&t.length===e.length;for(var r=0;n&&r=0&&t0&&(this.selectedLastClicked=-1,this.selectedRows=this.selectableIsMultiSelect?Object(ue["c"])(t,!0):[!0])},isRowSelected:function(t){return!(!Object(u["h"])(t)||!this.selectedRows[t])},clearSelected:function(){this.selectedLastClicked=-1,this.selectedRows=[]},selectableRowClasses:function(t){if(this.isSelectable&&this.isRowSelected(t)){var e=this.selectedVariant;return Hy({"b-table-row-selected":!0},"".concat(this.dark?"bg":"table","-").concat(e),e)}return{}},selectableRowAttrs:function(t){return{"aria-selected":this.isSelectable?this.isRowSelected(t)?"true":"false":null}},setSelectionHandlers:function(t){var e=t&&!this.noSelectOnClick?"$on":"$off";this[e](C["L"],this.selectionHandler),this[e](C["q"],this.clearSelected),this[e](C["i"],this.clearSelected)},selectionHandler:function(t,e,n){if(this.isSelectable&&!this.noSelectOnClick){var r=this.selectMode,i=this.selectedLastRow,a=this.selectedRows.slice(),o=!a[e];if("single"===r)a=[];else if("range"===r)if(i>-1&&n.shiftKey){for(var s=Object(nt["e"])(i,e);s<=Object(nt["d"])(i,e);s++)a[s]=!0;o=!0}else n.ctrlKey||n.metaKey||(a=[],o=!0),this.selectedLastRow=o?e:-1;a[e]=o,this.selectedRows=a}else this.clearSelected()}}}),Ry=function(t,e){return t.map((function(t,e){return[e,t]})).sort(function(t,e){return this(t[1],e[1])||t[0]-e[0]}.bind(e)).map((function(t){return t[1]}))},Ny=function(t){return Object(u["p"])(t)?"":Object(u["i"])(t)?Object(F["b"])(t,t):t},Vy=function(t,e){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=n.sortBy,i=void 0===r?null:r,a=n.formatter,o=void 0===a?null:a,s=n.locale,c=void 0===s?void 0:s,l=n.localeOptions,f=void 0===l?{}:l,h=n.nullLast,p=void 0!==h&&h,m=d(t,i,null),b=d(e,i,null);return Object(u["f"])(o)&&(m=o(m,i,t),b=o(b,i,e)),m=Ny(m),b=Ny(b),Object(u["c"])(m)&&Object(u["c"])(b)||Object(u["h"])(m)&&Object(u["h"])(b)?mb?1:0:p&&""===m&&""!==b?1:p&&""!==m&&""===b?-1:Xg(m).localeCompare(Xg(b),c,f)};function zy(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function Wy(t){for(var e=1;e0&&void 0!==arguments[0]?arguments[0]:document,e=Object(A["l"])();return!!(e&&""!==e.toString().trim()&&e.containsNode&&Object(A["s"])(t))&&e.containsNode(t,!0)},dO=Object(I["d"])(Fg,P["mc"]),fO=r["default"].extend({name:P["mc"],extends:Ig,props:dO,computed:{tag:function(){return"th"}}});function hO(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function pO(t){for(var e=1;et.length)&&(e=t.length);for(var n=0,r=new Array(e);n0&&(g=String((o-1)*s+e+1));var y=Object(mt["g"])(d(t,a))||null,O=y||Object(mt["g"])(e),j=y?this.safeId("_row_".concat(y)):null,w=this.selectableRowClasses?this.selectableRowClasses(e):{},M=this.selectableRowAttrs?this.selectableRowAttrs(e):{},L=Object(u["f"])(c)?c(t,"row"):c,k=Object(u["f"])(l)?l(t,"row"):l;if(b.push(f(Yg,{class:[L,w,p?"b-table-has-details":""],props:{variant:t[ny]||null},attrs:pO(pO({id:j},k),{},{tabindex:m?"0":null,"data-pk":y||null,"aria-details":v,"aria-owns":v,"aria-rowindex":g},M),on:{mouseenter:this.rowHovered,mouseleave:this.rowUnhovered},key:"__b-table-row-".concat(O,"__"),ref:"item-rows",refInFor:!0},_)),p){var T={item:t,index:e,fields:r,toggleDetails:this.toggleDetailsFactory(h,t)};this.supportsSelectableRows&&(T.rowSelected=this.isRowSelected(e),T.selectRow=function(){return n.selectRow(e)},T.unselectRow=function(){return n.unselectRow(e)});var D=f(Ig,{props:{colspan:r.length},class:this.detailsTdClass},[this.normalizeSlot(H["ab"],T)]);i&&b.push(f("tr",{staticClass:"d-none",attrs:{"aria-hidden":"true",role:"presentation"},key:"__b-table-details-stripe__".concat(O)}));var S=Object(u["f"])(this.tbodyTrClass)?this.tbodyTrClass(t,H["ab"]):this.tbodyTrClass,Y=Object(u["f"])(this.tbodyTrAttr)?this.tbodyTrAttr(t,H["ab"]):this.tbodyTrAttr;b.push(f(Yg,{staticClass:"b-table-details",class:[S],props:{variant:t[ny]||null},attrs:pO(pO({},Y),{},{id:v,tabindex:"-1"}),key:"__b-table-details__".concat(O)},[D]))}else h&&(b.push(f()),i&&b.push(f()));return b}}});function MO(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function LO(t){for(var e=1;e0&&n&&n.length>0?Object(ue["f"])(e.children).filter((function(t){return Object(ue["a"])(n,t)})):[]},getTbodyTrIndex:function(t){if(!Object(A["s"])(t))return-1;var e="TR"===t.tagName?t:Object(A["e"])("tr",t,!0);return e?this.getTbodyTrs().indexOf(e):-1},emitTbodyRowEvent:function(t,e){if(t&&this.hasListener(t)&&e&&e.target){var n=this.getTbodyTrIndex(e.target);if(n>-1){var r=this.computedItems[n];this.$emit(t,r,n,e)}}},tbodyRowEvtStopped:function(t){return this.stopIfBusy&&this.stopIfBusy(t)},onTbodyRowKeydown:function(t){var e=t.target,n=t.keyCode;if(!this.tbodyRowEvtStopped(t)&&"TR"===e.tagName&&Object(A["q"])(e)&&0===e.tabIndex)if(Object(ue["a"])([te,se],n))Object(le["f"])(t),this.onTBodyRowClicked(t);else if(Object(ue["a"])([ce,Zt,ne,Qt],n)){var r=this.getTbodyTrIndex(e);if(r>-1){Object(le["f"])(t);var i=this.getTbodyTrs(),a=t.shiftKey;n===ne||a&&n===ce?Object(A["d"])(i[0]):n===Qt||a&&n===Zt?Object(A["d"])(i[i.length-1]):n===ce&&r>0?Object(A["d"])(i[r-1]):n===Zt&&rt.length)&&(e=t.length);for(var n=0,r=new Array(e);n0&&void 0!==arguments[0]&&arguments[0],n=this.computedFields,r=this.isSortable,i=this.isSelectable,a=this.headVariant,o=this.footVariant,s=this.headRowVariant,l=this.footRowVariant,d=this.$createElement;if(this.isStackedAlways||0===n.length)return d();var f=r||this.hasListener(C["u"]),h=i?this.selectAllRows:ki,p=i?this.clearSelected:ki,m=function(n,i){var a=n.label,o=n.labelHtml,s=n.variant,u=n.stickyColumn,l=n.key,m=null;n.label.trim()||n.headerTitle||(m=Object(mt["f"])(n.key));var b={};f&&(b.click=function(r){t.headClicked(r,n,e)},b.keydown=function(r){var i=r.keyCode;i!==te&&i!==se||t.headClicked(r,n,e)});var v=r?t.sortTheadThAttrs(l,n,e):{},_=r?t.sortTheadThClasses(l,n,e):null,g=r?t.sortTheadThLabel(l,n,e):null,y={class:[t.fieldClasses(n),_],props:{variant:s,stickyColumn:u},style:n.thStyle||{},attrs:qO(qO({tabindex:f&&n.sortable?"0":null,abbr:n.headerAbbr||null,title:n.headerTitle||null,"aria-colindex":i+1,"aria-label":m},t.getThValues(null,l,n.thAttr,e?"foot":"head",{})),v),on:b,key:l},O=[XO(l),XO(l.toLowerCase()),XO()];e&&(O=[ZO(l),ZO(l.toLowerCase()),ZO()].concat(NO(O)));var j={label:a,column:l,field:n,isFoot:e,selectAllRows:h,clearSelected:p},w=t.normalizeSlot(O,j)||d("div",{domProps:Je(o,a)}),M=g?d("span",{staticClass:"sr-only"}," (".concat(g,")")):null;return d(fO,y,[w,M].filter(c["a"]))},b=n.map(m).filter(c["a"]),v=[];if(e)v.push(d(Yg,{class:this.tfootTrClass,props:{variant:Object(u["p"])(l)?s:l}},b));else{var _={columns:n.length,fields:n,selectAllRows:h,clearSelected:p};v.push(this.normalizeSlot(H["hb"],_)||d()),v.push(d(Yg,{class:this.theadTrClass,props:{variant:s}},b))}return d(e?EO:RO,{class:(e?this.tfootClass:this.theadClass)||null,props:e?{footVariant:o||a||null}:{headVariant:a||null},key:e?"bv-tfoot":"bv-thead"},v)}}}),ej={},nj=r["default"].extend({methods:{renderTopRow:function(){var t=this.computedFields,e=this.stacked,n=this.tbodyTrClass,r=this.tbodyTrAttr,i=this.$createElement;return this.hasNormalizedSlot(H["kb"])&&!0!==e&&""!==e?i(Yg,{staticClass:"b-table-top-row",class:[Object(u["f"])(n)?n(null,"row-top"):n],attrs:Object(u["f"])(r)?r(null,"row-top"):r,key:"b-top-row"},[this.normalizeSlot(H["kb"],{columns:t.length,fields:t})]):i()}}});function rj(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function ij(t){for(var e=1;e0&&void 0!==arguments[0])||arguments[0];if(this.$_observer&&this.$_observer.disconnect(),this.$_observer=null,e){var n=function(){t.$nextTick((function(){Object(A["D"])((function(){t.updateTabs()}))}))};this.$_observer=xi(this.$refs.content,n,{childList:!0,subtree:!1,attributes:!0,attributeFilter:["id"]})}},getTabs:function(){var t=this.registeredTabs.filter((function(t){return 0===t.$children.filter((function(t){return t._isTab})).length})),e=[];if(i["i"]&&t.length>0){var n=t.map((function(t){return"#".concat(t.safeId())})).join(", ");e=Object(A["F"])(n,this.$el).map((function(t){return t.id})).filter(c["a"])}return Ry(t,(function(t,n){return e.indexOf(t.safeId())-e.indexOf(n.safeId())}))},updateTabs:function(){var t=this.getTabs(),e=t.indexOf(t.slice().reverse().find((function(t){return t.localActive&&!t.disabled})));if(e<0){var n=this.currentTab;n>=t.length?e=t.indexOf(t.slice().reverse().find(Tj)):t[n]&&!t[n].disabled&&(e=n)}e<0&&(e=t.indexOf(t.find(Tj))),t.forEach((function(t,n){t.localActive=n===e})),this.tabs=t,this.currentTab=e},getButtonForTab:function(t){return(this.$refs.buttons||[]).find((function(e){return e.tab===t}))},updateButton:function(t){var e=this.getButtonForTab(t);e&&e.$forceUpdate&&e.$forceUpdate()},activateTab:function(t){var e=this.currentTab,n=this.tabs,r=!1;if(t){var i=n.indexOf(t);if(i!==e&&i>-1&&!t.disabled){var a=new po["a"](C["a"],{cancelable:!0,vueTarget:this,componentId:this.safeId()});this.$emit(a.type,i,e,a),a.defaultPrevented||(this.currentTab=i,r=!0)}}return r||this[Lj]===e||this.$emit(kj,e),r},deactivateTab:function(t){return!!t&&this.activateTab(this.tabs.filter((function(e){return e!==t})).find(Tj))},focusButton:function(t){var e=this;this.$nextTick((function(){Object(A["d"])(e.getButtonForTab(t))}))},emitTabClick:function(t,e){Object(u["d"])(e)&&t&&t.$emit&&!t.disabled&&t.$emit(C["f"],e)},clickTab:function(t,e){this.activateTab(t),this.emitTabClick(t,e)},firstTab:function(t){var e=this.tabs.find(Tj);this.activateTab(e)&&t&&(this.focusButton(e),this.emitTabClick(e,t))},previousTab:function(t){var e=Object(nt["d"])(this.currentTab,0),n=this.tabs.slice(0,e).reverse().find(Tj);this.activateTab(n)&&t&&(this.focusButton(n),this.emitTabClick(n,t))},nextTab:function(t){var e=Object(nt["d"])(this.currentTab,-1),n=this.tabs.slice(e+1).find(Tj);this.activateTab(n)&&t&&(this.focusButton(n),this.emitTabClick(n,t))},lastTab:function(t){var e=this.tabs.slice().reverse().find(Tj);this.activateTab(e)&&t&&(this.focusButton(e),this.emitTabClick(e,t))}},render:function(t){var e=this,n=this.align,r=this.card,i=this.end,a=this.fill,o=this.firstTab,s=this.justified,c=this.lastTab,u=this.nextTab,l=this.noKeyNav,d=this.noNavStyle,f=this.pills,h=this.previousTab,p=this.small,m=this.tabs,b=this.vertical,v=m.find((function(t){return t.localActive&&!t.disabled})),_=m.find((function(t){return!t.disabled})),g=m.map((function(n,r){var i,a=n.safeId,s=null;return l||(s=-1,(n===v||!v&&n===_)&&(s=null)),t(Dj,{props:{controls:a?a():null,id:n.controlledBy||(a?a("_BV_tab_button_"):null),noKeyNav:l,posInSet:r+1,setSize:m.length,tab:n,tabIndex:s},on:(i={},gj(i,C["f"],(function(t){e.clickTab(n,t)})),gj(i,C["r"],o),gj(i,C["H"],h),gj(i,C["C"],u),gj(i,C["z"],c),i),key:n[x["a"]]||r,ref:"buttons",refInFor:!0})})),y=t(gm,{class:this.localNavClass,attrs:{role:"tablist",id:this.safeId("_BV_tab_controls_")},props:{fill:a,justified:s,align:n,tabs:!d&&!f,pills:!d&&f,vertical:b,small:p,cardHeader:r&&!b},ref:"nav"},[this.normalizeSlot(H["fb"])||t(),g,this.normalizeSlot(H["eb"])||t()]);y=t("div",{class:[{"card-header":r&&!b&&!i,"card-footer":r&&!b&&i,"col-auto":b},this.navWrapperClass],key:"bv-tabs-nav"},[y]);var O=this.normalizeSlot()||[],j=t();0===O.length&&(j=t("div",{class:["tab-pane","active",{"card-body":r}],key:"bv-empty-tab"},this.normalizeSlot(H["n"])));var w=t("div",{staticClass:"tab-content",class:[{col:b},this.contentClass],attrs:{id:this.safeId("_BV_tab_container_")},key:"bv-content",ref:"content"},[O,j]);return t(this.tag,{staticClass:"tabs",class:{row:b,"no-gutters":b&&r},attrs:{id:this.safeId()}},[i?w:t(),y,i?t():w])}});function Pj(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function Cj(t){for(var e=1;et.length)&&(e=t.length);for(var n=0,r=new Array(e);n1&&void 0!==arguments[1]?arguments[1]:{};t&&!Object(h["d"])(tw)&&n(Uj(Uj({},iw(e)),{},{toastContent:t}),this._vm)}},{key:"show",value:function(t){t&&this._root.$emit(Object(le["d"])(P["pc"],C["T"]),t)}},{key:"hide",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;this._root.$emit(Object(le["d"])(P["pc"],C["w"]),t)}}]),t}();t.mixin({beforeCreate:function(){this[ew]=new r(this)}}),Object(f["g"])(t.prototype,tw)||Object(f["e"])(t.prototype,tw,{get:function(){return this&&this[ew]||Object(h["a"])('"'.concat(tw,'" must be accessed from a Vue instance "this" context.'),P["pc"]),this[ew]}})},ow=L({plugins:{plugin:aw}}),sw=n("0f65"),cw=L({components:{BToast:Rj["a"],BToaster:sw["a"]},plugins:{BVToastPlugin:ow}});function uw(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function lw(t){for(var e=1;e=n){var r=this.$targets[this.$targets.length-1];this.$activeTarget!==r&&this.activate(r)}else{if(this.$activeTarget&&t0)return this.$activeTarget=null,void this.clear();for(var i=this.$offsets.length;i--;){var a=this.$activeTarget!==this.$targets[i]&&t>=this.$offsets[i]&&(Object(u["o"])(this.$offsets[i+1])||t0&&this.$root&&this.$root.$emit(Xw,t,n)}},{key:"clear",value:function(){var t=this;Object(A["F"])("".concat(this.$selector,", ").concat(Uw),this.$el).filter((function(t){return Object(A["p"])(t,Vw)})).forEach((function(e){return t.setActiveState(e,!1)}))}},{key:"setActiveState",value:function(t,e){t&&(e?Object(A["b"])(t,Vw):Object(A["A"])(t,Vw))}}],[{key:"Name",get:function(){return Rw}},{key:"Default",get:function(){return tM}},{key:"DefaultType",get:function(){return eM}}]),t}(),oM="__BV_ScrollSpy__",sM=/^\d+$/,cM=/^(auto|position|offset)$/,uM=function(t){var e={};return t.arg&&(e.element="#".concat(t.arg)),Object(f["h"])(t.modifiers).forEach((function(t){sM.test(t)?e.offset=Object(F["c"])(t,0):cM.test(t)&&(e.method=t)})),Object(u["n"])(t.value)?e.element=t.value:Object(u["h"])(t.value)?e.offset=Object(nt["g"])(t.value):Object(u["j"])(t.value)&&Object(f["h"])(t.value).filter((function(t){return!!aM.DefaultType[t]})).forEach((function(n){e[n]=t.value[n]})),e},lM=function(t,e,n){if(i["i"]){var r=uM(e);t[oM]?t[oM].updateConfig(r,n.context.$root):t[oM]=new aM(t,r,n.context.$root)}},dM=function(t){t[oM]&&(t[oM].dispose(),t[oM]=null,delete t[oM])},fM={bind:function(t,e,n){lM(t,e,n)},inserted:function(t,e,n){lM(t,e,n)},update:function(t,e,n){e.value!==e.oldValue&&lM(t,e,n)},componentUpdated:function(t,e,n){e.value!==e.oldValue&&lM(t,e,n)},unbind:function(t){dM(t)}},hM=L({directives:{VBScrollspy:fM}}),pM=L({directives:{VBVisible:si}}),mM=L({plugins:{VBHoverPlugin:Cw,VBModalPlugin:Ew,VBPopoverPlugin:c_,VBScrollspyPlugin:hM,VBTogglePlugin:ro,VBTooltipPlugin:Yw,VBVisiblePlugin:pM}}),bM="BootstrapVue",vM=M({plugins:{componentsPlugin:Pw,directivesPlugin:mM}}),_M={install:vM,NAME:bM}},"5fb2":function(t,e,n){"use strict";var r=2147483647,i=36,a=1,o=26,s=38,c=700,u=72,l=128,d="-",f=/[^\0-\u007E]/,h=/[.\u3002\uFF0E\uFF61]/g,p="Overflow: input needs wider integers to process",m=i-a,b=Math.floor,v=String.fromCharCode,_=function(t){var e=[],n=0,r=t.length;while(n=55296&&i<=56319&&n>1,t+=b(t/e);t>m*o>>1;r+=i)t=b(t/m);return b(r+(m+1)*t/(t+s))},O=function(t){var e=[];t=_(t);var n,s,c=t.length,f=l,h=0,m=u;for(n=0;n=f&&sb((r-h)/M))throw RangeError(p);for(h+=(w-f)*M,f=w,n=0;nr)throw RangeError(p);if(s==f){for(var L=h,k=i;;k+=i){var T=k<=m?a:k>=m+o?o:k-m;if(L1?n-1:0),r=1;rd){var p,h=u(arguments[d++]),m=l?o(h).concat(l(h)):o(h),b=m.length,g=0;while(b>g)p=m[g++],i&&!f.call(h,p)||(n[p]=h[p])}return n}:d},6117:function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e=t.defineLocale("sv",{months:"januari_februari_mars_april_maj_juni_juli_augusti_september_oktober_november_december".split("_"),monthsShort:"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec".split("_"),weekdays:"söndag_måndag_tisdag_onsdag_torsdag_fredag_lördag".split("_"),weekdaysShort:"sön_mån_tis_ons_tor_fre_lör".split("_"),weekdaysMin:"sö_må_ti_on_to_fr_lö".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [kl.] HH:mm",LLLL:"dddd D MMMM YYYY [kl.] HH:mm",lll:"D MMM YYYY HH:mm",llll:"ddd D MMM YYYY HH:mm"},calendar:{sameDay:"[Idag] LT",nextDay:"[Imorgon] LT",lastDay:"[Igår] LT",nextWeek:"[På] dddd LT",lastWeek:"[I] dddd[s] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"för %s sedan",s:"några sekunder",ss:"%d sekunder",m:"en minut",mm:"%d minuter",h:"en timme",hh:"%d timmar",d:"en dag",dd:"%d dagar",M:"en månad",MM:"%d månader",y:"ett år",yy:"%d år"},dayOfMonthOrdinalParse:/\d{1,2}(\:e|\:a)/,ordinal:function(t){var e=t%10,n=1===~~(t%100/10)?":e":1===e||2===e?":a":":e";return t+n},week:{dow:1,doy:4}});return e}))},"602d":function(t,e,n){"use strict";n.d(e,"a",(function(){return a}));var r=n("a026"),i=n("0056"),a=r["default"].extend({methods:{listenOnRoot:function(t,e){var n=this;this.$root.$on(t,e),this.$on(i["eb"],(function(){n.$root.$off(t,e)}))},listenOnRootOnce:function(t,e){var n=this;this.$root.$once(t,e),this.$on(i["eb"],(function(){n.$root.$off(t,e)}))},emitOnRoot:function(t){for(var e,n=arguments.length,r=new Array(n>1?n-1:0),i=1;il){var h,p=u(arguments[l++]),m=d?a(p).concat(d(p)):a(p),b=m.length,v=0;while(b>v)h=m[v++],r&&!f.call(p,h)||(n[h]=p[h])}return n}:l},6117:function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t=e.defineLocale("ug-cn",{months:"يانۋار_فېۋرال_مارت_ئاپرېل_ماي_ئىيۇن_ئىيۇل_ئاۋغۇست_سېنتەبىر_ئۆكتەبىر_نويابىر_دېكابىر".split("_"),monthsShort:"يانۋار_فېۋرال_مارت_ئاپرېل_ماي_ئىيۇن_ئىيۇل_ئاۋغۇست_سېنتەبىر_ئۆكتەبىر_نويابىر_دېكابىر".split("_"),weekdays:"يەكشەنبە_دۈشەنبە_سەيشەنبە_چارشەنبە_پەيشەنبە_جۈمە_شەنبە".split("_"),weekdaysShort:"يە_دۈ_سە_چا_پە_جۈ_شە".split("_"),weekdaysMin:"يە_دۈ_سە_چا_پە_جۈ_شە".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"YYYY-يىلىM-ئاينىڭD-كۈنى",LLL:"YYYY-يىلىM-ئاينىڭD-كۈنى، HH:mm",LLLL:"dddd، YYYY-يىلىM-ئاينىڭD-كۈنى، HH:mm"},meridiemParse:/يېرىم كېچە|سەھەر|چۈشتىن بۇرۇن|چۈش|چۈشتىن كېيىن|كەچ/,meridiemHour:function(e,t){return 12===e&&(e=0),"يېرىم كېچە"===t||"سەھەر"===t||"چۈشتىن بۇرۇن"===t?e:"چۈشتىن كېيىن"===t||"كەچ"===t?e+12:e>=11?e:e+12},meridiem:function(e,t,n){var i=100*e+t;return i<600?"يېرىم كېچە":i<900?"سەھەر":i<1130?"چۈشتىن بۇرۇن":i<1230?"چۈش":i<1800?"چۈشتىن كېيىن":"كەچ"},calendar:{sameDay:"[بۈگۈن سائەت] LT",nextDay:"[ئەتە سائەت] LT",nextWeek:"[كېلەركى] dddd [سائەت] LT",lastDay:"[تۆنۈگۈن] LT",lastWeek:"[ئالدىنقى] dddd [سائەت] LT",sameElse:"L"},relativeTime:{future:"%s كېيىن",past:"%s بۇرۇن",s:"نەچچە سېكونت",ss:"%d سېكونت",m:"بىر مىنۇت",mm:"%d مىنۇت",h:"بىر سائەت",hh:"%d سائەت",d:"بىر كۈن",dd:"%d كۈن",M:"بىر ئاي",MM:"%d ئاي",y:"بىر يىل",yy:"%d يىل"},dayOfMonthOrdinalParse:/\d{1,2}(-كۈنى|-ئاي|-ھەپتە)/,ordinal:function(e,t){switch(t){case"d":case"D":case"DDD":return e+"-كۈنى";case"w":case"W":return e+"-ھەپتە";default:return e}},preparse:function(e){return e.replace(/،/g,",")},postformat:function(e){return e.replace(/,/g,"،")},week:{dow:1,doy:7}});return t}))},"62e4":function(e,t){e.exports=function(e){return e.webpackPolyfill||(e.deprecate=function(){},e.paths=[],e.children||(e.children=[]),Object.defineProperty(e,"loaded",{enumerable:!0,get:function(){return e.l}}),Object.defineProperty(e,"id",{enumerable:!0,get:function(){return e.i}}),e.webpackPolyfill=1),e}},6403:function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e=t.defineLocale("ug-cn",{months:"يانۋار_فېۋرال_مارت_ئاپرېل_ماي_ئىيۇن_ئىيۇل_ئاۋغۇست_سېنتەبىر_ئۆكتەبىر_نويابىر_دېكابىر".split("_"),monthsShort:"يانۋار_فېۋرال_مارت_ئاپرېل_ماي_ئىيۇن_ئىيۇل_ئاۋغۇست_سېنتەبىر_ئۆكتەبىر_نويابىر_دېكابىر".split("_"),weekdays:"يەكشەنبە_دۈشەنبە_سەيشەنبە_چارشەنبە_پەيشەنبە_جۈمە_شەنبە".split("_"),weekdaysShort:"يە_دۈ_سە_چا_پە_جۈ_شە".split("_"),weekdaysMin:"يە_دۈ_سە_چا_پە_جۈ_شە".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"YYYY-يىلىM-ئاينىڭD-كۈنى",LLL:"YYYY-يىلىM-ئاينىڭD-كۈنى، HH:mm",LLLL:"dddd، YYYY-يىلىM-ئاينىڭD-كۈنى، HH:mm"},meridiemParse:/يېرىم كېچە|سەھەر|چۈشتىن بۇرۇن|چۈش|چۈشتىن كېيىن|كەچ/,meridiemHour:function(t,e){return 12===t&&(t=0),"يېرىم كېچە"===e||"سەھەر"===e||"چۈشتىن بۇرۇن"===e?t:"چۈشتىن كېيىن"===e||"كەچ"===e?t+12:t>=11?t:t+12},meridiem:function(t,e,n){var r=100*t+e;return r<600?"يېرىم كېچە":r<900?"سەھەر":r<1130?"چۈشتىن بۇرۇن":r<1230?"چۈش":r<1800?"چۈشتىن كېيىن":"كەچ"},calendar:{sameDay:"[بۈگۈن سائەت] LT",nextDay:"[ئەتە سائەت] LT",nextWeek:"[كېلەركى] dddd [سائەت] LT",lastDay:"[تۆنۈگۈن] LT",lastWeek:"[ئالدىنقى] dddd [سائەت] LT",sameElse:"L"},relativeTime:{future:"%s كېيىن",past:"%s بۇرۇن",s:"نەچچە سېكونت",ss:"%d سېكونت",m:"بىر مىنۇت",mm:"%d مىنۇت",h:"بىر سائەت",hh:"%d سائەت",d:"بىر كۈن",dd:"%d كۈن",M:"بىر ئاي",MM:"%d ئاي",y:"بىر يىل",yy:"%d يىل"},dayOfMonthOrdinalParse:/\d{1,2}(-كۈنى|-ئاي|-ھەپتە)/,ordinal:function(t,e){switch(e){case"d":case"D":case"DDD":return t+"-كۈنى";case"w":case"W":return t+"-ھەپتە";default:return t}},preparse:function(t){return t.replace(/،/g,",")},postformat:function(t){return t.replace(/,/g,"،")},week:{dow:1,doy:7}});return e}))},"62e4":function(t,e){t.exports=function(t){return t.webpackPolyfill||(t.deprecate=function(){},t.paths=[],t.children||(t.children=[]),Object.defineProperty(t,"loaded",{enumerable:!0,get:function(){return t.l}}),Object.defineProperty(t,"id",{enumerable:!0,get:function(){return t.i}}),t.webpackPolyfill=1),t}},6403:function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t=e.defineLocale("ms-my",{months:"Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember".split("_"),monthsShort:"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis".split("_"),weekdays:"Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu".split("_"),weekdaysShort:"Ahd_Isn_Sel_Rab_Kha_Jum_Sab".split("_"),weekdaysMin:"Ah_Is_Sl_Rb_Km_Jm_Sb".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] HH.mm",LLLL:"dddd, D MMMM YYYY [pukul] HH.mm"},meridiemParse:/pagi|tengahari|petang|malam/,meridiemHour:function(e,t){return 12===e&&(e=0),"pagi"===t?e:"tengahari"===t?e>=11?e:e+12:"petang"===t||"malam"===t?e+12:void 0},meridiem:function(e,t,n){return e<11?"pagi":e<15?"tengahari":e<19?"petang":"malam"},calendar:{sameDay:"[Hari ini pukul] LT",nextDay:"[Esok pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kelmarin pukul] LT",lastWeek:"dddd [lepas pukul] LT",sameElse:"L"},relativeTime:{future:"dalam %s",past:"%s yang lepas",s:"beberapa saat",ss:"%d saat",m:"seminit",mm:"%d minit",h:"sejam",hh:"%d jam",d:"sehari",dd:"%d hari",M:"sebulan",MM:"%d bulan",y:"setahun",yy:"%d tahun"},week:{dow:1,doy:7}});return t}))},6547:function(e,t,n){var i=n("a691"),r=n("1d80"),o=function(e){return function(t,n){var o,a,s=String(r(t)),c=i(n),u=s.length;return c<0||c>=u?e?"":void 0:(o=s.charCodeAt(c),o<55296||o>56319||c+1===u||(a=s.charCodeAt(c+1))<56320||a>57343?e?s.charAt(c):o:e?s.slice(c,c+2):a-56320+(o-55296<<10)+65536)}};e.exports={codeAt:o(!1),charAt:o(!0)}},"65db":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e=t.defineLocale("ms-my",{months:"Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember".split("_"),monthsShort:"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis".split("_"),weekdays:"Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu".split("_"),weekdaysShort:"Ahd_Isn_Sel_Rab_Kha_Jum_Sab".split("_"),weekdaysMin:"Ah_Is_Sl_Rb_Km_Jm_Sb".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] HH.mm",LLLL:"dddd, D MMMM YYYY [pukul] HH.mm"},meridiemParse:/pagi|tengahari|petang|malam/,meridiemHour:function(t,e){return 12===t&&(t=0),"pagi"===e?t:"tengahari"===e?t>=11?t:t+12:"petang"===e||"malam"===e?t+12:void 0},meridiem:function(t,e,n){return t<11?"pagi":t<15?"tengahari":t<19?"petang":"malam"},calendar:{sameDay:"[Hari ini pukul] LT",nextDay:"[Esok pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kelmarin pukul] LT",lastWeek:"dddd [lepas pukul] LT",sameElse:"L"},relativeTime:{future:"dalam %s",past:"%s yang lepas",s:"beberapa saat",ss:"%d saat",m:"seminit",mm:"%d minit",h:"sejam",hh:"%d jam",d:"sehari",dd:"%d hari",M:"sebulan",MM:"%d bulan",y:"setahun",yy:"%d tahun"},week:{dow:1,doy:7}});return e}))},6547:function(t,e,n){var r=n("a691"),i=n("1d80"),a=function(t){return function(e,n){var a,o,s=String(i(e)),c=r(n),u=s.length;return c<0||c>=u?t?"":void 0:(a=s.charCodeAt(c),a<55296||a>56319||c+1===u||(o=s.charCodeAt(c+1))<56320||o>57343?t?s.charAt(c):a:t?s.slice(c,c+2):o-56320+(a-55296<<10)+65536)}};t.exports={codeAt:a(!1),charAt:a(!0)}},"65db":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t=e.defineLocale("eo",{months:"januaro_februaro_marto_aprilo_majo_junio_julio_aŭgusto_septembro_oktobro_novembro_decembro".split("_"),monthsShort:"jan_feb_mart_apr_maj_jun_jul_aŭg_sept_okt_nov_dec".split("_"),weekdays:"dimanĉo_lundo_mardo_merkredo_ĵaŭdo_vendredo_sabato".split("_"),weekdaysShort:"dim_lun_mard_merk_ĵaŭ_ven_sab".split("_"),weekdaysMin:"di_lu_ma_me_ĵa_ve_sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"[la] D[-an de] MMMM, YYYY",LLL:"[la] D[-an de] MMMM, YYYY HH:mm",LLLL:"dddd[n], [la] D[-an de] MMMM, YYYY HH:mm",llll:"ddd, [la] D[-an de] MMM, YYYY HH:mm"},meridiemParse:/[ap]\.t\.m/i,isPM:function(e){return"p"===e.charAt(0).toLowerCase()},meridiem:function(e,t,n){return e>11?n?"p.t.m.":"P.T.M.":n?"a.t.m.":"A.T.M."},calendar:{sameDay:"[Hodiaŭ je] LT",nextDay:"[Morgaŭ je] LT",nextWeek:"dddd[n je] LT",lastDay:"[Hieraŭ je] LT",lastWeek:"[pasintan] dddd[n je] LT",sameElse:"L"},relativeTime:{future:"post %s",past:"antaŭ %s",s:"kelkaj sekundoj",ss:"%d sekundoj",m:"unu minuto",mm:"%d minutoj",h:"unu horo",hh:"%d horoj",d:"unu tago",dd:"%d tagoj",M:"unu monato",MM:"%d monatoj",y:"unu jaro",yy:"%d jaroj"},dayOfMonthOrdinalParse:/\d{1,2}a/,ordinal:"%da",week:{dow:1,doy:7}});return t}))},"65f0":function(e,t,n){var i=n("861d"),r=n("e8b5"),o=n("b622"),a=o("species");e.exports=function(e,t){var n;return r(e)&&(n=e.constructor,"function"!=typeof n||n!==Array&&!r(n.prototype)?i(n)&&(n=n[a],null===n&&(n=void 0)):n=void 0),new(void 0===n?Array:n)(0===t?0:t)}},6784:function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e=t.defineLocale("eo",{months:"januaro_februaro_marto_aprilo_majo_junio_julio_aŭgusto_septembro_oktobro_novembro_decembro".split("_"),monthsShort:"jan_feb_mart_apr_maj_jun_jul_aŭg_sept_okt_nov_dec".split("_"),weekdays:"dimanĉo_lundo_mardo_merkredo_ĵaŭdo_vendredo_sabato".split("_"),weekdaysShort:"dim_lun_mard_merk_ĵaŭ_ven_sab".split("_"),weekdaysMin:"di_lu_ma_me_ĵa_ve_sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"[la] D[-an de] MMMM, YYYY",LLL:"[la] D[-an de] MMMM, YYYY HH:mm",LLLL:"dddd[n], [la] D[-an de] MMMM, YYYY HH:mm",llll:"ddd, [la] D[-an de] MMM, YYYY HH:mm"},meridiemParse:/[ap]\.t\.m/i,isPM:function(t){return"p"===t.charAt(0).toLowerCase()},meridiem:function(t,e,n){return t>11?n?"p.t.m.":"P.T.M.":n?"a.t.m.":"A.T.M."},calendar:{sameDay:"[Hodiaŭ je] LT",nextDay:"[Morgaŭ je] LT",nextWeek:"dddd[n je] LT",lastDay:"[Hieraŭ je] LT",lastWeek:"[pasintan] dddd[n je] LT",sameElse:"L"},relativeTime:{future:"post %s",past:"antaŭ %s",s:"kelkaj sekundoj",ss:"%d sekundoj",m:"unu minuto",mm:"%d minutoj",h:"unu horo",hh:"%d horoj",d:"unu tago",dd:"%d tagoj",M:"unu monato",MM:"%d monatoj",y:"unu jaro",yy:"%d jaroj"},dayOfMonthOrdinalParse:/\d{1,2}a/,ordinal:"%da",week:{dow:1,doy:7}});return e}))},"65f0":function(t,e,n){var r=n("861d"),i=n("e8b5"),a=n("b622"),o=a("species");t.exports=function(t,e){var n;return i(t)&&(n=t.constructor,"function"!=typeof n||n!==Array&&!i(n.prototype)?r(n)&&(n=n[o],null===n&&(n=void 0)):n=void 0),new(void 0===n?Array:n)(0===e?0:e)}},6784:function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t=["جنوري","فيبروري","مارچ","اپريل","مئي","جون","جولاءِ","آگسٽ","سيپٽمبر","آڪٽوبر","نومبر","ڊسمبر"],n=["آچر","سومر","اڱارو","اربع","خميس","جمع","ڇنڇر"],i=e.defineLocale("sd",{months:t,monthsShort:t,weekdays:n,weekdaysShort:n,weekdaysMin:n,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd، D MMMM YYYY HH:mm"},meridiemParse:/صبح|شام/,isPM:function(e){return"شام"===e},meridiem:function(e,t,n){return e<12?"صبح":"شام"},calendar:{sameDay:"[اڄ] LT",nextDay:"[سڀاڻي] LT",nextWeek:"dddd [اڳين هفتي تي] LT",lastDay:"[ڪالهه] LT",lastWeek:"[گزريل هفتي] dddd [تي] LT",sameElse:"L"},relativeTime:{future:"%s پوء",past:"%s اڳ",s:"چند سيڪنڊ",ss:"%d سيڪنڊ",m:"هڪ منٽ",mm:"%d منٽ",h:"هڪ ڪلاڪ",hh:"%d ڪلاڪ",d:"هڪ ڏينهن",dd:"%d ڏينهن",M:"هڪ مهينو",MM:"%d مهينا",y:"هڪ سال",yy:"%d سال"},preparse:function(e){return e.replace(/،/g,",")},postformat:function(e){return e.replace(/,/g,"،")},week:{dow:1,doy:4}});return i}))},"686b":function(e,t,n){"use strict";n.d(t,"a",(function(){return o})),n.d(t,"d",(function(){return a})),n.d(t,"c",(function(){return s})),n.d(t,"b",(function(){return c}));var i=n("e863"),r=n("938d"),o=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;Object(r["a"])()||console.warn("[BootstrapVue warn]: ".concat(t?"".concat(t," - "):"").concat(e))},a=function(e){return!i["i"]&&(o("".concat(e,": Can not be called during SSR.")),!0)},s=function(e){return!i["f"]&&(o("".concat(e,": Requires Promise support.")),!0)},c=function(e){return!i["c"]&&(o("".concat(e,": Requires MutationObserver support.")),!0)}},6887:function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e=["جنوري","فيبروري","مارچ","اپريل","مئي","جون","جولاءِ","آگسٽ","سيپٽمبر","آڪٽوبر","نومبر","ڊسمبر"],n=["آچر","سومر","اڱارو","اربع","خميس","جمع","ڇنڇر"],r=t.defineLocale("sd",{months:e,monthsShort:e,weekdays:n,weekdaysShort:n,weekdaysMin:n,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd، D MMMM YYYY HH:mm"},meridiemParse:/صبح|شام/,isPM:function(t){return"شام"===t},meridiem:function(t,e,n){return t<12?"صبح":"شام"},calendar:{sameDay:"[اڄ] LT",nextDay:"[سڀاڻي] LT",nextWeek:"dddd [اڳين هفتي تي] LT",lastDay:"[ڪالهه] LT",lastWeek:"[گزريل هفتي] dddd [تي] LT",sameElse:"L"},relativeTime:{future:"%s پوء",past:"%s اڳ",s:"چند سيڪنڊ",ss:"%d سيڪنڊ",m:"هڪ منٽ",mm:"%d منٽ",h:"هڪ ڪلاڪ",hh:"%d ڪلاڪ",d:"هڪ ڏينهن",dd:"%d ڏينهن",M:"هڪ مهينو",MM:"%d مهينا",y:"هڪ سال",yy:"%d سال"},preparse:function(t){return t.replace(/،/g,",")},postformat:function(t){return t.replace(/,/g,"،")},week:{dow:1,doy:4}});return r}))},"686b":function(t,e,n){"use strict";n.d(e,"a",(function(){return a})),n.d(e,"d",(function(){return o})),n.d(e,"c",(function(){return s})),n.d(e,"b",(function(){return c}));var r=n("e863"),i=n("938d"),a=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;Object(i["a"])()||console.warn("[BootstrapVue warn]: ".concat(e?"".concat(e," - "):"").concat(t))},o=function(t){return!r["i"]&&(a("".concat(t,": Can not be called during SSR.")),!0)},s=function(t){return!r["f"]&&(a("".concat(t,": Requires Promise support.")),!0)},c=function(t){return!r["c"]&&(a("".concat(t,": Requires MutationObserver support.")),!0)}},6887:function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -function t(e,t,n){var i={mm:"munutenn",MM:"miz",dd:"devezh"};return e+" "+r(i[n],e)}function n(e){switch(i(e)){case 1:case 3:case 4:case 5:case 9:return e+" bloaz";default:return e+" vloaz"}}function i(e){return e>9?i(e%10):e}function r(e,t){return 2===t?o(e):e}function o(e){var t={m:"v",b:"v",d:"z"};return void 0===t[e.charAt(0)]?e:t[e.charAt(0)]+e.substring(1)}var a=[/^gen/i,/^c[ʼ\']hwe/i,/^meu/i,/^ebr/i,/^mae/i,/^(mez|eve)/i,/^gou/i,/^eos/i,/^gwe/i,/^her/i,/^du/i,/^ker/i],s=/^(genver|c[ʼ\']hwevrer|meurzh|ebrel|mae|mezheven|gouere|eost|gwengolo|here|du|kerzu|gen|c[ʼ\']hwe|meu|ebr|mae|eve|gou|eos|gwe|her|du|ker)/i,c=/^(genver|c[ʼ\']hwevrer|meurzh|ebrel|mae|mezheven|gouere|eost|gwengolo|here|du|kerzu)/i,u=/^(gen|c[ʼ\']hwe|meu|ebr|mae|eve|gou|eos|gwe|her|du|ker)/i,d=[/^sul/i,/^lun/i,/^meurzh/i,/^merc[ʼ\']her/i,/^yaou/i,/^gwener/i,/^sadorn/i],l=[/^Sul/i,/^Lun/i,/^Meu/i,/^Mer/i,/^Yao/i,/^Gwe/i,/^Sad/i],f=[/^Su/i,/^Lu/i,/^Me([^r]|$)/i,/^Mer/i,/^Ya/i,/^Gw/i,/^Sa/i],p=e.defineLocale("br",{months:"Genver_Cʼhwevrer_Meurzh_Ebrel_Mae_Mezheven_Gouere_Eost_Gwengolo_Here_Du_Kerzu".split("_"),monthsShort:"Gen_Cʼhwe_Meu_Ebr_Mae_Eve_Gou_Eos_Gwe_Her_Du_Ker".split("_"),weekdays:"Sul_Lun_Meurzh_Mercʼher_Yaou_Gwener_Sadorn".split("_"),weekdaysShort:"Sul_Lun_Meu_Mer_Yao_Gwe_Sad".split("_"),weekdaysMin:"Su_Lu_Me_Mer_Ya_Gw_Sa".split("_"),weekdaysParse:f,fullWeekdaysParse:d,shortWeekdaysParse:l,minWeekdaysParse:f,monthsRegex:s,monthsShortRegex:s,monthsStrictRegex:c,monthsShortStrictRegex:u,monthsParse:a,longMonthsParse:a,shortMonthsParse:a,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [a viz] MMMM YYYY",LLL:"D [a viz] MMMM YYYY HH:mm",LLLL:"dddd, D [a viz] MMMM YYYY HH:mm"},calendar:{sameDay:"[Hiziv da] LT",nextDay:"[Warcʼhoazh da] LT",nextWeek:"dddd [da] LT",lastDay:"[Decʼh da] LT",lastWeek:"dddd [paset da] LT",sameElse:"L"},relativeTime:{future:"a-benn %s",past:"%s ʼzo",s:"un nebeud segondennoù",ss:"%d eilenn",m:"ur vunutenn",mm:t,h:"un eur",hh:"%d eur",d:"un devezh",dd:t,M:"ur miz",MM:t,y:"ur bloaz",yy:n},dayOfMonthOrdinalParse:/\d{1,2}(añ|vet)/,ordinal:function(e){var t=1===e?"añ":"vet";return e+t},week:{dow:1,doy:4},meridiemParse:/a.m.|g.m./,isPM:function(e){return"g.m."===e},meridiem:function(e,t,n){return e<12?"a.m.":"g.m."}});return p}))},"688b":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +function e(t,e,n){var r={mm:"munutenn",MM:"miz",dd:"devezh"};return t+" "+i(r[n],t)}function n(t){switch(r(t)){case 1:case 3:case 4:case 5:case 9:return t+" bloaz";default:return t+" vloaz"}}function r(t){return t>9?r(t%10):t}function i(t,e){return 2===e?a(t):t}function a(t){var e={m:"v",b:"v",d:"z"};return void 0===e[t.charAt(0)]?t:e[t.charAt(0)]+t.substring(1)}var o=[/^gen/i,/^c[ʼ\']hwe/i,/^meu/i,/^ebr/i,/^mae/i,/^(mez|eve)/i,/^gou/i,/^eos/i,/^gwe/i,/^her/i,/^du/i,/^ker/i],s=/^(genver|c[ʼ\']hwevrer|meurzh|ebrel|mae|mezheven|gouere|eost|gwengolo|here|du|kerzu|gen|c[ʼ\']hwe|meu|ebr|mae|eve|gou|eos|gwe|her|du|ker)/i,c=/^(genver|c[ʼ\']hwevrer|meurzh|ebrel|mae|mezheven|gouere|eost|gwengolo|here|du|kerzu)/i,u=/^(gen|c[ʼ\']hwe|meu|ebr|mae|eve|gou|eos|gwe|her|du|ker)/i,l=[/^sul/i,/^lun/i,/^meurzh/i,/^merc[ʼ\']her/i,/^yaou/i,/^gwener/i,/^sadorn/i],d=[/^Sul/i,/^Lun/i,/^Meu/i,/^Mer/i,/^Yao/i,/^Gwe/i,/^Sad/i],f=[/^Su/i,/^Lu/i,/^Me([^r]|$)/i,/^Mer/i,/^Ya/i,/^Gw/i,/^Sa/i],h=t.defineLocale("br",{months:"Genver_Cʼhwevrer_Meurzh_Ebrel_Mae_Mezheven_Gouere_Eost_Gwengolo_Here_Du_Kerzu".split("_"),monthsShort:"Gen_Cʼhwe_Meu_Ebr_Mae_Eve_Gou_Eos_Gwe_Her_Du_Ker".split("_"),weekdays:"Sul_Lun_Meurzh_Mercʼher_Yaou_Gwener_Sadorn".split("_"),weekdaysShort:"Sul_Lun_Meu_Mer_Yao_Gwe_Sad".split("_"),weekdaysMin:"Su_Lu_Me_Mer_Ya_Gw_Sa".split("_"),weekdaysParse:f,fullWeekdaysParse:l,shortWeekdaysParse:d,minWeekdaysParse:f,monthsRegex:s,monthsShortRegex:s,monthsStrictRegex:c,monthsShortStrictRegex:u,monthsParse:o,longMonthsParse:o,shortMonthsParse:o,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [a viz] MMMM YYYY",LLL:"D [a viz] MMMM YYYY HH:mm",LLLL:"dddd, D [a viz] MMMM YYYY HH:mm"},calendar:{sameDay:"[Hiziv da] LT",nextDay:"[Warcʼhoazh da] LT",nextWeek:"dddd [da] LT",lastDay:"[Decʼh da] LT",lastWeek:"dddd [paset da] LT",sameElse:"L"},relativeTime:{future:"a-benn %s",past:"%s ʼzo",s:"un nebeud segondennoù",ss:"%d eilenn",m:"ur vunutenn",mm:e,h:"un eur",hh:"%d eur",d:"un devezh",dd:e,M:"ur miz",MM:e,y:"ur bloaz",yy:n},dayOfMonthOrdinalParse:/\d{1,2}(añ|vet)/,ordinal:function(t){var e=1===t?"añ":"vet";return t+e},week:{dow:1,doy:4},meridiemParse:/a.m.|g.m./,isPM:function(t){return"g.m."===t},meridiem:function(t,e,n){return t<12?"a.m.":"g.m."}});return h}))},"688b":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t=e.defineLocale("mi",{months:"Kohi-tāte_Hui-tanguru_Poutū-te-rangi_Paenga-whāwhā_Haratua_Pipiri_Hōngoingoi_Here-turi-kōkā_Mahuru_Whiringa-ā-nuku_Whiringa-ā-rangi_Hakihea".split("_"),monthsShort:"Kohi_Hui_Pou_Pae_Hara_Pipi_Hōngoi_Here_Mahu_Whi-nu_Whi-ra_Haki".split("_"),monthsRegex:/(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i,monthsStrictRegex:/(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i,monthsShortRegex:/(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i,monthsShortStrictRegex:/(?:['a-z\u0101\u014D\u016B]+\-?){1,2}/i,weekdays:"Rātapu_Mane_Tūrei_Wenerei_Tāite_Paraire_Hātarei".split("_"),weekdaysShort:"Ta_Ma_Tū_We_Tāi_Pa_Hā".split("_"),weekdaysMin:"Ta_Ma_Tū_We_Tāi_Pa_Hā".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [i] HH:mm",LLLL:"dddd, D MMMM YYYY [i] HH:mm"},calendar:{sameDay:"[i teie mahana, i] LT",nextDay:"[apopo i] LT",nextWeek:"dddd [i] LT",lastDay:"[inanahi i] LT",lastWeek:"dddd [whakamutunga i] LT",sameElse:"L"},relativeTime:{future:"i roto i %s",past:"%s i mua",s:"te hēkona ruarua",ss:"%d hēkona",m:"he meneti",mm:"%d meneti",h:"te haora",hh:"%d haora",d:"he ra",dd:"%d ra",M:"he marama",MM:"%d marama",y:"he tau",yy:"%d tau"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}});return t}))},6909:function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e=t.defineLocale("mi",{months:"Kohi-tāte_Hui-tanguru_Poutū-te-rangi_Paenga-whāwhā_Haratua_Pipiri_Hōngoingoi_Here-turi-kōkā_Mahuru_Whiringa-ā-nuku_Whiringa-ā-rangi_Hakihea".split("_"),monthsShort:"Kohi_Hui_Pou_Pae_Hara_Pipi_Hōngoi_Here_Mahu_Whi-nu_Whi-ra_Haki".split("_"),monthsRegex:/(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i,monthsStrictRegex:/(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i,monthsShortRegex:/(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i,monthsShortStrictRegex:/(?:['a-z\u0101\u014D\u016B]+\-?){1,2}/i,weekdays:"Rātapu_Mane_Tūrei_Wenerei_Tāite_Paraire_Hātarei".split("_"),weekdaysShort:"Ta_Ma_Tū_We_Tāi_Pa_Hā".split("_"),weekdaysMin:"Ta_Ma_Tū_We_Tāi_Pa_Hā".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [i] HH:mm",LLLL:"dddd, D MMMM YYYY [i] HH:mm"},calendar:{sameDay:"[i teie mahana, i] LT",nextDay:"[apopo i] LT",nextWeek:"dddd [i] LT",lastDay:"[inanahi i] LT",lastWeek:"dddd [whakamutunga i] LT",sameElse:"L"},relativeTime:{future:"i roto i %s",past:"%s i mua",s:"te hēkona ruarua",ss:"%d hēkona",m:"he meneti",mm:"%d meneti",h:"te haora",hh:"%d haora",d:"he ra",dd:"%d ra",M:"he marama",MM:"%d marama",y:"he tau",yy:"%d tau"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}});return e}))},6909:function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t=e.defineLocale("mk",{months:"јануари_февруари_март_април_мај_јуни_јули_август_септември_октомври_ноември_декември".split("_"),monthsShort:"јан_фев_мар_апр_мај_јун_јул_авг_сеп_окт_ное_дек".split("_"),weekdays:"недела_понеделник_вторник_среда_четврток_петок_сабота".split("_"),weekdaysShort:"нед_пон_вто_сре_чет_пет_саб".split("_"),weekdaysMin:"нe_пo_вт_ср_че_пе_сa".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"D.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd, D MMMM YYYY H:mm"},calendar:{sameDay:"[Денес во] LT",nextDay:"[Утре во] LT",nextWeek:"[Во] dddd [во] LT",lastDay:"[Вчера во] LT",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return"[Изминатата] dddd [во] LT";case 1:case 2:case 4:case 5:return"[Изминатиот] dddd [во] LT"}},sameElse:"L"},relativeTime:{future:"за %s",past:"пред %s",s:"неколку секунди",ss:"%d секунди",m:"една минута",mm:"%d минути",h:"еден час",hh:"%d часа",d:"еден ден",dd:"%d дена",M:"еден месец",MM:"%d месеци",y:"една година",yy:"%d години"},dayOfMonthOrdinalParse:/\d{1,2}-(ев|ен|ти|ви|ри|ми)/,ordinal:function(e){var t=e%10,n=e%100;return 0===e?e+"-ев":0===n?e+"-ен":n>10&&n<20?e+"-ти":1===t?e+"-ви":2===t?e+"-ри":7===t||8===t?e+"-ми":e+"-ти"},week:{dow:1,doy:7}});return t}))},"69f3":function(e,t,n){var i,r,o,a=n("7f9a"),s=n("da84"),c=n("861d"),u=n("9112"),d=n("5135"),l=n("c6cd"),f=n("f772"),p=n("d012"),h="Object already initialized",m=s.WeakMap,b=function(e){return o(e)?r(e):i(e,{})},g=function(e){return function(t){var n;if(!c(t)||(n=r(t)).type!==e)throw TypeError("Incompatible receiver, "+e+" required");return n}};if(a||l.state){var v=l.state||(l.state=new m),y=v.get,_=v.has,O=v.set;i=function(e,t){if(_.call(v,e))throw new TypeError(h);return t.facade=e,O.call(v,e,t),t},r=function(e){return y.call(v,e)||{}},o=function(e){return _.call(v,e)}}else{var j=f("state");p[j]=!0,i=function(e,t){if(d(e,j))throw new TypeError(h);return t.facade=e,u(e,j,t),t},r=function(e){return d(e,j)?e[j]:{}},o=function(e){return d(e,j)}}e.exports={set:i,get:r,has:o,enforce:b,getterFor:g}},"6b77":function(e,t,n){"use strict";n.d(t,"b",(function(){return u})),n.d(t,"a",(function(){return d})),n.d(t,"c",(function(){return l})),n.d(t,"f",(function(){return f})),n.d(t,"e",(function(){return h})),n.d(t,"d",(function(){return m}));var i=n("e863"),r=n("0056"),o=n("992e"),a=n("7b1e"),s=n("fa73"),c=function(e){return i["d"]?Object(a["j"])(e)?e:{capture:!!e||!1}:!!(Object(a["j"])(e)?e.capture:e)},u=function(e,t,n,i){e&&e.addEventListener&&e.addEventListener(t,n,c(i))},d=function(e,t,n,i){e&&e.removeEventListener&&e.removeEventListener(t,n,c(i))},l=function(e){for(var t=e?u:d,n=arguments.length,i=new Array(n>1?n-1:0),r=1;r1&&void 0!==arguments[1]?arguments[1]:{},n=t.preventDefault,i=void 0===n||n,r=t.propagation,o=void 0===r||r,a=t.immediatePropagation,s=void 0!==a&&a;i&&e.preventDefault(),o&&e.stopPropagation(),s&&e.stopImmediatePropagation()},p=function(e){return Object(s["b"])(e.replace(o["d"],""))},h=function(e,t){return[r["hb"],p(e),t].join(r["ib"])},m=function(e,t){return[r["hb"],t,p(e)].join(r["ib"])}},"6c06":function(e,t,n){"use strict";n.d(t,"a",(function(){return i}));var i=function(e){return e}},"6ce3":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e=t.defineLocale("mk",{months:"јануари_февруари_март_април_мај_јуни_јули_август_септември_октомври_ноември_декември".split("_"),monthsShort:"јан_фев_мар_апр_мај_јун_јул_авг_сеп_окт_ное_дек".split("_"),weekdays:"недела_понеделник_вторник_среда_четврток_петок_сабота".split("_"),weekdaysShort:"нед_пон_вто_сре_чет_пет_саб".split("_"),weekdaysMin:"нe_пo_вт_ср_че_пе_сa".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"D.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd, D MMMM YYYY H:mm"},calendar:{sameDay:"[Денес во] LT",nextDay:"[Утре во] LT",nextWeek:"[Во] dddd [во] LT",lastDay:"[Вчера во] LT",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return"[Изминатата] dddd [во] LT";case 1:case 2:case 4:case 5:return"[Изминатиот] dddd [во] LT"}},sameElse:"L"},relativeTime:{future:"за %s",past:"пред %s",s:"неколку секунди",ss:"%d секунди",m:"една минута",mm:"%d минути",h:"еден час",hh:"%d часа",d:"еден ден",dd:"%d дена",M:"еден месец",MM:"%d месеци",y:"една година",yy:"%d години"},dayOfMonthOrdinalParse:/\d{1,2}-(ев|ен|ти|ви|ри|ми)/,ordinal:function(t){var e=t%10,n=t%100;return 0===t?t+"-ев":0===n?t+"-ен":n>10&&n<20?t+"-ти":1===e?t+"-ви":2===e?t+"-ри":7===e||8===e?t+"-ми":t+"-ти"},week:{dow:1,doy:7}});return e}))},"69f3":function(t,e,n){var r,i,a,o=n("7f9a"),s=n("da84"),c=n("861d"),u=n("9112"),l=n("5135"),d=n("c6cd"),f=n("f772"),h=n("d012"),p="Object already initialized",m=s.WeakMap,b=function(t){return a(t)?i(t):r(t,{})},v=function(t){return function(e){var n;if(!c(e)||(n=i(e)).type!==t)throw TypeError("Incompatible receiver, "+t+" required");return n}};if(o){var _=d.state||(d.state=new m),g=_.get,y=_.has,O=_.set;r=function(t,e){if(y.call(_,t))throw new TypeError(p);return e.facade=t,O.call(_,t,e),e},i=function(t){return g.call(_,t)||{}},a=function(t){return y.call(_,t)}}else{var j=f("state");h[j]=!0,r=function(t,e){if(l(t,j))throw new TypeError(p);return e.facade=t,u(t,j,e),e},i=function(t){return l(t,j)?t[j]:{}},a=function(t){return l(t,j)}}t.exports={set:r,get:i,has:a,enforce:b,getterFor:v}},"6b77":function(t,e,n){"use strict";n.d(e,"b",(function(){return u})),n.d(e,"a",(function(){return l})),n.d(e,"c",(function(){return d})),n.d(e,"f",(function(){return f})),n.d(e,"e",(function(){return p})),n.d(e,"d",(function(){return m}));var r=n("e863"),i=n("0056"),a=n("992e"),o=n("7b1e"),s=n("fa73"),c=function(t){return r["d"]?Object(o["j"])(t)?t:{capture:!!t||!1}:!!(Object(o["j"])(t)?t.capture:t)},u=function(t,e,n,r){t&&t.addEventListener&&t.addEventListener(e,n,c(r))},l=function(t,e,n,r){t&&t.removeEventListener&&t.removeEventListener(e,n,c(r))},d=function(t){for(var e=t?u:l,n=arguments.length,r=new Array(n>1?n-1:0),i=1;i1&&void 0!==arguments[1]?arguments[1]:{},n=e.preventDefault,r=void 0===n||n,i=e.propagation,a=void 0===i||i,o=e.immediatePropagation,s=void 0!==o&&o;r&&t.preventDefault(),a&&t.stopPropagation(),s&&t.stopImmediatePropagation()},h=function(t){return Object(s["b"])(t.replace(a["d"],""))},p=function(t,e){return[i["hb"],h(t),e].join(i["ib"])},m=function(t,e){return[i["hb"],e,h(t)].join(i["ib"])}},"6c06":function(t,e,n){"use strict";n.d(e,"a",(function(){return r}));var r=function(t){return t}},"6ce3":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t=e.defineLocale("nb",{months:"januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember".split("_"),monthsShort:"jan._feb._mars_apr._mai_juni_juli_aug._sep._okt._nov._des.".split("_"),monthsParseExact:!0,weekdays:"søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag".split("_"),weekdaysShort:"sø._ma._ti._on._to._fr._lø.".split("_"),weekdaysMin:"sø_ma_ti_on_to_fr_lø".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY [kl.] HH:mm",LLLL:"dddd D. MMMM YYYY [kl.] HH:mm"},calendar:{sameDay:"[i dag kl.] LT",nextDay:"[i morgen kl.] LT",nextWeek:"dddd [kl.] LT",lastDay:"[i går kl.] LT",lastWeek:"[forrige] dddd [kl.] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"%s siden",s:"noen sekunder",ss:"%d sekunder",m:"ett minutt",mm:"%d minutter",h:"en time",hh:"%d timer",d:"en dag",dd:"%d dager",w:"en uke",ww:"%d uker",M:"en måned",MM:"%d måneder",y:"ett år",yy:"%d år"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return t}))},"6d40":function(e,t,n){"use strict";n.d(t,"a",(function(){return s}));var i=n("d82f");function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){for(var n=0;n1&&void 0!==arguments[1]?arguments[1]:{};if(r(this,e),!t)throw new TypeError("Failed to construct '".concat(this.constructor.name,"'. 1 argument required, ").concat(arguments.length," given."));Object(i["a"])(this,e.Defaults,this.constructor.Defaults,n,{type:t}),Object(i["d"])(this,{type:Object(i["l"])(),cancelable:Object(i["l"])(),nativeEvent:Object(i["l"])(),target:Object(i["l"])(),relatedTarget:Object(i["l"])(),vueTarget:Object(i["l"])(),componentId:Object(i["l"])()});var o=!1;this.preventDefault=function(){this.cancelable&&(o=!0)},Object(i["e"])(this,"defaultPrevented",{enumerable:!0,get:function(){return o}})}return a(e,null,[{key:"Defaults",get:function(){return{type:"",cancelable:!0,nativeEvent:null,target:null,relatedTarget:null,vueTarget:null,componentId:null}}}]),e}()},"6d79":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e=t.defineLocale("nb",{months:"januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember".split("_"),monthsShort:"jan._feb._mars_apr._mai_juni_juli_aug._sep._okt._nov._des.".split("_"),monthsParseExact:!0,weekdays:"søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag".split("_"),weekdaysShort:"sø._ma._ti._on._to._fr._lø.".split("_"),weekdaysMin:"sø_ma_ti_on_to_fr_lø".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY [kl.] HH:mm",LLLL:"dddd D. MMMM YYYY [kl.] HH:mm"},calendar:{sameDay:"[i dag kl.] LT",nextDay:"[i morgen kl.] LT",nextWeek:"dddd [kl.] LT",lastDay:"[i går kl.] LT",lastWeek:"[forrige] dddd [kl.] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"%s siden",s:"noen sekunder",ss:"%d sekunder",m:"ett minutt",mm:"%d minutter",h:"en time",hh:"%d timer",d:"en dag",dd:"%d dager",w:"en uke",ww:"%d uker",M:"en måned",MM:"%d måneder",y:"ett år",yy:"%d år"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return e}))},"6d40":function(t,e,n){"use strict";n.d(e,"a",(function(){return s}));var r=n("d82f");function i(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function a(t,e){for(var n=0;n1&&void 0!==arguments[1]?arguments[1]:{};if(i(this,t),!e)throw new TypeError("Failed to construct '".concat(this.constructor.name,"'. 1 argument required, ").concat(arguments.length," given."));Object(r["a"])(this,t.Defaults,this.constructor.Defaults,n,{type:e}),Object(r["d"])(this,{type:Object(r["l"])(),cancelable:Object(r["l"])(),nativeEvent:Object(r["l"])(),target:Object(r["l"])(),relatedTarget:Object(r["l"])(),vueTarget:Object(r["l"])(),componentId:Object(r["l"])()});var a=!1;this.preventDefault=function(){this.cancelable&&(a=!0)},Object(r["e"])(this,"defaultPrevented",{enumerable:!0,get:function(){return a}})}return o(t,null,[{key:"Defaults",get:function(){return{type:"",cancelable:!0,nativeEvent:null,target:null,relatedTarget:null,vueTarget:null,componentId:null}}}]),t}()},"6d79":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t={0:"-ші",1:"-ші",2:"-ші",3:"-ші",4:"-ші",5:"-ші",6:"-шы",7:"-ші",8:"-ші",9:"-шы",10:"-шы",20:"-шы",30:"-шы",40:"-шы",50:"-ші",60:"-шы",70:"-ші",80:"-ші",90:"-шы",100:"-ші"},n=e.defineLocale("kk",{months:"қаңтар_ақпан_наурыз_сәуір_мамыр_маусым_шілде_тамыз_қыркүйек_қазан_қараша_желтоқсан".split("_"),monthsShort:"қаң_ақп_нау_сәу_мам_мау_шіл_там_қыр_қаз_қар_жел".split("_"),weekdays:"жексенбі_дүйсенбі_сейсенбі_сәрсенбі_бейсенбі_жұма_сенбі".split("_"),weekdaysShort:"жек_дүй_сей_сәр_бей_жұм_сен".split("_"),weekdaysMin:"жк_дй_сй_ср_бй_жм_сн".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Бүгін сағат] LT",nextDay:"[Ертең сағат] LT",nextWeek:"dddd [сағат] LT",lastDay:"[Кеше сағат] LT",lastWeek:"[Өткен аптаның] dddd [сағат] LT",sameElse:"L"},relativeTime:{future:"%s ішінде",past:"%s бұрын",s:"бірнеше секунд",ss:"%d секунд",m:"бір минут",mm:"%d минут",h:"бір сағат",hh:"%d сағат",d:"бір күн",dd:"%d күн",M:"бір ай",MM:"%d ай",y:"бір жыл",yy:"%d жыл"},dayOfMonthOrdinalParse:/\d{1,2}-(ші|шы)/,ordinal:function(e){var n=e%10,i=e>=100?100:null;return e+(t[e]||t[n]||t[i])},week:{dow:1,doy:7}});return n}))},"6d83":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e={0:"-ші",1:"-ші",2:"-ші",3:"-ші",4:"-ші",5:"-ші",6:"-шы",7:"-ші",8:"-ші",9:"-шы",10:"-шы",20:"-шы",30:"-шы",40:"-шы",50:"-ші",60:"-шы",70:"-ші",80:"-ші",90:"-шы",100:"-ші"},n=t.defineLocale("kk",{months:"қаңтар_ақпан_наурыз_сәуір_мамыр_маусым_шілде_тамыз_қыркүйек_қазан_қараша_желтоқсан".split("_"),monthsShort:"қаң_ақп_нау_сәу_мам_мау_шіл_там_қыр_қаз_қар_жел".split("_"),weekdays:"жексенбі_дүйсенбі_сейсенбі_сәрсенбі_бейсенбі_жұма_сенбі".split("_"),weekdaysShort:"жек_дүй_сей_сәр_бей_жұм_сен".split("_"),weekdaysMin:"жк_дй_сй_ср_бй_жм_сн".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Бүгін сағат] LT",nextDay:"[Ертең сағат] LT",nextWeek:"dddd [сағат] LT",lastDay:"[Кеше сағат] LT",lastWeek:"[Өткен аптаның] dddd [сағат] LT",sameElse:"L"},relativeTime:{future:"%s ішінде",past:"%s бұрын",s:"бірнеше секунд",ss:"%d секунд",m:"бір минут",mm:"%d минут",h:"бір сағат",hh:"%d сағат",d:"бір күн",dd:"%d күн",M:"бір ай",MM:"%d ай",y:"бір жыл",yy:"%d жыл"},dayOfMonthOrdinalParse:/\d{1,2}-(ші|шы)/,ordinal:function(t){var n=t%10,r=t>=100?100:null;return t+(e[t]||e[n]||e[r])},week:{dow:1,doy:7}});return n}))},"6d83":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t=e.defineLocale("ar-tn",{months:"جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),monthsShort:"جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[اليوم على الساعة] LT",nextDay:"[غدا على الساعة] LT",nextWeek:"dddd [على الساعة] LT",lastDay:"[أمس على الساعة] LT",lastWeek:"dddd [على الساعة] LT",sameElse:"L"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",ss:"%d ثانية",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"},week:{dow:1,doy:4}});return t}))},"6e98":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e=t.defineLocale("ar-tn",{months:"جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),monthsShort:"جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[اليوم على الساعة] LT",nextDay:"[غدا على الساعة] LT",nextWeek:"dddd [على الساعة] LT",lastDay:"[أمس على الساعة] LT",lastWeek:"dddd [على الساعة] LT",sameElse:"L"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",ss:"%d ثانية",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"},week:{dow:1,doy:4}});return e}))},"6e98":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t=e.defineLocale("it",{months:"gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre".split("_"),monthsShort:"gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic".split("_"),weekdays:"domenica_lunedì_martedì_mercoledì_giovedì_venerdì_sabato".split("_"),weekdaysShort:"dom_lun_mar_mer_gio_ven_sab".split("_"),weekdaysMin:"do_lu_ma_me_gi_ve_sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:function(){return"[Oggi a"+(this.hours()>1?"lle ":0===this.hours()?" ":"ll'")+"]LT"},nextDay:function(){return"[Domani a"+(this.hours()>1?"lle ":0===this.hours()?" ":"ll'")+"]LT"},nextWeek:function(){return"dddd [a"+(this.hours()>1?"lle ":0===this.hours()?" ":"ll'")+"]LT"},lastDay:function(){return"[Ieri a"+(this.hours()>1?"lle ":0===this.hours()?" ":"ll'")+"]LT"},lastWeek:function(){switch(this.day()){case 0:return"[La scorsa] dddd [a"+(this.hours()>1?"lle ":0===this.hours()?" ":"ll'")+"]LT";default:return"[Lo scorso] dddd [a"+(this.hours()>1?"lle ":0===this.hours()?" ":"ll'")+"]LT"}},sameElse:"L"},relativeTime:{future:"tra %s",past:"%s fa",s:"alcuni secondi",ss:"%d secondi",m:"un minuto",mm:"%d minuti",h:"un'ora",hh:"%d ore",d:"un giorno",dd:"%d giorni",w:"una settimana",ww:"%d settimane",M:"un mese",MM:"%d mesi",y:"un anno",yy:"%d anni"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}});return t}))},"6eeb":function(e,t,n){var i=n("da84"),r=n("9112"),o=n("5135"),a=n("ce4e"),s=n("8925"),c=n("69f3"),u=c.get,d=c.enforce,l=String(String).split("String");(e.exports=function(e,t,n,s){var c,u=!!s&&!!s.unsafe,f=!!s&&!!s.enumerable,p=!!s&&!!s.noTargetGet;"function"==typeof n&&("string"!=typeof t||o(n,"name")||r(n,"name",t),c=d(n),c.source||(c.source=l.join("string"==typeof t?t:""))),e!==i?(u?!p&&e[t]&&(f=!0):delete e[t],f?e[t]=n:r(e,t,n)):f?e[t]=n:a(t,n)})(Function.prototype,"toString",(function(){return"function"==typeof this&&u(this).source||s(this)}))},"6f12":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e=t.defineLocale("it",{months:"gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre".split("_"),monthsShort:"gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic".split("_"),weekdays:"domenica_lunedì_martedì_mercoledì_giovedì_venerdì_sabato".split("_"),weekdaysShort:"dom_lun_mar_mer_gio_ven_sab".split("_"),weekdaysMin:"do_lu_ma_me_gi_ve_sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:function(){return"[Oggi a"+(this.hours()>1?"lle ":0===this.hours()?" ":"ll'")+"]LT"},nextDay:function(){return"[Domani a"+(this.hours()>1?"lle ":0===this.hours()?" ":"ll'")+"]LT"},nextWeek:function(){return"dddd [a"+(this.hours()>1?"lle ":0===this.hours()?" ":"ll'")+"]LT"},lastDay:function(){return"[Ieri a"+(this.hours()>1?"lle ":0===this.hours()?" ":"ll'")+"]LT"},lastWeek:function(){switch(this.day()){case 0:return"[La scorsa] dddd [a"+(this.hours()>1?"lle ":0===this.hours()?" ":"ll'")+"]LT";default:return"[Lo scorso] dddd [a"+(this.hours()>1?"lle ":0===this.hours()?" ":"ll'")+"]LT"}},sameElse:"L"},relativeTime:{future:"tra %s",past:"%s fa",s:"alcuni secondi",ss:"%d secondi",m:"un minuto",mm:"%d minuti",h:"un'ora",hh:"%d ore",d:"un giorno",dd:"%d giorni",w:"una settimana",ww:"%d settimane",M:"un mese",MM:"%d mesi",y:"un anno",yy:"%d anni"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}});return e}))},"6eeb":function(t,e,n){var r=n("da84"),i=n("9112"),a=n("5135"),o=n("ce4e"),s=n("8925"),c=n("69f3"),u=c.get,l=c.enforce,d=String(String).split("String");(t.exports=function(t,e,n,s){var c,u=!!s&&!!s.unsafe,f=!!s&&!!s.enumerable,h=!!s&&!!s.noTargetGet;"function"==typeof n&&("string"!=typeof e||a(n,"name")||i(n,"name",e),c=l(n),c.source||(c.source=d.join("string"==typeof e?e:""))),t!==r?(u?!h&&t[e]&&(f=!0):delete t[e],f?t[e]=n:i(t,e,n)):f?t[e]=n:o(e,n)})(Function.prototype,"toString",(function(){return"function"==typeof this&&u(this).source||s(this)}))},"6f12":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t=e.defineLocale("it-ch",{months:"gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre".split("_"),monthsShort:"gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic".split("_"),weekdays:"domenica_lunedì_martedì_mercoledì_giovedì_venerdì_sabato".split("_"),weekdaysShort:"dom_lun_mar_mer_gio_ven_sab".split("_"),weekdaysMin:"do_lu_ma_me_gi_ve_sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Oggi alle] LT",nextDay:"[Domani alle] LT",nextWeek:"dddd [alle] LT",lastDay:"[Ieri alle] LT",lastWeek:function(){switch(this.day()){case 0:return"[la scorsa] dddd [alle] LT";default:return"[lo scorso] dddd [alle] LT"}},sameElse:"L"},relativeTime:{future:function(e){return(/^[0-9].+$/.test(e)?"tra":"in")+" "+e},past:"%s fa",s:"alcuni secondi",ss:"%d secondi",m:"un minuto",mm:"%d minuti",h:"un'ora",hh:"%d ore",d:"un giorno",dd:"%d giorni",M:"un mese",MM:"%d mesi",y:"un anno",yy:"%d anni"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}});return t}))},"6f50":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e=t.defineLocale("it-ch",{months:"gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre".split("_"),monthsShort:"gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic".split("_"),weekdays:"domenica_lunedì_martedì_mercoledì_giovedì_venerdì_sabato".split("_"),weekdaysShort:"dom_lun_mar_mer_gio_ven_sab".split("_"),weekdaysMin:"do_lu_ma_me_gi_ve_sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Oggi alle] LT",nextDay:"[Domani alle] LT",nextWeek:"dddd [alle] LT",lastDay:"[Ieri alle] LT",lastWeek:function(){switch(this.day()){case 0:return"[la scorsa] dddd [alle] LT";default:return"[lo scorso] dddd [alle] LT"}},sameElse:"L"},relativeTime:{future:function(t){return(/^[0-9].+$/.test(t)?"tra":"in")+" "+t},past:"%s fa",s:"alcuni secondi",ss:"%d secondi",m:"un minuto",mm:"%d minuti",h:"un'ora",hh:"%d ore",d:"un giorno",dd:"%d giorni",M:"un mese",MM:"%d mesi",y:"un anno",yy:"%d anni"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}});return e}))},"6f50":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t=e.defineLocale("en-nz",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10,n=1===~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th";return e+n},week:{dow:1,doy:4}});return t}))},7118:function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e=t.defineLocale("en-nz",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(t){var e=t%10,n=1===~~(t%100/10)?"th":1===e?"st":2===e?"nd":3===e?"rd":"th";return t+n},week:{dow:1,doy:4}});return e}))},7118:function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t="jan._feb._mrt._apr._mai_jun._jul._aug._sep._okt._nov._des.".split("_"),n="jan_feb_mrt_apr_mai_jun_jul_aug_sep_okt_nov_des".split("_"),i=e.defineLocale("fy",{months:"jannewaris_febrewaris_maart_april_maaie_juny_july_augustus_septimber_oktober_novimber_desimber".split("_"),monthsShort:function(e,i){return e?/-MMM-/.test(i)?n[e.month()]:t[e.month()]:t},monthsParseExact:!0,weekdays:"snein_moandei_tiisdei_woansdei_tongersdei_freed_sneon".split("_"),weekdaysShort:"si._mo._ti._wo._to._fr._so.".split("_"),weekdaysMin:"Si_Mo_Ti_Wo_To_Fr_So".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD-MM-YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[hjoed om] LT",nextDay:"[moarn om] LT",nextWeek:"dddd [om] LT",lastDay:"[juster om] LT",lastWeek:"[ôfrûne] dddd [om] LT",sameElse:"L"},relativeTime:{future:"oer %s",past:"%s lyn",s:"in pear sekonden",ss:"%d sekonden",m:"ien minút",mm:"%d minuten",h:"ien oere",hh:"%d oeren",d:"ien dei",dd:"%d dagen",M:"ien moanne",MM:"%d moannen",y:"ien jier",yy:"%d jierren"},dayOfMonthOrdinalParse:/\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?"ste":"de")},week:{dow:1,doy:4}});return i}))},7156:function(e,t,n){var i=n("861d"),r=n("d2bb");e.exports=function(e,t,n){var o,a;return r&&"function"==typeof(o=t.constructor)&&o!==n&&i(a=o.prototype)&&a!==n.prototype&&r(e,a),e}},7333:function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e="jan._feb._mrt._apr._mai_jun._jul._aug._sep._okt._nov._des.".split("_"),n="jan_feb_mrt_apr_mai_jun_jul_aug_sep_okt_nov_des".split("_"),r=t.defineLocale("fy",{months:"jannewaris_febrewaris_maart_april_maaie_juny_july_augustus_septimber_oktober_novimber_desimber".split("_"),monthsShort:function(t,r){return t?/-MMM-/.test(r)?n[t.month()]:e[t.month()]:e},monthsParseExact:!0,weekdays:"snein_moandei_tiisdei_woansdei_tongersdei_freed_sneon".split("_"),weekdaysShort:"si._mo._ti._wo._to._fr._so.".split("_"),weekdaysMin:"Si_Mo_Ti_Wo_To_Fr_So".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD-MM-YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[hjoed om] LT",nextDay:"[moarn om] LT",nextWeek:"dddd [om] LT",lastDay:"[juster om] LT",lastWeek:"[ôfrûne] dddd [om] LT",sameElse:"L"},relativeTime:{future:"oer %s",past:"%s lyn",s:"in pear sekonden",ss:"%d sekonden",m:"ien minút",mm:"%d minuten",h:"ien oere",hh:"%d oeren",d:"ien dei",dd:"%d dagen",M:"ien moanne",MM:"%d moannen",y:"ien jier",yy:"%d jierren"},dayOfMonthOrdinalParse:/\d{1,2}(ste|de)/,ordinal:function(t){return t+(1===t||8===t||t>=20?"ste":"de")},week:{dow:1,doy:4}});return r}))},7156:function(t,e,n){var r=n("861d"),i=n("d2bb");t.exports=function(t,e,n){var a,o;return i&&"function"==typeof(a=e.constructor)&&a!==n&&r(o=a.prototype)&&o!==n.prototype&&i(t,o),t}},7333:function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t=e.defineLocale("en-il",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10,n=1===~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th";return e+n}});return t}))},7418:function(e,t){t.f=Object.getOwnPropertySymbols},"746f":function(e,t,n){var i=n("428f"),r=n("5135"),o=n("e538"),a=n("9bf2").f;e.exports=function(e){var t=i.Symbol||(i.Symbol={});r(t,e)||a(t,e,{value:o.f(e)})}},"74dc":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e=t.defineLocale("en-il",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(t){var e=t%10,n=1===~~(t%100/10)?"th":1===e?"st":2===e?"nd":3===e?"rd":"th";return t+n}});return e}))},7418:function(t,e){e.f=Object.getOwnPropertySymbols},"746f":function(t,e,n){var r=n("428f"),i=n("5135"),a=n("e538"),o=n("9bf2").f;t.exports=function(t){var e=r.Symbol||(r.Symbol={});i(e,t)||o(e,t,{value:a.f(t)})}},"74dc":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t=e.defineLocale("sw",{months:"Januari_Februari_Machi_Aprili_Mei_Juni_Julai_Agosti_Septemba_Oktoba_Novemba_Desemba".split("_"),monthsShort:"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ago_Sep_Okt_Nov_Des".split("_"),weekdays:"Jumapili_Jumatatu_Jumanne_Jumatano_Alhamisi_Ijumaa_Jumamosi".split("_"),weekdaysShort:"Jpl_Jtat_Jnne_Jtan_Alh_Ijm_Jmos".split("_"),weekdaysMin:"J2_J3_J4_J5_Al_Ij_J1".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"hh:mm A",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[leo saa] LT",nextDay:"[kesho saa] LT",nextWeek:"[wiki ijayo] dddd [saat] LT",lastDay:"[jana] LT",lastWeek:"[wiki iliyopita] dddd [saat] LT",sameElse:"L"},relativeTime:{future:"%s baadaye",past:"tokea %s",s:"hivi punde",ss:"sekunde %d",m:"dakika moja",mm:"dakika %d",h:"saa limoja",hh:"masaa %d",d:"siku moja",dd:"siku %d",M:"mwezi mmoja",MM:"miezi %d",y:"mwaka mmoja",yy:"miaka %d"},week:{dow:1,doy:7}});return t}))},7839:function(e,t){e.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},"7a77":function(e,t,n){"use strict";function i(e){this.message=e}i.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},i.prototype.__CANCEL__=!0,e.exports=i},"7aac":function(e,t,n){"use strict";var i=n("c532");e.exports=i.isStandardBrowserEnv()?function(){return{write:function(e,t,n,r,o,a){var s=[];s.push(e+"="+encodeURIComponent(t)),i.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),i.isString(r)&&s.push("path="+r),i.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(e){var t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove:function(e){this.write(e,"",Date.now()-864e5)}}}():function(){return{write:function(){},read:function(){return null},remove:function(){}}}()},"7b0b":function(e,t,n){var i=n("1d80");e.exports=function(e){return Object(i(e))}},"7b1e":function(e,t,n){"use strict";n.d(t,"o",(function(){return c})),n.d(t,"g",(function(){return u})),n.d(t,"p",(function(){return d})),n.d(t,"f",(function(){return l})),n.d(t,"b",(function(){return f})),n.d(t,"n",(function(){return p})),n.d(t,"h",(function(){return h})),n.d(t,"i",(function(){return m})),n.d(t,"a",(function(){return b})),n.d(t,"j",(function(){return g})),n.d(t,"k",(function(){return v})),n.d(t,"c",(function(){return y})),n.d(t,"d",(function(){return _})),n.d(t,"e",(function(){return O})),n.d(t,"m",(function(){return j})),n.d(t,"l",(function(){return w}));var i=n("992e"),r=n("ca88");function o(e){return o="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},o(e)}var a=function(e){return o(e)},s=function(e){return Object.prototype.toString.call(e).slice(8,-1)},c=function(e){return void 0===e},u=function(e){return null===e},d=function(e){return c(e)||u(e)},l=function(e){return"function"===a(e)},f=function(e){return"boolean"===a(e)},p=function(e){return"string"===a(e)},h=function(e){return"number"===a(e)},m=function(e){return i["s"].test(String(e))},b=function(e){return Array.isArray(e)},g=function(e){return null!==e&&"object"===o(e)},v=function(e){return"[object Object]"===Object.prototype.toString.call(e)},y=function(e){return e instanceof Date},_=function(e){return e instanceof Event},O=function(e){return e instanceof r["b"]},j=function(e){return"RegExp"===s(e)},w=function(e){return!d(e)&&l(e.then)&&l(e.catch)}},"7be6":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e=t.defineLocale("sw",{months:"Januari_Februari_Machi_Aprili_Mei_Juni_Julai_Agosti_Septemba_Oktoba_Novemba_Desemba".split("_"),monthsShort:"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ago_Sep_Okt_Nov_Des".split("_"),weekdays:"Jumapili_Jumatatu_Jumanne_Jumatano_Alhamisi_Ijumaa_Jumamosi".split("_"),weekdaysShort:"Jpl_Jtat_Jnne_Jtan_Alh_Ijm_Jmos".split("_"),weekdaysMin:"J2_J3_J4_J5_Al_Ij_J1".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"hh:mm A",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[leo saa] LT",nextDay:"[kesho saa] LT",nextWeek:"[wiki ijayo] dddd [saat] LT",lastDay:"[jana] LT",lastWeek:"[wiki iliyopita] dddd [saat] LT",sameElse:"L"},relativeTime:{future:"%s baadaye",past:"tokea %s",s:"hivi punde",ss:"sekunde %d",m:"dakika moja",mm:"dakika %d",h:"saa limoja",hh:"masaa %d",d:"siku moja",dd:"siku %d",M:"mwezi mmoja",MM:"miezi %d",y:"mwaka mmoja",yy:"miaka %d"},week:{dow:1,doy:7}});return e}))},7839:function(t,e){t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},"7a77":function(t,e,n){"use strict";function r(t){this.message=t}r.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},r.prototype.__CANCEL__=!0,t.exports=r},"7aac":function(t,e,n){"use strict";var r=n("c532");t.exports=r.isStandardBrowserEnv()?function(){return{write:function(t,e,n,i,a,o){var s=[];s.push(t+"="+encodeURIComponent(e)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(a)&&s.push("domain="+a),!0===o&&s.push("secure"),document.cookie=s.join("; ")},read:function(t){var e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove:function(t){this.write(t,"",Date.now()-864e5)}}}():function(){return{write:function(){},read:function(){return null},remove:function(){}}}()},"7b0b":function(t,e,n){var r=n("1d80");t.exports=function(t){return Object(r(t))}},"7b1e":function(t,e,n){"use strict";n.d(e,"o",(function(){return c})),n.d(e,"g",(function(){return u})),n.d(e,"p",(function(){return l})),n.d(e,"f",(function(){return d})),n.d(e,"b",(function(){return f})),n.d(e,"n",(function(){return h})),n.d(e,"h",(function(){return p})),n.d(e,"i",(function(){return m})),n.d(e,"a",(function(){return b})),n.d(e,"j",(function(){return v})),n.d(e,"k",(function(){return _})),n.d(e,"c",(function(){return g})),n.d(e,"d",(function(){return y})),n.d(e,"e",(function(){return O})),n.d(e,"m",(function(){return j})),n.d(e,"l",(function(){return w}));var r=n("992e"),i=n("ca88");function a(t){return a="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"===typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},a(t)}var o=function(t){return a(t)},s=function(t){return Object.prototype.toString.call(t).slice(8,-1)},c=function(t){return void 0===t},u=function(t){return null===t},l=function(t){return c(t)||u(t)},d=function(t){return"function"===o(t)},f=function(t){return"boolean"===o(t)},h=function(t){return"string"===o(t)},p=function(t){return"number"===o(t)},m=function(t){return r["s"].test(String(t))},b=function(t){return Array.isArray(t)},v=function(t){return null!==t&&"object"===a(t)},_=function(t){return"[object Object]"===Object.prototype.toString.call(t)},g=function(t){return t instanceof Date},y=function(t){return t instanceof Event},O=function(t){return t instanceof i["b"]},j=function(t){return"RegExp"===s(t)},w=function(t){return!l(t)&&d(t.then)&&d(t.catch)}},"7be6":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t="január_február_marec_apríl_máj_jún_júl_august_september_október_november_december".split("_"),n="jan_feb_mar_apr_máj_jún_júl_aug_sep_okt_nov_dec".split("_");function i(e){return e>1&&e<5}function r(e,t,n,r){var o=e+" ";switch(n){case"s":return t||r?"pár sekúnd":"pár sekundami";case"ss":return t||r?o+(i(e)?"sekundy":"sekúnd"):o+"sekundami";case"m":return t?"minúta":r?"minútu":"minútou";case"mm":return t||r?o+(i(e)?"minúty":"minút"):o+"minútami";case"h":return t?"hodina":r?"hodinu":"hodinou";case"hh":return t||r?o+(i(e)?"hodiny":"hodín"):o+"hodinami";case"d":return t||r?"deň":"dňom";case"dd":return t||r?o+(i(e)?"dni":"dní"):o+"dňami";case"M":return t||r?"mesiac":"mesiacom";case"MM":return t||r?o+(i(e)?"mesiace":"mesiacov"):o+"mesiacmi";case"y":return t||r?"rok":"rokom";case"yy":return t||r?o+(i(e)?"roky":"rokov"):o+"rokmi"}}var o=e.defineLocale("sk",{months:t,monthsShort:n,weekdays:"nedeľa_pondelok_utorok_streda_štvrtok_piatok_sobota".split("_"),weekdaysShort:"ne_po_ut_st_št_pi_so".split("_"),weekdaysMin:"ne_po_ut_st_št_pi_so".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd D. MMMM YYYY H:mm"},calendar:{sameDay:"[dnes o] LT",nextDay:"[zajtra o] LT",nextWeek:function(){switch(this.day()){case 0:return"[v nedeľu o] LT";case 1:case 2:return"[v] dddd [o] LT";case 3:return"[v stredu o] LT";case 4:return"[vo štvrtok o] LT";case 5:return"[v piatok o] LT";case 6:return"[v sobotu o] LT"}},lastDay:"[včera o] LT",lastWeek:function(){switch(this.day()){case 0:return"[minulú nedeľu o] LT";case 1:case 2:return"[minulý] dddd [o] LT";case 3:return"[minulú stredu o] LT";case 4:case 5:return"[minulý] dddd [o] LT";case 6:return"[minulú sobotu o] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"pred %s",s:r,ss:r,m:r,mm:r,h:r,hh:r,d:r,dd:r,M:r,MM:r,y:r,yy:r},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return o}))},"7c73":function(e,t,n){var i,r=n("825a"),o=n("37e8"),a=n("7839"),s=n("d012"),c=n("1be4"),u=n("cc12"),d=n("f772"),l=">",f="<",p="prototype",h="script",m=d("IE_PROTO"),b=function(){},g=function(e){return f+h+l+e+f+"/"+h+l},v=function(e){e.write(g("")),e.close();var t=e.parentWindow.Object;return e=null,t},y=function(){var e,t=u("iframe"),n="java"+h+":";return t.style.display="none",c.appendChild(t),t.src=String(n),e=t.contentWindow.document,e.open(),e.write(g("document.F=Object")),e.close(),e.F},_=function(){try{i=document.domain&&new ActiveXObject("htmlfile")}catch(t){}_=i?v(i):y();var e=a.length;while(e--)delete _[p][a[e]];return _()};s[m]=!0,e.exports=Object.create||function(e,t){var n;return null!==e?(b[p]=r(e),n=new b,b[p]=null,n[m]=e):n=_(),void 0===t?n:o(n,t)}},"7db0":function(e,t,n){"use strict";var i=n("23e7"),r=n("b727").find,o=n("44d2"),a="find",s=!0;a in[]&&Array(1)[a]((function(){s=!1})),i({target:"Array",proto:!0,forced:s},{find:function(e){return r(this,e,arguments.length>1?arguments[1]:void 0)}}),o(a)},"7dd0":function(e,t,n){"use strict";var i=n("23e7"),r=n("9ed3"),o=n("e163"),a=n("d2bb"),s=n("d44e"),c=n("9112"),u=n("6eeb"),d=n("b622"),l=n("c430"),f=n("3f8c"),p=n("ae93"),h=p.IteratorPrototype,m=p.BUGGY_SAFARI_ITERATORS,b=d("iterator"),g="keys",v="values",y="entries",_=function(){return this};e.exports=function(e,t,n,d,p,O,j){r(n,t,d);var w,k,M,L=function(e){if(e===p&&A)return A;if(!m&&e in S)return S[e];switch(e){case g:return function(){return new n(this,e)};case v:return function(){return new n(this,e)};case y:return function(){return new n(this,e)}}return function(){return new n(this)}},x=t+" Iterator",T=!1,S=e.prototype,D=S[b]||S["@@iterator"]||p&&S[p],A=!m&&D||L(p),P="Array"==t&&S.entries||D;if(P&&(w=o(P.call(new e)),h!==Object.prototype&&w.next&&(l||o(w)===h||(a?a(w,h):"function"!=typeof w[b]&&c(w,b,_)),s(w,x,!0,!0),l&&(f[x]=_))),p==v&&D&&D.name!==v&&(T=!0,A=function(){return D.call(this)}),l&&!j||S[b]===A||c(S,b,A),f[t]=A,p)if(k={values:L(v),keys:O?A:L(g),entries:L(y)},j)for(M in k)(m||T||!(M in S))&&u(S,M,k[M]);else i({target:t,proto:!0,forced:m||T},k);return k}},"7f33":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e="január_február_marec_apríl_máj_jún_júl_august_september_október_november_december".split("_"),n="jan_feb_mar_apr_máj_jún_júl_aug_sep_okt_nov_dec".split("_");function r(t){return t>1&&t<5}function i(t,e,n,i){var a=t+" ";switch(n){case"s":return e||i?"pár sekúnd":"pár sekundami";case"ss":return e||i?a+(r(t)?"sekundy":"sekúnd"):a+"sekundami";case"m":return e?"minúta":i?"minútu":"minútou";case"mm":return e||i?a+(r(t)?"minúty":"minút"):a+"minútami";case"h":return e?"hodina":i?"hodinu":"hodinou";case"hh":return e||i?a+(r(t)?"hodiny":"hodín"):a+"hodinami";case"d":return e||i?"deň":"dňom";case"dd":return e||i?a+(r(t)?"dni":"dní"):a+"dňami";case"M":return e||i?"mesiac":"mesiacom";case"MM":return e||i?a+(r(t)?"mesiace":"mesiacov"):a+"mesiacmi";case"y":return e||i?"rok":"rokom";case"yy":return e||i?a+(r(t)?"roky":"rokov"):a+"rokmi"}}var a=t.defineLocale("sk",{months:e,monthsShort:n,weekdays:"nedeľa_pondelok_utorok_streda_štvrtok_piatok_sobota".split("_"),weekdaysShort:"ne_po_ut_st_št_pi_so".split("_"),weekdaysMin:"ne_po_ut_st_št_pi_so".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd D. MMMM YYYY H:mm"},calendar:{sameDay:"[dnes o] LT",nextDay:"[zajtra o] LT",nextWeek:function(){switch(this.day()){case 0:return"[v nedeľu o] LT";case 1:case 2:return"[v] dddd [o] LT";case 3:return"[v stredu o] LT";case 4:return"[vo štvrtok o] LT";case 5:return"[v piatok o] LT";case 6:return"[v sobotu o] LT"}},lastDay:"[včera o] LT",lastWeek:function(){switch(this.day()){case 0:return"[minulú nedeľu o] LT";case 1:case 2:return"[minulý] dddd [o] LT";case 3:return"[minulú stredu o] LT";case 4:case 5:return"[minulý] dddd [o] LT";case 6:return"[minulú sobotu o] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"pred %s",s:i,ss:i,m:i,mm:i,h:i,hh:i,d:i,dd:i,M:i,MM:i,y:i,yy:i},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return a}))},"7c73":function(t,e,n){var r,i=n("825a"),a=n("37e8"),o=n("7839"),s=n("d012"),c=n("1be4"),u=n("cc12"),l=n("f772"),d=">",f="<",h="prototype",p="script",m=l("IE_PROTO"),b=function(){},v=function(t){return f+p+d+t+f+"/"+p+d},_=function(t){t.write(v("")),t.close();var e=t.parentWindow.Object;return t=null,e},g=function(){var t,e=u("iframe"),n="java"+p+":";return e.style.display="none",c.appendChild(e),e.src=String(n),t=e.contentWindow.document,t.open(),t.write(v("document.F=Object")),t.close(),t.F},y=function(){try{r=document.domain&&new ActiveXObject("htmlfile")}catch(e){}y=r?_(r):g();var t=o.length;while(t--)delete y[h][o[t]];return y()};s[m]=!0,t.exports=Object.create||function(t,e){var n;return null!==t?(b[h]=i(t),n=new b,b[h]=null,n[m]=t):n=y(),void 0===e?n:a(n,e)}},"7dd0":function(t,e,n){"use strict";var r=n("23e7"),i=n("9ed3"),a=n("e163"),o=n("d2bb"),s=n("d44e"),c=n("9112"),u=n("6eeb"),l=n("b622"),d=n("c430"),f=n("3f8c"),h=n("ae93"),p=h.IteratorPrototype,m=h.BUGGY_SAFARI_ITERATORS,b=l("iterator"),v="keys",_="values",g="entries",y=function(){return this};t.exports=function(t,e,n,l,h,O,j){i(n,e,l);var w,M,L,k=function(t){if(t===h&&x)return x;if(!m&&t in S)return S[t];switch(t){case v:return function(){return new n(this,t)};case _:return function(){return new n(this,t)};case g:return function(){return new n(this,t)}}return function(){return new n(this)}},T=e+" Iterator",D=!1,S=t.prototype,Y=S[b]||S["@@iterator"]||h&&S[h],x=!m&&Y||k(h),P="Array"==e&&S.entries||Y;if(P&&(w=a(P.call(new t)),p!==Object.prototype&&w.next&&(d||a(w)===p||(o?o(w,p):"function"!=typeof w[b]&&c(w,b,y)),s(w,T,!0,!0),d&&(f[T]=y))),h==_&&Y&&Y.name!==_&&(D=!0,x=function(){return Y.call(this)}),d&&!j||S[b]===x||c(S,b,x),f[e]=x,h)if(M={values:k(_),keys:O?x:k(v),entries:k(g)},j)for(L in M)(m||D||!(L in S))&&u(S,L,M[L]);else r({target:e,proto:!0,forced:m||D},M);return M}},"7f33":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t=e.defineLocale("yo",{months:"Sẹ́rẹ́_Èrèlè_Ẹrẹ̀nà_Ìgbé_Èbibi_Òkùdu_Agẹmo_Ògún_Owewe_Ọ̀wàrà_Bélú_Ọ̀pẹ̀̀".split("_"),monthsShort:"Sẹ́r_Èrl_Ẹrn_Ìgb_Èbi_Òkù_Agẹ_Ògú_Owe_Ọ̀wà_Bél_Ọ̀pẹ̀̀".split("_"),weekdays:"Àìkú_Ajé_Ìsẹ́gun_Ọjọ́rú_Ọjọ́bọ_Ẹtì_Àbámẹ́ta".split("_"),weekdaysShort:"Àìk_Ajé_Ìsẹ́_Ọjr_Ọjb_Ẹtì_Àbá".split("_"),weekdaysMin:"Àì_Aj_Ìs_Ọr_Ọb_Ẹt_Àb".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[Ònì ni] LT",nextDay:"[Ọ̀la ni] LT",nextWeek:"dddd [Ọsẹ̀ tón'bọ] [ni] LT",lastDay:"[Àna ni] LT",lastWeek:"dddd [Ọsẹ̀ tólọ́] [ni] LT",sameElse:"L"},relativeTime:{future:"ní %s",past:"%s kọjá",s:"ìsẹjú aayá die",ss:"aayá %d",m:"ìsẹjú kan",mm:"ìsẹjú %d",h:"wákati kan",hh:"wákati %d",d:"ọjọ́ kan",dd:"ọjọ́ %d",M:"osù kan",MM:"osù %d",y:"ọdún kan",yy:"ọdún %d"},dayOfMonthOrdinalParse:/ọjọ́\s\d{1,2}/,ordinal:"ọjọ́ %d",week:{dow:1,doy:4}});return t}))},"7f9a":function(e,t,n){var i=n("da84"),r=n("8925"),o=i.WeakMap;e.exports="function"===typeof o&&/native code/.test(r(o))},8155:function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e=t.defineLocale("yo",{months:"Sẹ́rẹ́_Èrèlè_Ẹrẹ̀nà_Ìgbé_Èbibi_Òkùdu_Agẹmo_Ògún_Owewe_Ọ̀wàrà_Bélú_Ọ̀pẹ̀̀".split("_"),monthsShort:"Sẹ́r_Èrl_Ẹrn_Ìgb_Èbi_Òkù_Agẹ_Ògú_Owe_Ọ̀wà_Bél_Ọ̀pẹ̀̀".split("_"),weekdays:"Àìkú_Ajé_Ìsẹ́gun_Ọjọ́rú_Ọjọ́bọ_Ẹtì_Àbámẹ́ta".split("_"),weekdaysShort:"Àìk_Ajé_Ìsẹ́_Ọjr_Ọjb_Ẹtì_Àbá".split("_"),weekdaysMin:"Àì_Aj_Ìs_Ọr_Ọb_Ẹt_Àb".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[Ònì ni] LT",nextDay:"[Ọ̀la ni] LT",nextWeek:"dddd [Ọsẹ̀ tón'bọ] [ni] LT",lastDay:"[Àna ni] LT",lastWeek:"dddd [Ọsẹ̀ tólọ́] [ni] LT",sameElse:"L"},relativeTime:{future:"ní %s",past:"%s kọjá",s:"ìsẹjú aayá die",ss:"aayá %d",m:"ìsẹjú kan",mm:"ìsẹjú %d",h:"wákati kan",hh:"wákati %d",d:"ọjọ́ kan",dd:"ọjọ́ %d",M:"osù kan",MM:"osù %d",y:"ọdún kan",yy:"ọdún %d"},dayOfMonthOrdinalParse:/ọjọ́\s\d{1,2}/,ordinal:"ọjọ́ %d",week:{dow:1,doy:4}});return e}))},"7f9a":function(t,e,n){var r=n("da84"),i=n("8925"),a=r.WeakMap;t.exports="function"===typeof a&&/native code/.test(i(a))},8155:function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -function t(e,t,n,i){var r=e+" ";switch(n){case"s":return t||i?"nekaj sekund":"nekaj sekundami";case"ss":return r+=1===e?t?"sekundo":"sekundi":2===e?t||i?"sekundi":"sekundah":e<5?t||i?"sekunde":"sekundah":"sekund",r;case"m":return t?"ena minuta":"eno minuto";case"mm":return r+=1===e?t?"minuta":"minuto":2===e?t||i?"minuti":"minutama":e<5?t||i?"minute":"minutami":t||i?"minut":"minutami",r;case"h":return t?"ena ura":"eno uro";case"hh":return r+=1===e?t?"ura":"uro":2===e?t||i?"uri":"urama":e<5?t||i?"ure":"urami":t||i?"ur":"urami",r;case"d":return t||i?"en dan":"enim dnem";case"dd":return r+=1===e?t||i?"dan":"dnem":2===e?t||i?"dni":"dnevoma":t||i?"dni":"dnevi",r;case"M":return t||i?"en mesec":"enim mesecem";case"MM":return r+=1===e?t||i?"mesec":"mesecem":2===e?t||i?"meseca":"mesecema":e<5?t||i?"mesece":"meseci":t||i?"mesecev":"meseci",r;case"y":return t||i?"eno leto":"enim letom";case"yy":return r+=1===e?t||i?"leto":"letom":2===e?t||i?"leti":"letoma":e<5?t||i?"leta":"leti":t||i?"let":"leti",r}}var n=e.defineLocale("sl",{months:"januar_februar_marec_april_maj_junij_julij_avgust_september_oktober_november_december".split("_"),monthsShort:"jan._feb._mar._apr._maj._jun._jul._avg._sep._okt._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"nedelja_ponedeljek_torek_sreda_četrtek_petek_sobota".split("_"),weekdaysShort:"ned._pon._tor._sre._čet._pet._sob.".split("_"),weekdaysMin:"ne_po_to_sr_če_pe_so".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD. MM. YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danes ob] LT",nextDay:"[jutri ob] LT",nextWeek:function(){switch(this.day()){case 0:return"[v] [nedeljo] [ob] LT";case 3:return"[v] [sredo] [ob] LT";case 6:return"[v] [soboto] [ob] LT";case 1:case 2:case 4:case 5:return"[v] dddd [ob] LT"}},lastDay:"[včeraj ob] LT",lastWeek:function(){switch(this.day()){case 0:return"[prejšnjo] [nedeljo] [ob] LT";case 3:return"[prejšnjo] [sredo] [ob] LT";case 6:return"[prejšnjo] [soboto] [ob] LT";case 1:case 2:case 4:case 5:return"[prejšnji] dddd [ob] LT"}},sameElse:"L"},relativeTime:{future:"čez %s",past:"pred %s",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}});return n}))},"81e9":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +function e(t,e,n,r){var i=t+" ";switch(n){case"s":return e||r?"nekaj sekund":"nekaj sekundami";case"ss":return i+=1===t?e?"sekundo":"sekundi":2===t?e||r?"sekundi":"sekundah":t<5?e||r?"sekunde":"sekundah":"sekund",i;case"m":return e?"ena minuta":"eno minuto";case"mm":return i+=1===t?e?"minuta":"minuto":2===t?e||r?"minuti":"minutama":t<5?e||r?"minute":"minutami":e||r?"minut":"minutami",i;case"h":return e?"ena ura":"eno uro";case"hh":return i+=1===t?e?"ura":"uro":2===t?e||r?"uri":"urama":t<5?e||r?"ure":"urami":e||r?"ur":"urami",i;case"d":return e||r?"en dan":"enim dnem";case"dd":return i+=1===t?e||r?"dan":"dnem":2===t?e||r?"dni":"dnevoma":e||r?"dni":"dnevi",i;case"M":return e||r?"en mesec":"enim mesecem";case"MM":return i+=1===t?e||r?"mesec":"mesecem":2===t?e||r?"meseca":"mesecema":t<5?e||r?"mesece":"meseci":e||r?"mesecev":"meseci",i;case"y":return e||r?"eno leto":"enim letom";case"yy":return i+=1===t?e||r?"leto":"letom":2===t?e||r?"leti":"letoma":t<5?e||r?"leta":"leti":e||r?"let":"leti",i}}var n=t.defineLocale("sl",{months:"januar_februar_marec_april_maj_junij_julij_avgust_september_oktober_november_december".split("_"),monthsShort:"jan._feb._mar._apr._maj._jun._jul._avg._sep._okt._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"nedelja_ponedeljek_torek_sreda_četrtek_petek_sobota".split("_"),weekdaysShort:"ned._pon._tor._sre._čet._pet._sob.".split("_"),weekdaysMin:"ne_po_to_sr_če_pe_so".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD. MM. YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danes ob] LT",nextDay:"[jutri ob] LT",nextWeek:function(){switch(this.day()){case 0:return"[v] [nedeljo] [ob] LT";case 3:return"[v] [sredo] [ob] LT";case 6:return"[v] [soboto] [ob] LT";case 1:case 2:case 4:case 5:return"[v] dddd [ob] LT"}},lastDay:"[včeraj ob] LT",lastWeek:function(){switch(this.day()){case 0:return"[prejšnjo] [nedeljo] [ob] LT";case 3:return"[prejšnjo] [sredo] [ob] LT";case 6:return"[prejšnjo] [soboto] [ob] LT";case 1:case 2:case 4:case 5:return"[prejšnji] dddd [ob] LT"}},sameElse:"L"},relativeTime:{future:"čez %s",past:"pred %s",s:e,ss:e,m:e,mm:e,h:e,hh:e,d:e,dd:e,M:e,MM:e,y:e,yy:e},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}});return n}))},"81e9":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t="nolla yksi kaksi kolme neljä viisi kuusi seitsemän kahdeksan yhdeksän".split(" "),n=["nolla","yhden","kahden","kolmen","neljän","viiden","kuuden",t[7],t[8],t[9]];function i(e,t,n,i){var o="";switch(n){case"s":return i?"muutaman sekunnin":"muutama sekunti";case"ss":o=i?"sekunnin":"sekuntia";break;case"m":return i?"minuutin":"minuutti";case"mm":o=i?"minuutin":"minuuttia";break;case"h":return i?"tunnin":"tunti";case"hh":o=i?"tunnin":"tuntia";break;case"d":return i?"päivän":"päivä";case"dd":o=i?"päivän":"päivää";break;case"M":return i?"kuukauden":"kuukausi";case"MM":o=i?"kuukauden":"kuukautta";break;case"y":return i?"vuoden":"vuosi";case"yy":o=i?"vuoden":"vuotta";break}return o=r(e,i)+" "+o,o}function r(e,i){return e<10?i?n[e]:t[e]:e}var o=e.defineLocale("fi",{months:"tammikuu_helmikuu_maaliskuu_huhtikuu_toukokuu_kesäkuu_heinäkuu_elokuu_syyskuu_lokakuu_marraskuu_joulukuu".split("_"),monthsShort:"tammi_helmi_maalis_huhti_touko_kesä_heinä_elo_syys_loka_marras_joulu".split("_"),weekdays:"sunnuntai_maanantai_tiistai_keskiviikko_torstai_perjantai_lauantai".split("_"),weekdaysShort:"su_ma_ti_ke_to_pe_la".split("_"),weekdaysMin:"su_ma_ti_ke_to_pe_la".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD.MM.YYYY",LL:"Do MMMM[ta] YYYY",LLL:"Do MMMM[ta] YYYY, [klo] HH.mm",LLLL:"dddd, Do MMMM[ta] YYYY, [klo] HH.mm",l:"D.M.YYYY",ll:"Do MMM YYYY",lll:"Do MMM YYYY, [klo] HH.mm",llll:"ddd, Do MMM YYYY, [klo] HH.mm"},calendar:{sameDay:"[tänään] [klo] LT",nextDay:"[huomenna] [klo] LT",nextWeek:"dddd [klo] LT",lastDay:"[eilen] [klo] LT",lastWeek:"[viime] dddd[na] [klo] LT",sameElse:"L"},relativeTime:{future:"%s päästä",past:"%s sitten",s:i,ss:i,m:i,mm:i,h:i,hh:i,d:i,dd:i,M:i,MM:i,y:i,yy:i},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return o}))},8230:function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e="nolla yksi kaksi kolme neljä viisi kuusi seitsemän kahdeksan yhdeksän".split(" "),n=["nolla","yhden","kahden","kolmen","neljän","viiden","kuuden",e[7],e[8],e[9]];function r(t,e,n,r){var a="";switch(n){case"s":return r?"muutaman sekunnin":"muutama sekunti";case"ss":a=r?"sekunnin":"sekuntia";break;case"m":return r?"minuutin":"minuutti";case"mm":a=r?"minuutin":"minuuttia";break;case"h":return r?"tunnin":"tunti";case"hh":a=r?"tunnin":"tuntia";break;case"d":return r?"päivän":"päivä";case"dd":a=r?"päivän":"päivää";break;case"M":return r?"kuukauden":"kuukausi";case"MM":a=r?"kuukauden":"kuukautta";break;case"y":return r?"vuoden":"vuosi";case"yy":a=r?"vuoden":"vuotta";break}return a=i(t,r)+" "+a,a}function i(t,r){return t<10?r?n[t]:e[t]:t}var a=t.defineLocale("fi",{months:"tammikuu_helmikuu_maaliskuu_huhtikuu_toukokuu_kesäkuu_heinäkuu_elokuu_syyskuu_lokakuu_marraskuu_joulukuu".split("_"),monthsShort:"tammi_helmi_maalis_huhti_touko_kesä_heinä_elo_syys_loka_marras_joulu".split("_"),weekdays:"sunnuntai_maanantai_tiistai_keskiviikko_torstai_perjantai_lauantai".split("_"),weekdaysShort:"su_ma_ti_ke_to_pe_la".split("_"),weekdaysMin:"su_ma_ti_ke_to_pe_la".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD.MM.YYYY",LL:"Do MMMM[ta] YYYY",LLL:"Do MMMM[ta] YYYY, [klo] HH.mm",LLLL:"dddd, Do MMMM[ta] YYYY, [klo] HH.mm",l:"D.M.YYYY",ll:"Do MMM YYYY",lll:"Do MMM YYYY, [klo] HH.mm",llll:"ddd, Do MMM YYYY, [klo] HH.mm"},calendar:{sameDay:"[tänään] [klo] LT",nextDay:"[huomenna] [klo] LT",nextWeek:"dddd [klo] LT",lastDay:"[eilen] [klo] LT",lastWeek:"[viime] dddd[na] [klo] LT",sameElse:"L"},relativeTime:{future:"%s päästä",past:"%s sitten",s:r,ss:r,m:r,mm:r,h:r,hh:r,d:r,dd:r,M:r,MM:r,y:r,yy:r},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return a}))},8230:function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t={1:"١",2:"٢",3:"٣",4:"٤",5:"٥",6:"٦",7:"٧",8:"٨",9:"٩",0:"٠"},n={"١":"1","٢":"2","٣":"3","٤":"4","٥":"5","٦":"6","٧":"7","٨":"8","٩":"9","٠":"0"},i=e.defineLocale("ar-sa",{months:"يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),monthsShort:"يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/ص|م/,isPM:function(e){return"م"===e},meridiem:function(e,t,n){return e<12?"ص":"م"},calendar:{sameDay:"[اليوم على الساعة] LT",nextDay:"[غدا على الساعة] LT",nextWeek:"dddd [على الساعة] LT",lastDay:"[أمس على الساعة] LT",lastWeek:"dddd [على الساعة] LT",sameElse:"L"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",ss:"%d ثانية",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"},preparse:function(e){return e.replace(/[١٢٣٤٥٦٧٨٩٠]/g,(function(e){return n[e]})).replace(/،/g,",")},postformat:function(e){return e.replace(/\d/g,(function(e){return t[e]})).replace(/,/g,"،")},week:{dow:0,doy:6}});return i}))},"825a":function(e,t,n){var i=n("861d");e.exports=function(e){if(!i(e))throw TypeError(String(e)+" is not an object");return e}},"83ab":function(e,t,n){var i=n("d039");e.exports=!i((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},"83b9":function(e,t,n){"use strict";var i=n("d925"),r=n("e683");e.exports=function(e,t){return e&&!i(t)?r(e,t):t}},8418:function(e,t,n){"use strict";var i=n("c04e"),r=n("9bf2"),o=n("5c6c");e.exports=function(e,t,n){var a=i(t);a in e?r.f(e,a,o(0,n)):e[a]=n}},"841c":function(e,t,n){"use strict";var i=n("d784"),r=n("825a"),o=n("1d80"),a=n("129f"),s=n("14c3");i("search",1,(function(e,t,n){return[function(t){var n=o(this),i=void 0==t?void 0:t[e];return void 0!==i?i.call(t,n):new RegExp(t)[e](String(n))},function(e){var i=n(t,e,this);if(i.done)return i.value;var o=r(e),c=String(this),u=o.lastIndex;a(u,0)||(o.lastIndex=0);var d=s(o,c);return a(o.lastIndex,u)||(o.lastIndex=u),null===d?-1:d.index}]}))},"84aa":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e={1:"١",2:"٢",3:"٣",4:"٤",5:"٥",6:"٦",7:"٧",8:"٨",9:"٩",0:"٠"},n={"١":"1","٢":"2","٣":"3","٤":"4","٥":"5","٦":"6","٧":"7","٨":"8","٩":"9","٠":"0"},r=t.defineLocale("ar-sa",{months:"يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),monthsShort:"يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/ص|م/,isPM:function(t){return"م"===t},meridiem:function(t,e,n){return t<12?"ص":"م"},calendar:{sameDay:"[اليوم على الساعة] LT",nextDay:"[غدا على الساعة] LT",nextWeek:"dddd [على الساعة] LT",lastDay:"[أمس على الساعة] LT",lastWeek:"dddd [على الساعة] LT",sameElse:"L"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",ss:"%d ثانية",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"},preparse:function(t){return t.replace(/[١٢٣٤٥٦٧٨٩٠]/g,(function(t){return n[t]})).replace(/،/g,",")},postformat:function(t){return t.replace(/\d/g,(function(t){return e[t]})).replace(/,/g,"،")},week:{dow:0,doy:6}});return r}))},"825a":function(t,e,n){var r=n("861d");t.exports=function(t){if(!r(t))throw TypeError(String(t)+" is not an object");return t}},"83ab":function(t,e,n){var r=n("d039");t.exports=!r((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},"83b9":function(t,e,n){"use strict";var r=n("d925"),i=n("e683");t.exports=function(t,e){return t&&!r(e)?i(t,e):e}},8418:function(t,e,n){"use strict";var r=n("c04e"),i=n("9bf2"),a=n("5c6c");t.exports=function(t,e,n){var o=r(e);o in t?i.f(t,o,a(0,n)):t[o]=n}},"841c":function(t,e,n){"use strict";var r=n("d784"),i=n("825a"),a=n("1d80"),o=n("129f"),s=n("14c3");r("search",1,(function(t,e,n){return[function(e){var n=a(this),r=void 0==e?void 0:e[t];return void 0!==r?r.call(e,n):new RegExp(e)[t](String(n))},function(t){var r=n(e,t,this);if(r.done)return r.value;var a=i(t),c=String(this),u=a.lastIndex;o(u,0)||(a.lastIndex=0);var l=s(a,c);return o(a.lastIndex,u)||(a.lastIndex=u),null===l?-1:l.index}]}))},"84aa":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t=e.defineLocale("bg",{months:"януари_февруари_март_април_май_юни_юли_август_септември_октомври_ноември_декември".split("_"),monthsShort:"яну_фев_мар_апр_май_юни_юли_авг_сеп_окт_ное_дек".split("_"),weekdays:"неделя_понеделник_вторник_сряда_четвъртък_петък_събота".split("_"),weekdaysShort:"нед_пон_вто_сря_чет_пет_съб".split("_"),weekdaysMin:"нд_пн_вт_ср_чт_пт_сб".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"D.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd, D MMMM YYYY H:mm"},calendar:{sameDay:"[Днес в] LT",nextDay:"[Утре в] LT",nextWeek:"dddd [в] LT",lastDay:"[Вчера в] LT",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return"[Миналата] dddd [в] LT";case 1:case 2:case 4:case 5:return"[Миналия] dddd [в] LT"}},sameElse:"L"},relativeTime:{future:"след %s",past:"преди %s",s:"няколко секунди",ss:"%d секунди",m:"минута",mm:"%d минути",h:"час",hh:"%d часа",d:"ден",dd:"%d дена",w:"седмица",ww:"%d седмици",M:"месец",MM:"%d месеца",y:"година",yy:"%d години"},dayOfMonthOrdinalParse:/\d{1,2}-(ев|ен|ти|ви|ри|ми)/,ordinal:function(e){var t=e%10,n=e%100;return 0===e?e+"-ев":0===n?e+"-ен":n>10&&n<20?e+"-ти":1===t?e+"-ви":2===t?e+"-ри":7===t||8===t?e+"-ми":e+"-ти"},week:{dow:1,doy:7}});return t}))},"861d":function(e,t){e.exports=function(e){return"object"===typeof e?null!==e:"function"===typeof e}},8689:function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e=t.defineLocale("bg",{months:"януари_февруари_март_април_май_юни_юли_август_септември_октомври_ноември_декември".split("_"),monthsShort:"яну_фев_мар_апр_май_юни_юли_авг_сеп_окт_ное_дек".split("_"),weekdays:"неделя_понеделник_вторник_сряда_четвъртък_петък_събота".split("_"),weekdaysShort:"нед_пон_вто_сря_чет_пет_съб".split("_"),weekdaysMin:"нд_пн_вт_ср_чт_пт_сб".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"D.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd, D MMMM YYYY H:mm"},calendar:{sameDay:"[Днес в] LT",nextDay:"[Утре в] LT",nextWeek:"dddd [в] LT",lastDay:"[Вчера в] LT",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return"[Миналата] dddd [в] LT";case 1:case 2:case 4:case 5:return"[Миналия] dddd [в] LT"}},sameElse:"L"},relativeTime:{future:"след %s",past:"преди %s",s:"няколко секунди",ss:"%d секунди",m:"минута",mm:"%d минути",h:"час",hh:"%d часа",d:"ден",dd:"%d дена",w:"седмица",ww:"%d седмици",M:"месец",MM:"%d месеца",y:"година",yy:"%d години"},dayOfMonthOrdinalParse:/\d{1,2}-(ев|ен|ти|ви|ри|ми)/,ordinal:function(t){var e=t%10,n=t%100;return 0===t?t+"-ев":0===n?t+"-ен":n>10&&n<20?t+"-ти":1===e?t+"-ви":2===e?t+"-ри":7===e||8===e?t+"-ми":t+"-ти"},week:{dow:1,doy:7}});return e}))},"857a":function(t,e,n){var r=n("1d80"),i=/"/g;t.exports=function(t,e,n,a){var o=String(r(t)),s="<"+e;return""!==n&&(s+=" "+n+'="'+String(a).replace(i,""")+'"'),s+">"+o+""}},"861d":function(t,e){t.exports=function(t){return"object"===typeof t?null!==t:"function"===typeof t}},8689:function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t={1:"၁",2:"၂",3:"၃",4:"၄",5:"၅",6:"၆",7:"၇",8:"၈",9:"၉",0:"၀"},n={"၁":"1","၂":"2","၃":"3","၄":"4","၅":"5","၆":"6","၇":"7","၈":"8","၉":"9","၀":"0"},i=e.defineLocale("my",{months:"ဇန်နဝါရီ_ဖေဖော်ဝါရီ_မတ်_ဧပြီ_မေ_ဇွန်_ဇူလိုင်_သြဂုတ်_စက်တင်ဘာ_အောက်တိုဘာ_နိုဝင်ဘာ_ဒီဇင်ဘာ".split("_"),monthsShort:"ဇန်_ဖေ_မတ်_ပြီ_မေ_ဇွန်_လိုင်_သြ_စက်_အောက်_နို_ဒီ".split("_"),weekdays:"တနင်္ဂနွေ_တနင်္လာ_အင်္ဂါ_ဗုဒ္ဓဟူး_ကြာသပတေး_သောကြာ_စနေ".split("_"),weekdaysShort:"နွေ_လာ_ဂါ_ဟူး_ကြာ_သော_နေ".split("_"),weekdaysMin:"နွေ_လာ_ဂါ_ဟူး_ကြာ_သော_နေ".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[ယနေ.] LT [မှာ]",nextDay:"[မနက်ဖြန်] LT [မှာ]",nextWeek:"dddd LT [မှာ]",lastDay:"[မနေ.က] LT [မှာ]",lastWeek:"[ပြီးခဲ့သော] dddd LT [မှာ]",sameElse:"L"},relativeTime:{future:"လာမည့် %s မှာ",past:"လွန်ခဲ့သော %s က",s:"စက္ကန်.အနည်းငယ်",ss:"%d စက္ကန့်",m:"တစ်မိနစ်",mm:"%d မိနစ်",h:"တစ်နာရီ",hh:"%d နာရီ",d:"တစ်ရက်",dd:"%d ရက်",M:"တစ်လ",MM:"%d လ",y:"တစ်နှစ်",yy:"%d နှစ်"},preparse:function(e){return e.replace(/[၁၂၃၄၅၆၇၈၉၀]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\d/g,(function(e){return t[e]}))},week:{dow:1,doy:4}});return i}))},8840:function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e={1:"၁",2:"၂",3:"၃",4:"၄",5:"၅",6:"၆",7:"၇",8:"၈",9:"၉",0:"၀"},n={"၁":"1","၂":"2","၃":"3","၄":"4","၅":"5","၆":"6","၇":"7","၈":"8","၉":"9","၀":"0"},r=t.defineLocale("my",{months:"ဇန်နဝါရီ_ဖေဖော်ဝါရီ_မတ်_ဧပြီ_မေ_ဇွန်_ဇူလိုင်_သြဂုတ်_စက်တင်ဘာ_အောက်တိုဘာ_နိုဝင်ဘာ_ဒီဇင်ဘာ".split("_"),monthsShort:"ဇန်_ဖေ_မတ်_ပြီ_မေ_ဇွန်_လိုင်_သြ_စက်_အောက်_နို_ဒီ".split("_"),weekdays:"တနင်္ဂနွေ_တနင်္လာ_အင်္ဂါ_ဗုဒ္ဓဟူး_ကြာသပတေး_သောကြာ_စနေ".split("_"),weekdaysShort:"နွေ_လာ_ဂါ_ဟူး_ကြာ_သော_နေ".split("_"),weekdaysMin:"နွေ_လာ_ဂါ_ဟူး_ကြာ_သော_နေ".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[ယနေ.] LT [မှာ]",nextDay:"[မနက်ဖြန်] LT [မှာ]",nextWeek:"dddd LT [မှာ]",lastDay:"[မနေ.က] LT [မှာ]",lastWeek:"[ပြီးခဲ့သော] dddd LT [မှာ]",sameElse:"L"},relativeTime:{future:"လာမည့် %s မှာ",past:"လွန်ခဲ့သော %s က",s:"စက္ကန်.အနည်းငယ်",ss:"%d စက္ကန့်",m:"တစ်မိနစ်",mm:"%d မိနစ်",h:"တစ်နာရီ",hh:"%d နာရီ",d:"တစ်ရက်",dd:"%d ရက်",M:"တစ်လ",MM:"%d လ",y:"တစ်နှစ်",yy:"%d နှစ်"},preparse:function(t){return t.replace(/[၁၂၃၄၅၆၇၈၉၀]/g,(function(t){return n[t]}))},postformat:function(t){return t.replace(/\d/g,(function(t){return e[t]}))},week:{dow:1,doy:4}});return r}))},8840:function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t=e.defineLocale("gl",{months:"xaneiro_febreiro_marzo_abril_maio_xuño_xullo_agosto_setembro_outubro_novembro_decembro".split("_"),monthsShort:"xan._feb._mar._abr._mai._xuñ._xul._ago._set._out._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"domingo_luns_martes_mércores_xoves_venres_sábado".split("_"),weekdaysShort:"dom._lun._mar._mér._xov._ven._sáb.".split("_"),weekdaysMin:"do_lu_ma_mé_xo_ve_sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY H:mm",LLLL:"dddd, D [de] MMMM [de] YYYY H:mm"},calendar:{sameDay:function(){return"[hoxe "+(1!==this.hours()?"ás":"á")+"] LT"},nextDay:function(){return"[mañá "+(1!==this.hours()?"ás":"á")+"] LT"},nextWeek:function(){return"dddd ["+(1!==this.hours()?"ás":"a")+"] LT"},lastDay:function(){return"[onte "+(1!==this.hours()?"á":"a")+"] LT"},lastWeek:function(){return"[o] dddd [pasado "+(1!==this.hours()?"ás":"a")+"] LT"},sameElse:"L"},relativeTime:{future:function(e){return 0===e.indexOf("un")?"n"+e:"en "+e},past:"hai %s",s:"uns segundos",ss:"%d segundos",m:"un minuto",mm:"%d minutos",h:"unha hora",hh:"%d horas",d:"un día",dd:"%d días",M:"un mes",MM:"%d meses",y:"un ano",yy:"%d anos"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}});return t}))},8925:function(e,t,n){var i=n("c6cd"),r=Function.toString;"function"!=typeof i.inspectSource&&(i.inspectSource=function(e){return r.call(e)}),e.exports=i.inspectSource},"898b":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e=t.defineLocale("gl",{months:"xaneiro_febreiro_marzo_abril_maio_xuño_xullo_agosto_setembro_outubro_novembro_decembro".split("_"),monthsShort:"xan._feb._mar._abr._mai._xuñ._xul._ago._set._out._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"domingo_luns_martes_mércores_xoves_venres_sábado".split("_"),weekdaysShort:"dom._lun._mar._mér._xov._ven._sáb.".split("_"),weekdaysMin:"do_lu_ma_mé_xo_ve_sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY H:mm",LLLL:"dddd, D [de] MMMM [de] YYYY H:mm"},calendar:{sameDay:function(){return"[hoxe "+(1!==this.hours()?"ás":"á")+"] LT"},nextDay:function(){return"[mañá "+(1!==this.hours()?"ás":"á")+"] LT"},nextWeek:function(){return"dddd ["+(1!==this.hours()?"ás":"a")+"] LT"},lastDay:function(){return"[onte "+(1!==this.hours()?"á":"a")+"] LT"},lastWeek:function(){return"[o] dddd [pasado "+(1!==this.hours()?"ás":"a")+"] LT"},sameElse:"L"},relativeTime:{future:function(t){return 0===t.indexOf("un")?"n"+t:"en "+t},past:"hai %s",s:"uns segundos",ss:"%d segundos",m:"un minuto",mm:"%d minutos",h:"unha hora",hh:"%d horas",d:"un día",dd:"%d días",M:"un mes",MM:"%d meses",y:"un ano",yy:"%d anos"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}});return e}))},8925:function(t,e,n){var r=n("c6cd"),i=Function.toString;"function"!=typeof r.inspectSource&&(r.inspectSource=function(t){return i.call(t)}),t.exports=r.inspectSource},"898b":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),n="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),i=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],r=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,o=e.defineLocale("es",{months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(e,i){return e?/-MMM-/.test(i)?n[e.month()]:t[e.month()]:t},monthsRegex:r,monthsShortRegex:r,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,monthsParse:i,longMonthsParse:i,shortMonthsParse:i,weekdays:"domingo_lunes_martes_miércoles_jueves_viernes_sábado".split("_"),weekdaysShort:"dom._lun._mar._mié._jue._vie._sáb.".split("_"),weekdaysMin:"do_lu_ma_mi_ju_vi_sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY H:mm",LLLL:"dddd, D [de] MMMM [de] YYYY H:mm"},calendar:{sameDay:function(){return"[hoy a la"+(1!==this.hours()?"s":"")+"] LT"},nextDay:function(){return"[mañana a la"+(1!==this.hours()?"s":"")+"] LT"},nextWeek:function(){return"dddd [a la"+(1!==this.hours()?"s":"")+"] LT"},lastDay:function(){return"[ayer a la"+(1!==this.hours()?"s":"")+"] LT"},lastWeek:function(){return"[el] dddd [pasado a la"+(1!==this.hours()?"s":"")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"hace %s",s:"unos segundos",ss:"%d segundos",m:"un minuto",mm:"%d minutos",h:"una hora",hh:"%d horas",d:"un día",dd:"%d días",w:"una semana",ww:"%d semanas",M:"un mes",MM:"%d meses",y:"un año",yy:"%d años"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4},invalidDate:"Fecha inválida"});return o}))},"8aa5":function(e,t,n){"use strict";var i=n("6547").charAt;e.exports=function(e,t,n){return t+(n?i(e,t).length:1)}},"8c18":function(e,t,n){"use strict";n.d(t,"a",(function(){return s}));var i=n("a026"),r=n("9b76"),o=n("365c"),a=n("2326"),s=i["default"].extend({methods:{hasNormalizedSlot:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:r["i"],t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.$scopedSlots,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:this.$slots;return Object(o["a"])(e,t,n)},normalizeSlot:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:r["i"],t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:this.$scopedSlots,i=arguments.length>3&&void 0!==arguments[3]?arguments[3]:this.$slots,s=Object(o["b"])(e,t,n,i);return s?Object(a["b"])(s):s}}})},"8c4e":function(e,t,n){"use strict";n.d(t,"a",(function(){return d}));var i=n("a026"),r=n("c9a9"),o=n("3c21"),a=n("d82f");function s(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var c=function(e){return!e||0===Object(a["h"])(e).length},u=function(e){return{handler:function(t,n){if(!Object(o["a"])(t,n))if(c(t)||c(n))this[e]=Object(r["a"])(t);else{for(var i in n)Object(a["g"])(t,i)||this.$delete(this.$data[e],i);for(var s in t)this.$set(this.$data[e],s,t[s])}}}},d=function(e,t){return i["default"].extend({data:function(){return s({},t,Object(r["a"])(this[e]))},watch:s({},e,u(t))})}},"8d32":function(e,t,n){"use strict";n.d(t,"a",(function(){return a}));var i=n("a026"),r=n("be29");function o(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var a=i["default"].extend({computed:{scopedStyleAttrs:function(){var e=Object(r["a"])(this.$parent);return e?o({},e,""):{}}}})},"8d47":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),n="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),r=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],i=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,a=t.defineLocale("es",{months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(t,r){return t?/-MMM-/.test(r)?n[t.month()]:e[t.month()]:e},monthsRegex:i,monthsShortRegex:i,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,monthsParse:r,longMonthsParse:r,shortMonthsParse:r,weekdays:"domingo_lunes_martes_miércoles_jueves_viernes_sábado".split("_"),weekdaysShort:"dom._lun._mar._mié._jue._vie._sáb.".split("_"),weekdaysMin:"do_lu_ma_mi_ju_vi_sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY H:mm",LLLL:"dddd, D [de] MMMM [de] YYYY H:mm"},calendar:{sameDay:function(){return"[hoy a la"+(1!==this.hours()?"s":"")+"] LT"},nextDay:function(){return"[mañana a la"+(1!==this.hours()?"s":"")+"] LT"},nextWeek:function(){return"dddd [a la"+(1!==this.hours()?"s":"")+"] LT"},lastDay:function(){return"[ayer a la"+(1!==this.hours()?"s":"")+"] LT"},lastWeek:function(){return"[el] dddd [pasado a la"+(1!==this.hours()?"s":"")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"hace %s",s:"unos segundos",ss:"%d segundos",m:"un minuto",mm:"%d minutos",h:"una hora",hh:"%d horas",d:"un día",dd:"%d días",w:"una semana",ww:"%d semanas",M:"un mes",MM:"%d meses",y:"un año",yy:"%d años"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4},invalidDate:"Fecha inválida"});return a}))},"8aa5":function(t,e,n){"use strict";var r=n("6547").charAt;t.exports=function(t,e,n){return e+(n?r(t,e).length:1)}},"8c18":function(t,e,n){"use strict";n.d(e,"a",(function(){return s}));var r=n("a026"),i=n("9b76"),a=n("365c"),o=n("2326"),s=r["default"].extend({methods:{hasNormalizedSlot:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:i["i"],e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.$scopedSlots,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:this.$slots;return Object(a["a"])(t,e,n)},normalizeSlot:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:i["i"],e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:this.$scopedSlots,r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:this.$slots,s=Object(a["b"])(t,e,n,r);return s?Object(o["b"])(s):s}}})},"8c4e":function(t,e,n){"use strict";n.d(e,"a",(function(){return l}));var r=n("a026"),i=n("c9a9"),a=n("3c21"),o=n("d82f");function s(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var c=function(t){return!t||0===Object(o["h"])(t).length},u=function(t){return{handler:function(e,n){if(!Object(a["a"])(e,n))if(c(e)||c(n))this[t]=Object(i["a"])(e);else{for(var r in n)Object(o["g"])(e,r)||this.$delete(this.$data[t],r);for(var s in e)this.$set(this.$data[t],s,e[s])}}}},l=function(t,e){return r["default"].extend({data:function(){return s({},e,Object(i["a"])(this[t]))},watch:s({},t,u(e))})}},"8d32":function(t,e,n){"use strict";n.d(e,"a",(function(){return o}));var r=n("a026"),i=n("be29");function a(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var o=r["default"].extend({computed:{scopedStyleAttrs:function(){var t=Object(i["a"])(this.$parent);return t?a({},t,""):{}}}})},"8d47":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -function t(e){return"undefined"!==typeof Function&&e instanceof Function||"[object Function]"===Object.prototype.toString.call(e)}var n=e.defineLocale("el",{monthsNominativeEl:"Ιανουάριος_Φεβρουάριος_Μάρτιος_Απρίλιος_Μάιος_Ιούνιος_Ιούλιος_Αύγουστος_Σεπτέμβριος_Οκτώβριος_Νοέμβριος_Δεκέμβριος".split("_"),monthsGenitiveEl:"Ιανουαρίου_Φεβρουαρίου_Μαρτίου_Απριλίου_Μαΐου_Ιουνίου_Ιουλίου_Αυγούστου_Σεπτεμβρίου_Οκτωβρίου_Νοεμβρίου_Δεκεμβρίου".split("_"),months:function(e,t){return e?"string"===typeof t&&/D/.test(t.substring(0,t.indexOf("MMMM")))?this._monthsGenitiveEl[e.month()]:this._monthsNominativeEl[e.month()]:this._monthsNominativeEl},monthsShort:"Ιαν_Φεβ_Μαρ_Απρ_Μαϊ_Ιουν_Ιουλ_Αυγ_Σεπ_Οκτ_Νοε_Δεκ".split("_"),weekdays:"Κυριακή_Δευτέρα_Τρίτη_Τετάρτη_Πέμπτη_Παρασκευή_Σάββατο".split("_"),weekdaysShort:"Κυρ_Δευ_Τρι_Τετ_Πεμ_Παρ_Σαβ".split("_"),weekdaysMin:"Κυ_Δε_Τρ_Τε_Πε_Πα_Σα".split("_"),meridiem:function(e,t,n){return e>11?n?"μμ":"ΜΜ":n?"πμ":"ΠΜ"},isPM:function(e){return"μ"===(e+"").toLowerCase()[0]},meridiemParse:/[ΠΜ]\.?Μ?\.?/i,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendarEl:{sameDay:"[Σήμερα {}] LT",nextDay:"[Αύριο {}] LT",nextWeek:"dddd [{}] LT",lastDay:"[Χθες {}] LT",lastWeek:function(){switch(this.day()){case 6:return"[το προηγούμενο] dddd [{}] LT";default:return"[την προηγούμενη] dddd [{}] LT"}},sameElse:"L"},calendar:function(e,n){var i=this._calendarEl[e],r=n&&n.hours();return t(i)&&(i=i.apply(n)),i.replace("{}",r%12===1?"στη":"στις")},relativeTime:{future:"σε %s",past:"%s πριν",s:"λίγα δευτερόλεπτα",ss:"%d δευτερόλεπτα",m:"ένα λεπτό",mm:"%d λεπτά",h:"μία ώρα",hh:"%d ώρες",d:"μία μέρα",dd:"%d μέρες",M:"ένας μήνας",MM:"%d μήνες",y:"ένας χρόνος",yy:"%d χρόνια"},dayOfMonthOrdinalParse:/\d{1,2}η/,ordinal:"%dη",week:{dow:1,doy:4}});return n}))},"8d57":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +function e(t){return"undefined"!==typeof Function&&t instanceof Function||"[object Function]"===Object.prototype.toString.call(t)}var n=t.defineLocale("el",{monthsNominativeEl:"Ιανουάριος_Φεβρουάριος_Μάρτιος_Απρίλιος_Μάιος_Ιούνιος_Ιούλιος_Αύγουστος_Σεπτέμβριος_Οκτώβριος_Νοέμβριος_Δεκέμβριος".split("_"),monthsGenitiveEl:"Ιανουαρίου_Φεβρουαρίου_Μαρτίου_Απριλίου_Μαΐου_Ιουνίου_Ιουλίου_Αυγούστου_Σεπτεμβρίου_Οκτωβρίου_Νοεμβρίου_Δεκεμβρίου".split("_"),months:function(t,e){return t?"string"===typeof e&&/D/.test(e.substring(0,e.indexOf("MMMM")))?this._monthsGenitiveEl[t.month()]:this._monthsNominativeEl[t.month()]:this._monthsNominativeEl},monthsShort:"Ιαν_Φεβ_Μαρ_Απρ_Μαϊ_Ιουν_Ιουλ_Αυγ_Σεπ_Οκτ_Νοε_Δεκ".split("_"),weekdays:"Κυριακή_Δευτέρα_Τρίτη_Τετάρτη_Πέμπτη_Παρασκευή_Σάββατο".split("_"),weekdaysShort:"Κυρ_Δευ_Τρι_Τετ_Πεμ_Παρ_Σαβ".split("_"),weekdaysMin:"Κυ_Δε_Τρ_Τε_Πε_Πα_Σα".split("_"),meridiem:function(t,e,n){return t>11?n?"μμ":"ΜΜ":n?"πμ":"ΠΜ"},isPM:function(t){return"μ"===(t+"").toLowerCase()[0]},meridiemParse:/[ΠΜ]\.?Μ?\.?/i,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendarEl:{sameDay:"[Σήμερα {}] LT",nextDay:"[Αύριο {}] LT",nextWeek:"dddd [{}] LT",lastDay:"[Χθες {}] LT",lastWeek:function(){switch(this.day()){case 6:return"[το προηγούμενο] dddd [{}] LT";default:return"[την προηγούμενη] dddd [{}] LT"}},sameElse:"L"},calendar:function(t,n){var r=this._calendarEl[t],i=n&&n.hours();return e(r)&&(r=r.apply(n)),r.replace("{}",i%12===1?"στη":"στις")},relativeTime:{future:"σε %s",past:"%s πριν",s:"λίγα δευτερόλεπτα",ss:"%d δευτερόλεπτα",m:"ένα λεπτό",mm:"%d λεπτά",h:"μία ώρα",hh:"%d ώρες",d:"μία μέρα",dd:"%d μέρες",M:"ένας μήνας",MM:"%d μήνες",y:"ένας χρόνος",yy:"%d χρόνια"},dayOfMonthOrdinalParse:/\d{1,2}η/,ordinal:"%dη",week:{dow:1,doy:4}});return n}))},"8d57":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t="styczeń_luty_marzec_kwiecień_maj_czerwiec_lipiec_sierpień_wrzesień_październik_listopad_grudzień".split("_"),n="stycznia_lutego_marca_kwietnia_maja_czerwca_lipca_sierpnia_września_października_listopada_grudnia".split("_"),i=[/^sty/i,/^lut/i,/^mar/i,/^kwi/i,/^maj/i,/^cze/i,/^lip/i,/^sie/i,/^wrz/i,/^paź/i,/^lis/i,/^gru/i];function r(e){return e%10<5&&e%10>1&&~~(e/10)%10!==1}function o(e,t,n){var i=e+" ";switch(n){case"ss":return i+(r(e)?"sekundy":"sekund");case"m":return t?"minuta":"minutę";case"mm":return i+(r(e)?"minuty":"minut");case"h":return t?"godzina":"godzinę";case"hh":return i+(r(e)?"godziny":"godzin");case"ww":return i+(r(e)?"tygodnie":"tygodni");case"MM":return i+(r(e)?"miesiące":"miesięcy");case"yy":return i+(r(e)?"lata":"lat")}}var a=e.defineLocale("pl",{months:function(e,i){return e?/D MMMM/.test(i)?n[e.month()]:t[e.month()]:t},monthsShort:"sty_lut_mar_kwi_maj_cze_lip_sie_wrz_paź_lis_gru".split("_"),monthsParse:i,longMonthsParse:i,shortMonthsParse:i,weekdays:"niedziela_poniedziałek_wtorek_środa_czwartek_piątek_sobota".split("_"),weekdaysShort:"ndz_pon_wt_śr_czw_pt_sob".split("_"),weekdaysMin:"Nd_Pn_Wt_Śr_Cz_Pt_So".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Dziś o] LT",nextDay:"[Jutro o] LT",nextWeek:function(){switch(this.day()){case 0:return"[W niedzielę o] LT";case 2:return"[We wtorek o] LT";case 3:return"[W środę o] LT";case 6:return"[W sobotę o] LT";default:return"[W] dddd [o] LT"}},lastDay:"[Wczoraj o] LT",lastWeek:function(){switch(this.day()){case 0:return"[W zeszłą niedzielę o] LT";case 3:return"[W zeszłą środę o] LT";case 6:return"[W zeszłą sobotę o] LT";default:return"[W zeszły] dddd [o] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"%s temu",s:"kilka sekund",ss:o,m:o,mm:o,h:o,hh:o,d:"1 dzień",dd:"%d dni",w:"tydzień",ww:o,M:"miesiąc",MM:o,y:"rok",yy:o},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return a}))},"8d74":function(e,t,n){var i=n("4cef"),r=/^\s+/;function o(e){return e?e.slice(0,i(e)+1).replace(r,""):e}e.exports=o},"8df4":function(e,t,n){(function(e,t){t(n("c1df"))})(0,(function(e){"use strict"; +var e="styczeń_luty_marzec_kwiecień_maj_czerwiec_lipiec_sierpień_wrzesień_październik_listopad_grudzień".split("_"),n="stycznia_lutego_marca_kwietnia_maja_czerwca_lipca_sierpnia_września_października_listopada_grudnia".split("_"),r=[/^sty/i,/^lut/i,/^mar/i,/^kwi/i,/^maj/i,/^cze/i,/^lip/i,/^sie/i,/^wrz/i,/^paź/i,/^lis/i,/^gru/i];function i(t){return t%10<5&&t%10>1&&~~(t/10)%10!==1}function a(t,e,n){var r=t+" ";switch(n){case"ss":return r+(i(t)?"sekundy":"sekund");case"m":return e?"minuta":"minutę";case"mm":return r+(i(t)?"minuty":"minut");case"h":return e?"godzina":"godzinę";case"hh":return r+(i(t)?"godziny":"godzin");case"ww":return r+(i(t)?"tygodnie":"tygodni");case"MM":return r+(i(t)?"miesiące":"miesięcy");case"yy":return r+(i(t)?"lata":"lat")}}var o=t.defineLocale("pl",{months:function(t,r){return t?/D MMMM/.test(r)?n[t.month()]:e[t.month()]:e},monthsShort:"sty_lut_mar_kwi_maj_cze_lip_sie_wrz_paź_lis_gru".split("_"),monthsParse:r,longMonthsParse:r,shortMonthsParse:r,weekdays:"niedziela_poniedziałek_wtorek_środa_czwartek_piątek_sobota".split("_"),weekdaysShort:"ndz_pon_wt_śr_czw_pt_sob".split("_"),weekdaysMin:"Nd_Pn_Wt_Śr_Cz_Pt_So".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Dziś o] LT",nextDay:"[Jutro o] LT",nextWeek:function(){switch(this.day()){case 0:return"[W niedzielę o] LT";case 2:return"[We wtorek o] LT";case 3:return"[W środę o] LT";case 6:return"[W sobotę o] LT";default:return"[W] dddd [o] LT"}},lastDay:"[Wczoraj o] LT",lastWeek:function(){switch(this.day()){case 0:return"[W zeszłą niedzielę o] LT";case 3:return"[W zeszłą środę o] LT";case 6:return"[W zeszłą sobotę o] LT";default:return"[W zeszły] dddd [o] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"%s temu",s:"kilka sekund",ss:a,m:a,mm:a,h:a,hh:a,d:"1 dzień",dd:"%d dni",w:"tydzień",ww:a,M:"miesiąc",MM:a,y:"rok",yy:a},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return o}))},"8d74":function(t,e,n){var r=n("4cef"),i=/^\s+/;function a(t){return t?t.slice(0,r(t)+1).replace(i,""):t}t.exports=a},"8df4":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict"; //! moment.js locale configuration -var t={1:"۱",2:"۲",3:"۳",4:"۴",5:"۵",6:"۶",7:"۷",8:"۸",9:"۹",0:"۰"},n={"۱":"1","۲":"2","۳":"3","۴":"4","۵":"5","۶":"6","۷":"7","۸":"8","۹":"9","۰":"0"},i=e.defineLocale("fa",{months:"ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر".split("_"),monthsShort:"ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر".split("_"),weekdays:"یک‌شنبه_دوشنبه_سه‌شنبه_چهارشنبه_پنج‌شنبه_جمعه_شنبه".split("_"),weekdaysShort:"یک‌شنبه_دوشنبه_سه‌شنبه_چهارشنبه_پنج‌شنبه_جمعه_شنبه".split("_"),weekdaysMin:"ی_د_س_چ_پ_ج_ش".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},meridiemParse:/قبل از ظهر|بعد از ظهر/,isPM:function(e){return/بعد از ظهر/.test(e)},meridiem:function(e,t,n){return e<12?"قبل از ظهر":"بعد از ظهر"},calendar:{sameDay:"[امروز ساعت] LT",nextDay:"[فردا ساعت] LT",nextWeek:"dddd [ساعت] LT",lastDay:"[دیروز ساعت] LT",lastWeek:"dddd [پیش] [ساعت] LT",sameElse:"L"},relativeTime:{future:"در %s",past:"%s پیش",s:"چند ثانیه",ss:"%d ثانیه",m:"یک دقیقه",mm:"%d دقیقه",h:"یک ساعت",hh:"%d ساعت",d:"یک روز",dd:"%d روز",M:"یک ماه",MM:"%d ماه",y:"یک سال",yy:"%d سال"},preparse:function(e){return e.replace(/[۰-۹]/g,(function(e){return n[e]})).replace(/،/g,",")},postformat:function(e){return e.replace(/\d/g,(function(e){return t[e]})).replace(/,/g,"،")},dayOfMonthOrdinalParse:/\d{1,2}م/,ordinal:"%dم",week:{dow:6,doy:12}});return i}))},"8df4b":function(e,t,n){"use strict";var i=n("7a77");function r(e){if("function"!==typeof e)throw new TypeError("executor must be a function.");var t;this.promise=new Promise((function(e){t=e}));var n=this;e((function(e){n.reason||(n.reason=new i(e),t(n.reason))}))}r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var e,t=new r((function(t){e=t}));return{token:t,cancel:e}},e.exports=r},"8e5f":function(e,t,n){!function(t,n){e.exports=n()}(0,(function(){return function(e){function t(i){if(n[i])return n[i].exports;var r=n[i]={i:i,l:!1,exports:{}};return e[i].call(r.exports,r,r.exports,t),r.l=!0,r.exports}var n={};return t.m=e,t.c=n,t.i=function(e){return e},t.d=function(e,n,i){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:i})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="/",t(t.s=60)}([function(e,t){var n=e.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=n)},function(e,t,n){var i=n(49)("wks"),r=n(30),o=n(0).Symbol,a="function"==typeof o;(e.exports=function(e){return i[e]||(i[e]=a&&o[e]||(a?o:r)("Symbol."+e))}).store=i},function(e,t,n){var i=n(5);e.exports=function(e){if(!i(e))throw TypeError(e+" is not an object!");return e}},function(e,t,n){var i=n(0),r=n(10),o=n(8),a=n(6),s=n(11),c=function(e,t,n){var u,d,l,f,p=e&c.F,h=e&c.G,m=e&c.S,b=e&c.P,g=e&c.B,v=h?i:m?i[t]||(i[t]={}):(i[t]||{}).prototype,y=h?r:r[t]||(r[t]={}),_=y.prototype||(y.prototype={});for(u in h&&(n=t),n)d=!p&&v&&void 0!==v[u],l=(d?v:n)[u],f=g&&d?s(l,i):b&&"function"==typeof l?s(Function.call,l):l,v&&a(v,u,l,e&c.U),y[u]!=l&&o(y,u,f),b&&_[u]!=l&&(_[u]=l)};i.core=r,c.F=1,c.G=2,c.S=4,c.P=8,c.B=16,c.W=32,c.U=64,c.R=128,e.exports=c},function(e,t,n){e.exports=!n(7)((function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a}))},function(e,t){e.exports=function(e){return"object"==typeof e?null!==e:"function"==typeof e}},function(e,t,n){var i=n(0),r=n(8),o=n(12),a=n(30)("src"),s=Function.toString,c=(""+s).split("toString");n(10).inspectSource=function(e){return s.call(e)},(e.exports=function(e,t,n,s){var u="function"==typeof n;u&&(o(n,"name")||r(n,"name",t)),e[t]!==n&&(u&&(o(n,a)||r(n,a,e[t]?""+e[t]:c.join(String(t)))),e===i?e[t]=n:s?e[t]?e[t]=n:r(e,t,n):(delete e[t],r(e,t,n)))})(Function.prototype,"toString",(function(){return"function"==typeof this&&this[a]||s.call(this)}))},function(e,t){e.exports=function(e){try{return!!e()}catch(e){return!0}}},function(e,t,n){var i=n(13),r=n(25);e.exports=n(4)?function(e,t,n){return i.f(e,t,r(1,n))}:function(e,t,n){return e[t]=n,e}},function(e,t){var n={}.toString;e.exports=function(e){return n.call(e).slice(8,-1)}},function(e,t){var n=e.exports={version:"2.5.7"};"number"==typeof __e&&(__e=n)},function(e,t,n){var i=n(14);e.exports=function(e,t,n){if(i(e),void 0===t)return e;switch(n){case 1:return function(n){return e.call(t,n)};case 2:return function(n,i){return e.call(t,n,i)};case 3:return function(n,i,r){return e.call(t,n,i,r)}}return function(){return e.apply(t,arguments)}}},function(e,t){var n={}.hasOwnProperty;e.exports=function(e,t){return n.call(e,t)}},function(e,t,n){var i=n(2),r=n(41),o=n(29),a=Object.defineProperty;t.f=n(4)?Object.defineProperty:function(e,t,n){if(i(e),t=o(t,!0),i(n),r)try{return a(e,t,n)}catch(e){}if("get"in n||"set"in n)throw TypeError("Accessors not supported!");return"value"in n&&(e[t]=n.value),e}},function(e,t){e.exports=function(e){if("function"!=typeof e)throw TypeError(e+" is not a function!");return e}},function(e,t){e.exports={}},function(e,t){e.exports=function(e){if(void 0==e)throw TypeError("Can't call method on "+e);return e}},function(e,t,n){"use strict";var i=n(7);e.exports=function(e,t){return!!e&&i((function(){t?e.call(null,(function(){}),1):e.call(null)}))}},function(e,t,n){var i=n(23),r=n(16);e.exports=function(e){return i(r(e))}},function(e,t,n){var i=n(53),r=Math.min;e.exports=function(e){return e>0?r(i(e),9007199254740991):0}},function(e,t,n){var i=n(11),r=n(23),o=n(28),a=n(19),s=n(64);e.exports=function(e,t){var n=1==e,c=2==e,u=3==e,d=4==e,l=6==e,f=5==e||l,p=t||s;return function(t,s,h){for(var m,b,g=o(t),v=r(g),y=i(s,h,3),_=a(v.length),O=0,j=n?p(t,_):c?p(t,0):void 0;_>O;O++)if((f||O in v)&&(m=v[O],b=y(m,O,g),e))if(n)j[O]=b;else if(b)switch(e){case 3:return!0;case 5:return m;case 6:return O;case 2:j.push(m)}else if(d)return!1;return l?-1:u||d?d:j}}},function(e,t,n){var i=n(5),r=n(0).document,o=i(r)&&i(r.createElement);e.exports=function(e){return o?r.createElement(e):{}}},function(e,t){e.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},function(e,t,n){var i=n(9);e.exports=Object("z").propertyIsEnumerable(0)?Object:function(e){return"String"==i(e)?e.split(""):Object(e)}},function(e,t){e.exports=!1},function(e,t){e.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}}},function(e,t,n){var i=n(13).f,r=n(12),o=n(1)("toStringTag");e.exports=function(e,t,n){e&&!r(e=n?e:e.prototype,o)&&i(e,o,{configurable:!0,value:t})}},function(e,t,n){var i=n(49)("keys"),r=n(30);e.exports=function(e){return i[e]||(i[e]=r(e))}},function(e,t,n){var i=n(16);e.exports=function(e){return Object(i(e))}},function(e,t,n){var i=n(5);e.exports=function(e,t){if(!i(e))return e;var n,r;if(t&&"function"==typeof(n=e.toString)&&!i(r=n.call(e)))return r;if("function"==typeof(n=e.valueOf)&&!i(r=n.call(e)))return r;if(!t&&"function"==typeof(n=e.toString)&&!i(r=n.call(e)))return r;throw TypeError("Can't convert object to primitive value")}},function(e,t){var n=0,i=Math.random();e.exports=function(e){return"Symbol(".concat(void 0===e?"":e,")_",(++n+i).toString(36))}},function(e,t,n){"use strict";var i=n(0),r=n(12),o=n(9),a=n(67),s=n(29),c=n(7),u=n(77).f,d=n(45).f,l=n(13).f,f=n(51).trim,p=i.Number,h=p,m=p.prototype,b="Number"==o(n(44)(m)),g="trim"in String.prototype,v=function(e){var t=s(e,!1);if("string"==typeof t&&t.length>2){t=g?t.trim():f(t,3);var n,i,r,o=t.charCodeAt(0);if(43===o||45===o){if(88===(n=t.charCodeAt(2))||120===n)return NaN}else if(48===o){switch(t.charCodeAt(1)){case 66:case 98:i=2,r=49;break;case 79:case 111:i=8,r=55;break;default:return+t}for(var a,c=t.slice(2),u=0,d=c.length;ur)return NaN;return parseInt(c,i)}}return+t};if(!p(" 0o1")||!p("0b1")||p("+0x1")){p=function(e){var t=arguments.length<1?0:e,n=this;return n instanceof p&&(b?c((function(){m.valueOf.call(n)})):"Number"!=o(n))?a(new h(v(t)),n,p):v(t)};for(var y,_=n(4)?u(h):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger".split(","),O=0;_.length>O;O++)r(h,y=_[O])&&!r(p,y)&&l(p,y,d(h,y));p.prototype=m,m.constructor=p,n(6)(i,"Number",p)}},function(e,t,n){"use strict";function i(e){return 0!==e&&(!(!Array.isArray(e)||0!==e.length)||!e)}function r(e){return function(){return!e.apply(void 0,arguments)}}function o(e,t){return void 0===e&&(e="undefined"),null===e&&(e="null"),!1===e&&(e="false"),-1!==e.toString().toLowerCase().indexOf(t.trim())}function a(e,t,n,i){return e.filter((function(e){return o(i(e,n),t)}))}function s(e){return e.filter((function(e){return!e.$isLabel}))}function c(e,t){return function(n){return n.reduce((function(n,i){return i[e]&&i[e].length?(n.push({$groupLabel:i[t],$isLabel:!0}),n.concat(i[e])):n}),[])}}function u(e,t,i,r,o){return function(s){return s.map((function(s){var c;if(!s[i])return console.warn("Options passed to vue-multiselect do not contain groups, despite the config."),[];var u=a(s[i],e,t,o);return u.length?(c={},n.i(h.a)(c,r,s[r]),n.i(h.a)(c,i,u),c):[]}))}}var d=n(59),l=n(54),f=(n.n(l),n(95)),p=(n.n(f),n(31)),h=(n.n(p),n(58)),m=n(91),b=(n.n(m),n(98)),g=(n.n(b),n(92)),v=(n.n(g),n(88)),y=(n.n(v),n(97)),_=(n.n(y),n(89)),O=(n.n(_),n(96)),j=(n.n(O),n(93)),w=(n.n(j),n(90)),k=(n.n(w),function(){for(var e=arguments.length,t=new Array(e),n=0;n-1},isSelected:function(e){var t=this.trackBy?e[this.trackBy]:e;return this.valueKeys.indexOf(t)>-1},isOptionDisabled:function(e){return!!e.$isDisabled},getOptionLabel:function(e){if(i(e))return"";if(e.isTag)return e.label;if(e.$isLabel)return e.$groupLabel;var t=this.customLabel(e,this.label);return i(t)?"":t},select:function(e,t){if(e.$isLabel&&this.groupSelect)this.selectGroup(e);else if(!(-1!==this.blockKeys.indexOf(t)||this.disabled||e.$isDisabled||e.$isLabel)&&(!this.max||!this.multiple||this.internalValue.length!==this.max)&&("Tab"!==t||this.pointerDirty)){if(e.isTag)this.$emit("tag",e.label,this.id),this.search="",this.closeOnSelect&&!this.multiple&&this.deactivate();else{if(this.isSelected(e))return void("Tab"!==t&&this.removeElement(e));this.$emit("select",e,this.id),this.multiple?this.$emit("input",this.internalValue.concat([e]),this.id):this.$emit("input",e,this.id),this.clearOnSelect&&(this.search="")}this.closeOnSelect&&this.deactivate()}},selectGroup:function(e){var t=this,n=this.options.find((function(n){return n[t.groupLabel]===e.$groupLabel}));if(n)if(this.wholeGroupSelected(n)){this.$emit("remove",n[this.groupValues],this.id);var i=this.internalValue.filter((function(e){return-1===n[t.groupValues].indexOf(e)}));this.$emit("input",i,this.id)}else{var r=n[this.groupValues].filter((function(e){return!(t.isOptionDisabled(e)||t.isSelected(e))}));this.$emit("select",r,this.id),this.$emit("input",this.internalValue.concat(r),this.id)}},wholeGroupSelected:function(e){var t=this;return e[this.groupValues].every((function(e){return t.isSelected(e)||t.isOptionDisabled(e)}))},wholeGroupDisabled:function(e){return e[this.groupValues].every(this.isOptionDisabled)},removeElement:function(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];if(!this.disabled&&!e.$isDisabled){if(!this.allowEmpty&&this.internalValue.length<=1)return void this.deactivate();var i="object"===n.i(d.a)(e)?this.valueKeys.indexOf(e[this.trackBy]):this.valueKeys.indexOf(e);if(this.$emit("remove",e,this.id),this.multiple){var r=this.internalValue.slice(0,i).concat(this.internalValue.slice(i+1));this.$emit("input",r,this.id)}else this.$emit("input",null,this.id);this.closeOnSelect&&t&&this.deactivate()}},removeLastElement:function(){-1===this.blockKeys.indexOf("Delete")&&0===this.search.length&&Array.isArray(this.internalValue)&&this.internalValue.length&&this.removeElement(this.internalValue[this.internalValue.length-1],!1)},activate:function(){var e=this;this.isOpen||this.disabled||(this.adjustPosition(),this.groupValues&&0===this.pointer&&this.filteredOptions.length&&(this.pointer=1),this.isOpen=!0,this.searchable?(this.preserveSearch||(this.search=""),this.$nextTick((function(){return e.$refs.search.focus()}))):this.$el.focus(),this.$emit("open",this.id))},deactivate:function(){this.isOpen&&(this.isOpen=!1,this.searchable?this.$refs.search.blur():this.$el.blur(),this.preserveSearch||(this.search=""),this.$emit("close",this.getValue(),this.id))},toggle:function(){this.isOpen?this.deactivate():this.activate()},adjustPosition:function(){if("undefined"!=typeof window){var e=this.$el.getBoundingClientRect().top,t=window.innerHeight-this.$el.getBoundingClientRect().bottom;t>this.maxHeight||t>e||"below"===this.openDirection||"bottom"===this.openDirection?(this.preferredOpenDirection="below",this.optimizedHeight=Math.min(t-40,this.maxHeight)):(this.preferredOpenDirection="above",this.optimizedHeight=Math.min(e-40,this.maxHeight))}}}}},function(e,t,n){"use strict";var i=n(54),r=(n.n(i),n(31));n.n(r),t.a={data:function(){return{pointer:0,pointerDirty:!1}},props:{showPointer:{type:Boolean,default:!0},optionHeight:{type:Number,default:40}},computed:{pointerPosition:function(){return this.pointer*this.optionHeight},visibleElements:function(){return this.optimizedHeight/this.optionHeight}},watch:{filteredOptions:function(){this.pointerAdjust()},isOpen:function(){this.pointerDirty=!1}},methods:{optionHighlight:function(e,t){return{"multiselect__option--highlight":e===this.pointer&&this.showPointer,"multiselect__option--selected":this.isSelected(t)}},groupHighlight:function(e,t){var n=this;if(!this.groupSelect)return["multiselect__option--group","multiselect__option--disabled"];var i=this.options.find((function(e){return e[n.groupLabel]===t.$groupLabel}));return i&&!this.wholeGroupDisabled(i)?["multiselect__option--group",{"multiselect__option--highlight":e===this.pointer&&this.showPointer},{"multiselect__option--group-selected":this.wholeGroupSelected(i)}]:"multiselect__option--disabled"},addPointerElement:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"Enter",t=e.key;this.filteredOptions.length>0&&this.select(this.filteredOptions[this.pointer],t),this.pointerReset()},pointerForward:function(){this.pointer0?(this.pointer--,this.$refs.list.scrollTop>=this.pointerPosition&&(this.$refs.list.scrollTop=this.pointerPosition),this.filteredOptions[this.pointer]&&this.filteredOptions[this.pointer].$isLabel&&!this.groupSelect&&this.pointerBackward()):this.filteredOptions[this.pointer]&&this.filteredOptions[0].$isLabel&&!this.groupSelect&&this.pointerForward(),this.pointerDirty=!0},pointerReset:function(){this.closeOnSelect&&(this.pointer=0,this.$refs.list&&(this.$refs.list.scrollTop=0))},pointerAdjust:function(){this.pointer>=this.filteredOptions.length-1&&(this.pointer=this.filteredOptions.length?this.filteredOptions.length-1:0),this.filteredOptions.length>0&&this.filteredOptions[this.pointer].$isLabel&&!this.groupSelect&&this.pointerForward()},pointerSet:function(e){this.pointer=e,this.pointerDirty=!0}}}},function(e,t,n){"use strict";var i=n(36),r=n(74),o=n(15),a=n(18);e.exports=n(72)(Array,"Array",(function(e,t){this._t=a(e),this._i=0,this._k=t}),(function(){var e=this._t,t=this._k,n=this._i++;return!e||n>=e.length?(this._t=void 0,r(1)):r(0,"keys"==t?n:"values"==t?e[n]:[n,e[n]])}),"values"),o.Arguments=o.Array,i("keys"),i("values"),i("entries")},function(e,t,n){"use strict";var i=n(31),r=(n.n(i),n(32)),o=n(33);t.a={name:"vue-multiselect",mixins:[r.a,o.a],props:{name:{type:String,default:""},selectLabel:{type:String,default:"Press enter to select"},selectGroupLabel:{type:String,default:"Press enter to select group"},selectedLabel:{type:String,default:"Selected"},deselectLabel:{type:String,default:"Press enter to remove"},deselectGroupLabel:{type:String,default:"Press enter to deselect group"},showLabels:{type:Boolean,default:!0},limit:{type:Number,default:99999},maxHeight:{type:Number,default:300},limitText:{type:Function,default:function(e){return"and ".concat(e," more")}},loading:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},openDirection:{type:String,default:""},showNoOptions:{type:Boolean,default:!0},showNoResults:{type:Boolean,default:!0},tabindex:{type:Number,default:0}},computed:{isSingleLabelVisible:function(){return(this.singleValue||0===this.singleValue)&&(!this.isOpen||!this.searchable)&&!this.visibleValues.length},isPlaceholderVisible:function(){return!(this.internalValue.length||this.searchable&&this.isOpen)},visibleValues:function(){return this.multiple?this.internalValue.slice(0,this.limit):[]},singleValue:function(){return this.internalValue[0]},deselectLabelText:function(){return this.showLabels?this.deselectLabel:""},deselectGroupLabelText:function(){return this.showLabels?this.deselectGroupLabel:""},selectLabelText:function(){return this.showLabels?this.selectLabel:""},selectGroupLabelText:function(){return this.showLabels?this.selectGroupLabel:""},selectedLabelText:function(){return this.showLabels?this.selectedLabel:""},inputStyle:function(){if(this.searchable||this.multiple&&this.value&&this.value.length)return this.isOpen?{width:"100%"}:{width:"0",position:"absolute",padding:"0"}},contentStyle:function(){return this.options.length?{display:"inline-block"}:{display:"block"}},isAbove:function(){return"above"===this.openDirection||"top"===this.openDirection||"below"!==this.openDirection&&"bottom"!==this.openDirection&&"above"===this.preferredOpenDirection},showSearchInput:function(){return this.searchable&&(!this.hasSingleSelectedSlot||!this.visibleSingleValue&&0!==this.visibleSingleValue||this.isOpen)}}}},function(e,t,n){var i=n(1)("unscopables"),r=Array.prototype;void 0==r[i]&&n(8)(r,i,{}),e.exports=function(e){r[i][e]=!0}},function(e,t,n){var i=n(18),r=n(19),o=n(85);e.exports=function(e){return function(t,n,a){var s,c=i(t),u=r(c.length),d=o(a,u);if(e&&n!=n){for(;u>d;)if((s=c[d++])!=s)return!0}else for(;u>d;d++)if((e||d in c)&&c[d]===n)return e||d||0;return!e&&-1}}},function(e,t,n){var i=n(9),r=n(1)("toStringTag"),o="Arguments"==i(function(){return arguments}()),a=function(e,t){try{return e[t]}catch(e){}};e.exports=function(e){var t,n,s;return void 0===e?"Undefined":null===e?"Null":"string"==typeof(n=a(t=Object(e),r))?n:o?i(t):"Object"==(s=i(t))&&"function"==typeof t.callee?"Arguments":s}},function(e,t,n){"use strict";var i=n(2);e.exports=function(){var e=i(this),t="";return e.global&&(t+="g"),e.ignoreCase&&(t+="i"),e.multiline&&(t+="m"),e.unicode&&(t+="u"),e.sticky&&(t+="y"),t}},function(e,t,n){var i=n(0).document;e.exports=i&&i.documentElement},function(e,t,n){e.exports=!n(4)&&!n(7)((function(){return 7!=Object.defineProperty(n(21)("div"),"a",{get:function(){return 7}}).a}))},function(e,t,n){var i=n(9);e.exports=Array.isArray||function(e){return"Array"==i(e)}},function(e,t,n){"use strict";function i(e){var t,n;this.promise=new e((function(e,i){if(void 0!==t||void 0!==n)throw TypeError("Bad Promise constructor");t=e,n=i})),this.resolve=r(t),this.reject=r(n)}var r=n(14);e.exports.f=function(e){return new i(e)}},function(e,t,n){var i=n(2),r=n(76),o=n(22),a=n(27)("IE_PROTO"),s=function(){},c=function(){var e,t=n(21)("iframe"),i=o.length;for(t.style.display="none",n(40).appendChild(t),t.src="javascript:",e=t.contentWindow.document,e.open(),e.write(" + + \ No newline at end of file diff --git a/vue/src/components/LoadingSpinner.vue b/vue/src/components/LoadingSpinner.vue index 42146cbe..07675cfe 100644 --- a/vue/src/components/LoadingSpinner.vue +++ b/vue/src/components/LoadingSpinner.vue @@ -1,9 +1,9 @@ diff --git a/vue/src/components/RecipeCard.vue b/vue/src/components/RecipeCard.vue index c64901f4..c2221b62 100644 --- a/vue/src/components/RecipeCard.vue +++ b/vue/src/components/RecipeCard.vue @@ -5,25 +5,44 @@ - - - -
+ + +
-
+
- + @@ -41,13 +60,19 @@ import RecipeContextMenu from "@/components/RecipeContextMenu"; import Keywords from "@/components/Keywords"; import {resolveDjangoUrl, ResolveUrlMixin} from "@/utils/utils"; +import RecipeRating from "@/components/RecipeRating"; +import moment from "moment/moment"; +import Vue from "vue"; +import LastCooked from "@/components/LastCooked"; + +Vue.prototype.moment = moment export default { name: "RecipeCard", mixins: [ ResolveUrlMixin, ], - components: {Keywords, RecipeContextMenu}, + components: {LastCooked, RecipeRating, Keywords, RecipeContextMenu}, props: { recipe: Object, meal_plan: Object, @@ -81,4 +106,4 @@ export default { \ No newline at end of file + diff --git a/vue/src/components/RecipeContextMenu.vue b/vue/src/components/RecipeContextMenu.vue index 5cabcc1c..01b64dae 100644 --- a/vue/src/components/RecipeContextMenu.vue +++ b/vue/src/components/RecipeContextMenu.vue @@ -1,10 +1,10 @@ diff --git a/vue/src/components/RecipeRating.vue b/vue/src/components/RecipeRating.vue new file mode 100644 index 00000000..9871a474 --- /dev/null +++ b/vue/src/components/RecipeRating.vue @@ -0,0 +1,25 @@ + + + + + \ No newline at end of file diff --git a/vue/src/components/Step.vue b/vue/src/components/Step.vue index ade6671b..23bcbec1 100644 --- a/vue/src/components/Step.vue +++ b/vue/src/components/Step.vue @@ -22,7 +22,7 @@
+ class="shadow-none d-print-none" :class="{ 'text-primary': details_visible, 'text-success': !details_visible}">
@@ -65,7 +65,7 @@
+ class="shadow-none d-print-none" :class="{ 'text-primary': details_visible, 'text-success': !details_visible}">
diff --git a/vue/src/locales/de.json b/vue/src/locales/de.json index 42395ac6..7a3b02fa 100644 --- a/vue/src/locales/de.json +++ b/vue/src/locales/de.json @@ -1,5 +1,5 @@ { - "Import": "Import", + "Import": "Importieren", "import_running": "Import läuft, bitte warten!", "Import_finished": "Import fertig", "View_Recipes": "Rezepte Ansehen", @@ -27,7 +27,7 @@ "min": "Min", "Servings": "Portionen", "Waiting": "Wartezeit", - "Preparation": "Zubereitung", + "Preparation": "Vorbereitung", "Edit": "Bearbeiten", "Open": "Öffnen", "Save": "Speichern", @@ -48,5 +48,28 @@ "Export": "Exportieren", "Rating": "Bewertung", "Close": "Schließen", - "Add": "Hinzufügen" + "Add": "Hinzufügen", + "Copy": "Kopieren", + "New": "Neu", + "Categories": "Kategorien", + "Category": "Kategorie", + "Selected": "Ausgewählt", + "Supermarket": "Supermarkt", + "Files": "Dateien", + "Size": "Größe", + "success_fetching_resource": "Ressource erfolgreich abgerufen!", + "Download": "Herunterladen", + "Success": "Erfolgreich", + "err_fetching_resource": "Ein Fehler trat während dem Abrufen einer Ressource auf!", + "err_creating_resource": "Ein Fehler trat während dem Erstellen einer Ressource auf!", + "err_updating_resource": "Ein Fehler trat während dem Aktualisieren einer Ressource auf!", + "success_creating_resource": "Ressource erfolgreich erstellt!", + "success_updating_resource": "Ressource erfolgreich aktualisiert!", + "File": "Datei", + "Delete": "Löschen", + "err_deleting_resource": "Ein Fehler trat während dem Löschen einer Ressource auf!", + "Cancel": "Abbrechen", + "success_deleting_resource": "Ressource erfolgreich gelöscht!", + "Load_More": "Mehr laden", + "Ok": "Öffnen" } diff --git a/vue/src/locales/en.json b/vue/src/locales/en.json index f00f3621..9bdc3c5b 100644 --- a/vue/src/locales/en.json +++ b/vue/src/locales/en.json @@ -50,9 +50,11 @@ "Date": "Date", "Share": "Share", "Export": "Export", + "Copy": "Copy", "Rating": "Rating", "Close": "Close", "Cancel": "Cancel", + "Link": "Link", "Add": "Add", "New": "New", "Success": "Success", @@ -95,4 +97,4 @@ "Advanced Search Settings": "Advanced Search Settings", "Download": "Download", "Root": "Root" -} \ No newline at end of file +} diff --git a/vue/src/locales/hy.json b/vue/src/locales/hy.json new file mode 100644 index 00000000..a453a9c5 --- /dev/null +++ b/vue/src/locales/hy.json @@ -0,0 +1,76 @@ +{ + "err_fetching_resource": "", + "err_creating_resource": "", + "err_updating_resource": "", + "err_deleting_resource": "", + "success_fetching_resource": "", + "success_creating_resource": "", + "success_updating_resource": "", + "success_deleting_resource": "", + "import_running": "", + "all_fields_optional": "", + "convert_internal": "", + "show_only_internal": "", + "Log_Recipe_Cooking": "", + "External_Recipe_Image": "", + "Add_to_Book": "", + "Add_to_Shopping": "", + "Add_to_Plan": "", + "Step_start_time": "", + "Meal_Plan": "", + "Select_Book": "", + "Recipe_Image": "", + "Import_finished": "", + "View_Recipes": "", + "Log_Cooking": "", + "New_Recipe": "", + "Url_Import": "", + "Reset_Search": "", + "Recently_Viewed": "", + "Load_More": "", + "Keywords": "", + "Books": "", + "Proteins": "", + "Fats": "", + "Carbohydrates": "", + "Calories": "", + "Nutrition": "", + "Date": "", + "Share": "", + "Export": "", + "Copy": "", + "Rating": "", + "Close": "", + "Link": "", + "Add": "", + "New": "", + "Success": "", + "Ingredients": "", + "Supermarket": "", + "Categories": "", + "Category": "", + "Selected": "", + "min": "", + "Servings": "", + "Waiting": "", + "Preparation": "", + "External": "", + "Size": "", + "Files": "", + "File": "", + "Edit": "", + "Cancel": "", + "Delete": "", + "Open": "", + "Ok": "", + "Save": "", + "Step": "", + "Search": "", + "Import": "", + "Print": "", + "Settings": "", + "or": "", + "and": "", + "Information": "", + "Download": "" +} diff --git a/vue/src/utils/openapi/api.ts b/vue/src/utils/openapi/api.ts index d23b6eb7..900e9729 100644 --- a/vue/src/utils/openapi/api.ts +++ b/vue/src/utils/openapi/api.ts @@ -193,6 +193,18 @@ export interface ImportLog { * @memberof ImportLog */ keyword?: ImportLogKeyword; + /** + * + * @type {number} + * @memberof ImportLog + */ + total_recipes?: number; + /** + * + * @type {number} + * @memberof ImportLog + */ + imported_recipes?: number; /** * * @type {string} @@ -631,7 +643,19 @@ export interface MealPlanRecipe { * @type {string} * @memberof MealPlanRecipe */ - file_path?: string; + servings_text?: string; + /** + * + * @type {string} + * @memberof MealPlanRecipe + */ + rating?: string; + /** + * + * @type {string} + * @memberof MealPlanRecipe + */ + last_cooked?: string; } /** * @@ -766,6 +790,18 @@ export interface Recipe { * @memberof Recipe */ servings_text?: string; + /** + * + * @type {string} + * @memberof Recipe + */ + rating?: string; + /** + * + * @type {string} + * @memberof Recipe + */ + last_cooked?: string; } /** * @@ -1047,7 +1083,19 @@ export interface RecipeOverview { * @type {string} * @memberof RecipeOverview */ - file_path?: string; + servings_text?: string; + /** + * + * @type {string} + * @memberof RecipeOverview + */ + rating?: string; + /** + * + * @type {string} + * @memberof RecipeOverview + */ + last_cooked?: string; } /** * @@ -1134,6 +1182,12 @@ export interface RecipeSteps { * @memberof RecipeSteps */ show_as_header?: boolean; + /** + * + * @type {StepFile} + * @memberof RecipeSteps + */ + file?: StepFile | null; } /** @@ -1142,7 +1196,8 @@ export interface RecipeSteps { */ export enum RecipeStepsTypeEnum { Text = 'TEXT', - Time = 'TIME' + Time = 'TIME', + File = 'FILE' } /** @@ -1532,6 +1587,12 @@ export interface Step { * @memberof Step */ show_as_header?: boolean; + /** + * + * @type {StepFile} + * @memberof Step + */ + file?: StepFile | null; } /** @@ -1540,9 +1601,35 @@ export interface Step { */ export enum StepTypeEnum { Text = 'TEXT', - Time = 'TIME' + Time = 'TIME', + File = 'FILE' } +/** + * + * @export + * @interface StepFile + */ +export interface StepFile { + /** + * + * @type {string} + * @memberof StepFile + */ + name: string; + /** + * + * @type {any} + * @memberof StepFile + */ + file?: any; + /** + * + * @type {number} + * @memberof StepFile + */ + id?: number; +} /** * * @export diff --git a/vue/yarn.lock b/vue/yarn.lock index 3a202323..afbb674f 100644 --- a/vue/yarn.lock +++ b/vue/yarn.lock @@ -1206,25 +1206,6 @@ resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.7.tgz#98a993516c859eb0d5c4c8f098317a9ea68db9ad" integrity sha512-cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA== -"@types/lodash.foreach@^4.5.6": - version "4.5.6" - resolved "https://registry.yarnpkg.com/@types/lodash.foreach/-/lodash.foreach-4.5.6.tgz#24735299139a739e436ab4fb8a6a31ca3d54bbb3" - integrity sha512-A8+157A+27zwJSstmW/eWPc9lHLJNEer4jiMlsyxWieBxEx0arwB9vgQm+iai6DEDYYQuufHrzVhQOiapCalQQ== - dependencies: - "@types/lodash" "*" - -"@types/lodash.get@^4.4.6": - version "4.4.6" - resolved "https://registry.yarnpkg.com/@types/lodash.get/-/lodash.get-4.4.6.tgz#0c7ac56243dae0f9f09ab6f75b29471e2e777240" - integrity sha512-E6zzjR3GtNig8UJG/yodBeJeIOtgPkMgsLjDU3CbgCAPC++vJ0eCMnJhVpRZb/ENqEFlov1+3K9TKtY4UdWKtQ== - dependencies: - "@types/lodash" "*" - -"@types/lodash@*": - version "4.14.170" - resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.170.tgz#0d67711d4bf7f4ca5147e9091b847479b87925d6" - integrity sha512-bpcvu/MKHHeYX+qeEN8GE7DIravODWdACVA1ctevD8CN24RhPZIKMn9ntfAsrvLfSX3cR5RrBKAbYm9bGs0A+Q== - "@types/mime@^1": version "1.3.2" resolved "https://registry.yarnpkg.com/@types/mime/-/mime-1.3.2.tgz#93e25bf9ee75fe0fd80b594bc4feb0e862111b5a" @@ -7473,9 +7454,9 @@ postcss-value-parser@^4.0.2, postcss-value-parser@^4.1.0: integrity sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ== postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.27, postcss@^7.0.32, postcss@^7.0.5, postcss@^7.0.6: - version "7.0.35" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.35.tgz#d2be00b998f7f211d8a276974079f2e92b970e24" - integrity sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg== + version "7.0.36" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.36.tgz#056f8cffa939662a8f5905950c07d5285644dfcb" + integrity sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw== dependencies: chalk "^2.4.2" source-map "^0.6.1" @@ -9584,17 +9565,16 @@ webpack-bundle-analyzer@^3.8.0: opener "^1.5.1" ws "^6.0.0" -webpack-bundle-tracker@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/webpack-bundle-tracker/-/webpack-bundle-tracker-1.0.0.tgz#46428b91d106c3729b7211474cd888b62c8ca4ba" - integrity sha512-uO787xNxxq2+D+P4FPsnX7D+yDY4qmjopenkxxq2kT6e4QjMe2uPJ6R03mv9KT74YkWKKt/gBC+x+ZFGjb2URQ== +webpack-bundle-tracker@1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/webpack-bundle-tracker/-/webpack-bundle-tracker-1.1.0.tgz#87c6f2cc89f09337bcc19127a0976a1a8682c5d2" + integrity sha512-cw8HSS/Pgim3wWoaYDbxHlYJ78W/tKJCJWxrWhJ7UsSOQLavzGSUlG5VJsdkbREzwmZcC9F2Gran492kSdkTDQ== dependencies: - "@types/lodash.foreach" "^4.5.6" - "@types/lodash.get" "^4.4.6" lodash.assign "^4.2.0" lodash.defaults "^4.2.0" lodash.foreach "^4.5.0" lodash.get "^4.4.2" + lodash.merge "^4.6.2" strip-ansi "^6.0.0" webpack-chain@^6.4.0: