mirror of https://github.com/snachodog/mybuddy.git
Rename "Today's Feedings" as "Recent Feedings"
This commit is contained in:
parent
253d417eef
commit
154d794507
|
@ -3,7 +3,7 @@
|
|||
|
||||
{% block header %}
|
||||
<a href="{% url "core:feeding-list" %}">
|
||||
{% trans "Today's Feeding" %}
|
||||
{% trans "Recent Feedings" %}
|
||||
</a>
|
||||
{% endblock %}
|
||||
|
|
@ -32,7 +32,7 @@
|
|||
{% card_feeding_last_method object %}
|
||||
</div>
|
||||
<div class="col-sm-6 col-lg-4">
|
||||
{% card_feeding_day object %}
|
||||
{% card_feeding_recent object %}
|
||||
</div>
|
||||
<div class="col-sm-6 col-lg-4">
|
||||
{% card_statistics object %}
|
||||
|
|
|
@ -106,8 +106,8 @@ def card_diaperchange_types(context, child, date=None):
|
|||
}
|
||||
|
||||
|
||||
@register.inclusion_tag("cards/feeding_day.html", takes_context=True)
|
||||
def card_feeding_day(context, child, end_date=None):
|
||||
@register.inclusion_tag("cards/feeding_recent.html", takes_context=True)
|
||||
def card_feeding_recent(context, child, end_date=None):
|
||||
"""
|
||||
Filters Feeding instances to get total amount for a specific date and for 7 days before
|
||||
:param child: an instance of the Child model.
|
||||
|
|
|
@ -151,8 +151,8 @@ class TemplateTagsTestCase(TestCase):
|
|||
}
|
||||
self.assertEqual(data["stats"], stats)
|
||||
|
||||
def test_card_feeding_day(self):
|
||||
data = cards.card_feeding_day(self.context, self.child, self.date)
|
||||
def test_card_feeding_recent(self):
|
||||
data = cards.card_feeding_recent(self.context, self.child, self.date)
|
||||
self.assertEqual(data["type"], "feeding")
|
||||
self.assertFalse(data["empty"])
|
||||
self.assertFalse(data["hide_empty"])
|
||||
|
|
Binary file not shown.
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Baby Buddy\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-07-17 13:37+0000\n"
|
||||
"POT-Creation-Date: 2023-07-17 13:48+0000\n"
|
||||
"Language: ca\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -563,8 +563,8 @@ msgstr "Xat / Suport"
|
|||
#: core/templates/timeline/_timeline.html:7
|
||||
#: core/templates/timeline/_timeline.html:71
|
||||
#: core/templates/timeline/_timeline.html:73
|
||||
#: dashboard/templates/cards/feeding_day.html:46
|
||||
#: dashboard/templates/cards/feeding_last_method.html:37
|
||||
#: dashboard/templates/cards/feeding_recent.html:46
|
||||
#: dashboard/templates/cards/sleep_recent.html:43
|
||||
#: dashboard/templates/cards/statistics.html:37
|
||||
msgid "Previous"
|
||||
|
@ -575,8 +575,8 @@ msgstr "Anterior"
|
|||
#: core/templates/timeline/_timeline.html:14
|
||||
#: core/templates/timeline/_timeline.html:78
|
||||
#: core/templates/timeline/_timeline.html:80
|
||||
#: dashboard/templates/cards/feeding_day.html:53
|
||||
#: dashboard/templates/cards/feeding_last_method.html:44
|
||||
#: dashboard/templates/cards/feeding_recent.html:53
|
||||
#: dashboard/templates/cards/sleep_recent.html:47
|
||||
#: dashboard/templates/cards/statistics.html:44
|
||||
msgid "Next"
|
||||
|
@ -1594,10 +1594,10 @@ msgstr "Veure Temporitzadors"
|
|||
#: core/templates/core/timer_nav.html:50
|
||||
#: dashboard/templates/cards/diaperchange_last.html:17
|
||||
#: dashboard/templates/cards/diaperchange_types.html:12
|
||||
#: dashboard/templates/cards/feeding_day.html:20
|
||||
#: dashboard/templates/cards/feeding_day.html:58
|
||||
#: dashboard/templates/cards/feeding_last.html:17
|
||||
#: dashboard/templates/cards/feeding_last_method.html:49
|
||||
#: dashboard/templates/cards/feeding_recent.html:20
|
||||
#: dashboard/templates/cards/feeding_recent.html:58
|
||||
#: dashboard/templates/cards/pumping_last.html:17
|
||||
#: dashboard/templates/cards/sleep_last.html:17
|
||||
#: dashboard/templates/cards/sleep_naps_day.html:18
|
||||
|
@ -1889,23 +1889,6 @@ msgstr "sòlid"
|
|||
msgid "%(key)s days ago"
|
||||
msgstr "Fa %(key)s dies"
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:6
|
||||
msgid "Today's Feeding"
|
||||
msgstr "Alimentació d'Avui"
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:25
|
||||
#, python-format
|
||||
msgid "%(counter)s feeding"
|
||||
msgid_plural "%(counter)s feedings"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:32
|
||||
#: dashboard/templates/cards/sleep_recent.html:32
|
||||
#, python-format
|
||||
msgid "<div class=\"text-center small text-body-secondary\"> %(since)s </div>"
|
||||
msgstr ""
|
||||
|
||||
#: dashboard/templates/cards/feeding_last.html:6
|
||||
msgid "Last Feeding"
|
||||
msgstr "últim menjar"
|
||||
|
@ -1925,6 +1908,25 @@ msgid_plural "%(n)s feedings ago"
|
|||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Delete a Feeding"
|
||||
msgid "Recent Feedings"
|
||||
msgstr "Esborra Alimentacions"
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:25
|
||||
#, python-format
|
||||
msgid "%(counter)s feeding"
|
||||
msgid_plural "%(counter)s feedings"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:32
|
||||
#: dashboard/templates/cards/sleep_recent.html:32
|
||||
#, python-format
|
||||
msgid "<div class=\"text-center small text-body-secondary\"> %(since)s </div>"
|
||||
msgstr ""
|
||||
|
||||
#: dashboard/templates/cards/pumping_last.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Last Feeding"
|
||||
|
@ -2266,6 +2268,9 @@ msgstr "Durada del temps de panxa (suma)"
|
|||
msgid "Total Tummy Time Durations"
|
||||
msgstr "Durada total del temps de panxa"
|
||||
|
||||
#~ msgid "Today's Feeding"
|
||||
#~ msgstr "Alimentació d'Avui"
|
||||
|
||||
#~ msgid "Napping"
|
||||
#~ msgstr "Migdiada"
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Baby Buddy\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-07-17 13:37+0000\n"
|
||||
"POT-Creation-Date: 2023-07-17 13:48+0000\n"
|
||||
"Language: cs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -562,8 +562,8 @@ msgstr "Chat / podpora"
|
|||
#: core/templates/timeline/_timeline.html:7
|
||||
#: core/templates/timeline/_timeline.html:71
|
||||
#: core/templates/timeline/_timeline.html:73
|
||||
#: dashboard/templates/cards/feeding_day.html:46
|
||||
#: dashboard/templates/cards/feeding_last_method.html:37
|
||||
#: dashboard/templates/cards/feeding_recent.html:46
|
||||
#: dashboard/templates/cards/sleep_recent.html:43
|
||||
#: dashboard/templates/cards/statistics.html:37
|
||||
msgid "Previous"
|
||||
|
@ -574,8 +574,8 @@ msgstr "Předchozí"
|
|||
#: core/templates/timeline/_timeline.html:14
|
||||
#: core/templates/timeline/_timeline.html:78
|
||||
#: core/templates/timeline/_timeline.html:80
|
||||
#: dashboard/templates/cards/feeding_day.html:53
|
||||
#: dashboard/templates/cards/feeding_last_method.html:44
|
||||
#: dashboard/templates/cards/feeding_recent.html:53
|
||||
#: dashboard/templates/cards/sleep_recent.html:47
|
||||
#: dashboard/templates/cards/statistics.html:44
|
||||
msgid "Next"
|
||||
|
@ -1587,10 +1587,10 @@ msgstr "Zobrazit časovače"
|
|||
#: core/templates/core/timer_nav.html:50
|
||||
#: dashboard/templates/cards/diaperchange_last.html:17
|
||||
#: dashboard/templates/cards/diaperchange_types.html:12
|
||||
#: dashboard/templates/cards/feeding_day.html:20
|
||||
#: dashboard/templates/cards/feeding_day.html:58
|
||||
#: dashboard/templates/cards/feeding_last.html:17
|
||||
#: dashboard/templates/cards/feeding_last_method.html:49
|
||||
#: dashboard/templates/cards/feeding_recent.html:20
|
||||
#: dashboard/templates/cards/feeding_recent.html:58
|
||||
#: dashboard/templates/cards/pumping_last.html:17
|
||||
#: dashboard/templates/cards/sleep_last.html:17
|
||||
#: dashboard/templates/cards/sleep_naps_day.html:18
|
||||
|
@ -1874,24 +1874,6 @@ msgstr "pevné"
|
|||
msgid "%(key)s days ago"
|
||||
msgstr "před %(key)s dny"
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:6
|
||||
msgid "Today's Feeding"
|
||||
msgstr ""
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:25
|
||||
#, python-format
|
||||
msgid "%(counter)s feeding"
|
||||
msgid_plural "%(counter)s feedings"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
msgstr[2] ""
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:32
|
||||
#: dashboard/templates/cards/sleep_recent.html:32
|
||||
#, python-format
|
||||
msgid "<div class=\"text-center small text-body-secondary\"> %(since)s </div>"
|
||||
msgstr ""
|
||||
|
||||
#: dashboard/templates/cards/feeding_last.html:6
|
||||
msgid "Last Feeding"
|
||||
msgstr "Poslední krmení"
|
||||
|
@ -1912,6 +1894,26 @@ msgstr[0] ""
|
|||
msgstr[1] ""
|
||||
msgstr[2] ""
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Delete a Feeding"
|
||||
msgid "Recent Feedings"
|
||||
msgstr "Vymazat krmení"
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:25
|
||||
#, python-format
|
||||
msgid "%(counter)s feeding"
|
||||
msgid_plural "%(counter)s feedings"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
msgstr[2] ""
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:32
|
||||
#: dashboard/templates/cards/sleep_recent.html:32
|
||||
#, python-format
|
||||
msgid "<div class=\"text-center small text-body-secondary\"> %(since)s </div>"
|
||||
msgstr ""
|
||||
|
||||
#: dashboard/templates/cards/pumping_last.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Last Feeding"
|
||||
|
|
Binary file not shown.
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Baby Buddy\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-07-17 13:37+0000\n"
|
||||
"POT-Creation-Date: 2023-07-17 13:48+0000\n"
|
||||
"Language: da\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -565,8 +565,8 @@ msgstr "Chat / Support"
|
|||
#: core/templates/timeline/_timeline.html:7
|
||||
#: core/templates/timeline/_timeline.html:71
|
||||
#: core/templates/timeline/_timeline.html:73
|
||||
#: dashboard/templates/cards/feeding_day.html:46
|
||||
#: dashboard/templates/cards/feeding_last_method.html:37
|
||||
#: dashboard/templates/cards/feeding_recent.html:46
|
||||
#: dashboard/templates/cards/sleep_recent.html:43
|
||||
#: dashboard/templates/cards/statistics.html:37
|
||||
msgid "Previous"
|
||||
|
@ -577,8 +577,8 @@ msgstr "Forrige"
|
|||
#: core/templates/timeline/_timeline.html:14
|
||||
#: core/templates/timeline/_timeline.html:78
|
||||
#: core/templates/timeline/_timeline.html:80
|
||||
#: dashboard/templates/cards/feeding_day.html:53
|
||||
#: dashboard/templates/cards/feeding_last_method.html:44
|
||||
#: dashboard/templates/cards/feeding_recent.html:53
|
||||
#: dashboard/templates/cards/sleep_recent.html:47
|
||||
#: dashboard/templates/cards/statistics.html:44
|
||||
msgid "Next"
|
||||
|
@ -1597,10 +1597,10 @@ msgstr "Vis Timere"
|
|||
#: core/templates/core/timer_nav.html:50
|
||||
#: dashboard/templates/cards/diaperchange_last.html:17
|
||||
#: dashboard/templates/cards/diaperchange_types.html:12
|
||||
#: dashboard/templates/cards/feeding_day.html:20
|
||||
#: dashboard/templates/cards/feeding_day.html:58
|
||||
#: dashboard/templates/cards/feeding_last.html:17
|
||||
#: dashboard/templates/cards/feeding_last_method.html:49
|
||||
#: dashboard/templates/cards/feeding_recent.html:20
|
||||
#: dashboard/templates/cards/feeding_recent.html:58
|
||||
#: dashboard/templates/cards/pumping_last.html:17
|
||||
#: dashboard/templates/cards/sleep_last.html:17
|
||||
#: dashboard/templates/cards/sleep_naps_day.html:18
|
||||
|
@ -1882,23 +1882,6 @@ msgstr "fast"
|
|||
msgid "%(key)s days ago"
|
||||
msgstr "%(key)s dage siden"
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:6
|
||||
msgid "Today's Feeding"
|
||||
msgstr "Dagens fodring"
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:25
|
||||
#, python-format
|
||||
msgid "%(counter)s feeding"
|
||||
msgid_plural "%(counter)s feedings"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:32
|
||||
#: dashboard/templates/cards/sleep_recent.html:32
|
||||
#, python-format
|
||||
msgid "<div class=\"text-center small text-body-secondary\"> %(since)s </div>"
|
||||
msgstr ""
|
||||
|
||||
#: dashboard/templates/cards/feeding_last.html:6
|
||||
msgid "Last Feeding"
|
||||
msgstr "Seneste madning"
|
||||
|
@ -1918,6 +1901,25 @@ msgid_plural "%(n)s feedings ago"
|
|||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Delete a Feeding"
|
||||
msgid "Recent Feedings"
|
||||
msgstr "Slet en Madning"
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:25
|
||||
#, python-format
|
||||
msgid "%(counter)s feeding"
|
||||
msgid_plural "%(counter)s feedings"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:32
|
||||
#: dashboard/templates/cards/sleep_recent.html:32
|
||||
#, python-format
|
||||
msgid "<div class=\"text-center small text-body-secondary\"> %(since)s </div>"
|
||||
msgstr ""
|
||||
|
||||
#: dashboard/templates/cards/pumping_last.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Last Feeding"
|
||||
|
@ -2259,6 +2261,9 @@ msgstr "Mavetid (Total)"
|
|||
msgid "Total Tummy Time Durations"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Today's Feeding"
|
||||
#~ msgstr "Dagens fodring"
|
||||
|
||||
#~ msgid "Napping"
|
||||
#~ msgstr "Sover"
|
||||
|
||||
|
|
Binary file not shown.
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Baby Buddy\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-07-17 13:37+0000\n"
|
||||
"POT-Creation-Date: 2023-07-17 13:48+0000\n"
|
||||
"Language: de\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -562,8 +562,8 @@ msgstr "Chat / Support"
|
|||
#: core/templates/timeline/_timeline.html:7
|
||||
#: core/templates/timeline/_timeline.html:71
|
||||
#: core/templates/timeline/_timeline.html:73
|
||||
#: dashboard/templates/cards/feeding_day.html:46
|
||||
#: dashboard/templates/cards/feeding_last_method.html:37
|
||||
#: dashboard/templates/cards/feeding_recent.html:46
|
||||
#: dashboard/templates/cards/sleep_recent.html:43
|
||||
#: dashboard/templates/cards/statistics.html:37
|
||||
msgid "Previous"
|
||||
|
@ -574,8 +574,8 @@ msgstr "Zurück"
|
|||
#: core/templates/timeline/_timeline.html:14
|
||||
#: core/templates/timeline/_timeline.html:78
|
||||
#: core/templates/timeline/_timeline.html:80
|
||||
#: dashboard/templates/cards/feeding_day.html:53
|
||||
#: dashboard/templates/cards/feeding_last_method.html:44
|
||||
#: dashboard/templates/cards/feeding_recent.html:53
|
||||
#: dashboard/templates/cards/sleep_recent.html:47
|
||||
#: dashboard/templates/cards/statistics.html:44
|
||||
msgid "Next"
|
||||
|
@ -1593,10 +1593,10 @@ msgstr "Zeige Timer"
|
|||
#: core/templates/core/timer_nav.html:50
|
||||
#: dashboard/templates/cards/diaperchange_last.html:17
|
||||
#: dashboard/templates/cards/diaperchange_types.html:12
|
||||
#: dashboard/templates/cards/feeding_day.html:20
|
||||
#: dashboard/templates/cards/feeding_day.html:58
|
||||
#: dashboard/templates/cards/feeding_last.html:17
|
||||
#: dashboard/templates/cards/feeding_last_method.html:49
|
||||
#: dashboard/templates/cards/feeding_recent.html:20
|
||||
#: dashboard/templates/cards/feeding_recent.html:58
|
||||
#: dashboard/templates/cards/pumping_last.html:17
|
||||
#: dashboard/templates/cards/sleep_last.html:17
|
||||
#: dashboard/templates/cards/sleep_naps_day.html:18
|
||||
|
@ -1875,24 +1875,6 @@ msgstr "fest"
|
|||
msgid "%(key)s days ago"
|
||||
msgstr "Vor %(key)s Tagen"
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:6
|
||||
msgid "Today's Feeding"
|
||||
msgstr "Heute gefüttert"
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:25
|
||||
#, fuzzy, python-format
|
||||
msgid "%(counter)s feeding"
|
||||
msgid_plural "%(counter)s feedings"
|
||||
msgstr[0] "%(count)s Schlaf-Einträge"
|
||||
msgstr[1] "%(count)s Schlaf-Einträge"
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:32
|
||||
#: dashboard/templates/cards/sleep_recent.html:32
|
||||
#, fuzzy, python-format
|
||||
#| msgid "<div class=\"text-center small text-muted\"> %(since)s </div>"
|
||||
msgid "<div class=\"text-center small text-body-secondary\"> %(since)s </div>"
|
||||
msgstr "<div class=\"text-center small text-muted\"> %(since)s </div>"
|
||||
|
||||
#: dashboard/templates/cards/feeding_last.html:6
|
||||
msgid "Last Feeding"
|
||||
msgstr "Letzte Mahlzeit"
|
||||
|
@ -1912,6 +1894,26 @@ msgid_plural "%(n)s feedings ago"
|
|||
msgstr[0] "vor %(n)s Mahlzeit%(plural)sen"
|
||||
msgstr[1] "vor %(n)s Mahlzeit%(plural)sen"
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Delete a Feeding"
|
||||
msgid "Recent Feedings"
|
||||
msgstr "Mahlzeit löschen"
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:25
|
||||
#, fuzzy, python-format
|
||||
msgid "%(counter)s feeding"
|
||||
msgid_plural "%(counter)s feedings"
|
||||
msgstr[0] "%(count)s Schlaf-Einträge"
|
||||
msgstr[1] "%(count)s Schlaf-Einträge"
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:32
|
||||
#: dashboard/templates/cards/sleep_recent.html:32
|
||||
#, fuzzy, python-format
|
||||
#| msgid "<div class=\"text-center small text-muted\"> %(since)s </div>"
|
||||
msgid "<div class=\"text-center small text-body-secondary\"> %(since)s </div>"
|
||||
msgstr "<div class=\"text-center small text-muted\"> %(since)s </div>"
|
||||
|
||||
#: dashboard/templates/cards/pumping_last.html:6
|
||||
msgid "Last Pumping"
|
||||
msgstr "Letztes Abpumpen"
|
||||
|
@ -2245,6 +2247,9 @@ msgstr "Bauchzeit Dauer (Summe)"
|
|||
msgid "Total Tummy Time Durations"
|
||||
msgstr "Totalle Bauchzeit Dauer"
|
||||
|
||||
#~ msgid "Today's Feeding"
|
||||
#~ msgstr "Heute gefüttert"
|
||||
|
||||
#~ msgid "Napping"
|
||||
#~ msgstr "Nickerchen"
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Baby Buddy\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-07-17 13:37+0000\n"
|
||||
"POT-Creation-Date: 2023-07-17 13:48+0000\n"
|
||||
"Language: en-GB\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -556,8 +556,8 @@ msgstr ""
|
|||
#: core/templates/timeline/_timeline.html:7
|
||||
#: core/templates/timeline/_timeline.html:71
|
||||
#: core/templates/timeline/_timeline.html:73
|
||||
#: dashboard/templates/cards/feeding_day.html:46
|
||||
#: dashboard/templates/cards/feeding_last_method.html:37
|
||||
#: dashboard/templates/cards/feeding_recent.html:46
|
||||
#: dashboard/templates/cards/sleep_recent.html:43
|
||||
#: dashboard/templates/cards/statistics.html:37
|
||||
msgid "Previous"
|
||||
|
@ -568,8 +568,8 @@ msgstr ""
|
|||
#: core/templates/timeline/_timeline.html:14
|
||||
#: core/templates/timeline/_timeline.html:78
|
||||
#: core/templates/timeline/_timeline.html:80
|
||||
#: dashboard/templates/cards/feeding_day.html:53
|
||||
#: dashboard/templates/cards/feeding_last_method.html:44
|
||||
#: dashboard/templates/cards/feeding_recent.html:53
|
||||
#: dashboard/templates/cards/sleep_recent.html:47
|
||||
#: dashboard/templates/cards/statistics.html:44
|
||||
msgid "Next"
|
||||
|
@ -1559,10 +1559,10 @@ msgstr ""
|
|||
#: core/templates/core/timer_nav.html:50
|
||||
#: dashboard/templates/cards/diaperchange_last.html:17
|
||||
#: dashboard/templates/cards/diaperchange_types.html:12
|
||||
#: dashboard/templates/cards/feeding_day.html:20
|
||||
#: dashboard/templates/cards/feeding_day.html:58
|
||||
#: dashboard/templates/cards/feeding_last.html:17
|
||||
#: dashboard/templates/cards/feeding_last_method.html:49
|
||||
#: dashboard/templates/cards/feeding_recent.html:20
|
||||
#: dashboard/templates/cards/feeding_recent.html:58
|
||||
#: dashboard/templates/cards/pumping_last.html:17
|
||||
#: dashboard/templates/cards/sleep_last.html:17
|
||||
#: dashboard/templates/cards/sleep_naps_day.html:18
|
||||
|
@ -1841,23 +1841,6 @@ msgstr ""
|
|||
msgid "%(key)s days ago"
|
||||
msgstr ""
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:6
|
||||
msgid "Today's Feeding"
|
||||
msgstr ""
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:25
|
||||
#, python-format
|
||||
msgid "%(counter)s feeding"
|
||||
msgid_plural "%(counter)s feedings"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:32
|
||||
#: dashboard/templates/cards/sleep_recent.html:32
|
||||
#, python-format
|
||||
msgid "<div class=\"text-center small text-body-secondary\"> %(since)s </div>"
|
||||
msgstr ""
|
||||
|
||||
#: dashboard/templates/cards/feeding_last.html:6
|
||||
msgid "Last Feeding"
|
||||
msgstr ""
|
||||
|
@ -1877,6 +1860,23 @@ msgid_plural "%(n)s feedings ago"
|
|||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:6
|
||||
msgid "Recent Feedings"
|
||||
msgstr ""
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:25
|
||||
#, python-format
|
||||
msgid "%(counter)s feeding"
|
||||
msgid_plural "%(counter)s feedings"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:32
|
||||
#: dashboard/templates/cards/sleep_recent.html:32
|
||||
#, python-format
|
||||
msgid "<div class=\"text-center small text-body-secondary\"> %(since)s </div>"
|
||||
msgstr ""
|
||||
|
||||
#: dashboard/templates/cards/pumping_last.html:6
|
||||
msgid "Last Pumping"
|
||||
msgstr ""
|
||||
|
|
Binary file not shown.
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Baby Buddy\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-07-17 13:37+0000\n"
|
||||
"POT-Creation-Date: 2023-07-17 13:48+0000\n"
|
||||
"Language: es\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -565,8 +565,8 @@ msgstr "Chat / Soporte"
|
|||
#: core/templates/timeline/_timeline.html:7
|
||||
#: core/templates/timeline/_timeline.html:71
|
||||
#: core/templates/timeline/_timeline.html:73
|
||||
#: dashboard/templates/cards/feeding_day.html:46
|
||||
#: dashboard/templates/cards/feeding_last_method.html:37
|
||||
#: dashboard/templates/cards/feeding_recent.html:46
|
||||
#: dashboard/templates/cards/sleep_recent.html:43
|
||||
#: dashboard/templates/cards/statistics.html:37
|
||||
msgid "Previous"
|
||||
|
@ -577,8 +577,8 @@ msgstr "Anterior"
|
|||
#: core/templates/timeline/_timeline.html:14
|
||||
#: core/templates/timeline/_timeline.html:78
|
||||
#: core/templates/timeline/_timeline.html:80
|
||||
#: dashboard/templates/cards/feeding_day.html:53
|
||||
#: dashboard/templates/cards/feeding_last_method.html:44
|
||||
#: dashboard/templates/cards/feeding_recent.html:53
|
||||
#: dashboard/templates/cards/sleep_recent.html:47
|
||||
#: dashboard/templates/cards/statistics.html:44
|
||||
msgid "Next"
|
||||
|
@ -1599,10 +1599,10 @@ msgstr "Ver Temporizadores"
|
|||
#: core/templates/core/timer_nav.html:50
|
||||
#: dashboard/templates/cards/diaperchange_last.html:17
|
||||
#: dashboard/templates/cards/diaperchange_types.html:12
|
||||
#: dashboard/templates/cards/feeding_day.html:20
|
||||
#: dashboard/templates/cards/feeding_day.html:58
|
||||
#: dashboard/templates/cards/feeding_last.html:17
|
||||
#: dashboard/templates/cards/feeding_last_method.html:49
|
||||
#: dashboard/templates/cards/feeding_recent.html:20
|
||||
#: dashboard/templates/cards/feeding_recent.html:58
|
||||
#: dashboard/templates/cards/pumping_last.html:17
|
||||
#: dashboard/templates/cards/sleep_last.html:17
|
||||
#: dashboard/templates/cards/sleep_naps_day.html:18
|
||||
|
@ -1883,24 +1883,6 @@ msgstr "sólido"
|
|||
msgid "%(key)s days ago"
|
||||
msgstr "hace %(key)s días"
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:6
|
||||
msgid "Today's Feeding"
|
||||
msgstr "Tomas de Hoy"
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:25
|
||||
#, fuzzy, python-format
|
||||
msgid "%(counter)s feeding"
|
||||
msgid_plural "%(counter)s feedings"
|
||||
msgstr[0] "%(count)s entradas de sueño"
|
||||
msgstr[1] "%(count)s entradas de sueño"
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:32
|
||||
#: dashboard/templates/cards/sleep_recent.html:32
|
||||
#, fuzzy, python-format
|
||||
#| msgid "<div class=\"text-center small text-muted\"> %(since)s </div>"
|
||||
msgid "<div class=\"text-center small text-body-secondary\"> %(since)s </div>"
|
||||
msgstr "<div class=\"text-center small text-muted\"> %(since)s </div>"
|
||||
|
||||
#: dashboard/templates/cards/feeding_last.html:6
|
||||
msgid "Last Feeding"
|
||||
msgstr "Última Toma"
|
||||
|
@ -1920,6 +1902,26 @@ msgid_plural "%(n)s feedings ago"
|
|||
msgstr[0] "hace %(n)s toma%(plural)s"
|
||||
msgstr[1] "hace %(n)s toma%(plural)s"
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Delete a Feeding"
|
||||
msgid "Recent Feedings"
|
||||
msgstr "Eliminar una Toma"
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:25
|
||||
#, fuzzy, python-format
|
||||
msgid "%(counter)s feeding"
|
||||
msgid_plural "%(counter)s feedings"
|
||||
msgstr[0] "%(count)s entradas de sueño"
|
||||
msgstr[1] "%(count)s entradas de sueño"
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:32
|
||||
#: dashboard/templates/cards/sleep_recent.html:32
|
||||
#, fuzzy, python-format
|
||||
#| msgid "<div class=\"text-center small text-muted\"> %(since)s </div>"
|
||||
msgid "<div class=\"text-center small text-body-secondary\"> %(since)s </div>"
|
||||
msgstr "<div class=\"text-center small text-muted\"> %(since)s </div>"
|
||||
|
||||
#: dashboard/templates/cards/pumping_last.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Pumping"
|
||||
|
@ -2259,6 +2261,9 @@ msgstr "Tiempo Boca Abajo (Suma)"
|
|||
msgid "Total Tummy Time Durations"
|
||||
msgstr "Duración Total Tiempo Boca Abajo"
|
||||
|
||||
#~ msgid "Today's Feeding"
|
||||
#~ msgstr "Tomas de Hoy"
|
||||
|
||||
#~ msgid "Napping"
|
||||
#~ msgstr "Siesteando"
|
||||
|
||||
|
|
Binary file not shown.
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Baby Buddy\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-07-17 13:37+0000\n"
|
||||
"POT-Creation-Date: 2023-07-17 13:48+0000\n"
|
||||
"Language: fi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -558,8 +558,8 @@ msgstr "Chat / tuki"
|
|||
#: core/templates/timeline/_timeline.html:7
|
||||
#: core/templates/timeline/_timeline.html:71
|
||||
#: core/templates/timeline/_timeline.html:73
|
||||
#: dashboard/templates/cards/feeding_day.html:46
|
||||
#: dashboard/templates/cards/feeding_last_method.html:37
|
||||
#: dashboard/templates/cards/feeding_recent.html:46
|
||||
#: dashboard/templates/cards/sleep_recent.html:43
|
||||
#: dashboard/templates/cards/statistics.html:37
|
||||
msgid "Previous"
|
||||
|
@ -570,8 +570,8 @@ msgstr "Edellinen"
|
|||
#: core/templates/timeline/_timeline.html:14
|
||||
#: core/templates/timeline/_timeline.html:78
|
||||
#: core/templates/timeline/_timeline.html:80
|
||||
#: dashboard/templates/cards/feeding_day.html:53
|
||||
#: dashboard/templates/cards/feeding_last_method.html:44
|
||||
#: dashboard/templates/cards/feeding_recent.html:53
|
||||
#: dashboard/templates/cards/sleep_recent.html:47
|
||||
#: dashboard/templates/cards/statistics.html:44
|
||||
msgid "Next"
|
||||
|
@ -1576,10 +1576,10 @@ msgstr "Näytä ajastimet"
|
|||
#: core/templates/core/timer_nav.html:50
|
||||
#: dashboard/templates/cards/diaperchange_last.html:17
|
||||
#: dashboard/templates/cards/diaperchange_types.html:12
|
||||
#: dashboard/templates/cards/feeding_day.html:20
|
||||
#: dashboard/templates/cards/feeding_day.html:58
|
||||
#: dashboard/templates/cards/feeding_last.html:17
|
||||
#: dashboard/templates/cards/feeding_last_method.html:49
|
||||
#: dashboard/templates/cards/feeding_recent.html:20
|
||||
#: dashboard/templates/cards/feeding_recent.html:58
|
||||
#: dashboard/templates/cards/pumping_last.html:17
|
||||
#: dashboard/templates/cards/sleep_last.html:17
|
||||
#: dashboard/templates/cards/sleep_naps_day.html:18
|
||||
|
@ -1860,23 +1860,6 @@ msgstr "kiinteä"
|
|||
msgid "%(key)s days ago"
|
||||
msgstr "%(key)s päivää sitten"
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:6
|
||||
msgid "Today's Feeding"
|
||||
msgstr "Ruokinta tänään"
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:25
|
||||
#, fuzzy, python-format
|
||||
msgid "%(counter)s feeding"
|
||||
msgid_plural "%(counter)s feedings"
|
||||
msgstr[0] "%(count)s unimerkintä"
|
||||
msgstr[1] "%(count)s unimerkintä"
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:32
|
||||
#: dashboard/templates/cards/sleep_recent.html:32
|
||||
#, python-format
|
||||
msgid "<div class=\"text-center small text-body-secondary\"> %(since)s </div>"
|
||||
msgstr ""
|
||||
|
||||
#: dashboard/templates/cards/feeding_last.html:6
|
||||
msgid "Last Feeding"
|
||||
msgstr "Edellinen syöttö"
|
||||
|
@ -1896,6 +1879,25 @@ msgid_plural "%(n)s feedings ago"
|
|||
msgstr[0] "%(n)s syöttöä%(plural)s sitten"
|
||||
msgstr[1] "%(n)s syöttöä%(plural)s sitten"
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Delete a Feeding"
|
||||
msgid "Recent Feedings"
|
||||
msgstr "Poista syöttö"
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:25
|
||||
#, fuzzy, python-format
|
||||
msgid "%(counter)s feeding"
|
||||
msgid_plural "%(counter)s feedings"
|
||||
msgstr[0] "%(count)s unimerkintä"
|
||||
msgstr[1] "%(count)s unimerkintä"
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:32
|
||||
#: dashboard/templates/cards/sleep_recent.html:32
|
||||
#, python-format
|
||||
msgid "<div class=\"text-center small text-body-secondary\"> %(since)s </div>"
|
||||
msgstr ""
|
||||
|
||||
#: dashboard/templates/cards/pumping_last.html:6
|
||||
msgid "Last Pumping"
|
||||
msgstr "Viimeisin pumppaus"
|
||||
|
@ -2230,6 +2232,9 @@ msgstr ""
|
|||
msgid "Total Tummy Time Durations"
|
||||
msgstr "Maha-aika tänään"
|
||||
|
||||
#~ msgid "Today's Feeding"
|
||||
#~ msgstr "Ruokinta tänään"
|
||||
|
||||
#~ msgid "Napping"
|
||||
#~ msgstr "Päiväunet"
|
||||
|
||||
|
|
Binary file not shown.
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Baby Buddy\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-07-17 13:37+0000\n"
|
||||
"POT-Creation-Date: 2023-07-17 13:48+0000\n"
|
||||
"Language: fr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -567,8 +567,8 @@ msgstr "Tchat / Assistance"
|
|||
#: core/templates/timeline/_timeline.html:7
|
||||
#: core/templates/timeline/_timeline.html:71
|
||||
#: core/templates/timeline/_timeline.html:73
|
||||
#: dashboard/templates/cards/feeding_day.html:46
|
||||
#: dashboard/templates/cards/feeding_last_method.html:37
|
||||
#: dashboard/templates/cards/feeding_recent.html:46
|
||||
#: dashboard/templates/cards/sleep_recent.html:43
|
||||
#: dashboard/templates/cards/statistics.html:37
|
||||
msgid "Previous"
|
||||
|
@ -579,8 +579,8 @@ msgstr "Précédente"
|
|||
#: core/templates/timeline/_timeline.html:14
|
||||
#: core/templates/timeline/_timeline.html:78
|
||||
#: core/templates/timeline/_timeline.html:80
|
||||
#: dashboard/templates/cards/feeding_day.html:53
|
||||
#: dashboard/templates/cards/feeding_last_method.html:44
|
||||
#: dashboard/templates/cards/feeding_recent.html:53
|
||||
#: dashboard/templates/cards/sleep_recent.html:47
|
||||
#: dashboard/templates/cards/statistics.html:44
|
||||
msgid "Next"
|
||||
|
@ -1606,10 +1606,10 @@ msgstr "Voir les chronomètres"
|
|||
#: core/templates/core/timer_nav.html:50
|
||||
#: dashboard/templates/cards/diaperchange_last.html:17
|
||||
#: dashboard/templates/cards/diaperchange_types.html:12
|
||||
#: dashboard/templates/cards/feeding_day.html:20
|
||||
#: dashboard/templates/cards/feeding_day.html:58
|
||||
#: dashboard/templates/cards/feeding_last.html:17
|
||||
#: dashboard/templates/cards/feeding_last_method.html:49
|
||||
#: dashboard/templates/cards/feeding_recent.html:20
|
||||
#: dashboard/templates/cards/feeding_recent.html:58
|
||||
#: dashboard/templates/cards/pumping_last.html:17
|
||||
#: dashboard/templates/cards/sleep_last.html:17
|
||||
#: dashboard/templates/cards/sleep_naps_day.html:18
|
||||
|
@ -1890,24 +1890,6 @@ msgstr "solide"
|
|||
msgid "%(key)s days ago"
|
||||
msgstr "il y a %(key)s jours"
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:6
|
||||
msgid "Today's Feeding"
|
||||
msgstr "L'alimentation d'aujourd'hui"
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:25
|
||||
#, python-format
|
||||
msgid "%(counter)s feeding"
|
||||
msgid_plural "%(counter)s feedings"
|
||||
msgstr[0] "%(counter)s alimentation"
|
||||
msgstr[1] "%(counter)s alimentations"
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:32
|
||||
#: dashboard/templates/cards/sleep_recent.html:32
|
||||
#, fuzzy, python-format
|
||||
#| msgid "<div class=\"text-center small text-muted\"> %(since)s </div>"
|
||||
msgid "<div class=\"text-center small text-body-secondary\"> %(since)s </div>"
|
||||
msgstr "<div class=\"text-center small text-muted\"> %(since)s </div>"
|
||||
|
||||
#: dashboard/templates/cards/feeding_last.html:6
|
||||
msgid "Last Feeding"
|
||||
msgstr "Dernier repas"
|
||||
|
@ -1927,6 +1909,26 @@ msgid_plural "%(n)s feedings ago"
|
|||
msgstr[0] "il y a %(n)s alimentation"
|
||||
msgstr[1] "il y a %(n)s alimentations"
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Delete a Feeding"
|
||||
msgid "Recent Feedings"
|
||||
msgstr "Supprimer un repas"
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:25
|
||||
#, python-format
|
||||
msgid "%(counter)s feeding"
|
||||
msgid_plural "%(counter)s feedings"
|
||||
msgstr[0] "%(counter)s alimentation"
|
||||
msgstr[1] "%(counter)s alimentations"
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:32
|
||||
#: dashboard/templates/cards/sleep_recent.html:32
|
||||
#, fuzzy, python-format
|
||||
#| msgid "<div class=\"text-center small text-muted\"> %(since)s </div>"
|
||||
msgid "<div class=\"text-center small text-body-secondary\"> %(since)s </div>"
|
||||
msgstr "<div class=\"text-center small text-muted\"> %(since)s </div>"
|
||||
|
||||
#: dashboard/templates/cards/pumping_last.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Pumping"
|
||||
|
@ -2272,6 +2274,9 @@ msgstr "Durée du temps sur le ventre (total)"
|
|||
msgid "Total Tummy Time Durations"
|
||||
msgstr "Durées totales du temps sur le ventre"
|
||||
|
||||
#~ msgid "Today's Feeding"
|
||||
#~ msgstr "L'alimentation d'aujourd'hui"
|
||||
|
||||
#~ msgid "Napping"
|
||||
#~ msgstr "Sieste"
|
||||
|
||||
|
|
Binary file not shown.
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Baby Buddy\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-07-17 13:37+0000\n"
|
||||
"POT-Creation-Date: 2023-07-17 13:48+0000\n"
|
||||
"Language: hu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -561,8 +561,8 @@ msgstr "Chat / Támogatás"
|
|||
#: core/templates/timeline/_timeline.html:7
|
||||
#: core/templates/timeline/_timeline.html:71
|
||||
#: core/templates/timeline/_timeline.html:73
|
||||
#: dashboard/templates/cards/feeding_day.html:46
|
||||
#: dashboard/templates/cards/feeding_last_method.html:37
|
||||
#: dashboard/templates/cards/feeding_recent.html:46
|
||||
#: dashboard/templates/cards/sleep_recent.html:43
|
||||
#: dashboard/templates/cards/statistics.html:37
|
||||
msgid "Previous"
|
||||
|
@ -573,8 +573,8 @@ msgstr "Előző"
|
|||
#: core/templates/timeline/_timeline.html:14
|
||||
#: core/templates/timeline/_timeline.html:78
|
||||
#: core/templates/timeline/_timeline.html:80
|
||||
#: dashboard/templates/cards/feeding_day.html:53
|
||||
#: dashboard/templates/cards/feeding_last_method.html:44
|
||||
#: dashboard/templates/cards/feeding_recent.html:53
|
||||
#: dashboard/templates/cards/sleep_recent.html:47
|
||||
#: dashboard/templates/cards/statistics.html:44
|
||||
msgid "Next"
|
||||
|
@ -1587,10 +1587,10 @@ msgstr "Stopperek megtekintése"
|
|||
#: core/templates/core/timer_nav.html:50
|
||||
#: dashboard/templates/cards/diaperchange_last.html:17
|
||||
#: dashboard/templates/cards/diaperchange_types.html:12
|
||||
#: dashboard/templates/cards/feeding_day.html:20
|
||||
#: dashboard/templates/cards/feeding_day.html:58
|
||||
#: dashboard/templates/cards/feeding_last.html:17
|
||||
#: dashboard/templates/cards/feeding_last_method.html:49
|
||||
#: dashboard/templates/cards/feeding_recent.html:20
|
||||
#: dashboard/templates/cards/feeding_recent.html:58
|
||||
#: dashboard/templates/cards/pumping_last.html:17
|
||||
#: dashboard/templates/cards/sleep_last.html:17
|
||||
#: dashboard/templates/cards/sleep_naps_day.html:18
|
||||
|
@ -1869,24 +1869,6 @@ msgstr "kakis"
|
|||
msgid "%(key)s days ago"
|
||||
msgstr "%(key)s nappal ezelőtt"
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:6
|
||||
msgid "Today's Feeding"
|
||||
msgstr "Mai evés"
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:25
|
||||
#, python-format
|
||||
msgid "%(counter)s feeding"
|
||||
msgid_plural "%(counter)s feedings"
|
||||
msgstr[0] "%(counter)s etetés"
|
||||
msgstr[1] "%(counter)s etetés"
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:32
|
||||
#: dashboard/templates/cards/sleep_recent.html:32
|
||||
#, fuzzy, python-format
|
||||
#| msgid "<div class=\"text-center small text-muted\"> %(since)s </div>"
|
||||
msgid "<div class=\"text-center small text-body-secondary\"> %(since)s </div>"
|
||||
msgstr "<div class=\"text-center small text-muted\"> %(since)s </div>"
|
||||
|
||||
#: dashboard/templates/cards/feeding_last.html:6
|
||||
msgid "Last Feeding"
|
||||
msgstr "Utolsó etetés"
|
||||
|
@ -1906,6 +1888,26 @@ msgid_plural "%(n)s feedings ago"
|
|||
msgstr[0] "%(n)s etetéssel ezelőtt"
|
||||
msgstr[1] "%(n)s etetéssel ezelőtt"
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Delete a Feeding"
|
||||
msgid "Recent Feedings"
|
||||
msgstr "Etetés törlése"
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:25
|
||||
#, python-format
|
||||
msgid "%(counter)s feeding"
|
||||
msgid_plural "%(counter)s feedings"
|
||||
msgstr[0] "%(counter)s etetés"
|
||||
msgstr[1] "%(counter)s etetés"
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:32
|
||||
#: dashboard/templates/cards/sleep_recent.html:32
|
||||
#, fuzzy, python-format
|
||||
#| msgid "<div class=\"text-center small text-muted\"> %(since)s </div>"
|
||||
msgid "<div class=\"text-center small text-body-secondary\"> %(since)s </div>"
|
||||
msgstr "<div class=\"text-center small text-muted\"> %(since)s </div>"
|
||||
|
||||
#: dashboard/templates/cards/pumping_last.html:6
|
||||
msgid "Last Pumping"
|
||||
msgstr ""
|
||||
|
@ -2243,6 +2245,9 @@ msgstr "Pocakidő (Összes)"
|
|||
msgid "Total Tummy Time Durations"
|
||||
msgstr "Összes pocakidő"
|
||||
|
||||
#~ msgid "Today's Feeding"
|
||||
#~ msgstr "Mai evés"
|
||||
|
||||
#~ msgid "Napping"
|
||||
#~ msgstr "Szundi"
|
||||
|
||||
|
|
Binary file not shown.
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Baby Buddy\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-07-17 13:37+0000\n"
|
||||
"POT-Creation-Date: 2023-07-17 13:48+0000\n"
|
||||
"Language: it\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -573,8 +573,8 @@ msgstr "Chat / Supporto"
|
|||
#: core/templates/timeline/_timeline.html:7
|
||||
#: core/templates/timeline/_timeline.html:71
|
||||
#: core/templates/timeline/_timeline.html:73
|
||||
#: dashboard/templates/cards/feeding_day.html:46
|
||||
#: dashboard/templates/cards/feeding_last_method.html:37
|
||||
#: dashboard/templates/cards/feeding_recent.html:46
|
||||
#: dashboard/templates/cards/sleep_recent.html:43
|
||||
#: dashboard/templates/cards/statistics.html:37
|
||||
msgid "Previous"
|
||||
|
@ -585,8 +585,8 @@ msgstr "Precedente"
|
|||
#: core/templates/timeline/_timeline.html:14
|
||||
#: core/templates/timeline/_timeline.html:78
|
||||
#: core/templates/timeline/_timeline.html:80
|
||||
#: dashboard/templates/cards/feeding_day.html:53
|
||||
#: dashboard/templates/cards/feeding_last_method.html:44
|
||||
#: dashboard/templates/cards/feeding_recent.html:53
|
||||
#: dashboard/templates/cards/sleep_recent.html:47
|
||||
#: dashboard/templates/cards/statistics.html:44
|
||||
msgid "Next"
|
||||
|
@ -1616,10 +1616,10 @@ msgstr "Vedi Timer"
|
|||
#: core/templates/core/timer_nav.html:50
|
||||
#: dashboard/templates/cards/diaperchange_last.html:17
|
||||
#: dashboard/templates/cards/diaperchange_types.html:12
|
||||
#: dashboard/templates/cards/feeding_day.html:20
|
||||
#: dashboard/templates/cards/feeding_day.html:58
|
||||
#: dashboard/templates/cards/feeding_last.html:17
|
||||
#: dashboard/templates/cards/feeding_last_method.html:49
|
||||
#: dashboard/templates/cards/feeding_recent.html:20
|
||||
#: dashboard/templates/cards/feeding_recent.html:58
|
||||
#: dashboard/templates/cards/pumping_last.html:17
|
||||
#: dashboard/templates/cards/sleep_last.html:17
|
||||
#: dashboard/templates/cards/sleep_naps_day.html:18
|
||||
|
@ -1901,23 +1901,6 @@ msgstr "solida"
|
|||
msgid "%(key)s days ago"
|
||||
msgstr "%(key)s giorni fa"
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:6
|
||||
msgid "Today's Feeding"
|
||||
msgstr "Pasti di oggi"
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:25
|
||||
#, fuzzy, python-format
|
||||
msgid "%(counter)s feeding"
|
||||
msgid_plural "%(counter)s feedings"
|
||||
msgstr[0] "%(count)s Riposi"
|
||||
msgstr[1] "%(count)s Riposi"
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:32
|
||||
#: dashboard/templates/cards/sleep_recent.html:32
|
||||
#, python-format
|
||||
msgid "<div class=\"text-center small text-body-secondary\"> %(since)s </div>"
|
||||
msgstr ""
|
||||
|
||||
#: dashboard/templates/cards/feeding_last.html:6
|
||||
msgid "Last Feeding"
|
||||
msgstr "Ultimo Pasto"
|
||||
|
@ -1937,6 +1920,25 @@ msgid_plural "%(n)s feedings ago"
|
|||
msgstr[0] "%(n)s pasti fa"
|
||||
msgstr[1] "%(n)s pasti fa"
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Delete a Feeding"
|
||||
msgid "Recent Feedings"
|
||||
msgstr "Elimina Pasto"
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:25
|
||||
#, fuzzy, python-format
|
||||
msgid "%(counter)s feeding"
|
||||
msgid_plural "%(counter)s feedings"
|
||||
msgstr[0] "%(count)s Riposi"
|
||||
msgstr[1] "%(count)s Riposi"
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:32
|
||||
#: dashboard/templates/cards/sleep_recent.html:32
|
||||
#, python-format
|
||||
msgid "<div class=\"text-center small text-body-secondary\"> %(since)s </div>"
|
||||
msgstr ""
|
||||
|
||||
#: dashboard/templates/cards/pumping_last.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Last Feeding"
|
||||
|
@ -2287,6 +2289,9 @@ msgstr "Durata totale Tummy Time"
|
|||
msgid "Total Tummy Time Durations"
|
||||
msgstr "Durata totale Tummy Time"
|
||||
|
||||
#~ msgid "Today's Feeding"
|
||||
#~ msgstr "Pasti di oggi"
|
||||
|
||||
#~ msgid "Delete All Inactive Timers"
|
||||
#~ msgstr "Elimina Tutti i Timer Inattivi"
|
||||
|
||||
|
|
Binary file not shown.
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Baby Buddy\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-07-17 13:37+0000\n"
|
||||
"POT-Creation-Date: 2023-07-17 13:48+0000\n"
|
||||
"Language: nb\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -562,8 +562,8 @@ msgstr "Chat / Hjelp"
|
|||
#: core/templates/timeline/_timeline.html:7
|
||||
#: core/templates/timeline/_timeline.html:71
|
||||
#: core/templates/timeline/_timeline.html:73
|
||||
#: dashboard/templates/cards/feeding_day.html:46
|
||||
#: dashboard/templates/cards/feeding_last_method.html:37
|
||||
#: dashboard/templates/cards/feeding_recent.html:46
|
||||
#: dashboard/templates/cards/sleep_recent.html:43
|
||||
#: dashboard/templates/cards/statistics.html:37
|
||||
msgid "Previous"
|
||||
|
@ -574,8 +574,8 @@ msgstr "Tidligere"
|
|||
#: core/templates/timeline/_timeline.html:14
|
||||
#: core/templates/timeline/_timeline.html:78
|
||||
#: core/templates/timeline/_timeline.html:80
|
||||
#: dashboard/templates/cards/feeding_day.html:53
|
||||
#: dashboard/templates/cards/feeding_last_method.html:44
|
||||
#: dashboard/templates/cards/feeding_recent.html:53
|
||||
#: dashboard/templates/cards/sleep_recent.html:47
|
||||
#: dashboard/templates/cards/statistics.html:44
|
||||
msgid "Next"
|
||||
|
@ -1597,10 +1597,10 @@ msgstr "Vis tidtakere"
|
|||
#: core/templates/core/timer_nav.html:50
|
||||
#: dashboard/templates/cards/diaperchange_last.html:17
|
||||
#: dashboard/templates/cards/diaperchange_types.html:12
|
||||
#: dashboard/templates/cards/feeding_day.html:20
|
||||
#: dashboard/templates/cards/feeding_day.html:58
|
||||
#: dashboard/templates/cards/feeding_last.html:17
|
||||
#: dashboard/templates/cards/feeding_last_method.html:49
|
||||
#: dashboard/templates/cards/feeding_recent.html:20
|
||||
#: dashboard/templates/cards/feeding_recent.html:58
|
||||
#: dashboard/templates/cards/pumping_last.html:17
|
||||
#: dashboard/templates/cards/sleep_last.html:17
|
||||
#: dashboard/templates/cards/sleep_naps_day.html:18
|
||||
|
@ -1887,24 +1887,6 @@ msgstr "fast"
|
|||
msgid "%(key)s days ago"
|
||||
msgstr "%(key) dager siden"
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:6
|
||||
msgid "Today's Feeding"
|
||||
msgstr "Mating i dag"
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:25
|
||||
#, python-format
|
||||
msgid "%(counter)s feeding"
|
||||
msgid_plural "%(counter)s feedings"
|
||||
msgstr[0] "%(counter)s mating"
|
||||
msgstr[1] "%(counter)s matinger"
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:32
|
||||
#: dashboard/templates/cards/sleep_recent.html:32
|
||||
#, fuzzy, python-format
|
||||
#| msgid "<div class=\"text-center small text-muted\"> %(since)s </div>"
|
||||
msgid "<div class=\"text-center small text-body-secondary\"> %(since)s </div>"
|
||||
msgstr "<div class=\"text-center small text-muted\"> %(since)s </div>"
|
||||
|
||||
#: dashboard/templates/cards/feeding_last.html:6
|
||||
msgid "Last Feeding"
|
||||
msgstr "Sist mating"
|
||||
|
@ -1924,6 +1906,26 @@ msgid_plural "%(n)s feedings ago"
|
|||
msgstr[0] "%(n)s mating siden"
|
||||
msgstr[1] "%(n)s matinger siden"
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Delete a Feeding"
|
||||
msgid "Recent Feedings"
|
||||
msgstr "Slett en mating"
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:25
|
||||
#, python-format
|
||||
msgid "%(counter)s feeding"
|
||||
msgid_plural "%(counter)s feedings"
|
||||
msgstr[0] "%(counter)s mating"
|
||||
msgstr[1] "%(counter)s matinger"
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:32
|
||||
#: dashboard/templates/cards/sleep_recent.html:32
|
||||
#, fuzzy, python-format
|
||||
#| msgid "<div class=\"text-center small text-muted\"> %(since)s </div>"
|
||||
msgid "<div class=\"text-center small text-body-secondary\"> %(since)s </div>"
|
||||
msgstr "<div class=\"text-center small text-muted\"> %(since)s </div>"
|
||||
|
||||
#: dashboard/templates/cards/pumping_last.html:6
|
||||
msgid "Last Pumping"
|
||||
msgstr "Siste brystpumping"
|
||||
|
@ -2260,6 +2262,9 @@ msgstr "Magetid totalt"
|
|||
msgid "Total Tummy Time Durations"
|
||||
msgstr "Varighet for magetid totalt"
|
||||
|
||||
#~ msgid "Today's Feeding"
|
||||
#~ msgstr "Mating i dag"
|
||||
|
||||
#~ msgid "Napping"
|
||||
#~ msgstr "Middagshvil"
|
||||
|
||||
|
|
Binary file not shown.
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Baby Buddy\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-07-17 13:37+0000\n"
|
||||
"POT-Creation-Date: 2023-07-17 13:48+0000\n"
|
||||
"Language: nl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -563,8 +563,8 @@ msgstr "Chat / Hulp"
|
|||
#: core/templates/timeline/_timeline.html:7
|
||||
#: core/templates/timeline/_timeline.html:71
|
||||
#: core/templates/timeline/_timeline.html:73
|
||||
#: dashboard/templates/cards/feeding_day.html:46
|
||||
#: dashboard/templates/cards/feeding_last_method.html:37
|
||||
#: dashboard/templates/cards/feeding_recent.html:46
|
||||
#: dashboard/templates/cards/sleep_recent.html:43
|
||||
#: dashboard/templates/cards/statistics.html:37
|
||||
msgid "Previous"
|
||||
|
@ -575,8 +575,8 @@ msgstr "Vorige"
|
|||
#: core/templates/timeline/_timeline.html:14
|
||||
#: core/templates/timeline/_timeline.html:78
|
||||
#: core/templates/timeline/_timeline.html:80
|
||||
#: dashboard/templates/cards/feeding_day.html:53
|
||||
#: dashboard/templates/cards/feeding_last_method.html:44
|
||||
#: dashboard/templates/cards/feeding_recent.html:53
|
||||
#: dashboard/templates/cards/sleep_recent.html:47
|
||||
#: dashboard/templates/cards/statistics.html:44
|
||||
msgid "Next"
|
||||
|
@ -1606,10 +1606,10 @@ msgstr "Bekijk timers"
|
|||
#: core/templates/core/timer_nav.html:50
|
||||
#: dashboard/templates/cards/diaperchange_last.html:17
|
||||
#: dashboard/templates/cards/diaperchange_types.html:12
|
||||
#: dashboard/templates/cards/feeding_day.html:20
|
||||
#: dashboard/templates/cards/feeding_day.html:58
|
||||
#: dashboard/templates/cards/feeding_last.html:17
|
||||
#: dashboard/templates/cards/feeding_last_method.html:49
|
||||
#: dashboard/templates/cards/feeding_recent.html:20
|
||||
#: dashboard/templates/cards/feeding_recent.html:58
|
||||
#: dashboard/templates/cards/pumping_last.html:17
|
||||
#: dashboard/templates/cards/sleep_last.html:17
|
||||
#: dashboard/templates/cards/sleep_naps_day.html:18
|
||||
|
@ -1889,24 +1889,6 @@ msgstr "vast"
|
|||
msgid "%(key)s days ago"
|
||||
msgstr "%(key)s dagen geleden"
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:6
|
||||
msgid "Today's Feeding"
|
||||
msgstr "Voeding vandaag"
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:25
|
||||
#, fuzzy, python-format
|
||||
msgid "%(counter)s feeding"
|
||||
msgid_plural "%(counter)s feedings"
|
||||
msgstr[0] "%(counter)s voeding"
|
||||
msgstr[1] "%(counter)s voedingen"
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:32
|
||||
#: dashboard/templates/cards/sleep_recent.html:32
|
||||
#, fuzzy, python-format
|
||||
#| msgid "<div class=\"text-center small text-muted\"> %(since)s </div>"
|
||||
msgid "<div class=\"text-center small text-body-secondary\"> %(since)s </div>"
|
||||
msgstr "<div class=\"text-center small text-muted\"> %(since)s </div>"
|
||||
|
||||
#: dashboard/templates/cards/feeding_last.html:6
|
||||
msgid "Last Feeding"
|
||||
msgstr "Laatste maaltijd"
|
||||
|
@ -1926,6 +1908,26 @@ msgid_plural "%(n)s feedings ago"
|
|||
msgstr[0] "%(n)s maaltijd geleden"
|
||||
msgstr[1] "%(n)s maaltijden geleden"
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Delete a Feeding"
|
||||
msgid "Recent Feedings"
|
||||
msgstr "Verwijder een maaltijd"
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:25
|
||||
#, fuzzy, python-format
|
||||
msgid "%(counter)s feeding"
|
||||
msgid_plural "%(counter)s feedings"
|
||||
msgstr[0] "%(counter)s voeding"
|
||||
msgstr[1] "%(counter)s voedingen"
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:32
|
||||
#: dashboard/templates/cards/sleep_recent.html:32
|
||||
#, fuzzy, python-format
|
||||
#| msgid "<div class=\"text-center small text-muted\"> %(since)s </div>"
|
||||
msgid "<div class=\"text-center small text-body-secondary\"> %(since)s </div>"
|
||||
msgstr "<div class=\"text-center small text-muted\"> %(since)s </div>"
|
||||
|
||||
#: dashboard/templates/cards/pumping_last.html:6
|
||||
msgid "Last Pumping"
|
||||
msgstr ""
|
||||
|
@ -2268,6 +2270,9 @@ msgstr "Duur Buikliggen (Som)"
|
|||
msgid "Total Tummy Time Durations"
|
||||
msgstr "Totale tijdsduur Buikliggen"
|
||||
|
||||
#~ msgid "Today's Feeding"
|
||||
#~ msgstr "Voeding vandaag"
|
||||
|
||||
#~ msgid "Napping"
|
||||
#~ msgstr "Dutten"
|
||||
|
||||
|
|
Binary file not shown.
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Baby Buddy\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-07-17 13:37+0000\n"
|
||||
"POT-Creation-Date: 2023-07-17 13:48+0000\n"
|
||||
"Language: pl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -569,8 +569,8 @@ msgstr "Czat / Wsparcie"
|
|||
#: core/templates/timeline/_timeline.html:7
|
||||
#: core/templates/timeline/_timeline.html:71
|
||||
#: core/templates/timeline/_timeline.html:73
|
||||
#: dashboard/templates/cards/feeding_day.html:46
|
||||
#: dashboard/templates/cards/feeding_last_method.html:37
|
||||
#: dashboard/templates/cards/feeding_recent.html:46
|
||||
#: dashboard/templates/cards/sleep_recent.html:43
|
||||
#: dashboard/templates/cards/statistics.html:37
|
||||
msgid "Previous"
|
||||
|
@ -581,8 +581,8 @@ msgstr "Poprzedni"
|
|||
#: core/templates/timeline/_timeline.html:14
|
||||
#: core/templates/timeline/_timeline.html:78
|
||||
#: core/templates/timeline/_timeline.html:80
|
||||
#: dashboard/templates/cards/feeding_day.html:53
|
||||
#: dashboard/templates/cards/feeding_last_method.html:44
|
||||
#: dashboard/templates/cards/feeding_recent.html:53
|
||||
#: dashboard/templates/cards/sleep_recent.html:47
|
||||
#: dashboard/templates/cards/statistics.html:44
|
||||
msgid "Next"
|
||||
|
@ -1606,10 +1606,10 @@ msgstr "Zobacz stopery"
|
|||
#: core/templates/core/timer_nav.html:50
|
||||
#: dashboard/templates/cards/diaperchange_last.html:17
|
||||
#: dashboard/templates/cards/diaperchange_types.html:12
|
||||
#: dashboard/templates/cards/feeding_day.html:20
|
||||
#: dashboard/templates/cards/feeding_day.html:58
|
||||
#: dashboard/templates/cards/feeding_last.html:17
|
||||
#: dashboard/templates/cards/feeding_last_method.html:49
|
||||
#: dashboard/templates/cards/feeding_recent.html:20
|
||||
#: dashboard/templates/cards/feeding_recent.html:58
|
||||
#: dashboard/templates/cards/pumping_last.html:17
|
||||
#: dashboard/templates/cards/sleep_last.html:17
|
||||
#: dashboard/templates/cards/sleep_naps_day.html:18
|
||||
|
@ -1896,25 +1896,6 @@ msgstr "stała"
|
|||
msgid "%(key)s days ago"
|
||||
msgstr "%(key)s dni temu"
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:6
|
||||
msgid "Today's Feeding"
|
||||
msgstr "Dzisiejsze karmienia"
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:25
|
||||
#, fuzzy, python-format
|
||||
msgid "%(counter)s feeding"
|
||||
msgid_plural "%(counter)s feedings"
|
||||
msgstr[0] "%(count)s karmienie"
|
||||
msgstr[1] "%(count)s karmień"
|
||||
msgstr[2] "%(count)s karmień"
|
||||
msgstr[3] ""
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:32
|
||||
#: dashboard/templates/cards/sleep_recent.html:32
|
||||
#, python-format
|
||||
msgid "<div class=\"text-center small text-body-secondary\"> %(since)s </div>"
|
||||
msgstr ""
|
||||
|
||||
#: dashboard/templates/cards/feeding_last.html:6
|
||||
msgid "Last Feeding"
|
||||
msgstr "Ostatnie karmienie"
|
||||
|
@ -1936,6 +1917,27 @@ msgstr[1] "%(n)s karmień%(plural)s temu"
|
|||
msgstr[2] "%(n)s karmień%(plural)s temu"
|
||||
msgstr[3] ""
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Delete a Feeding"
|
||||
msgid "Recent Feedings"
|
||||
msgstr "Usuń karmienie"
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:25
|
||||
#, fuzzy, python-format
|
||||
msgid "%(counter)s feeding"
|
||||
msgid_plural "%(counter)s feedings"
|
||||
msgstr[0] "%(count)s karmienie"
|
||||
msgstr[1] "%(count)s karmień"
|
||||
msgstr[2] "%(count)s karmień"
|
||||
msgstr[3] ""
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:32
|
||||
#: dashboard/templates/cards/sleep_recent.html:32
|
||||
#, python-format
|
||||
msgid "<div class=\"text-center small text-body-secondary\"> %(since)s </div>"
|
||||
msgstr ""
|
||||
|
||||
#: dashboard/templates/cards/pumping_last.html:6
|
||||
#, fuzzy
|
||||
msgid "Last Pumping"
|
||||
|
@ -2291,6 +2293,9 @@ msgstr ""
|
|||
msgid "Total Tummy Time Durations"
|
||||
msgstr "Całkowity czas leżenia na brzuszku"
|
||||
|
||||
#~ msgid "Today's Feeding"
|
||||
#~ msgstr "Dzisiejsze karmienia"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "This setting will only be used when a browser does not support refresh on "
|
||||
#~ "focus."
|
||||
|
|
Binary file not shown.
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Baby Buddy\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-07-17 13:37+0000\n"
|
||||
"POT-Creation-Date: 2023-07-17 13:48+0000\n"
|
||||
"Language: pt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -566,8 +566,8 @@ msgstr "Chat / Suporte"
|
|||
#: core/templates/timeline/_timeline.html:7
|
||||
#: core/templates/timeline/_timeline.html:71
|
||||
#: core/templates/timeline/_timeline.html:73
|
||||
#: dashboard/templates/cards/feeding_day.html:46
|
||||
#: dashboard/templates/cards/feeding_last_method.html:37
|
||||
#: dashboard/templates/cards/feeding_recent.html:46
|
||||
#: dashboard/templates/cards/sleep_recent.html:43
|
||||
#: dashboard/templates/cards/statistics.html:37
|
||||
msgid "Previous"
|
||||
|
@ -578,8 +578,8 @@ msgstr "Anterior"
|
|||
#: core/templates/timeline/_timeline.html:14
|
||||
#: core/templates/timeline/_timeline.html:78
|
||||
#: core/templates/timeline/_timeline.html:80
|
||||
#: dashboard/templates/cards/feeding_day.html:53
|
||||
#: dashboard/templates/cards/feeding_last_method.html:44
|
||||
#: dashboard/templates/cards/feeding_recent.html:53
|
||||
#: dashboard/templates/cards/sleep_recent.html:47
|
||||
#: dashboard/templates/cards/statistics.html:44
|
||||
msgid "Next"
|
||||
|
@ -1605,10 +1605,10 @@ msgstr "Ver Temporizadores"
|
|||
#: core/templates/core/timer_nav.html:50
|
||||
#: dashboard/templates/cards/diaperchange_last.html:17
|
||||
#: dashboard/templates/cards/diaperchange_types.html:12
|
||||
#: dashboard/templates/cards/feeding_day.html:20
|
||||
#: dashboard/templates/cards/feeding_day.html:58
|
||||
#: dashboard/templates/cards/feeding_last.html:17
|
||||
#: dashboard/templates/cards/feeding_last_method.html:49
|
||||
#: dashboard/templates/cards/feeding_recent.html:20
|
||||
#: dashboard/templates/cards/feeding_recent.html:58
|
||||
#: dashboard/templates/cards/pumping_last.html:17
|
||||
#: dashboard/templates/cards/sleep_last.html:17
|
||||
#: dashboard/templates/cards/sleep_naps_day.html:18
|
||||
|
@ -1888,24 +1888,6 @@ msgstr "sólido"
|
|||
msgid "%(key)s days ago"
|
||||
msgstr "%(key)s dias atrás"
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:6
|
||||
msgid "Today's Feeding"
|
||||
msgstr "Alimentações de Hoje"
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:25
|
||||
#, fuzzy, python-format
|
||||
msgid "%(counter)s feeding"
|
||||
msgid_plural "%(counter)s feedings"
|
||||
msgstr[0] "%(count)s entradas de sono"
|
||||
msgstr[1] "%(count)s entradas de sono"
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:32
|
||||
#: dashboard/templates/cards/sleep_recent.html:32
|
||||
#, fuzzy, python-format
|
||||
#| msgid "<div class=\"text-center small text-muted\"> %(since)s </div>"
|
||||
msgid "<div class=\"text-center small text-body-secondary\"> %(since)s </div>"
|
||||
msgstr "<div class=\"text-center small text-muted\"> %(since)s </div>"
|
||||
|
||||
#: dashboard/templates/cards/feeding_last.html:6
|
||||
msgid "Last Feeding"
|
||||
msgstr "Última Alimentação"
|
||||
|
@ -1925,6 +1907,26 @@ msgid_plural "%(n)s feedings ago"
|
|||
msgstr[0] "%(n)s alimentaçõe%(plural)s atrás"
|
||||
msgstr[1] "%(n)s alimentaçõe%(plural)s atrás"
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Delete a Feeding"
|
||||
msgid "Recent Feedings"
|
||||
msgstr "Apagar uma Alimentação"
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:25
|
||||
#, fuzzy, python-format
|
||||
msgid "%(counter)s feeding"
|
||||
msgid_plural "%(counter)s feedings"
|
||||
msgstr[0] "%(count)s entradas de sono"
|
||||
msgstr[1] "%(count)s entradas de sono"
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:32
|
||||
#: dashboard/templates/cards/sleep_recent.html:32
|
||||
#, fuzzy, python-format
|
||||
#| msgid "<div class=\"text-center small text-muted\"> %(since)s </div>"
|
||||
msgid "<div class=\"text-center small text-body-secondary\"> %(since)s </div>"
|
||||
msgstr "<div class=\"text-center small text-muted\"> %(since)s </div>"
|
||||
|
||||
#: dashboard/templates/cards/pumping_last.html:6
|
||||
msgid "Last Pumping"
|
||||
msgstr "Última extração"
|
||||
|
@ -2269,6 +2271,9 @@ msgstr "Duração do tempo de barriga (Soma)"
|
|||
msgid "Total Tummy Time Durations"
|
||||
msgstr "Duranção do tempo de barriga"
|
||||
|
||||
#~ msgid "Today's Feeding"
|
||||
#~ msgstr "Alimentações de Hoje"
|
||||
|
||||
#~ msgid "Napping"
|
||||
#~ msgstr "Dormir"
|
||||
|
||||
|
|
Binary file not shown.
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Baby Buddy\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-07-17 13:37+0000\n"
|
||||
"POT-Creation-Date: 2023-07-17 13:48+0000\n"
|
||||
"Language: ru\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -566,8 +566,8 @@ msgstr "Чат / Поддержка"
|
|||
#: core/templates/timeline/_timeline.html:7
|
||||
#: core/templates/timeline/_timeline.html:71
|
||||
#: core/templates/timeline/_timeline.html:73
|
||||
#: dashboard/templates/cards/feeding_day.html:46
|
||||
#: dashboard/templates/cards/feeding_last_method.html:37
|
||||
#: dashboard/templates/cards/feeding_recent.html:46
|
||||
#: dashboard/templates/cards/sleep_recent.html:43
|
||||
#: dashboard/templates/cards/statistics.html:37
|
||||
msgid "Previous"
|
||||
|
@ -578,8 +578,8 @@ msgstr "Назад"
|
|||
#: core/templates/timeline/_timeline.html:14
|
||||
#: core/templates/timeline/_timeline.html:78
|
||||
#: core/templates/timeline/_timeline.html:80
|
||||
#: dashboard/templates/cards/feeding_day.html:53
|
||||
#: dashboard/templates/cards/feeding_last_method.html:44
|
||||
#: dashboard/templates/cards/feeding_recent.html:53
|
||||
#: dashboard/templates/cards/sleep_recent.html:47
|
||||
#: dashboard/templates/cards/statistics.html:44
|
||||
msgid "Next"
|
||||
|
@ -1589,10 +1589,10 @@ msgstr "Просмотр таймеров"
|
|||
#: core/templates/core/timer_nav.html:50
|
||||
#: dashboard/templates/cards/diaperchange_last.html:17
|
||||
#: dashboard/templates/cards/diaperchange_types.html:12
|
||||
#: dashboard/templates/cards/feeding_day.html:20
|
||||
#: dashboard/templates/cards/feeding_day.html:58
|
||||
#: dashboard/templates/cards/feeding_last.html:17
|
||||
#: dashboard/templates/cards/feeding_last_method.html:49
|
||||
#: dashboard/templates/cards/feeding_recent.html:20
|
||||
#: dashboard/templates/cards/feeding_recent.html:58
|
||||
#: dashboard/templates/cards/pumping_last.html:17
|
||||
#: dashboard/templates/cards/sleep_last.html:17
|
||||
#: dashboard/templates/cards/sleep_naps_day.html:18
|
||||
|
@ -1880,25 +1880,6 @@ msgstr "твёрдый"
|
|||
msgid "%(key)s days ago"
|
||||
msgstr "%(key)s дней тому назад"
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:6
|
||||
msgid "Today's Feeding"
|
||||
msgstr "Кормлений сегодня"
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:25
|
||||
#, python-format
|
||||
msgid "%(counter)s feeding"
|
||||
msgid_plural "%(counter)s feedings"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
msgstr[2] ""
|
||||
msgstr[3] ""
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:32
|
||||
#: dashboard/templates/cards/sleep_recent.html:32
|
||||
#, python-format
|
||||
msgid "<div class=\"text-center small text-body-secondary\"> %(since)s </div>"
|
||||
msgstr ""
|
||||
|
||||
#: dashboard/templates/cards/feeding_last.html:6
|
||||
msgid "Last Feeding"
|
||||
msgstr "Последний раз кушал"
|
||||
|
@ -1920,6 +1901,27 @@ msgstr[1] ""
|
|||
msgstr[2] ""
|
||||
msgstr[3] ""
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Delete a Feeding"
|
||||
msgid "Recent Feedings"
|
||||
msgstr "Удалить кормление"
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:25
|
||||
#, python-format
|
||||
msgid "%(counter)s feeding"
|
||||
msgid_plural "%(counter)s feedings"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
msgstr[2] ""
|
||||
msgstr[3] ""
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:32
|
||||
#: dashboard/templates/cards/sleep_recent.html:32
|
||||
#, python-format
|
||||
msgid "<div class=\"text-center small text-body-secondary\"> %(since)s </div>"
|
||||
msgstr ""
|
||||
|
||||
#: dashboard/templates/cards/pumping_last.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Last Feeding"
|
||||
|
@ -2265,6 +2267,9 @@ msgstr "Время на животике (суммарно)"
|
|||
msgid "Total Tummy Time Durations"
|
||||
msgstr "Сколько лежал на животике"
|
||||
|
||||
#~ msgid "Today's Feeding"
|
||||
#~ msgstr "Кормлений сегодня"
|
||||
|
||||
#~ msgid "Delete All Inactive Timers"
|
||||
#~ msgstr "Удалить все неактивные таймеры"
|
||||
|
||||
|
|
Binary file not shown.
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Baby Buddy\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-07-17 13:37+0000\n"
|
||||
"POT-Creation-Date: 2023-07-17 13:48+0000\n"
|
||||
"Language: sv\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -567,8 +567,8 @@ msgstr "Chatt / Support"
|
|||
#: core/templates/timeline/_timeline.html:7
|
||||
#: core/templates/timeline/_timeline.html:71
|
||||
#: core/templates/timeline/_timeline.html:73
|
||||
#: dashboard/templates/cards/feeding_day.html:46
|
||||
#: dashboard/templates/cards/feeding_last_method.html:37
|
||||
#: dashboard/templates/cards/feeding_recent.html:46
|
||||
#: dashboard/templates/cards/sleep_recent.html:43
|
||||
#: dashboard/templates/cards/statistics.html:37
|
||||
msgid "Previous"
|
||||
|
@ -579,8 +579,8 @@ msgstr "Föregående"
|
|||
#: core/templates/timeline/_timeline.html:14
|
||||
#: core/templates/timeline/_timeline.html:78
|
||||
#: core/templates/timeline/_timeline.html:80
|
||||
#: dashboard/templates/cards/feeding_day.html:53
|
||||
#: dashboard/templates/cards/feeding_last_method.html:44
|
||||
#: dashboard/templates/cards/feeding_recent.html:53
|
||||
#: dashboard/templates/cards/sleep_recent.html:47
|
||||
#: dashboard/templates/cards/statistics.html:44
|
||||
msgid "Next"
|
||||
|
@ -1603,10 +1603,10 @@ msgstr "Visa timers"
|
|||
#: core/templates/core/timer_nav.html:50
|
||||
#: dashboard/templates/cards/diaperchange_last.html:17
|
||||
#: dashboard/templates/cards/diaperchange_types.html:12
|
||||
#: dashboard/templates/cards/feeding_day.html:20
|
||||
#: dashboard/templates/cards/feeding_day.html:58
|
||||
#: dashboard/templates/cards/feeding_last.html:17
|
||||
#: dashboard/templates/cards/feeding_last_method.html:49
|
||||
#: dashboard/templates/cards/feeding_recent.html:20
|
||||
#: dashboard/templates/cards/feeding_recent.html:58
|
||||
#: dashboard/templates/cards/pumping_last.html:17
|
||||
#: dashboard/templates/cards/sleep_last.html:17
|
||||
#: dashboard/templates/cards/sleep_naps_day.html:18
|
||||
|
@ -1891,23 +1891,6 @@ msgstr "fast"
|
|||
msgid "%(key)s days ago"
|
||||
msgstr "%(key)s dagar sedan"
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:6
|
||||
msgid "Today's Feeding"
|
||||
msgstr "Dagens Matning"
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:25
|
||||
#, fuzzy, python-format
|
||||
msgid "%(counter)s feeding"
|
||||
msgid_plural "%(counter)s feedings"
|
||||
msgstr[0] "%(count)s matning"
|
||||
msgstr[1] "%(count)s matningar"
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:32
|
||||
#: dashboard/templates/cards/sleep_recent.html:32
|
||||
#, fuzzy, python-format
|
||||
msgid "<div class=\"text-center small text-body-secondary\"> %(since)s </div>"
|
||||
msgstr "<div class=\"text-center small text-muted\"> %(since)s </div>"
|
||||
|
||||
#: dashboard/templates/cards/feeding_last.html:6
|
||||
msgid "Last Feeding"
|
||||
msgstr "Senaste matning"
|
||||
|
@ -1927,6 +1910,25 @@ msgid_plural "%(n)s feedings ago"
|
|||
msgstr[0] "%(key)s matning sedan"
|
||||
msgstr[1] "%(key)s matningar sedan"
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Delete a Feeding"
|
||||
msgid "Recent Feedings"
|
||||
msgstr "Radera matning"
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:25
|
||||
#, fuzzy, python-format
|
||||
msgid "%(counter)s feeding"
|
||||
msgid_plural "%(counter)s feedings"
|
||||
msgstr[0] "%(count)s matning"
|
||||
msgstr[1] "%(count)s matningar"
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:32
|
||||
#: dashboard/templates/cards/sleep_recent.html:32
|
||||
#, fuzzy, python-format
|
||||
msgid "<div class=\"text-center small text-body-secondary\"> %(since)s </div>"
|
||||
msgstr "<div class=\"text-center small text-muted\"> %(since)s </div>"
|
||||
|
||||
#: dashboard/templates/cards/pumping_last.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Pumping"
|
||||
|
@ -2266,6 +2268,9 @@ msgstr "Magläge varaktighet (Totalt)"
|
|||
msgid "Total Tummy Time Durations"
|
||||
msgstr "Total varaktighet för magläge"
|
||||
|
||||
#~ msgid "Today's Feeding"
|
||||
#~ msgstr "Dagens Matning"
|
||||
|
||||
#~ msgid "Napping"
|
||||
#~ msgstr "Tupplur"
|
||||
|
||||
|
|
Binary file not shown.
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Baby Buddy\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-07-17 13:37+0000\n"
|
||||
"POT-Creation-Date: 2023-07-17 13:48+0000\n"
|
||||
"Language: tr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -568,8 +568,8 @@ msgstr "Sohbet / Destek"
|
|||
#: core/templates/timeline/_timeline.html:7
|
||||
#: core/templates/timeline/_timeline.html:71
|
||||
#: core/templates/timeline/_timeline.html:73
|
||||
#: dashboard/templates/cards/feeding_day.html:46
|
||||
#: dashboard/templates/cards/feeding_last_method.html:37
|
||||
#: dashboard/templates/cards/feeding_recent.html:46
|
||||
#: dashboard/templates/cards/sleep_recent.html:43
|
||||
#: dashboard/templates/cards/statistics.html:37
|
||||
msgid "Previous"
|
||||
|
@ -580,8 +580,8 @@ msgstr "Önceki"
|
|||
#: core/templates/timeline/_timeline.html:14
|
||||
#: core/templates/timeline/_timeline.html:78
|
||||
#: core/templates/timeline/_timeline.html:80
|
||||
#: dashboard/templates/cards/feeding_day.html:53
|
||||
#: dashboard/templates/cards/feeding_last_method.html:44
|
||||
#: dashboard/templates/cards/feeding_recent.html:53
|
||||
#: dashboard/templates/cards/sleep_recent.html:47
|
||||
#: dashboard/templates/cards/statistics.html:44
|
||||
msgid "Next"
|
||||
|
@ -1604,10 +1604,10 @@ msgstr "Zamanlayıcıları İzle"
|
|||
#: core/templates/core/timer_nav.html:50
|
||||
#: dashboard/templates/cards/diaperchange_last.html:17
|
||||
#: dashboard/templates/cards/diaperchange_types.html:12
|
||||
#: dashboard/templates/cards/feeding_day.html:20
|
||||
#: dashboard/templates/cards/feeding_day.html:58
|
||||
#: dashboard/templates/cards/feeding_last.html:17
|
||||
#: dashboard/templates/cards/feeding_last_method.html:49
|
||||
#: dashboard/templates/cards/feeding_recent.html:20
|
||||
#: dashboard/templates/cards/feeding_recent.html:58
|
||||
#: dashboard/templates/cards/pumping_last.html:17
|
||||
#: dashboard/templates/cards/sleep_last.html:17
|
||||
#: dashboard/templates/cards/sleep_naps_day.html:18
|
||||
|
@ -1890,23 +1890,6 @@ msgstr "kuru"
|
|||
msgid "%(key)s days ago"
|
||||
msgstr "%(key)s gün önce"
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:6
|
||||
msgid "Today's Feeding"
|
||||
msgstr "Bugünkü beslenme"
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:25
|
||||
#, fuzzy, python-format
|
||||
msgid "%(counter)s feeding"
|
||||
msgid_plural "%(counter)s feedings"
|
||||
msgstr[0] "%(count)s uygu girdileri"
|
||||
msgstr[1] "%(count)s uygu girdileri"
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:32
|
||||
#: dashboard/templates/cards/sleep_recent.html:32
|
||||
#, python-format
|
||||
msgid "<div class=\"text-center small text-body-secondary\"> %(since)s </div>"
|
||||
msgstr ""
|
||||
|
||||
#: dashboard/templates/cards/feeding_last.html:6
|
||||
msgid "Last Feeding"
|
||||
msgstr "Son Beslenme"
|
||||
|
@ -1926,6 +1909,25 @@ msgid_plural "%(n)s feedings ago"
|
|||
msgstr[0] "%(n) beslenmeler önce"
|
||||
msgstr[1] "%(n) beslenmeler önce"
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Delete a Feeding"
|
||||
msgid "Recent Feedings"
|
||||
msgstr "Beslenme ekle"
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:25
|
||||
#, fuzzy, python-format
|
||||
msgid "%(counter)s feeding"
|
||||
msgid_plural "%(counter)s feedings"
|
||||
msgstr[0] "%(count)s uygu girdileri"
|
||||
msgstr[1] "%(count)s uygu girdileri"
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:32
|
||||
#: dashboard/templates/cards/sleep_recent.html:32
|
||||
#, python-format
|
||||
msgid "<div class=\"text-center small text-body-secondary\"> %(since)s </div>"
|
||||
msgstr ""
|
||||
|
||||
#: dashboard/templates/cards/pumping_last.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Last Feeding"
|
||||
|
@ -2276,6 +2278,9 @@ msgstr "Karın üstü süresi (Sum)"
|
|||
msgid "Total Tummy Time Durations"
|
||||
msgstr "Toplam Karın Üstü Süresi"
|
||||
|
||||
#~ msgid "Today's Feeding"
|
||||
#~ msgstr "Bugünkü beslenme"
|
||||
|
||||
#~ msgid "Delete All Inactive Timers"
|
||||
#~ msgstr "Pasif Tüm Zamanlayıcıları Sil"
|
||||
|
||||
|
|
Binary file not shown.
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Baby Buddy\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-07-17 13:37+0000\n"
|
||||
"POT-Creation-Date: 2023-07-17 13:48+0000\n"
|
||||
"Language: zh-Hans\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -561,8 +561,8 @@ msgstr "聊天 / 支持"
|
|||
#: core/templates/timeline/_timeline.html:7
|
||||
#: core/templates/timeline/_timeline.html:71
|
||||
#: core/templates/timeline/_timeline.html:73
|
||||
#: dashboard/templates/cards/feeding_day.html:46
|
||||
#: dashboard/templates/cards/feeding_last_method.html:37
|
||||
#: dashboard/templates/cards/feeding_recent.html:46
|
||||
#: dashboard/templates/cards/sleep_recent.html:43
|
||||
#: dashboard/templates/cards/statistics.html:37
|
||||
msgid "Previous"
|
||||
|
@ -573,8 +573,8 @@ msgstr "上一页"
|
|||
#: core/templates/timeline/_timeline.html:14
|
||||
#: core/templates/timeline/_timeline.html:78
|
||||
#: core/templates/timeline/_timeline.html:80
|
||||
#: dashboard/templates/cards/feeding_day.html:53
|
||||
#: dashboard/templates/cards/feeding_last_method.html:44
|
||||
#: dashboard/templates/cards/feeding_recent.html:53
|
||||
#: dashboard/templates/cards/sleep_recent.html:47
|
||||
#: dashboard/templates/cards/statistics.html:44
|
||||
msgid "Next"
|
||||
|
@ -1581,10 +1581,10 @@ msgstr "查看计时器"
|
|||
#: core/templates/core/timer_nav.html:50
|
||||
#: dashboard/templates/cards/diaperchange_last.html:17
|
||||
#: dashboard/templates/cards/diaperchange_types.html:12
|
||||
#: dashboard/templates/cards/feeding_day.html:20
|
||||
#: dashboard/templates/cards/feeding_day.html:58
|
||||
#: dashboard/templates/cards/feeding_last.html:17
|
||||
#: dashboard/templates/cards/feeding_last_method.html:49
|
||||
#: dashboard/templates/cards/feeding_recent.html:20
|
||||
#: dashboard/templates/cards/feeding_recent.html:58
|
||||
#: dashboard/templates/cards/pumping_last.html:17
|
||||
#: dashboard/templates/cards/sleep_last.html:17
|
||||
#: dashboard/templates/cards/sleep_naps_day.html:18
|
||||
|
@ -1862,23 +1862,6 @@ msgstr "大便"
|
|||
msgid "%(key)s days ago"
|
||||
msgstr "%(key)s 天之前"
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:6
|
||||
msgid "Today's Feeding"
|
||||
msgstr "今天的喂食"
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:25
|
||||
#, python-format
|
||||
msgid "%(counter)s feeding"
|
||||
msgid_plural "%(counter)s feedings"
|
||||
msgstr[0] "%(counter)s 次喂食"
|
||||
|
||||
#: dashboard/templates/cards/feeding_day.html:32
|
||||
#: dashboard/templates/cards/sleep_recent.html:32
|
||||
#, fuzzy, python-format
|
||||
#| msgid "<div class=\"text-center small text-muted\"> %(since)s </div>"
|
||||
msgid "<div class=\"text-center small text-body-secondary\"> %(since)s </div>"
|
||||
msgstr "<div class=\"text-center small text-muted\"> %(since)s </div>"
|
||||
|
||||
#: dashboard/templates/cards/feeding_last.html:6
|
||||
msgid "Last Feeding"
|
||||
msgstr "上一次喂食"
|
||||
|
@ -1897,6 +1880,25 @@ msgid "%(n)s feeding ago"
|
|||
msgid_plural "%(n)s feedings ago"
|
||||
msgstr[0] "前 %(n)s 次喂食"
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Delete a Feeding"
|
||||
msgid "Recent Feedings"
|
||||
msgstr "删除一条喂食记录"
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:25
|
||||
#, python-format
|
||||
msgid "%(counter)s feeding"
|
||||
msgid_plural "%(counter)s feedings"
|
||||
msgstr[0] "%(counter)s 次喂食"
|
||||
|
||||
#: dashboard/templates/cards/feeding_recent.html:32
|
||||
#: dashboard/templates/cards/sleep_recent.html:32
|
||||
#, fuzzy, python-format
|
||||
#| msgid "<div class=\"text-center small text-muted\"> %(since)s </div>"
|
||||
msgid "<div class=\"text-center small text-body-secondary\"> %(since)s </div>"
|
||||
msgstr "<div class=\"text-center small text-muted\"> %(since)s </div>"
|
||||
|
||||
#: dashboard/templates/cards/pumping_last.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Pumping"
|
||||
|
@ -2237,6 +2239,9 @@ msgstr "趴玩时光持续时间(合计)"
|
|||
msgid "Total Tummy Time Durations"
|
||||
msgstr "趴玩时光持续时间合计"
|
||||
|
||||
#~ msgid "Today's Feeding"
|
||||
#~ msgstr "今天的喂食"
|
||||
|
||||
#~ msgid "Napping"
|
||||
#~ msgstr "小睡"
|
||||
|
||||
|
|
Loading…
Reference in New Issue