Sleep history (#485)

* Fix dayssince sometimes being off by 1 day depending on timezone

* Add sleep stats carousel for last 7 days

* Renamed sleep_day to sleep_recent

* Rename Today's Sleep to Recent Sleep in dashboard
This commit is contained in:
Daniel Beard 2022-06-27 19:39:45 -07:00 committed by GitHub
parent c98f6cd433
commit 834e7636fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
30 changed files with 2347 additions and 2023 deletions

View File

@ -1,22 +0,0 @@
{% extends 'cards/base.html' %}
{% load duration i18n %}
{% block header %}
<a href="{% url "core:sleep-list" %}">
{% trans "Today's Sleep" %}
</a>
{% endblock %}
{% block title %}
{% if total %}
{{ total|duration_string }}
{% else %}
{% trans "None" %}
{% endif %}
{% endblock %}
{% block content %}
{% if count > 0 %}
{% blocktrans %}{{ count }} sleep entries{% endblocktrans %}
{% endif %}
{% endblock %}

View File

@ -0,0 +1,54 @@
{% extends 'cards/base.html' %}
{% load duration i18n %}
{% block header %}
<a href="{% url "core:sleep-list" %}">
{% trans "Recent Sleep" %}
</a>
{% endblock %}
{% block title %}
{% if sleeps|length > 0 %}
<div id="sleep-days-carousel" class="carousel slide" data-interval="false">
<div class="carousel-inner">
{% for sleep in sleeps %}
<div class="carousel-item{% if forloop.counter == 1 %} active{% endif %}">
<div class="last-sleep-method text-center">
{% if sleep.total %}
{{ sleep.total|duration_string:"m" }}
{% else %}
{% trans "None" %}
{% endif %}
</div>
<div class="text-center small">
{% if sleep.count > 0 %}
{% blocktrans trimmed count counter=sleep.count %}
{{ counter }} sleep
{% plural %}
{{ counter }} sleep
{% endblocktrans %}
{% endif %}
</div>
{% blocktrans trimmed with since=sleep.date.date|dayssince %}
<div class="text-center small text-muted">
{{ since }}
</div>
{% endblocktrans %}
</div>
{% endfor %}
</div>
{% if sleeps|length > 1 %}
<a class="carousel-control-prev" href="#sleep-days-carousel" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">{% trans "Previous" %}</span>
</a>
<a class="carousel-control-next" href="#sleep-days-carousel" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">{% trans "Next" %}</span>
</a>
{% endif %}
</div>
{% else %}
{% trans "None" %}
{% endif %}
{% endblock %}

View File

@ -18,7 +18,7 @@
{% card_feeding_last_method object %} {% card_feeding_last_method object %}
{% card_feeding_day object %} {% card_feeding_day object %}
{% card_statistics object %} {% card_statistics object %}
{% card_sleep_day object %} {% card_sleep_recent object %}
{% card_sleep_naps_day object %} {% card_sleep_naps_day object %}
{% card_tummytime_day object %} {% card_tummytime_day object %}
{% card_diaperchange_types object %} {% card_diaperchange_types object %}

View File

@ -221,42 +221,71 @@ def card_sleep_last(context, child):
} }
@register.inclusion_tag("cards/sleep_day.html", takes_context=True) @register.inclusion_tag("cards/sleep_recent.html", takes_context=True)
def card_sleep_day(context, child, date=None): def card_sleep_recent(context, child, end_date=None):
""" """
Filters Sleep instances to get count and total values for a specific date. Filters sleeping instances to get total amount for a specific date and for 7 days before
:param child: an instance of the Child model. :param child: an instance of the Child model.
:param date: a Date object for the day to filter. :param end_date: a Date object for the day to filter.
:returns: a dictionary with count and total values for the Sleep instances. :returns: a dict with count and total amount for the sleeping instances.
""" """
if not date: if not end_date:
date = timezone.localtime().date() end_date = timezone.localtime()
instances = models.Sleep.objects.filter(child=child).filter(
start__year=date.year, start__month=date.month, start__day=date.day
) | models.Sleep.objects.filter(child=child).filter(
end__year=date.year, end__month=date.month, end__day=date.day
)
empty = len(instances) == 0
total = timezone.timedelta(seconds=0) # push end_date to very end of that day
end_date = end_date.replace(hour=23, minute=59, second=59, microsecond=9999)
# we need a datetime to use the range helper in the model
start_date = end_date - timezone.timedelta(
days=8
) # end of the -8th day so we get the FULL 7th day
instances = models.Sleep.objects.filter(child=child).filter(
start__range=[start_date, end_date]
) | models.Sleep.objects.filter(child=child).filter(
end__range=[start_date, end_date]
)
# prepare the result list for the last 7 days
dates = [end_date - timezone.timedelta(days=i) for i in range(8)]
results = [{"date": d, "total": timezone.timedelta(), "count": 0} for d in dates]
# do one pass over the data and add it to the appropriate day
for instance in instances: for instance in instances:
# convert to local tz and push feed_date to end so we're comparing apples to apples for the date
start = timezone.localtime(instance.start) start = timezone.localtime(instance.start)
end = timezone.localtime(instance.end) end = timezone.localtime(instance.end)
# Account for dates crossing midnight. sleep_start_date = start.replace(
if start.date() != date: hour=23, minute=59, second=59, microsecond=9999
start = start.replace( )
year=end.year, month=end.month, day=end.day, hour=0, minute=0, second=0 sleep_end_date = end.replace(hour=23, minute=59, second=59, microsecond=9999)
) start_idx = (end_date - sleep_start_date).days
end_idx = (end_date - sleep_end_date).days
# this is more complicated than feedings because we only want to capture the PORTION of sleep
# that is a part of this day (e.g. starts sleep at 7PM and finished at 7AM = 5 hrs yesterday 7 hrs today)
# (Assuming you have a unicorn sleeper. Congratulations)
if start_idx == end_idx: # if we're in the same day it's simple
result = results[start_idx]
result["total"] += end - start
result["count"] += 1
else: # otherwise we need to split the time up
midnight = end.replace(hour=0, minute=0, second=0)
total += end - start if 0 <= start_idx < len(results):
result = results[start_idx]
# only the portion that is today
result["total"] += midnight - start
result["count"] += 1
count = len(instances) if 0 <= end_idx < len(results):
result = results[end_idx]
# only the portion that is tomorrow
result["total"] += end - midnight
result["count"] += 1
return { return {
"sleeps": results,
"type": "sleep", "type": "sleep",
"total": total, "empty": len(instances) == 0,
"count": count,
"empty": empty,
"hide_empty": _hide_empty(context), "hide_empty": _hide_empty(context),
} }

View File

@ -204,12 +204,15 @@ class TemplateTagsTestCase(TestCase):
self.assertFalse(data["hide_empty"]) self.assertFalse(data["hide_empty"])
def test_card_sleep_day(self): def test_card_sleep_day(self):
data = cards.card_sleep_day(self.context, self.child, self.date) data = cards.card_sleep_recent(self.context, self.child, self.date)
self.assertEqual(data["type"], "sleep") self.assertEqual(data["type"], "sleep")
self.assertFalse(data["empty"]) self.assertFalse(data["empty"])
self.assertFalse(data["hide_empty"]) self.assertFalse(data["hide_empty"])
self.assertEqual(data["total"], timezone.timedelta(2, 7200)) self.assertEqual(data["sleeps"][0]["total"], timezone.timedelta(hours=7))
self.assertEqual(data["count"], 4) self.assertEqual(data["sleeps"][0]["count"], 4)
self.assertEqual(data["sleeps"][1]["total"], timezone.timedelta(minutes=30))
self.assertEqual(data["sleeps"][1]["count"], 1)
def test_card_sleep_naps_day(self): def test_card_sleep_naps_day(self):
data = cards.card_sleep_naps_day(self.context, self.child, self.date) data = cards.card_sleep_naps_day(self.context, self.child, self.date)

Binary file not shown.

View File

@ -2,7 +2,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Baby Buddy\n" "Project-Id-Version: Baby Buddy\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-06-05 13:25+0000\n" "POT-Creation-Date: 2022-06-17 22:25+0000\n"
"Language: ca\n" "Language: ca\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -11,12 +11,12 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: babybuddy/admin.py:12 babybuddy/admin.py:13 #: babybuddy/admin.py:12 babybuddy/admin.py:13
#: babybuddy/templates/babybuddy/nav-dropdown.html:347 #: babybuddy/templates/babybuddy/nav-dropdown.html:327
#: babybuddy/templates/babybuddy/user_settings_form.html:8 #: babybuddy/templates/babybuddy/user_settings_form.html:8
msgid "Settings" msgid "Settings"
msgstr "Opcions" msgstr "Opcions"
#: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:111 #: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:92
#: babybuddy/templates/babybuddy/user_settings_form.html:61 #: babybuddy/templates/babybuddy/user_settings_form.html:61
#: dashboard/templates/dashboard/child.html:4 #: dashboard/templates/dashboard/child.html:4
#: dashboard/templates/dashboard/child.html:9 #: dashboard/templates/dashboard/child.html:9
@ -179,7 +179,7 @@ msgstr "Turc"
#: babybuddy/templates/admin/base_site.html:4 #: babybuddy/templates/admin/base_site.html:4
#: babybuddy/templates/admin/base_site.html:7 #: babybuddy/templates/admin/base_site.html:7
#: babybuddy/templates/babybuddy/nav-dropdown.html:359 #: babybuddy/templates/babybuddy/nav-dropdown.html:339
msgid "Database Admin" msgid "Database Admin"
msgstr "BBDD Admin" msgstr "BBDD Admin"
@ -226,19 +226,19 @@ msgid "Diaper Change"
msgstr "Canvi Bolquers" msgstr "Canvi Bolquers"
#: babybuddy/templates/babybuddy/nav-dropdown.html:57 #: babybuddy/templates/babybuddy/nav-dropdown.html:57
#: babybuddy/templates/babybuddy/nav-dropdown.html:281 core/models.py:312 #: babybuddy/templates/babybuddy/nav-dropdown.html:262 core/models.py:312
#: core/models.py:316 core/templates/core/timer_detail.html:43 #: core/models.py:316 core/templates/core/timer_detail.html:43
msgid "Feeding" msgid "Feeding"
msgstr "Biberó" msgstr "Biberó"
#: babybuddy/templates/babybuddy/nav-dropdown.html:63 #: babybuddy/templates/babybuddy/nav-dropdown.html:63
#: babybuddy/templates/babybuddy/nav-dropdown.html:157 core/models.py:396 #: babybuddy/templates/babybuddy/nav-dropdown.html:138 core/models.py:396
#: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29 #: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29
msgid "Note" msgid "Note"
msgstr "Nota" msgstr "Nota"
#: babybuddy/templates/babybuddy/nav-dropdown.html:69 #: babybuddy/templates/babybuddy/nav-dropdown.html:69
#: babybuddy/templates/babybuddy/nav-dropdown.html:288 #: babybuddy/templates/babybuddy/nav-dropdown.html:283
#: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467 #: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467
#: core/models.py:468 core/models.py:471 #: core/models.py:468 core/models.py:471
#: core/templates/core/sleep_confirm_delete.html:7 #: core/templates/core/sleep_confirm_delete.html:7
@ -249,19 +249,7 @@ msgid "Sleep"
msgstr "Dormir" msgstr "Dormir"
#: babybuddy/templates/babybuddy/nav-dropdown.html:75 #: babybuddy/templates/babybuddy/nav-dropdown.html:75
#: babybuddy/templates/babybuddy/nav-dropdown.html:179 core/models.py:506 #: babybuddy/templates/babybuddy/nav-dropdown.html:296
#: core/models.py:519 core/models.py:520 core/models.py:523
#: core/templates/core/temperature_confirm_delete.html:7
#: core/templates/core/temperature_form.html:13
#: core/templates/core/temperature_list.html:4
#: core/templates/core/temperature_list.html:7
#: core/templates/core/temperature_list.html:12
#: core/templates/core/temperature_list.html:29
msgid "Temperature"
msgstr "Temperatura"
#: babybuddy/templates/babybuddy/nav-dropdown.html:81
#: babybuddy/templates/babybuddy/nav-dropdown.html:301
#: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647 #: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647
#: core/models.py:648 core/models.py:651 #: core/models.py:648 core/models.py:651
#: core/templates/core/timer_detail.html:59 #: core/templates/core/timer_detail.html:59
@ -273,44 +261,15 @@ msgstr "Temperatura"
msgid "Tummy Time" msgid "Tummy Time"
msgstr "Temps de panxa" msgstr "Temps de panxa"
#: babybuddy/templates/babybuddy/nav-dropdown.html:87 #: babybuddy/templates/babybuddy/nav-dropdown.html:99
#: babybuddy/templates/babybuddy/nav-dropdown.html:193 core/models.py:673
#: core/models.py:685 core/models.py:686 core/models.py:689
#: core/templates/core/weight_confirm_delete.html:7
#: core/templates/core/weight_form.html:13
#: core/templates/core/weight_list.html:4
#: core/templates/core/weight_list.html:7
#: core/templates/core/weight_list.html:12
#: core/templates/core/weight_list.html:29 reports/graphs/weight_change.py:19
#: reports/graphs/weight_change.py:30
#: reports/templates/reports/report_list.html:22
#: reports/templates/reports/weight_change.html:4
#: reports/templates/reports/weight_change.html:8
msgid "Weight"
msgstr "Pes"
#: babybuddy/templates/babybuddy/nav-dropdown.html:93
#: babybuddy/templates/babybuddy/nav-dropdown.html:316 core/models.py:437
#: core/models.py:438 core/models.py:441
#: core/templates/core/pumping_confirm_delete.html:7
#: core/templates/core/pumping_form.html:13
#: core/templates/core/pumping_list.html:4
#: core/templates/core/pumping_list.html:7
#: core/templates/core/pumping_list.html:12
#: reports/templates/reports/pumping_amounts.html:4
#: reports/templates/reports/pumping_amounts.html:8
msgid "Pumping"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:118
#: core/templates/timeline/timeline.html:4 #: core/templates/timeline/timeline.html:4
#: core/templates/timeline/timeline.html:7 #: core/templates/timeline/timeline.html:7
#: dashboard/templates/dashboard/child_button_group.html:9 #: dashboard/templates/dashboard/child_button_group.html:9
msgid "Timeline" msgid "Timeline"
msgstr "Línia de Temps" msgstr "Línia de Temps"
#: babybuddy/templates/babybuddy/nav-dropdown.html:129 #: babybuddy/templates/babybuddy/nav-dropdown.html:110
#: babybuddy/templates/babybuddy/nav-dropdown.html:137 core/models.py:188 #: babybuddy/templates/babybuddy/nav-dropdown.html:118 core/models.py:188
#: core/templates/core/child_confirm_delete.html:7 #: core/templates/core/child_confirm_delete.html:7
#: core/templates/core/child_detail.html:7 #: core/templates/core/child_detail.html:7
#: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4 #: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4
@ -320,7 +279,7 @@ msgstr "Línia de Temps"
msgid "Children" msgid "Children"
msgstr "Nadons" msgstr "Nadons"
#: babybuddy/templates/babybuddy/nav-dropdown.html:143 core/models.py:137 #: babybuddy/templates/babybuddy/nav-dropdown.html:124 core/models.py:137
#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335 #: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335
#: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450 #: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450
#: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671 #: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671
@ -339,7 +298,7 @@ msgstr "Nadons"
msgid "Child" msgid "Child"
msgstr "Nadó" msgstr "Nadó"
#: babybuddy/templates/babybuddy/nav-dropdown.html:151 core/models.py:143 #: babybuddy/templates/babybuddy/nav-dropdown.html:132 core/models.py:143
#: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373 #: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373
#: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511 #: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511
#: core/models.py:677 core/templates/core/note_confirm_delete.html:7 #: core/models.py:677 core/templates/core/note_confirm_delete.html:7
@ -348,38 +307,26 @@ msgstr "Nadó"
msgid "Notes" msgid "Notes"
msgstr "Notes" msgstr "Notes"
#: babybuddy/templates/babybuddy/nav-dropdown.html:171 #: babybuddy/templates/babybuddy/nav-dropdown.html:152
msgid "Measurements" msgid "Measurements"
msgstr "Mides" msgstr "Mides"
#: babybuddy/templates/babybuddy/nav-dropdown.html:185 #: babybuddy/templates/babybuddy/nav-dropdown.html:160 core/models.py:139
msgid "Temperature reading" #: core/models.py:151 core/models.py:152 core/models.py:155
msgstr "Lectura Temperatura" #: core/templates/core/bmi_confirm_delete.html:7
#: core/templates/core/bmi_form.html:13 core/templates/core/bmi_list.html:4
#: core/templates/core/bmi_list.html:7 core/templates/core/bmi_list.html:12
#: core/templates/core/bmi_list.html:29 reports/graphs/bmi_change.py:19
#: reports/graphs/bmi_change.py:30 reports/templates/reports/bmi_change.html:4
#: reports/templates/reports/bmi_change.html:8
msgid "BMI"
msgstr "BMI"
#: babybuddy/templates/babybuddy/nav-dropdown.html:199 #: babybuddy/templates/babybuddy/nav-dropdown.html:166
msgid "Weight entry" msgid "BMI entry"
msgstr "Entrada Pes" msgstr "Entrada BMI"
#: babybuddy/templates/babybuddy/nav-dropdown.html:207 core/models.py:369 #: babybuddy/templates/babybuddy/nav-dropdown.html:174 core/models.py:338
#: core/models.py:381 core/models.py:382 core/models.py:385
#: core/templates/core/height_confirm_delete.html:7
#: core/templates/core/height_form.html:13
#: core/templates/core/height_list.html:4
#: core/templates/core/height_list.html:7
#: core/templates/core/height_list.html:12
#: core/templates/core/height_list.html:29 reports/graphs/height_change.py:19
#: reports/graphs/height_change.py:30
#: reports/templates/reports/height_change.html:4
#: reports/templates/reports/height_change.html:8
#: reports/templates/reports/report_list.html:17
msgid "Height"
msgstr "Alçada"
#: babybuddy/templates/babybuddy/nav-dropdown.html:213
msgid "Height entry"
msgstr "Entrada Alçada"
#: babybuddy/templates/babybuddy/nav-dropdown.html:221 core/models.py:338
#: core/models.py:351 core/models.py:352 core/models.py:355 #: core/models.py:351 core/models.py:352 core/models.py:355
#: core/templates/core/head_circumference_confirm_delete.html:7 #: core/templates/core/head_circumference_confirm_delete.html:7
#: core/templates/core/head_circumference_form.html:13 #: core/templates/core/head_circumference_form.html:13
@ -395,39 +342,77 @@ msgstr "Entrada Alçada"
msgid "Head Circumference" msgid "Head Circumference"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:227 #: babybuddy/templates/babybuddy/nav-dropdown.html:180
msgid "Head Circumference entry" msgid "Head Circumference entry"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:235 core/models.py:139 #: babybuddy/templates/babybuddy/nav-dropdown.html:188 core/models.py:369
#: core/models.py:151 core/models.py:152 core/models.py:155 #: core/models.py:381 core/models.py:382 core/models.py:385
#: core/templates/core/bmi_confirm_delete.html:7 #: core/templates/core/height_confirm_delete.html:7
#: core/templates/core/bmi_form.html:13 core/templates/core/bmi_list.html:4 #: core/templates/core/height_form.html:13
#: core/templates/core/bmi_list.html:7 core/templates/core/bmi_list.html:12 #: core/templates/core/height_list.html:4
#: core/templates/core/bmi_list.html:29 reports/graphs/bmi_change.py:19 #: core/templates/core/height_list.html:7
#: reports/graphs/bmi_change.py:30 reports/templates/reports/bmi_change.html:4 #: core/templates/core/height_list.html:12
#: reports/templates/reports/bmi_change.html:8 #: core/templates/core/height_list.html:29 reports/graphs/height_change.py:19
msgid "BMI" #: reports/graphs/height_change.py:30
msgstr "BMI" #: reports/templates/reports/height_change.html:4
#: reports/templates/reports/height_change.html:8
#: reports/templates/reports/report_list.html:17
msgid "Height"
msgstr "Alçada"
#: babybuddy/templates/babybuddy/nav-dropdown.html:241 #: babybuddy/templates/babybuddy/nav-dropdown.html:194
msgid "BMI entry" msgid "Height entry"
msgstr "Entrada BMI" msgstr "Entrada Alçada"
#: babybuddy/templates/babybuddy/nav-dropdown.html:255 #: babybuddy/templates/babybuddy/nav-dropdown.html:202 core/models.py:506
#: core/models.py:519 core/models.py:520 core/models.py:523
#: core/templates/core/temperature_confirm_delete.html:7
#: core/templates/core/temperature_form.html:13
#: core/templates/core/temperature_list.html:4
#: core/templates/core/temperature_list.html:7
#: core/templates/core/temperature_list.html:12
#: core/templates/core/temperature_list.html:29
msgid "Temperature"
msgstr "Temperatura"
#: babybuddy/templates/babybuddy/nav-dropdown.html:208
msgid "Temperature reading"
msgstr "Lectura Temperatura"
#: babybuddy/templates/babybuddy/nav-dropdown.html:216 core/models.py:673
#: core/models.py:685 core/models.py:686 core/models.py:689
#: core/templates/core/weight_confirm_delete.html:7
#: core/templates/core/weight_form.html:13
#: core/templates/core/weight_list.html:4
#: core/templates/core/weight_list.html:7
#: core/templates/core/weight_list.html:12
#: core/templates/core/weight_list.html:29 reports/graphs/weight_change.py:19
#: reports/graphs/weight_change.py:30
#: reports/templates/reports/report_list.html:22
#: reports/templates/reports/weight_change.html:4
#: reports/templates/reports/weight_change.html:8
msgid "Weight"
msgstr "Pes"
#: babybuddy/templates/babybuddy/nav-dropdown.html:222
msgid "Weight entry"
msgstr "Entrada Pes"
#: babybuddy/templates/babybuddy/nav-dropdown.html:236
msgid "Activities" msgid "Activities"
msgstr "Activitats" msgstr "Activitats"
#: babybuddy/templates/babybuddy/nav-dropdown.html:262 #: babybuddy/templates/babybuddy/nav-dropdown.html:243
#: reports/graphs/diaperchange_lifetimes.py:27 #: reports/graphs/diaperchange_lifetimes.py:27
msgid "Changes" msgid "Changes"
msgstr "Canvis" msgstr "Canvis"
#: babybuddy/templates/babybuddy/nav-dropdown.html:268 #: babybuddy/templates/babybuddy/nav-dropdown.html:249
msgid "Change" msgid "Change"
msgstr "Canvi" msgstr "Canvi"
#: babybuddy/templates/babybuddy/nav-dropdown.html:275 #: babybuddy/templates/babybuddy/nav-dropdown.html:256
#: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313 #: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313
#: core/templates/core/feeding_confirm_delete.html:7 #: core/templates/core/feeding_confirm_delete.html:7
#: core/templates/core/feeding_form.html:13 #: core/templates/core/feeding_form.html:13
@ -437,19 +422,31 @@ msgstr "Canvi"
msgid "Feedings" msgid "Feedings"
msgstr "Biberons" msgstr "Biberons"
#: babybuddy/templates/babybuddy/nav-dropdown.html:294 #: babybuddy/templates/babybuddy/nav-dropdown.html:270 core/models.py:437
msgid "Sleep entry" #: core/models.py:438 core/models.py:441
msgstr "Entrada Son" #: core/templates/core/pumping_confirm_delete.html:7
#: core/templates/core/pumping_form.html:13
#: core/templates/core/pumping_list.html:4
#: core/templates/core/pumping_list.html:7
#: core/templates/core/pumping_list.html:12
#: reports/templates/reports/pumping_amounts.html:4
#: reports/templates/reports/pumping_amounts.html:8
msgid "Pumping"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:307 #: babybuddy/templates/babybuddy/nav-dropdown.html:276
msgid "Tummy Time entry"
msgstr "Entrada de temps de panxa"
#: babybuddy/templates/babybuddy/nav-dropdown.html:322
msgid "Pumping entry" msgid "Pumping entry"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:346 #: babybuddy/templates/babybuddy/nav-dropdown.html:289
msgid "Sleep entry"
msgstr "Entrada Son"
#: babybuddy/templates/babybuddy/nav-dropdown.html:302
msgid "Tummy Time entry"
msgstr "Entrada de temps de panxa"
#: babybuddy/templates/babybuddy/nav-dropdown.html:326
#: babybuddy/templates/babybuddy/user_list.html:17 #: babybuddy/templates/babybuddy/user_list.html:17
#: babybuddy/templates/babybuddy/user_password_form.html:7 #: babybuddy/templates/babybuddy/user_password_form.html:7
#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556 #: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556
@ -457,23 +454,23 @@ msgstr ""
msgid "User" msgid "User"
msgstr "Usuari" msgstr "Usuari"
#: babybuddy/templates/babybuddy/nav-dropdown.html:348 #: babybuddy/templates/babybuddy/nav-dropdown.html:328
msgid "Password" msgid "Password"
msgstr "Clau" msgstr "Clau"
#: babybuddy/templates/babybuddy/nav-dropdown.html:352 #: babybuddy/templates/babybuddy/nav-dropdown.html:332
msgid "Logout" msgid "Logout"
msgstr "Tancar" msgstr "Tancar"
#: babybuddy/templates/babybuddy/nav-dropdown.html:355 #: babybuddy/templates/babybuddy/nav-dropdown.html:335
msgid "Site" msgid "Site"
msgstr "Lloc" msgstr "Lloc"
#: babybuddy/templates/babybuddy/nav-dropdown.html:356 #: babybuddy/templates/babybuddy/nav-dropdown.html:336
msgid "API Browser" msgid "API Browser"
msgstr "Navegador API" msgstr "Navegador API"
#: babybuddy/templates/babybuddy/nav-dropdown.html:358 #: babybuddy/templates/babybuddy/nav-dropdown.html:338
#: babybuddy/templates/babybuddy/user_confirm_delete.html:7 #: babybuddy/templates/babybuddy/user_confirm_delete.html:7
#: babybuddy/templates/babybuddy/user_form.html:13 #: babybuddy/templates/babybuddy/user_form.html:13
#: babybuddy/templates/babybuddy/user_list.html:4 #: babybuddy/templates/babybuddy/user_list.html:4
@ -481,15 +478,15 @@ msgstr "Navegador API"
msgid "Users" msgid "Users"
msgstr "Usuaris" msgstr "Usuaris"
#: babybuddy/templates/babybuddy/nav-dropdown.html:361 #: babybuddy/templates/babybuddy/nav-dropdown.html:341
msgid "Support" msgid "Support"
msgstr "Suport" msgstr "Suport"
#: babybuddy/templates/babybuddy/nav-dropdown.html:363 #: babybuddy/templates/babybuddy/nav-dropdown.html:343
msgid "Source Code" msgid "Source Code"
msgstr "Codi Font" msgstr "Codi Font"
#: babybuddy/templates/babybuddy/nav-dropdown.html:365 #: babybuddy/templates/babybuddy/nav-dropdown.html:345
msgid "Chat / Support" msgid "Chat / Support"
msgstr "Xat / Suport" msgstr "Xat / Suport"
@ -500,6 +497,7 @@ msgstr "Xat / Suport"
#: core/templates/timeline/_timeline.html:73 #: core/templates/timeline/_timeline.html:73
#: dashboard/templates/cards/feeding_day.html:43 #: dashboard/templates/cards/feeding_day.html:43
#: dashboard/templates/cards/feeding_last_method.html:34 #: dashboard/templates/cards/feeding_last_method.html:34
#: dashboard/templates/cards/sleep_recent.html:43
#: dashboard/templates/cards/statistics.html:34 #: dashboard/templates/cards/statistics.html:34
msgid "Previous" msgid "Previous"
msgstr "Anterior" msgstr "Anterior"
@ -511,6 +509,7 @@ msgstr "Anterior"
#: core/templates/timeline/_timeline.html:80 #: core/templates/timeline/_timeline.html:80
#: dashboard/templates/cards/feeding_day.html:47 #: dashboard/templates/cards/feeding_day.html:47
#: dashboard/templates/cards/feeding_last_method.html:38 #: dashboard/templates/cards/feeding_last_method.html:38
#: dashboard/templates/cards/sleep_recent.html:47
#: dashboard/templates/cards/statistics.html:38 #: dashboard/templates/cards/statistics.html:38
msgid "Next" msgid "Next"
msgstr "Següent" msgstr "Següent"
@ -957,7 +956,7 @@ msgstr ""
#: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70 #: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70
#: reports/graphs/feeding_duration.py:56 #: reports/graphs/feeding_duration.py:56
#: reports/graphs/head_circumference_change.py:28 #: reports/graphs/head_circumference_change.py:28
#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:58 #: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60
#: reports/graphs/sleep_pattern.py:151 reports/graphs/sleep_totals.py:59 #: reports/graphs/sleep_pattern.py:151 reports/graphs/sleep_totals.py:59
#: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28 #: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28
msgid "Date" msgid "Date"
@ -1131,7 +1130,9 @@ msgid "Add BMI"
msgstr "Afegeix BMI" msgstr "Afegeix BMI"
#: core/templates/core/bmi_list.html:70 #: core/templates/core/bmi_list.html:70
msgid "No bmi entries found." #, fuzzy
#| msgid "No bmi entries found."
msgid "No BMI entries found."
msgstr "Entrades BMI no trobades." msgstr "Entrades BMI no trobades."
#: core/templates/core/child_confirm_delete.html:4 #: core/templates/core/child_confirm_delete.html:4
@ -1428,9 +1429,10 @@ msgstr "Temporitzadors Actius"
#: dashboard/templates/cards/feeding_day.html:52 #: dashboard/templates/cards/feeding_day.html:52
#: dashboard/templates/cards/feeding_last.html:17 #: dashboard/templates/cards/feeding_last.html:17
#: dashboard/templates/cards/feeding_last_method.html:43 #: dashboard/templates/cards/feeding_last_method.html:43
#: dashboard/templates/cards/sleep_day.html:14
#: dashboard/templates/cards/sleep_last.html:17 #: dashboard/templates/cards/sleep_last.html:17
#: dashboard/templates/cards/sleep_naps_day.html:18 #: dashboard/templates/cards/sleep_naps_day.html:18
#: dashboard/templates/cards/sleep_recent.html:20
#: dashboard/templates/cards/sleep_recent.html:52
#: dashboard/templates/cards/tummytime_day.html:14 #: dashboard/templates/cards/tummytime_day.html:14
msgid "None" msgid "None"
msgstr "Cap" msgstr "Cap"
@ -1548,6 +1550,22 @@ msgstr "{}, {}"
msgid "0 days" msgid "0 days"
msgstr "0 dies" msgstr "0 dies"
#: core/templatetags/duration.py:111
#: dashboard/templates/cards/diaperchange_types.html:49
msgid "today"
msgstr "avui"
#: core/templatetags/duration.py:113
#: dashboard/templates/cards/diaperchange_types.html:51
msgid "yesterday"
msgstr "ahir"
#: core/templatetags/duration.py:116
#, fuzzy
#| msgid "%(key)s days ago"
msgid " days ago"
msgstr "Fa %(key)s dies"
#: core/timeline.py:53 #: core/timeline.py:53
#, python-format #, python-format
msgid "%(child)s started tummy time!" msgid "%(child)s started tummy time!"
@ -1686,14 +1704,6 @@ msgstr "líquid"
msgid "solid" msgid "solid"
msgstr "sòlid" msgstr "sòlid"
#: dashboard/templates/cards/diaperchange_types.html:49
msgid "today"
msgstr "avui"
#: dashboard/templates/cards/diaperchange_types.html:51
msgid "yesterday"
msgstr "ahir"
#: dashboard/templates/cards/diaperchange_types.html:53 #: dashboard/templates/cards/diaperchange_types.html:53
#, python-format #, python-format
msgid "%(key)s days ago" msgid "%(key)s days ago"
@ -1712,6 +1722,7 @@ msgstr[0] "Total alimentacions"
msgstr[1] "Total alimentacions" msgstr[1] "Total alimentacions"
#: dashboard/templates/cards/feeding_day.html:32 #: dashboard/templates/cards/feeding_day.html:32
#: dashboard/templates/cards/sleep_recent.html:32
#, python-format #, python-format
msgid "<div class=\"text-center small text-muted\"> %(since)s </div>" msgid "<div class=\"text-center small text-muted\"> %(since)s </div>"
msgstr "" msgstr ""
@ -1736,15 +1747,6 @@ msgid_plural "%(n)s feedings ago"
msgstr[0] "Fa %(key)s dies" msgstr[0] "Fa %(key)s dies"
msgstr[1] "Fa %(key)s dies" msgstr[1] "Fa %(key)s dies"
#: dashboard/templates/cards/sleep_day.html:6
msgid "Today's Sleep"
msgstr "Son d'Avui"
#: dashboard/templates/cards/sleep_day.html:20
#, python-format
msgid "%(count)s sleep entries"
msgstr ""
#: dashboard/templates/cards/sleep_last.html:6 #: dashboard/templates/cards/sleep_last.html:6
msgid "Last Sleep" msgid "Last Sleep"
msgstr "Últim Son" msgstr "Últim Son"
@ -1760,6 +1762,20 @@ msgid_plural "%(count)s naps"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: dashboard/templates/cards/sleep_recent.html:6
#, fuzzy
#| msgid "Last Sleep"
msgid "Recent Sleep"
msgstr "Últim Son"
#: dashboard/templates/cards/sleep_recent.html:25
#, fuzzy, python-format
#| msgid "Total feedings"
msgid "%(counter)s sleep"
msgid_plural "%(counter)s sleep"
msgstr[0] "Total alimentacions"
msgstr[1] "Total alimentacions"
#: dashboard/templates/cards/statistics.html:7 #: dashboard/templates/cards/statistics.html:7
msgid "Statistics" msgid "Statistics"
msgstr "Estadístiques" msgstr "Estadístiques"
@ -1811,59 +1827,59 @@ msgstr "Accions Nadó"
msgid "Reports" msgid "Reports"
msgstr "Informes" msgstr "Informes"
#: dashboard/templatetags/cards.py:328 #: dashboard/templatetags/cards.py:357
msgid "Average nap duration" msgid "Average nap duration"
msgstr "Mitjana migdiades" msgstr "Mitjana migdiades"
#: dashboard/templatetags/cards.py:335 #: dashboard/templatetags/cards.py:364
msgid "Average naps per day" msgid "Average naps per day"
msgstr "Mitjana migdiades per dia" msgstr "Mitjana migdiades per dia"
#: dashboard/templatetags/cards.py:345 #: dashboard/templatetags/cards.py:374
msgid "Average sleep duration" msgid "Average sleep duration"
msgstr "Mitjana temps de son" msgstr "Mitjana temps de son"
#: dashboard/templatetags/cards.py:352 #: dashboard/templatetags/cards.py:381
msgid "Average awake duration" msgid "Average awake duration"
msgstr "Mitjana temps despert" msgstr "Mitjana temps despert"
#: dashboard/templatetags/cards.py:362 #: dashboard/templatetags/cards.py:391
msgid "Weight change per week" msgid "Weight change per week"
msgstr "Canvi pes setmanal" msgstr "Canvi pes setmanal"
#: dashboard/templatetags/cards.py:372 #: dashboard/templatetags/cards.py:401
msgid "Height change per week" msgid "Height change per week"
msgstr "" msgstr ""
#: dashboard/templatetags/cards.py:382 #: dashboard/templatetags/cards.py:411
msgid "Head circumference change per week" msgid "Head circumference change per week"
msgstr "" msgstr ""
#: dashboard/templatetags/cards.py:392 #: dashboard/templatetags/cards.py:421
msgid "BMI change per week" msgid "BMI change per week"
msgstr "" msgstr ""
#: dashboard/templatetags/cards.py:410 #: dashboard/templatetags/cards.py:439
msgid "Diaper change frequency (past 3 days)" msgid "Diaper change frequency (past 3 days)"
msgstr "" msgstr ""
#: dashboard/templatetags/cards.py:414 #: dashboard/templatetags/cards.py:443
msgid "Diaper change frequency (past 2 weeks)" msgid "Diaper change frequency (past 2 weeks)"
msgstr "" msgstr ""
#: dashboard/templatetags/cards.py:420 #: dashboard/templatetags/cards.py:449
msgid "Diaper change frequency" msgid "Diaper change frequency"
msgstr "Freqüència Canvi Bolquers" msgstr "Freqüència Canvi Bolquers"
#: dashboard/templatetags/cards.py:456 #: dashboard/templatetags/cards.py:485
msgid "Feeding frequency (past 3 days)" msgid "Feeding frequency (past 3 days)"
msgstr "" msgstr ""
#: dashboard/templatetags/cards.py:460 #: dashboard/templatetags/cards.py:489
msgid "Feeding frequency (past 2 weeks)" msgid "Feeding frequency (past 2 weeks)"
msgstr "" msgstr ""
#: dashboard/templatetags/cards.py:466 #: dashboard/templatetags/cards.py:495
msgid "Feeding frequency" msgid "Feeding frequency"
msgstr "Freqüència Alimentació" msgstr "Freqüència Alimentació"
@ -1939,11 +1955,11 @@ msgstr ""
msgid "<b>Height</b>" msgid "<b>Height</b>"
msgstr "<b>Alçada</b>" msgstr "<b>Alçada</b>"
#: reports/graphs/pumping_amounts.py:57 #: reports/graphs/pumping_amounts.py:59
msgid "<b>Total Pumping Amount</b>" msgid "<b>Total Pumping Amount</b>"
msgstr "" msgstr ""
#: reports/graphs/pumping_amounts.py:60 #: reports/graphs/pumping_amounts.py:62
msgid "Pumping Amount" msgid "Pumping Amount"
msgstr "" msgstr ""
@ -2056,3 +2072,6 @@ msgstr ""
#: reports/templates/reports/tummytime_duration.html:8 #: reports/templates/reports/tummytime_duration.html:8
msgid "Total Tummy Time Durations" msgid "Total Tummy Time Durations"
msgstr "" msgstr ""
#~ msgid "Today's Sleep"
#~ msgstr "Son d'Avui"

Binary file not shown.

View File

@ -2,7 +2,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Baby Buddy\n" "Project-Id-Version: Baby Buddy\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-06-05 13:25+0000\n" "POT-Creation-Date: 2022-06-17 22:25+0000\n"
"Language: de\n" "Language: de\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -11,12 +11,12 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: babybuddy/admin.py:12 babybuddy/admin.py:13 #: babybuddy/admin.py:12 babybuddy/admin.py:13
#: babybuddy/templates/babybuddy/nav-dropdown.html:347 #: babybuddy/templates/babybuddy/nav-dropdown.html:327
#: babybuddy/templates/babybuddy/user_settings_form.html:8 #: babybuddy/templates/babybuddy/user_settings_form.html:8
msgid "Settings" msgid "Settings"
msgstr "Einstellungen" msgstr "Einstellungen"
#: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:111 #: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:92
#: babybuddy/templates/babybuddy/user_settings_form.html:61 #: babybuddy/templates/babybuddy/user_settings_form.html:61
#: dashboard/templates/dashboard/child.html:4 #: dashboard/templates/dashboard/child.html:4
#: dashboard/templates/dashboard/child.html:9 #: dashboard/templates/dashboard/child.html:9
@ -182,7 +182,7 @@ msgstr "Türkisch"
#: babybuddy/templates/admin/base_site.html:4 #: babybuddy/templates/admin/base_site.html:4
#: babybuddy/templates/admin/base_site.html:7 #: babybuddy/templates/admin/base_site.html:7
#: babybuddy/templates/babybuddy/nav-dropdown.html:359 #: babybuddy/templates/babybuddy/nav-dropdown.html:339
msgid "Database Admin" msgid "Database Admin"
msgstr "Datenbankadministration" msgstr "Datenbankadministration"
@ -231,19 +231,19 @@ msgid "Diaper Change"
msgstr "Windelwechsel" msgstr "Windelwechsel"
#: babybuddy/templates/babybuddy/nav-dropdown.html:57 #: babybuddy/templates/babybuddy/nav-dropdown.html:57
#: babybuddy/templates/babybuddy/nav-dropdown.html:281 core/models.py:312 #: babybuddy/templates/babybuddy/nav-dropdown.html:262 core/models.py:312
#: core/models.py:316 core/templates/core/timer_detail.html:43 #: core/models.py:316 core/templates/core/timer_detail.html:43
msgid "Feeding" msgid "Feeding"
msgstr "Mahlzeit" msgstr "Mahlzeit"
#: babybuddy/templates/babybuddy/nav-dropdown.html:63 #: babybuddy/templates/babybuddy/nav-dropdown.html:63
#: babybuddy/templates/babybuddy/nav-dropdown.html:157 core/models.py:396 #: babybuddy/templates/babybuddy/nav-dropdown.html:138 core/models.py:396
#: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29 #: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29
msgid "Note" msgid "Note"
msgstr "Notiz" msgstr "Notiz"
#: babybuddy/templates/babybuddy/nav-dropdown.html:69 #: babybuddy/templates/babybuddy/nav-dropdown.html:69
#: babybuddy/templates/babybuddy/nav-dropdown.html:288 #: babybuddy/templates/babybuddy/nav-dropdown.html:283
#: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467 #: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467
#: core/models.py:468 core/models.py:471 #: core/models.py:468 core/models.py:471
#: core/templates/core/sleep_confirm_delete.html:7 #: core/templates/core/sleep_confirm_delete.html:7
@ -254,19 +254,7 @@ msgid "Sleep"
msgstr "Schlafen" msgstr "Schlafen"
#: babybuddy/templates/babybuddy/nav-dropdown.html:75 #: babybuddy/templates/babybuddy/nav-dropdown.html:75
#: babybuddy/templates/babybuddy/nav-dropdown.html:179 core/models.py:506 #: babybuddy/templates/babybuddy/nav-dropdown.html:296
#: core/models.py:519 core/models.py:520 core/models.py:523
#: core/templates/core/temperature_confirm_delete.html:7
#: core/templates/core/temperature_form.html:13
#: core/templates/core/temperature_list.html:4
#: core/templates/core/temperature_list.html:7
#: core/templates/core/temperature_list.html:12
#: core/templates/core/temperature_list.html:29
msgid "Temperature"
msgstr "Temperatur"
#: babybuddy/templates/babybuddy/nav-dropdown.html:81
#: babybuddy/templates/babybuddy/nav-dropdown.html:301
#: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647 #: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647
#: core/models.py:648 core/models.py:651 #: core/models.py:648 core/models.py:651
#: core/templates/core/timer_detail.html:59 #: core/templates/core/timer_detail.html:59
@ -278,44 +266,15 @@ msgstr "Temperatur"
msgid "Tummy Time" msgid "Tummy Time"
msgstr "Bauchzeit" msgstr "Bauchzeit"
#: babybuddy/templates/babybuddy/nav-dropdown.html:87 #: babybuddy/templates/babybuddy/nav-dropdown.html:99
#: babybuddy/templates/babybuddy/nav-dropdown.html:193 core/models.py:673
#: core/models.py:685 core/models.py:686 core/models.py:689
#: core/templates/core/weight_confirm_delete.html:7
#: core/templates/core/weight_form.html:13
#: core/templates/core/weight_list.html:4
#: core/templates/core/weight_list.html:7
#: core/templates/core/weight_list.html:12
#: core/templates/core/weight_list.html:29 reports/graphs/weight_change.py:19
#: reports/graphs/weight_change.py:30
#: reports/templates/reports/report_list.html:22
#: reports/templates/reports/weight_change.html:4
#: reports/templates/reports/weight_change.html:8
msgid "Weight"
msgstr "Gewicht"
#: babybuddy/templates/babybuddy/nav-dropdown.html:93
#: babybuddy/templates/babybuddy/nav-dropdown.html:316 core/models.py:437
#: core/models.py:438 core/models.py:441
#: core/templates/core/pumping_confirm_delete.html:7
#: core/templates/core/pumping_form.html:13
#: core/templates/core/pumping_list.html:4
#: core/templates/core/pumping_list.html:7
#: core/templates/core/pumping_list.html:12
#: reports/templates/reports/pumping_amounts.html:4
#: reports/templates/reports/pumping_amounts.html:8
msgid "Pumping"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:118
#: core/templates/timeline/timeline.html:4 #: core/templates/timeline/timeline.html:4
#: core/templates/timeline/timeline.html:7 #: core/templates/timeline/timeline.html:7
#: dashboard/templates/dashboard/child_button_group.html:9 #: dashboard/templates/dashboard/child_button_group.html:9
msgid "Timeline" msgid "Timeline"
msgstr "Zeitverlauf" msgstr "Zeitverlauf"
#: babybuddy/templates/babybuddy/nav-dropdown.html:129 #: babybuddy/templates/babybuddy/nav-dropdown.html:110
#: babybuddy/templates/babybuddy/nav-dropdown.html:137 core/models.py:188 #: babybuddy/templates/babybuddy/nav-dropdown.html:118 core/models.py:188
#: core/templates/core/child_confirm_delete.html:7 #: core/templates/core/child_confirm_delete.html:7
#: core/templates/core/child_detail.html:7 #: core/templates/core/child_detail.html:7
#: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4 #: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4
@ -325,7 +284,7 @@ msgstr "Zeitverlauf"
msgid "Children" msgid "Children"
msgstr "Kinder" msgstr "Kinder"
#: babybuddy/templates/babybuddy/nav-dropdown.html:143 core/models.py:137 #: babybuddy/templates/babybuddy/nav-dropdown.html:124 core/models.py:137
#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335 #: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335
#: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450 #: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450
#: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671 #: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671
@ -344,7 +303,7 @@ msgstr "Kinder"
msgid "Child" msgid "Child"
msgstr "Kind" msgstr "Kind"
#: babybuddy/templates/babybuddy/nav-dropdown.html:151 core/models.py:143 #: babybuddy/templates/babybuddy/nav-dropdown.html:132 core/models.py:143
#: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373 #: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373
#: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511 #: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511
#: core/models.py:677 core/templates/core/note_confirm_delete.html:7 #: core/models.py:677 core/templates/core/note_confirm_delete.html:7
@ -353,38 +312,26 @@ msgstr "Kind"
msgid "Notes" msgid "Notes"
msgstr "Notizen" msgstr "Notizen"
#: babybuddy/templates/babybuddy/nav-dropdown.html:171 #: babybuddy/templates/babybuddy/nav-dropdown.html:152
msgid "Measurements" msgid "Measurements"
msgstr "Messungen" msgstr "Messungen"
#: babybuddy/templates/babybuddy/nav-dropdown.html:185 #: babybuddy/templates/babybuddy/nav-dropdown.html:160 core/models.py:139
msgid "Temperature reading" #: core/models.py:151 core/models.py:152 core/models.py:155
msgstr "Temperatur Messung" #: core/templates/core/bmi_confirm_delete.html:7
#: core/templates/core/bmi_form.html:13 core/templates/core/bmi_list.html:4
#: core/templates/core/bmi_list.html:7 core/templates/core/bmi_list.html:12
#: core/templates/core/bmi_list.html:29 reports/graphs/bmi_change.py:19
#: reports/graphs/bmi_change.py:30 reports/templates/reports/bmi_change.html:4
#: reports/templates/reports/bmi_change.html:8
msgid "BMI"
msgstr "BMI"
#: babybuddy/templates/babybuddy/nav-dropdown.html:199 #: babybuddy/templates/babybuddy/nav-dropdown.html:166
msgid "Weight entry" msgid "BMI entry"
msgstr "Gewichtseintrag" msgstr "BMI Eintrag"
#: babybuddy/templates/babybuddy/nav-dropdown.html:207 core/models.py:369 #: babybuddy/templates/babybuddy/nav-dropdown.html:174 core/models.py:338
#: core/models.py:381 core/models.py:382 core/models.py:385
#: core/templates/core/height_confirm_delete.html:7
#: core/templates/core/height_form.html:13
#: core/templates/core/height_list.html:4
#: core/templates/core/height_list.html:7
#: core/templates/core/height_list.html:12
#: core/templates/core/height_list.html:29 reports/graphs/height_change.py:19
#: reports/graphs/height_change.py:30
#: reports/templates/reports/height_change.html:4
#: reports/templates/reports/height_change.html:8
#: reports/templates/reports/report_list.html:17
msgid "Height"
msgstr "Größe"
#: babybuddy/templates/babybuddy/nav-dropdown.html:213
msgid "Height entry"
msgstr "Größen Eintrag"
#: babybuddy/templates/babybuddy/nav-dropdown.html:221 core/models.py:338
#: core/models.py:351 core/models.py:352 core/models.py:355 #: core/models.py:351 core/models.py:352 core/models.py:355
#: core/templates/core/head_circumference_confirm_delete.html:7 #: core/templates/core/head_circumference_confirm_delete.html:7
#: core/templates/core/head_circumference_form.html:13 #: core/templates/core/head_circumference_form.html:13
@ -400,39 +347,77 @@ msgstr "Größen Eintrag"
msgid "Head Circumference" msgid "Head Circumference"
msgstr "Kopfumfang" msgstr "Kopfumfang"
#: babybuddy/templates/babybuddy/nav-dropdown.html:227 #: babybuddy/templates/babybuddy/nav-dropdown.html:180
msgid "Head Circumference entry" msgid "Head Circumference entry"
msgstr "Kopfumfang Eintrag" msgstr "Kopfumfang Eintrag"
#: babybuddy/templates/babybuddy/nav-dropdown.html:235 core/models.py:139 #: babybuddy/templates/babybuddy/nav-dropdown.html:188 core/models.py:369
#: core/models.py:151 core/models.py:152 core/models.py:155 #: core/models.py:381 core/models.py:382 core/models.py:385
#: core/templates/core/bmi_confirm_delete.html:7 #: core/templates/core/height_confirm_delete.html:7
#: core/templates/core/bmi_form.html:13 core/templates/core/bmi_list.html:4 #: core/templates/core/height_form.html:13
#: core/templates/core/bmi_list.html:7 core/templates/core/bmi_list.html:12 #: core/templates/core/height_list.html:4
#: core/templates/core/bmi_list.html:29 reports/graphs/bmi_change.py:19 #: core/templates/core/height_list.html:7
#: reports/graphs/bmi_change.py:30 reports/templates/reports/bmi_change.html:4 #: core/templates/core/height_list.html:12
#: reports/templates/reports/bmi_change.html:8 #: core/templates/core/height_list.html:29 reports/graphs/height_change.py:19
msgid "BMI" #: reports/graphs/height_change.py:30
msgstr "BMI" #: reports/templates/reports/height_change.html:4
#: reports/templates/reports/height_change.html:8
#: reports/templates/reports/report_list.html:17
msgid "Height"
msgstr "Größe"
#: babybuddy/templates/babybuddy/nav-dropdown.html:241 #: babybuddy/templates/babybuddy/nav-dropdown.html:194
msgid "BMI entry" msgid "Height entry"
msgstr "BMI Eintrag" msgstr "Größen Eintrag"
#: babybuddy/templates/babybuddy/nav-dropdown.html:255 #: babybuddy/templates/babybuddy/nav-dropdown.html:202 core/models.py:506
#: core/models.py:519 core/models.py:520 core/models.py:523
#: core/templates/core/temperature_confirm_delete.html:7
#: core/templates/core/temperature_form.html:13
#: core/templates/core/temperature_list.html:4
#: core/templates/core/temperature_list.html:7
#: core/templates/core/temperature_list.html:12
#: core/templates/core/temperature_list.html:29
msgid "Temperature"
msgstr "Temperatur"
#: babybuddy/templates/babybuddy/nav-dropdown.html:208
msgid "Temperature reading"
msgstr "Temperatur Messung"
#: babybuddy/templates/babybuddy/nav-dropdown.html:216 core/models.py:673
#: core/models.py:685 core/models.py:686 core/models.py:689
#: core/templates/core/weight_confirm_delete.html:7
#: core/templates/core/weight_form.html:13
#: core/templates/core/weight_list.html:4
#: core/templates/core/weight_list.html:7
#: core/templates/core/weight_list.html:12
#: core/templates/core/weight_list.html:29 reports/graphs/weight_change.py:19
#: reports/graphs/weight_change.py:30
#: reports/templates/reports/report_list.html:22
#: reports/templates/reports/weight_change.html:4
#: reports/templates/reports/weight_change.html:8
msgid "Weight"
msgstr "Gewicht"
#: babybuddy/templates/babybuddy/nav-dropdown.html:222
msgid "Weight entry"
msgstr "Gewichtseintrag"
#: babybuddy/templates/babybuddy/nav-dropdown.html:236
msgid "Activities" msgid "Activities"
msgstr "Aktivitäten" msgstr "Aktivitäten"
#: babybuddy/templates/babybuddy/nav-dropdown.html:262 #: babybuddy/templates/babybuddy/nav-dropdown.html:243
#: reports/graphs/diaperchange_lifetimes.py:27 #: reports/graphs/diaperchange_lifetimes.py:27
msgid "Changes" msgid "Changes"
msgstr "Wechsel" msgstr "Wechsel"
#: babybuddy/templates/babybuddy/nav-dropdown.html:268 #: babybuddy/templates/babybuddy/nav-dropdown.html:249
msgid "Change" msgid "Change"
msgstr "Wechsel" msgstr "Wechsel"
#: babybuddy/templates/babybuddy/nav-dropdown.html:275 #: babybuddy/templates/babybuddy/nav-dropdown.html:256
#: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313 #: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313
#: core/templates/core/feeding_confirm_delete.html:7 #: core/templates/core/feeding_confirm_delete.html:7
#: core/templates/core/feeding_form.html:13 #: core/templates/core/feeding_form.html:13
@ -442,19 +427,31 @@ msgstr "Wechsel"
msgid "Feedings" msgid "Feedings"
msgstr "Mahlzeiten" msgstr "Mahlzeiten"
#: babybuddy/templates/babybuddy/nav-dropdown.html:294 #: babybuddy/templates/babybuddy/nav-dropdown.html:270 core/models.py:437
msgid "Sleep entry" #: core/models.py:438 core/models.py:441
msgstr "Schlaf-Eintrag" #: core/templates/core/pumping_confirm_delete.html:7
#: core/templates/core/pumping_form.html:13
#: core/templates/core/pumping_list.html:4
#: core/templates/core/pumping_list.html:7
#: core/templates/core/pumping_list.html:12
#: reports/templates/reports/pumping_amounts.html:4
#: reports/templates/reports/pumping_amounts.html:8
msgid "Pumping"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:307 #: babybuddy/templates/babybuddy/nav-dropdown.html:276
msgid "Tummy Time entry"
msgstr "Bauchzeit-Eintrag"
#: babybuddy/templates/babybuddy/nav-dropdown.html:322
msgid "Pumping entry" msgid "Pumping entry"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:346 #: babybuddy/templates/babybuddy/nav-dropdown.html:289
msgid "Sleep entry"
msgstr "Schlaf-Eintrag"
#: babybuddy/templates/babybuddy/nav-dropdown.html:302
msgid "Tummy Time entry"
msgstr "Bauchzeit-Eintrag"
#: babybuddy/templates/babybuddy/nav-dropdown.html:326
#: babybuddy/templates/babybuddy/user_list.html:17 #: babybuddy/templates/babybuddy/user_list.html:17
#: babybuddy/templates/babybuddy/user_password_form.html:7 #: babybuddy/templates/babybuddy/user_password_form.html:7
#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556 #: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556
@ -462,23 +459,23 @@ msgstr ""
msgid "User" msgid "User"
msgstr "Benutzer" msgstr "Benutzer"
#: babybuddy/templates/babybuddy/nav-dropdown.html:348 #: babybuddy/templates/babybuddy/nav-dropdown.html:328
msgid "Password" msgid "Password"
msgstr "Passwort" msgstr "Passwort"
#: babybuddy/templates/babybuddy/nav-dropdown.html:352 #: babybuddy/templates/babybuddy/nav-dropdown.html:332
msgid "Logout" msgid "Logout"
msgstr "Logout" msgstr "Logout"
#: babybuddy/templates/babybuddy/nav-dropdown.html:355 #: babybuddy/templates/babybuddy/nav-dropdown.html:335
msgid "Site" msgid "Site"
msgstr "Seite" msgstr "Seite"
#: babybuddy/templates/babybuddy/nav-dropdown.html:356 #: babybuddy/templates/babybuddy/nav-dropdown.html:336
msgid "API Browser" msgid "API Browser"
msgstr "API Browser" msgstr "API Browser"
#: babybuddy/templates/babybuddy/nav-dropdown.html:358 #: babybuddy/templates/babybuddy/nav-dropdown.html:338
#: babybuddy/templates/babybuddy/user_confirm_delete.html:7 #: babybuddy/templates/babybuddy/user_confirm_delete.html:7
#: babybuddy/templates/babybuddy/user_form.html:13 #: babybuddy/templates/babybuddy/user_form.html:13
#: babybuddy/templates/babybuddy/user_list.html:4 #: babybuddy/templates/babybuddy/user_list.html:4
@ -486,15 +483,15 @@ msgstr "API Browser"
msgid "Users" msgid "Users"
msgstr "Benutzer" msgstr "Benutzer"
#: babybuddy/templates/babybuddy/nav-dropdown.html:361 #: babybuddy/templates/babybuddy/nav-dropdown.html:341
msgid "Support" msgid "Support"
msgstr "Support" msgstr "Support"
#: babybuddy/templates/babybuddy/nav-dropdown.html:363 #: babybuddy/templates/babybuddy/nav-dropdown.html:343
msgid "Source Code" msgid "Source Code"
msgstr "Quellcode" msgstr "Quellcode"
#: babybuddy/templates/babybuddy/nav-dropdown.html:365 #: babybuddy/templates/babybuddy/nav-dropdown.html:345
msgid "Chat / Support" msgid "Chat / Support"
msgstr "Chat / Support" msgstr "Chat / Support"
@ -505,6 +502,7 @@ msgstr "Chat / Support"
#: core/templates/timeline/_timeline.html:73 #: core/templates/timeline/_timeline.html:73
#: dashboard/templates/cards/feeding_day.html:43 #: dashboard/templates/cards/feeding_day.html:43
#: dashboard/templates/cards/feeding_last_method.html:34 #: dashboard/templates/cards/feeding_last_method.html:34
#: dashboard/templates/cards/sleep_recent.html:43
#: dashboard/templates/cards/statistics.html:34 #: dashboard/templates/cards/statistics.html:34
msgid "Previous" msgid "Previous"
msgstr "Zurück" msgstr "Zurück"
@ -516,6 +514,7 @@ msgstr "Zurück"
#: core/templates/timeline/_timeline.html:80 #: core/templates/timeline/_timeline.html:80
#: dashboard/templates/cards/feeding_day.html:47 #: dashboard/templates/cards/feeding_day.html:47
#: dashboard/templates/cards/feeding_last_method.html:38 #: dashboard/templates/cards/feeding_last_method.html:38
#: dashboard/templates/cards/sleep_recent.html:47
#: dashboard/templates/cards/statistics.html:38 #: dashboard/templates/cards/statistics.html:38
msgid "Next" msgid "Next"
msgstr "Weiter" msgstr "Weiter"
@ -985,7 +984,7 @@ msgstr ""
#: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70 #: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70
#: reports/graphs/feeding_duration.py:56 #: reports/graphs/feeding_duration.py:56
#: reports/graphs/head_circumference_change.py:28 #: reports/graphs/head_circumference_change.py:28
#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:58 #: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60
#: reports/graphs/sleep_pattern.py:151 reports/graphs/sleep_totals.py:59 #: reports/graphs/sleep_pattern.py:151 reports/graphs/sleep_totals.py:59
#: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28 #: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28
msgid "Date" msgid "Date"
@ -1159,7 +1158,9 @@ msgid "Add BMI"
msgstr "Füge BMI hinzu" msgstr "Füge BMI hinzu"
#: core/templates/core/bmi_list.html:70 #: core/templates/core/bmi_list.html:70
msgid "No bmi entries found." #, fuzzy
#| msgid "No bmi entries found."
msgid "No BMI entries found."
msgstr "Keine BMI Einträge gefunden." msgstr "Keine BMI Einträge gefunden."
#: core/templates/core/child_confirm_delete.html:4 #: core/templates/core/child_confirm_delete.html:4
@ -1460,9 +1461,10 @@ msgstr "Aktive Timer"
#: dashboard/templates/cards/feeding_day.html:52 #: dashboard/templates/cards/feeding_day.html:52
#: dashboard/templates/cards/feeding_last.html:17 #: dashboard/templates/cards/feeding_last.html:17
#: dashboard/templates/cards/feeding_last_method.html:43 #: dashboard/templates/cards/feeding_last_method.html:43
#: dashboard/templates/cards/sleep_day.html:14
#: dashboard/templates/cards/sleep_last.html:17 #: dashboard/templates/cards/sleep_last.html:17
#: dashboard/templates/cards/sleep_naps_day.html:18 #: dashboard/templates/cards/sleep_naps_day.html:18
#: dashboard/templates/cards/sleep_recent.html:20
#: dashboard/templates/cards/sleep_recent.html:52
#: dashboard/templates/cards/tummytime_day.html:14 #: dashboard/templates/cards/tummytime_day.html:14
msgid "None" msgid "None"
msgstr "Keine" msgstr "Keine"
@ -1580,6 +1582,22 @@ msgstr "{}, {}"
msgid "0 days" msgid "0 days"
msgstr "0 Tage" msgstr "0 Tage"
#: core/templatetags/duration.py:111
#: dashboard/templates/cards/diaperchange_types.html:49
msgid "today"
msgstr "heute"
#: core/templatetags/duration.py:113
#: dashboard/templates/cards/diaperchange_types.html:51
msgid "yesterday"
msgstr "gestern"
#: core/templatetags/duration.py:116
#, fuzzy
#| msgid "%(key)s days ago"
msgid " days ago"
msgstr "Vor %(key)s Tagen"
#: core/timeline.py:53 #: core/timeline.py:53
#, python-format #, python-format
msgid "%(child)s started tummy time!" msgid "%(child)s started tummy time!"
@ -1718,14 +1736,6 @@ msgstr "nass"
msgid "solid" msgid "solid"
msgstr "fest" msgstr "fest"
#: dashboard/templates/cards/diaperchange_types.html:49
msgid "today"
msgstr "heute"
#: dashboard/templates/cards/diaperchange_types.html:51
msgid "yesterday"
msgstr "gestern"
#: dashboard/templates/cards/diaperchange_types.html:53 #: dashboard/templates/cards/diaperchange_types.html:53
#, python-format #, python-format
msgid "%(key)s days ago" msgid "%(key)s days ago"
@ -1744,6 +1754,7 @@ msgstr[0] "%(count)s Schlaf-Einträge"
msgstr[1] "%(count)s Schlaf-Einträge" msgstr[1] "%(count)s Schlaf-Einträge"
#: dashboard/templates/cards/feeding_day.html:32 #: dashboard/templates/cards/feeding_day.html:32
#: dashboard/templates/cards/sleep_recent.html:32
#, python-format #, python-format
msgid "<div class=\"text-center small text-muted\"> %(since)s </div>" msgid "<div class=\"text-center small text-muted\"> %(since)s </div>"
msgstr "" msgstr ""
@ -1768,15 +1779,6 @@ msgid_plural "%(n)s feedings ago"
msgstr[0] "vor %(n)s Mahlzeit%(plural)sen" msgstr[0] "vor %(n)s Mahlzeit%(plural)sen"
msgstr[1] "vor %(n)s Mahlzeit%(plural)sen" msgstr[1] "vor %(n)s Mahlzeit%(plural)sen"
#: dashboard/templates/cards/sleep_day.html:6
msgid "Today's Sleep"
msgstr "Schlaf heute"
#: dashboard/templates/cards/sleep_day.html:20
#, python-format
msgid "%(count)s sleep entries"
msgstr "%(count)s Schlaf-Einträge"
#: dashboard/templates/cards/sleep_last.html:6 #: dashboard/templates/cards/sleep_last.html:6
msgid "Last Sleep" msgid "Last Sleep"
msgstr "Letzter Schlaf" msgstr "Letzter Schlaf"
@ -1793,6 +1795,20 @@ msgid_plural "%(count)s naps"
msgstr[0] "%(count)s Nickerchen%(plural)s." msgstr[0] "%(count)s Nickerchen%(plural)s."
msgstr[1] "%(count)s Nickerchen%(plural)s." msgstr[1] "%(count)s Nickerchen%(plural)s."
#: dashboard/templates/cards/sleep_recent.html:6
#, fuzzy
#| msgid "Last Sleep"
msgid "Recent Sleep"
msgstr "Letzter Schlaf"
#: dashboard/templates/cards/sleep_recent.html:25
#, fuzzy, python-format
#| msgid "%(count)s sleep entries"
msgid "%(counter)s sleep"
msgid_plural "%(counter)s sleep"
msgstr[0] "%(count)s Schlaf-Einträge"
msgstr[1] "%(count)s Schlaf-Einträge"
#: dashboard/templates/cards/statistics.html:7 #: dashboard/templates/cards/statistics.html:7
msgid "Statistics" msgid "Statistics"
msgstr "Statistiken" msgstr "Statistiken"
@ -1845,59 +1861,59 @@ msgstr "Aktionen des Kindes"
msgid "Reports" msgid "Reports"
msgstr "Reports" msgstr "Reports"
#: dashboard/templatetags/cards.py:328 #: dashboard/templatetags/cards.py:357
msgid "Average nap duration" msgid "Average nap duration"
msgstr "Durschnittliche Nickerchen-Dauer" msgstr "Durschnittliche Nickerchen-Dauer"
#: dashboard/templatetags/cards.py:335 #: dashboard/templatetags/cards.py:364
msgid "Average naps per day" msgid "Average naps per day"
msgstr "Durschnittliche Anzahl Nickerchen" msgstr "Durschnittliche Anzahl Nickerchen"
#: dashboard/templatetags/cards.py:345 #: dashboard/templatetags/cards.py:374
msgid "Average sleep duration" msgid "Average sleep duration"
msgstr "Durchschnittliche Schlafdauer" msgstr "Durchschnittliche Schlafdauer"
#: dashboard/templatetags/cards.py:352 #: dashboard/templatetags/cards.py:381
msgid "Average awake duration" msgid "Average awake duration"
msgstr "Durchschnittlich wach" msgstr "Durchschnittlich wach"
#: dashboard/templatetags/cards.py:362 #: dashboard/templatetags/cards.py:391
msgid "Weight change per week" msgid "Weight change per week"
msgstr "Gewichtsänderung pro Woche" msgstr "Gewichtsänderung pro Woche"
#: dashboard/templatetags/cards.py:372 #: dashboard/templatetags/cards.py:401
msgid "Height change per week" msgid "Height change per week"
msgstr "Größenänderung pro Woche" msgstr "Größenänderung pro Woche"
#: dashboard/templatetags/cards.py:382 #: dashboard/templatetags/cards.py:411
msgid "Head circumference change per week" msgid "Head circumference change per week"
msgstr "Kopfumfang Änderung pro woche" msgstr "Kopfumfang Änderung pro woche"
#: dashboard/templatetags/cards.py:392 #: dashboard/templatetags/cards.py:421
msgid "BMI change per week" msgid "BMI change per week"
msgstr "BMI Änderung pro Woche" msgstr "BMI Änderung pro Woche"
#: dashboard/templatetags/cards.py:410 #: dashboard/templatetags/cards.py:439
msgid "Diaper change frequency (past 3 days)" msgid "Diaper change frequency (past 3 days)"
msgstr "" msgstr ""
#: dashboard/templatetags/cards.py:414 #: dashboard/templatetags/cards.py:443
msgid "Diaper change frequency (past 2 weeks)" msgid "Diaper change frequency (past 2 weeks)"
msgstr "" msgstr ""
#: dashboard/templatetags/cards.py:420 #: dashboard/templatetags/cards.py:449
msgid "Diaper change frequency" msgid "Diaper change frequency"
msgstr "Frequenz Windelwechsel" msgstr "Frequenz Windelwechsel"
#: dashboard/templatetags/cards.py:456 #: dashboard/templatetags/cards.py:485
msgid "Feeding frequency (past 3 days)" msgid "Feeding frequency (past 3 days)"
msgstr "Mahlzeitenintervall (letzte 3 Tage)" msgstr "Mahlzeitenintervall (letzte 3 Tage)"
#: dashboard/templatetags/cards.py:460 #: dashboard/templatetags/cards.py:489
msgid "Feeding frequency (past 2 weeks)" msgid "Feeding frequency (past 2 weeks)"
msgstr "Mahlzeitenintervall (letzte 2 Wochen)" msgstr "Mahlzeitenintervall (letzte 2 Wochen)"
#: dashboard/templatetags/cards.py:466 #: dashboard/templatetags/cards.py:495
msgid "Feeding frequency" msgid "Feeding frequency"
msgstr "Frequenz Mahlzeiten" msgstr "Frequenz Mahlzeiten"
@ -1973,11 +1989,11 @@ msgstr "<b>Kopfumfang</b>"
msgid "<b>Height</b>" msgid "<b>Height</b>"
msgstr "<b>Größe</b>" msgstr "<b>Größe</b>"
#: reports/graphs/pumping_amounts.py:57 #: reports/graphs/pumping_amounts.py:59
msgid "<b>Total Pumping Amount</b>" msgid "<b>Total Pumping Amount</b>"
msgstr "" msgstr ""
#: reports/graphs/pumping_amounts.py:60 #: reports/graphs/pumping_amounts.py:62
msgid "Pumping Amount" msgid "Pumping Amount"
msgstr "" msgstr ""
@ -2090,3 +2106,10 @@ msgstr "Bauchzeit Dauer (Summe)"
#: reports/templates/reports/tummytime_duration.html:8 #: reports/templates/reports/tummytime_duration.html:8
msgid "Total Tummy Time Durations" msgid "Total Tummy Time Durations"
msgstr "Totalle Bauchzeit Dauer" msgstr "Totalle Bauchzeit Dauer"
#~ msgid "Today's Sleep"
#~ msgstr "Schlaf heute"
#, python-format
#~ msgid "%(count)s sleep entries"
#~ msgstr "%(count)s Schlaf-Einträge"

View File

@ -2,7 +2,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Baby Buddy\n" "Project-Id-Version: Baby Buddy\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-06-05 13:25+0000\n" "POT-Creation-Date: 2022-06-17 22:25+0000\n"
"Language: en-GB\n" "Language: en-GB\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -10,12 +10,12 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: babybuddy/admin.py:12 babybuddy/admin.py:13 #: babybuddy/admin.py:12 babybuddy/admin.py:13
#: babybuddy/templates/babybuddy/nav-dropdown.html:347 #: babybuddy/templates/babybuddy/nav-dropdown.html:327
#: babybuddy/templates/babybuddy/user_settings_form.html:8 #: babybuddy/templates/babybuddy/user_settings_form.html:8
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:111 #: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:92
#: babybuddy/templates/babybuddy/user_settings_form.html:61 #: babybuddy/templates/babybuddy/user_settings_form.html:61
#: dashboard/templates/dashboard/child.html:4 #: dashboard/templates/dashboard/child.html:4
#: dashboard/templates/dashboard/child.html:9 #: dashboard/templates/dashboard/child.html:9
@ -178,7 +178,7 @@ msgstr ""
#: babybuddy/templates/admin/base_site.html:4 #: babybuddy/templates/admin/base_site.html:4
#: babybuddy/templates/admin/base_site.html:7 #: babybuddy/templates/admin/base_site.html:7
#: babybuddy/templates/babybuddy/nav-dropdown.html:359 #: babybuddy/templates/babybuddy/nav-dropdown.html:339
msgid "Database Admin" msgid "Database Admin"
msgstr "" msgstr ""
@ -225,19 +225,19 @@ msgid "Diaper Change"
msgstr "Nappy Change" msgstr "Nappy Change"
#: babybuddy/templates/babybuddy/nav-dropdown.html:57 #: babybuddy/templates/babybuddy/nav-dropdown.html:57
#: babybuddy/templates/babybuddy/nav-dropdown.html:281 core/models.py:312 #: babybuddy/templates/babybuddy/nav-dropdown.html:262 core/models.py:312
#: core/models.py:316 core/templates/core/timer_detail.html:43 #: core/models.py:316 core/templates/core/timer_detail.html:43
msgid "Feeding" msgid "Feeding"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:63 #: babybuddy/templates/babybuddy/nav-dropdown.html:63
#: babybuddy/templates/babybuddy/nav-dropdown.html:157 core/models.py:396 #: babybuddy/templates/babybuddy/nav-dropdown.html:138 core/models.py:396
#: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29 #: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29
msgid "Note" msgid "Note"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:69 #: babybuddy/templates/babybuddy/nav-dropdown.html:69
#: babybuddy/templates/babybuddy/nav-dropdown.html:288 #: babybuddy/templates/babybuddy/nav-dropdown.html:283
#: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467 #: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467
#: core/models.py:468 core/models.py:471 #: core/models.py:468 core/models.py:471
#: core/templates/core/sleep_confirm_delete.html:7 #: core/templates/core/sleep_confirm_delete.html:7
@ -248,19 +248,7 @@ msgid "Sleep"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:75 #: babybuddy/templates/babybuddy/nav-dropdown.html:75
#: babybuddy/templates/babybuddy/nav-dropdown.html:179 core/models.py:506 #: babybuddy/templates/babybuddy/nav-dropdown.html:296
#: core/models.py:519 core/models.py:520 core/models.py:523
#: core/templates/core/temperature_confirm_delete.html:7
#: core/templates/core/temperature_form.html:13
#: core/templates/core/temperature_list.html:4
#: core/templates/core/temperature_list.html:7
#: core/templates/core/temperature_list.html:12
#: core/templates/core/temperature_list.html:29
msgid "Temperature"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:81
#: babybuddy/templates/babybuddy/nav-dropdown.html:301
#: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647 #: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647
#: core/models.py:648 core/models.py:651 #: core/models.py:648 core/models.py:651
#: core/templates/core/timer_detail.html:59 #: core/templates/core/timer_detail.html:59
@ -272,44 +260,15 @@ msgstr ""
msgid "Tummy Time" msgid "Tummy Time"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:87 #: babybuddy/templates/babybuddy/nav-dropdown.html:99
#: babybuddy/templates/babybuddy/nav-dropdown.html:193 core/models.py:673
#: core/models.py:685 core/models.py:686 core/models.py:689
#: core/templates/core/weight_confirm_delete.html:7
#: core/templates/core/weight_form.html:13
#: core/templates/core/weight_list.html:4
#: core/templates/core/weight_list.html:7
#: core/templates/core/weight_list.html:12
#: core/templates/core/weight_list.html:29 reports/graphs/weight_change.py:19
#: reports/graphs/weight_change.py:30
#: reports/templates/reports/report_list.html:22
#: reports/templates/reports/weight_change.html:4
#: reports/templates/reports/weight_change.html:8
msgid "Weight"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:93
#: babybuddy/templates/babybuddy/nav-dropdown.html:316 core/models.py:437
#: core/models.py:438 core/models.py:441
#: core/templates/core/pumping_confirm_delete.html:7
#: core/templates/core/pumping_form.html:13
#: core/templates/core/pumping_list.html:4
#: core/templates/core/pumping_list.html:7
#: core/templates/core/pumping_list.html:12
#: reports/templates/reports/pumping_amounts.html:4
#: reports/templates/reports/pumping_amounts.html:8
msgid "Pumping"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:118
#: core/templates/timeline/timeline.html:4 #: core/templates/timeline/timeline.html:4
#: core/templates/timeline/timeline.html:7 #: core/templates/timeline/timeline.html:7
#: dashboard/templates/dashboard/child_button_group.html:9 #: dashboard/templates/dashboard/child_button_group.html:9
msgid "Timeline" msgid "Timeline"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:129 #: babybuddy/templates/babybuddy/nav-dropdown.html:110
#: babybuddy/templates/babybuddy/nav-dropdown.html:137 core/models.py:188 #: babybuddy/templates/babybuddy/nav-dropdown.html:118 core/models.py:188
#: core/templates/core/child_confirm_delete.html:7 #: core/templates/core/child_confirm_delete.html:7
#: core/templates/core/child_detail.html:7 #: core/templates/core/child_detail.html:7
#: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4 #: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4
@ -319,7 +278,7 @@ msgstr ""
msgid "Children" msgid "Children"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:143 core/models.py:137 #: babybuddy/templates/babybuddy/nav-dropdown.html:124 core/models.py:137
#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335 #: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335
#: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450 #: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450
#: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671 #: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671
@ -338,7 +297,7 @@ msgstr ""
msgid "Child" msgid "Child"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:151 core/models.py:143 #: babybuddy/templates/babybuddy/nav-dropdown.html:132 core/models.py:143
#: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373 #: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373
#: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511 #: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511
#: core/models.py:677 core/templates/core/note_confirm_delete.html:7 #: core/models.py:677 core/templates/core/note_confirm_delete.html:7
@ -347,38 +306,26 @@ msgstr ""
msgid "Notes" msgid "Notes"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:171 #: babybuddy/templates/babybuddy/nav-dropdown.html:152
msgid "Measurements" msgid "Measurements"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:185 #: babybuddy/templates/babybuddy/nav-dropdown.html:160 core/models.py:139
msgid "Temperature reading" #: core/models.py:151 core/models.py:152 core/models.py:155
#: core/templates/core/bmi_confirm_delete.html:7
#: core/templates/core/bmi_form.html:13 core/templates/core/bmi_list.html:4
#: core/templates/core/bmi_list.html:7 core/templates/core/bmi_list.html:12
#: core/templates/core/bmi_list.html:29 reports/graphs/bmi_change.py:19
#: reports/graphs/bmi_change.py:30 reports/templates/reports/bmi_change.html:4
#: reports/templates/reports/bmi_change.html:8
msgid "BMI"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:199 #: babybuddy/templates/babybuddy/nav-dropdown.html:166
msgid "Weight entry" msgid "BMI entry"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:207 core/models.py:369 #: babybuddy/templates/babybuddy/nav-dropdown.html:174 core/models.py:338
#: core/models.py:381 core/models.py:382 core/models.py:385
#: core/templates/core/height_confirm_delete.html:7
#: core/templates/core/height_form.html:13
#: core/templates/core/height_list.html:4
#: core/templates/core/height_list.html:7
#: core/templates/core/height_list.html:12
#: core/templates/core/height_list.html:29 reports/graphs/height_change.py:19
#: reports/graphs/height_change.py:30
#: reports/templates/reports/height_change.html:4
#: reports/templates/reports/height_change.html:8
#: reports/templates/reports/report_list.html:17
msgid "Height"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:213
msgid "Height entry"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:221 core/models.py:338
#: core/models.py:351 core/models.py:352 core/models.py:355 #: core/models.py:351 core/models.py:352 core/models.py:355
#: core/templates/core/head_circumference_confirm_delete.html:7 #: core/templates/core/head_circumference_confirm_delete.html:7
#: core/templates/core/head_circumference_form.html:13 #: core/templates/core/head_circumference_form.html:13
@ -394,39 +341,77 @@ msgstr ""
msgid "Head Circumference" msgid "Head Circumference"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:227 #: babybuddy/templates/babybuddy/nav-dropdown.html:180
msgid "Head Circumference entry" msgid "Head Circumference entry"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:235 core/models.py:139 #: babybuddy/templates/babybuddy/nav-dropdown.html:188 core/models.py:369
#: core/models.py:151 core/models.py:152 core/models.py:155 #: core/models.py:381 core/models.py:382 core/models.py:385
#: core/templates/core/bmi_confirm_delete.html:7 #: core/templates/core/height_confirm_delete.html:7
#: core/templates/core/bmi_form.html:13 core/templates/core/bmi_list.html:4 #: core/templates/core/height_form.html:13
#: core/templates/core/bmi_list.html:7 core/templates/core/bmi_list.html:12 #: core/templates/core/height_list.html:4
#: core/templates/core/bmi_list.html:29 reports/graphs/bmi_change.py:19 #: core/templates/core/height_list.html:7
#: reports/graphs/bmi_change.py:30 reports/templates/reports/bmi_change.html:4 #: core/templates/core/height_list.html:12
#: reports/templates/reports/bmi_change.html:8 #: core/templates/core/height_list.html:29 reports/graphs/height_change.py:19
msgid "BMI" #: reports/graphs/height_change.py:30
#: reports/templates/reports/height_change.html:4
#: reports/templates/reports/height_change.html:8
#: reports/templates/reports/report_list.html:17
msgid "Height"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:241 #: babybuddy/templates/babybuddy/nav-dropdown.html:194
msgid "BMI entry" msgid "Height entry"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:255 #: babybuddy/templates/babybuddy/nav-dropdown.html:202 core/models.py:506
#: core/models.py:519 core/models.py:520 core/models.py:523
#: core/templates/core/temperature_confirm_delete.html:7
#: core/templates/core/temperature_form.html:13
#: core/templates/core/temperature_list.html:4
#: core/templates/core/temperature_list.html:7
#: core/templates/core/temperature_list.html:12
#: core/templates/core/temperature_list.html:29
msgid "Temperature"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:208
msgid "Temperature reading"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:216 core/models.py:673
#: core/models.py:685 core/models.py:686 core/models.py:689
#: core/templates/core/weight_confirm_delete.html:7
#: core/templates/core/weight_form.html:13
#: core/templates/core/weight_list.html:4
#: core/templates/core/weight_list.html:7
#: core/templates/core/weight_list.html:12
#: core/templates/core/weight_list.html:29 reports/graphs/weight_change.py:19
#: reports/graphs/weight_change.py:30
#: reports/templates/reports/report_list.html:22
#: reports/templates/reports/weight_change.html:4
#: reports/templates/reports/weight_change.html:8
msgid "Weight"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:222
msgid "Weight entry"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:236
msgid "Activities" msgid "Activities"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:262 #: babybuddy/templates/babybuddy/nav-dropdown.html:243
#: reports/graphs/diaperchange_lifetimes.py:27 #: reports/graphs/diaperchange_lifetimes.py:27
msgid "Changes" msgid "Changes"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:268 #: babybuddy/templates/babybuddy/nav-dropdown.html:249
msgid "Change" msgid "Change"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:275 #: babybuddy/templates/babybuddy/nav-dropdown.html:256
#: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313 #: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313
#: core/templates/core/feeding_confirm_delete.html:7 #: core/templates/core/feeding_confirm_delete.html:7
#: core/templates/core/feeding_form.html:13 #: core/templates/core/feeding_form.html:13
@ -436,19 +421,31 @@ msgstr ""
msgid "Feedings" msgid "Feedings"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:294 #: babybuddy/templates/babybuddy/nav-dropdown.html:270 core/models.py:437
msgid "Sleep entry" #: core/models.py:438 core/models.py:441
#: core/templates/core/pumping_confirm_delete.html:7
#: core/templates/core/pumping_form.html:13
#: core/templates/core/pumping_list.html:4
#: core/templates/core/pumping_list.html:7
#: core/templates/core/pumping_list.html:12
#: reports/templates/reports/pumping_amounts.html:4
#: reports/templates/reports/pumping_amounts.html:8
msgid "Pumping"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:307 #: babybuddy/templates/babybuddy/nav-dropdown.html:276
msgid "Tummy Time entry"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:322
msgid "Pumping entry" msgid "Pumping entry"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:346 #: babybuddy/templates/babybuddy/nav-dropdown.html:289
msgid "Sleep entry"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:302
msgid "Tummy Time entry"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:326
#: babybuddy/templates/babybuddy/user_list.html:17 #: babybuddy/templates/babybuddy/user_list.html:17
#: babybuddy/templates/babybuddy/user_password_form.html:7 #: babybuddy/templates/babybuddy/user_password_form.html:7
#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556 #: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556
@ -456,23 +453,23 @@ msgstr ""
msgid "User" msgid "User"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:348 #: babybuddy/templates/babybuddy/nav-dropdown.html:328
msgid "Password" msgid "Password"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:352 #: babybuddy/templates/babybuddy/nav-dropdown.html:332
msgid "Logout" msgid "Logout"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:355 #: babybuddy/templates/babybuddy/nav-dropdown.html:335
msgid "Site" msgid "Site"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:356 #: babybuddy/templates/babybuddy/nav-dropdown.html:336
msgid "API Browser" msgid "API Browser"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:358 #: babybuddy/templates/babybuddy/nav-dropdown.html:338
#: babybuddy/templates/babybuddy/user_confirm_delete.html:7 #: babybuddy/templates/babybuddy/user_confirm_delete.html:7
#: babybuddy/templates/babybuddy/user_form.html:13 #: babybuddy/templates/babybuddy/user_form.html:13
#: babybuddy/templates/babybuddy/user_list.html:4 #: babybuddy/templates/babybuddy/user_list.html:4
@ -480,15 +477,15 @@ msgstr ""
msgid "Users" msgid "Users"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:361 #: babybuddy/templates/babybuddy/nav-dropdown.html:341
msgid "Support" msgid "Support"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:363 #: babybuddy/templates/babybuddy/nav-dropdown.html:343
msgid "Source Code" msgid "Source Code"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:365 #: babybuddy/templates/babybuddy/nav-dropdown.html:345
msgid "Chat / Support" msgid "Chat / Support"
msgstr "" msgstr ""
@ -499,6 +496,7 @@ msgstr ""
#: core/templates/timeline/_timeline.html:73 #: core/templates/timeline/_timeline.html:73
#: dashboard/templates/cards/feeding_day.html:43 #: dashboard/templates/cards/feeding_day.html:43
#: dashboard/templates/cards/feeding_last_method.html:34 #: dashboard/templates/cards/feeding_last_method.html:34
#: dashboard/templates/cards/sleep_recent.html:43
#: dashboard/templates/cards/statistics.html:34 #: dashboard/templates/cards/statistics.html:34
msgid "Previous" msgid "Previous"
msgstr "" msgstr ""
@ -510,6 +508,7 @@ msgstr ""
#: core/templates/timeline/_timeline.html:80 #: core/templates/timeline/_timeline.html:80
#: dashboard/templates/cards/feeding_day.html:47 #: dashboard/templates/cards/feeding_day.html:47
#: dashboard/templates/cards/feeding_last_method.html:38 #: dashboard/templates/cards/feeding_last_method.html:38
#: dashboard/templates/cards/sleep_recent.html:47
#: dashboard/templates/cards/statistics.html:38 #: dashboard/templates/cards/statistics.html:38
msgid "Next" msgid "Next"
msgstr "" msgstr ""
@ -960,7 +959,7 @@ msgstr ""
#: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70 #: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70
#: reports/graphs/feeding_duration.py:56 #: reports/graphs/feeding_duration.py:56
#: reports/graphs/head_circumference_change.py:28 #: reports/graphs/head_circumference_change.py:28
#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:58 #: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60
#: reports/graphs/sleep_pattern.py:151 reports/graphs/sleep_totals.py:59 #: reports/graphs/sleep_pattern.py:151 reports/graphs/sleep_totals.py:59
#: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28 #: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28
msgid "Date" msgid "Date"
@ -1134,8 +1133,10 @@ msgid "Add BMI"
msgstr "" msgstr ""
#: core/templates/core/bmi_list.html:70 #: core/templates/core/bmi_list.html:70
msgid "No bmi entries found." #, fuzzy
msgstr "" #| msgid "No diaper changes found."
msgid "No BMI entries found."
msgstr "No nappy changes found."
#: core/templates/core/child_confirm_delete.html:4 #: core/templates/core/child_confirm_delete.html:4
msgid "Delete a Child" msgid "Delete a Child"
@ -1431,9 +1432,10 @@ msgstr ""
#: dashboard/templates/cards/feeding_day.html:52 #: dashboard/templates/cards/feeding_day.html:52
#: dashboard/templates/cards/feeding_last.html:17 #: dashboard/templates/cards/feeding_last.html:17
#: dashboard/templates/cards/feeding_last_method.html:43 #: dashboard/templates/cards/feeding_last_method.html:43
#: dashboard/templates/cards/sleep_day.html:14
#: dashboard/templates/cards/sleep_last.html:17 #: dashboard/templates/cards/sleep_last.html:17
#: dashboard/templates/cards/sleep_naps_day.html:18 #: dashboard/templates/cards/sleep_naps_day.html:18
#: dashboard/templates/cards/sleep_recent.html:20
#: dashboard/templates/cards/sleep_recent.html:52
#: dashboard/templates/cards/tummytime_day.html:14 #: dashboard/templates/cards/tummytime_day.html:14
msgid "None" msgid "None"
msgstr "" msgstr ""
@ -1551,6 +1553,20 @@ msgstr ""
msgid "0 days" msgid "0 days"
msgstr "" msgstr ""
#: core/templatetags/duration.py:111
#: dashboard/templates/cards/diaperchange_types.html:49
msgid "today"
msgstr ""
#: core/templatetags/duration.py:113
#: dashboard/templates/cards/diaperchange_types.html:51
msgid "yesterday"
msgstr ""
#: core/templatetags/duration.py:116
msgid " days ago"
msgstr ""
#: core/timeline.py:53 #: core/timeline.py:53
#, python-format #, python-format
msgid "%(child)s started tummy time!" msgid "%(child)s started tummy time!"
@ -1689,14 +1705,6 @@ msgstr ""
msgid "solid" msgid "solid"
msgstr "" msgstr ""
#: dashboard/templates/cards/diaperchange_types.html:49
msgid "today"
msgstr ""
#: dashboard/templates/cards/diaperchange_types.html:51
msgid "yesterday"
msgstr ""
#: dashboard/templates/cards/diaperchange_types.html:53 #: dashboard/templates/cards/diaperchange_types.html:53
#, python-format #, python-format
msgid "%(key)s days ago" msgid "%(key)s days ago"
@ -1714,6 +1722,7 @@ msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: dashboard/templates/cards/feeding_day.html:32 #: dashboard/templates/cards/feeding_day.html:32
#: dashboard/templates/cards/sleep_recent.html:32
#, python-format #, python-format
msgid "<div class=\"text-center small text-muted\"> %(since)s </div>" msgid "<div class=\"text-center small text-muted\"> %(since)s </div>"
msgstr "" msgstr ""
@ -1737,15 +1746,6 @@ msgid_plural "%(n)s feedings ago"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: dashboard/templates/cards/sleep_day.html:6
msgid "Today's Sleep"
msgstr ""
#: dashboard/templates/cards/sleep_day.html:20
#, python-format
msgid "%(count)s sleep entries"
msgstr ""
#: dashboard/templates/cards/sleep_last.html:6 #: dashboard/templates/cards/sleep_last.html:6
msgid "Last Sleep" msgid "Last Sleep"
msgstr "" msgstr ""
@ -1761,6 +1761,17 @@ msgid_plural "%(count)s naps"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: dashboard/templates/cards/sleep_recent.html:6
msgid "Recent Sleep"
msgstr ""
#: dashboard/templates/cards/sleep_recent.html:25
#, python-format
msgid "%(counter)s sleep"
msgid_plural "%(counter)s sleep"
msgstr[0] ""
msgstr[1] ""
#: dashboard/templates/cards/statistics.html:7 #: dashboard/templates/cards/statistics.html:7
msgid "Statistics" msgid "Statistics"
msgstr "" msgstr ""
@ -1812,59 +1823,59 @@ msgstr ""
msgid "Reports" msgid "Reports"
msgstr "" msgstr ""
#: dashboard/templatetags/cards.py:328 #: dashboard/templatetags/cards.py:357
msgid "Average nap duration" msgid "Average nap duration"
msgstr "" msgstr ""
#: dashboard/templatetags/cards.py:335 #: dashboard/templatetags/cards.py:364
msgid "Average naps per day" msgid "Average naps per day"
msgstr "" msgstr ""
#: dashboard/templatetags/cards.py:345 #: dashboard/templatetags/cards.py:374
msgid "Average sleep duration" msgid "Average sleep duration"
msgstr "" msgstr ""
#: dashboard/templatetags/cards.py:352 #: dashboard/templatetags/cards.py:381
msgid "Average awake duration" msgid "Average awake duration"
msgstr "" msgstr ""
#: dashboard/templatetags/cards.py:362 #: dashboard/templatetags/cards.py:391
msgid "Weight change per week" msgid "Weight change per week"
msgstr "" msgstr ""
#: dashboard/templatetags/cards.py:372 #: dashboard/templatetags/cards.py:401
msgid "Height change per week" msgid "Height change per week"
msgstr "" msgstr ""
#: dashboard/templatetags/cards.py:382 #: dashboard/templatetags/cards.py:411
msgid "Head circumference change per week" msgid "Head circumference change per week"
msgstr "" msgstr ""
#: dashboard/templatetags/cards.py:392 #: dashboard/templatetags/cards.py:421
msgid "BMI change per week" msgid "BMI change per week"
msgstr "" msgstr ""
#: dashboard/templatetags/cards.py:410 #: dashboard/templatetags/cards.py:439
msgid "Diaper change frequency (past 3 days)" msgid "Diaper change frequency (past 3 days)"
msgstr "Nappy change frequency (past 3 days)" msgstr "Nappy change frequency (past 3 days)"
#: dashboard/templatetags/cards.py:414 #: dashboard/templatetags/cards.py:443
msgid "Diaper change frequency (past 2 weeks)" msgid "Diaper change frequency (past 2 weeks)"
msgstr "Nappy change frequency (past 2 weeks)" msgstr "Nappy change frequency (past 2 weeks)"
#: dashboard/templatetags/cards.py:420 #: dashboard/templatetags/cards.py:449
msgid "Diaper change frequency" msgid "Diaper change frequency"
msgstr "Nappy change frequency" msgstr "Nappy change frequency"
#: dashboard/templatetags/cards.py:456 #: dashboard/templatetags/cards.py:485
msgid "Feeding frequency (past 3 days)" msgid "Feeding frequency (past 3 days)"
msgstr "" msgstr ""
#: dashboard/templatetags/cards.py:460 #: dashboard/templatetags/cards.py:489
msgid "Feeding frequency (past 2 weeks)" msgid "Feeding frequency (past 2 weeks)"
msgstr "" msgstr ""
#: dashboard/templatetags/cards.py:466 #: dashboard/templatetags/cards.py:495
msgid "Feeding frequency" msgid "Feeding frequency"
msgstr "" msgstr ""
@ -1940,11 +1951,11 @@ msgstr ""
msgid "<b>Height</b>" msgid "<b>Height</b>"
msgstr "" msgstr ""
#: reports/graphs/pumping_amounts.py:57 #: reports/graphs/pumping_amounts.py:59
msgid "<b>Total Pumping Amount</b>" msgid "<b>Total Pumping Amount</b>"
msgstr "" msgstr ""
#: reports/graphs/pumping_amounts.py:60 #: reports/graphs/pumping_amounts.py:62
msgid "Pumping Amount" msgid "Pumping Amount"
msgstr "" msgstr ""

Binary file not shown.

View File

@ -2,7 +2,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Baby Buddy\n" "Project-Id-Version: Baby Buddy\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-06-05 13:25+0000\n" "POT-Creation-Date: 2022-06-17 22:25+0000\n"
"Language: es\n" "Language: es\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -11,12 +11,12 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: babybuddy/admin.py:12 babybuddy/admin.py:13 #: babybuddy/admin.py:12 babybuddy/admin.py:13
#: babybuddy/templates/babybuddy/nav-dropdown.html:347 #: babybuddy/templates/babybuddy/nav-dropdown.html:327
#: babybuddy/templates/babybuddy/user_settings_form.html:8 #: babybuddy/templates/babybuddy/user_settings_form.html:8
msgid "Settings" msgid "Settings"
msgstr "Configuración" msgstr "Configuración"
#: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:111 #: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:92
#: babybuddy/templates/babybuddy/user_settings_form.html:61 #: babybuddy/templates/babybuddy/user_settings_form.html:61
#: dashboard/templates/dashboard/child.html:4 #: dashboard/templates/dashboard/child.html:4
#: dashboard/templates/dashboard/child.html:9 #: dashboard/templates/dashboard/child.html:9
@ -181,7 +181,7 @@ msgstr "Turco"
#: babybuddy/templates/admin/base_site.html:4 #: babybuddy/templates/admin/base_site.html:4
#: babybuddy/templates/admin/base_site.html:7 #: babybuddy/templates/admin/base_site.html:7
#: babybuddy/templates/babybuddy/nav-dropdown.html:359 #: babybuddy/templates/babybuddy/nav-dropdown.html:339
msgid "Database Admin" msgid "Database Admin"
msgstr "Administrar Base de Datos" msgstr "Administrar Base de Datos"
@ -230,19 +230,19 @@ msgid "Diaper Change"
msgstr "Cambio de Pañal" msgstr "Cambio de Pañal"
#: babybuddy/templates/babybuddy/nav-dropdown.html:57 #: babybuddy/templates/babybuddy/nav-dropdown.html:57
#: babybuddy/templates/babybuddy/nav-dropdown.html:281 core/models.py:312 #: babybuddy/templates/babybuddy/nav-dropdown.html:262 core/models.py:312
#: core/models.py:316 core/templates/core/timer_detail.html:43 #: core/models.py:316 core/templates/core/timer_detail.html:43
msgid "Feeding" msgid "Feeding"
msgstr "Toma" msgstr "Toma"
#: babybuddy/templates/babybuddy/nav-dropdown.html:63 #: babybuddy/templates/babybuddy/nav-dropdown.html:63
#: babybuddy/templates/babybuddy/nav-dropdown.html:157 core/models.py:396 #: babybuddy/templates/babybuddy/nav-dropdown.html:138 core/models.py:396
#: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29 #: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29
msgid "Note" msgid "Note"
msgstr "Nota" msgstr "Nota"
#: babybuddy/templates/babybuddy/nav-dropdown.html:69 #: babybuddy/templates/babybuddy/nav-dropdown.html:69
#: babybuddy/templates/babybuddy/nav-dropdown.html:288 #: babybuddy/templates/babybuddy/nav-dropdown.html:283
#: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467 #: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467
#: core/models.py:468 core/models.py:471 #: core/models.py:468 core/models.py:471
#: core/templates/core/sleep_confirm_delete.html:7 #: core/templates/core/sleep_confirm_delete.html:7
@ -253,19 +253,7 @@ msgid "Sleep"
msgstr "Sueño" msgstr "Sueño"
#: babybuddy/templates/babybuddy/nav-dropdown.html:75 #: babybuddy/templates/babybuddy/nav-dropdown.html:75
#: babybuddy/templates/babybuddy/nav-dropdown.html:179 core/models.py:506 #: babybuddy/templates/babybuddy/nav-dropdown.html:296
#: core/models.py:519 core/models.py:520 core/models.py:523
#: core/templates/core/temperature_confirm_delete.html:7
#: core/templates/core/temperature_form.html:13
#: core/templates/core/temperature_list.html:4
#: core/templates/core/temperature_list.html:7
#: core/templates/core/temperature_list.html:12
#: core/templates/core/temperature_list.html:29
msgid "Temperature"
msgstr "Temperatura"
#: babybuddy/templates/babybuddy/nav-dropdown.html:81
#: babybuddy/templates/babybuddy/nav-dropdown.html:301
#: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647 #: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647
#: core/models.py:648 core/models.py:651 #: core/models.py:648 core/models.py:651
#: core/templates/core/timer_detail.html:59 #: core/templates/core/timer_detail.html:59
@ -277,44 +265,15 @@ msgstr "Temperatura"
msgid "Tummy Time" msgid "Tummy Time"
msgstr "Tiempo boca abajo" msgstr "Tiempo boca abajo"
#: babybuddy/templates/babybuddy/nav-dropdown.html:87 #: babybuddy/templates/babybuddy/nav-dropdown.html:99
#: babybuddy/templates/babybuddy/nav-dropdown.html:193 core/models.py:673
#: core/models.py:685 core/models.py:686 core/models.py:689
#: core/templates/core/weight_confirm_delete.html:7
#: core/templates/core/weight_form.html:13
#: core/templates/core/weight_list.html:4
#: core/templates/core/weight_list.html:7
#: core/templates/core/weight_list.html:12
#: core/templates/core/weight_list.html:29 reports/graphs/weight_change.py:19
#: reports/graphs/weight_change.py:30
#: reports/templates/reports/report_list.html:22
#: reports/templates/reports/weight_change.html:4
#: reports/templates/reports/weight_change.html:8
msgid "Weight"
msgstr "Peso"
#: babybuddy/templates/babybuddy/nav-dropdown.html:93
#: babybuddy/templates/babybuddy/nav-dropdown.html:316 core/models.py:437
#: core/models.py:438 core/models.py:441
#: core/templates/core/pumping_confirm_delete.html:7
#: core/templates/core/pumping_form.html:13
#: core/templates/core/pumping_list.html:4
#: core/templates/core/pumping_list.html:7
#: core/templates/core/pumping_list.html:12
#: reports/templates/reports/pumping_amounts.html:4
#: reports/templates/reports/pumping_amounts.html:8
msgid "Pumping"
msgstr "Extracciones"
#: babybuddy/templates/babybuddy/nav-dropdown.html:118
#: core/templates/timeline/timeline.html:4 #: core/templates/timeline/timeline.html:4
#: core/templates/timeline/timeline.html:7 #: core/templates/timeline/timeline.html:7
#: dashboard/templates/dashboard/child_button_group.html:9 #: dashboard/templates/dashboard/child_button_group.html:9
msgid "Timeline" msgid "Timeline"
msgstr "Cronología" msgstr "Cronología"
#: babybuddy/templates/babybuddy/nav-dropdown.html:129 #: babybuddy/templates/babybuddy/nav-dropdown.html:110
#: babybuddy/templates/babybuddy/nav-dropdown.html:137 core/models.py:188 #: babybuddy/templates/babybuddy/nav-dropdown.html:118 core/models.py:188
#: core/templates/core/child_confirm_delete.html:7 #: core/templates/core/child_confirm_delete.html:7
#: core/templates/core/child_detail.html:7 #: core/templates/core/child_detail.html:7
#: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4 #: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4
@ -324,7 +283,7 @@ msgstr "Cronología"
msgid "Children" msgid "Children"
msgstr "Niños" msgstr "Niños"
#: babybuddy/templates/babybuddy/nav-dropdown.html:143 core/models.py:137 #: babybuddy/templates/babybuddy/nav-dropdown.html:124 core/models.py:137
#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335 #: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335
#: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450 #: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450
#: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671 #: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671
@ -343,7 +302,7 @@ msgstr "Niños"
msgid "Child" msgid "Child"
msgstr "Niño" msgstr "Niño"
#: babybuddy/templates/babybuddy/nav-dropdown.html:151 core/models.py:143 #: babybuddy/templates/babybuddy/nav-dropdown.html:132 core/models.py:143
#: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373 #: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373
#: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511 #: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511
#: core/models.py:677 core/templates/core/note_confirm_delete.html:7 #: core/models.py:677 core/templates/core/note_confirm_delete.html:7
@ -352,38 +311,26 @@ msgstr "Niño"
msgid "Notes" msgid "Notes"
msgstr "Notas" msgstr "Notas"
#: babybuddy/templates/babybuddy/nav-dropdown.html:171 #: babybuddy/templates/babybuddy/nav-dropdown.html:152
msgid "Measurements" msgid "Measurements"
msgstr "Mediciones" msgstr "Mediciones"
#: babybuddy/templates/babybuddy/nav-dropdown.html:185 #: babybuddy/templates/babybuddy/nav-dropdown.html:160 core/models.py:139
msgid "Temperature reading" #: core/models.py:151 core/models.py:152 core/models.py:155
msgstr "Lectura de temperatura" #: core/templates/core/bmi_confirm_delete.html:7
#: core/templates/core/bmi_form.html:13 core/templates/core/bmi_list.html:4
#: core/templates/core/bmi_list.html:7 core/templates/core/bmi_list.html:12
#: core/templates/core/bmi_list.html:29 reports/graphs/bmi_change.py:19
#: reports/graphs/bmi_change.py:30 reports/templates/reports/bmi_change.html:4
#: reports/templates/reports/bmi_change.html:8
msgid "BMI"
msgstr "IMC"
#: babybuddy/templates/babybuddy/nav-dropdown.html:199 #: babybuddy/templates/babybuddy/nav-dropdown.html:166
msgid "Weight entry" msgid "BMI entry"
msgstr "Introducir peso" msgstr "Entrada de IMC"
#: babybuddy/templates/babybuddy/nav-dropdown.html:207 core/models.py:369 #: babybuddy/templates/babybuddy/nav-dropdown.html:174 core/models.py:338
#: core/models.py:381 core/models.py:382 core/models.py:385
#: core/templates/core/height_confirm_delete.html:7
#: core/templates/core/height_form.html:13
#: core/templates/core/height_list.html:4
#: core/templates/core/height_list.html:7
#: core/templates/core/height_list.html:12
#: core/templates/core/height_list.html:29 reports/graphs/height_change.py:19
#: reports/graphs/height_change.py:30
#: reports/templates/reports/height_change.html:4
#: reports/templates/reports/height_change.html:8
#: reports/templates/reports/report_list.html:17
msgid "Height"
msgstr "Altura"
#: babybuddy/templates/babybuddy/nav-dropdown.html:213
msgid "Height entry"
msgstr "Entrada de altura"
#: babybuddy/templates/babybuddy/nav-dropdown.html:221 core/models.py:338
#: core/models.py:351 core/models.py:352 core/models.py:355 #: core/models.py:351 core/models.py:352 core/models.py:355
#: core/templates/core/head_circumference_confirm_delete.html:7 #: core/templates/core/head_circumference_confirm_delete.html:7
#: core/templates/core/head_circumference_form.html:13 #: core/templates/core/head_circumference_form.html:13
@ -399,39 +346,77 @@ msgstr "Entrada de altura"
msgid "Head Circumference" msgid "Head Circumference"
msgstr "Perímetro craneal" msgstr "Perímetro craneal"
#: babybuddy/templates/babybuddy/nav-dropdown.html:227 #: babybuddy/templates/babybuddy/nav-dropdown.html:180
msgid "Head Circumference entry" msgid "Head Circumference entry"
msgstr "Entrada de perímetro craneal" msgstr "Entrada de perímetro craneal"
#: babybuddy/templates/babybuddy/nav-dropdown.html:235 core/models.py:139 #: babybuddy/templates/babybuddy/nav-dropdown.html:188 core/models.py:369
#: core/models.py:151 core/models.py:152 core/models.py:155 #: core/models.py:381 core/models.py:382 core/models.py:385
#: core/templates/core/bmi_confirm_delete.html:7 #: core/templates/core/height_confirm_delete.html:7
#: core/templates/core/bmi_form.html:13 core/templates/core/bmi_list.html:4 #: core/templates/core/height_form.html:13
#: core/templates/core/bmi_list.html:7 core/templates/core/bmi_list.html:12 #: core/templates/core/height_list.html:4
#: core/templates/core/bmi_list.html:29 reports/graphs/bmi_change.py:19 #: core/templates/core/height_list.html:7
#: reports/graphs/bmi_change.py:30 reports/templates/reports/bmi_change.html:4 #: core/templates/core/height_list.html:12
#: reports/templates/reports/bmi_change.html:8 #: core/templates/core/height_list.html:29 reports/graphs/height_change.py:19
msgid "BMI" #: reports/graphs/height_change.py:30
msgstr "IMC" #: reports/templates/reports/height_change.html:4
#: reports/templates/reports/height_change.html:8
#: reports/templates/reports/report_list.html:17
msgid "Height"
msgstr "Altura"
#: babybuddy/templates/babybuddy/nav-dropdown.html:241 #: babybuddy/templates/babybuddy/nav-dropdown.html:194
msgid "BMI entry" msgid "Height entry"
msgstr "Entrada de IMC" msgstr "Entrada de altura"
#: babybuddy/templates/babybuddy/nav-dropdown.html:255 #: babybuddy/templates/babybuddy/nav-dropdown.html:202 core/models.py:506
#: core/models.py:519 core/models.py:520 core/models.py:523
#: core/templates/core/temperature_confirm_delete.html:7
#: core/templates/core/temperature_form.html:13
#: core/templates/core/temperature_list.html:4
#: core/templates/core/temperature_list.html:7
#: core/templates/core/temperature_list.html:12
#: core/templates/core/temperature_list.html:29
msgid "Temperature"
msgstr "Temperatura"
#: babybuddy/templates/babybuddy/nav-dropdown.html:208
msgid "Temperature reading"
msgstr "Lectura de temperatura"
#: babybuddy/templates/babybuddy/nav-dropdown.html:216 core/models.py:673
#: core/models.py:685 core/models.py:686 core/models.py:689
#: core/templates/core/weight_confirm_delete.html:7
#: core/templates/core/weight_form.html:13
#: core/templates/core/weight_list.html:4
#: core/templates/core/weight_list.html:7
#: core/templates/core/weight_list.html:12
#: core/templates/core/weight_list.html:29 reports/graphs/weight_change.py:19
#: reports/graphs/weight_change.py:30
#: reports/templates/reports/report_list.html:22
#: reports/templates/reports/weight_change.html:4
#: reports/templates/reports/weight_change.html:8
msgid "Weight"
msgstr "Peso"
#: babybuddy/templates/babybuddy/nav-dropdown.html:222
msgid "Weight entry"
msgstr "Introducir peso"
#: babybuddy/templates/babybuddy/nav-dropdown.html:236
msgid "Activities" msgid "Activities"
msgstr "Actividades" msgstr "Actividades"
#: babybuddy/templates/babybuddy/nav-dropdown.html:262 #: babybuddy/templates/babybuddy/nav-dropdown.html:243
#: reports/graphs/diaperchange_lifetimes.py:27 #: reports/graphs/diaperchange_lifetimes.py:27
msgid "Changes" msgid "Changes"
msgstr "Cambios" msgstr "Cambios"
#: babybuddy/templates/babybuddy/nav-dropdown.html:268 #: babybuddy/templates/babybuddy/nav-dropdown.html:249
msgid "Change" msgid "Change"
msgstr "Cambio" msgstr "Cambio"
#: babybuddy/templates/babybuddy/nav-dropdown.html:275 #: babybuddy/templates/babybuddy/nav-dropdown.html:256
#: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313 #: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313
#: core/templates/core/feeding_confirm_delete.html:7 #: core/templates/core/feeding_confirm_delete.html:7
#: core/templates/core/feeding_form.html:13 #: core/templates/core/feeding_form.html:13
@ -441,19 +426,31 @@ msgstr "Cambio"
msgid "Feedings" msgid "Feedings"
msgstr "Tomas" msgstr "Tomas"
#: babybuddy/templates/babybuddy/nav-dropdown.html:294 #: babybuddy/templates/babybuddy/nav-dropdown.html:270 core/models.py:437
msgid "Sleep entry" #: core/models.py:438 core/models.py:441
msgstr "Entrada de sueño" #: core/templates/core/pumping_confirm_delete.html:7
#: core/templates/core/pumping_form.html:13
#: core/templates/core/pumping_list.html:4
#: core/templates/core/pumping_list.html:7
#: core/templates/core/pumping_list.html:12
#: reports/templates/reports/pumping_amounts.html:4
#: reports/templates/reports/pumping_amounts.html:8
msgid "Pumping"
msgstr "Extracciones"
#: babybuddy/templates/babybuddy/nav-dropdown.html:307 #: babybuddy/templates/babybuddy/nav-dropdown.html:276
msgid "Tummy Time entry"
msgstr "Entrada de tiempo boca abajo"
#: babybuddy/templates/babybuddy/nav-dropdown.html:322
msgid "Pumping entry" msgid "Pumping entry"
msgstr "Entrada de extracción" msgstr "Entrada de extracción"
#: babybuddy/templates/babybuddy/nav-dropdown.html:346 #: babybuddy/templates/babybuddy/nav-dropdown.html:289
msgid "Sleep entry"
msgstr "Entrada de sueño"
#: babybuddy/templates/babybuddy/nav-dropdown.html:302
msgid "Tummy Time entry"
msgstr "Entrada de tiempo boca abajo"
#: babybuddy/templates/babybuddy/nav-dropdown.html:326
#: babybuddy/templates/babybuddy/user_list.html:17 #: babybuddy/templates/babybuddy/user_list.html:17
#: babybuddy/templates/babybuddy/user_password_form.html:7 #: babybuddy/templates/babybuddy/user_password_form.html:7
#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556 #: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556
@ -461,23 +458,23 @@ msgstr "Entrada de extracción"
msgid "User" msgid "User"
msgstr "Usuario" msgstr "Usuario"
#: babybuddy/templates/babybuddy/nav-dropdown.html:348 #: babybuddy/templates/babybuddy/nav-dropdown.html:328
msgid "Password" msgid "Password"
msgstr "Contraseña" msgstr "Contraseña"
#: babybuddy/templates/babybuddy/nav-dropdown.html:352 #: babybuddy/templates/babybuddy/nav-dropdown.html:332
msgid "Logout" msgid "Logout"
msgstr "Cerrar sesión" msgstr "Cerrar sesión"
#: babybuddy/templates/babybuddy/nav-dropdown.html:355 #: babybuddy/templates/babybuddy/nav-dropdown.html:335
msgid "Site" msgid "Site"
msgstr "Sitio" msgstr "Sitio"
#: babybuddy/templates/babybuddy/nav-dropdown.html:356 #: babybuddy/templates/babybuddy/nav-dropdown.html:336
msgid "API Browser" msgid "API Browser"
msgstr "Navegador API" msgstr "Navegador API"
#: babybuddy/templates/babybuddy/nav-dropdown.html:358 #: babybuddy/templates/babybuddy/nav-dropdown.html:338
#: babybuddy/templates/babybuddy/user_confirm_delete.html:7 #: babybuddy/templates/babybuddy/user_confirm_delete.html:7
#: babybuddy/templates/babybuddy/user_form.html:13 #: babybuddy/templates/babybuddy/user_form.html:13
#: babybuddy/templates/babybuddy/user_list.html:4 #: babybuddy/templates/babybuddy/user_list.html:4
@ -485,15 +482,15 @@ msgstr "Navegador API"
msgid "Users" msgid "Users"
msgstr "Usuarios" msgstr "Usuarios"
#: babybuddy/templates/babybuddy/nav-dropdown.html:361 #: babybuddy/templates/babybuddy/nav-dropdown.html:341
msgid "Support" msgid "Support"
msgstr "Soporte" msgstr "Soporte"
#: babybuddy/templates/babybuddy/nav-dropdown.html:363 #: babybuddy/templates/babybuddy/nav-dropdown.html:343
msgid "Source Code" msgid "Source Code"
msgstr "Código Fuente" msgstr "Código Fuente"
#: babybuddy/templates/babybuddy/nav-dropdown.html:365 #: babybuddy/templates/babybuddy/nav-dropdown.html:345
msgid "Chat / Support" msgid "Chat / Support"
msgstr "Chat / Soporte" msgstr "Chat / Soporte"
@ -504,6 +501,7 @@ msgstr "Chat / Soporte"
#: core/templates/timeline/_timeline.html:73 #: core/templates/timeline/_timeline.html:73
#: dashboard/templates/cards/feeding_day.html:43 #: dashboard/templates/cards/feeding_day.html:43
#: dashboard/templates/cards/feeding_last_method.html:34 #: dashboard/templates/cards/feeding_last_method.html:34
#: dashboard/templates/cards/sleep_recent.html:43
#: dashboard/templates/cards/statistics.html:34 #: dashboard/templates/cards/statistics.html:34
msgid "Previous" msgid "Previous"
msgstr "Anterior" msgstr "Anterior"
@ -515,6 +513,7 @@ msgstr "Anterior"
#: core/templates/timeline/_timeline.html:80 #: core/templates/timeline/_timeline.html:80
#: dashboard/templates/cards/feeding_day.html:47 #: dashboard/templates/cards/feeding_day.html:47
#: dashboard/templates/cards/feeding_last_method.html:38 #: dashboard/templates/cards/feeding_last_method.html:38
#: dashboard/templates/cards/sleep_recent.html:47
#: dashboard/templates/cards/statistics.html:38 #: dashboard/templates/cards/statistics.html:38
msgid "Next" msgid "Next"
msgstr "Siguiente" msgstr "Siguiente"
@ -788,7 +787,7 @@ msgstr "Cómo arreglarlo"
#, python-format #, python-format
msgid "" msgid ""
"Add <samp>%(origin)s</samp> to the <code>CSRF_TRUSTED_ORIGINS</code> " "Add <samp>%(origin)s</samp> to the <code>CSRF_TRUSTED_ORIGINS</code> "
"environment variable. If multiple origins are required separate with commas." "environment variable. If multiple origins are required separate with commas.\n"
msgstr "" msgstr ""
"Añade <samp>%(origin)s</samp> a la variable de entorno " "Añade <samp>%(origin)s</samp> a la variable de entorno "
"<code>CSRF_TRUSTED_ORIGINS</code>. Si se requieren orígenes múltiples, " "<code>CSRF_TRUSTED_ORIGINS</code>. Si se requieren orígenes múltiples, "
@ -985,7 +984,7 @@ msgstr "Etiquetas"
#: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70 #: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70
#: reports/graphs/feeding_duration.py:56 #: reports/graphs/feeding_duration.py:56
#: reports/graphs/head_circumference_change.py:28 #: reports/graphs/head_circumference_change.py:28
#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:58 #: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60
#: reports/graphs/sleep_pattern.py:151 reports/graphs/sleep_totals.py:59 #: reports/graphs/sleep_pattern.py:151 reports/graphs/sleep_totals.py:59
#: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28 #: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28
msgid "Date" msgid "Date"
@ -1159,7 +1158,9 @@ msgid "Add BMI"
msgstr "Añadir IMC" msgstr "Añadir IMC"
#: core/templates/core/bmi_list.html:70 #: core/templates/core/bmi_list.html:70
msgid "No bmi entries found." #, fuzzy
#| msgid "No bmi entries found."
msgid "No BMI entries found."
msgstr "No hay entradas de IMC." msgstr "No hay entradas de IMC."
#: core/templates/core/child_confirm_delete.html:4 #: core/templates/core/child_confirm_delete.html:4
@ -1401,11 +1402,11 @@ msgstr "Eliminar Inactivo"
msgid "Are you sure you want to delete %(number)s inactive timer?" msgid "Are you sure you want to delete %(number)s inactive timer?"
msgid_plural "Are you sure you want to delete %(number)s inactive timers?" msgid_plural "Are you sure you want to delete %(number)s inactive timers?"
msgstr[0] "" msgstr[0] ""
"¿Está seguro de que desea eliminar %(number)s temporizador%(plural)s inactivo" "¿Está seguro de que desea eliminar %(number)s temporizador%(plural)s "
"%(plural)s?" "inactivo%(plural)s?"
msgstr[1] "" msgstr[1] ""
"¿Está seguro de que desea eliminar %(number)s temporizador%(plural)s inactivo" "¿Está seguro de que desea eliminar %(number)s temporizador%(plural)s "
"%(plural)s?" "inactivo%(plural)s?"
#: core/templates/core/timer_detail.html:28 #: core/templates/core/timer_detail.html:28
msgid "Started" msgid "Started"
@ -1461,9 +1462,10 @@ msgstr "Temporizadores Activos"
#: dashboard/templates/cards/feeding_day.html:52 #: dashboard/templates/cards/feeding_day.html:52
#: dashboard/templates/cards/feeding_last.html:17 #: dashboard/templates/cards/feeding_last.html:17
#: dashboard/templates/cards/feeding_last_method.html:43 #: dashboard/templates/cards/feeding_last_method.html:43
#: dashboard/templates/cards/sleep_day.html:14
#: dashboard/templates/cards/sleep_last.html:17 #: dashboard/templates/cards/sleep_last.html:17
#: dashboard/templates/cards/sleep_naps_day.html:18 #: dashboard/templates/cards/sleep_naps_day.html:18
#: dashboard/templates/cards/sleep_recent.html:20
#: dashboard/templates/cards/sleep_recent.html:52
#: dashboard/templates/cards/tummytime_day.html:14 #: dashboard/templates/cards/tummytime_day.html:14
msgid "None" msgid "None"
msgstr "Ninguno" msgstr "Ninguno"
@ -1581,6 +1583,22 @@ msgstr "{}, {}"
msgid "0 days" msgid "0 days"
msgstr "0 días" msgstr "0 días"
#: core/templatetags/duration.py:111
#: dashboard/templates/cards/diaperchange_types.html:49
msgid "today"
msgstr "hoy"
#: core/templatetags/duration.py:113
#: dashboard/templates/cards/diaperchange_types.html:51
msgid "yesterday"
msgstr "ayer"
#: core/templatetags/duration.py:116
#, fuzzy
#| msgid "%(key)s days ago"
msgid " days ago"
msgstr "hace %(key)s días"
#: core/timeline.py:53 #: core/timeline.py:53
#, python-format #, python-format
msgid "%(child)s started tummy time!" msgid "%(child)s started tummy time!"
@ -1719,14 +1737,6 @@ msgstr "mojado"
msgid "solid" msgid "solid"
msgstr "sólido" msgstr "sólido"
#: dashboard/templates/cards/diaperchange_types.html:49
msgid "today"
msgstr "hoy"
#: dashboard/templates/cards/diaperchange_types.html:51
msgid "yesterday"
msgstr "ayer"
#: dashboard/templates/cards/diaperchange_types.html:53 #: dashboard/templates/cards/diaperchange_types.html:53
#, python-format #, python-format
msgid "%(key)s days ago" msgid "%(key)s days ago"
@ -1745,6 +1755,7 @@ msgstr[0] "%(count)s entradas de sueño"
msgstr[1] "%(count)s entradas de sueño" msgstr[1] "%(count)s entradas de sueño"
#: dashboard/templates/cards/feeding_day.html:32 #: dashboard/templates/cards/feeding_day.html:32
#: dashboard/templates/cards/sleep_recent.html:32
#, python-format #, python-format
msgid "<div class=\"text-center small text-muted\"> %(since)s </div>" msgid "<div class=\"text-center small text-muted\"> %(since)s </div>"
msgstr "<div class=\"text-center small text-muted\"> %(since)s </div>" msgstr "<div class=\"text-center small text-muted\"> %(since)s </div>"
@ -1769,15 +1780,6 @@ msgid_plural "%(n)s feedings ago"
msgstr[0] "hace %(n)s toma%(plural)s" msgstr[0] "hace %(n)s toma%(plural)s"
msgstr[1] "hace %(n)s toma%(plural)s" msgstr[1] "hace %(n)s toma%(plural)s"
#: dashboard/templates/cards/sleep_day.html:6
msgid "Today's Sleep"
msgstr "Sueño Hoy"
#: dashboard/templates/cards/sleep_day.html:20
#, python-format
msgid "%(count)s sleep entries"
msgstr "%(count)s entradas de sueño"
#: dashboard/templates/cards/sleep_last.html:6 #: dashboard/templates/cards/sleep_last.html:6
msgid "Last Sleep" msgid "Last Sleep"
msgstr "Último sueño" msgstr "Último sueño"
@ -1794,6 +1796,20 @@ msgid_plural "%(count)s naps"
msgstr[0] "%(count)s siesta%(plural)s" msgstr[0] "%(count)s siesta%(plural)s"
msgstr[1] "%(count)s siesta%(plural)s" msgstr[1] "%(count)s siesta%(plural)s"
#: dashboard/templates/cards/sleep_recent.html:6
#, fuzzy
#| msgid "Last Sleep"
msgid "Recent Sleep"
msgstr "Último sueño"
#: dashboard/templates/cards/sleep_recent.html:25
#, fuzzy, python-format
#| msgid "%(count)s sleep entries"
msgid "%(counter)s sleep"
msgid_plural "%(counter)s sleep"
msgstr[0] "%(count)s entradas de sueño"
msgstr[1] "%(count)s entradas de sueño"
#: dashboard/templates/cards/statistics.html:7 #: dashboard/templates/cards/statistics.html:7
msgid "Statistics" msgid "Statistics"
msgstr "Estadísticas" msgstr "Estadísticas"
@ -1846,59 +1862,59 @@ msgstr "Acciones de niño"
msgid "Reports" msgid "Reports"
msgstr "Reportes" msgstr "Reportes"
#: dashboard/templatetags/cards.py:328 #: dashboard/templatetags/cards.py:357
msgid "Average nap duration" msgid "Average nap duration"
msgstr "Duración media siesta" msgstr "Duración media siesta"
#: dashboard/templatetags/cards.py:335 #: dashboard/templatetags/cards.py:364
msgid "Average naps per day" msgid "Average naps per day"
msgstr "Media de siestas por día" msgstr "Media de siestas por día"
#: dashboard/templatetags/cards.py:345 #: dashboard/templatetags/cards.py:374
msgid "Average sleep duration" msgid "Average sleep duration"
msgstr "Duración media sueño" msgstr "Duración media sueño"
#: dashboard/templatetags/cards.py:352 #: dashboard/templatetags/cards.py:381
msgid "Average awake duration" msgid "Average awake duration"
msgstr "Duración media despierto" msgstr "Duración media despierto"
#: dashboard/templatetags/cards.py:362 #: dashboard/templatetags/cards.py:391
msgid "Weight change per week" msgid "Weight change per week"
msgstr "Cambio de peso por semana" msgstr "Cambio de peso por semana"
#: dashboard/templatetags/cards.py:372 #: dashboard/templatetags/cards.py:401
msgid "Height change per week" msgid "Height change per week"
msgstr "Cambio de altura por semana" msgstr "Cambio de altura por semana"
#: dashboard/templatetags/cards.py:382 #: dashboard/templatetags/cards.py:411
msgid "Head circumference change per week" msgid "Head circumference change per week"
msgstr "Cambio de perímetro craneal por semana" msgstr "Cambio de perímetro craneal por semana"
#: dashboard/templatetags/cards.py:392 #: dashboard/templatetags/cards.py:421
msgid "BMI change per week" msgid "BMI change per week"
msgstr "Cambio de IMC por semana" msgstr "Cambio de IMC por semana"
#: dashboard/templatetags/cards.py:410 #: dashboard/templatetags/cards.py:439
msgid "Diaper change frequency (past 3 days)" msgid "Diaper change frequency (past 3 days)"
msgstr "Frecuencia de pañales (últimos 3 días)" msgstr "Frecuencia de pañales (últimos 3 días)"
#: dashboard/templatetags/cards.py:414 #: dashboard/templatetags/cards.py:443
msgid "Diaper change frequency (past 2 weeks)" msgid "Diaper change frequency (past 2 weeks)"
msgstr "Frecuencia de pañales (últimas 2 semanas)" msgstr "Frecuencia de pañales (últimas 2 semanas)"
#: dashboard/templatetags/cards.py:420 #: dashboard/templatetags/cards.py:449
msgid "Diaper change frequency" msgid "Diaper change frequency"
msgstr "Frecuencia de cambio de pañal" msgstr "Frecuencia de cambio de pañal"
#: dashboard/templatetags/cards.py:456 #: dashboard/templatetags/cards.py:485
msgid "Feeding frequency (past 3 days)" msgid "Feeding frequency (past 3 days)"
msgstr "Frecuenca de tomas (últimos 3 días)" msgstr "Frecuenca de tomas (últimos 3 días)"
#: dashboard/templatetags/cards.py:460 #: dashboard/templatetags/cards.py:489
msgid "Feeding frequency (past 2 weeks)" msgid "Feeding frequency (past 2 weeks)"
msgstr "Frecuenca de tomas (últimas 2 semanas)" msgstr "Frecuenca de tomas (últimas 2 semanas)"
#: dashboard/templatetags/cards.py:466 #: dashboard/templatetags/cards.py:495
msgid "Feeding frequency" msgid "Feeding frequency"
msgstr "Frecuencia de tomas" msgstr "Frecuencia de tomas"
@ -1974,11 +1990,11 @@ msgstr "<b>Perímetro craneal</b>"
msgid "<b>Height</b>" msgid "<b>Height</b>"
msgstr "<b>Altura</b>" msgstr "<b>Altura</b>"
#: reports/graphs/pumping_amounts.py:57 #: reports/graphs/pumping_amounts.py:59
msgid "<b>Total Pumping Amount</b>" msgid "<b>Total Pumping Amount</b>"
msgstr "<b>Cantidad total extraída</b>" msgstr "<b>Cantidad total extraída</b>"
#: reports/graphs/pumping_amounts.py:60 #: reports/graphs/pumping_amounts.py:62
msgid "Pumping Amount" msgid "Pumping Amount"
msgstr "Cantidad de extracción" msgstr "Cantidad de extracción"
@ -2092,6 +2108,13 @@ msgstr "Tiempo Boca Abajo (Suma)"
msgid "Total Tummy Time Durations" msgid "Total Tummy Time Durations"
msgstr "Duración Total Tiempo Boca Abajo" msgstr "Duración Total Tiempo Boca Abajo"
#~ msgid "Today's Sleep"
#~ msgstr "Sueño Hoy"
#, python-format
#~ msgid "%(count)s sleep entries"
#~ msgstr "%(count)s entradas de sueño"
#~ msgid "" #~ msgid ""
#~ "This setting will only be used when a browser does not support refresh on " #~ "This setting will only be used when a browser does not support refresh on "
#~ "focus." #~ "focus."

Binary file not shown.

View File

@ -2,7 +2,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Baby Buddy\n" "Project-Id-Version: Baby Buddy\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-06-05 13:25+0000\n" "POT-Creation-Date: 2022-06-17 22:25+0000\n"
"Language: fi\n" "Language: fi\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -11,12 +11,12 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: babybuddy/admin.py:12 babybuddy/admin.py:13 #: babybuddy/admin.py:12 babybuddy/admin.py:13
#: babybuddy/templates/babybuddy/nav-dropdown.html:347 #: babybuddy/templates/babybuddy/nav-dropdown.html:327
#: babybuddy/templates/babybuddy/user_settings_form.html:8 #: babybuddy/templates/babybuddy/user_settings_form.html:8
msgid "Settings" msgid "Settings"
msgstr "Asetukset" msgstr "Asetukset"
#: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:111 #: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:92
#: babybuddy/templates/babybuddy/user_settings_form.html:61 #: babybuddy/templates/babybuddy/user_settings_form.html:61
#: dashboard/templates/dashboard/child.html:4 #: dashboard/templates/dashboard/child.html:4
#: dashboard/templates/dashboard/child.html:9 #: dashboard/templates/dashboard/child.html:9
@ -179,7 +179,7 @@ msgstr "turkki"
#: babybuddy/templates/admin/base_site.html:4 #: babybuddy/templates/admin/base_site.html:4
#: babybuddy/templates/admin/base_site.html:7 #: babybuddy/templates/admin/base_site.html:7
#: babybuddy/templates/babybuddy/nav-dropdown.html:359 #: babybuddy/templates/babybuddy/nav-dropdown.html:339
msgid "Database Admin" msgid "Database Admin"
msgstr "Tietokantahallinta" msgstr "Tietokantahallinta"
@ -227,19 +227,19 @@ msgid "Diaper Change"
msgstr "Vaipanvaihto" msgstr "Vaipanvaihto"
#: babybuddy/templates/babybuddy/nav-dropdown.html:57 #: babybuddy/templates/babybuddy/nav-dropdown.html:57
#: babybuddy/templates/babybuddy/nav-dropdown.html:281 core/models.py:312 #: babybuddy/templates/babybuddy/nav-dropdown.html:262 core/models.py:312
#: core/models.py:316 core/templates/core/timer_detail.html:43 #: core/models.py:316 core/templates/core/timer_detail.html:43
msgid "Feeding" msgid "Feeding"
msgstr "Syöttö" msgstr "Syöttö"
#: babybuddy/templates/babybuddy/nav-dropdown.html:63 #: babybuddy/templates/babybuddy/nav-dropdown.html:63
#: babybuddy/templates/babybuddy/nav-dropdown.html:157 core/models.py:396 #: babybuddy/templates/babybuddy/nav-dropdown.html:138 core/models.py:396
#: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29 #: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29
msgid "Note" msgid "Note"
msgstr "Muistiinpano" msgstr "Muistiinpano"
#: babybuddy/templates/babybuddy/nav-dropdown.html:69 #: babybuddy/templates/babybuddy/nav-dropdown.html:69
#: babybuddy/templates/babybuddy/nav-dropdown.html:288 #: babybuddy/templates/babybuddy/nav-dropdown.html:283
#: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467 #: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467
#: core/models.py:468 core/models.py:471 #: core/models.py:468 core/models.py:471
#: core/templates/core/sleep_confirm_delete.html:7 #: core/templates/core/sleep_confirm_delete.html:7
@ -250,19 +250,7 @@ msgid "Sleep"
msgstr "Uni" msgstr "Uni"
#: babybuddy/templates/babybuddy/nav-dropdown.html:75 #: babybuddy/templates/babybuddy/nav-dropdown.html:75
#: babybuddy/templates/babybuddy/nav-dropdown.html:179 core/models.py:506 #: babybuddy/templates/babybuddy/nav-dropdown.html:296
#: core/models.py:519 core/models.py:520 core/models.py:523
#: core/templates/core/temperature_confirm_delete.html:7
#: core/templates/core/temperature_form.html:13
#: core/templates/core/temperature_list.html:4
#: core/templates/core/temperature_list.html:7
#: core/templates/core/temperature_list.html:12
#: core/templates/core/temperature_list.html:29
msgid "Temperature"
msgstr "Lämpötila"
#: babybuddy/templates/babybuddy/nav-dropdown.html:81
#: babybuddy/templates/babybuddy/nav-dropdown.html:301
#: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647 #: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647
#: core/models.py:648 core/models.py:651 #: core/models.py:648 core/models.py:651
#: core/templates/core/timer_detail.html:59 #: core/templates/core/timer_detail.html:59
@ -274,44 +262,15 @@ msgstr "Lämpötila"
msgid "Tummy Time" msgid "Tummy Time"
msgstr "Ihokontakti" msgstr "Ihokontakti"
#: babybuddy/templates/babybuddy/nav-dropdown.html:87 #: babybuddy/templates/babybuddy/nav-dropdown.html:99
#: babybuddy/templates/babybuddy/nav-dropdown.html:193 core/models.py:673
#: core/models.py:685 core/models.py:686 core/models.py:689
#: core/templates/core/weight_confirm_delete.html:7
#: core/templates/core/weight_form.html:13
#: core/templates/core/weight_list.html:4
#: core/templates/core/weight_list.html:7
#: core/templates/core/weight_list.html:12
#: core/templates/core/weight_list.html:29 reports/graphs/weight_change.py:19
#: reports/graphs/weight_change.py:30
#: reports/templates/reports/report_list.html:22
#: reports/templates/reports/weight_change.html:4
#: reports/templates/reports/weight_change.html:8
msgid "Weight"
msgstr "Paino"
#: babybuddy/templates/babybuddy/nav-dropdown.html:93
#: babybuddy/templates/babybuddy/nav-dropdown.html:316 core/models.py:437
#: core/models.py:438 core/models.py:441
#: core/templates/core/pumping_confirm_delete.html:7
#: core/templates/core/pumping_form.html:13
#: core/templates/core/pumping_list.html:4
#: core/templates/core/pumping_list.html:7
#: core/templates/core/pumping_list.html:12
#: reports/templates/reports/pumping_amounts.html:4
#: reports/templates/reports/pumping_amounts.html:8
msgid "Pumping"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:118
#: core/templates/timeline/timeline.html:4 #: core/templates/timeline/timeline.html:4
#: core/templates/timeline/timeline.html:7 #: core/templates/timeline/timeline.html:7
#: dashboard/templates/dashboard/child_button_group.html:9 #: dashboard/templates/dashboard/child_button_group.html:9
msgid "Timeline" msgid "Timeline"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:129 #: babybuddy/templates/babybuddy/nav-dropdown.html:110
#: babybuddy/templates/babybuddy/nav-dropdown.html:137 core/models.py:188 #: babybuddy/templates/babybuddy/nav-dropdown.html:118 core/models.py:188
#: core/templates/core/child_confirm_delete.html:7 #: core/templates/core/child_confirm_delete.html:7
#: core/templates/core/child_detail.html:7 #: core/templates/core/child_detail.html:7
#: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4 #: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4
@ -321,7 +280,7 @@ msgstr ""
msgid "Children" msgid "Children"
msgstr "Lapset" msgstr "Lapset"
#: babybuddy/templates/babybuddy/nav-dropdown.html:143 core/models.py:137 #: babybuddy/templates/babybuddy/nav-dropdown.html:124 core/models.py:137
#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335 #: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335
#: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450 #: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450
#: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671 #: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671
@ -340,7 +299,7 @@ msgstr "Lapset"
msgid "Child" msgid "Child"
msgstr "Lapsi" msgstr "Lapsi"
#: babybuddy/templates/babybuddy/nav-dropdown.html:151 core/models.py:143 #: babybuddy/templates/babybuddy/nav-dropdown.html:132 core/models.py:143
#: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373 #: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373
#: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511 #: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511
#: core/models.py:677 core/templates/core/note_confirm_delete.html:7 #: core/models.py:677 core/templates/core/note_confirm_delete.html:7
@ -349,38 +308,26 @@ msgstr "Lapsi"
msgid "Notes" msgid "Notes"
msgstr "Muistiinpanot" msgstr "Muistiinpanot"
#: babybuddy/templates/babybuddy/nav-dropdown.html:171 #: babybuddy/templates/babybuddy/nav-dropdown.html:152
msgid "Measurements" msgid "Measurements"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:185 #: babybuddy/templates/babybuddy/nav-dropdown.html:160 core/models.py:139
msgid "Temperature reading" #: core/models.py:151 core/models.py:152 core/models.py:155
msgstr "Lämpötilalukema" #: core/templates/core/bmi_confirm_delete.html:7
#: core/templates/core/bmi_form.html:13 core/templates/core/bmi_list.html:4
#: babybuddy/templates/babybuddy/nav-dropdown.html:199 #: core/templates/core/bmi_list.html:7 core/templates/core/bmi_list.html:12
msgid "Weight entry" #: core/templates/core/bmi_list.html:29 reports/graphs/bmi_change.py:19
msgstr "Painomerkintä" #: reports/graphs/bmi_change.py:30 reports/templates/reports/bmi_change.html:4
#: reports/templates/reports/bmi_change.html:8
#: babybuddy/templates/babybuddy/nav-dropdown.html:207 core/models.py:369 msgid "BMI"
#: core/models.py:381 core/models.py:382 core/models.py:385
#: core/templates/core/height_confirm_delete.html:7
#: core/templates/core/height_form.html:13
#: core/templates/core/height_list.html:4
#: core/templates/core/height_list.html:7
#: core/templates/core/height_list.html:12
#: core/templates/core/height_list.html:29 reports/graphs/height_change.py:19
#: reports/graphs/height_change.py:30
#: reports/templates/reports/height_change.html:4
#: reports/templates/reports/height_change.html:8
#: reports/templates/reports/report_list.html:17
msgid "Height"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:213 #: babybuddy/templates/babybuddy/nav-dropdown.html:166
msgid "Height entry" msgid "BMI entry"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:221 core/models.py:338 #: babybuddy/templates/babybuddy/nav-dropdown.html:174 core/models.py:338
#: core/models.py:351 core/models.py:352 core/models.py:355 #: core/models.py:351 core/models.py:352 core/models.py:355
#: core/templates/core/head_circumference_confirm_delete.html:7 #: core/templates/core/head_circumference_confirm_delete.html:7
#: core/templates/core/head_circumference_form.html:13 #: core/templates/core/head_circumference_form.html:13
@ -396,39 +343,77 @@ msgstr ""
msgid "Head Circumference" msgid "Head Circumference"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:227 #: babybuddy/templates/babybuddy/nav-dropdown.html:180
msgid "Head Circumference entry" msgid "Head Circumference entry"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:235 core/models.py:139 #: babybuddy/templates/babybuddy/nav-dropdown.html:188 core/models.py:369
#: core/models.py:151 core/models.py:152 core/models.py:155 #: core/models.py:381 core/models.py:382 core/models.py:385
#: core/templates/core/bmi_confirm_delete.html:7 #: core/templates/core/height_confirm_delete.html:7
#: core/templates/core/bmi_form.html:13 core/templates/core/bmi_list.html:4 #: core/templates/core/height_form.html:13
#: core/templates/core/bmi_list.html:7 core/templates/core/bmi_list.html:12 #: core/templates/core/height_list.html:4
#: core/templates/core/bmi_list.html:29 reports/graphs/bmi_change.py:19 #: core/templates/core/height_list.html:7
#: reports/graphs/bmi_change.py:30 reports/templates/reports/bmi_change.html:4 #: core/templates/core/height_list.html:12
#: reports/templates/reports/bmi_change.html:8 #: core/templates/core/height_list.html:29 reports/graphs/height_change.py:19
msgid "BMI" #: reports/graphs/height_change.py:30
#: reports/templates/reports/height_change.html:4
#: reports/templates/reports/height_change.html:8
#: reports/templates/reports/report_list.html:17
msgid "Height"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:241 #: babybuddy/templates/babybuddy/nav-dropdown.html:194
msgid "BMI entry" msgid "Height entry"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:255 #: babybuddy/templates/babybuddy/nav-dropdown.html:202 core/models.py:506
#: core/models.py:519 core/models.py:520 core/models.py:523
#: core/templates/core/temperature_confirm_delete.html:7
#: core/templates/core/temperature_form.html:13
#: core/templates/core/temperature_list.html:4
#: core/templates/core/temperature_list.html:7
#: core/templates/core/temperature_list.html:12
#: core/templates/core/temperature_list.html:29
msgid "Temperature"
msgstr "Lämpötila"
#: babybuddy/templates/babybuddy/nav-dropdown.html:208
msgid "Temperature reading"
msgstr "Lämpötilalukema"
#: babybuddy/templates/babybuddy/nav-dropdown.html:216 core/models.py:673
#: core/models.py:685 core/models.py:686 core/models.py:689
#: core/templates/core/weight_confirm_delete.html:7
#: core/templates/core/weight_form.html:13
#: core/templates/core/weight_list.html:4
#: core/templates/core/weight_list.html:7
#: core/templates/core/weight_list.html:12
#: core/templates/core/weight_list.html:29 reports/graphs/weight_change.py:19
#: reports/graphs/weight_change.py:30
#: reports/templates/reports/report_list.html:22
#: reports/templates/reports/weight_change.html:4
#: reports/templates/reports/weight_change.html:8
msgid "Weight"
msgstr "Paino"
#: babybuddy/templates/babybuddy/nav-dropdown.html:222
msgid "Weight entry"
msgstr "Painomerkintä"
#: babybuddy/templates/babybuddy/nav-dropdown.html:236
msgid "Activities" msgid "Activities"
msgstr "Aktiviteetit" msgstr "Aktiviteetit"
#: babybuddy/templates/babybuddy/nav-dropdown.html:262 #: babybuddy/templates/babybuddy/nav-dropdown.html:243
#: reports/graphs/diaperchange_lifetimes.py:27 #: reports/graphs/diaperchange_lifetimes.py:27
msgid "Changes" msgid "Changes"
msgstr "Muutokset" msgstr "Muutokset"
#: babybuddy/templates/babybuddy/nav-dropdown.html:268 #: babybuddy/templates/babybuddy/nav-dropdown.html:249
msgid "Change" msgid "Change"
msgstr "Muutos" msgstr "Muutos"
#: babybuddy/templates/babybuddy/nav-dropdown.html:275 #: babybuddy/templates/babybuddy/nav-dropdown.html:256
#: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313 #: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313
#: core/templates/core/feeding_confirm_delete.html:7 #: core/templates/core/feeding_confirm_delete.html:7
#: core/templates/core/feeding_form.html:13 #: core/templates/core/feeding_form.html:13
@ -438,19 +423,31 @@ msgstr "Muutos"
msgid "Feedings" msgid "Feedings"
msgstr "Syötöt" msgstr "Syötöt"
#: babybuddy/templates/babybuddy/nav-dropdown.html:294 #: babybuddy/templates/babybuddy/nav-dropdown.html:270 core/models.py:437
msgid "Sleep entry" #: core/models.py:438 core/models.py:441
msgstr "Unimerkintä" #: core/templates/core/pumping_confirm_delete.html:7
#: core/templates/core/pumping_form.html:13
#: core/templates/core/pumping_list.html:4
#: core/templates/core/pumping_list.html:7
#: core/templates/core/pumping_list.html:12
#: reports/templates/reports/pumping_amounts.html:4
#: reports/templates/reports/pumping_amounts.html:8
msgid "Pumping"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:307 #: babybuddy/templates/babybuddy/nav-dropdown.html:276
msgid "Tummy Time entry"
msgstr "Ihokontakti"
#: babybuddy/templates/babybuddy/nav-dropdown.html:322
msgid "Pumping entry" msgid "Pumping entry"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:346 #: babybuddy/templates/babybuddy/nav-dropdown.html:289
msgid "Sleep entry"
msgstr "Unimerkintä"
#: babybuddy/templates/babybuddy/nav-dropdown.html:302
msgid "Tummy Time entry"
msgstr "Ihokontakti"
#: babybuddy/templates/babybuddy/nav-dropdown.html:326
#: babybuddy/templates/babybuddy/user_list.html:17 #: babybuddy/templates/babybuddy/user_list.html:17
#: babybuddy/templates/babybuddy/user_password_form.html:7 #: babybuddy/templates/babybuddy/user_password_form.html:7
#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556 #: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556
@ -458,23 +455,23 @@ msgstr ""
msgid "User" msgid "User"
msgstr "Käyttäjä" msgstr "Käyttäjä"
#: babybuddy/templates/babybuddy/nav-dropdown.html:348 #: babybuddy/templates/babybuddy/nav-dropdown.html:328
msgid "Password" msgid "Password"
msgstr "Salasana" msgstr "Salasana"
#: babybuddy/templates/babybuddy/nav-dropdown.html:352 #: babybuddy/templates/babybuddy/nav-dropdown.html:332
msgid "Logout" msgid "Logout"
msgstr "Kirjaudu ulos" msgstr "Kirjaudu ulos"
#: babybuddy/templates/babybuddy/nav-dropdown.html:355 #: babybuddy/templates/babybuddy/nav-dropdown.html:335
msgid "Site" msgid "Site"
msgstr "Sivusto" msgstr "Sivusto"
#: babybuddy/templates/babybuddy/nav-dropdown.html:356 #: babybuddy/templates/babybuddy/nav-dropdown.html:336
msgid "API Browser" msgid "API Browser"
msgstr "API-selain" msgstr "API-selain"
#: babybuddy/templates/babybuddy/nav-dropdown.html:358 #: babybuddy/templates/babybuddy/nav-dropdown.html:338
#: babybuddy/templates/babybuddy/user_confirm_delete.html:7 #: babybuddy/templates/babybuddy/user_confirm_delete.html:7
#: babybuddy/templates/babybuddy/user_form.html:13 #: babybuddy/templates/babybuddy/user_form.html:13
#: babybuddy/templates/babybuddy/user_list.html:4 #: babybuddy/templates/babybuddy/user_list.html:4
@ -482,15 +479,15 @@ msgstr "API-selain"
msgid "Users" msgid "Users"
msgstr "Käyttäjät" msgstr "Käyttäjät"
#: babybuddy/templates/babybuddy/nav-dropdown.html:361 #: babybuddy/templates/babybuddy/nav-dropdown.html:341
msgid "Support" msgid "Support"
msgstr "Tuki" msgstr "Tuki"
#: babybuddy/templates/babybuddy/nav-dropdown.html:363 #: babybuddy/templates/babybuddy/nav-dropdown.html:343
msgid "Source Code" msgid "Source Code"
msgstr "Lähdekoodi" msgstr "Lähdekoodi"
#: babybuddy/templates/babybuddy/nav-dropdown.html:365 #: babybuddy/templates/babybuddy/nav-dropdown.html:345
msgid "Chat / Support" msgid "Chat / Support"
msgstr "Chat / tuki" msgstr "Chat / tuki"
@ -501,6 +498,7 @@ msgstr "Chat / tuki"
#: core/templates/timeline/_timeline.html:73 #: core/templates/timeline/_timeline.html:73
#: dashboard/templates/cards/feeding_day.html:43 #: dashboard/templates/cards/feeding_day.html:43
#: dashboard/templates/cards/feeding_last_method.html:34 #: dashboard/templates/cards/feeding_last_method.html:34
#: dashboard/templates/cards/sleep_recent.html:43
#: dashboard/templates/cards/statistics.html:34 #: dashboard/templates/cards/statistics.html:34
msgid "Previous" msgid "Previous"
msgstr "Edellinen" msgstr "Edellinen"
@ -512,6 +510,7 @@ msgstr "Edellinen"
#: core/templates/timeline/_timeline.html:80 #: core/templates/timeline/_timeline.html:80
#: dashboard/templates/cards/feeding_day.html:47 #: dashboard/templates/cards/feeding_day.html:47
#: dashboard/templates/cards/feeding_last_method.html:38 #: dashboard/templates/cards/feeding_last_method.html:38
#: dashboard/templates/cards/sleep_recent.html:47
#: dashboard/templates/cards/statistics.html:38 #: dashboard/templates/cards/statistics.html:38
msgid "Next" msgid "Next"
msgstr "Seuraava" msgstr "Seuraava"
@ -973,7 +972,7 @@ msgstr ""
#: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70 #: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70
#: reports/graphs/feeding_duration.py:56 #: reports/graphs/feeding_duration.py:56
#: reports/graphs/head_circumference_change.py:28 #: reports/graphs/head_circumference_change.py:28
#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:58 #: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60
#: reports/graphs/sleep_pattern.py:151 reports/graphs/sleep_totals.py:59 #: reports/graphs/sleep_pattern.py:151 reports/graphs/sleep_totals.py:59
#: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28 #: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28
msgid "Date" msgid "Date"
@ -1147,8 +1146,10 @@ msgid "Add BMI"
msgstr "" msgstr ""
#: core/templates/core/bmi_list.html:70 #: core/templates/core/bmi_list.html:70
msgid "No bmi entries found." #, fuzzy
msgstr "" #| msgid "No sleep entries found."
msgid "No BMI entries found."
msgstr "Unia ei löytynyt."
#: core/templates/core/child_confirm_delete.html:4 #: core/templates/core/child_confirm_delete.html:4
msgid "Delete a Child" msgid "Delete a Child"
@ -1445,9 +1446,10 @@ msgstr "Aktiiviset ajastimet"
#: dashboard/templates/cards/feeding_day.html:52 #: dashboard/templates/cards/feeding_day.html:52
#: dashboard/templates/cards/feeding_last.html:17 #: dashboard/templates/cards/feeding_last.html:17
#: dashboard/templates/cards/feeding_last_method.html:43 #: dashboard/templates/cards/feeding_last_method.html:43
#: dashboard/templates/cards/sleep_day.html:14
#: dashboard/templates/cards/sleep_last.html:17 #: dashboard/templates/cards/sleep_last.html:17
#: dashboard/templates/cards/sleep_naps_day.html:18 #: dashboard/templates/cards/sleep_naps_day.html:18
#: dashboard/templates/cards/sleep_recent.html:20
#: dashboard/templates/cards/sleep_recent.html:52
#: dashboard/templates/cards/tummytime_day.html:14 #: dashboard/templates/cards/tummytime_day.html:14
msgid "None" msgid "None"
msgstr "Ei mitään" msgstr "Ei mitään"
@ -1565,6 +1567,22 @@ msgstr ""
msgid "0 days" msgid "0 days"
msgstr "" msgstr ""
#: core/templatetags/duration.py:111
#: dashboard/templates/cards/diaperchange_types.html:49
msgid "today"
msgstr "tänään"
#: core/templatetags/duration.py:113
#: dashboard/templates/cards/diaperchange_types.html:51
msgid "yesterday"
msgstr "eilen"
#: core/templatetags/duration.py:116
#, fuzzy
#| msgid "%(key)s days ago"
msgid " days ago"
msgstr "%(key)s päivää sitten"
#: core/timeline.py:53 #: core/timeline.py:53
#, python-format #, python-format
msgid "%(child)s started tummy time!" msgid "%(child)s started tummy time!"
@ -1703,14 +1721,6 @@ msgstr "märkä"
msgid "solid" msgid "solid"
msgstr "kiinteä" msgstr "kiinteä"
#: dashboard/templates/cards/diaperchange_types.html:49
msgid "today"
msgstr "tänään"
#: dashboard/templates/cards/diaperchange_types.html:51
msgid "yesterday"
msgstr "eilen"
#: dashboard/templates/cards/diaperchange_types.html:53 #: dashboard/templates/cards/diaperchange_types.html:53
#, python-format #, python-format
msgid "%(key)s days ago" msgid "%(key)s days ago"
@ -1729,6 +1739,7 @@ msgstr[0] "%(count)s unimerkintä"
msgstr[1] "%(count)s unimerkintä" msgstr[1] "%(count)s unimerkintä"
#: dashboard/templates/cards/feeding_day.html:32 #: dashboard/templates/cards/feeding_day.html:32
#: dashboard/templates/cards/sleep_recent.html:32
#, python-format #, python-format
msgid "<div class=\"text-center small text-muted\"> %(since)s </div>" msgid "<div class=\"text-center small text-muted\"> %(since)s </div>"
msgstr "" msgstr ""
@ -1753,15 +1764,6 @@ msgid_plural "%(n)s feedings ago"
msgstr[0] "%(n)s syöttöä%(plural)s sitten" msgstr[0] "%(n)s syöttöä%(plural)s sitten"
msgstr[1] "%(n)s syöttöä%(plural)s sitten" msgstr[1] "%(n)s syöttöä%(plural)s sitten"
#: dashboard/templates/cards/sleep_day.html:6
msgid "Today's Sleep"
msgstr "Uni tänään"
#: dashboard/templates/cards/sleep_day.html:20
#, python-format
msgid "%(count)s sleep entries"
msgstr "%(count)s unimerkintä"
#: dashboard/templates/cards/sleep_last.html:6 #: dashboard/templates/cards/sleep_last.html:6
msgid "Last Sleep" msgid "Last Sleep"
msgstr "Edellinen uni" msgstr "Edellinen uni"
@ -1778,6 +1780,20 @@ msgid_plural "%(count)s naps"
msgstr[0] "%(count)s unimerkintä" msgstr[0] "%(count)s unimerkintä"
msgstr[1] "%(count)s unimerkintä" msgstr[1] "%(count)s unimerkintä"
#: dashboard/templates/cards/sleep_recent.html:6
#, fuzzy
#| msgid "Last Sleep"
msgid "Recent Sleep"
msgstr "Edellinen uni"
#: dashboard/templates/cards/sleep_recent.html:25
#, fuzzy, python-format
#| msgid "%(count)s sleep entries"
msgid "%(counter)s sleep"
msgid_plural "%(counter)s sleep"
msgstr[0] "%(count)s unimerkintä"
msgstr[1] "%(count)s unimerkintä"
#: dashboard/templates/cards/statistics.html:7 #: dashboard/templates/cards/statistics.html:7
msgid "Statistics" msgid "Statistics"
msgstr "Tilastot" msgstr "Tilastot"
@ -1830,59 +1846,59 @@ msgstr "Lapsen toiminnot"
msgid "Reports" msgid "Reports"
msgstr "Raportit" msgstr "Raportit"
#: dashboard/templatetags/cards.py:328 #: dashboard/templatetags/cards.py:357
msgid "Average nap duration" msgid "Average nap duration"
msgstr "Päiväunen kesto keskimäärin" msgstr "Päiväunen kesto keskimäärin"
#: dashboard/templatetags/cards.py:335 #: dashboard/templatetags/cards.py:364
msgid "Average naps per day" msgid "Average naps per day"
msgstr "Päiväunia päivässä" msgstr "Päiväunia päivässä"
#: dashboard/templatetags/cards.py:345 #: dashboard/templatetags/cards.py:374
msgid "Average sleep duration" msgid "Average sleep duration"
msgstr "Unen kesto keskimäärin" msgstr "Unen kesto keskimäärin"
#: dashboard/templatetags/cards.py:352 #: dashboard/templatetags/cards.py:381
msgid "Average awake duration" msgid "Average awake duration"
msgstr "Hereilläoloaika keskimäärin" msgstr "Hereilläoloaika keskimäärin"
#: dashboard/templatetags/cards.py:362 #: dashboard/templatetags/cards.py:391
msgid "Weight change per week" msgid "Weight change per week"
msgstr "Painonmuutos viikossa" msgstr "Painonmuutos viikossa"
#: dashboard/templatetags/cards.py:372 #: dashboard/templatetags/cards.py:401
msgid "Height change per week" msgid "Height change per week"
msgstr "" msgstr ""
#: dashboard/templatetags/cards.py:382 #: dashboard/templatetags/cards.py:411
msgid "Head circumference change per week" msgid "Head circumference change per week"
msgstr "" msgstr ""
#: dashboard/templatetags/cards.py:392 #: dashboard/templatetags/cards.py:421
msgid "BMI change per week" msgid "BMI change per week"
msgstr "" msgstr ""
#: dashboard/templatetags/cards.py:410 #: dashboard/templatetags/cards.py:439
msgid "Diaper change frequency (past 3 days)" msgid "Diaper change frequency (past 3 days)"
msgstr "Vaipanvaihtotaajuus (past 3 days)" msgstr "Vaipanvaihtotaajuus (past 3 days)"
#: dashboard/templatetags/cards.py:414 #: dashboard/templatetags/cards.py:443
msgid "Diaper change frequency (past 2 weeks)" msgid "Diaper change frequency (past 2 weeks)"
msgstr "Vaipanvaihtotaajuus (past 2 weeks)" msgstr "Vaipanvaihtotaajuus (past 2 weeks)"
#: dashboard/templatetags/cards.py:420 #: dashboard/templatetags/cards.py:449
msgid "Diaper change frequency" msgid "Diaper change frequency"
msgstr "Vaipanvaihtotaajuus" msgstr "Vaipanvaihtotaajuus"
#: dashboard/templatetags/cards.py:456 #: dashboard/templatetags/cards.py:485
msgid "Feeding frequency (past 3 days)" msgid "Feeding frequency (past 3 days)"
msgstr "" msgstr ""
#: dashboard/templatetags/cards.py:460 #: dashboard/templatetags/cards.py:489
msgid "Feeding frequency (past 2 weeks)" msgid "Feeding frequency (past 2 weeks)"
msgstr "" msgstr ""
#: dashboard/templatetags/cards.py:466 #: dashboard/templatetags/cards.py:495
msgid "Feeding frequency" msgid "Feeding frequency"
msgstr "Syöttötaajuus" msgstr "Syöttötaajuus"
@ -1958,11 +1974,11 @@ msgstr ""
msgid "<b>Height</b>" msgid "<b>Height</b>"
msgstr "" msgstr ""
#: reports/graphs/pumping_amounts.py:57 #: reports/graphs/pumping_amounts.py:59
msgid "<b>Total Pumping Amount</b>" msgid "<b>Total Pumping Amount</b>"
msgstr "" msgstr ""
#: reports/graphs/pumping_amounts.py:60 #: reports/graphs/pumping_amounts.py:62
msgid "Pumping Amount" msgid "Pumping Amount"
msgstr "" msgstr ""
@ -2075,3 +2091,10 @@ msgstr ""
#: reports/templates/reports/tummytime_duration.html:8 #: reports/templates/reports/tummytime_duration.html:8
msgid "Total Tummy Time Durations" msgid "Total Tummy Time Durations"
msgstr "" msgstr ""
#~ msgid "Today's Sleep"
#~ msgstr "Uni tänään"
#, python-format
#~ msgid "%(count)s sleep entries"
#~ msgstr "%(count)s unimerkintä"

Binary file not shown.

View File

@ -2,7 +2,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Baby Buddy\n" "Project-Id-Version: Baby Buddy\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-06-05 13:25+0000\n" "POT-Creation-Date: 2022-06-17 22:25+0000\n"
"Language: fr\n" "Language: fr\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -11,12 +11,12 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n"
#: babybuddy/admin.py:12 babybuddy/admin.py:13 #: babybuddy/admin.py:12 babybuddy/admin.py:13
#: babybuddy/templates/babybuddy/nav-dropdown.html:347 #: babybuddy/templates/babybuddy/nav-dropdown.html:327
#: babybuddy/templates/babybuddy/user_settings_form.html:8 #: babybuddy/templates/babybuddy/user_settings_form.html:8
msgid "Settings" msgid "Settings"
msgstr "Paramètres" msgstr "Paramètres"
#: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:111 #: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:92
#: babybuddy/templates/babybuddy/user_settings_form.html:61 #: babybuddy/templates/babybuddy/user_settings_form.html:61
#: dashboard/templates/dashboard/child.html:4 #: dashboard/templates/dashboard/child.html:4
#: dashboard/templates/dashboard/child.html:9 #: dashboard/templates/dashboard/child.html:9
@ -187,7 +187,7 @@ msgstr "Turc"
#: babybuddy/templates/admin/base_site.html:4 #: babybuddy/templates/admin/base_site.html:4
#: babybuddy/templates/admin/base_site.html:7 #: babybuddy/templates/admin/base_site.html:7
#: babybuddy/templates/babybuddy/nav-dropdown.html:359 #: babybuddy/templates/babybuddy/nav-dropdown.html:339
msgid "Database Admin" msgid "Database Admin"
msgstr "Base de Données" msgstr "Base de Données"
@ -236,19 +236,19 @@ msgid "Diaper Change"
msgstr "Changement de couche" msgstr "Changement de couche"
#: babybuddy/templates/babybuddy/nav-dropdown.html:57 #: babybuddy/templates/babybuddy/nav-dropdown.html:57
#: babybuddy/templates/babybuddy/nav-dropdown.html:281 core/models.py:312 #: babybuddy/templates/babybuddy/nav-dropdown.html:262 core/models.py:312
#: core/models.py:316 core/templates/core/timer_detail.html:43 #: core/models.py:316 core/templates/core/timer_detail.html:43
msgid "Feeding" msgid "Feeding"
msgstr "Allaitement" msgstr "Allaitement"
#: babybuddy/templates/babybuddy/nav-dropdown.html:63 #: babybuddy/templates/babybuddy/nav-dropdown.html:63
#: babybuddy/templates/babybuddy/nav-dropdown.html:157 core/models.py:396 #: babybuddy/templates/babybuddy/nav-dropdown.html:138 core/models.py:396
#: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29 #: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29
msgid "Note" msgid "Note"
msgstr "Note" msgstr "Note"
#: babybuddy/templates/babybuddy/nav-dropdown.html:69 #: babybuddy/templates/babybuddy/nav-dropdown.html:69
#: babybuddy/templates/babybuddy/nav-dropdown.html:288 #: babybuddy/templates/babybuddy/nav-dropdown.html:283
#: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467 #: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467
#: core/models.py:468 core/models.py:471 #: core/models.py:468 core/models.py:471
#: core/templates/core/sleep_confirm_delete.html:7 #: core/templates/core/sleep_confirm_delete.html:7
@ -259,19 +259,7 @@ msgid "Sleep"
msgstr "Sommeil" msgstr "Sommeil"
#: babybuddy/templates/babybuddy/nav-dropdown.html:75 #: babybuddy/templates/babybuddy/nav-dropdown.html:75
#: babybuddy/templates/babybuddy/nav-dropdown.html:179 core/models.py:506 #: babybuddy/templates/babybuddy/nav-dropdown.html:296
#: core/models.py:519 core/models.py:520 core/models.py:523
#: core/templates/core/temperature_confirm_delete.html:7
#: core/templates/core/temperature_form.html:13
#: core/templates/core/temperature_list.html:4
#: core/templates/core/temperature_list.html:7
#: core/templates/core/temperature_list.html:12
#: core/templates/core/temperature_list.html:29
msgid "Temperature"
msgstr "Température"
#: babybuddy/templates/babybuddy/nav-dropdown.html:81
#: babybuddy/templates/babybuddy/nav-dropdown.html:301
#: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647 #: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647
#: core/models.py:648 core/models.py:651 #: core/models.py:648 core/models.py:651
#: core/templates/core/timer_detail.html:59 #: core/templates/core/timer_detail.html:59
@ -283,44 +271,15 @@ msgstr "Température"
msgid "Tummy Time" msgid "Tummy Time"
msgstr "Motricité libre" msgstr "Motricité libre"
#: babybuddy/templates/babybuddy/nav-dropdown.html:87 #: babybuddy/templates/babybuddy/nav-dropdown.html:99
#: babybuddy/templates/babybuddy/nav-dropdown.html:193 core/models.py:673
#: core/models.py:685 core/models.py:686 core/models.py:689
#: core/templates/core/weight_confirm_delete.html:7
#: core/templates/core/weight_form.html:13
#: core/templates/core/weight_list.html:4
#: core/templates/core/weight_list.html:7
#: core/templates/core/weight_list.html:12
#: core/templates/core/weight_list.html:29 reports/graphs/weight_change.py:19
#: reports/graphs/weight_change.py:30
#: reports/templates/reports/report_list.html:22
#: reports/templates/reports/weight_change.html:4
#: reports/templates/reports/weight_change.html:8
msgid "Weight"
msgstr "Poids"
#: babybuddy/templates/babybuddy/nav-dropdown.html:93
#: babybuddy/templates/babybuddy/nav-dropdown.html:316 core/models.py:437
#: core/models.py:438 core/models.py:441
#: core/templates/core/pumping_confirm_delete.html:7
#: core/templates/core/pumping_form.html:13
#: core/templates/core/pumping_list.html:4
#: core/templates/core/pumping_list.html:7
#: core/templates/core/pumping_list.html:12
#: reports/templates/reports/pumping_amounts.html:4
#: reports/templates/reports/pumping_amounts.html:8
msgid "Pumping"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:118
#: core/templates/timeline/timeline.html:4 #: core/templates/timeline/timeline.html:4
#: core/templates/timeline/timeline.html:7 #: core/templates/timeline/timeline.html:7
#: dashboard/templates/dashboard/child_button_group.html:9 #: dashboard/templates/dashboard/child_button_group.html:9
msgid "Timeline" msgid "Timeline"
msgstr "Chronologie" msgstr "Chronologie"
#: babybuddy/templates/babybuddy/nav-dropdown.html:129 #: babybuddy/templates/babybuddy/nav-dropdown.html:110
#: babybuddy/templates/babybuddy/nav-dropdown.html:137 core/models.py:188 #: babybuddy/templates/babybuddy/nav-dropdown.html:118 core/models.py:188
#: core/templates/core/child_confirm_delete.html:7 #: core/templates/core/child_confirm_delete.html:7
#: core/templates/core/child_detail.html:7 #: core/templates/core/child_detail.html:7
#: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4 #: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4
@ -330,7 +289,7 @@ msgstr "Chronologie"
msgid "Children" msgid "Children"
msgstr "Enfants" msgstr "Enfants"
#: babybuddy/templates/babybuddy/nav-dropdown.html:143 core/models.py:137 #: babybuddy/templates/babybuddy/nav-dropdown.html:124 core/models.py:137
#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335 #: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335
#: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450 #: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450
#: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671 #: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671
@ -349,7 +308,7 @@ msgstr "Enfants"
msgid "Child" msgid "Child"
msgstr "Nouvel enfant" msgstr "Nouvel enfant"
#: babybuddy/templates/babybuddy/nav-dropdown.html:151 core/models.py:143 #: babybuddy/templates/babybuddy/nav-dropdown.html:132 core/models.py:143
#: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373 #: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373
#: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511 #: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511
#: core/models.py:677 core/templates/core/note_confirm_delete.html:7 #: core/models.py:677 core/templates/core/note_confirm_delete.html:7
@ -358,19 +317,48 @@ msgstr "Nouvel enfant"
msgid "Notes" msgid "Notes"
msgstr "Notes" msgstr "Notes"
#: babybuddy/templates/babybuddy/nav-dropdown.html:171 #: babybuddy/templates/babybuddy/nav-dropdown.html:152
msgid "Measurements" msgid "Measurements"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:185 #: babybuddy/templates/babybuddy/nav-dropdown.html:160 core/models.py:139
msgid "Temperature reading" #: core/models.py:151 core/models.py:152 core/models.py:155
msgstr "Lecture de la température" #: core/templates/core/bmi_confirm_delete.html:7
#: core/templates/core/bmi_form.html:13 core/templates/core/bmi_list.html:4
#: core/templates/core/bmi_list.html:7 core/templates/core/bmi_list.html:12
#: core/templates/core/bmi_list.html:29 reports/graphs/bmi_change.py:19
#: reports/graphs/bmi_change.py:30 reports/templates/reports/bmi_change.html:4
#: reports/templates/reports/bmi_change.html:8
msgid "BMI"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:199 #: babybuddy/templates/babybuddy/nav-dropdown.html:166
msgid "Weight entry" #, fuzzy
msgstr "Nouvelle prise de poids" #| msgid "Sleep entry"
msgid "BMI entry"
msgstr "Nouveau sommeil"
#: babybuddy/templates/babybuddy/nav-dropdown.html:207 core/models.py:369 #: babybuddy/templates/babybuddy/nav-dropdown.html:174 core/models.py:338
#: core/models.py:351 core/models.py:352 core/models.py:355
#: core/templates/core/head_circumference_confirm_delete.html:7
#: core/templates/core/head_circumference_form.html:13
#: core/templates/core/head_circumference_list.html:4
#: core/templates/core/head_circumference_list.html:7
#: core/templates/core/head_circumference_list.html:12
#: core/templates/core/head_circumference_list.html:29
#: reports/graphs/head_circumference_change.py:19
#: reports/graphs/head_circumference_change.py:30
#: reports/templates/reports/head_circumference_change.html:4
#: reports/templates/reports/head_circumference_change.html:8
#: reports/templates/reports/report_list.html:16
msgid "Head Circumference"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:180
msgid "Head Circumference entry"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:188 core/models.py:369
#: core/models.py:381 core/models.py:382 core/models.py:385 #: core/models.py:381 core/models.py:382 core/models.py:385
#: core/templates/core/height_confirm_delete.html:7 #: core/templates/core/height_confirm_delete.html:7
#: core/templates/core/height_form.html:13 #: core/templates/core/height_form.html:13
@ -387,63 +375,60 @@ msgstr "Nouvelle prise de poids"
msgid "Height" msgid "Height"
msgstr "Poids" msgstr "Poids"
#: babybuddy/templates/babybuddy/nav-dropdown.html:213 #: babybuddy/templates/babybuddy/nav-dropdown.html:194
#, fuzzy #, fuzzy
#| msgid "Weight entry" #| msgid "Weight entry"
msgid "Height entry" msgid "Height entry"
msgstr "Nouvelle prise de poids" msgstr "Nouvelle prise de poids"
#: babybuddy/templates/babybuddy/nav-dropdown.html:221 core/models.py:338 #: babybuddy/templates/babybuddy/nav-dropdown.html:202 core/models.py:506
#: core/models.py:351 core/models.py:352 core/models.py:355 #: core/models.py:519 core/models.py:520 core/models.py:523
#: core/templates/core/head_circumference_confirm_delete.html:7 #: core/templates/core/temperature_confirm_delete.html:7
#: core/templates/core/head_circumference_form.html:13 #: core/templates/core/temperature_form.html:13
#: core/templates/core/head_circumference_list.html:4 #: core/templates/core/temperature_list.html:4
#: core/templates/core/head_circumference_list.html:7 #: core/templates/core/temperature_list.html:7
#: core/templates/core/head_circumference_list.html:12 #: core/templates/core/temperature_list.html:12
#: core/templates/core/head_circumference_list.html:29 #: core/templates/core/temperature_list.html:29
#: reports/graphs/head_circumference_change.py:19 msgid "Temperature"
#: reports/graphs/head_circumference_change.py:30 msgstr "Température"
#: reports/templates/reports/head_circumference_change.html:4
#: reports/templates/reports/head_circumference_change.html:8
#: reports/templates/reports/report_list.html:16
msgid "Head Circumference"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:227 #: babybuddy/templates/babybuddy/nav-dropdown.html:208
msgid "Head Circumference entry" msgid "Temperature reading"
msgstr "" msgstr "Lecture de la température"
#: babybuddy/templates/babybuddy/nav-dropdown.html:235 core/models.py:139 #: babybuddy/templates/babybuddy/nav-dropdown.html:216 core/models.py:673
#: core/models.py:151 core/models.py:152 core/models.py:155 #: core/models.py:685 core/models.py:686 core/models.py:689
#: core/templates/core/bmi_confirm_delete.html:7 #: core/templates/core/weight_confirm_delete.html:7
#: core/templates/core/bmi_form.html:13 core/templates/core/bmi_list.html:4 #: core/templates/core/weight_form.html:13
#: core/templates/core/bmi_list.html:7 core/templates/core/bmi_list.html:12 #: core/templates/core/weight_list.html:4
#: core/templates/core/bmi_list.html:29 reports/graphs/bmi_change.py:19 #: core/templates/core/weight_list.html:7
#: reports/graphs/bmi_change.py:30 reports/templates/reports/bmi_change.html:4 #: core/templates/core/weight_list.html:12
#: reports/templates/reports/bmi_change.html:8 #: core/templates/core/weight_list.html:29 reports/graphs/weight_change.py:19
msgid "BMI" #: reports/graphs/weight_change.py:30
msgstr "" #: reports/templates/reports/report_list.html:22
#: reports/templates/reports/weight_change.html:4
#: reports/templates/reports/weight_change.html:8
msgid "Weight"
msgstr "Poids"
#: babybuddy/templates/babybuddy/nav-dropdown.html:241 #: babybuddy/templates/babybuddy/nav-dropdown.html:222
#, fuzzy msgid "Weight entry"
#| msgid "Sleep entry" msgstr "Nouvelle prise de poids"
msgid "BMI entry"
msgstr "Nouveau sommeil"
#: babybuddy/templates/babybuddy/nav-dropdown.html:255 #: babybuddy/templates/babybuddy/nav-dropdown.html:236
msgid "Activities" msgid "Activities"
msgstr "Activités" msgstr "Activités"
#: babybuddy/templates/babybuddy/nav-dropdown.html:262 #: babybuddy/templates/babybuddy/nav-dropdown.html:243
#: reports/graphs/diaperchange_lifetimes.py:27 #: reports/graphs/diaperchange_lifetimes.py:27
msgid "Changes" msgid "Changes"
msgstr "Changement de couches" msgstr "Changement de couches"
#: babybuddy/templates/babybuddy/nav-dropdown.html:268 #: babybuddy/templates/babybuddy/nav-dropdown.html:249
msgid "Change" msgid "Change"
msgstr "Nouveau change" msgstr "Nouveau change"
#: babybuddy/templates/babybuddy/nav-dropdown.html:275 #: babybuddy/templates/babybuddy/nav-dropdown.html:256
#: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313 #: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313
#: core/templates/core/feeding_confirm_delete.html:7 #: core/templates/core/feeding_confirm_delete.html:7
#: core/templates/core/feeding_form.html:13 #: core/templates/core/feeding_form.html:13
@ -453,21 +438,33 @@ msgstr "Nouveau change"
msgid "Feedings" msgid "Feedings"
msgstr "Allaitements" msgstr "Allaitements"
#: babybuddy/templates/babybuddy/nav-dropdown.html:294 #: babybuddy/templates/babybuddy/nav-dropdown.html:270 core/models.py:437
msgid "Sleep entry" #: core/models.py:438 core/models.py:441
msgstr "Nouveau sommeil" #: core/templates/core/pumping_confirm_delete.html:7
#: core/templates/core/pumping_form.html:13
#: core/templates/core/pumping_list.html:4
#: core/templates/core/pumping_list.html:7
#: core/templates/core/pumping_list.html:12
#: reports/templates/reports/pumping_amounts.html:4
#: reports/templates/reports/pumping_amounts.html:8
msgid "Pumping"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:307 #: babybuddy/templates/babybuddy/nav-dropdown.html:276
msgid "Tummy Time entry"
msgstr "Nouvelle période de motricité libre"
#: babybuddy/templates/babybuddy/nav-dropdown.html:322
#, fuzzy #, fuzzy
#| msgid "Weight entry" #| msgid "Weight entry"
msgid "Pumping entry" msgid "Pumping entry"
msgstr "Nouvelle prise de poids" msgstr "Nouvelle prise de poids"
#: babybuddy/templates/babybuddy/nav-dropdown.html:346 #: babybuddy/templates/babybuddy/nav-dropdown.html:289
msgid "Sleep entry"
msgstr "Nouveau sommeil"
#: babybuddy/templates/babybuddy/nav-dropdown.html:302
msgid "Tummy Time entry"
msgstr "Nouvelle période de motricité libre"
#: babybuddy/templates/babybuddy/nav-dropdown.html:326
#: babybuddy/templates/babybuddy/user_list.html:17 #: babybuddy/templates/babybuddy/user_list.html:17
#: babybuddy/templates/babybuddy/user_password_form.html:7 #: babybuddy/templates/babybuddy/user_password_form.html:7
#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556 #: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556
@ -475,23 +472,23 @@ msgstr "Nouvelle prise de poids"
msgid "User" msgid "User"
msgstr "Utilisateur" msgstr "Utilisateur"
#: babybuddy/templates/babybuddy/nav-dropdown.html:348 #: babybuddy/templates/babybuddy/nav-dropdown.html:328
msgid "Password" msgid "Password"
msgstr "Mot de passe" msgstr "Mot de passe"
#: babybuddy/templates/babybuddy/nav-dropdown.html:352 #: babybuddy/templates/babybuddy/nav-dropdown.html:332
msgid "Logout" msgid "Logout"
msgstr "Se déconnecter" msgstr "Se déconnecter"
#: babybuddy/templates/babybuddy/nav-dropdown.html:355 #: babybuddy/templates/babybuddy/nav-dropdown.html:335
msgid "Site" msgid "Site"
msgstr "Site" msgstr "Site"
#: babybuddy/templates/babybuddy/nav-dropdown.html:356 #: babybuddy/templates/babybuddy/nav-dropdown.html:336
msgid "API Browser" msgid "API Browser"
msgstr "Navigateur d'API" msgstr "Navigateur d'API"
#: babybuddy/templates/babybuddy/nav-dropdown.html:358 #: babybuddy/templates/babybuddy/nav-dropdown.html:338
#: babybuddy/templates/babybuddy/user_confirm_delete.html:7 #: babybuddy/templates/babybuddy/user_confirm_delete.html:7
#: babybuddy/templates/babybuddy/user_form.html:13 #: babybuddy/templates/babybuddy/user_form.html:13
#: babybuddy/templates/babybuddy/user_list.html:4 #: babybuddy/templates/babybuddy/user_list.html:4
@ -499,15 +496,15 @@ msgstr "Navigateur d'API"
msgid "Users" msgid "Users"
msgstr "Utilisateurs" msgstr "Utilisateurs"
#: babybuddy/templates/babybuddy/nav-dropdown.html:361 #: babybuddy/templates/babybuddy/nav-dropdown.html:341
msgid "Support" msgid "Support"
msgstr "Support" msgstr "Support"
#: babybuddy/templates/babybuddy/nav-dropdown.html:363 #: babybuddy/templates/babybuddy/nav-dropdown.html:343
msgid "Source Code" msgid "Source Code"
msgstr "Code source" msgstr "Code source"
#: babybuddy/templates/babybuddy/nav-dropdown.html:365 #: babybuddy/templates/babybuddy/nav-dropdown.html:345
msgid "Chat / Support" msgid "Chat / Support"
msgstr "Tchat / Support" msgstr "Tchat / Support"
@ -518,6 +515,7 @@ msgstr "Tchat / Support"
#: core/templates/timeline/_timeline.html:73 #: core/templates/timeline/_timeline.html:73
#: dashboard/templates/cards/feeding_day.html:43 #: dashboard/templates/cards/feeding_day.html:43
#: dashboard/templates/cards/feeding_last_method.html:34 #: dashboard/templates/cards/feeding_last_method.html:34
#: dashboard/templates/cards/sleep_recent.html:43
#: dashboard/templates/cards/statistics.html:34 #: dashboard/templates/cards/statistics.html:34
msgid "Previous" msgid "Previous"
msgstr "Précédente" msgstr "Précédente"
@ -529,6 +527,7 @@ msgstr "Précédente"
#: core/templates/timeline/_timeline.html:80 #: core/templates/timeline/_timeline.html:80
#: dashboard/templates/cards/feeding_day.html:47 #: dashboard/templates/cards/feeding_day.html:47
#: dashboard/templates/cards/feeding_last_method.html:38 #: dashboard/templates/cards/feeding_last_method.html:38
#: dashboard/templates/cards/sleep_recent.html:47
#: dashboard/templates/cards/statistics.html:38 #: dashboard/templates/cards/statistics.html:38
msgid "Next" msgid "Next"
msgstr "Suivante" msgstr "Suivante"
@ -1002,7 +1001,7 @@ msgstr ""
#: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70 #: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70
#: reports/graphs/feeding_duration.py:56 #: reports/graphs/feeding_duration.py:56
#: reports/graphs/head_circumference_change.py:28 #: reports/graphs/head_circumference_change.py:28
#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:58 #: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60
#: reports/graphs/sleep_pattern.py:151 reports/graphs/sleep_totals.py:59 #: reports/graphs/sleep_pattern.py:151 reports/graphs/sleep_totals.py:59
#: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28 #: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28
msgid "Date" msgid "Date"
@ -1182,7 +1181,7 @@ msgstr ""
#: core/templates/core/bmi_list.html:70 #: core/templates/core/bmi_list.html:70
#, fuzzy #, fuzzy
#| msgid "No timer entries found." #| msgid "No timer entries found."
msgid "No bmi entries found." msgid "No BMI entries found."
msgstr "Aucun chronomètre trouvé." msgstr "Aucun chronomètre trouvé."
#: core/templates/core/child_confirm_delete.html:4 #: core/templates/core/child_confirm_delete.html:4
@ -1505,9 +1504,10 @@ msgstr "Chronomètres actifs"
#: dashboard/templates/cards/feeding_day.html:52 #: dashboard/templates/cards/feeding_day.html:52
#: dashboard/templates/cards/feeding_last.html:17 #: dashboard/templates/cards/feeding_last.html:17
#: dashboard/templates/cards/feeding_last_method.html:43 #: dashboard/templates/cards/feeding_last_method.html:43
#: dashboard/templates/cards/sleep_day.html:14
#: dashboard/templates/cards/sleep_last.html:17 #: dashboard/templates/cards/sleep_last.html:17
#: dashboard/templates/cards/sleep_naps_day.html:18 #: dashboard/templates/cards/sleep_naps_day.html:18
#: dashboard/templates/cards/sleep_recent.html:20
#: dashboard/templates/cards/sleep_recent.html:52
#: dashboard/templates/cards/tummytime_day.html:14 #: dashboard/templates/cards/tummytime_day.html:14
msgid "None" msgid "None"
msgstr "Aucun" msgstr "Aucun"
@ -1628,6 +1628,22 @@ msgstr "{}, {}"
msgid "0 days" msgid "0 days"
msgstr "0 jours" msgstr "0 jours"
#: core/templatetags/duration.py:111
#: dashboard/templates/cards/diaperchange_types.html:49
msgid "today"
msgstr "aujourd'hui"
#: core/templatetags/duration.py:113
#: dashboard/templates/cards/diaperchange_types.html:51
msgid "yesterday"
msgstr "hier"
#: core/templatetags/duration.py:116
#, fuzzy
#| msgid "%(key)s days ago"
msgid " days ago"
msgstr "il y a %(key)s jours"
#: core/timeline.py:53 #: core/timeline.py:53
#, python-format #, python-format
msgid "%(child)s started tummy time!" msgid "%(child)s started tummy time!"
@ -1767,14 +1783,6 @@ msgstr "humide"
msgid "solid" msgid "solid"
msgstr "solide" msgstr "solide"
#: dashboard/templates/cards/diaperchange_types.html:49
msgid "today"
msgstr "aujourd'hui"
#: dashboard/templates/cards/diaperchange_types.html:51
msgid "yesterday"
msgstr "hier"
#: dashboard/templates/cards/diaperchange_types.html:53 #: dashboard/templates/cards/diaperchange_types.html:53
#, python-format #, python-format
msgid "%(key)s days ago" msgid "%(key)s days ago"
@ -1793,6 +1801,7 @@ msgstr[0] "%(count)s entrées de sommeil."
msgstr[1] "%(count)s entrées de sommeil." msgstr[1] "%(count)s entrées de sommeil."
#: dashboard/templates/cards/feeding_day.html:32 #: dashboard/templates/cards/feeding_day.html:32
#: dashboard/templates/cards/sleep_recent.html:32
#, python-format #, python-format
msgid "<div class=\"text-center small text-muted\"> %(since)s </div>" msgid "<div class=\"text-center small text-muted\"> %(since)s </div>"
msgstr "" msgstr ""
@ -1817,15 +1826,6 @@ msgid_plural "%(n)s feedings ago"
msgstr[0] "il y a %(n)s alimentation%(plural)s" msgstr[0] "il y a %(n)s alimentation%(plural)s"
msgstr[1] "il y a %(n)s alimentation%(plural)s" msgstr[1] "il y a %(n)s alimentation%(plural)s"
#: dashboard/templates/cards/sleep_day.html:6
msgid "Today's Sleep"
msgstr "Sommeil d'aujourd'hui"
#: dashboard/templates/cards/sleep_day.html:20
#, python-format
msgid "%(count)s sleep entries"
msgstr "%(count)s entrées de sommeil."
#: dashboard/templates/cards/sleep_last.html:6 #: dashboard/templates/cards/sleep_last.html:6
msgid "Last Sleep" msgid "Last Sleep"
msgstr "Dernier sommeil" msgstr "Dernier sommeil"
@ -1842,6 +1842,20 @@ msgid_plural "%(count)s naps"
msgstr[0] "%(count)s Sieste%(plural)s" msgstr[0] "%(count)s Sieste%(plural)s"
msgstr[1] "%(count)s Sieste%(plural)s" msgstr[1] "%(count)s Sieste%(plural)s"
#: dashboard/templates/cards/sleep_recent.html:6
#, fuzzy
#| msgid "Last Sleep"
msgid "Recent Sleep"
msgstr "Dernier sommeil"
#: dashboard/templates/cards/sleep_recent.html:25
#, fuzzy, python-format
#| msgid "%(count)s sleep entries"
msgid "%(counter)s sleep"
msgid_plural "%(counter)s sleep"
msgstr[0] "%(count)s entrées de sommeil."
msgstr[1] "%(count)s entrées de sommeil."
#: dashboard/templates/cards/statistics.html:7 #: dashboard/templates/cards/statistics.html:7
msgid "Statistics" msgid "Statistics"
msgstr "Statistiques" msgstr "Statistiques"
@ -1894,69 +1908,69 @@ msgstr "Opérations sur l'enfant"
msgid "Reports" msgid "Reports"
msgstr "Rapports" msgstr "Rapports"
#: dashboard/templatetags/cards.py:328 #: dashboard/templatetags/cards.py:357
msgid "Average nap duration" msgid "Average nap duration"
msgstr "Durée moyenne des siestes" msgstr "Durée moyenne des siestes"
#: dashboard/templatetags/cards.py:335 #: dashboard/templatetags/cards.py:364
msgid "Average naps per day" msgid "Average naps per day"
msgstr "Moyen de siestes par jour" msgstr "Moyen de siestes par jour"
#: dashboard/templatetags/cards.py:345 #: dashboard/templatetags/cards.py:374
msgid "Average sleep duration" msgid "Average sleep duration"
msgstr "Durée moyenne du sommeil" msgstr "Durée moyenne du sommeil"
#: dashboard/templatetags/cards.py:352 #: dashboard/templatetags/cards.py:381
msgid "Average awake duration" msgid "Average awake duration"
msgstr "Durée moyenne de veille" msgstr "Durée moyenne de veille"
#: dashboard/templatetags/cards.py:362 #: dashboard/templatetags/cards.py:391
msgid "Weight change per week" msgid "Weight change per week"
msgstr "Changement de poids par semaine" msgstr "Changement de poids par semaine"
#: dashboard/templatetags/cards.py:372 #: dashboard/templatetags/cards.py:401
#, fuzzy #, fuzzy
#| msgid "Weight change per week" #| msgid "Weight change per week"
msgid "Height change per week" msgid "Height change per week"
msgstr "Changement de poids par semaine" msgstr "Changement de poids par semaine"
#: dashboard/templatetags/cards.py:382 #: dashboard/templatetags/cards.py:411
#, fuzzy #, fuzzy
#| msgid "Weight change per week" #| msgid "Weight change per week"
msgid "Head circumference change per week" msgid "Head circumference change per week"
msgstr "Changement de poids par semaine" msgstr "Changement de poids par semaine"
#: dashboard/templatetags/cards.py:392 #: dashboard/templatetags/cards.py:421
#, fuzzy #, fuzzy
#| msgid "Weight change per week" #| msgid "Weight change per week"
msgid "BMI change per week" msgid "BMI change per week"
msgstr "Changement de poids par semaine" msgstr "Changement de poids par semaine"
#: dashboard/templatetags/cards.py:410 #: dashboard/templatetags/cards.py:439
#, fuzzy #, fuzzy
#| msgid "Feeding frequency (past 3 days)" #| msgid "Feeding frequency (past 3 days)"
msgid "Diaper change frequency (past 3 days)" msgid "Diaper change frequency (past 3 days)"
msgstr "Fréquence d'alimentation (3 derniers jours)" msgstr "Fréquence d'alimentation (3 derniers jours)"
#: dashboard/templatetags/cards.py:414 #: dashboard/templatetags/cards.py:443
#, fuzzy #, fuzzy
#| msgid "Feeding frequency (past 2 weeks)" #| msgid "Feeding frequency (past 2 weeks)"
msgid "Diaper change frequency (past 2 weeks)" msgid "Diaper change frequency (past 2 weeks)"
msgstr "Fréquence d'alimentation (2 dernières semaines)" msgstr "Fréquence d'alimentation (2 dernières semaines)"
#: dashboard/templatetags/cards.py:420 #: dashboard/templatetags/cards.py:449
msgid "Diaper change frequency" msgid "Diaper change frequency"
msgstr "Fréquence de change" msgstr "Fréquence de change"
#: dashboard/templatetags/cards.py:456 #: dashboard/templatetags/cards.py:485
msgid "Feeding frequency (past 3 days)" msgid "Feeding frequency (past 3 days)"
msgstr "Fréquence d'alimentation (3 derniers jours)" msgstr "Fréquence d'alimentation (3 derniers jours)"
#: dashboard/templatetags/cards.py:460 #: dashboard/templatetags/cards.py:489
msgid "Feeding frequency (past 2 weeks)" msgid "Feeding frequency (past 2 weeks)"
msgstr "Fréquence d'alimentation (2 dernières semaines)" msgstr "Fréquence d'alimentation (2 dernières semaines)"
#: dashboard/templatetags/cards.py:466 #: dashboard/templatetags/cards.py:495
msgid "Feeding frequency" msgid "Feeding frequency"
msgstr "Fréquence des repas" msgstr "Fréquence des repas"
@ -2038,13 +2052,13 @@ msgstr ""
msgid "<b>Height</b>" msgid "<b>Height</b>"
msgstr "<b>Poids</b>" msgstr "<b>Poids</b>"
#: reports/graphs/pumping_amounts.py:57 #: reports/graphs/pumping_amounts.py:59
#, fuzzy #, fuzzy
#| msgid "<b>Total Feeding Amounts</b>" #| msgid "<b>Total Feeding Amounts</b>"
msgid "<b>Total Pumping Amount</b>" msgid "<b>Total Pumping Amount</b>"
msgstr "<b>Durée d'Alimentation Moyenne</b>" msgstr "<b>Durée d'Alimentation Moyenne</b>"
#: reports/graphs/pumping_amounts.py:60 #: reports/graphs/pumping_amounts.py:62
#, fuzzy #, fuzzy
#| msgid "Feeding Amounts" #| msgid "Feeding Amounts"
msgid "Pumping Amount" msgid "Pumping Amount"
@ -2161,3 +2175,10 @@ msgstr "Durées du temps sur le ventre (Somme)"
#: reports/templates/reports/tummytime_duration.html:8 #: reports/templates/reports/tummytime_duration.html:8
msgid "Total Tummy Time Durations" msgid "Total Tummy Time Durations"
msgstr "Durées totales du temps sur le ventre" msgstr "Durées totales du temps sur le ventre"
#~ msgid "Today's Sleep"
#~ msgstr "Sommeil d'aujourd'hui"
#, python-format
#~ msgid "%(count)s sleep entries"
#~ msgstr "%(count)s entrées de sommeil."

Binary file not shown.

View File

@ -2,7 +2,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Baby Buddy\n" "Project-Id-Version: Baby Buddy\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-06-05 13:25+0000\n" "POT-Creation-Date: 2022-06-17 22:25+0000\n"
"Language: it\n" "Language: it\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -11,12 +11,12 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: babybuddy/admin.py:12 babybuddy/admin.py:13 #: babybuddy/admin.py:12 babybuddy/admin.py:13
#: babybuddy/templates/babybuddy/nav-dropdown.html:347 #: babybuddy/templates/babybuddy/nav-dropdown.html:327
#: babybuddy/templates/babybuddy/user_settings_form.html:8 #: babybuddy/templates/babybuddy/user_settings_form.html:8
msgid "Settings" msgid "Settings"
msgstr "Impostazioni" msgstr "Impostazioni"
#: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:111 #: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:92
#: babybuddy/templates/babybuddy/user_settings_form.html:61 #: babybuddy/templates/babybuddy/user_settings_form.html:61
#: dashboard/templates/dashboard/child.html:4 #: dashboard/templates/dashboard/child.html:4
#: dashboard/templates/dashboard/child.html:9 #: dashboard/templates/dashboard/child.html:9
@ -187,7 +187,7 @@ msgstr "Turco"
#: babybuddy/templates/admin/base_site.html:4 #: babybuddy/templates/admin/base_site.html:4
#: babybuddy/templates/admin/base_site.html:7 #: babybuddy/templates/admin/base_site.html:7
#: babybuddy/templates/babybuddy/nav-dropdown.html:359 #: babybuddy/templates/babybuddy/nav-dropdown.html:339
msgid "Database Admin" msgid "Database Admin"
msgstr "Database Admin" msgstr "Database Admin"
@ -236,19 +236,19 @@ msgid "Diaper Change"
msgstr "Cambio Pannolino" msgstr "Cambio Pannolino"
#: babybuddy/templates/babybuddy/nav-dropdown.html:57 #: babybuddy/templates/babybuddy/nav-dropdown.html:57
#: babybuddy/templates/babybuddy/nav-dropdown.html:281 core/models.py:312 #: babybuddy/templates/babybuddy/nav-dropdown.html:262 core/models.py:312
#: core/models.py:316 core/templates/core/timer_detail.html:43 #: core/models.py:316 core/templates/core/timer_detail.html:43
msgid "Feeding" msgid "Feeding"
msgstr "Pasto" msgstr "Pasto"
#: babybuddy/templates/babybuddy/nav-dropdown.html:63 #: babybuddy/templates/babybuddy/nav-dropdown.html:63
#: babybuddy/templates/babybuddy/nav-dropdown.html:157 core/models.py:396 #: babybuddy/templates/babybuddy/nav-dropdown.html:138 core/models.py:396
#: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29 #: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29
msgid "Note" msgid "Note"
msgstr "Note" msgstr "Note"
#: babybuddy/templates/babybuddy/nav-dropdown.html:69 #: babybuddy/templates/babybuddy/nav-dropdown.html:69
#: babybuddy/templates/babybuddy/nav-dropdown.html:288 #: babybuddy/templates/babybuddy/nav-dropdown.html:283
#: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467 #: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467
#: core/models.py:468 core/models.py:471 #: core/models.py:468 core/models.py:471
#: core/templates/core/sleep_confirm_delete.html:7 #: core/templates/core/sleep_confirm_delete.html:7
@ -259,19 +259,7 @@ msgid "Sleep"
msgstr "Riposo" msgstr "Riposo"
#: babybuddy/templates/babybuddy/nav-dropdown.html:75 #: babybuddy/templates/babybuddy/nav-dropdown.html:75
#: babybuddy/templates/babybuddy/nav-dropdown.html:179 core/models.py:506 #: babybuddy/templates/babybuddy/nav-dropdown.html:296
#: core/models.py:519 core/models.py:520 core/models.py:523
#: core/templates/core/temperature_confirm_delete.html:7
#: core/templates/core/temperature_form.html:13
#: core/templates/core/temperature_list.html:4
#: core/templates/core/temperature_list.html:7
#: core/templates/core/temperature_list.html:12
#: core/templates/core/temperature_list.html:29
msgid "Temperature"
msgstr "Temperatura"
#: babybuddy/templates/babybuddy/nav-dropdown.html:81
#: babybuddy/templates/babybuddy/nav-dropdown.html:301
#: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647 #: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647
#: core/models.py:648 core/models.py:651 #: core/models.py:648 core/models.py:651
#: core/templates/core/timer_detail.html:59 #: core/templates/core/timer_detail.html:59
@ -283,44 +271,15 @@ msgstr "Temperatura"
msgid "Tummy Time" msgid "Tummy Time"
msgstr "Tummy Time" msgstr "Tummy Time"
#: babybuddy/templates/babybuddy/nav-dropdown.html:87 #: babybuddy/templates/babybuddy/nav-dropdown.html:99
#: babybuddy/templates/babybuddy/nav-dropdown.html:193 core/models.py:673
#: core/models.py:685 core/models.py:686 core/models.py:689
#: core/templates/core/weight_confirm_delete.html:7
#: core/templates/core/weight_form.html:13
#: core/templates/core/weight_list.html:4
#: core/templates/core/weight_list.html:7
#: core/templates/core/weight_list.html:12
#: core/templates/core/weight_list.html:29 reports/graphs/weight_change.py:19
#: reports/graphs/weight_change.py:30
#: reports/templates/reports/report_list.html:22
#: reports/templates/reports/weight_change.html:4
#: reports/templates/reports/weight_change.html:8
msgid "Weight"
msgstr "Peso"
#: babybuddy/templates/babybuddy/nav-dropdown.html:93
#: babybuddy/templates/babybuddy/nav-dropdown.html:316 core/models.py:437
#: core/models.py:438 core/models.py:441
#: core/templates/core/pumping_confirm_delete.html:7
#: core/templates/core/pumping_form.html:13
#: core/templates/core/pumping_list.html:4
#: core/templates/core/pumping_list.html:7
#: core/templates/core/pumping_list.html:12
#: reports/templates/reports/pumping_amounts.html:4
#: reports/templates/reports/pumping_amounts.html:8
msgid "Pumping"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:118
#: core/templates/timeline/timeline.html:4 #: core/templates/timeline/timeline.html:4
#: core/templates/timeline/timeline.html:7 #: core/templates/timeline/timeline.html:7
#: dashboard/templates/dashboard/child_button_group.html:9 #: dashboard/templates/dashboard/child_button_group.html:9
msgid "Timeline" msgid "Timeline"
msgstr "Andamento temporale" msgstr "Andamento temporale"
#: babybuddy/templates/babybuddy/nav-dropdown.html:129 #: babybuddy/templates/babybuddy/nav-dropdown.html:110
#: babybuddy/templates/babybuddy/nav-dropdown.html:137 core/models.py:188 #: babybuddy/templates/babybuddy/nav-dropdown.html:118 core/models.py:188
#: core/templates/core/child_confirm_delete.html:7 #: core/templates/core/child_confirm_delete.html:7
#: core/templates/core/child_detail.html:7 #: core/templates/core/child_detail.html:7
#: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4 #: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4
@ -330,7 +289,7 @@ msgstr "Andamento temporale"
msgid "Children" msgid "Children"
msgstr "Bambino" msgstr "Bambino"
#: babybuddy/templates/babybuddy/nav-dropdown.html:143 core/models.py:137 #: babybuddy/templates/babybuddy/nav-dropdown.html:124 core/models.py:137
#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335 #: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335
#: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450 #: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450
#: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671 #: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671
@ -349,7 +308,7 @@ msgstr "Bambino"
msgid "Child" msgid "Child"
msgstr "Figlio" msgstr "Figlio"
#: babybuddy/templates/babybuddy/nav-dropdown.html:151 core/models.py:143 #: babybuddy/templates/babybuddy/nav-dropdown.html:132 core/models.py:143
#: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373 #: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373
#: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511 #: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511
#: core/models.py:677 core/templates/core/note_confirm_delete.html:7 #: core/models.py:677 core/templates/core/note_confirm_delete.html:7
@ -358,19 +317,48 @@ msgstr "Figlio"
msgid "Notes" msgid "Notes"
msgstr "Note" msgstr "Note"
#: babybuddy/templates/babybuddy/nav-dropdown.html:171 #: babybuddy/templates/babybuddy/nav-dropdown.html:152
msgid "Measurements" msgid "Measurements"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:185 #: babybuddy/templates/babybuddy/nav-dropdown.html:160 core/models.py:139
msgid "Temperature reading" #: core/models.py:151 core/models.py:152 core/models.py:155
msgstr "Lettura temperatura" #: core/templates/core/bmi_confirm_delete.html:7
#: core/templates/core/bmi_form.html:13 core/templates/core/bmi_list.html:4
#: core/templates/core/bmi_list.html:7 core/templates/core/bmi_list.html:12
#: core/templates/core/bmi_list.html:29 reports/graphs/bmi_change.py:19
#: reports/graphs/bmi_change.py:30 reports/templates/reports/bmi_change.html:4
#: reports/templates/reports/bmi_change.html:8
msgid "BMI"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:199 #: babybuddy/templates/babybuddy/nav-dropdown.html:166
msgid "Weight entry" #, fuzzy
msgstr "Pesata" #| msgid "Sleep entry"
msgid "BMI entry"
msgstr "Aggiungi Riposo"
#: babybuddy/templates/babybuddy/nav-dropdown.html:207 core/models.py:369 #: babybuddy/templates/babybuddy/nav-dropdown.html:174 core/models.py:338
#: core/models.py:351 core/models.py:352 core/models.py:355
#: core/templates/core/head_circumference_confirm_delete.html:7
#: core/templates/core/head_circumference_form.html:13
#: core/templates/core/head_circumference_list.html:4
#: core/templates/core/head_circumference_list.html:7
#: core/templates/core/head_circumference_list.html:12
#: core/templates/core/head_circumference_list.html:29
#: reports/graphs/head_circumference_change.py:19
#: reports/graphs/head_circumference_change.py:30
#: reports/templates/reports/head_circumference_change.html:4
#: reports/templates/reports/head_circumference_change.html:8
#: reports/templates/reports/report_list.html:16
msgid "Head Circumference"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:180
msgid "Head Circumference entry"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:188 core/models.py:369
#: core/models.py:381 core/models.py:382 core/models.py:385 #: core/models.py:381 core/models.py:382 core/models.py:385
#: core/templates/core/height_confirm_delete.html:7 #: core/templates/core/height_confirm_delete.html:7
#: core/templates/core/height_form.html:13 #: core/templates/core/height_form.html:13
@ -387,63 +375,60 @@ msgstr "Pesata"
msgid "Height" msgid "Height"
msgstr "Peso" msgstr "Peso"
#: babybuddy/templates/babybuddy/nav-dropdown.html:213 #: babybuddy/templates/babybuddy/nav-dropdown.html:194
#, fuzzy #, fuzzy
#| msgid "Weight entry" #| msgid "Weight entry"
msgid "Height entry" msgid "Height entry"
msgstr "Pesata" msgstr "Pesata"
#: babybuddy/templates/babybuddy/nav-dropdown.html:221 core/models.py:338 #: babybuddy/templates/babybuddy/nav-dropdown.html:202 core/models.py:506
#: core/models.py:351 core/models.py:352 core/models.py:355 #: core/models.py:519 core/models.py:520 core/models.py:523
#: core/templates/core/head_circumference_confirm_delete.html:7 #: core/templates/core/temperature_confirm_delete.html:7
#: core/templates/core/head_circumference_form.html:13 #: core/templates/core/temperature_form.html:13
#: core/templates/core/head_circumference_list.html:4 #: core/templates/core/temperature_list.html:4
#: core/templates/core/head_circumference_list.html:7 #: core/templates/core/temperature_list.html:7
#: core/templates/core/head_circumference_list.html:12 #: core/templates/core/temperature_list.html:12
#: core/templates/core/head_circumference_list.html:29 #: core/templates/core/temperature_list.html:29
#: reports/graphs/head_circumference_change.py:19 msgid "Temperature"
#: reports/graphs/head_circumference_change.py:30 msgstr "Temperatura"
#: reports/templates/reports/head_circumference_change.html:4
#: reports/templates/reports/head_circumference_change.html:8
#: reports/templates/reports/report_list.html:16
msgid "Head Circumference"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:227 #: babybuddy/templates/babybuddy/nav-dropdown.html:208
msgid "Head Circumference entry" msgid "Temperature reading"
msgstr "" msgstr "Lettura temperatura"
#: babybuddy/templates/babybuddy/nav-dropdown.html:235 core/models.py:139 #: babybuddy/templates/babybuddy/nav-dropdown.html:216 core/models.py:673
#: core/models.py:151 core/models.py:152 core/models.py:155 #: core/models.py:685 core/models.py:686 core/models.py:689
#: core/templates/core/bmi_confirm_delete.html:7 #: core/templates/core/weight_confirm_delete.html:7
#: core/templates/core/bmi_form.html:13 core/templates/core/bmi_list.html:4 #: core/templates/core/weight_form.html:13
#: core/templates/core/bmi_list.html:7 core/templates/core/bmi_list.html:12 #: core/templates/core/weight_list.html:4
#: core/templates/core/bmi_list.html:29 reports/graphs/bmi_change.py:19 #: core/templates/core/weight_list.html:7
#: reports/graphs/bmi_change.py:30 reports/templates/reports/bmi_change.html:4 #: core/templates/core/weight_list.html:12
#: reports/templates/reports/bmi_change.html:8 #: core/templates/core/weight_list.html:29 reports/graphs/weight_change.py:19
msgid "BMI" #: reports/graphs/weight_change.py:30
msgstr "" #: reports/templates/reports/report_list.html:22
#: reports/templates/reports/weight_change.html:4
#: reports/templates/reports/weight_change.html:8
msgid "Weight"
msgstr "Peso"
#: babybuddy/templates/babybuddy/nav-dropdown.html:241 #: babybuddy/templates/babybuddy/nav-dropdown.html:222
#, fuzzy msgid "Weight entry"
#| msgid "Sleep entry" msgstr "Pesata"
msgid "BMI entry"
msgstr "Aggiungi Riposo"
#: babybuddy/templates/babybuddy/nav-dropdown.html:255 #: babybuddy/templates/babybuddy/nav-dropdown.html:236
msgid "Activities" msgid "Activities"
msgstr "Azioni" msgstr "Azioni"
#: babybuddy/templates/babybuddy/nav-dropdown.html:262 #: babybuddy/templates/babybuddy/nav-dropdown.html:243
#: reports/graphs/diaperchange_lifetimes.py:27 #: reports/graphs/diaperchange_lifetimes.py:27
msgid "Changes" msgid "Changes"
msgstr "Cambi" msgstr "Cambi"
#: babybuddy/templates/babybuddy/nav-dropdown.html:268 #: babybuddy/templates/babybuddy/nav-dropdown.html:249
msgid "Change" msgid "Change"
msgstr "Cambio" msgstr "Cambio"
#: babybuddy/templates/babybuddy/nav-dropdown.html:275 #: babybuddy/templates/babybuddy/nav-dropdown.html:256
#: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313 #: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313
#: core/templates/core/feeding_confirm_delete.html:7 #: core/templates/core/feeding_confirm_delete.html:7
#: core/templates/core/feeding_form.html:13 #: core/templates/core/feeding_form.html:13
@ -453,21 +438,33 @@ msgstr "Cambio"
msgid "Feedings" msgid "Feedings"
msgstr "Pasti" msgstr "Pasti"
#: babybuddy/templates/babybuddy/nav-dropdown.html:294 #: babybuddy/templates/babybuddy/nav-dropdown.html:270 core/models.py:437
msgid "Sleep entry" #: core/models.py:438 core/models.py:441
msgstr "Aggiungi Riposo" #: core/templates/core/pumping_confirm_delete.html:7
#: core/templates/core/pumping_form.html:13
#: core/templates/core/pumping_list.html:4
#: core/templates/core/pumping_list.html:7
#: core/templates/core/pumping_list.html:12
#: reports/templates/reports/pumping_amounts.html:4
#: reports/templates/reports/pumping_amounts.html:8
msgid "Pumping"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:307 #: babybuddy/templates/babybuddy/nav-dropdown.html:276
msgid "Tummy Time entry"
msgstr "Aggiungi Tummy Time"
#: babybuddy/templates/babybuddy/nav-dropdown.html:322
#, fuzzy #, fuzzy
#| msgid "Weight entry" #| msgid "Weight entry"
msgid "Pumping entry" msgid "Pumping entry"
msgstr "Pesata" msgstr "Pesata"
#: babybuddy/templates/babybuddy/nav-dropdown.html:346 #: babybuddy/templates/babybuddy/nav-dropdown.html:289
msgid "Sleep entry"
msgstr "Aggiungi Riposo"
#: babybuddy/templates/babybuddy/nav-dropdown.html:302
msgid "Tummy Time entry"
msgstr "Aggiungi Tummy Time"
#: babybuddy/templates/babybuddy/nav-dropdown.html:326
#: babybuddy/templates/babybuddy/user_list.html:17 #: babybuddy/templates/babybuddy/user_list.html:17
#: babybuddy/templates/babybuddy/user_password_form.html:7 #: babybuddy/templates/babybuddy/user_password_form.html:7
#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556 #: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556
@ -475,23 +472,23 @@ msgstr "Pesata"
msgid "User" msgid "User"
msgstr "Utente" msgstr "Utente"
#: babybuddy/templates/babybuddy/nav-dropdown.html:348 #: babybuddy/templates/babybuddy/nav-dropdown.html:328
msgid "Password" msgid "Password"
msgstr "Password" msgstr "Password"
#: babybuddy/templates/babybuddy/nav-dropdown.html:352 #: babybuddy/templates/babybuddy/nav-dropdown.html:332
msgid "Logout" msgid "Logout"
msgstr "Logout" msgstr "Logout"
#: babybuddy/templates/babybuddy/nav-dropdown.html:355 #: babybuddy/templates/babybuddy/nav-dropdown.html:335
msgid "Site" msgid "Site"
msgstr "Sito" msgstr "Sito"
#: babybuddy/templates/babybuddy/nav-dropdown.html:356 #: babybuddy/templates/babybuddy/nav-dropdown.html:336
msgid "API Browser" msgid "API Browser"
msgstr "API Browser" msgstr "API Browser"
#: babybuddy/templates/babybuddy/nav-dropdown.html:358 #: babybuddy/templates/babybuddy/nav-dropdown.html:338
#: babybuddy/templates/babybuddy/user_confirm_delete.html:7 #: babybuddy/templates/babybuddy/user_confirm_delete.html:7
#: babybuddy/templates/babybuddy/user_form.html:13 #: babybuddy/templates/babybuddy/user_form.html:13
#: babybuddy/templates/babybuddy/user_list.html:4 #: babybuddy/templates/babybuddy/user_list.html:4
@ -499,15 +496,15 @@ msgstr "API Browser"
msgid "Users" msgid "Users"
msgstr "Utenti" msgstr "Utenti"
#: babybuddy/templates/babybuddy/nav-dropdown.html:361 #: babybuddy/templates/babybuddy/nav-dropdown.html:341
msgid "Support" msgid "Support"
msgstr "Supporto" msgstr "Supporto"
#: babybuddy/templates/babybuddy/nav-dropdown.html:363 #: babybuddy/templates/babybuddy/nav-dropdown.html:343
msgid "Source Code" msgid "Source Code"
msgstr "Codice Sorgente" msgstr "Codice Sorgente"
#: babybuddy/templates/babybuddy/nav-dropdown.html:365 #: babybuddy/templates/babybuddy/nav-dropdown.html:345
msgid "Chat / Support" msgid "Chat / Support"
msgstr "Chat / Supporto" msgstr "Chat / Supporto"
@ -518,6 +515,7 @@ msgstr "Chat / Supporto"
#: core/templates/timeline/_timeline.html:73 #: core/templates/timeline/_timeline.html:73
#: dashboard/templates/cards/feeding_day.html:43 #: dashboard/templates/cards/feeding_day.html:43
#: dashboard/templates/cards/feeding_last_method.html:34 #: dashboard/templates/cards/feeding_last_method.html:34
#: dashboard/templates/cards/sleep_recent.html:43
#: dashboard/templates/cards/statistics.html:34 #: dashboard/templates/cards/statistics.html:34
msgid "Previous" msgid "Previous"
msgstr "Precedente" msgstr "Precedente"
@ -529,6 +527,7 @@ msgstr "Precedente"
#: core/templates/timeline/_timeline.html:80 #: core/templates/timeline/_timeline.html:80
#: dashboard/templates/cards/feeding_day.html:47 #: dashboard/templates/cards/feeding_day.html:47
#: dashboard/templates/cards/feeding_last_method.html:38 #: dashboard/templates/cards/feeding_last_method.html:38
#: dashboard/templates/cards/sleep_recent.html:47
#: dashboard/templates/cards/statistics.html:38 #: dashboard/templates/cards/statistics.html:38
msgid "Next" msgid "Next"
msgstr "Successivo" msgstr "Successivo"
@ -996,7 +995,7 @@ msgstr ""
#: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70 #: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70
#: reports/graphs/feeding_duration.py:56 #: reports/graphs/feeding_duration.py:56
#: reports/graphs/head_circumference_change.py:28 #: reports/graphs/head_circumference_change.py:28
#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:58 #: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60
#: reports/graphs/sleep_pattern.py:151 reports/graphs/sleep_totals.py:59 #: reports/graphs/sleep_pattern.py:151 reports/graphs/sleep_totals.py:59
#: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28 #: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28
msgid "Date" msgid "Date"
@ -1176,7 +1175,7 @@ msgstr ""
#: core/templates/core/bmi_list.html:70 #: core/templates/core/bmi_list.html:70
#, fuzzy #, fuzzy
#| msgid "No timer entries found." #| msgid "No timer entries found."
msgid "No bmi entries found." msgid "No BMI entries found."
msgstr "Nessuna voce timer trovata." msgstr "Nessuna voce timer trovata."
#: core/templates/core/child_confirm_delete.html:4 #: core/templates/core/child_confirm_delete.html:4
@ -1498,9 +1497,10 @@ msgstr "Timer Attivi"
#: dashboard/templates/cards/feeding_day.html:52 #: dashboard/templates/cards/feeding_day.html:52
#: dashboard/templates/cards/feeding_last.html:17 #: dashboard/templates/cards/feeding_last.html:17
#: dashboard/templates/cards/feeding_last_method.html:43 #: dashboard/templates/cards/feeding_last_method.html:43
#: dashboard/templates/cards/sleep_day.html:14
#: dashboard/templates/cards/sleep_last.html:17 #: dashboard/templates/cards/sleep_last.html:17
#: dashboard/templates/cards/sleep_naps_day.html:18 #: dashboard/templates/cards/sleep_naps_day.html:18
#: dashboard/templates/cards/sleep_recent.html:20
#: dashboard/templates/cards/sleep_recent.html:52
#: dashboard/templates/cards/tummytime_day.html:14 #: dashboard/templates/cards/tummytime_day.html:14
msgid "None" msgid "None"
msgstr "Nessuno" msgstr "Nessuno"
@ -1621,6 +1621,22 @@ msgstr "{}, {}"
msgid "0 days" msgid "0 days"
msgstr "0 giorni" msgstr "0 giorni"
#: core/templatetags/duration.py:111
#: dashboard/templates/cards/diaperchange_types.html:49
msgid "today"
msgstr "oggi"
#: core/templatetags/duration.py:113
#: dashboard/templates/cards/diaperchange_types.html:51
msgid "yesterday"
msgstr "ieri"
#: core/templatetags/duration.py:116
#, fuzzy
#| msgid "%(key)s days ago"
msgid " days ago"
msgstr "%(key)s giorni fa"
#: core/timeline.py:53 #: core/timeline.py:53
#, python-format #, python-format
msgid "%(child)s started tummy time!" msgid "%(child)s started tummy time!"
@ -1760,14 +1776,6 @@ msgstr "liquida"
msgid "solid" msgid "solid"
msgstr "solida" msgstr "solida"
#: dashboard/templates/cards/diaperchange_types.html:49
msgid "today"
msgstr "oggi"
#: dashboard/templates/cards/diaperchange_types.html:51
msgid "yesterday"
msgstr "ieri"
#: dashboard/templates/cards/diaperchange_types.html:53 #: dashboard/templates/cards/diaperchange_types.html:53
#, python-format #, python-format
msgid "%(key)s days ago" msgid "%(key)s days ago"
@ -1786,6 +1794,7 @@ msgstr[0] "%(count)s Riposi"
msgstr[1] "%(count)s Riposi" msgstr[1] "%(count)s Riposi"
#: dashboard/templates/cards/feeding_day.html:32 #: dashboard/templates/cards/feeding_day.html:32
#: dashboard/templates/cards/sleep_recent.html:32
#, python-format #, python-format
msgid "<div class=\"text-center small text-muted\"> %(since)s </div>" msgid "<div class=\"text-center small text-muted\"> %(since)s </div>"
msgstr "" msgstr ""
@ -1810,15 +1819,6 @@ msgid_plural "%(n)s feedings ago"
msgstr[0] "%(n)s pasti fa" msgstr[0] "%(n)s pasti fa"
msgstr[1] "%(n)s pasti fa" msgstr[1] "%(n)s pasti fa"
#: dashboard/templates/cards/sleep_day.html:6
msgid "Today's Sleep"
msgstr "Riposi di Oggi"
#: dashboard/templates/cards/sleep_day.html:20
#, python-format
msgid "%(count)s sleep entries"
msgstr "%(count)s Riposi"
#: dashboard/templates/cards/sleep_last.html:6 #: dashboard/templates/cards/sleep_last.html:6
msgid "Last Sleep" msgid "Last Sleep"
msgstr "Ultimo Riposo" msgstr "Ultimo Riposo"
@ -1835,6 +1835,20 @@ msgid_plural "%(count)s naps"
msgstr[0] "%(count)s pisolini" msgstr[0] "%(count)s pisolini"
msgstr[1] "%(count)s pisolini" msgstr[1] "%(count)s pisolini"
#: dashboard/templates/cards/sleep_recent.html:6
#, fuzzy
#| msgid "Last Sleep"
msgid "Recent Sleep"
msgstr "Ultimo Riposo"
#: dashboard/templates/cards/sleep_recent.html:25
#, fuzzy, python-format
#| msgid "%(count)s sleep entries"
msgid "%(counter)s sleep"
msgid_plural "%(counter)s sleep"
msgstr[0] "%(count)s Riposi"
msgstr[1] "%(count)s Riposi"
#: dashboard/templates/cards/statistics.html:7 #: dashboard/templates/cards/statistics.html:7
msgid "Statistics" msgid "Statistics"
msgstr "Statistiche" msgstr "Statistiche"
@ -1887,69 +1901,69 @@ msgstr "Azioni Bimbo"
msgid "Reports" msgid "Reports"
msgstr "Report" msgstr "Report"
#: dashboard/templatetags/cards.py:328 #: dashboard/templatetags/cards.py:357
msgid "Average nap duration" msgid "Average nap duration"
msgstr "Durata media riposini" msgstr "Durata media riposini"
#: dashboard/templatetags/cards.py:335 #: dashboard/templatetags/cards.py:364
msgid "Average naps per day" msgid "Average naps per day"
msgstr "Media riposini al giorno" msgstr "Media riposini al giorno"
#: dashboard/templatetags/cards.py:345 #: dashboard/templatetags/cards.py:374
msgid "Average sleep duration" msgid "Average sleep duration"
msgstr "Durata media riposi" msgstr "Durata media riposi"
#: dashboard/templatetags/cards.py:352 #: dashboard/templatetags/cards.py:381
msgid "Average awake duration" msgid "Average awake duration"
msgstr "Durata media bimbo sveglio" msgstr "Durata media bimbo sveglio"
#: dashboard/templatetags/cards.py:362 #: dashboard/templatetags/cards.py:391
msgid "Weight change per week" msgid "Weight change per week"
msgstr "Cambiamento di peso settimanale" msgstr "Cambiamento di peso settimanale"
#: dashboard/templatetags/cards.py:372 #: dashboard/templatetags/cards.py:401
#, fuzzy #, fuzzy
#| msgid "Weight change per week" #| msgid "Weight change per week"
msgid "Height change per week" msgid "Height change per week"
msgstr "Cambiamento di peso settimanale" msgstr "Cambiamento di peso settimanale"
#: dashboard/templatetags/cards.py:382 #: dashboard/templatetags/cards.py:411
#, fuzzy #, fuzzy
#| msgid "Weight change per week" #| msgid "Weight change per week"
msgid "Head circumference change per week" msgid "Head circumference change per week"
msgstr "Cambiamento di peso settimanale" msgstr "Cambiamento di peso settimanale"
#: dashboard/templatetags/cards.py:392 #: dashboard/templatetags/cards.py:421
#, fuzzy #, fuzzy
#| msgid "Weight change per week" #| msgid "Weight change per week"
msgid "BMI change per week" msgid "BMI change per week"
msgstr "Cambiamento di peso settimanale" msgstr "Cambiamento di peso settimanale"
#: dashboard/templatetags/cards.py:410 #: dashboard/templatetags/cards.py:439
#, fuzzy #, fuzzy
#| msgid "Feeding frequency (past 3 days)" #| msgid "Feeding frequency (past 3 days)"
msgid "Diaper change frequency (past 3 days)" msgid "Diaper change frequency (past 3 days)"
msgstr "Frequenza pasti (ultimi 3 giorni)" msgstr "Frequenza pasti (ultimi 3 giorni)"
#: dashboard/templatetags/cards.py:414 #: dashboard/templatetags/cards.py:443
#, fuzzy #, fuzzy
#| msgid "Feeding frequency (past 2 weeks)" #| msgid "Feeding frequency (past 2 weeks)"
msgid "Diaper change frequency (past 2 weeks)" msgid "Diaper change frequency (past 2 weeks)"
msgstr "Frequenza pasti (ultime 2 settimane)" msgstr "Frequenza pasti (ultime 2 settimane)"
#: dashboard/templatetags/cards.py:420 #: dashboard/templatetags/cards.py:449
msgid "Diaper change frequency" msgid "Diaper change frequency"
msgstr "Frequenza cambio pannolino" msgstr "Frequenza cambio pannolino"
#: dashboard/templatetags/cards.py:456 #: dashboard/templatetags/cards.py:485
msgid "Feeding frequency (past 3 days)" msgid "Feeding frequency (past 3 days)"
msgstr "Frequenza pasti (ultimi 3 giorni)" msgstr "Frequenza pasti (ultimi 3 giorni)"
#: dashboard/templatetags/cards.py:460 #: dashboard/templatetags/cards.py:489
msgid "Feeding frequency (past 2 weeks)" msgid "Feeding frequency (past 2 weeks)"
msgstr "Frequenza pasti (ultime 2 settimane)" msgstr "Frequenza pasti (ultime 2 settimane)"
#: dashboard/templatetags/cards.py:466 #: dashboard/templatetags/cards.py:495
msgid "Feeding frequency" msgid "Feeding frequency"
msgstr "Frequenza pasti" msgstr "Frequenza pasti"
@ -2031,13 +2045,13 @@ msgstr ""
msgid "<b>Height</b>" msgid "<b>Height</b>"
msgstr "<b>Peso</b>" msgstr "<b>Peso</b>"
#: reports/graphs/pumping_amounts.py:57 #: reports/graphs/pumping_amounts.py:59
#, fuzzy #, fuzzy
#| msgid "<b>Total Feeding Amounts</b>" #| msgid "<b>Total Feeding Amounts</b>"
msgid "<b>Total Pumping Amount</b>" msgid "<b>Total Pumping Amount</b>"
msgstr "<b>Totale quantità di cibo</b>" msgstr "<b>Totale quantità di cibo</b>"
#: reports/graphs/pumping_amounts.py:60 #: reports/graphs/pumping_amounts.py:62
#, fuzzy #, fuzzy
#| msgid "Feeding Amounts" #| msgid "Feeding Amounts"
msgid "Pumping Amount" msgid "Pumping Amount"
@ -2154,3 +2168,10 @@ msgstr "Durata totale Tummy Time"
#: reports/templates/reports/tummytime_duration.html:8 #: reports/templates/reports/tummytime_duration.html:8
msgid "Total Tummy Time Durations" msgid "Total Tummy Time Durations"
msgstr "Durata totale Tummy Time" msgstr "Durata totale Tummy Time"
#~ msgid "Today's Sleep"
#~ msgstr "Riposi di Oggi"
#, python-format
#~ msgid "%(count)s sleep entries"
#~ msgstr "%(count)s Riposi"

Binary file not shown.

View File

@ -2,7 +2,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Baby Buddy\n" "Project-Id-Version: Baby Buddy\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-06-05 13:25+0000\n" "POT-Creation-Date: 2022-06-17 22:25+0000\n"
"Language: nl\n" "Language: nl\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -11,12 +11,12 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: babybuddy/admin.py:12 babybuddy/admin.py:13 #: babybuddy/admin.py:12 babybuddy/admin.py:13
#: babybuddy/templates/babybuddy/nav-dropdown.html:347 #: babybuddy/templates/babybuddy/nav-dropdown.html:327
#: babybuddy/templates/babybuddy/user_settings_form.html:8 #: babybuddy/templates/babybuddy/user_settings_form.html:8
msgid "Settings" msgid "Settings"
msgstr "Instellingen" msgstr "Instellingen"
#: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:111 #: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:92
#: babybuddy/templates/babybuddy/user_settings_form.html:61 #: babybuddy/templates/babybuddy/user_settings_form.html:61
#: dashboard/templates/dashboard/child.html:4 #: dashboard/templates/dashboard/child.html:4
#: dashboard/templates/dashboard/child.html:9 #: dashboard/templates/dashboard/child.html:9
@ -185,7 +185,7 @@ msgstr "Turks"
#: babybuddy/templates/admin/base_site.html:4 #: babybuddy/templates/admin/base_site.html:4
#: babybuddy/templates/admin/base_site.html:7 #: babybuddy/templates/admin/base_site.html:7
#: babybuddy/templates/babybuddy/nav-dropdown.html:359 #: babybuddy/templates/babybuddy/nav-dropdown.html:339
msgid "Database Admin" msgid "Database Admin"
msgstr "Database admin" msgstr "Database admin"
@ -234,19 +234,19 @@ msgid "Diaper Change"
msgstr "Luierverschoning" msgstr "Luierverschoning"
#: babybuddy/templates/babybuddy/nav-dropdown.html:57 #: babybuddy/templates/babybuddy/nav-dropdown.html:57
#: babybuddy/templates/babybuddy/nav-dropdown.html:281 core/models.py:312 #: babybuddy/templates/babybuddy/nav-dropdown.html:262 core/models.py:312
#: core/models.py:316 core/templates/core/timer_detail.html:43 #: core/models.py:316 core/templates/core/timer_detail.html:43
msgid "Feeding" msgid "Feeding"
msgstr "Voeding" msgstr "Voeding"
#: babybuddy/templates/babybuddy/nav-dropdown.html:63 #: babybuddy/templates/babybuddy/nav-dropdown.html:63
#: babybuddy/templates/babybuddy/nav-dropdown.html:157 core/models.py:396 #: babybuddy/templates/babybuddy/nav-dropdown.html:138 core/models.py:396
#: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29 #: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29
msgid "Note" msgid "Note"
msgstr "Notitie" msgstr "Notitie"
#: babybuddy/templates/babybuddy/nav-dropdown.html:69 #: babybuddy/templates/babybuddy/nav-dropdown.html:69
#: babybuddy/templates/babybuddy/nav-dropdown.html:288 #: babybuddy/templates/babybuddy/nav-dropdown.html:283
#: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467 #: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467
#: core/models.py:468 core/models.py:471 #: core/models.py:468 core/models.py:471
#: core/templates/core/sleep_confirm_delete.html:7 #: core/templates/core/sleep_confirm_delete.html:7
@ -257,19 +257,7 @@ msgid "Sleep"
msgstr "Slaap" msgstr "Slaap"
#: babybuddy/templates/babybuddy/nav-dropdown.html:75 #: babybuddy/templates/babybuddy/nav-dropdown.html:75
#: babybuddy/templates/babybuddy/nav-dropdown.html:179 core/models.py:506 #: babybuddy/templates/babybuddy/nav-dropdown.html:296
#: core/models.py:519 core/models.py:520 core/models.py:523
#: core/templates/core/temperature_confirm_delete.html:7
#: core/templates/core/temperature_form.html:13
#: core/templates/core/temperature_list.html:4
#: core/templates/core/temperature_list.html:7
#: core/templates/core/temperature_list.html:12
#: core/templates/core/temperature_list.html:29
msgid "Temperature"
msgstr "Temperatuur"
#: babybuddy/templates/babybuddy/nav-dropdown.html:81
#: babybuddy/templates/babybuddy/nav-dropdown.html:301
#: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647 #: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647
#: core/models.py:648 core/models.py:651 #: core/models.py:648 core/models.py:651
#: core/templates/core/timer_detail.html:59 #: core/templates/core/timer_detail.html:59
@ -281,44 +269,15 @@ msgstr "Temperatuur"
msgid "Tummy Time" msgid "Tummy Time"
msgstr "Buikliggen" msgstr "Buikliggen"
#: babybuddy/templates/babybuddy/nav-dropdown.html:87 #: babybuddy/templates/babybuddy/nav-dropdown.html:99
#: babybuddy/templates/babybuddy/nav-dropdown.html:193 core/models.py:673
#: core/models.py:685 core/models.py:686 core/models.py:689
#: core/templates/core/weight_confirm_delete.html:7
#: core/templates/core/weight_form.html:13
#: core/templates/core/weight_list.html:4
#: core/templates/core/weight_list.html:7
#: core/templates/core/weight_list.html:12
#: core/templates/core/weight_list.html:29 reports/graphs/weight_change.py:19
#: reports/graphs/weight_change.py:30
#: reports/templates/reports/report_list.html:22
#: reports/templates/reports/weight_change.html:4
#: reports/templates/reports/weight_change.html:8
msgid "Weight"
msgstr "Gewicht"
#: babybuddy/templates/babybuddy/nav-dropdown.html:93
#: babybuddy/templates/babybuddy/nav-dropdown.html:316 core/models.py:437
#: core/models.py:438 core/models.py:441
#: core/templates/core/pumping_confirm_delete.html:7
#: core/templates/core/pumping_form.html:13
#: core/templates/core/pumping_list.html:4
#: core/templates/core/pumping_list.html:7
#: core/templates/core/pumping_list.html:12
#: reports/templates/reports/pumping_amounts.html:4
#: reports/templates/reports/pumping_amounts.html:8
msgid "Pumping"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:118
#: core/templates/timeline/timeline.html:4 #: core/templates/timeline/timeline.html:4
#: core/templates/timeline/timeline.html:7 #: core/templates/timeline/timeline.html:7
#: dashboard/templates/dashboard/child_button_group.html:9 #: dashboard/templates/dashboard/child_button_group.html:9
msgid "Timeline" msgid "Timeline"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:129 #: babybuddy/templates/babybuddy/nav-dropdown.html:110
#: babybuddy/templates/babybuddy/nav-dropdown.html:137 core/models.py:188 #: babybuddy/templates/babybuddy/nav-dropdown.html:118 core/models.py:188
#: core/templates/core/child_confirm_delete.html:7 #: core/templates/core/child_confirm_delete.html:7
#: core/templates/core/child_detail.html:7 #: core/templates/core/child_detail.html:7
#: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4 #: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4
@ -328,7 +287,7 @@ msgstr ""
msgid "Children" msgid "Children"
msgstr "Kinderen" msgstr "Kinderen"
#: babybuddy/templates/babybuddy/nav-dropdown.html:143 core/models.py:137 #: babybuddy/templates/babybuddy/nav-dropdown.html:124 core/models.py:137
#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335 #: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335
#: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450 #: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450
#: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671 #: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671
@ -347,7 +306,7 @@ msgstr "Kinderen"
msgid "Child" msgid "Child"
msgstr "Kind" msgstr "Kind"
#: babybuddy/templates/babybuddy/nav-dropdown.html:151 core/models.py:143 #: babybuddy/templates/babybuddy/nav-dropdown.html:132 core/models.py:143
#: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373 #: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373
#: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511 #: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511
#: core/models.py:677 core/templates/core/note_confirm_delete.html:7 #: core/models.py:677 core/templates/core/note_confirm_delete.html:7
@ -356,38 +315,26 @@ msgstr "Kind"
msgid "Notes" msgid "Notes"
msgstr "Notities" msgstr "Notities"
#: babybuddy/templates/babybuddy/nav-dropdown.html:171 #: babybuddy/templates/babybuddy/nav-dropdown.html:152
msgid "Measurements" msgid "Measurements"
msgstr "Metingen" msgstr "Metingen"
#: babybuddy/templates/babybuddy/nav-dropdown.html:185 #: babybuddy/templates/babybuddy/nav-dropdown.html:160 core/models.py:139
msgid "Temperature reading" #: core/models.py:151 core/models.py:152 core/models.py:155
msgstr "Temperatuur meting" #: core/templates/core/bmi_confirm_delete.html:7
#: core/templates/core/bmi_form.html:13 core/templates/core/bmi_list.html:4
#: core/templates/core/bmi_list.html:7 core/templates/core/bmi_list.html:12
#: core/templates/core/bmi_list.html:29 reports/graphs/bmi_change.py:19
#: reports/graphs/bmi_change.py:30 reports/templates/reports/bmi_change.html:4
#: reports/templates/reports/bmi_change.html:8
msgid "BMI"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:199 #: babybuddy/templates/babybuddy/nav-dropdown.html:166
msgid "Weight entry" msgid "BMI entry"
msgstr "Gewicht ingave" msgstr "MBI ingave"
#: babybuddy/templates/babybuddy/nav-dropdown.html:207 core/models.py:369 #: babybuddy/templates/babybuddy/nav-dropdown.html:174 core/models.py:338
#: core/models.py:381 core/models.py:382 core/models.py:385
#: core/templates/core/height_confirm_delete.html:7
#: core/templates/core/height_form.html:13
#: core/templates/core/height_list.html:4
#: core/templates/core/height_list.html:7
#: core/templates/core/height_list.html:12
#: core/templates/core/height_list.html:29 reports/graphs/height_change.py:19
#: reports/graphs/height_change.py:30
#: reports/templates/reports/height_change.html:4
#: reports/templates/reports/height_change.html:8
#: reports/templates/reports/report_list.html:17
msgid "Height"
msgstr "Lengte"
#: babybuddy/templates/babybuddy/nav-dropdown.html:213
msgid "Height entry"
msgstr "Lengte ingave"
#: babybuddy/templates/babybuddy/nav-dropdown.html:221 core/models.py:338
#: core/models.py:351 core/models.py:352 core/models.py:355 #: core/models.py:351 core/models.py:352 core/models.py:355
#: core/templates/core/head_circumference_confirm_delete.html:7 #: core/templates/core/head_circumference_confirm_delete.html:7
#: core/templates/core/head_circumference_form.html:13 #: core/templates/core/head_circumference_form.html:13
@ -403,39 +350,77 @@ msgstr "Lengte ingave"
msgid "Head Circumference" msgid "Head Circumference"
msgstr "Hoofd omtrek" msgstr "Hoofd omtrek"
#: babybuddy/templates/babybuddy/nav-dropdown.html:227 #: babybuddy/templates/babybuddy/nav-dropdown.html:180
msgid "Head Circumference entry" msgid "Head Circumference entry"
msgstr "Hoofd omtrek ingave" msgstr "Hoofd omtrek ingave"
#: babybuddy/templates/babybuddy/nav-dropdown.html:235 core/models.py:139 #: babybuddy/templates/babybuddy/nav-dropdown.html:188 core/models.py:369
#: core/models.py:151 core/models.py:152 core/models.py:155 #: core/models.py:381 core/models.py:382 core/models.py:385
#: core/templates/core/bmi_confirm_delete.html:7 #: core/templates/core/height_confirm_delete.html:7
#: core/templates/core/bmi_form.html:13 core/templates/core/bmi_list.html:4 #: core/templates/core/height_form.html:13
#: core/templates/core/bmi_list.html:7 core/templates/core/bmi_list.html:12 #: core/templates/core/height_list.html:4
#: core/templates/core/bmi_list.html:29 reports/graphs/bmi_change.py:19 #: core/templates/core/height_list.html:7
#: reports/graphs/bmi_change.py:30 reports/templates/reports/bmi_change.html:4 #: core/templates/core/height_list.html:12
#: reports/templates/reports/bmi_change.html:8 #: core/templates/core/height_list.html:29 reports/graphs/height_change.py:19
msgid "BMI" #: reports/graphs/height_change.py:30
msgstr "" #: reports/templates/reports/height_change.html:4
#: reports/templates/reports/height_change.html:8
#: reports/templates/reports/report_list.html:17
msgid "Height"
msgstr "Lengte"
#: babybuddy/templates/babybuddy/nav-dropdown.html:241 #: babybuddy/templates/babybuddy/nav-dropdown.html:194
msgid "BMI entry" msgid "Height entry"
msgstr "MBI ingave" msgstr "Lengte ingave"
#: babybuddy/templates/babybuddy/nav-dropdown.html:255 #: babybuddy/templates/babybuddy/nav-dropdown.html:202 core/models.py:506
#: core/models.py:519 core/models.py:520 core/models.py:523
#: core/templates/core/temperature_confirm_delete.html:7
#: core/templates/core/temperature_form.html:13
#: core/templates/core/temperature_list.html:4
#: core/templates/core/temperature_list.html:7
#: core/templates/core/temperature_list.html:12
#: core/templates/core/temperature_list.html:29
msgid "Temperature"
msgstr "Temperatuur"
#: babybuddy/templates/babybuddy/nav-dropdown.html:208
msgid "Temperature reading"
msgstr "Temperatuur meting"
#: babybuddy/templates/babybuddy/nav-dropdown.html:216 core/models.py:673
#: core/models.py:685 core/models.py:686 core/models.py:689
#: core/templates/core/weight_confirm_delete.html:7
#: core/templates/core/weight_form.html:13
#: core/templates/core/weight_list.html:4
#: core/templates/core/weight_list.html:7
#: core/templates/core/weight_list.html:12
#: core/templates/core/weight_list.html:29 reports/graphs/weight_change.py:19
#: reports/graphs/weight_change.py:30
#: reports/templates/reports/report_list.html:22
#: reports/templates/reports/weight_change.html:4
#: reports/templates/reports/weight_change.html:8
msgid "Weight"
msgstr "Gewicht"
#: babybuddy/templates/babybuddy/nav-dropdown.html:222
msgid "Weight entry"
msgstr "Gewicht ingave"
#: babybuddy/templates/babybuddy/nav-dropdown.html:236
msgid "Activities" msgid "Activities"
msgstr "Activiteiten" msgstr "Activiteiten"
#: babybuddy/templates/babybuddy/nav-dropdown.html:262 #: babybuddy/templates/babybuddy/nav-dropdown.html:243
#: reports/graphs/diaperchange_lifetimes.py:27 #: reports/graphs/diaperchange_lifetimes.py:27
msgid "Changes" msgid "Changes"
msgstr "Verschoningen" msgstr "Verschoningen"
#: babybuddy/templates/babybuddy/nav-dropdown.html:268 #: babybuddy/templates/babybuddy/nav-dropdown.html:249
msgid "Change" msgid "Change"
msgstr "Verschoning" msgstr "Verschoning"
#: babybuddy/templates/babybuddy/nav-dropdown.html:275 #: babybuddy/templates/babybuddy/nav-dropdown.html:256
#: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313 #: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313
#: core/templates/core/feeding_confirm_delete.html:7 #: core/templates/core/feeding_confirm_delete.html:7
#: core/templates/core/feeding_form.html:13 #: core/templates/core/feeding_form.html:13
@ -445,21 +430,33 @@ msgstr "Verschoning"
msgid "Feedings" msgid "Feedings"
msgstr "Voedingen" msgstr "Voedingen"
#: babybuddy/templates/babybuddy/nav-dropdown.html:294 #: babybuddy/templates/babybuddy/nav-dropdown.html:270 core/models.py:437
msgid "Sleep entry" #: core/models.py:438 core/models.py:441
msgstr "Slaap ingave" #: core/templates/core/pumping_confirm_delete.html:7
#: core/templates/core/pumping_form.html:13
#: core/templates/core/pumping_list.html:4
#: core/templates/core/pumping_list.html:7
#: core/templates/core/pumping_list.html:12
#: reports/templates/reports/pumping_amounts.html:4
#: reports/templates/reports/pumping_amounts.html:8
msgid "Pumping"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:307 #: babybuddy/templates/babybuddy/nav-dropdown.html:276
msgid "Tummy Time entry"
msgstr "Buikliggen ingave"
#: babybuddy/templates/babybuddy/nav-dropdown.html:322
#, fuzzy #, fuzzy
#| msgid "Weight entry" #| msgid "Weight entry"
msgid "Pumping entry" msgid "Pumping entry"
msgstr "Gewicht ingave" msgstr "Gewicht ingave"
#: babybuddy/templates/babybuddy/nav-dropdown.html:346 #: babybuddy/templates/babybuddy/nav-dropdown.html:289
msgid "Sleep entry"
msgstr "Slaap ingave"
#: babybuddy/templates/babybuddy/nav-dropdown.html:302
msgid "Tummy Time entry"
msgstr "Buikliggen ingave"
#: babybuddy/templates/babybuddy/nav-dropdown.html:326
#: babybuddy/templates/babybuddy/user_list.html:17 #: babybuddy/templates/babybuddy/user_list.html:17
#: babybuddy/templates/babybuddy/user_password_form.html:7 #: babybuddy/templates/babybuddy/user_password_form.html:7
#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556 #: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556
@ -467,23 +464,23 @@ msgstr "Gewicht ingave"
msgid "User" msgid "User"
msgstr "Gebruiker" msgstr "Gebruiker"
#: babybuddy/templates/babybuddy/nav-dropdown.html:348 #: babybuddy/templates/babybuddy/nav-dropdown.html:328
msgid "Password" msgid "Password"
msgstr "Wachtwoord" msgstr "Wachtwoord"
#: babybuddy/templates/babybuddy/nav-dropdown.html:352 #: babybuddy/templates/babybuddy/nav-dropdown.html:332
msgid "Logout" msgid "Logout"
msgstr "Uitloggen" msgstr "Uitloggen"
#: babybuddy/templates/babybuddy/nav-dropdown.html:355 #: babybuddy/templates/babybuddy/nav-dropdown.html:335
msgid "Site" msgid "Site"
msgstr "Site" msgstr "Site"
#: babybuddy/templates/babybuddy/nav-dropdown.html:356 #: babybuddy/templates/babybuddy/nav-dropdown.html:336
msgid "API Browser" msgid "API Browser"
msgstr "API browser" msgstr "API browser"
#: babybuddy/templates/babybuddy/nav-dropdown.html:358 #: babybuddy/templates/babybuddy/nav-dropdown.html:338
#: babybuddy/templates/babybuddy/user_confirm_delete.html:7 #: babybuddy/templates/babybuddy/user_confirm_delete.html:7
#: babybuddy/templates/babybuddy/user_form.html:13 #: babybuddy/templates/babybuddy/user_form.html:13
#: babybuddy/templates/babybuddy/user_list.html:4 #: babybuddy/templates/babybuddy/user_list.html:4
@ -491,15 +488,15 @@ msgstr "API browser"
msgid "Users" msgid "Users"
msgstr "Gebruikers" msgstr "Gebruikers"
#: babybuddy/templates/babybuddy/nav-dropdown.html:361 #: babybuddy/templates/babybuddy/nav-dropdown.html:341
msgid "Support" msgid "Support"
msgstr "Ondersteuning" msgstr "Ondersteuning"
#: babybuddy/templates/babybuddy/nav-dropdown.html:363 #: babybuddy/templates/babybuddy/nav-dropdown.html:343
msgid "Source Code" msgid "Source Code"
msgstr "Broncode" msgstr "Broncode"
#: babybuddy/templates/babybuddy/nav-dropdown.html:365 #: babybuddy/templates/babybuddy/nav-dropdown.html:345
msgid "Chat / Support" msgid "Chat / Support"
msgstr "Chat / Hulp" msgstr "Chat / Hulp"
@ -510,6 +507,7 @@ msgstr "Chat / Hulp"
#: core/templates/timeline/_timeline.html:73 #: core/templates/timeline/_timeline.html:73
#: dashboard/templates/cards/feeding_day.html:43 #: dashboard/templates/cards/feeding_day.html:43
#: dashboard/templates/cards/feeding_last_method.html:34 #: dashboard/templates/cards/feeding_last_method.html:34
#: dashboard/templates/cards/sleep_recent.html:43
#: dashboard/templates/cards/statistics.html:34 #: dashboard/templates/cards/statistics.html:34
msgid "Previous" msgid "Previous"
msgstr "Vorige" msgstr "Vorige"
@ -521,6 +519,7 @@ msgstr "Vorige"
#: core/templates/timeline/_timeline.html:80 #: core/templates/timeline/_timeline.html:80
#: dashboard/templates/cards/feeding_day.html:47 #: dashboard/templates/cards/feeding_day.html:47
#: dashboard/templates/cards/feeding_last_method.html:38 #: dashboard/templates/cards/feeding_last_method.html:38
#: dashboard/templates/cards/sleep_recent.html:47
#: dashboard/templates/cards/statistics.html:38 #: dashboard/templates/cards/statistics.html:38
msgid "Next" msgid "Next"
msgstr "Volgende" msgstr "Volgende"
@ -994,7 +993,7 @@ msgstr ""
#: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70 #: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70
#: reports/graphs/feeding_duration.py:56 #: reports/graphs/feeding_duration.py:56
#: reports/graphs/head_circumference_change.py:28 #: reports/graphs/head_circumference_change.py:28
#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:58 #: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60
#: reports/graphs/sleep_pattern.py:151 reports/graphs/sleep_totals.py:59 #: reports/graphs/sleep_pattern.py:151 reports/graphs/sleep_totals.py:59
#: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28 #: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28
msgid "Date" msgid "Date"
@ -1174,7 +1173,7 @@ msgstr ""
#: core/templates/core/bmi_list.html:70 #: core/templates/core/bmi_list.html:70
#, fuzzy #, fuzzy
#| msgid "No timer entries found." #| msgid "No timer entries found."
msgid "No bmi entries found." msgid "No BMI entries found."
msgstr "Geen timer gegevens gevonden." msgstr "Geen timer gegevens gevonden."
#: core/templates/core/child_confirm_delete.html:4 #: core/templates/core/child_confirm_delete.html:4
@ -1498,9 +1497,10 @@ msgstr "Actieve timers"
#: dashboard/templates/cards/feeding_day.html:52 #: dashboard/templates/cards/feeding_day.html:52
#: dashboard/templates/cards/feeding_last.html:17 #: dashboard/templates/cards/feeding_last.html:17
#: dashboard/templates/cards/feeding_last_method.html:43 #: dashboard/templates/cards/feeding_last_method.html:43
#: dashboard/templates/cards/sleep_day.html:14
#: dashboard/templates/cards/sleep_last.html:17 #: dashboard/templates/cards/sleep_last.html:17
#: dashboard/templates/cards/sleep_naps_day.html:18 #: dashboard/templates/cards/sleep_naps_day.html:18
#: dashboard/templates/cards/sleep_recent.html:20
#: dashboard/templates/cards/sleep_recent.html:52
#: dashboard/templates/cards/tummytime_day.html:14 #: dashboard/templates/cards/tummytime_day.html:14
msgid "None" msgid "None"
msgstr "Geen" msgstr "Geen"
@ -1621,6 +1621,22 @@ msgstr ""
msgid "0 days" msgid "0 days"
msgstr "0 dagen" msgstr "0 dagen"
#: core/templatetags/duration.py:111
#: dashboard/templates/cards/diaperchange_types.html:49
msgid "today"
msgstr "vandaag"
#: core/templatetags/duration.py:113
#: dashboard/templates/cards/diaperchange_types.html:51
msgid "yesterday"
msgstr "gisteren"
#: core/templatetags/duration.py:116
#, fuzzy
#| msgid "%(key)s days ago"
msgid " days ago"
msgstr "%(key)s dagen geleden"
#: core/timeline.py:53 #: core/timeline.py:53
#, python-format #, python-format
msgid "%(child)s started tummy time!" msgid "%(child)s started tummy time!"
@ -1760,14 +1776,6 @@ msgstr "nat"
msgid "solid" msgid "solid"
msgstr "vast" msgstr "vast"
#: dashboard/templates/cards/diaperchange_types.html:49
msgid "today"
msgstr "vandaag"
#: dashboard/templates/cards/diaperchange_types.html:51
msgid "yesterday"
msgstr "gisteren"
#: dashboard/templates/cards/diaperchange_types.html:53 #: dashboard/templates/cards/diaperchange_types.html:53
#, python-format #, python-format
msgid "%(key)s days ago" msgid "%(key)s days ago"
@ -1786,6 +1794,7 @@ msgstr[0] "%(count)s slaap gegevens"
msgstr[1] "%(count)s slaap gegevens" msgstr[1] "%(count)s slaap gegevens"
#: dashboard/templates/cards/feeding_day.html:32 #: dashboard/templates/cards/feeding_day.html:32
#: dashboard/templates/cards/sleep_recent.html:32
#, python-format #, python-format
msgid "<div class=\"text-center small text-muted\"> %(since)s </div>" msgid "<div class=\"text-center small text-muted\"> %(since)s </div>"
msgstr "" msgstr ""
@ -1810,15 +1819,6 @@ msgid_plural "%(n)s feedings ago"
msgstr[0] "%(n)s maaltijd%(plural)s geleden" msgstr[0] "%(n)s maaltijd%(plural)s geleden"
msgstr[1] "%(n)s maaltijd%(plural)s geleden" msgstr[1] "%(n)s maaltijd%(plural)s geleden"
#: dashboard/templates/cards/sleep_day.html:6
msgid "Today's Sleep"
msgstr "Slaap vandaag"
#: dashboard/templates/cards/sleep_day.html:20
#, python-format
msgid "%(count)s sleep entries"
msgstr "%(count)s slaap gegevens"
#: dashboard/templates/cards/sleep_last.html:6 #: dashboard/templates/cards/sleep_last.html:6
msgid "Last Sleep" msgid "Last Sleep"
msgstr "Laatste slaap" msgstr "Laatste slaap"
@ -1835,6 +1835,20 @@ msgid_plural "%(count)s naps"
msgstr[0] "%(count)s dutje%(plural)s" msgstr[0] "%(count)s dutje%(plural)s"
msgstr[1] "%(count)s dutje%(plural)s" msgstr[1] "%(count)s dutje%(plural)s"
#: dashboard/templates/cards/sleep_recent.html:6
#, fuzzy
#| msgid "Last Sleep"
msgid "Recent Sleep"
msgstr "Laatste slaap"
#: dashboard/templates/cards/sleep_recent.html:25
#, fuzzy, python-format
#| msgid "%(count)s sleep entries"
msgid "%(counter)s sleep"
msgid_plural "%(counter)s sleep"
msgstr[0] "%(count)s slaap gegevens"
msgstr[1] "%(count)s slaap gegevens"
#: dashboard/templates/cards/statistics.html:7 #: dashboard/templates/cards/statistics.html:7
msgid "Statistics" msgid "Statistics"
msgstr "Statistieken" msgstr "Statistieken"
@ -1887,69 +1901,69 @@ msgstr "Kind acties"
msgid "Reports" msgid "Reports"
msgstr "Rapporten" msgstr "Rapporten"
#: dashboard/templatetags/cards.py:328 #: dashboard/templatetags/cards.py:357
msgid "Average nap duration" msgid "Average nap duration"
msgstr "Gemiddelde duur dutjes" msgstr "Gemiddelde duur dutjes"
#: dashboard/templatetags/cards.py:335 #: dashboard/templatetags/cards.py:364
msgid "Average naps per day" msgid "Average naps per day"
msgstr "Gemiddelde dutjes per dag" msgstr "Gemiddelde dutjes per dag"
#: dashboard/templatetags/cards.py:345 #: dashboard/templatetags/cards.py:374
msgid "Average sleep duration" msgid "Average sleep duration"
msgstr "Gemiddelde slaap duur" msgstr "Gemiddelde slaap duur"
#: dashboard/templatetags/cards.py:352 #: dashboard/templatetags/cards.py:381
msgid "Average awake duration" msgid "Average awake duration"
msgstr "Gemiddeld wakker duur" msgstr "Gemiddeld wakker duur"
#: dashboard/templatetags/cards.py:362 #: dashboard/templatetags/cards.py:391
msgid "Weight change per week" msgid "Weight change per week"
msgstr "Gewichtsverandering per week" msgstr "Gewichtsverandering per week"
#: dashboard/templatetags/cards.py:372 #: dashboard/templatetags/cards.py:401
#, fuzzy #, fuzzy
#| msgid "Weight change per week" #| msgid "Weight change per week"
msgid "Height change per week" msgid "Height change per week"
msgstr "Gewichtsverandering per week" msgstr "Gewichtsverandering per week"
#: dashboard/templatetags/cards.py:382 #: dashboard/templatetags/cards.py:411
#, fuzzy #, fuzzy
#| msgid "Head Circumference entry" #| msgid "Head Circumference entry"
msgid "Head circumference change per week" msgid "Head circumference change per week"
msgstr "Hoofd omtrek ingave" msgstr "Hoofd omtrek ingave"
#: dashboard/templatetags/cards.py:392 #: dashboard/templatetags/cards.py:421
#, fuzzy #, fuzzy
#| msgid "Weight change per week" #| msgid "Weight change per week"
msgid "BMI change per week" msgid "BMI change per week"
msgstr "Gewichtsverandering per week" msgstr "Gewichtsverandering per week"
#: dashboard/templatetags/cards.py:410 #: dashboard/templatetags/cards.py:439
#, fuzzy #, fuzzy
#| msgid "Feeding frequency (past 3 days)" #| msgid "Feeding frequency (past 3 days)"
msgid "Diaper change frequency (past 3 days)" msgid "Diaper change frequency (past 3 days)"
msgstr "Voeding frequenties (afgelopen 3 dagen)" msgstr "Voeding frequenties (afgelopen 3 dagen)"
#: dashboard/templatetags/cards.py:414 #: dashboard/templatetags/cards.py:443
#, fuzzy #, fuzzy
#| msgid "Feeding frequency (past 2 weeks)" #| msgid "Feeding frequency (past 2 weeks)"
msgid "Diaper change frequency (past 2 weeks)" msgid "Diaper change frequency (past 2 weeks)"
msgstr "Voeding frequenties (afgelopen 2 weken)" msgstr "Voeding frequenties (afgelopen 2 weken)"
#: dashboard/templatetags/cards.py:420 #: dashboard/templatetags/cards.py:449
msgid "Diaper change frequency" msgid "Diaper change frequency"
msgstr "Luierverschoning frequentie" msgstr "Luierverschoning frequentie"
#: dashboard/templatetags/cards.py:456 #: dashboard/templatetags/cards.py:485
msgid "Feeding frequency (past 3 days)" msgid "Feeding frequency (past 3 days)"
msgstr "Voeding frequenties (afgelopen 3 dagen)" msgstr "Voeding frequenties (afgelopen 3 dagen)"
#: dashboard/templatetags/cards.py:460 #: dashboard/templatetags/cards.py:489
msgid "Feeding frequency (past 2 weeks)" msgid "Feeding frequency (past 2 weeks)"
msgstr "Voeding frequenties (afgelopen 2 weken)" msgstr "Voeding frequenties (afgelopen 2 weken)"
#: dashboard/templatetags/cards.py:466 #: dashboard/templatetags/cards.py:495
msgid "Feeding frequency" msgid "Feeding frequency"
msgstr "Eten geven frequentie" msgstr "Eten geven frequentie"
@ -2033,13 +2047,13 @@ msgstr "Hoofd omtrek"
msgid "<b>Height</b>" msgid "<b>Height</b>"
msgstr "<b>Gewichts</b>" msgstr "<b>Gewichts</b>"
#: reports/graphs/pumping_amounts.py:57 #: reports/graphs/pumping_amounts.py:59
#, fuzzy #, fuzzy
#| msgid "<b>Total Feeding Amounts</b>" #| msgid "<b>Total Feeding Amounts</b>"
msgid "<b>Total Pumping Amount</b>" msgid "<b>Total Pumping Amount</b>"
msgstr "<b>Totaal hoeveelheid voeding</b>" msgstr "<b>Totaal hoeveelheid voeding</b>"
#: reports/graphs/pumping_amounts.py:60 #: reports/graphs/pumping_amounts.py:62
#, fuzzy #, fuzzy
#| msgid "Feeding Amounts" #| msgid "Feeding Amounts"
msgid "Pumping Amount" msgid "Pumping Amount"
@ -2156,3 +2170,10 @@ msgstr "Duur Buikliggen (Som)"
#: reports/templates/reports/tummytime_duration.html:8 #: reports/templates/reports/tummytime_duration.html:8
msgid "Total Tummy Time Durations" msgid "Total Tummy Time Durations"
msgstr "Totaal Buikligggen Duur" msgstr "Totaal Buikligggen Duur"
#~ msgid "Today's Sleep"
#~ msgstr "Slaap vandaag"
#, python-format
#~ msgid "%(count)s sleep entries"
#~ msgstr "%(count)s slaap gegevens"

Binary file not shown.

View File

@ -2,7 +2,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: test\n" "Project-Id-Version: test\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-06-05 13:25+0000\n" "POT-Creation-Date: 2022-06-17 22:25+0000\n"
"Language: pl\n" "Language: pl\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -12,12 +12,12 @@ msgstr ""
"|| n%100>=20) ? 1 : 2);\n" "|| n%100>=20) ? 1 : 2);\n"
#: babybuddy/admin.py:12 babybuddy/admin.py:13 #: babybuddy/admin.py:12 babybuddy/admin.py:13
#: babybuddy/templates/babybuddy/nav-dropdown.html:347 #: babybuddy/templates/babybuddy/nav-dropdown.html:327
#: babybuddy/templates/babybuddy/user_settings_form.html:8 #: babybuddy/templates/babybuddy/user_settings_form.html:8
msgid "Settings" msgid "Settings"
msgstr "Ustawienia" msgstr "Ustawienia"
#: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:111 #: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:92
#: babybuddy/templates/babybuddy/user_settings_form.html:61 #: babybuddy/templates/babybuddy/user_settings_form.html:61
#: dashboard/templates/dashboard/child.html:4 #: dashboard/templates/dashboard/child.html:4
#: dashboard/templates/dashboard/child.html:9 #: dashboard/templates/dashboard/child.html:9
@ -184,7 +184,7 @@ msgstr "Turecki"
#: babybuddy/templates/admin/base_site.html:4 #: babybuddy/templates/admin/base_site.html:4
#: babybuddy/templates/admin/base_site.html:7 #: babybuddy/templates/admin/base_site.html:7
#: babybuddy/templates/babybuddy/nav-dropdown.html:359 #: babybuddy/templates/babybuddy/nav-dropdown.html:339
msgid "Database Admin" msgid "Database Admin"
msgstr "Administrator bazy danych" msgstr "Administrator bazy danych"
@ -233,19 +233,19 @@ msgid "Diaper Change"
msgstr "Zmiana pieluchy" msgstr "Zmiana pieluchy"
#: babybuddy/templates/babybuddy/nav-dropdown.html:57 #: babybuddy/templates/babybuddy/nav-dropdown.html:57
#: babybuddy/templates/babybuddy/nav-dropdown.html:281 core/models.py:312 #: babybuddy/templates/babybuddy/nav-dropdown.html:262 core/models.py:312
#: core/models.py:316 core/templates/core/timer_detail.html:43 #: core/models.py:316 core/templates/core/timer_detail.html:43
msgid "Feeding" msgid "Feeding"
msgstr "Karmienie" msgstr "Karmienie"
#: babybuddy/templates/babybuddy/nav-dropdown.html:63 #: babybuddy/templates/babybuddy/nav-dropdown.html:63
#: babybuddy/templates/babybuddy/nav-dropdown.html:157 core/models.py:396 #: babybuddy/templates/babybuddy/nav-dropdown.html:138 core/models.py:396
#: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29 #: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29
msgid "Note" msgid "Note"
msgstr "Notatka" msgstr "Notatka"
#: babybuddy/templates/babybuddy/nav-dropdown.html:69 #: babybuddy/templates/babybuddy/nav-dropdown.html:69
#: babybuddy/templates/babybuddy/nav-dropdown.html:288 #: babybuddy/templates/babybuddy/nav-dropdown.html:283
#: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467 #: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467
#: core/models.py:468 core/models.py:471 #: core/models.py:468 core/models.py:471
#: core/templates/core/sleep_confirm_delete.html:7 #: core/templates/core/sleep_confirm_delete.html:7
@ -256,19 +256,7 @@ msgid "Sleep"
msgstr "Spać" msgstr "Spać"
#: babybuddy/templates/babybuddy/nav-dropdown.html:75 #: babybuddy/templates/babybuddy/nav-dropdown.html:75
#: babybuddy/templates/babybuddy/nav-dropdown.html:179 core/models.py:506 #: babybuddy/templates/babybuddy/nav-dropdown.html:296
#: core/models.py:519 core/models.py:520 core/models.py:523
#: core/templates/core/temperature_confirm_delete.html:7
#: core/templates/core/temperature_form.html:13
#: core/templates/core/temperature_list.html:4
#: core/templates/core/temperature_list.html:7
#: core/templates/core/temperature_list.html:12
#: core/templates/core/temperature_list.html:29
msgid "Temperature"
msgstr "Temperatura"
#: babybuddy/templates/babybuddy/nav-dropdown.html:81
#: babybuddy/templates/babybuddy/nav-dropdown.html:301
#: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647 #: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647
#: core/models.py:648 core/models.py:651 #: core/models.py:648 core/models.py:651
#: core/templates/core/timer_detail.html:59 #: core/templates/core/timer_detail.html:59
@ -280,44 +268,15 @@ msgstr "Temperatura"
msgid "Tummy Time" msgid "Tummy Time"
msgstr "Czas drzemki" msgstr "Czas drzemki"
#: babybuddy/templates/babybuddy/nav-dropdown.html:87 #: babybuddy/templates/babybuddy/nav-dropdown.html:99
#: babybuddy/templates/babybuddy/nav-dropdown.html:193 core/models.py:673
#: core/models.py:685 core/models.py:686 core/models.py:689
#: core/templates/core/weight_confirm_delete.html:7
#: core/templates/core/weight_form.html:13
#: core/templates/core/weight_list.html:4
#: core/templates/core/weight_list.html:7
#: core/templates/core/weight_list.html:12
#: core/templates/core/weight_list.html:29 reports/graphs/weight_change.py:19
#: reports/graphs/weight_change.py:30
#: reports/templates/reports/report_list.html:22
#: reports/templates/reports/weight_change.html:4
#: reports/templates/reports/weight_change.html:8
msgid "Weight"
msgstr "Waga"
#: babybuddy/templates/babybuddy/nav-dropdown.html:93
#: babybuddy/templates/babybuddy/nav-dropdown.html:316 core/models.py:437
#: core/models.py:438 core/models.py:441
#: core/templates/core/pumping_confirm_delete.html:7
#: core/templates/core/pumping_form.html:13
#: core/templates/core/pumping_list.html:4
#: core/templates/core/pumping_list.html:7
#: core/templates/core/pumping_list.html:12
#: reports/templates/reports/pumping_amounts.html:4
#: reports/templates/reports/pumping_amounts.html:8
msgid "Pumping"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:118
#: core/templates/timeline/timeline.html:4 #: core/templates/timeline/timeline.html:4
#: core/templates/timeline/timeline.html:7 #: core/templates/timeline/timeline.html:7
#: dashboard/templates/dashboard/child_button_group.html:9 #: dashboard/templates/dashboard/child_button_group.html:9
msgid "Timeline" msgid "Timeline"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:129 #: babybuddy/templates/babybuddy/nav-dropdown.html:110
#: babybuddy/templates/babybuddy/nav-dropdown.html:137 core/models.py:188 #: babybuddy/templates/babybuddy/nav-dropdown.html:118 core/models.py:188
#: core/templates/core/child_confirm_delete.html:7 #: core/templates/core/child_confirm_delete.html:7
#: core/templates/core/child_detail.html:7 #: core/templates/core/child_detail.html:7
#: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4 #: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4
@ -327,7 +286,7 @@ msgstr ""
msgid "Children" msgid "Children"
msgstr "Dzieci" msgstr "Dzieci"
#: babybuddy/templates/babybuddy/nav-dropdown.html:143 core/models.py:137 #: babybuddy/templates/babybuddy/nav-dropdown.html:124 core/models.py:137
#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335 #: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335
#: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450 #: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450
#: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671 #: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671
@ -346,7 +305,7 @@ msgstr "Dzieci"
msgid "Child" msgid "Child"
msgstr "Dziecko" msgstr "Dziecko"
#: babybuddy/templates/babybuddy/nav-dropdown.html:151 core/models.py:143 #: babybuddy/templates/babybuddy/nav-dropdown.html:132 core/models.py:143
#: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373 #: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373
#: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511 #: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511
#: core/models.py:677 core/templates/core/note_confirm_delete.html:7 #: core/models.py:677 core/templates/core/note_confirm_delete.html:7
@ -355,19 +314,48 @@ msgstr "Dziecko"
msgid "Notes" msgid "Notes"
msgstr "Notatki" msgstr "Notatki"
#: babybuddy/templates/babybuddy/nav-dropdown.html:171 #: babybuddy/templates/babybuddy/nav-dropdown.html:152
msgid "Measurements" msgid "Measurements"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:185 #: babybuddy/templates/babybuddy/nav-dropdown.html:160 core/models.py:139
msgid "Temperature reading" #: core/models.py:151 core/models.py:152 core/models.py:155
msgstr "Odczyt temperatury" #: core/templates/core/bmi_confirm_delete.html:7
#: core/templates/core/bmi_form.html:13 core/templates/core/bmi_list.html:4
#: core/templates/core/bmi_list.html:7 core/templates/core/bmi_list.html:12
#: core/templates/core/bmi_list.html:29 reports/graphs/bmi_change.py:19
#: reports/graphs/bmi_change.py:30 reports/templates/reports/bmi_change.html:4
#: reports/templates/reports/bmi_change.html:8
msgid "BMI"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:199 #: babybuddy/templates/babybuddy/nav-dropdown.html:166
msgid "Weight entry" #, fuzzy
msgstr "Wpis wagi" #| msgid "Sleep entry"
msgid "BMI entry"
msgstr "Czas spania"
#: babybuddy/templates/babybuddy/nav-dropdown.html:207 core/models.py:369 #: babybuddy/templates/babybuddy/nav-dropdown.html:174 core/models.py:338
#: core/models.py:351 core/models.py:352 core/models.py:355
#: core/templates/core/head_circumference_confirm_delete.html:7
#: core/templates/core/head_circumference_form.html:13
#: core/templates/core/head_circumference_list.html:4
#: core/templates/core/head_circumference_list.html:7
#: core/templates/core/head_circumference_list.html:12
#: core/templates/core/head_circumference_list.html:29
#: reports/graphs/head_circumference_change.py:19
#: reports/graphs/head_circumference_change.py:30
#: reports/templates/reports/head_circumference_change.html:4
#: reports/templates/reports/head_circumference_change.html:8
#: reports/templates/reports/report_list.html:16
msgid "Head Circumference"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:180
msgid "Head Circumference entry"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:188 core/models.py:369
#: core/models.py:381 core/models.py:382 core/models.py:385 #: core/models.py:381 core/models.py:382 core/models.py:385
#: core/templates/core/height_confirm_delete.html:7 #: core/templates/core/height_confirm_delete.html:7
#: core/templates/core/height_form.html:13 #: core/templates/core/height_form.html:13
@ -384,63 +372,60 @@ msgstr "Wpis wagi"
msgid "Height" msgid "Height"
msgstr "Waga" msgstr "Waga"
#: babybuddy/templates/babybuddy/nav-dropdown.html:213 #: babybuddy/templates/babybuddy/nav-dropdown.html:194
#, fuzzy #, fuzzy
#| msgid "Weight entry" #| msgid "Weight entry"
msgid "Height entry" msgid "Height entry"
msgstr "Wpis wagi" msgstr "Wpis wagi"
#: babybuddy/templates/babybuddy/nav-dropdown.html:221 core/models.py:338 #: babybuddy/templates/babybuddy/nav-dropdown.html:202 core/models.py:506
#: core/models.py:351 core/models.py:352 core/models.py:355 #: core/models.py:519 core/models.py:520 core/models.py:523
#: core/templates/core/head_circumference_confirm_delete.html:7 #: core/templates/core/temperature_confirm_delete.html:7
#: core/templates/core/head_circumference_form.html:13 #: core/templates/core/temperature_form.html:13
#: core/templates/core/head_circumference_list.html:4 #: core/templates/core/temperature_list.html:4
#: core/templates/core/head_circumference_list.html:7 #: core/templates/core/temperature_list.html:7
#: core/templates/core/head_circumference_list.html:12 #: core/templates/core/temperature_list.html:12
#: core/templates/core/head_circumference_list.html:29 #: core/templates/core/temperature_list.html:29
#: reports/graphs/head_circumference_change.py:19 msgid "Temperature"
#: reports/graphs/head_circumference_change.py:30 msgstr "Temperatura"
#: reports/templates/reports/head_circumference_change.html:4
#: reports/templates/reports/head_circumference_change.html:8
#: reports/templates/reports/report_list.html:16
msgid "Head Circumference"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:227 #: babybuddy/templates/babybuddy/nav-dropdown.html:208
msgid "Head Circumference entry" msgid "Temperature reading"
msgstr "" msgstr "Odczyt temperatury"
#: babybuddy/templates/babybuddy/nav-dropdown.html:235 core/models.py:139 #: babybuddy/templates/babybuddy/nav-dropdown.html:216 core/models.py:673
#: core/models.py:151 core/models.py:152 core/models.py:155 #: core/models.py:685 core/models.py:686 core/models.py:689
#: core/templates/core/bmi_confirm_delete.html:7 #: core/templates/core/weight_confirm_delete.html:7
#: core/templates/core/bmi_form.html:13 core/templates/core/bmi_list.html:4 #: core/templates/core/weight_form.html:13
#: core/templates/core/bmi_list.html:7 core/templates/core/bmi_list.html:12 #: core/templates/core/weight_list.html:4
#: core/templates/core/bmi_list.html:29 reports/graphs/bmi_change.py:19 #: core/templates/core/weight_list.html:7
#: reports/graphs/bmi_change.py:30 reports/templates/reports/bmi_change.html:4 #: core/templates/core/weight_list.html:12
#: reports/templates/reports/bmi_change.html:8 #: core/templates/core/weight_list.html:29 reports/graphs/weight_change.py:19
msgid "BMI" #: reports/graphs/weight_change.py:30
msgstr "" #: reports/templates/reports/report_list.html:22
#: reports/templates/reports/weight_change.html:4
#: reports/templates/reports/weight_change.html:8
msgid "Weight"
msgstr "Waga"
#: babybuddy/templates/babybuddy/nav-dropdown.html:241 #: babybuddy/templates/babybuddy/nav-dropdown.html:222
#, fuzzy msgid "Weight entry"
#| msgid "Sleep entry" msgstr "Wpis wagi"
msgid "BMI entry"
msgstr "Czas spania"
#: babybuddy/templates/babybuddy/nav-dropdown.html:255 #: babybuddy/templates/babybuddy/nav-dropdown.html:236
msgid "Activities" msgid "Activities"
msgstr "Aktywności" msgstr "Aktywności"
#: babybuddy/templates/babybuddy/nav-dropdown.html:262 #: babybuddy/templates/babybuddy/nav-dropdown.html:243
#: reports/graphs/diaperchange_lifetimes.py:27 #: reports/graphs/diaperchange_lifetimes.py:27
msgid "Changes" msgid "Changes"
msgstr "Zmiany" msgstr "Zmiany"
#: babybuddy/templates/babybuddy/nav-dropdown.html:268 #: babybuddy/templates/babybuddy/nav-dropdown.html:249
msgid "Change" msgid "Change"
msgstr "Zmiana" msgstr "Zmiana"
#: babybuddy/templates/babybuddy/nav-dropdown.html:275 #: babybuddy/templates/babybuddy/nav-dropdown.html:256
#: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313 #: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313
#: core/templates/core/feeding_confirm_delete.html:7 #: core/templates/core/feeding_confirm_delete.html:7
#: core/templates/core/feeding_form.html:13 #: core/templates/core/feeding_form.html:13
@ -450,21 +435,33 @@ msgstr "Zmiana"
msgid "Feedings" msgid "Feedings"
msgstr "Karmienia" msgstr "Karmienia"
#: babybuddy/templates/babybuddy/nav-dropdown.html:294 #: babybuddy/templates/babybuddy/nav-dropdown.html:270 core/models.py:437
msgid "Sleep entry" #: core/models.py:438 core/models.py:441
msgstr "Czas spania" #: core/templates/core/pumping_confirm_delete.html:7
#: core/templates/core/pumping_form.html:13
#: core/templates/core/pumping_list.html:4
#: core/templates/core/pumping_list.html:7
#: core/templates/core/pumping_list.html:12
#: reports/templates/reports/pumping_amounts.html:4
#: reports/templates/reports/pumping_amounts.html:8
msgid "Pumping"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:307 #: babybuddy/templates/babybuddy/nav-dropdown.html:276
msgid "Tummy Time entry"
msgstr "Czas drzemki"
#: babybuddy/templates/babybuddy/nav-dropdown.html:322
#, fuzzy #, fuzzy
#| msgid "Weight entry" #| msgid "Weight entry"
msgid "Pumping entry" msgid "Pumping entry"
msgstr "Wpis wagi" msgstr "Wpis wagi"
#: babybuddy/templates/babybuddy/nav-dropdown.html:346 #: babybuddy/templates/babybuddy/nav-dropdown.html:289
msgid "Sleep entry"
msgstr "Czas spania"
#: babybuddy/templates/babybuddy/nav-dropdown.html:302
msgid "Tummy Time entry"
msgstr "Czas drzemki"
#: babybuddy/templates/babybuddy/nav-dropdown.html:326
#: babybuddy/templates/babybuddy/user_list.html:17 #: babybuddy/templates/babybuddy/user_list.html:17
#: babybuddy/templates/babybuddy/user_password_form.html:7 #: babybuddy/templates/babybuddy/user_password_form.html:7
#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556 #: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556
@ -472,23 +469,23 @@ msgstr "Wpis wagi"
msgid "User" msgid "User"
msgstr "Użytkownik" msgstr "Użytkownik"
#: babybuddy/templates/babybuddy/nav-dropdown.html:348 #: babybuddy/templates/babybuddy/nav-dropdown.html:328
msgid "Password" msgid "Password"
msgstr "Hasło" msgstr "Hasło"
#: babybuddy/templates/babybuddy/nav-dropdown.html:352 #: babybuddy/templates/babybuddy/nav-dropdown.html:332
msgid "Logout" msgid "Logout"
msgstr "Wyloguj" msgstr "Wyloguj"
#: babybuddy/templates/babybuddy/nav-dropdown.html:355 #: babybuddy/templates/babybuddy/nav-dropdown.html:335
msgid "Site" msgid "Site"
msgstr "Strona" msgstr "Strona"
#: babybuddy/templates/babybuddy/nav-dropdown.html:356 #: babybuddy/templates/babybuddy/nav-dropdown.html:336
msgid "API Browser" msgid "API Browser"
msgstr "Przeglądarka API" msgstr "Przeglądarka API"
#: babybuddy/templates/babybuddy/nav-dropdown.html:358 #: babybuddy/templates/babybuddy/nav-dropdown.html:338
#: babybuddy/templates/babybuddy/user_confirm_delete.html:7 #: babybuddy/templates/babybuddy/user_confirm_delete.html:7
#: babybuddy/templates/babybuddy/user_form.html:13 #: babybuddy/templates/babybuddy/user_form.html:13
#: babybuddy/templates/babybuddy/user_list.html:4 #: babybuddy/templates/babybuddy/user_list.html:4
@ -496,15 +493,15 @@ msgstr "Przeglądarka API"
msgid "Users" msgid "Users"
msgstr "Użytkownicy" msgstr "Użytkownicy"
#: babybuddy/templates/babybuddy/nav-dropdown.html:361 #: babybuddy/templates/babybuddy/nav-dropdown.html:341
msgid "Support" msgid "Support"
msgstr "Wsparcie" msgstr "Wsparcie"
#: babybuddy/templates/babybuddy/nav-dropdown.html:363 #: babybuddy/templates/babybuddy/nav-dropdown.html:343
msgid "Source Code" msgid "Source Code"
msgstr "Kod źródłowy" msgstr "Kod źródłowy"
#: babybuddy/templates/babybuddy/nav-dropdown.html:365 #: babybuddy/templates/babybuddy/nav-dropdown.html:345
msgid "Chat / Support" msgid "Chat / Support"
msgstr "Czat / Wsparcie" msgstr "Czat / Wsparcie"
@ -515,6 +512,7 @@ msgstr "Czat / Wsparcie"
#: core/templates/timeline/_timeline.html:73 #: core/templates/timeline/_timeline.html:73
#: dashboard/templates/cards/feeding_day.html:43 #: dashboard/templates/cards/feeding_day.html:43
#: dashboard/templates/cards/feeding_last_method.html:34 #: dashboard/templates/cards/feeding_last_method.html:34
#: dashboard/templates/cards/sleep_recent.html:43
#: dashboard/templates/cards/statistics.html:34 #: dashboard/templates/cards/statistics.html:34
msgid "Previous" msgid "Previous"
msgstr "Poprzedni" msgstr "Poprzedni"
@ -526,6 +524,7 @@ msgstr "Poprzedni"
#: core/templates/timeline/_timeline.html:80 #: core/templates/timeline/_timeline.html:80
#: dashboard/templates/cards/feeding_day.html:47 #: dashboard/templates/cards/feeding_day.html:47
#: dashboard/templates/cards/feeding_last_method.html:38 #: dashboard/templates/cards/feeding_last_method.html:38
#: dashboard/templates/cards/sleep_recent.html:47
#: dashboard/templates/cards/statistics.html:38 #: dashboard/templates/cards/statistics.html:38
msgid "Next" msgid "Next"
msgstr "Następny" msgstr "Następny"
@ -991,7 +990,7 @@ msgstr ""
#: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70 #: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70
#: reports/graphs/feeding_duration.py:56 #: reports/graphs/feeding_duration.py:56
#: reports/graphs/head_circumference_change.py:28 #: reports/graphs/head_circumference_change.py:28
#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:58 #: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60
#: reports/graphs/sleep_pattern.py:151 reports/graphs/sleep_totals.py:59 #: reports/graphs/sleep_pattern.py:151 reports/graphs/sleep_totals.py:59
#: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28 #: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28
msgid "Date" msgid "Date"
@ -1171,7 +1170,7 @@ msgstr ""
#: core/templates/core/bmi_list.html:70 #: core/templates/core/bmi_list.html:70
#, fuzzy #, fuzzy
#| msgid "No timer entries found." #| msgid "No timer entries found."
msgid "No bmi entries found." msgid "No BMI entries found."
msgstr "Brak wpisów stopera" msgstr "Brak wpisów stopera"
#: core/templates/core/child_confirm_delete.html:4 #: core/templates/core/child_confirm_delete.html:4
@ -1492,9 +1491,10 @@ msgstr "Aktywne stopery"
#: dashboard/templates/cards/feeding_day.html:52 #: dashboard/templates/cards/feeding_day.html:52
#: dashboard/templates/cards/feeding_last.html:17 #: dashboard/templates/cards/feeding_last.html:17
#: dashboard/templates/cards/feeding_last_method.html:43 #: dashboard/templates/cards/feeding_last_method.html:43
#: dashboard/templates/cards/sleep_day.html:14
#: dashboard/templates/cards/sleep_last.html:17 #: dashboard/templates/cards/sleep_last.html:17
#: dashboard/templates/cards/sleep_naps_day.html:18 #: dashboard/templates/cards/sleep_naps_day.html:18
#: dashboard/templates/cards/sleep_recent.html:20
#: dashboard/templates/cards/sleep_recent.html:52
#: dashboard/templates/cards/tummytime_day.html:14 #: dashboard/templates/cards/tummytime_day.html:14
msgid "None" msgid "None"
msgstr "Brak" msgstr "Brak"
@ -1615,6 +1615,22 @@ msgstr ""
msgid "0 days" msgid "0 days"
msgstr "" msgstr ""
#: core/templatetags/duration.py:111
#: dashboard/templates/cards/diaperchange_types.html:49
msgid "today"
msgstr "Dzisiaj"
#: core/templatetags/duration.py:113
#: dashboard/templates/cards/diaperchange_types.html:51
msgid "yesterday"
msgstr "Wczoraj"
#: core/templatetags/duration.py:116
#, fuzzy
#| msgid "%(key)s days ago"
msgid " days ago"
msgstr "%(key)s dni temu"
#: core/timeline.py:53 #: core/timeline.py:53
#, python-format #, python-format
msgid "%(child)s started tummy time!" msgid "%(child)s started tummy time!"
@ -1760,14 +1776,6 @@ msgstr "mokry"
msgid "solid" msgid "solid"
msgstr "suchy" msgstr "suchy"
#: dashboard/templates/cards/diaperchange_types.html:49
msgid "today"
msgstr "Dzisiaj"
#: dashboard/templates/cards/diaperchange_types.html:51
msgid "yesterday"
msgstr "Wczoraj"
#: dashboard/templates/cards/diaperchange_types.html:53 #: dashboard/templates/cards/diaperchange_types.html:53
#, python-format #, python-format
msgid "%(key)s days ago" msgid "%(key)s days ago"
@ -1787,6 +1795,7 @@ msgstr[1] "%(count)s pójść spać"
msgstr[2] "%(count)s pójść spać" msgstr[2] "%(count)s pójść spać"
#: dashboard/templates/cards/feeding_day.html:32 #: dashboard/templates/cards/feeding_day.html:32
#: dashboard/templates/cards/sleep_recent.html:32
#, python-format #, python-format
msgid "<div class=\"text-center small text-muted\"> %(since)s </div>" msgid "<div class=\"text-center small text-muted\"> %(since)s </div>"
msgstr "" msgstr ""
@ -1812,15 +1821,6 @@ msgstr[0] "%(n)s karmień%(plural)s temu"
msgstr[1] "%(n)s karmień%(plural)s temu" msgstr[1] "%(n)s karmień%(plural)s temu"
msgstr[2] "%(n)s karmień%(plural)s temu" msgstr[2] "%(n)s karmień%(plural)s temu"
#: dashboard/templates/cards/sleep_day.html:6
msgid "Today's Sleep"
msgstr "Dzisiejsze spanie"
#: dashboard/templates/cards/sleep_day.html:20
#, python-format
msgid "%(count)s sleep entries"
msgstr "%(count)s pójść spać"
#: dashboard/templates/cards/sleep_last.html:6 #: dashboard/templates/cards/sleep_last.html:6
msgid "Last Sleep" msgid "Last Sleep"
msgstr "Ostatni sen" msgstr "Ostatni sen"
@ -1838,6 +1838,21 @@ msgstr[0] "%(count)s nap%(plural)s"
msgstr[1] "%(count)s nap%(plural)s" msgstr[1] "%(count)s nap%(plural)s"
msgstr[2] "%(count)s nap%(plural)s" msgstr[2] "%(count)s nap%(plural)s"
#: dashboard/templates/cards/sleep_recent.html:6
#, fuzzy
#| msgid "Last Sleep"
msgid "Recent Sleep"
msgstr "Ostatni sen"
#: dashboard/templates/cards/sleep_recent.html:25
#, fuzzy, python-format
#| msgid "%(count)s sleep entries"
msgid "%(counter)s sleep"
msgid_plural "%(counter)s sleep"
msgstr[0] "%(count)s pójść spać"
msgstr[1] "%(count)s pójść spać"
msgstr[2] "%(count)s pójść spać"
#: dashboard/templates/cards/statistics.html:7 #: dashboard/templates/cards/statistics.html:7
msgid "Statistics" msgid "Statistics"
msgstr "Statystyki" msgstr "Statystyki"
@ -1891,69 +1906,69 @@ msgstr "Akcje dzieci"
msgid "Reports" msgid "Reports"
msgstr "Zgłoszeń" msgstr "Zgłoszeń"
#: dashboard/templatetags/cards.py:328 #: dashboard/templatetags/cards.py:357
msgid "Average nap duration" msgid "Average nap duration"
msgstr "Średni czas drzemi" msgstr "Średni czas drzemi"
#: dashboard/templatetags/cards.py:335 #: dashboard/templatetags/cards.py:364
msgid "Average naps per day" msgid "Average naps per day"
msgstr "Średnie drzemki na dzień" msgstr "Średnie drzemki na dzień"
#: dashboard/templatetags/cards.py:345 #: dashboard/templatetags/cards.py:374
msgid "Average sleep duration" msgid "Average sleep duration"
msgstr "Średni czas spania" msgstr "Średni czas spania"
#: dashboard/templatetags/cards.py:352 #: dashboard/templatetags/cards.py:381
msgid "Average awake duration" msgid "Average awake duration"
msgstr "Średni czas wstawania" msgstr "Średni czas wstawania"
#: dashboard/templatetags/cards.py:362 #: dashboard/templatetags/cards.py:391
msgid "Weight change per week" msgid "Weight change per week"
msgstr "Zmiana wagi w ciągu tygodnia" msgstr "Zmiana wagi w ciągu tygodnia"
#: dashboard/templatetags/cards.py:372 #: dashboard/templatetags/cards.py:401
#, fuzzy #, fuzzy
#| msgid "Weight change per week" #| msgid "Weight change per week"
msgid "Height change per week" msgid "Height change per week"
msgstr "Zmiana wagi w ciągu tygodnia" msgstr "Zmiana wagi w ciągu tygodnia"
#: dashboard/templatetags/cards.py:382 #: dashboard/templatetags/cards.py:411
#, fuzzy #, fuzzy
#| msgid "Weight change per week" #| msgid "Weight change per week"
msgid "Head circumference change per week" msgid "Head circumference change per week"
msgstr "Zmiana wagi w ciągu tygodnia" msgstr "Zmiana wagi w ciągu tygodnia"
#: dashboard/templatetags/cards.py:392 #: dashboard/templatetags/cards.py:421
#, fuzzy #, fuzzy
#| msgid "Weight change per week" #| msgid "Weight change per week"
msgid "BMI change per week" msgid "BMI change per week"
msgstr "Zmiana wagi w ciągu tygodnia" msgstr "Zmiana wagi w ciągu tygodnia"
#: dashboard/templatetags/cards.py:410 #: dashboard/templatetags/cards.py:439
#, fuzzy #, fuzzy
#| msgid "Diaper change frequency" #| msgid "Diaper change frequency"
msgid "Diaper change frequency (past 3 days)" msgid "Diaper change frequency (past 3 days)"
msgstr "Częstotliwość zmiany pieluchy" msgstr "Częstotliwość zmiany pieluchy"
#: dashboard/templatetags/cards.py:414 #: dashboard/templatetags/cards.py:443
#, fuzzy #, fuzzy
#| msgid "Diaper change frequency" #| msgid "Diaper change frequency"
msgid "Diaper change frequency (past 2 weeks)" msgid "Diaper change frequency (past 2 weeks)"
msgstr "Częstotliwość zmiany pieluchy" msgstr "Częstotliwość zmiany pieluchy"
#: dashboard/templatetags/cards.py:420 #: dashboard/templatetags/cards.py:449
msgid "Diaper change frequency" msgid "Diaper change frequency"
msgstr "Częstotliwość zmiany pieluchy" msgstr "Częstotliwość zmiany pieluchy"
#: dashboard/templatetags/cards.py:456 #: dashboard/templatetags/cards.py:485
msgid "Feeding frequency (past 3 days)" msgid "Feeding frequency (past 3 days)"
msgstr "" msgstr ""
#: dashboard/templatetags/cards.py:460 #: dashboard/templatetags/cards.py:489
msgid "Feeding frequency (past 2 weeks)" msgid "Feeding frequency (past 2 weeks)"
msgstr "" msgstr ""
#: dashboard/templatetags/cards.py:466 #: dashboard/templatetags/cards.py:495
msgid "Feeding frequency" msgid "Feeding frequency"
msgstr "Częstotliwość karmienia" msgstr "Częstotliwość karmienia"
@ -2035,13 +2050,13 @@ msgstr ""
msgid "<b>Height</b>" msgid "<b>Height</b>"
msgstr "<b>Waga</b>" msgstr "<b>Waga</b>"
#: reports/graphs/pumping_amounts.py:57 #: reports/graphs/pumping_amounts.py:59
#, fuzzy #, fuzzy
#| msgid "<b>Total Feeding Amounts</b>" #| msgid "<b>Total Feeding Amounts</b>"
msgid "<b>Total Pumping Amount</b>" msgid "<b>Total Pumping Amount</b>"
msgstr "<b>Łączna ilość karmień</b>" msgstr "<b>Łączna ilość karmień</b>"
#: reports/graphs/pumping_amounts.py:60 #: reports/graphs/pumping_amounts.py:62
#, fuzzy #, fuzzy
#| msgid "Feeding Amounts" #| msgid "Feeding Amounts"
msgid "Pumping Amount" msgid "Pumping Amount"
@ -2158,3 +2173,10 @@ msgstr ""
#: reports/templates/reports/tummytime_duration.html:8 #: reports/templates/reports/tummytime_duration.html:8
msgid "Total Tummy Time Durations" msgid "Total Tummy Time Durations"
msgstr "" msgstr ""
#~ msgid "Today's Sleep"
#~ msgstr "Dzisiejsze spanie"
#, python-format
#~ msgid "%(count)s sleep entries"
#~ msgstr "%(count)s pójść spać"

Binary file not shown.

View File

@ -2,7 +2,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Baby Buddy\n" "Project-Id-Version: Baby Buddy\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-06-05 13:25+0000\n" "POT-Creation-Date: 2022-06-17 22:25+0000\n"
"Language: es\n" "Language: es\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -11,12 +11,12 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: babybuddy/admin.py:12 babybuddy/admin.py:13 #: babybuddy/admin.py:12 babybuddy/admin.py:13
#: babybuddy/templates/babybuddy/nav-dropdown.html:347 #: babybuddy/templates/babybuddy/nav-dropdown.html:327
#: babybuddy/templates/babybuddy/user_settings_form.html:8 #: babybuddy/templates/babybuddy/user_settings_form.html:8
msgid "Settings" msgid "Settings"
msgstr "Preferências" msgstr "Preferências"
#: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:111 #: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:92
#: babybuddy/templates/babybuddy/user_settings_form.html:61 #: babybuddy/templates/babybuddy/user_settings_form.html:61
#: dashboard/templates/dashboard/child.html:4 #: dashboard/templates/dashboard/child.html:4
#: dashboard/templates/dashboard/child.html:9 #: dashboard/templates/dashboard/child.html:9
@ -185,7 +185,7 @@ msgstr "Turco"
#: babybuddy/templates/admin/base_site.html:4 #: babybuddy/templates/admin/base_site.html:4
#: babybuddy/templates/admin/base_site.html:7 #: babybuddy/templates/admin/base_site.html:7
#: babybuddy/templates/babybuddy/nav-dropdown.html:359 #: babybuddy/templates/babybuddy/nav-dropdown.html:339
msgid "Database Admin" msgid "Database Admin"
msgstr "Administrador da Base de Dados" msgstr "Administrador da Base de Dados"
@ -233,19 +233,19 @@ msgid "Diaper Change"
msgstr "Mudança de Fralda" msgstr "Mudança de Fralda"
#: babybuddy/templates/babybuddy/nav-dropdown.html:57 #: babybuddy/templates/babybuddy/nav-dropdown.html:57
#: babybuddy/templates/babybuddy/nav-dropdown.html:281 core/models.py:312 #: babybuddy/templates/babybuddy/nav-dropdown.html:262 core/models.py:312
#: core/models.py:316 core/templates/core/timer_detail.html:43 #: core/models.py:316 core/templates/core/timer_detail.html:43
msgid "Feeding" msgid "Feeding"
msgstr "Alimentação" msgstr "Alimentação"
#: babybuddy/templates/babybuddy/nav-dropdown.html:63 #: babybuddy/templates/babybuddy/nav-dropdown.html:63
#: babybuddy/templates/babybuddy/nav-dropdown.html:157 core/models.py:396 #: babybuddy/templates/babybuddy/nav-dropdown.html:138 core/models.py:396
#: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29 #: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29
msgid "Note" msgid "Note"
msgstr "Nota" msgstr "Nota"
#: babybuddy/templates/babybuddy/nav-dropdown.html:69 #: babybuddy/templates/babybuddy/nav-dropdown.html:69
#: babybuddy/templates/babybuddy/nav-dropdown.html:288 #: babybuddy/templates/babybuddy/nav-dropdown.html:283
#: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467 #: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467
#: core/models.py:468 core/models.py:471 #: core/models.py:468 core/models.py:471
#: core/templates/core/sleep_confirm_delete.html:7 #: core/templates/core/sleep_confirm_delete.html:7
@ -256,19 +256,7 @@ msgid "Sleep"
msgstr "Sono" msgstr "Sono"
#: babybuddy/templates/babybuddy/nav-dropdown.html:75 #: babybuddy/templates/babybuddy/nav-dropdown.html:75
#: babybuddy/templates/babybuddy/nav-dropdown.html:179 core/models.py:506 #: babybuddy/templates/babybuddy/nav-dropdown.html:296
#: core/models.py:519 core/models.py:520 core/models.py:523
#: core/templates/core/temperature_confirm_delete.html:7
#: core/templates/core/temperature_form.html:13
#: core/templates/core/temperature_list.html:4
#: core/templates/core/temperature_list.html:7
#: core/templates/core/temperature_list.html:12
#: core/templates/core/temperature_list.html:29
msgid "Temperature"
msgstr "Temperatura"
#: babybuddy/templates/babybuddy/nav-dropdown.html:81
#: babybuddy/templates/babybuddy/nav-dropdown.html:301
#: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647 #: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647
#: core/models.py:648 core/models.py:651 #: core/models.py:648 core/models.py:651
#: core/templates/core/timer_detail.html:59 #: core/templates/core/timer_detail.html:59
@ -280,44 +268,15 @@ msgstr "Temperatura"
msgid "Tummy Time" msgid "Tummy Time"
msgstr "Tempo de Barriga para Baixo" msgstr "Tempo de Barriga para Baixo"
#: babybuddy/templates/babybuddy/nav-dropdown.html:87 #: babybuddy/templates/babybuddy/nav-dropdown.html:99
#: babybuddy/templates/babybuddy/nav-dropdown.html:193 core/models.py:673
#: core/models.py:685 core/models.py:686 core/models.py:689
#: core/templates/core/weight_confirm_delete.html:7
#: core/templates/core/weight_form.html:13
#: core/templates/core/weight_list.html:4
#: core/templates/core/weight_list.html:7
#: core/templates/core/weight_list.html:12
#: core/templates/core/weight_list.html:29 reports/graphs/weight_change.py:19
#: reports/graphs/weight_change.py:30
#: reports/templates/reports/report_list.html:22
#: reports/templates/reports/weight_change.html:4
#: reports/templates/reports/weight_change.html:8
msgid "Weight"
msgstr "Peso"
#: babybuddy/templates/babybuddy/nav-dropdown.html:93
#: babybuddy/templates/babybuddy/nav-dropdown.html:316 core/models.py:437
#: core/models.py:438 core/models.py:441
#: core/templates/core/pumping_confirm_delete.html:7
#: core/templates/core/pumping_form.html:13
#: core/templates/core/pumping_list.html:4
#: core/templates/core/pumping_list.html:7
#: core/templates/core/pumping_list.html:12
#: reports/templates/reports/pumping_amounts.html:4
#: reports/templates/reports/pumping_amounts.html:8
msgid "Pumping"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:118
#: core/templates/timeline/timeline.html:4 #: core/templates/timeline/timeline.html:4
#: core/templates/timeline/timeline.html:7 #: core/templates/timeline/timeline.html:7
#: dashboard/templates/dashboard/child_button_group.html:9 #: dashboard/templates/dashboard/child_button_group.html:9
msgid "Timeline" msgid "Timeline"
msgstr "Linha temporal" msgstr "Linha temporal"
#: babybuddy/templates/babybuddy/nav-dropdown.html:129 #: babybuddy/templates/babybuddy/nav-dropdown.html:110
#: babybuddy/templates/babybuddy/nav-dropdown.html:137 core/models.py:188 #: babybuddy/templates/babybuddy/nav-dropdown.html:118 core/models.py:188
#: core/templates/core/child_confirm_delete.html:7 #: core/templates/core/child_confirm_delete.html:7
#: core/templates/core/child_detail.html:7 #: core/templates/core/child_detail.html:7
#: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4 #: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4
@ -327,7 +286,7 @@ msgstr "Linha temporal"
msgid "Children" msgid "Children"
msgstr "Crianças" msgstr "Crianças"
#: babybuddy/templates/babybuddy/nav-dropdown.html:143 core/models.py:137 #: babybuddy/templates/babybuddy/nav-dropdown.html:124 core/models.py:137
#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335 #: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335
#: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450 #: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450
#: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671 #: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671
@ -346,7 +305,7 @@ msgstr "Crianças"
msgid "Child" msgid "Child"
msgstr "Criança" msgstr "Criança"
#: babybuddy/templates/babybuddy/nav-dropdown.html:151 core/models.py:143 #: babybuddy/templates/babybuddy/nav-dropdown.html:132 core/models.py:143
#: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373 #: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373
#: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511 #: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511
#: core/models.py:677 core/templates/core/note_confirm_delete.html:7 #: core/models.py:677 core/templates/core/note_confirm_delete.html:7
@ -355,19 +314,48 @@ msgstr "Criança"
msgid "Notes" msgid "Notes"
msgstr "Notas" msgstr "Notas"
#: babybuddy/templates/babybuddy/nav-dropdown.html:171 #: babybuddy/templates/babybuddy/nav-dropdown.html:152
msgid "Measurements" msgid "Measurements"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:185 #: babybuddy/templates/babybuddy/nav-dropdown.html:160 core/models.py:139
msgid "Temperature reading" #: core/models.py:151 core/models.py:152 core/models.py:155
msgstr "Leitura de temperatura" #: core/templates/core/bmi_confirm_delete.html:7
#: core/templates/core/bmi_form.html:13 core/templates/core/bmi_list.html:4
#: core/templates/core/bmi_list.html:7 core/templates/core/bmi_list.html:12
#: core/templates/core/bmi_list.html:29 reports/graphs/bmi_change.py:19
#: reports/graphs/bmi_change.py:30 reports/templates/reports/bmi_change.html:4
#: reports/templates/reports/bmi_change.html:8
msgid "BMI"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:199 #: babybuddy/templates/babybuddy/nav-dropdown.html:166
msgid "Weight entry" #, fuzzy
msgstr "Novo peso" #| msgid "Sleep entry"
msgid "BMI entry"
msgstr "Novo sono"
#: babybuddy/templates/babybuddy/nav-dropdown.html:207 core/models.py:369 #: babybuddy/templates/babybuddy/nav-dropdown.html:174 core/models.py:338
#: core/models.py:351 core/models.py:352 core/models.py:355
#: core/templates/core/head_circumference_confirm_delete.html:7
#: core/templates/core/head_circumference_form.html:13
#: core/templates/core/head_circumference_list.html:4
#: core/templates/core/head_circumference_list.html:7
#: core/templates/core/head_circumference_list.html:12
#: core/templates/core/head_circumference_list.html:29
#: reports/graphs/head_circumference_change.py:19
#: reports/graphs/head_circumference_change.py:30
#: reports/templates/reports/head_circumference_change.html:4
#: reports/templates/reports/head_circumference_change.html:8
#: reports/templates/reports/report_list.html:16
msgid "Head Circumference"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:180
msgid "Head Circumference entry"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:188 core/models.py:369
#: core/models.py:381 core/models.py:382 core/models.py:385 #: core/models.py:381 core/models.py:382 core/models.py:385
#: core/templates/core/height_confirm_delete.html:7 #: core/templates/core/height_confirm_delete.html:7
#: core/templates/core/height_form.html:13 #: core/templates/core/height_form.html:13
@ -384,63 +372,60 @@ msgstr "Novo peso"
msgid "Height" msgid "Height"
msgstr "Peso" msgstr "Peso"
#: babybuddy/templates/babybuddy/nav-dropdown.html:213 #: babybuddy/templates/babybuddy/nav-dropdown.html:194
#, fuzzy #, fuzzy
#| msgid "Weight entry" #| msgid "Weight entry"
msgid "Height entry" msgid "Height entry"
msgstr "Novo peso" msgstr "Novo peso"
#: babybuddy/templates/babybuddy/nav-dropdown.html:221 core/models.py:338 #: babybuddy/templates/babybuddy/nav-dropdown.html:202 core/models.py:506
#: core/models.py:351 core/models.py:352 core/models.py:355 #: core/models.py:519 core/models.py:520 core/models.py:523
#: core/templates/core/head_circumference_confirm_delete.html:7 #: core/templates/core/temperature_confirm_delete.html:7
#: core/templates/core/head_circumference_form.html:13 #: core/templates/core/temperature_form.html:13
#: core/templates/core/head_circumference_list.html:4 #: core/templates/core/temperature_list.html:4
#: core/templates/core/head_circumference_list.html:7 #: core/templates/core/temperature_list.html:7
#: core/templates/core/head_circumference_list.html:12 #: core/templates/core/temperature_list.html:12
#: core/templates/core/head_circumference_list.html:29 #: core/templates/core/temperature_list.html:29
#: reports/graphs/head_circumference_change.py:19 msgid "Temperature"
#: reports/graphs/head_circumference_change.py:30 msgstr "Temperatura"
#: reports/templates/reports/head_circumference_change.html:4
#: reports/templates/reports/head_circumference_change.html:8
#: reports/templates/reports/report_list.html:16
msgid "Head Circumference"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:227 #: babybuddy/templates/babybuddy/nav-dropdown.html:208
msgid "Head Circumference entry" msgid "Temperature reading"
msgstr "" msgstr "Leitura de temperatura"
#: babybuddy/templates/babybuddy/nav-dropdown.html:235 core/models.py:139 #: babybuddy/templates/babybuddy/nav-dropdown.html:216 core/models.py:673
#: core/models.py:151 core/models.py:152 core/models.py:155 #: core/models.py:685 core/models.py:686 core/models.py:689
#: core/templates/core/bmi_confirm_delete.html:7 #: core/templates/core/weight_confirm_delete.html:7
#: core/templates/core/bmi_form.html:13 core/templates/core/bmi_list.html:4 #: core/templates/core/weight_form.html:13
#: core/templates/core/bmi_list.html:7 core/templates/core/bmi_list.html:12 #: core/templates/core/weight_list.html:4
#: core/templates/core/bmi_list.html:29 reports/graphs/bmi_change.py:19 #: core/templates/core/weight_list.html:7
#: reports/graphs/bmi_change.py:30 reports/templates/reports/bmi_change.html:4 #: core/templates/core/weight_list.html:12
#: reports/templates/reports/bmi_change.html:8 #: core/templates/core/weight_list.html:29 reports/graphs/weight_change.py:19
msgid "BMI" #: reports/graphs/weight_change.py:30
msgstr "" #: reports/templates/reports/report_list.html:22
#: reports/templates/reports/weight_change.html:4
#: reports/templates/reports/weight_change.html:8
msgid "Weight"
msgstr "Peso"
#: babybuddy/templates/babybuddy/nav-dropdown.html:241 #: babybuddy/templates/babybuddy/nav-dropdown.html:222
#, fuzzy msgid "Weight entry"
#| msgid "Sleep entry" msgstr "Novo peso"
msgid "BMI entry"
msgstr "Novo sono"
#: babybuddy/templates/babybuddy/nav-dropdown.html:255 #: babybuddy/templates/babybuddy/nav-dropdown.html:236
msgid "Activities" msgid "Activities"
msgstr "Actividades" msgstr "Actividades"
#: babybuddy/templates/babybuddy/nav-dropdown.html:262 #: babybuddy/templates/babybuddy/nav-dropdown.html:243
#: reports/graphs/diaperchange_lifetimes.py:27 #: reports/graphs/diaperchange_lifetimes.py:27
msgid "Changes" msgid "Changes"
msgstr "Mudanças de fralda" msgstr "Mudanças de fralda"
#: babybuddy/templates/babybuddy/nav-dropdown.html:268 #: babybuddy/templates/babybuddy/nav-dropdown.html:249
msgid "Change" msgid "Change"
msgstr "Mudança de fralda" msgstr "Mudança de fralda"
#: babybuddy/templates/babybuddy/nav-dropdown.html:275 #: babybuddy/templates/babybuddy/nav-dropdown.html:256
#: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313 #: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313
#: core/templates/core/feeding_confirm_delete.html:7 #: core/templates/core/feeding_confirm_delete.html:7
#: core/templates/core/feeding_form.html:13 #: core/templates/core/feeding_form.html:13
@ -450,21 +435,33 @@ msgstr "Mudança de fralda"
msgid "Feedings" msgid "Feedings"
msgstr "Alimentações" msgstr "Alimentações"
#: babybuddy/templates/babybuddy/nav-dropdown.html:294 #: babybuddy/templates/babybuddy/nav-dropdown.html:270 core/models.py:437
msgid "Sleep entry" #: core/models.py:438 core/models.py:441
msgstr "Novo sono" #: core/templates/core/pumping_confirm_delete.html:7
#: core/templates/core/pumping_form.html:13
#: core/templates/core/pumping_list.html:4
#: core/templates/core/pumping_list.html:7
#: core/templates/core/pumping_list.html:12
#: reports/templates/reports/pumping_amounts.html:4
#: reports/templates/reports/pumping_amounts.html:8
msgid "Pumping"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:307 #: babybuddy/templates/babybuddy/nav-dropdown.html:276
msgid "Tummy Time entry"
msgstr "Entrada de Tempo de Barriga para Baixo"
#: babybuddy/templates/babybuddy/nav-dropdown.html:322
#, fuzzy #, fuzzy
#| msgid "Weight entry" #| msgid "Weight entry"
msgid "Pumping entry" msgid "Pumping entry"
msgstr "Novo peso" msgstr "Novo peso"
#: babybuddy/templates/babybuddy/nav-dropdown.html:346 #: babybuddy/templates/babybuddy/nav-dropdown.html:289
msgid "Sleep entry"
msgstr "Novo sono"
#: babybuddy/templates/babybuddy/nav-dropdown.html:302
msgid "Tummy Time entry"
msgstr "Entrada de Tempo de Barriga para Baixo"
#: babybuddy/templates/babybuddy/nav-dropdown.html:326
#: babybuddy/templates/babybuddy/user_list.html:17 #: babybuddy/templates/babybuddy/user_list.html:17
#: babybuddy/templates/babybuddy/user_password_form.html:7 #: babybuddy/templates/babybuddy/user_password_form.html:7
#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556 #: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556
@ -472,23 +469,23 @@ msgstr "Novo peso"
msgid "User" msgid "User"
msgstr "Utilizador" msgstr "Utilizador"
#: babybuddy/templates/babybuddy/nav-dropdown.html:348 #: babybuddy/templates/babybuddy/nav-dropdown.html:328
msgid "Password" msgid "Password"
msgstr "Password" msgstr "Password"
#: babybuddy/templates/babybuddy/nav-dropdown.html:352 #: babybuddy/templates/babybuddy/nav-dropdown.html:332
msgid "Logout" msgid "Logout"
msgstr "Logout" msgstr "Logout"
#: babybuddy/templates/babybuddy/nav-dropdown.html:355 #: babybuddy/templates/babybuddy/nav-dropdown.html:335
msgid "Site" msgid "Site"
msgstr "Site" msgstr "Site"
#: babybuddy/templates/babybuddy/nav-dropdown.html:356 #: babybuddy/templates/babybuddy/nav-dropdown.html:336
msgid "API Browser" msgid "API Browser"
msgstr "Navegador de API" msgstr "Navegador de API"
#: babybuddy/templates/babybuddy/nav-dropdown.html:358 #: babybuddy/templates/babybuddy/nav-dropdown.html:338
#: babybuddy/templates/babybuddy/user_confirm_delete.html:7 #: babybuddy/templates/babybuddy/user_confirm_delete.html:7
#: babybuddy/templates/babybuddy/user_form.html:13 #: babybuddy/templates/babybuddy/user_form.html:13
#: babybuddy/templates/babybuddy/user_list.html:4 #: babybuddy/templates/babybuddy/user_list.html:4
@ -496,15 +493,15 @@ msgstr "Navegador de API"
msgid "Users" msgid "Users"
msgstr "Utilizadores" msgstr "Utilizadores"
#: babybuddy/templates/babybuddy/nav-dropdown.html:361 #: babybuddy/templates/babybuddy/nav-dropdown.html:341
msgid "Support" msgid "Support"
msgstr "Suporte" msgstr "Suporte"
#: babybuddy/templates/babybuddy/nav-dropdown.html:363 #: babybuddy/templates/babybuddy/nav-dropdown.html:343
msgid "Source Code" msgid "Source Code"
msgstr "Código Fonte" msgstr "Código Fonte"
#: babybuddy/templates/babybuddy/nav-dropdown.html:365 #: babybuddy/templates/babybuddy/nav-dropdown.html:345
msgid "Chat / Support" msgid "Chat / Support"
msgstr "Chat / Suporte" msgstr "Chat / Suporte"
@ -515,6 +512,7 @@ msgstr "Chat / Suporte"
#: core/templates/timeline/_timeline.html:73 #: core/templates/timeline/_timeline.html:73
#: dashboard/templates/cards/feeding_day.html:43 #: dashboard/templates/cards/feeding_day.html:43
#: dashboard/templates/cards/feeding_last_method.html:34 #: dashboard/templates/cards/feeding_last_method.html:34
#: dashboard/templates/cards/sleep_recent.html:43
#: dashboard/templates/cards/statistics.html:34 #: dashboard/templates/cards/statistics.html:34
msgid "Previous" msgid "Previous"
msgstr "Anterior" msgstr "Anterior"
@ -526,6 +524,7 @@ msgstr "Anterior"
#: core/templates/timeline/_timeline.html:80 #: core/templates/timeline/_timeline.html:80
#: dashboard/templates/cards/feeding_day.html:47 #: dashboard/templates/cards/feeding_day.html:47
#: dashboard/templates/cards/feeding_last_method.html:38 #: dashboard/templates/cards/feeding_last_method.html:38
#: dashboard/templates/cards/sleep_recent.html:47
#: dashboard/templates/cards/statistics.html:38 #: dashboard/templates/cards/statistics.html:38
msgid "Next" msgid "Next"
msgstr "Seguinte" msgstr "Seguinte"
@ -995,7 +994,7 @@ msgstr ""
#: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70 #: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70
#: reports/graphs/feeding_duration.py:56 #: reports/graphs/feeding_duration.py:56
#: reports/graphs/head_circumference_change.py:28 #: reports/graphs/head_circumference_change.py:28
#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:58 #: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60
#: reports/graphs/sleep_pattern.py:151 reports/graphs/sleep_totals.py:59 #: reports/graphs/sleep_pattern.py:151 reports/graphs/sleep_totals.py:59
#: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28 #: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28
msgid "Date" msgid "Date"
@ -1175,7 +1174,7 @@ msgstr ""
#: core/templates/core/bmi_list.html:70 #: core/templates/core/bmi_list.html:70
#, fuzzy #, fuzzy
#| msgid "No timer entries found." #| msgid "No timer entries found."
msgid "No bmi entries found." msgid "No BMI entries found."
msgstr "Não foram encontradas entradas de temporizador." msgstr "Não foram encontradas entradas de temporizador."
#: core/templates/core/child_confirm_delete.html:4 #: core/templates/core/child_confirm_delete.html:4
@ -1439,11 +1438,11 @@ msgstr "Apagar inactivo"
msgid "Are you sure you want to delete %(number)s inactive timer?" msgid "Are you sure you want to delete %(number)s inactive timer?"
msgid_plural "Are you sure you want to delete %(number)s inactive timers?" msgid_plural "Are you sure you want to delete %(number)s inactive timers?"
msgstr[0] "" msgstr[0] ""
"Tem a certeza que deseja eliminar %(number)s temporizadore%(plural)s inactivo" "Tem a certeza que deseja eliminar %(number)s temporizadore%(plural)s "
"%(plural)s?" "inactivo%(plural)s?"
msgstr[1] "" msgstr[1] ""
"Tem a certeza que deseja eliminar %(number)s temporizadore%(plural)s inactivo" "Tem a certeza que deseja eliminar %(number)s temporizadore%(plural)s "
"%(plural)s?" "inactivo%(plural)s?"
#: core/templates/core/timer_detail.html:28 #: core/templates/core/timer_detail.html:28
msgid "Started" msgid "Started"
@ -1499,9 +1498,10 @@ msgstr "Temporizadores Activos"
#: dashboard/templates/cards/feeding_day.html:52 #: dashboard/templates/cards/feeding_day.html:52
#: dashboard/templates/cards/feeding_last.html:17 #: dashboard/templates/cards/feeding_last.html:17
#: dashboard/templates/cards/feeding_last_method.html:43 #: dashboard/templates/cards/feeding_last_method.html:43
#: dashboard/templates/cards/sleep_day.html:14
#: dashboard/templates/cards/sleep_last.html:17 #: dashboard/templates/cards/sleep_last.html:17
#: dashboard/templates/cards/sleep_naps_day.html:18 #: dashboard/templates/cards/sleep_naps_day.html:18
#: dashboard/templates/cards/sleep_recent.html:20
#: dashboard/templates/cards/sleep_recent.html:52
#: dashboard/templates/cards/tummytime_day.html:14 #: dashboard/templates/cards/tummytime_day.html:14
msgid "None" msgid "None"
msgstr "Nenhum" msgstr "Nenhum"
@ -1622,6 +1622,22 @@ msgstr "{}, {}"
msgid "0 days" msgid "0 days"
msgstr "0 dias" msgstr "0 dias"
#: core/templatetags/duration.py:111
#: dashboard/templates/cards/diaperchange_types.html:49
msgid "today"
msgstr "hoje"
#: core/templatetags/duration.py:113
#: dashboard/templates/cards/diaperchange_types.html:51
msgid "yesterday"
msgstr "ontem"
#: core/templatetags/duration.py:116
#, fuzzy
#| msgid "%(key)s days ago"
msgid " days ago"
msgstr "%(key)s dias atrás"
#: core/timeline.py:53 #: core/timeline.py:53
#, python-format #, python-format
msgid "%(child)s started tummy time!" msgid "%(child)s started tummy time!"
@ -1761,14 +1777,6 @@ msgstr "molhado"
msgid "solid" msgid "solid"
msgstr "sólido" msgstr "sólido"
#: dashboard/templates/cards/diaperchange_types.html:49
msgid "today"
msgstr "hoje"
#: dashboard/templates/cards/diaperchange_types.html:51
msgid "yesterday"
msgstr "ontem"
#: dashboard/templates/cards/diaperchange_types.html:53 #: dashboard/templates/cards/diaperchange_types.html:53
#, python-format #, python-format
msgid "%(key)s days ago" msgid "%(key)s days ago"
@ -1787,6 +1795,7 @@ msgstr[0] "%(count)s entradas de sono"
msgstr[1] "%(count)s entradas de sono" msgstr[1] "%(count)s entradas de sono"
#: dashboard/templates/cards/feeding_day.html:32 #: dashboard/templates/cards/feeding_day.html:32
#: dashboard/templates/cards/sleep_recent.html:32
#, python-format #, python-format
msgid "<div class=\"text-center small text-muted\"> %(since)s </div>" msgid "<div class=\"text-center small text-muted\"> %(since)s </div>"
msgstr "" msgstr ""
@ -1811,15 +1820,6 @@ msgid_plural "%(n)s feedings ago"
msgstr[0] "%(n)s alimentaçõe%(plural)s atrás" msgstr[0] "%(n)s alimentaçõe%(plural)s atrás"
msgstr[1] "%(n)s alimentaçõe%(plural)s atrás" msgstr[1] "%(n)s alimentaçõe%(plural)s atrás"
#: dashboard/templates/cards/sleep_day.html:6
msgid "Today's Sleep"
msgstr "Sono de Hoje"
#: dashboard/templates/cards/sleep_day.html:20
#, python-format
msgid "%(count)s sleep entries"
msgstr "%(count)s entradas de sono"
#: dashboard/templates/cards/sleep_last.html:6 #: dashboard/templates/cards/sleep_last.html:6
msgid "Last Sleep" msgid "Last Sleep"
msgstr "Último Sono" msgstr "Último Sono"
@ -1836,6 +1836,20 @@ msgid_plural "%(count)s naps"
msgstr[0] "%(count)s sesta%(plural)s" msgstr[0] "%(count)s sesta%(plural)s"
msgstr[1] "%(count)s sesta%(plural)s" msgstr[1] "%(count)s sesta%(plural)s"
#: dashboard/templates/cards/sleep_recent.html:6
#, fuzzy
#| msgid "Last Sleep"
msgid "Recent Sleep"
msgstr "Último Sono"
#: dashboard/templates/cards/sleep_recent.html:25
#, fuzzy, python-format
#| msgid "%(count)s sleep entries"
msgid "%(counter)s sleep"
msgid_plural "%(counter)s sleep"
msgstr[0] "%(count)s entradas de sono"
msgstr[1] "%(count)s entradas de sono"
#: dashboard/templates/cards/statistics.html:7 #: dashboard/templates/cards/statistics.html:7
msgid "Statistics" msgid "Statistics"
msgstr "Estatísticas" msgstr "Estatísticas"
@ -1888,69 +1902,69 @@ msgstr "Acções da criança"
msgid "Reports" msgid "Reports"
msgstr "Relatórios" msgstr "Relatórios"
#: dashboard/templatetags/cards.py:328 #: dashboard/templatetags/cards.py:357
msgid "Average nap duration" msgid "Average nap duration"
msgstr "Média de duração das sestas" msgstr "Média de duração das sestas"
#: dashboard/templatetags/cards.py:335 #: dashboard/templatetags/cards.py:364
msgid "Average naps per day" msgid "Average naps per day"
msgstr "Média de sestas por dua" msgstr "Média de sestas por dua"
#: dashboard/templatetags/cards.py:345 #: dashboard/templatetags/cards.py:374
msgid "Average sleep duration" msgid "Average sleep duration"
msgstr "Média de duração dos sonos" msgstr "Média de duração dos sonos"
#: dashboard/templatetags/cards.py:352 #: dashboard/templatetags/cards.py:381
msgid "Average awake duration" msgid "Average awake duration"
msgstr "Média de tempo acordado" msgstr "Média de tempo acordado"
#: dashboard/templatetags/cards.py:362 #: dashboard/templatetags/cards.py:391
msgid "Weight change per week" msgid "Weight change per week"
msgstr "Alterações de peso por semana" msgstr "Alterações de peso por semana"
#: dashboard/templatetags/cards.py:372 #: dashboard/templatetags/cards.py:401
#, fuzzy #, fuzzy
#| msgid "Weight change per week" #| msgid "Weight change per week"
msgid "Height change per week" msgid "Height change per week"
msgstr "Alterações de peso por semana" msgstr "Alterações de peso por semana"
#: dashboard/templatetags/cards.py:382 #: dashboard/templatetags/cards.py:411
#, fuzzy #, fuzzy
#| msgid "Weight change per week" #| msgid "Weight change per week"
msgid "Head circumference change per week" msgid "Head circumference change per week"
msgstr "Alterações de peso por semana" msgstr "Alterações de peso por semana"
#: dashboard/templatetags/cards.py:392 #: dashboard/templatetags/cards.py:421
#, fuzzy #, fuzzy
#| msgid "Weight change per week" #| msgid "Weight change per week"
msgid "BMI change per week" msgid "BMI change per week"
msgstr "Alterações de peso por semana" msgstr "Alterações de peso por semana"
#: dashboard/templatetags/cards.py:410 #: dashboard/templatetags/cards.py:439
#, fuzzy #, fuzzy
#| msgid "Feeding frequency (past 3 days)" #| msgid "Feeding frequency (past 3 days)"
msgid "Diaper change frequency (past 3 days)" msgid "Diaper change frequency (past 3 days)"
msgstr "Frequência de alimentação (últimos 3 dias)" msgstr "Frequência de alimentação (últimos 3 dias)"
#: dashboard/templatetags/cards.py:414 #: dashboard/templatetags/cards.py:443
#, fuzzy #, fuzzy
#| msgid "Feeding frequency (past 2 weeks)" #| msgid "Feeding frequency (past 2 weeks)"
msgid "Diaper change frequency (past 2 weeks)" msgid "Diaper change frequency (past 2 weeks)"
msgstr "Frequência de alimentação (últimas 2 semanas)" msgstr "Frequência de alimentação (últimas 2 semanas)"
#: dashboard/templatetags/cards.py:420 #: dashboard/templatetags/cards.py:449
msgid "Diaper change frequency" msgid "Diaper change frequency"
msgstr "Frequência da mudança de fralda" msgstr "Frequência da mudança de fralda"
#: dashboard/templatetags/cards.py:456 #: dashboard/templatetags/cards.py:485
msgid "Feeding frequency (past 3 days)" msgid "Feeding frequency (past 3 days)"
msgstr "Frequência de alimentação (últimos 3 dias)" msgstr "Frequência de alimentação (últimos 3 dias)"
#: dashboard/templatetags/cards.py:460 #: dashboard/templatetags/cards.py:489
msgid "Feeding frequency (past 2 weeks)" msgid "Feeding frequency (past 2 weeks)"
msgstr "Frequência de alimentação (últimas 2 semanas)" msgstr "Frequência de alimentação (últimas 2 semanas)"
#: dashboard/templatetags/cards.py:466 #: dashboard/templatetags/cards.py:495
msgid "Feeding frequency" msgid "Feeding frequency"
msgstr "Frequência de alimentação" msgstr "Frequência de alimentação"
@ -2032,13 +2046,13 @@ msgstr ""
msgid "<b>Height</b>" msgid "<b>Height</b>"
msgstr "<b>Peso</b>" msgstr "<b>Peso</b>"
#: reports/graphs/pumping_amounts.py:57 #: reports/graphs/pumping_amounts.py:59
#, fuzzy #, fuzzy
#| msgid "<b>Total Feeding Amounts</b>" #| msgid "<b>Total Feeding Amounts</b>"
msgid "<b>Total Pumping Amount</b>" msgid "<b>Total Pumping Amount</b>"
msgstr "<b>Total de Alimentações</b>" msgstr "<b>Total de Alimentações</b>"
#: reports/graphs/pumping_amounts.py:60 #: reports/graphs/pumping_amounts.py:62
#, fuzzy #, fuzzy
#| msgid "Feeding Amounts" #| msgid "Feeding Amounts"
msgid "Pumping Amount" msgid "Pumping Amount"
@ -2155,3 +2169,10 @@ msgstr ""
#: reports/templates/reports/tummytime_duration.html:8 #: reports/templates/reports/tummytime_duration.html:8
msgid "Total Tummy Time Durations" msgid "Total Tummy Time Durations"
msgstr "" msgstr ""
#~ msgid "Today's Sleep"
#~ msgstr "Sono de Hoje"
#, python-format
#~ msgid "%(count)s sleep entries"
#~ msgstr "%(count)s entradas de sono"

Binary file not shown.

View File

@ -2,7 +2,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Baby Buddy\n" "Project-Id-Version: Baby Buddy\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-06-05 13:25+0000\n" "POT-Creation-Date: 2022-06-17 22:25+0000\n"
"Language: sv\n" "Language: sv\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -11,12 +11,12 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: babybuddy/admin.py:12 babybuddy/admin.py:13 #: babybuddy/admin.py:12 babybuddy/admin.py:13
#: babybuddy/templates/babybuddy/nav-dropdown.html:347 #: babybuddy/templates/babybuddy/nav-dropdown.html:327
#: babybuddy/templates/babybuddy/user_settings_form.html:8 #: babybuddy/templates/babybuddy/user_settings_form.html:8
msgid "Settings" msgid "Settings"
msgstr "Inställningar" msgstr "Inställningar"
#: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:111 #: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:92
#: babybuddy/templates/babybuddy/user_settings_form.html:61 #: babybuddy/templates/babybuddy/user_settings_form.html:61
#: dashboard/templates/dashboard/child.html:4 #: dashboard/templates/dashboard/child.html:4
#: dashboard/templates/dashboard/child.html:9 #: dashboard/templates/dashboard/child.html:9
@ -183,7 +183,7 @@ msgstr ""
#: babybuddy/templates/admin/base_site.html:4 #: babybuddy/templates/admin/base_site.html:4
#: babybuddy/templates/admin/base_site.html:7 #: babybuddy/templates/admin/base_site.html:7
#: babybuddy/templates/babybuddy/nav-dropdown.html:359 #: babybuddy/templates/babybuddy/nav-dropdown.html:339
msgid "Database Admin" msgid "Database Admin"
msgstr "" msgstr ""
@ -232,19 +232,19 @@ msgid "Diaper Change"
msgstr "Blöjbyte" msgstr "Blöjbyte"
#: babybuddy/templates/babybuddy/nav-dropdown.html:57 #: babybuddy/templates/babybuddy/nav-dropdown.html:57
#: babybuddy/templates/babybuddy/nav-dropdown.html:281 core/models.py:312 #: babybuddy/templates/babybuddy/nav-dropdown.html:262 core/models.py:312
#: core/models.py:316 core/templates/core/timer_detail.html:43 #: core/models.py:316 core/templates/core/timer_detail.html:43
msgid "Feeding" msgid "Feeding"
msgstr "Matning" msgstr "Matning"
#: babybuddy/templates/babybuddy/nav-dropdown.html:63 #: babybuddy/templates/babybuddy/nav-dropdown.html:63
#: babybuddy/templates/babybuddy/nav-dropdown.html:157 core/models.py:396 #: babybuddy/templates/babybuddy/nav-dropdown.html:138 core/models.py:396
#: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29 #: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29
msgid "Note" msgid "Note"
msgstr "Anteckning" msgstr "Anteckning"
#: babybuddy/templates/babybuddy/nav-dropdown.html:69 #: babybuddy/templates/babybuddy/nav-dropdown.html:69
#: babybuddy/templates/babybuddy/nav-dropdown.html:288 #: babybuddy/templates/babybuddy/nav-dropdown.html:283
#: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467 #: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467
#: core/models.py:468 core/models.py:471 #: core/models.py:468 core/models.py:471
#: core/templates/core/sleep_confirm_delete.html:7 #: core/templates/core/sleep_confirm_delete.html:7
@ -255,19 +255,7 @@ msgid "Sleep"
msgstr "Sömn" msgstr "Sömn"
#: babybuddy/templates/babybuddy/nav-dropdown.html:75 #: babybuddy/templates/babybuddy/nav-dropdown.html:75
#: babybuddy/templates/babybuddy/nav-dropdown.html:179 core/models.py:506 #: babybuddy/templates/babybuddy/nav-dropdown.html:296
#: core/models.py:519 core/models.py:520 core/models.py:523
#: core/templates/core/temperature_confirm_delete.html:7
#: core/templates/core/temperature_form.html:13
#: core/templates/core/temperature_list.html:4
#: core/templates/core/temperature_list.html:7
#: core/templates/core/temperature_list.html:12
#: core/templates/core/temperature_list.html:29
msgid "Temperature"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:81
#: babybuddy/templates/babybuddy/nav-dropdown.html:301
#: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647 #: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647
#: core/models.py:648 core/models.py:651 #: core/models.py:648 core/models.py:651
#: core/templates/core/timer_detail.html:59 #: core/templates/core/timer_detail.html:59
@ -279,44 +267,15 @@ msgstr ""
msgid "Tummy Time" msgid "Tummy Time"
msgstr "Magläge" msgstr "Magläge"
#: babybuddy/templates/babybuddy/nav-dropdown.html:87 #: babybuddy/templates/babybuddy/nav-dropdown.html:99
#: babybuddy/templates/babybuddy/nav-dropdown.html:193 core/models.py:673
#: core/models.py:685 core/models.py:686 core/models.py:689
#: core/templates/core/weight_confirm_delete.html:7
#: core/templates/core/weight_form.html:13
#: core/templates/core/weight_list.html:4
#: core/templates/core/weight_list.html:7
#: core/templates/core/weight_list.html:12
#: core/templates/core/weight_list.html:29 reports/graphs/weight_change.py:19
#: reports/graphs/weight_change.py:30
#: reports/templates/reports/report_list.html:22
#: reports/templates/reports/weight_change.html:4
#: reports/templates/reports/weight_change.html:8
msgid "Weight"
msgstr "Vikt"
#: babybuddy/templates/babybuddy/nav-dropdown.html:93
#: babybuddy/templates/babybuddy/nav-dropdown.html:316 core/models.py:437
#: core/models.py:438 core/models.py:441
#: core/templates/core/pumping_confirm_delete.html:7
#: core/templates/core/pumping_form.html:13
#: core/templates/core/pumping_list.html:4
#: core/templates/core/pumping_list.html:7
#: core/templates/core/pumping_list.html:12
#: reports/templates/reports/pumping_amounts.html:4
#: reports/templates/reports/pumping_amounts.html:8
msgid "Pumping"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:118
#: core/templates/timeline/timeline.html:4 #: core/templates/timeline/timeline.html:4
#: core/templates/timeline/timeline.html:7 #: core/templates/timeline/timeline.html:7
#: dashboard/templates/dashboard/child_button_group.html:9 #: dashboard/templates/dashboard/child_button_group.html:9
msgid "Timeline" msgid "Timeline"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:129 #: babybuddy/templates/babybuddy/nav-dropdown.html:110
#: babybuddy/templates/babybuddy/nav-dropdown.html:137 core/models.py:188 #: babybuddy/templates/babybuddy/nav-dropdown.html:118 core/models.py:188
#: core/templates/core/child_confirm_delete.html:7 #: core/templates/core/child_confirm_delete.html:7
#: core/templates/core/child_detail.html:7 #: core/templates/core/child_detail.html:7
#: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4 #: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4
@ -326,7 +285,7 @@ msgstr ""
msgid "Children" msgid "Children"
msgstr "Barn" msgstr "Barn"
#: babybuddy/templates/babybuddy/nav-dropdown.html:143 core/models.py:137 #: babybuddy/templates/babybuddy/nav-dropdown.html:124 core/models.py:137
#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335 #: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335
#: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450 #: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450
#: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671 #: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671
@ -345,7 +304,7 @@ msgstr "Barn"
msgid "Child" msgid "Child"
msgstr "Barnet" msgstr "Barnet"
#: babybuddy/templates/babybuddy/nav-dropdown.html:151 core/models.py:143 #: babybuddy/templates/babybuddy/nav-dropdown.html:132 core/models.py:143
#: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373 #: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373
#: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511 #: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511
#: core/models.py:677 core/templates/core/note_confirm_delete.html:7 #: core/models.py:677 core/templates/core/note_confirm_delete.html:7
@ -354,19 +313,48 @@ msgstr "Barnet"
msgid "Notes" msgid "Notes"
msgstr "Anteckningar" msgstr "Anteckningar"
#: babybuddy/templates/babybuddy/nav-dropdown.html:171 #: babybuddy/templates/babybuddy/nav-dropdown.html:152
msgid "Measurements" msgid "Measurements"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:185 #: babybuddy/templates/babybuddy/nav-dropdown.html:160 core/models.py:139
msgid "Temperature reading" #: core/models.py:151 core/models.py:152 core/models.py:155
#: core/templates/core/bmi_confirm_delete.html:7
#: core/templates/core/bmi_form.html:13 core/templates/core/bmi_list.html:4
#: core/templates/core/bmi_list.html:7 core/templates/core/bmi_list.html:12
#: core/templates/core/bmi_list.html:29 reports/graphs/bmi_change.py:19
#: reports/graphs/bmi_change.py:30 reports/templates/reports/bmi_change.html:4
#: reports/templates/reports/bmi_change.html:8
msgid "BMI"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:199 #: babybuddy/templates/babybuddy/nav-dropdown.html:166
msgid "Weight entry" #, fuzzy
msgstr "Viktinlägg" #| msgid "Sleep entry"
msgid "BMI entry"
msgstr "Sömninlägg"
#: babybuddy/templates/babybuddy/nav-dropdown.html:207 core/models.py:369 #: babybuddy/templates/babybuddy/nav-dropdown.html:174 core/models.py:338
#: core/models.py:351 core/models.py:352 core/models.py:355
#: core/templates/core/head_circumference_confirm_delete.html:7
#: core/templates/core/head_circumference_form.html:13
#: core/templates/core/head_circumference_list.html:4
#: core/templates/core/head_circumference_list.html:7
#: core/templates/core/head_circumference_list.html:12
#: core/templates/core/head_circumference_list.html:29
#: reports/graphs/head_circumference_change.py:19
#: reports/graphs/head_circumference_change.py:30
#: reports/templates/reports/head_circumference_change.html:4
#: reports/templates/reports/head_circumference_change.html:8
#: reports/templates/reports/report_list.html:16
msgid "Head Circumference"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:180
msgid "Head Circumference entry"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:188 core/models.py:369
#: core/models.py:381 core/models.py:382 core/models.py:385 #: core/models.py:381 core/models.py:382 core/models.py:385
#: core/templates/core/height_confirm_delete.html:7 #: core/templates/core/height_confirm_delete.html:7
#: core/templates/core/height_form.html:13 #: core/templates/core/height_form.html:13
@ -383,63 +371,60 @@ msgstr "Viktinlägg"
msgid "Height" msgid "Height"
msgstr "Vikt" msgstr "Vikt"
#: babybuddy/templates/babybuddy/nav-dropdown.html:213 #: babybuddy/templates/babybuddy/nav-dropdown.html:194
#, fuzzy #, fuzzy
#| msgid "Weight entry" #| msgid "Weight entry"
msgid "Height entry" msgid "Height entry"
msgstr "Viktinlägg" msgstr "Viktinlägg"
#: babybuddy/templates/babybuddy/nav-dropdown.html:221 core/models.py:338 #: babybuddy/templates/babybuddy/nav-dropdown.html:202 core/models.py:506
#: core/models.py:351 core/models.py:352 core/models.py:355 #: core/models.py:519 core/models.py:520 core/models.py:523
#: core/templates/core/head_circumference_confirm_delete.html:7 #: core/templates/core/temperature_confirm_delete.html:7
#: core/templates/core/head_circumference_form.html:13 #: core/templates/core/temperature_form.html:13
#: core/templates/core/head_circumference_list.html:4 #: core/templates/core/temperature_list.html:4
#: core/templates/core/head_circumference_list.html:7 #: core/templates/core/temperature_list.html:7
#: core/templates/core/head_circumference_list.html:12 #: core/templates/core/temperature_list.html:12
#: core/templates/core/head_circumference_list.html:29 #: core/templates/core/temperature_list.html:29
#: reports/graphs/head_circumference_change.py:19 msgid "Temperature"
#: reports/graphs/head_circumference_change.py:30
#: reports/templates/reports/head_circumference_change.html:4
#: reports/templates/reports/head_circumference_change.html:8
#: reports/templates/reports/report_list.html:16
msgid "Head Circumference"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:227 #: babybuddy/templates/babybuddy/nav-dropdown.html:208
msgid "Head Circumference entry" msgid "Temperature reading"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:235 core/models.py:139 #: babybuddy/templates/babybuddy/nav-dropdown.html:216 core/models.py:673
#: core/models.py:151 core/models.py:152 core/models.py:155 #: core/models.py:685 core/models.py:686 core/models.py:689
#: core/templates/core/bmi_confirm_delete.html:7 #: core/templates/core/weight_confirm_delete.html:7
#: core/templates/core/bmi_form.html:13 core/templates/core/bmi_list.html:4 #: core/templates/core/weight_form.html:13
#: core/templates/core/bmi_list.html:7 core/templates/core/bmi_list.html:12 #: core/templates/core/weight_list.html:4
#: core/templates/core/bmi_list.html:29 reports/graphs/bmi_change.py:19 #: core/templates/core/weight_list.html:7
#: reports/graphs/bmi_change.py:30 reports/templates/reports/bmi_change.html:4 #: core/templates/core/weight_list.html:12
#: reports/templates/reports/bmi_change.html:8 #: core/templates/core/weight_list.html:29 reports/graphs/weight_change.py:19
msgid "BMI" #: reports/graphs/weight_change.py:30
msgstr "" #: reports/templates/reports/report_list.html:22
#: reports/templates/reports/weight_change.html:4
#: reports/templates/reports/weight_change.html:8
msgid "Weight"
msgstr "Vikt"
#: babybuddy/templates/babybuddy/nav-dropdown.html:241 #: babybuddy/templates/babybuddy/nav-dropdown.html:222
#, fuzzy msgid "Weight entry"
#| msgid "Sleep entry" msgstr "Viktinlägg"
msgid "BMI entry"
msgstr "Sömninlägg"
#: babybuddy/templates/babybuddy/nav-dropdown.html:255 #: babybuddy/templates/babybuddy/nav-dropdown.html:236
msgid "Activities" msgid "Activities"
msgstr "Aktiviteter" msgstr "Aktiviteter"
#: babybuddy/templates/babybuddy/nav-dropdown.html:262 #: babybuddy/templates/babybuddy/nav-dropdown.html:243
#: reports/graphs/diaperchange_lifetimes.py:27 #: reports/graphs/diaperchange_lifetimes.py:27
msgid "Changes" msgid "Changes"
msgstr "Ändringar" msgstr "Ändringar"
#: babybuddy/templates/babybuddy/nav-dropdown.html:268 #: babybuddy/templates/babybuddy/nav-dropdown.html:249
msgid "Change" msgid "Change"
msgstr "Ändring" msgstr "Ändring"
#: babybuddy/templates/babybuddy/nav-dropdown.html:275 #: babybuddy/templates/babybuddy/nav-dropdown.html:256
#: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313 #: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313
#: core/templates/core/feeding_confirm_delete.html:7 #: core/templates/core/feeding_confirm_delete.html:7
#: core/templates/core/feeding_form.html:13 #: core/templates/core/feeding_form.html:13
@ -449,21 +434,33 @@ msgstr "Ändring"
msgid "Feedings" msgid "Feedings"
msgstr "Matningar" msgstr "Matningar"
#: babybuddy/templates/babybuddy/nav-dropdown.html:294 #: babybuddy/templates/babybuddy/nav-dropdown.html:270 core/models.py:437
msgid "Sleep entry" #: core/models.py:438 core/models.py:441
msgstr "Sömninlägg" #: core/templates/core/pumping_confirm_delete.html:7
#: core/templates/core/pumping_form.html:13
#: core/templates/core/pumping_list.html:4
#: core/templates/core/pumping_list.html:7
#: core/templates/core/pumping_list.html:12
#: reports/templates/reports/pumping_amounts.html:4
#: reports/templates/reports/pumping_amounts.html:8
msgid "Pumping"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:307 #: babybuddy/templates/babybuddy/nav-dropdown.html:276
msgid "Tummy Time entry"
msgstr "Magläge-inlägg"
#: babybuddy/templates/babybuddy/nav-dropdown.html:322
#, fuzzy #, fuzzy
#| msgid "Weight entry" #| msgid "Weight entry"
msgid "Pumping entry" msgid "Pumping entry"
msgstr "Viktinlägg" msgstr "Viktinlägg"
#: babybuddy/templates/babybuddy/nav-dropdown.html:346 #: babybuddy/templates/babybuddy/nav-dropdown.html:289
msgid "Sleep entry"
msgstr "Sömninlägg"
#: babybuddy/templates/babybuddy/nav-dropdown.html:302
msgid "Tummy Time entry"
msgstr "Magläge-inlägg"
#: babybuddy/templates/babybuddy/nav-dropdown.html:326
#: babybuddy/templates/babybuddy/user_list.html:17 #: babybuddy/templates/babybuddy/user_list.html:17
#: babybuddy/templates/babybuddy/user_password_form.html:7 #: babybuddy/templates/babybuddy/user_password_form.html:7
#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556 #: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556
@ -471,23 +468,23 @@ msgstr "Viktinlägg"
msgid "User" msgid "User"
msgstr "Användare" msgstr "Användare"
#: babybuddy/templates/babybuddy/nav-dropdown.html:348 #: babybuddy/templates/babybuddy/nav-dropdown.html:328
msgid "Password" msgid "Password"
msgstr "Lösenord" msgstr "Lösenord"
#: babybuddy/templates/babybuddy/nav-dropdown.html:352 #: babybuddy/templates/babybuddy/nav-dropdown.html:332
msgid "Logout" msgid "Logout"
msgstr "Logga ut" msgstr "Logga ut"
#: babybuddy/templates/babybuddy/nav-dropdown.html:355 #: babybuddy/templates/babybuddy/nav-dropdown.html:335
msgid "Site" msgid "Site"
msgstr "Sidan" msgstr "Sidan"
#: babybuddy/templates/babybuddy/nav-dropdown.html:356 #: babybuddy/templates/babybuddy/nav-dropdown.html:336
msgid "API Browser" msgid "API Browser"
msgstr "API-bläddrare" msgstr "API-bläddrare"
#: babybuddy/templates/babybuddy/nav-dropdown.html:358 #: babybuddy/templates/babybuddy/nav-dropdown.html:338
#: babybuddy/templates/babybuddy/user_confirm_delete.html:7 #: babybuddy/templates/babybuddy/user_confirm_delete.html:7
#: babybuddy/templates/babybuddy/user_form.html:13 #: babybuddy/templates/babybuddy/user_form.html:13
#: babybuddy/templates/babybuddy/user_list.html:4 #: babybuddy/templates/babybuddy/user_list.html:4
@ -495,15 +492,15 @@ msgstr "API-bläddrare"
msgid "Users" msgid "Users"
msgstr "Användare" msgstr "Användare"
#: babybuddy/templates/babybuddy/nav-dropdown.html:361 #: babybuddy/templates/babybuddy/nav-dropdown.html:341
msgid "Support" msgid "Support"
msgstr "Support" msgstr "Support"
#: babybuddy/templates/babybuddy/nav-dropdown.html:363 #: babybuddy/templates/babybuddy/nav-dropdown.html:343
msgid "Source Code" msgid "Source Code"
msgstr "Källkod" msgstr "Källkod"
#: babybuddy/templates/babybuddy/nav-dropdown.html:365 #: babybuddy/templates/babybuddy/nav-dropdown.html:345
msgid "Chat / Support" msgid "Chat / Support"
msgstr "Chatt / Support" msgstr "Chatt / Support"
@ -514,6 +511,7 @@ msgstr "Chatt / Support"
#: core/templates/timeline/_timeline.html:73 #: core/templates/timeline/_timeline.html:73
#: dashboard/templates/cards/feeding_day.html:43 #: dashboard/templates/cards/feeding_day.html:43
#: dashboard/templates/cards/feeding_last_method.html:34 #: dashboard/templates/cards/feeding_last_method.html:34
#: dashboard/templates/cards/sleep_recent.html:43
#: dashboard/templates/cards/statistics.html:34 #: dashboard/templates/cards/statistics.html:34
msgid "Previous" msgid "Previous"
msgstr "Föregående" msgstr "Föregående"
@ -525,6 +523,7 @@ msgstr "Föregående"
#: core/templates/timeline/_timeline.html:80 #: core/templates/timeline/_timeline.html:80
#: dashboard/templates/cards/feeding_day.html:47 #: dashboard/templates/cards/feeding_day.html:47
#: dashboard/templates/cards/feeding_last_method.html:38 #: dashboard/templates/cards/feeding_last_method.html:38
#: dashboard/templates/cards/sleep_recent.html:47
#: dashboard/templates/cards/statistics.html:38 #: dashboard/templates/cards/statistics.html:38
msgid "Next" msgid "Next"
msgstr "Nästa" msgstr "Nästa"
@ -993,7 +992,7 @@ msgstr ""
#: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70 #: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70
#: reports/graphs/feeding_duration.py:56 #: reports/graphs/feeding_duration.py:56
#: reports/graphs/head_circumference_change.py:28 #: reports/graphs/head_circumference_change.py:28
#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:58 #: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60
#: reports/graphs/sleep_pattern.py:151 reports/graphs/sleep_totals.py:59 #: reports/graphs/sleep_pattern.py:151 reports/graphs/sleep_totals.py:59
#: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28 #: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28
msgid "Date" msgid "Date"
@ -1173,7 +1172,7 @@ msgstr ""
#: core/templates/core/bmi_list.html:70 #: core/templates/core/bmi_list.html:70
#, fuzzy #, fuzzy
#| msgid "No timer entries found." #| msgid "No timer entries found."
msgid "No bmi entries found." msgid "No BMI entries found."
msgstr "Inga timer-inlägg funna." msgstr "Inga timer-inlägg funna."
#: core/templates/core/child_confirm_delete.html:4 #: core/templates/core/child_confirm_delete.html:4
@ -1493,9 +1492,10 @@ msgstr "Aktiva timers"
#: dashboard/templates/cards/feeding_day.html:52 #: dashboard/templates/cards/feeding_day.html:52
#: dashboard/templates/cards/feeding_last.html:17 #: dashboard/templates/cards/feeding_last.html:17
#: dashboard/templates/cards/feeding_last_method.html:43 #: dashboard/templates/cards/feeding_last_method.html:43
#: dashboard/templates/cards/sleep_day.html:14
#: dashboard/templates/cards/sleep_last.html:17 #: dashboard/templates/cards/sleep_last.html:17
#: dashboard/templates/cards/sleep_naps_day.html:18 #: dashboard/templates/cards/sleep_naps_day.html:18
#: dashboard/templates/cards/sleep_recent.html:20
#: dashboard/templates/cards/sleep_recent.html:52
#: dashboard/templates/cards/tummytime_day.html:14 #: dashboard/templates/cards/tummytime_day.html:14
msgid "None" msgid "None"
msgstr "Inga" msgstr "Inga"
@ -1616,6 +1616,22 @@ msgstr ""
msgid "0 days" msgid "0 days"
msgstr "" msgstr ""
#: core/templatetags/duration.py:111
#: dashboard/templates/cards/diaperchange_types.html:49
msgid "today"
msgstr "idag"
#: core/templatetags/duration.py:113
#: dashboard/templates/cards/diaperchange_types.html:51
msgid "yesterday"
msgstr "igår"
#: core/templatetags/duration.py:116
#, fuzzy
#| msgid "%(key)s days ago"
msgid " days ago"
msgstr "%(key)s dagar sedan"
#: core/timeline.py:53 #: core/timeline.py:53
#, python-format #, python-format
msgid "%(child)s started tummy time!" msgid "%(child)s started tummy time!"
@ -1755,14 +1771,6 @@ msgstr "våt"
msgid "solid" msgid "solid"
msgstr "fast" msgstr "fast"
#: dashboard/templates/cards/diaperchange_types.html:49
msgid "today"
msgstr "idag"
#: dashboard/templates/cards/diaperchange_types.html:51
msgid "yesterday"
msgstr "igår"
#: dashboard/templates/cards/diaperchange_types.html:53 #: dashboard/templates/cards/diaperchange_types.html:53
#, python-format #, python-format
msgid "%(key)s days ago" msgid "%(key)s days ago"
@ -1781,6 +1789,7 @@ msgstr[0] "%(count)s sömn-inlägg"
msgstr[1] "%(count)s sömn-inlägg" msgstr[1] "%(count)s sömn-inlägg"
#: dashboard/templates/cards/feeding_day.html:32 #: dashboard/templates/cards/feeding_day.html:32
#: dashboard/templates/cards/sleep_recent.html:32
#, python-format #, python-format
msgid "<div class=\"text-center small text-muted\"> %(since)s </div>" msgid "<div class=\"text-center small text-muted\"> %(since)s </div>"
msgstr "" msgstr ""
@ -1805,15 +1814,6 @@ msgid_plural "%(n)s feedings ago"
msgstr[0] "%(key)s dagar sedan" msgstr[0] "%(key)s dagar sedan"
msgstr[1] "%(key)s dagar sedan" msgstr[1] "%(key)s dagar sedan"
#: dashboard/templates/cards/sleep_day.html:6
msgid "Today's Sleep"
msgstr "Sömn idag"
#: dashboard/templates/cards/sleep_day.html:20
#, python-format
msgid "%(count)s sleep entries"
msgstr "%(count)s sömn-inlägg"
#: dashboard/templates/cards/sleep_last.html:6 #: dashboard/templates/cards/sleep_last.html:6
msgid "Last Sleep" msgid "Last Sleep"
msgstr "" msgstr ""
@ -1830,6 +1830,18 @@ msgid_plural "%(count)s naps"
msgstr[0] "%(count)s tupplur%(plural)s" msgstr[0] "%(count)s tupplur%(plural)s"
msgstr[1] "%(count)s tupplur%(plural)s" msgstr[1] "%(count)s tupplur%(plural)s"
#: dashboard/templates/cards/sleep_recent.html:6
msgid "Recent Sleep"
msgstr ""
#: dashboard/templates/cards/sleep_recent.html:25
#, fuzzy, python-format
#| msgid "%(count)s sleep entries"
msgid "%(counter)s sleep"
msgid_plural "%(counter)s sleep"
msgstr[0] "%(count)s sömn-inlägg"
msgstr[1] "%(count)s sömn-inlägg"
#: dashboard/templates/cards/statistics.html:7 #: dashboard/templates/cards/statistics.html:7
msgid "Statistics" msgid "Statistics"
msgstr "Statistik" msgstr "Statistik"
@ -1882,69 +1894,69 @@ msgstr "Barnåtgärder"
msgid "Reports" msgid "Reports"
msgstr "Rapporter" msgstr "Rapporter"
#: dashboard/templatetags/cards.py:328 #: dashboard/templatetags/cards.py:357
msgid "Average nap duration" msgid "Average nap duration"
msgstr "Genomsnittlig tupplurslängd" msgstr "Genomsnittlig tupplurslängd"
#: dashboard/templatetags/cards.py:335 #: dashboard/templatetags/cards.py:364
msgid "Average naps per day" msgid "Average naps per day"
msgstr "Genomsnittlig mängd tupplurer per dag" msgstr "Genomsnittlig mängd tupplurer per dag"
#: dashboard/templatetags/cards.py:345 #: dashboard/templatetags/cards.py:374
msgid "Average sleep duration" msgid "Average sleep duration"
msgstr "Genomsnittlig sömnlängd" msgstr "Genomsnittlig sömnlängd"
#: dashboard/templatetags/cards.py:352 #: dashboard/templatetags/cards.py:381
msgid "Average awake duration" msgid "Average awake duration"
msgstr "Genomsnittlig vakentid" msgstr "Genomsnittlig vakentid"
#: dashboard/templatetags/cards.py:362 #: dashboard/templatetags/cards.py:391
msgid "Weight change per week" msgid "Weight change per week"
msgstr "Viktförändring per vecka" msgstr "Viktförändring per vecka"
#: dashboard/templatetags/cards.py:372 #: dashboard/templatetags/cards.py:401
#, fuzzy #, fuzzy
#| msgid "Weight change per week" #| msgid "Weight change per week"
msgid "Height change per week" msgid "Height change per week"
msgstr "Viktförändring per vecka" msgstr "Viktförändring per vecka"
#: dashboard/templatetags/cards.py:382 #: dashboard/templatetags/cards.py:411
#, fuzzy #, fuzzy
#| msgid "Weight change per week" #| msgid "Weight change per week"
msgid "Head circumference change per week" msgid "Head circumference change per week"
msgstr "Viktförändring per vecka" msgstr "Viktförändring per vecka"
#: dashboard/templatetags/cards.py:392 #: dashboard/templatetags/cards.py:421
#, fuzzy #, fuzzy
#| msgid "Weight change per week" #| msgid "Weight change per week"
msgid "BMI change per week" msgid "BMI change per week"
msgstr "Viktförändring per vecka" msgstr "Viktförändring per vecka"
#: dashboard/templatetags/cards.py:410 #: dashboard/templatetags/cards.py:439
#, fuzzy #, fuzzy
#| msgid "Diaper change frequency" #| msgid "Diaper change frequency"
msgid "Diaper change frequency (past 3 days)" msgid "Diaper change frequency (past 3 days)"
msgstr "Blöjbytesfrekvens" msgstr "Blöjbytesfrekvens"
#: dashboard/templatetags/cards.py:414 #: dashboard/templatetags/cards.py:443
#, fuzzy #, fuzzy
#| msgid "Diaper change frequency" #| msgid "Diaper change frequency"
msgid "Diaper change frequency (past 2 weeks)" msgid "Diaper change frequency (past 2 weeks)"
msgstr "Blöjbytesfrekvens" msgstr "Blöjbytesfrekvens"
#: dashboard/templatetags/cards.py:420 #: dashboard/templatetags/cards.py:449
msgid "Diaper change frequency" msgid "Diaper change frequency"
msgstr "Blöjbytesfrekvens" msgstr "Blöjbytesfrekvens"
#: dashboard/templatetags/cards.py:456 #: dashboard/templatetags/cards.py:485
msgid "Feeding frequency (past 3 days)" msgid "Feeding frequency (past 3 days)"
msgstr "" msgstr ""
#: dashboard/templatetags/cards.py:460 #: dashboard/templatetags/cards.py:489
msgid "Feeding frequency (past 2 weeks)" msgid "Feeding frequency (past 2 weeks)"
msgstr "" msgstr ""
#: dashboard/templatetags/cards.py:466 #: dashboard/templatetags/cards.py:495
msgid "Feeding frequency" msgid "Feeding frequency"
msgstr "Matningsfrekvens" msgstr "Matningsfrekvens"
@ -2026,13 +2038,13 @@ msgstr ""
msgid "<b>Height</b>" msgid "<b>Height</b>"
msgstr "<b>Vikt</b>" msgstr "<b>Vikt</b>"
#: reports/graphs/pumping_amounts.py:57 #: reports/graphs/pumping_amounts.py:59
#, fuzzy #, fuzzy
#| msgid "<b>Total Feeding Amounts</b>" #| msgid "<b>Total Feeding Amounts</b>"
msgid "<b>Total Pumping Amount</b>" msgid "<b>Total Pumping Amount</b>"
msgstr "<b>Genomsnittlig matningsvaraktighet</b>" msgstr "<b>Genomsnittlig matningsvaraktighet</b>"
#: reports/graphs/pumping_amounts.py:60 #: reports/graphs/pumping_amounts.py:62
#, fuzzy #, fuzzy
#| msgid "Feeding Amounts" #| msgid "Feeding Amounts"
msgid "Pumping Amount" msgid "Pumping Amount"
@ -2149,3 +2161,10 @@ msgstr ""
#: reports/templates/reports/tummytime_duration.html:8 #: reports/templates/reports/tummytime_duration.html:8
msgid "Total Tummy Time Durations" msgid "Total Tummy Time Durations"
msgstr "" msgstr ""
#~ msgid "Today's Sleep"
#~ msgstr "Sömn idag"
#, python-format
#~ msgid "%(count)s sleep entries"
#~ msgstr "%(count)s sömn-inlägg"

Binary file not shown.

View File

@ -2,7 +2,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Baby Buddy\n" "Project-Id-Version: Baby Buddy\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-06-05 13:25+0000\n" "POT-Creation-Date: 2022-06-17 22:25+0000\n"
"Language: tr\n" "Language: tr\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -11,12 +11,12 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n>1);\n" "Plural-Forms: nplurals=2; plural=(n>1);\n"
#: babybuddy/admin.py:12 babybuddy/admin.py:13 #: babybuddy/admin.py:12 babybuddy/admin.py:13
#: babybuddy/templates/babybuddy/nav-dropdown.html:347 #: babybuddy/templates/babybuddy/nav-dropdown.html:327
#: babybuddy/templates/babybuddy/user_settings_form.html:8 #: babybuddy/templates/babybuddy/user_settings_form.html:8
msgid "Settings" msgid "Settings"
msgstr "Ayarlar" msgstr "Ayarlar"
#: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:111 #: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:92
#: babybuddy/templates/babybuddy/user_settings_form.html:61 #: babybuddy/templates/babybuddy/user_settings_form.html:61
#: dashboard/templates/dashboard/child.html:4 #: dashboard/templates/dashboard/child.html:4
#: dashboard/templates/dashboard/child.html:9 #: dashboard/templates/dashboard/child.html:9
@ -186,7 +186,7 @@ msgstr "Türkçe"
#: babybuddy/templates/admin/base_site.html:4 #: babybuddy/templates/admin/base_site.html:4
#: babybuddy/templates/admin/base_site.html:7 #: babybuddy/templates/admin/base_site.html:7
#: babybuddy/templates/babybuddy/nav-dropdown.html:359 #: babybuddy/templates/babybuddy/nav-dropdown.html:339
msgid "Database Admin" msgid "Database Admin"
msgstr "Veritabanı Admin" msgstr "Veritabanı Admin"
@ -235,19 +235,19 @@ msgid "Diaper Change"
msgstr "Bez Değişimi" msgstr "Bez Değişimi"
#: babybuddy/templates/babybuddy/nav-dropdown.html:57 #: babybuddy/templates/babybuddy/nav-dropdown.html:57
#: babybuddy/templates/babybuddy/nav-dropdown.html:281 core/models.py:312 #: babybuddy/templates/babybuddy/nav-dropdown.html:262 core/models.py:312
#: core/models.py:316 core/templates/core/timer_detail.html:43 #: core/models.py:316 core/templates/core/timer_detail.html:43
msgid "Feeding" msgid "Feeding"
msgstr "Beslenme" msgstr "Beslenme"
#: babybuddy/templates/babybuddy/nav-dropdown.html:63 #: babybuddy/templates/babybuddy/nav-dropdown.html:63
#: babybuddy/templates/babybuddy/nav-dropdown.html:157 core/models.py:396 #: babybuddy/templates/babybuddy/nav-dropdown.html:138 core/models.py:396
#: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29 #: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29
msgid "Note" msgid "Note"
msgstr "Not" msgstr "Not"
#: babybuddy/templates/babybuddy/nav-dropdown.html:69 #: babybuddy/templates/babybuddy/nav-dropdown.html:69
#: babybuddy/templates/babybuddy/nav-dropdown.html:288 #: babybuddy/templates/babybuddy/nav-dropdown.html:283
#: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467 #: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467
#: core/models.py:468 core/models.py:471 #: core/models.py:468 core/models.py:471
#: core/templates/core/sleep_confirm_delete.html:7 #: core/templates/core/sleep_confirm_delete.html:7
@ -258,19 +258,7 @@ msgid "Sleep"
msgstr "Uyku" msgstr "Uyku"
#: babybuddy/templates/babybuddy/nav-dropdown.html:75 #: babybuddy/templates/babybuddy/nav-dropdown.html:75
#: babybuddy/templates/babybuddy/nav-dropdown.html:179 core/models.py:506 #: babybuddy/templates/babybuddy/nav-dropdown.html:296
#: core/models.py:519 core/models.py:520 core/models.py:523
#: core/templates/core/temperature_confirm_delete.html:7
#: core/templates/core/temperature_form.html:13
#: core/templates/core/temperature_list.html:4
#: core/templates/core/temperature_list.html:7
#: core/templates/core/temperature_list.html:12
#: core/templates/core/temperature_list.html:29
msgid "Temperature"
msgstr "Sıcaklık"
#: babybuddy/templates/babybuddy/nav-dropdown.html:81
#: babybuddy/templates/babybuddy/nav-dropdown.html:301
#: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647 #: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647
#: core/models.py:648 core/models.py:651 #: core/models.py:648 core/models.py:651
#: core/templates/core/timer_detail.html:59 #: core/templates/core/timer_detail.html:59
@ -282,44 +270,15 @@ msgstr "Sıcaklık"
msgid "Tummy Time" msgid "Tummy Time"
msgstr "Karın üstü zamanı" msgstr "Karın üstü zamanı"
#: babybuddy/templates/babybuddy/nav-dropdown.html:87 #: babybuddy/templates/babybuddy/nav-dropdown.html:99
#: babybuddy/templates/babybuddy/nav-dropdown.html:193 core/models.py:673
#: core/models.py:685 core/models.py:686 core/models.py:689
#: core/templates/core/weight_confirm_delete.html:7
#: core/templates/core/weight_form.html:13
#: core/templates/core/weight_list.html:4
#: core/templates/core/weight_list.html:7
#: core/templates/core/weight_list.html:12
#: core/templates/core/weight_list.html:29 reports/graphs/weight_change.py:19
#: reports/graphs/weight_change.py:30
#: reports/templates/reports/report_list.html:22
#: reports/templates/reports/weight_change.html:4
#: reports/templates/reports/weight_change.html:8
msgid "Weight"
msgstr "Ağırlık"
#: babybuddy/templates/babybuddy/nav-dropdown.html:93
#: babybuddy/templates/babybuddy/nav-dropdown.html:316 core/models.py:437
#: core/models.py:438 core/models.py:441
#: core/templates/core/pumping_confirm_delete.html:7
#: core/templates/core/pumping_form.html:13
#: core/templates/core/pumping_list.html:4
#: core/templates/core/pumping_list.html:7
#: core/templates/core/pumping_list.html:12
#: reports/templates/reports/pumping_amounts.html:4
#: reports/templates/reports/pumping_amounts.html:8
msgid "Pumping"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:118
#: core/templates/timeline/timeline.html:4 #: core/templates/timeline/timeline.html:4
#: core/templates/timeline/timeline.html:7 #: core/templates/timeline/timeline.html:7
#: dashboard/templates/dashboard/child_button_group.html:9 #: dashboard/templates/dashboard/child_button_group.html:9
msgid "Timeline" msgid "Timeline"
msgstr "Zaman çizelgesi" msgstr "Zaman çizelgesi"
#: babybuddy/templates/babybuddy/nav-dropdown.html:129 #: babybuddy/templates/babybuddy/nav-dropdown.html:110
#: babybuddy/templates/babybuddy/nav-dropdown.html:137 core/models.py:188 #: babybuddy/templates/babybuddy/nav-dropdown.html:118 core/models.py:188
#: core/templates/core/child_confirm_delete.html:7 #: core/templates/core/child_confirm_delete.html:7
#: core/templates/core/child_detail.html:7 #: core/templates/core/child_detail.html:7
#: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4 #: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4
@ -329,7 +288,7 @@ msgstr "Zaman çizelgesi"
msgid "Children" msgid "Children"
msgstr "Çocuklar" msgstr "Çocuklar"
#: babybuddy/templates/babybuddy/nav-dropdown.html:143 core/models.py:137 #: babybuddy/templates/babybuddy/nav-dropdown.html:124 core/models.py:137
#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335 #: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335
#: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450 #: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450
#: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671 #: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671
@ -348,7 +307,7 @@ msgstr "Çocuklar"
msgid "Child" msgid "Child"
msgstr "Çocuk" msgstr "Çocuk"
#: babybuddy/templates/babybuddy/nav-dropdown.html:151 core/models.py:143 #: babybuddy/templates/babybuddy/nav-dropdown.html:132 core/models.py:143
#: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373 #: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373
#: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511 #: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511
#: core/models.py:677 core/templates/core/note_confirm_delete.html:7 #: core/models.py:677 core/templates/core/note_confirm_delete.html:7
@ -357,19 +316,48 @@ msgstr "Çocuk"
msgid "Notes" msgid "Notes"
msgstr "Notlar" msgstr "Notlar"
#: babybuddy/templates/babybuddy/nav-dropdown.html:171 #: babybuddy/templates/babybuddy/nav-dropdown.html:152
msgid "Measurements" msgid "Measurements"
msgstr "" msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:185 #: babybuddy/templates/babybuddy/nav-dropdown.html:160 core/models.py:139
msgid "Temperature reading" #: core/models.py:151 core/models.py:152 core/models.py:155
msgstr "Sıcaklık okuma" #: core/templates/core/bmi_confirm_delete.html:7
#: core/templates/core/bmi_form.html:13 core/templates/core/bmi_list.html:4
#: core/templates/core/bmi_list.html:7 core/templates/core/bmi_list.html:12
#: core/templates/core/bmi_list.html:29 reports/graphs/bmi_change.py:19
#: reports/graphs/bmi_change.py:30 reports/templates/reports/bmi_change.html:4
#: reports/templates/reports/bmi_change.html:8
msgid "BMI"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:199 #: babybuddy/templates/babybuddy/nav-dropdown.html:166
msgid "Weight entry" #, fuzzy
msgstr "Ağırlık girdisi" #| msgid "Sleep entry"
msgid "BMI entry"
msgstr "Uyku Girişi"
#: babybuddy/templates/babybuddy/nav-dropdown.html:207 core/models.py:369 #: babybuddy/templates/babybuddy/nav-dropdown.html:174 core/models.py:338
#: core/models.py:351 core/models.py:352 core/models.py:355
#: core/templates/core/head_circumference_confirm_delete.html:7
#: core/templates/core/head_circumference_form.html:13
#: core/templates/core/head_circumference_list.html:4
#: core/templates/core/head_circumference_list.html:7
#: core/templates/core/head_circumference_list.html:12
#: core/templates/core/head_circumference_list.html:29
#: reports/graphs/head_circumference_change.py:19
#: reports/graphs/head_circumference_change.py:30
#: reports/templates/reports/head_circumference_change.html:4
#: reports/templates/reports/head_circumference_change.html:8
#: reports/templates/reports/report_list.html:16
msgid "Head Circumference"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:180
msgid "Head Circumference entry"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:188 core/models.py:369
#: core/models.py:381 core/models.py:382 core/models.py:385 #: core/models.py:381 core/models.py:382 core/models.py:385
#: core/templates/core/height_confirm_delete.html:7 #: core/templates/core/height_confirm_delete.html:7
#: core/templates/core/height_form.html:13 #: core/templates/core/height_form.html:13
@ -386,63 +374,60 @@ msgstr "Ağırlık girdisi"
msgid "Height" msgid "Height"
msgstr "Ağırlık" msgstr "Ağırlık"
#: babybuddy/templates/babybuddy/nav-dropdown.html:213 #: babybuddy/templates/babybuddy/nav-dropdown.html:194
#, fuzzy #, fuzzy
#| msgid "Weight entry" #| msgid "Weight entry"
msgid "Height entry" msgid "Height entry"
msgstr "Ağırlık girdisi" msgstr "Ağırlık girdisi"
#: babybuddy/templates/babybuddy/nav-dropdown.html:221 core/models.py:338 #: babybuddy/templates/babybuddy/nav-dropdown.html:202 core/models.py:506
#: core/models.py:351 core/models.py:352 core/models.py:355 #: core/models.py:519 core/models.py:520 core/models.py:523
#: core/templates/core/head_circumference_confirm_delete.html:7 #: core/templates/core/temperature_confirm_delete.html:7
#: core/templates/core/head_circumference_form.html:13 #: core/templates/core/temperature_form.html:13
#: core/templates/core/head_circumference_list.html:4 #: core/templates/core/temperature_list.html:4
#: core/templates/core/head_circumference_list.html:7 #: core/templates/core/temperature_list.html:7
#: core/templates/core/head_circumference_list.html:12 #: core/templates/core/temperature_list.html:12
#: core/templates/core/head_circumference_list.html:29 #: core/templates/core/temperature_list.html:29
#: reports/graphs/head_circumference_change.py:19 msgid "Temperature"
#: reports/graphs/head_circumference_change.py:30 msgstr "Sıcaklık"
#: reports/templates/reports/head_circumference_change.html:4
#: reports/templates/reports/head_circumference_change.html:8
#: reports/templates/reports/report_list.html:16
msgid "Head Circumference"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:227 #: babybuddy/templates/babybuddy/nav-dropdown.html:208
msgid "Head Circumference entry" msgid "Temperature reading"
msgstr "" msgstr "Sıcaklık okuma"
#: babybuddy/templates/babybuddy/nav-dropdown.html:235 core/models.py:139 #: babybuddy/templates/babybuddy/nav-dropdown.html:216 core/models.py:673
#: core/models.py:151 core/models.py:152 core/models.py:155 #: core/models.py:685 core/models.py:686 core/models.py:689
#: core/templates/core/bmi_confirm_delete.html:7 #: core/templates/core/weight_confirm_delete.html:7
#: core/templates/core/bmi_form.html:13 core/templates/core/bmi_list.html:4 #: core/templates/core/weight_form.html:13
#: core/templates/core/bmi_list.html:7 core/templates/core/bmi_list.html:12 #: core/templates/core/weight_list.html:4
#: core/templates/core/bmi_list.html:29 reports/graphs/bmi_change.py:19 #: core/templates/core/weight_list.html:7
#: reports/graphs/bmi_change.py:30 reports/templates/reports/bmi_change.html:4 #: core/templates/core/weight_list.html:12
#: reports/templates/reports/bmi_change.html:8 #: core/templates/core/weight_list.html:29 reports/graphs/weight_change.py:19
msgid "BMI" #: reports/graphs/weight_change.py:30
msgstr "" #: reports/templates/reports/report_list.html:22
#: reports/templates/reports/weight_change.html:4
#: reports/templates/reports/weight_change.html:8
msgid "Weight"
msgstr "Ağırlık"
#: babybuddy/templates/babybuddy/nav-dropdown.html:241 #: babybuddy/templates/babybuddy/nav-dropdown.html:222
#, fuzzy msgid "Weight entry"
#| msgid "Sleep entry" msgstr "Ağırlık girdisi"
msgid "BMI entry"
msgstr "Uyku Girişi"
#: babybuddy/templates/babybuddy/nav-dropdown.html:255 #: babybuddy/templates/babybuddy/nav-dropdown.html:236
msgid "Activities" msgid "Activities"
msgstr "Faaliyetler" msgstr "Faaliyetler"
#: babybuddy/templates/babybuddy/nav-dropdown.html:262 #: babybuddy/templates/babybuddy/nav-dropdown.html:243
#: reports/graphs/diaperchange_lifetimes.py:27 #: reports/graphs/diaperchange_lifetimes.py:27
msgid "Changes" msgid "Changes"
msgstr "Değişimler" msgstr "Değişimler"
#: babybuddy/templates/babybuddy/nav-dropdown.html:268 #: babybuddy/templates/babybuddy/nav-dropdown.html:249
msgid "Change" msgid "Change"
msgstr "Değişim" msgstr "Değişim"
#: babybuddy/templates/babybuddy/nav-dropdown.html:275 #: babybuddy/templates/babybuddy/nav-dropdown.html:256
#: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313 #: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313
#: core/templates/core/feeding_confirm_delete.html:7 #: core/templates/core/feeding_confirm_delete.html:7
#: core/templates/core/feeding_form.html:13 #: core/templates/core/feeding_form.html:13
@ -452,21 +437,33 @@ msgstr "Değişim"
msgid "Feedings" msgid "Feedings"
msgstr "Beslenmeler" msgstr "Beslenmeler"
#: babybuddy/templates/babybuddy/nav-dropdown.html:294 #: babybuddy/templates/babybuddy/nav-dropdown.html:270 core/models.py:437
msgid "Sleep entry" #: core/models.py:438 core/models.py:441
msgstr "Uyku Girişi" #: core/templates/core/pumping_confirm_delete.html:7
#: core/templates/core/pumping_form.html:13
#: core/templates/core/pumping_list.html:4
#: core/templates/core/pumping_list.html:7
#: core/templates/core/pumping_list.html:12
#: reports/templates/reports/pumping_amounts.html:4
#: reports/templates/reports/pumping_amounts.html:8
msgid "Pumping"
msgstr ""
#: babybuddy/templates/babybuddy/nav-dropdown.html:307 #: babybuddy/templates/babybuddy/nav-dropdown.html:276
msgid "Tummy Time entry"
msgstr "Karın Üstü Zaman Girişi"
#: babybuddy/templates/babybuddy/nav-dropdown.html:322
#, fuzzy #, fuzzy
#| msgid "Weight entry" #| msgid "Weight entry"
msgid "Pumping entry" msgid "Pumping entry"
msgstr "Ağırlık girdisi" msgstr "Ağırlık girdisi"
#: babybuddy/templates/babybuddy/nav-dropdown.html:346 #: babybuddy/templates/babybuddy/nav-dropdown.html:289
msgid "Sleep entry"
msgstr "Uyku Girişi"
#: babybuddy/templates/babybuddy/nav-dropdown.html:302
msgid "Tummy Time entry"
msgstr "Karın Üstü Zaman Girişi"
#: babybuddy/templates/babybuddy/nav-dropdown.html:326
#: babybuddy/templates/babybuddy/user_list.html:17 #: babybuddy/templates/babybuddy/user_list.html:17
#: babybuddy/templates/babybuddy/user_password_form.html:7 #: babybuddy/templates/babybuddy/user_password_form.html:7
#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556 #: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556
@ -474,23 +471,23 @@ msgstr "Ağırlık girdisi"
msgid "User" msgid "User"
msgstr "Kullanıcı" msgstr "Kullanıcı"
#: babybuddy/templates/babybuddy/nav-dropdown.html:348 #: babybuddy/templates/babybuddy/nav-dropdown.html:328
msgid "Password" msgid "Password"
msgstr "Şifre" msgstr "Şifre"
#: babybuddy/templates/babybuddy/nav-dropdown.html:352 #: babybuddy/templates/babybuddy/nav-dropdown.html:332
msgid "Logout" msgid "Logout"
msgstr "Çıkış" msgstr "Çıkış"
#: babybuddy/templates/babybuddy/nav-dropdown.html:355 #: babybuddy/templates/babybuddy/nav-dropdown.html:335
msgid "Site" msgid "Site"
msgstr "Site" msgstr "Site"
#: babybuddy/templates/babybuddy/nav-dropdown.html:356 #: babybuddy/templates/babybuddy/nav-dropdown.html:336
msgid "API Browser" msgid "API Browser"
msgstr "API Görüntüleyici" msgstr "API Görüntüleyici"
#: babybuddy/templates/babybuddy/nav-dropdown.html:358 #: babybuddy/templates/babybuddy/nav-dropdown.html:338
#: babybuddy/templates/babybuddy/user_confirm_delete.html:7 #: babybuddy/templates/babybuddy/user_confirm_delete.html:7
#: babybuddy/templates/babybuddy/user_form.html:13 #: babybuddy/templates/babybuddy/user_form.html:13
#: babybuddy/templates/babybuddy/user_list.html:4 #: babybuddy/templates/babybuddy/user_list.html:4
@ -498,15 +495,15 @@ msgstr "API Görüntüleyici"
msgid "Users" msgid "Users"
msgstr "Kullanıcılar" msgstr "Kullanıcılar"
#: babybuddy/templates/babybuddy/nav-dropdown.html:361 #: babybuddy/templates/babybuddy/nav-dropdown.html:341
msgid "Support" msgid "Support"
msgstr "Destek" msgstr "Destek"
#: babybuddy/templates/babybuddy/nav-dropdown.html:363 #: babybuddy/templates/babybuddy/nav-dropdown.html:343
msgid "Source Code" msgid "Source Code"
msgstr "Kaynak Kod" msgstr "Kaynak Kod"
#: babybuddy/templates/babybuddy/nav-dropdown.html:365 #: babybuddy/templates/babybuddy/nav-dropdown.html:345
msgid "Chat / Support" msgid "Chat / Support"
msgstr "Sohbet / Destek" msgstr "Sohbet / Destek"
@ -517,6 +514,7 @@ msgstr "Sohbet / Destek"
#: core/templates/timeline/_timeline.html:73 #: core/templates/timeline/_timeline.html:73
#: dashboard/templates/cards/feeding_day.html:43 #: dashboard/templates/cards/feeding_day.html:43
#: dashboard/templates/cards/feeding_last_method.html:34 #: dashboard/templates/cards/feeding_last_method.html:34
#: dashboard/templates/cards/sleep_recent.html:43
#: dashboard/templates/cards/statistics.html:34 #: dashboard/templates/cards/statistics.html:34
msgid "Previous" msgid "Previous"
msgstr "Önceki" msgstr "Önceki"
@ -528,6 +526,7 @@ msgstr "Önceki"
#: core/templates/timeline/_timeline.html:80 #: core/templates/timeline/_timeline.html:80
#: dashboard/templates/cards/feeding_day.html:47 #: dashboard/templates/cards/feeding_day.html:47
#: dashboard/templates/cards/feeding_last_method.html:38 #: dashboard/templates/cards/feeding_last_method.html:38
#: dashboard/templates/cards/sleep_recent.html:47
#: dashboard/templates/cards/statistics.html:38 #: dashboard/templates/cards/statistics.html:38
msgid "Next" msgid "Next"
msgstr "Sonraki" msgstr "Sonraki"
@ -996,7 +995,7 @@ msgstr ""
#: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70 #: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70
#: reports/graphs/feeding_duration.py:56 #: reports/graphs/feeding_duration.py:56
#: reports/graphs/head_circumference_change.py:28 #: reports/graphs/head_circumference_change.py:28
#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:58 #: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60
#: reports/graphs/sleep_pattern.py:151 reports/graphs/sleep_totals.py:59 #: reports/graphs/sleep_pattern.py:151 reports/graphs/sleep_totals.py:59
#: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28 #: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28
msgid "Date" msgid "Date"
@ -1176,7 +1175,7 @@ msgstr ""
#: core/templates/core/bmi_list.html:70 #: core/templates/core/bmi_list.html:70
#, fuzzy #, fuzzy
#| msgid "No timer entries found." #| msgid "No timer entries found."
msgid "No bmi entries found." msgid "No BMI entries found."
msgstr "Zamanlayıcı girdisi bulunamadı" msgstr "Zamanlayıcı girdisi bulunamadı"
#: core/templates/core/child_confirm_delete.html:4 #: core/templates/core/child_confirm_delete.html:4
@ -1496,9 +1495,10 @@ msgstr "Etkin Zamanlayıcılar"
#: dashboard/templates/cards/feeding_day.html:52 #: dashboard/templates/cards/feeding_day.html:52
#: dashboard/templates/cards/feeding_last.html:17 #: dashboard/templates/cards/feeding_last.html:17
#: dashboard/templates/cards/feeding_last_method.html:43 #: dashboard/templates/cards/feeding_last_method.html:43
#: dashboard/templates/cards/sleep_day.html:14
#: dashboard/templates/cards/sleep_last.html:17 #: dashboard/templates/cards/sleep_last.html:17
#: dashboard/templates/cards/sleep_naps_day.html:18 #: dashboard/templates/cards/sleep_naps_day.html:18
#: dashboard/templates/cards/sleep_recent.html:20
#: dashboard/templates/cards/sleep_recent.html:52
#: dashboard/templates/cards/tummytime_day.html:14 #: dashboard/templates/cards/tummytime_day.html:14
msgid "None" msgid "None"
msgstr "Hiç" msgstr "Hiç"
@ -1619,6 +1619,22 @@ msgstr "{}, {}"
msgid "0 days" msgid "0 days"
msgstr "0 gün" msgstr "0 gün"
#: core/templatetags/duration.py:111
#: dashboard/templates/cards/diaperchange_types.html:49
msgid "today"
msgstr "bugün"
#: core/templatetags/duration.py:113
#: dashboard/templates/cards/diaperchange_types.html:51
msgid "yesterday"
msgstr "dün"
#: core/templatetags/duration.py:116
#, fuzzy
#| msgid "%(key)s days ago"
msgid " days ago"
msgstr "%(key)s gün önce"
#: core/timeline.py:53 #: core/timeline.py:53
#, python-format #, python-format
msgid "%(child)s started tummy time!" msgid "%(child)s started tummy time!"
@ -1759,14 +1775,6 @@ msgstr "ıslak"
msgid "solid" msgid "solid"
msgstr "kuru" msgstr "kuru"
#: dashboard/templates/cards/diaperchange_types.html:49
msgid "today"
msgstr "bugün"
#: dashboard/templates/cards/diaperchange_types.html:51
msgid "yesterday"
msgstr "dün"
#: dashboard/templates/cards/diaperchange_types.html:53 #: dashboard/templates/cards/diaperchange_types.html:53
#, python-format #, python-format
msgid "%(key)s days ago" msgid "%(key)s days ago"
@ -1785,6 +1793,7 @@ msgstr[0] "%(count)s uygu girdileri"
msgstr[1] "%(count)s uygu girdileri" msgstr[1] "%(count)s uygu girdileri"
#: dashboard/templates/cards/feeding_day.html:32 #: dashboard/templates/cards/feeding_day.html:32
#: dashboard/templates/cards/sleep_recent.html:32
#, python-format #, python-format
msgid "<div class=\"text-center small text-muted\"> %(since)s </div>" msgid "<div class=\"text-center small text-muted\"> %(since)s </div>"
msgstr "" msgstr ""
@ -1809,15 +1818,6 @@ msgid_plural "%(n)s feedings ago"
msgstr[0] "%(n) beslenmeler önce" msgstr[0] "%(n) beslenmeler önce"
msgstr[1] "%(n) beslenmeler önce" msgstr[1] "%(n) beslenmeler önce"
#: dashboard/templates/cards/sleep_day.html:6
msgid "Today's Sleep"
msgstr "Bugünkü Uyku"
#: dashboard/templates/cards/sleep_day.html:20
#, python-format
msgid "%(count)s sleep entries"
msgstr "%(count)s uygu girdileri"
#: dashboard/templates/cards/sleep_last.html:6 #: dashboard/templates/cards/sleep_last.html:6
msgid "Last Sleep" msgid "Last Sleep"
msgstr "En Son Uyku" msgstr "En Son Uyku"
@ -1834,6 +1834,20 @@ msgid_plural "%(count)s naps"
msgstr[0] "%(count)s kısa uyku%(plural)s" msgstr[0] "%(count)s kısa uyku%(plural)s"
msgstr[1] "%(count)s kısa uyku%(plural)s" msgstr[1] "%(count)s kısa uyku%(plural)s"
#: dashboard/templates/cards/sleep_recent.html:6
#, fuzzy
#| msgid "Last Sleep"
msgid "Recent Sleep"
msgstr "En Son Uyku"
#: dashboard/templates/cards/sleep_recent.html:25
#, fuzzy, python-format
#| msgid "%(count)s sleep entries"
msgid "%(counter)s sleep"
msgid_plural "%(counter)s sleep"
msgstr[0] "%(count)s uygu girdileri"
msgstr[1] "%(count)s uygu girdileri"
#: dashboard/templates/cards/statistics.html:7 #: dashboard/templates/cards/statistics.html:7
msgid "Statistics" msgid "Statistics"
msgstr "İstatistikler" msgstr "İstatistikler"
@ -1886,69 +1900,69 @@ msgstr "Çocuk eylemleri"
msgid "Reports" msgid "Reports"
msgstr "Raporlar" msgstr "Raporlar"
#: dashboard/templatetags/cards.py:328 #: dashboard/templatetags/cards.py:357
msgid "Average nap duration" msgid "Average nap duration"
msgstr "Ortalama kısa uyku süresi" msgstr "Ortalama kısa uyku süresi"
#: dashboard/templatetags/cards.py:335 #: dashboard/templatetags/cards.py:364
msgid "Average naps per day" msgid "Average naps per day"
msgstr "Ortalama günlük kısa uyku" msgstr "Ortalama günlük kısa uyku"
#: dashboard/templatetags/cards.py:345 #: dashboard/templatetags/cards.py:374
msgid "Average sleep duration" msgid "Average sleep duration"
msgstr "Ortalama uyku süresi" msgstr "Ortalama uyku süresi"
#: dashboard/templatetags/cards.py:352 #: dashboard/templatetags/cards.py:381
msgid "Average awake duration" msgid "Average awake duration"
msgstr "Ortalama uyanıklık süresi" msgstr "Ortalama uyanıklık süresi"
#: dashboard/templatetags/cards.py:362 #: dashboard/templatetags/cards.py:391
msgid "Weight change per week" msgid "Weight change per week"
msgstr "Haftalık ağırlık değişimi" msgstr "Haftalık ağırlık değişimi"
#: dashboard/templatetags/cards.py:372 #: dashboard/templatetags/cards.py:401
#, fuzzy #, fuzzy
#| msgid "Weight change per week" #| msgid "Weight change per week"
msgid "Height change per week" msgid "Height change per week"
msgstr "Haftalık ağırlık değişimi" msgstr "Haftalık ağırlık değişimi"
#: dashboard/templatetags/cards.py:382 #: dashboard/templatetags/cards.py:411
#, fuzzy #, fuzzy
#| msgid "Weight change per week" #| msgid "Weight change per week"
msgid "Head circumference change per week" msgid "Head circumference change per week"
msgstr "Haftalık ağırlık değişimi" msgstr "Haftalık ağırlık değişimi"
#: dashboard/templatetags/cards.py:392 #: dashboard/templatetags/cards.py:421
#, fuzzy #, fuzzy
#| msgid "Weight change per week" #| msgid "Weight change per week"
msgid "BMI change per week" msgid "BMI change per week"
msgstr "Haftalık ağırlık değişimi" msgstr "Haftalık ağırlık değişimi"
#: dashboard/templatetags/cards.py:410 #: dashboard/templatetags/cards.py:439
#, fuzzy #, fuzzy
#| msgid "Feeding frequency (past 3 days)" #| msgid "Feeding frequency (past 3 days)"
msgid "Diaper change frequency (past 3 days)" msgid "Diaper change frequency (past 3 days)"
msgstr "Beslenme sıklığı (son 3 gün)" msgstr "Beslenme sıklığı (son 3 gün)"
#: dashboard/templatetags/cards.py:414 #: dashboard/templatetags/cards.py:443
#, fuzzy #, fuzzy
#| msgid "Feeding frequency (past 2 weeks)" #| msgid "Feeding frequency (past 2 weeks)"
msgid "Diaper change frequency (past 2 weeks)" msgid "Diaper change frequency (past 2 weeks)"
msgstr "Beslenme sıklığı (son 2 hafta)" msgstr "Beslenme sıklığı (son 2 hafta)"
#: dashboard/templatetags/cards.py:420 #: dashboard/templatetags/cards.py:449
msgid "Diaper change frequency" msgid "Diaper change frequency"
msgstr "Bez değişim sıklığı" msgstr "Bez değişim sıklığı"
#: dashboard/templatetags/cards.py:456 #: dashboard/templatetags/cards.py:485
msgid "Feeding frequency (past 3 days)" msgid "Feeding frequency (past 3 days)"
msgstr "Beslenme sıklığı (son 3 gün)" msgstr "Beslenme sıklığı (son 3 gün)"
#: dashboard/templatetags/cards.py:460 #: dashboard/templatetags/cards.py:489
msgid "Feeding frequency (past 2 weeks)" msgid "Feeding frequency (past 2 weeks)"
msgstr "Beslenme sıklığı (son 2 hafta)" msgstr "Beslenme sıklığı (son 2 hafta)"
#: dashboard/templatetags/cards.py:466 #: dashboard/templatetags/cards.py:495
msgid "Feeding frequency" msgid "Feeding frequency"
msgstr "Beslenme sıklığı" msgstr "Beslenme sıklığı"
@ -2030,13 +2044,13 @@ msgstr ""
msgid "<b>Height</b>" msgid "<b>Height</b>"
msgstr "<b>Ağırlık</b>" msgstr "<b>Ağırlık</b>"
#: reports/graphs/pumping_amounts.py:57 #: reports/graphs/pumping_amounts.py:59
#, fuzzy #, fuzzy
#| msgid "<b>Total Feeding Amounts</b>" #| msgid "<b>Total Feeding Amounts</b>"
msgid "<b>Total Pumping Amount</b>" msgid "<b>Total Pumping Amount</b>"
msgstr "<b>Ortalama Beslenme Süreleri</b>" msgstr "<b>Ortalama Beslenme Süreleri</b>"
#: reports/graphs/pumping_amounts.py:60 #: reports/graphs/pumping_amounts.py:62
#, fuzzy #, fuzzy
#| msgid "Feeding Amounts" #| msgid "Feeding Amounts"
msgid "Pumping Amount" msgid "Pumping Amount"
@ -2153,3 +2167,10 @@ msgstr "Karın üstü süresi (Sum)"
#: reports/templates/reports/tummytime_duration.html:8 #: reports/templates/reports/tummytime_duration.html:8
msgid "Total Tummy Time Durations" msgid "Total Tummy Time Durations"
msgstr "Toplam Karın Üstü Süresi" msgstr "Toplam Karın Üstü Süresi"
#~ msgid "Today's Sleep"
#~ msgstr "Bugünkü Uyku"
#, python-format
#~ msgid "%(count)s sleep entries"
#~ msgstr "%(count)s uygu girdileri"

Binary file not shown.

View File

@ -2,7 +2,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Baby Buddy\n" "Project-Id-Version: Baby Buddy\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-06-07 06:48+0000\n" "POT-Creation-Date: 2022-06-17 22:25+0000\n"
"Language: zh-Hans\n" "Language: zh-Hans\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -11,12 +11,12 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
#: babybuddy/admin.py:12 babybuddy/admin.py:13 #: babybuddy/admin.py:12 babybuddy/admin.py:13
#: babybuddy/templates/babybuddy/nav-dropdown.html:347 #: babybuddy/templates/babybuddy/nav-dropdown.html:327
#: babybuddy/templates/babybuddy/user_settings_form.html:8 #: babybuddy/templates/babybuddy/user_settings_form.html:8
msgid "Settings" msgid "Settings"
msgstr "设置" msgstr "设置"
#: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:111 #: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:92
#: babybuddy/templates/babybuddy/user_settings_form.html:61 #: babybuddy/templates/babybuddy/user_settings_form.html:61
#: dashboard/templates/dashboard/child.html:4 #: dashboard/templates/dashboard/child.html:4
#: dashboard/templates/dashboard/child.html:9 #: dashboard/templates/dashboard/child.html:9
@ -179,7 +179,7 @@ msgstr "土耳其语"
#: babybuddy/templates/admin/base_site.html:4 #: babybuddy/templates/admin/base_site.html:4
#: babybuddy/templates/admin/base_site.html:7 #: babybuddy/templates/admin/base_site.html:7
#: babybuddy/templates/babybuddy/nav-dropdown.html:359 #: babybuddy/templates/babybuddy/nav-dropdown.html:339
msgid "Database Admin" msgid "Database Admin"
msgstr "数据库管理员" msgstr "数据库管理员"
@ -226,19 +226,19 @@ msgid "Diaper Change"
msgstr "更换尿布" msgstr "更换尿布"
#: babybuddy/templates/babybuddy/nav-dropdown.html:57 #: babybuddy/templates/babybuddy/nav-dropdown.html:57
#: babybuddy/templates/babybuddy/nav-dropdown.html:281 core/models.py:312 #: babybuddy/templates/babybuddy/nav-dropdown.html:262 core/models.py:312
#: core/models.py:316 core/templates/core/timer_detail.html:43 #: core/models.py:316 core/templates/core/timer_detail.html:43
msgid "Feeding" msgid "Feeding"
msgstr "喂食" msgstr "喂食"
#: babybuddy/templates/babybuddy/nav-dropdown.html:63 #: babybuddy/templates/babybuddy/nav-dropdown.html:63
#: babybuddy/templates/babybuddy/nav-dropdown.html:157 core/models.py:396 #: babybuddy/templates/babybuddy/nav-dropdown.html:138 core/models.py:396
#: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29 #: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29
msgid "Note" msgid "Note"
msgstr "记录" msgstr "记录"
#: babybuddy/templates/babybuddy/nav-dropdown.html:69 #: babybuddy/templates/babybuddy/nav-dropdown.html:69
#: babybuddy/templates/babybuddy/nav-dropdown.html:288 #: babybuddy/templates/babybuddy/nav-dropdown.html:283
#: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467 #: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467
#: core/models.py:468 core/models.py:471 #: core/models.py:468 core/models.py:471
#: core/templates/core/sleep_confirm_delete.html:7 #: core/templates/core/sleep_confirm_delete.html:7
@ -249,19 +249,7 @@ msgid "Sleep"
msgstr "睡眠" msgstr "睡眠"
#: babybuddy/templates/babybuddy/nav-dropdown.html:75 #: babybuddy/templates/babybuddy/nav-dropdown.html:75
#: babybuddy/templates/babybuddy/nav-dropdown.html:179 core/models.py:506 #: babybuddy/templates/babybuddy/nav-dropdown.html:296
#: core/models.py:519 core/models.py:520 core/models.py:523
#: core/templates/core/temperature_confirm_delete.html:7
#: core/templates/core/temperature_form.html:13
#: core/templates/core/temperature_list.html:4
#: core/templates/core/temperature_list.html:7
#: core/templates/core/temperature_list.html:12
#: core/templates/core/temperature_list.html:29
msgid "Temperature"
msgstr "体温"
#: babybuddy/templates/babybuddy/nav-dropdown.html:81
#: babybuddy/templates/babybuddy/nav-dropdown.html:301
#: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647 #: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647
#: core/models.py:648 core/models.py:651 #: core/models.py:648 core/models.py:651
#: core/templates/core/timer_detail.html:59 #: core/templates/core/timer_detail.html:59
@ -273,44 +261,15 @@ msgstr "体温"
msgid "Tummy Time" msgid "Tummy Time"
msgstr "趴玩时间" msgstr "趴玩时间"
#: babybuddy/templates/babybuddy/nav-dropdown.html:87 #: babybuddy/templates/babybuddy/nav-dropdown.html:99
#: babybuddy/templates/babybuddy/nav-dropdown.html:193 core/models.py:673
#: core/models.py:685 core/models.py:686 core/models.py:689
#: core/templates/core/weight_confirm_delete.html:7
#: core/templates/core/weight_form.html:13
#: core/templates/core/weight_list.html:4
#: core/templates/core/weight_list.html:7
#: core/templates/core/weight_list.html:12
#: core/templates/core/weight_list.html:29 reports/graphs/weight_change.py:19
#: reports/graphs/weight_change.py:30
#: reports/templates/reports/report_list.html:22
#: reports/templates/reports/weight_change.html:4
#: reports/templates/reports/weight_change.html:8
msgid "Weight"
msgstr "体重"
#: babybuddy/templates/babybuddy/nav-dropdown.html:93
#: babybuddy/templates/babybuddy/nav-dropdown.html:316 core/models.py:437
#: core/models.py:438 core/models.py:441
#: core/templates/core/pumping_confirm_delete.html:7
#: core/templates/core/pumping_form.html:13
#: core/templates/core/pumping_list.html:4
#: core/templates/core/pumping_list.html:7
#: core/templates/core/pumping_list.html:12
#: reports/templates/reports/pumping_amounts.html:4
#: reports/templates/reports/pumping_amounts.html:8
msgid "Pumping"
msgstr "吸奶"
#: babybuddy/templates/babybuddy/nav-dropdown.html:118
#: core/templates/timeline/timeline.html:4 #: core/templates/timeline/timeline.html:4
#: core/templates/timeline/timeline.html:7 #: core/templates/timeline/timeline.html:7
#: dashboard/templates/dashboard/child_button_group.html:9 #: dashboard/templates/dashboard/child_button_group.html:9
msgid "Timeline" msgid "Timeline"
msgstr "时间线" msgstr "时间线"
#: babybuddy/templates/babybuddy/nav-dropdown.html:129 #: babybuddy/templates/babybuddy/nav-dropdown.html:110
#: babybuddy/templates/babybuddy/nav-dropdown.html:137 core/models.py:188 #: babybuddy/templates/babybuddy/nav-dropdown.html:118 core/models.py:188
#: core/templates/core/child_confirm_delete.html:7 #: core/templates/core/child_confirm_delete.html:7
#: core/templates/core/child_detail.html:7 #: core/templates/core/child_detail.html:7
#: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4 #: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4
@ -320,7 +279,7 @@ msgstr "时间线"
msgid "Children" msgid "Children"
msgstr "我的宝宝" msgstr "我的宝宝"
#: babybuddy/templates/babybuddy/nav-dropdown.html:143 core/models.py:137 #: babybuddy/templates/babybuddy/nav-dropdown.html:124 core/models.py:137
#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335 #: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335
#: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450 #: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450
#: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671 #: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671
@ -339,7 +298,7 @@ msgstr "我的宝宝"
msgid "Child" msgid "Child"
msgstr "宝宝" msgstr "宝宝"
#: babybuddy/templates/babybuddy/nav-dropdown.html:151 core/models.py:143 #: babybuddy/templates/babybuddy/nav-dropdown.html:132 core/models.py:143
#: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373 #: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373
#: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511 #: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511
#: core/models.py:677 core/templates/core/note_confirm_delete.html:7 #: core/models.py:677 core/templates/core/note_confirm_delete.html:7
@ -348,38 +307,26 @@ msgstr "宝宝"
msgid "Notes" msgid "Notes"
msgstr "成长记录" msgstr "成长记录"
#: babybuddy/templates/babybuddy/nav-dropdown.html:171 #: babybuddy/templates/babybuddy/nav-dropdown.html:152
msgid "Measurements" msgid "Measurements"
msgstr "测量" msgstr "测量"
#: babybuddy/templates/babybuddy/nav-dropdown.html:185 #: babybuddy/templates/babybuddy/nav-dropdown.html:160 core/models.py:139
msgid "Temperature reading" #: core/models.py:151 core/models.py:152 core/models.py:155
msgstr "体温读数" #: core/templates/core/bmi_confirm_delete.html:7
#: core/templates/core/bmi_form.html:13 core/templates/core/bmi_list.html:4
#: core/templates/core/bmi_list.html:7 core/templates/core/bmi_list.html:12
#: core/templates/core/bmi_list.html:29 reports/graphs/bmi_change.py:19
#: reports/graphs/bmi_change.py:30 reports/templates/reports/bmi_change.html:4
#: reports/templates/reports/bmi_change.html:8
msgid "BMI"
msgstr "身体质量指数(BMI)"
#: babybuddy/templates/babybuddy/nav-dropdown.html:199 #: babybuddy/templates/babybuddy/nav-dropdown.html:166
msgid "Weight entry" msgid "BMI entry"
msgstr "体重记录" msgstr "BMI记录"
#: babybuddy/templates/babybuddy/nav-dropdown.html:207 core/models.py:369 #: babybuddy/templates/babybuddy/nav-dropdown.html:174 core/models.py:338
#: core/models.py:381 core/models.py:382 core/models.py:385
#: core/templates/core/height_confirm_delete.html:7
#: core/templates/core/height_form.html:13
#: core/templates/core/height_list.html:4
#: core/templates/core/height_list.html:7
#: core/templates/core/height_list.html:12
#: core/templates/core/height_list.html:29 reports/graphs/height_change.py:19
#: reports/graphs/height_change.py:30
#: reports/templates/reports/height_change.html:4
#: reports/templates/reports/height_change.html:8
#: reports/templates/reports/report_list.html:17
msgid "Height"
msgstr "身高"
#: babybuddy/templates/babybuddy/nav-dropdown.html:213
msgid "Height entry"
msgstr "身高记录"
#: babybuddy/templates/babybuddy/nav-dropdown.html:221 core/models.py:338
#: core/models.py:351 core/models.py:352 core/models.py:355 #: core/models.py:351 core/models.py:352 core/models.py:355
#: core/templates/core/head_circumference_confirm_delete.html:7 #: core/templates/core/head_circumference_confirm_delete.html:7
#: core/templates/core/head_circumference_form.html:13 #: core/templates/core/head_circumference_form.html:13
@ -395,39 +342,77 @@ msgstr "身高记录"
msgid "Head Circumference" msgid "Head Circumference"
msgstr "头围" msgstr "头围"
#: babybuddy/templates/babybuddy/nav-dropdown.html:227 #: babybuddy/templates/babybuddy/nav-dropdown.html:180
msgid "Head Circumference entry" msgid "Head Circumference entry"
msgstr "头围记录" msgstr "头围记录"
#: babybuddy/templates/babybuddy/nav-dropdown.html:235 core/models.py:139 #: babybuddy/templates/babybuddy/nav-dropdown.html:188 core/models.py:369
#: core/models.py:151 core/models.py:152 core/models.py:155 #: core/models.py:381 core/models.py:382 core/models.py:385
#: core/templates/core/bmi_confirm_delete.html:7 #: core/templates/core/height_confirm_delete.html:7
#: core/templates/core/bmi_form.html:13 core/templates/core/bmi_list.html:4 #: core/templates/core/height_form.html:13
#: core/templates/core/bmi_list.html:7 core/templates/core/bmi_list.html:12 #: core/templates/core/height_list.html:4
#: core/templates/core/bmi_list.html:29 reports/graphs/bmi_change.py:19 #: core/templates/core/height_list.html:7
#: reports/graphs/bmi_change.py:30 reports/templates/reports/bmi_change.html:4 #: core/templates/core/height_list.html:12
#: reports/templates/reports/bmi_change.html:8 #: core/templates/core/height_list.html:29 reports/graphs/height_change.py:19
msgid "BMI" #: reports/graphs/height_change.py:30
msgstr "身体质量指数(BMI)" #: reports/templates/reports/height_change.html:4
#: reports/templates/reports/height_change.html:8
#: reports/templates/reports/report_list.html:17
msgid "Height"
msgstr "身高"
#: babybuddy/templates/babybuddy/nav-dropdown.html:241 #: babybuddy/templates/babybuddy/nav-dropdown.html:194
msgid "BMI entry" msgid "Height entry"
msgstr "BMI记录" msgstr "身高记录"
#: babybuddy/templates/babybuddy/nav-dropdown.html:255 #: babybuddy/templates/babybuddy/nav-dropdown.html:202 core/models.py:506
#: core/models.py:519 core/models.py:520 core/models.py:523
#: core/templates/core/temperature_confirm_delete.html:7
#: core/templates/core/temperature_form.html:13
#: core/templates/core/temperature_list.html:4
#: core/templates/core/temperature_list.html:7
#: core/templates/core/temperature_list.html:12
#: core/templates/core/temperature_list.html:29
msgid "Temperature"
msgstr "体温"
#: babybuddy/templates/babybuddy/nav-dropdown.html:208
msgid "Temperature reading"
msgstr "体温读数"
#: babybuddy/templates/babybuddy/nav-dropdown.html:216 core/models.py:673
#: core/models.py:685 core/models.py:686 core/models.py:689
#: core/templates/core/weight_confirm_delete.html:7
#: core/templates/core/weight_form.html:13
#: core/templates/core/weight_list.html:4
#: core/templates/core/weight_list.html:7
#: core/templates/core/weight_list.html:12
#: core/templates/core/weight_list.html:29 reports/graphs/weight_change.py:19
#: reports/graphs/weight_change.py:30
#: reports/templates/reports/report_list.html:22
#: reports/templates/reports/weight_change.html:4
#: reports/templates/reports/weight_change.html:8
msgid "Weight"
msgstr "体重"
#: babybuddy/templates/babybuddy/nav-dropdown.html:222
msgid "Weight entry"
msgstr "体重记录"
#: babybuddy/templates/babybuddy/nav-dropdown.html:236
msgid "Activities" msgid "Activities"
msgstr "活动" msgstr "活动"
#: babybuddy/templates/babybuddy/nav-dropdown.html:262 #: babybuddy/templates/babybuddy/nav-dropdown.html:243
#: reports/graphs/diaperchange_lifetimes.py:27 #: reports/graphs/diaperchange_lifetimes.py:27
msgid "Changes" msgid "Changes"
msgstr "换尿布" msgstr "换尿布"
#: babybuddy/templates/babybuddy/nav-dropdown.html:268 #: babybuddy/templates/babybuddy/nav-dropdown.html:249
msgid "Change" msgid "Change"
msgstr "换尿布" msgstr "换尿布"
#: babybuddy/templates/babybuddy/nav-dropdown.html:275 #: babybuddy/templates/babybuddy/nav-dropdown.html:256
#: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313 #: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313
#: core/templates/core/feeding_confirm_delete.html:7 #: core/templates/core/feeding_confirm_delete.html:7
#: core/templates/core/feeding_form.html:13 #: core/templates/core/feeding_form.html:13
@ -437,19 +422,31 @@ msgstr "换尿布"
msgid "Feedings" msgid "Feedings"
msgstr "喂食" msgstr "喂食"
#: babybuddy/templates/babybuddy/nav-dropdown.html:294 #: babybuddy/templates/babybuddy/nav-dropdown.html:270 core/models.py:437
msgid "Sleep entry" #: core/models.py:438 core/models.py:441
msgstr "睡眠记录" #: core/templates/core/pumping_confirm_delete.html:7
#: core/templates/core/pumping_form.html:13
#: core/templates/core/pumping_list.html:4
#: core/templates/core/pumping_list.html:7
#: core/templates/core/pumping_list.html:12
#: reports/templates/reports/pumping_amounts.html:4
#: reports/templates/reports/pumping_amounts.html:8
msgid "Pumping"
msgstr "吸奶"
#: babybuddy/templates/babybuddy/nav-dropdown.html:307 #: babybuddy/templates/babybuddy/nav-dropdown.html:276
msgid "Tummy Time entry"
msgstr "趴玩时间记录"
#: babybuddy/templates/babybuddy/nav-dropdown.html:322
msgid "Pumping entry" msgid "Pumping entry"
msgstr "吸奶记录" msgstr "吸奶记录"
#: babybuddy/templates/babybuddy/nav-dropdown.html:346 #: babybuddy/templates/babybuddy/nav-dropdown.html:289
msgid "Sleep entry"
msgstr "睡眠记录"
#: babybuddy/templates/babybuddy/nav-dropdown.html:302
msgid "Tummy Time entry"
msgstr "趴玩时间记录"
#: babybuddy/templates/babybuddy/nav-dropdown.html:326
#: babybuddy/templates/babybuddy/user_list.html:17 #: babybuddy/templates/babybuddy/user_list.html:17
#: babybuddy/templates/babybuddy/user_password_form.html:7 #: babybuddy/templates/babybuddy/user_password_form.html:7
#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556 #: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556
@ -457,23 +454,23 @@ msgstr "吸奶记录"
msgid "User" msgid "User"
msgstr "用户" msgstr "用户"
#: babybuddy/templates/babybuddy/nav-dropdown.html:348 #: babybuddy/templates/babybuddy/nav-dropdown.html:328
msgid "Password" msgid "Password"
msgstr "密码" msgstr "密码"
#: babybuddy/templates/babybuddy/nav-dropdown.html:352 #: babybuddy/templates/babybuddy/nav-dropdown.html:332
msgid "Logout" msgid "Logout"
msgstr "登出" msgstr "登出"
#: babybuddy/templates/babybuddy/nav-dropdown.html:355 #: babybuddy/templates/babybuddy/nav-dropdown.html:335
msgid "Site" msgid "Site"
msgstr "站点" msgstr "站点"
#: babybuddy/templates/babybuddy/nav-dropdown.html:356 #: babybuddy/templates/babybuddy/nav-dropdown.html:336
msgid "API Browser" msgid "API Browser"
msgstr "API浏览" msgstr "API浏览"
#: babybuddy/templates/babybuddy/nav-dropdown.html:358 #: babybuddy/templates/babybuddy/nav-dropdown.html:338
#: babybuddy/templates/babybuddy/user_confirm_delete.html:7 #: babybuddy/templates/babybuddy/user_confirm_delete.html:7
#: babybuddy/templates/babybuddy/user_form.html:13 #: babybuddy/templates/babybuddy/user_form.html:13
#: babybuddy/templates/babybuddy/user_list.html:4 #: babybuddy/templates/babybuddy/user_list.html:4
@ -481,15 +478,15 @@ msgstr "API浏览"
msgid "Users" msgid "Users"
msgstr "用户" msgstr "用户"
#: babybuddy/templates/babybuddy/nav-dropdown.html:361 #: babybuddy/templates/babybuddy/nav-dropdown.html:341
msgid "Support" msgid "Support"
msgstr "支持" msgstr "支持"
#: babybuddy/templates/babybuddy/nav-dropdown.html:363 #: babybuddy/templates/babybuddy/nav-dropdown.html:343
msgid "Source Code" msgid "Source Code"
msgstr "源代码" msgstr "源代码"
#: babybuddy/templates/babybuddy/nav-dropdown.html:365 #: babybuddy/templates/babybuddy/nav-dropdown.html:345
msgid "Chat / Support" msgid "Chat / Support"
msgstr "聊天 / 支持" msgstr "聊天 / 支持"
@ -500,6 +497,7 @@ msgstr "聊天 / 支持"
#: core/templates/timeline/_timeline.html:73 #: core/templates/timeline/_timeline.html:73
#: dashboard/templates/cards/feeding_day.html:43 #: dashboard/templates/cards/feeding_day.html:43
#: dashboard/templates/cards/feeding_last_method.html:34 #: dashboard/templates/cards/feeding_last_method.html:34
#: dashboard/templates/cards/sleep_recent.html:43
#: dashboard/templates/cards/statistics.html:34 #: dashboard/templates/cards/statistics.html:34
msgid "Previous" msgid "Previous"
msgstr "上一页" msgstr "上一页"
@ -511,6 +509,7 @@ msgstr "上一页"
#: core/templates/timeline/_timeline.html:80 #: core/templates/timeline/_timeline.html:80
#: dashboard/templates/cards/feeding_day.html:47 #: dashboard/templates/cards/feeding_day.html:47
#: dashboard/templates/cards/feeding_last_method.html:38 #: dashboard/templates/cards/feeding_last_method.html:38
#: dashboard/templates/cards/sleep_recent.html:47
#: dashboard/templates/cards/statistics.html:38 #: dashboard/templates/cards/statistics.html:38
msgid "Next" msgid "Next"
msgstr "下一页" msgstr "下一页"
@ -969,7 +968,7 @@ msgstr "标签"
#: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70 #: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70
#: reports/graphs/feeding_duration.py:56 #: reports/graphs/feeding_duration.py:56
#: reports/graphs/head_circumference_change.py:28 #: reports/graphs/head_circumference_change.py:28
#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:58 #: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60
#: reports/graphs/sleep_pattern.py:151 reports/graphs/sleep_totals.py:59 #: reports/graphs/sleep_pattern.py:151 reports/graphs/sleep_totals.py:59
#: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28 #: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28
msgid "Date" msgid "Date"
@ -1143,7 +1142,9 @@ msgid "Add BMI"
msgstr "新增BMI记录" msgstr "新增BMI记录"
#: core/templates/core/bmi_list.html:70 #: core/templates/core/bmi_list.html:70
msgid "No bmi entries found." #, fuzzy
#| msgid "No bmi entries found."
msgid "No BMI entries found."
msgstr "未找到BMI记录。" msgstr "未找到BMI记录。"
#: core/templates/core/child_confirm_delete.html:4 #: core/templates/core/child_confirm_delete.html:4
@ -1439,9 +1440,10 @@ msgstr "激活的计时器"
#: dashboard/templates/cards/feeding_day.html:52 #: dashboard/templates/cards/feeding_day.html:52
#: dashboard/templates/cards/feeding_last.html:17 #: dashboard/templates/cards/feeding_last.html:17
#: dashboard/templates/cards/feeding_last_method.html:43 #: dashboard/templates/cards/feeding_last_method.html:43
#: dashboard/templates/cards/sleep_day.html:14
#: dashboard/templates/cards/sleep_last.html:17 #: dashboard/templates/cards/sleep_last.html:17
#: dashboard/templates/cards/sleep_naps_day.html:18 #: dashboard/templates/cards/sleep_naps_day.html:18
#: dashboard/templates/cards/sleep_recent.html:20
#: dashboard/templates/cards/sleep_recent.html:52
#: dashboard/templates/cards/tummytime_day.html:14 #: dashboard/templates/cards/tummytime_day.html:14
msgid "None" msgid "None"
msgstr "无" msgstr "无"
@ -1724,6 +1726,7 @@ msgid_plural "%(counter)s feedings"
msgstr[0] "%(counter)s 次喂食" msgstr[0] "%(counter)s 次喂食"
#: dashboard/templates/cards/feeding_day.html:32 #: dashboard/templates/cards/feeding_day.html:32
#: dashboard/templates/cards/sleep_recent.html:32
#, python-format #, python-format
msgid "<div class=\"text-center small text-muted\"> %(since)s </div>" msgid "<div class=\"text-center small text-muted\"> %(since)s </div>"
msgstr "" msgstr ""
@ -1746,15 +1749,6 @@ msgid "%(n)s feeding ago"
msgid_plural "%(n)s feedings ago" msgid_plural "%(n)s feedings ago"
msgstr[0] "前 %(n)s 次喂食" msgstr[0] "前 %(n)s 次喂食"
#: dashboard/templates/cards/sleep_day.html:6
msgid "Today's Sleep"
msgstr "今天的睡觉"
#: dashboard/templates/cards/sleep_day.html:20
#, python-format
msgid "%(count)s sleep entries"
msgstr "%(count)s 条睡眠记录"
#: dashboard/templates/cards/sleep_last.html:6 #: dashboard/templates/cards/sleep_last.html:6
msgid "Last Sleep" msgid "Last Sleep"
msgstr "上一次睡眠" msgstr "上一次睡眠"
@ -1769,6 +1763,20 @@ msgid "%(count)s nap"
msgid_plural "%(count)s naps" msgid_plural "%(count)s naps"
msgstr[0] "%(count)s 小睡" msgstr[0] "%(count)s 小睡"
#: dashboard/templates/cards/sleep_recent.html:6
#, fuzzy
#| msgid "Last Sleep"
msgid "Recent Sleep"
msgstr "上一次睡眠"
#: dashboard/templates/cards/sleep_recent.html:25
#, fuzzy, python-format
#| msgid "%(counter)s feeding"
#| msgid_plural "%(counter)s feedings"
msgid "%(counter)s sleep"
msgid_plural "%(counter)s sleep"
msgstr[0] "%(counter)s 次喂食"
#: dashboard/templates/cards/statistics.html:7 #: dashboard/templates/cards/statistics.html:7
msgid "Statistics" msgid "Statistics"
msgstr "统计数据" msgstr "统计数据"
@ -1819,59 +1827,59 @@ msgstr "宝宝行动"
msgid "Reports" msgid "Reports"
msgstr "报告" msgstr "报告"
#: dashboard/templatetags/cards.py:328 #: dashboard/templatetags/cards.py:357
msgid "Average nap duration" msgid "Average nap duration"
msgstr "平均小睡时间" msgstr "平均小睡时间"
#: dashboard/templatetags/cards.py:335 #: dashboard/templatetags/cards.py:364
msgid "Average naps per day" msgid "Average naps per day"
msgstr "每天的平均小睡次数" msgstr "每天的平均小睡次数"
#: dashboard/templatetags/cards.py:345 #: dashboard/templatetags/cards.py:374
msgid "Average sleep duration" msgid "Average sleep duration"
msgstr "平均睡眠时间" msgstr "平均睡眠时间"
#: dashboard/templatetags/cards.py:352 #: dashboard/templatetags/cards.py:381
msgid "Average awake duration" msgid "Average awake duration"
msgstr "平均清醒时间" msgstr "平均清醒时间"
#: dashboard/templatetags/cards.py:362 #: dashboard/templatetags/cards.py:391
msgid "Weight change per week" msgid "Weight change per week"
msgstr "每周体重变化" msgstr "每周体重变化"
#: dashboard/templatetags/cards.py:372 #: dashboard/templatetags/cards.py:401
msgid "Height change per week" msgid "Height change per week"
msgstr "每周身高变化" msgstr "每周身高变化"
#: dashboard/templatetags/cards.py:382 #: dashboard/templatetags/cards.py:411
msgid "Head circumference change per week" msgid "Head circumference change per week"
msgstr "每周头围变化" msgstr "每周头围变化"
#: dashboard/templatetags/cards.py:392 #: dashboard/templatetags/cards.py:421
msgid "BMI change per week" msgid "BMI change per week"
msgstr "每周BMI变化" msgstr "每周BMI变化"
#: dashboard/templatetags/cards.py:410 #: dashboard/templatetags/cards.py:439
msgid "Diaper change frequency (past 3 days)" msgid "Diaper change frequency (past 3 days)"
msgstr "换尿布频率(过去三天)" msgstr "换尿布频率(过去三天)"
#: dashboard/templatetags/cards.py:414 #: dashboard/templatetags/cards.py:443
msgid "Diaper change frequency (past 2 weeks)" msgid "Diaper change frequency (past 2 weeks)"
msgstr "换尿布频率(过去两周)" msgstr "换尿布频率(过去两周)"
#: dashboard/templatetags/cards.py:420 #: dashboard/templatetags/cards.py:449
msgid "Diaper change frequency" msgid "Diaper change frequency"
msgstr "换尿布频率" msgstr "换尿布频率"
#: dashboard/templatetags/cards.py:456 #: dashboard/templatetags/cards.py:485
msgid "Feeding frequency (past 3 days)" msgid "Feeding frequency (past 3 days)"
msgstr "喂食频率(过去三天)" msgstr "喂食频率(过去三天)"
#: dashboard/templatetags/cards.py:460 #: dashboard/templatetags/cards.py:489
msgid "Feeding frequency (past 2 weeks)" msgid "Feeding frequency (past 2 weeks)"
msgstr "喂食频率(过去两周)" msgstr "喂食频率(过去两周)"
#: dashboard/templatetags/cards.py:466 #: dashboard/templatetags/cards.py:495
msgid "Feeding frequency" msgid "Feeding frequency"
msgstr "喂食频率" msgstr "喂食频率"
@ -1947,11 +1955,11 @@ msgstr "<b>头围</b>"
msgid "<b>Height</b>" msgid "<b>Height</b>"
msgstr "<b>身高</b>" msgstr "<b>身高</b>"
#: reports/graphs/pumping_amounts.py:57 #: reports/graphs/pumping_amounts.py:59
msgid "<b>Total Pumping Amount</b>" msgid "<b>Total Pumping Amount</b>"
msgstr "<b>合计吸奶量</b>" msgstr "<b>合计吸奶量</b>"
#: reports/graphs/pumping_amounts.py:60 #: reports/graphs/pumping_amounts.py:62
msgid "Pumping Amount" msgid "Pumping Amount"
msgstr "吸奶量" msgstr "吸奶量"
@ -2064,3 +2072,10 @@ msgstr "趴玩时光持续时间(合计)"
#: reports/templates/reports/tummytime_duration.html:8 #: reports/templates/reports/tummytime_duration.html:8
msgid "Total Tummy Time Durations" msgid "Total Tummy Time Durations"
msgstr "趴玩时光持续时间合计" msgstr "趴玩时光持续时间合计"
#~ msgid "Today's Sleep"
#~ msgstr "今天的睡觉"
#, python-format
#~ msgid "%(count)s sleep entries"
#~ msgstr "%(count)s 条睡眠记录"