From dcc12754aa6fb5c2f99834141e8c48e1ffa72dc3 Mon Sep 17 00:00:00 2001 From: Daniel Beard Date: Tue, 14 Jun 2022 17:58:33 -0700 Subject: [PATCH 1/4] Fix dayssince sometimes being off by 1 day depending on timezone --- core/templatetags/duration.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/templatetags/duration.py b/core/templatetags/duration.py index 81505669e..b0606a520 100644 --- a/core/templatetags/duration.py +++ b/core/templatetags/duration.py @@ -103,7 +103,7 @@ def dayssince(value, today=None): :returns: the formatted string """ if today is None: - today = timezone.datetime.now().date() + today = timezone.localtime().date() delta = today - value From 74eeb3023e2e7954f3e158e7ecaf3b75a533ddbd Mon Sep 17 00:00:00 2001 From: Daniel Beard Date: Tue, 14 Jun 2022 15:46:23 -0700 Subject: [PATCH 2/4] Add sleep stats carousel for last 7 days --- dashboard/templates/cards/sleep_day.html | 52 +++++++++++++---- dashboard/templatetags/cards.py | 73 +++++++++++++++++------- dashboard/tests/tests_templatetags.py | 7 ++- 3 files changed, 98 insertions(+), 34 deletions(-) diff --git a/dashboard/templates/cards/sleep_day.html b/dashboard/templates/cards/sleep_day.html index 6f1a8d61c..3621953fe 100644 --- a/dashboard/templates/cards/sleep_day.html +++ b/dashboard/templates/cards/sleep_day.html @@ -8,15 +8,47 @@ {% endblock %} {% block title %} - {% if total %} - {{ total|duration_string }} - {% else %} - {% trans "None" %} - {% endif %} -{% endblock %} - -{% block content %} - {% if count > 0 %} - {% blocktrans %}{{ count }} sleep entries{% endblocktrans %} +{% if sleeps|length > 0 %} + +{% else %} +{% trans "None" %} +{% endif %} {% endblock %} \ No newline at end of file diff --git a/dashboard/templatetags/cards.py b/dashboard/templatetags/cards.py index 55924856b..b53c0db0a 100644 --- a/dashboard/templatetags/cards.py +++ b/dashboard/templatetags/cards.py @@ -222,41 +222,70 @@ def card_sleep_last(context, child): @register.inclusion_tag("cards/sleep_day.html", takes_context=True) -def card_sleep_day(context, child, date=None): +def card_sleep_day(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 date: a Date object for the day to filter. - :returns: a dictionary with count and total values for the Sleep instances. + :param end_date: a Date object for the day to filter. + :returns: a dict with count and total amount for the sleeping instances. """ - if not date: - date = timezone.localtime().date() + if not end_date: + end_date = timezone.localtime() + + # 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__year=date.year, start__month=date.month, start__day=date.day + start__range=[start_date, end_date] ) | models.Sleep.objects.filter(child=child).filter( - end__year=date.year, end__month=date.month, end__day=date.day + end__range=[start_date, end_date] ) - empty = len(instances) == 0 - total = timezone.timedelta(seconds=0) + # 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: + # 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) end = timezone.localtime(instance.end) - # Account for dates crossing midnight. - if start.date() != date: - start = start.replace( - year=end.year, month=end.month, day=end.day, hour=0, minute=0, second=0 - ) - - total += end - start - - count = len(instances) + sleep_start_date = start.replace( + hour=23, minute=59, second=59, microsecond=9999 + ) + 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) + + if 0 <= start_idx < len(results): + result = results[start_idx] + # only the portion that is today + result["total"] += midnight - start + result["count"] += 1 + + if 0 <= end_idx < len(results): + result = results[end_idx] + # only the portion that is tomorrow + result["total"] += end - midnight + result["count"] += 1 return { + "sleeps": results, "type": "sleep", - "total": total, - "count": count, - "empty": empty, + "empty": len(instances) == 0, "hide_empty": _hide_empty(context), } diff --git a/dashboard/tests/tests_templatetags.py b/dashboard/tests/tests_templatetags.py index cc5180de7..6f30378b0 100644 --- a/dashboard/tests/tests_templatetags.py +++ b/dashboard/tests/tests_templatetags.py @@ -208,8 +208,11 @@ def test_card_sleep_day(self): self.assertEqual(data["type"], "sleep") self.assertFalse(data["empty"]) self.assertFalse(data["hide_empty"]) - self.assertEqual(data["total"], timezone.timedelta(2, 7200)) - self.assertEqual(data["count"], 4) + self.assertEqual(data["sleeps"][0]["total"], timezone.timedelta(hours=7)) + 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): data = cards.card_sleep_naps_day(self.context, self.child, self.date) From a94c15019b1a259c1b03796b2b99f7332b470155 Mon Sep 17 00:00:00 2001 From: Daniel Beard Date: Wed, 15 Jun 2022 14:50:05 -0700 Subject: [PATCH 3/4] Renamed sleep_day to sleep_recent --- .../templates/cards/{sleep_day.html => sleep_recent.html} | 0 dashboard/templates/dashboard/child.html | 2 +- dashboard/templatetags/cards.py | 4 ++-- dashboard/tests/tests_templatetags.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) rename dashboard/templates/cards/{sleep_day.html => sleep_recent.html} (100%) diff --git a/dashboard/templates/cards/sleep_day.html b/dashboard/templates/cards/sleep_recent.html similarity index 100% rename from dashboard/templates/cards/sleep_day.html rename to dashboard/templates/cards/sleep_recent.html diff --git a/dashboard/templates/dashboard/child.html b/dashboard/templates/dashboard/child.html index c2cc0e08c..464fd47bb 100644 --- a/dashboard/templates/dashboard/child.html +++ b/dashboard/templates/dashboard/child.html @@ -18,7 +18,7 @@ {% card_feeding_last_method object %} {% card_feeding_day object %} {% card_statistics object %} - {% card_sleep_day object %} + {% card_sleep_recent object %} {% card_sleep_naps_day object %} {% card_tummytime_day object %} {% card_diaperchange_types object %} diff --git a/dashboard/templatetags/cards.py b/dashboard/templatetags/cards.py index b53c0db0a..d5e9400cd 100644 --- a/dashboard/templatetags/cards.py +++ b/dashboard/templatetags/cards.py @@ -221,8 +221,8 @@ def card_sleep_last(context, child): } -@register.inclusion_tag("cards/sleep_day.html", takes_context=True) -def card_sleep_day(context, child, end_date=None): +@register.inclusion_tag("cards/sleep_recent.html", takes_context=True) +def card_sleep_recent(context, child, end_date=None): """ Filters sleeping instances to get total amount for a specific date and for 7 days before :param child: an instance of the Child model. diff --git a/dashboard/tests/tests_templatetags.py b/dashboard/tests/tests_templatetags.py index 6f30378b0..1e22e30ea 100644 --- a/dashboard/tests/tests_templatetags.py +++ b/dashboard/tests/tests_templatetags.py @@ -204,7 +204,7 @@ def test_card_sleep_last_empty(self): self.assertFalse(data["hide_empty"]) 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.assertFalse(data["empty"]) self.assertFalse(data["hide_empty"]) From ec8fd98070e1470fdea57ebecc99af5fbe38ce2f Mon Sep 17 00:00:00 2001 From: Daniel Beard Date: Fri, 17 Jun 2022 09:56:42 -0700 Subject: [PATCH 4/4] Rename Today's Sleep to Recent Sleep in dashboard --- dashboard/templates/cards/sleep_recent.html | 2 +- locale/ca/LC_MESSAGES/django.mo | Bin 15505 -> 15400 bytes locale/ca/LC_MESSAGES/django.po | 317 +++++++++--------- locale/de/LC_MESSAGES/django.mo | Bin 24399 -> 23780 bytes locale/de/LC_MESSAGES/django.po | 321 ++++++++++--------- locale/en_GB/LC_MESSAGES/django.po | 299 ++++++++--------- locale/es/LC_MESSAGES/django.mo | Bin 28774 -> 26028 bytes locale/es/LC_MESSAGES/django.po | 331 ++++++++++--------- locale/fi/LC_MESSAGES/django.mo | Bin 18626 -> 18257 bytes locale/fi/LC_MESSAGES/django.po | 317 +++++++++--------- locale/fr/LC_MESSAGES/django.mo | Bin 22308 -> 21758 bytes locale/fr/LC_MESSAGES/django.po | 327 ++++++++++--------- locale/it/LC_MESSAGES/django.mo | Bin 20486 -> 20384 bytes locale/it/LC_MESSAGES/django.po | 327 ++++++++++--------- locale/nl/LC_MESSAGES/django.mo | Bin 21471 -> 20961 bytes locale/nl/LC_MESSAGES/django.po | 323 ++++++++++--------- locale/pl/LC_MESSAGES/django.mo | Bin 18915 -> 18388 bytes locale/pl/LC_MESSAGES/django.po | 328 ++++++++++--------- locale/pt/LC_MESSAGES/django.mo | Bin 21471 -> 20992 bytes locale/pt/LC_MESSAGES/django.po | 335 +++++++++++--------- locale/sv/LC_MESSAGES/django.mo | Bin 16722 -> 16428 bytes locale/sv/LC_MESSAGES/django.po | 319 ++++++++++--------- locale/tr/LC_MESSAGES/django.mo | Bin 20816 -> 20538 bytes locale/tr/LC_MESSAGES/django.po | 327 ++++++++++--------- locale/zh/LC_MESSAGES/django.mo | Bin 25222 -> 25050 bytes locale/zh/LC_MESSAGES/django.po | 297 +++++++++-------- 26 files changed, 2215 insertions(+), 1955 deletions(-) diff --git a/dashboard/templates/cards/sleep_recent.html b/dashboard/templates/cards/sleep_recent.html index 3621953fe..4aaf542ec 100644 --- a/dashboard/templates/cards/sleep_recent.html +++ b/dashboard/templates/cards/sleep_recent.html @@ -3,7 +3,7 @@ {% block header %} - {% trans "Today's Sleep" %} + {% trans "Recent Sleep" %} {% endblock %} diff --git a/locale/ca/LC_MESSAGES/django.mo b/locale/ca/LC_MESSAGES/django.mo index 2f1d70d7f3315d850f2fc778cfb5f00d0b1ce349..2a759d37a2d7a98af6aa0494a14eb96db9fb51a3 100644 GIT binary patch delta 5863 zcmZA5dz?>Y9>DQ4827=}bnF~+2Aic-=jx}cJBsa#gczDlK(vbl8orFE%Iwf5KQ zF6~&XD0aG#E-N;XEz(Mq6;n%@5*4k`=kq(y{x@L^0kAVtP!yb!tBXa%~Zn}c7Y{i0U!gazmw6{7){p@DS{c1O=f zA9SI9*c1n%0gOP$jcUdI+wr#0Ffo`!cVrs61GCUApNnqYB6Qq}(7qDg>JQMsw}kfE zP=5ej@MkpehOOgya$2+hMp!}x|Dq23D8*iAq&J{jJr>=W`_RCiL3d;^I`L|B%Qv6_ z?h5Vu(VcD7CW`W~C3-`h&_K^ll3{nFLFh9ai+21yx@B|F2^XUSUk~l;&@-|lw11CI zShsC_CJNCV>4XN>4c)Pe(HkBZ%E`fGJS11514g0?j}A`26DdzYAHh;|2bQCOtwnce z3p)NQbmtDB{r?-R!@K7hX&lT$9z`;0OU4OLK=1rabYOpUq9MT%=pBp-<(tqz$Dwz0 zFB;HPbfHJld7edYa6TH~^XQJegiU?_*N|~5KSB@3ZghhEXkbS|eO9~pSr?#zm7)Qi z5XzmDXn4d@PR!1~cWWSnRk+HnRN;Y{>!%|*Vp(GqmRwV{0z zdS<>v1NG$kJ!pX(^yv6d?v0+YtI&RTqVqk7Nf(?O8vcrwm!ko_i9XxaXh55Td(f@^ z8Qsz*?c;JTx=<-Pt|uDsz)&8JK9ZZ!9UR}D{dcSHroxHt4;^QsTUmv+FF^;cKm%Ka zzE*3|K(?Z9#~$=8IEapKS{7S`&ffvufs?Tw_9$cjGs&D!g%eza4jh7R{k3SvTQL*I zqXFH8wogX`OJOEH6?_hDpO5yhM*c-_^27c$p?+^NR2)RN-9Z;ZD36-RS`*FsJYTNHTV~1D$YkC{M>m zlpn?h_;_$mXkQR~G5AXG4YdF2P+pIXDQ^np?Vo_iu?Oa#81KLp=nf4-1Gyf(v9ahUempwgj1zhO-uYuxG{M=} z6c?h;@>TTIuSehW9caIA(FqQthqQi0+^-0&uL$Kcuqow>(fNi3Z${6;?<&}TCw!6$ z7n&D*4Lxk{qo2|}=zs<%#fP#r^3{z>(MQx9y^;Rt9S%kp9)pg%1KrV?=;5wH19~G# z#zXTV8pvk!j&@=*{2^HHJaKbwMA&5On-4=)6<0 z8S6(+knx!;Ks&yjZiu2!&=1dU^zFzvCEl`D=(B5&Zhbd&=gtZC!8(-tp?BOL4RC01 z6!J-l#$o#R|I=jry*(EV;B_>hP3Q!*=(G9}UGNC{2r^HN&rXYAE?QrR?pP^$hB~A3 z^bB5z&NC3xzyF7YiV^76Uxz-!325YZ1s^~M&I;|b(ZH(E8(4@g{5HCC8$$aYG_ZZ> zBRCxDv%9eWE>PGdp12I%$_jMiQ$zX8(B2ab>;m+y>4*G<9SsQWW6?XE7}_U?@>I;B z{$cbjcn&?3i@Wgr4PYG=x%e?U;a+q=lhfjkt|L{ZjNST!r4rC^V3X=%c$E z4P;925lnw+(Lm=R{gTllG9H?0G_sZGLhl7XLI-??1-J{H=rHn4i5i>{2htS{tOwfv z5_F!+(15N)1H1+ue*-3b|8FPbfCtbo)+3ny;GkQ*ER^3xcVaW<;aBK_{_leQo1=eH zwL%vfj`kmk&T~6DZYsLoQ`n64qvt}y5_G^j=uT|41J+;>9zZ9~Iy0Ui2i@XAEX2}a zcXYwa(Q(&eTTG%mF$X;h^D+JVe-#-&y*22-I+gJ!IS1YHQuJ9@qKD}`^pp=l59M%l zOK(B@--!m6LdVTU1D}U&@OkvmzgNkI*Sa$4Y{SHYEn7L%P=1!HO}C>hr39BOC8B6&1jPkOrlM%W1(~-ei!op!PTUEM!k%;k!~V2qWr&WBbg6LJxFh)HYO@F>(Tl} zDmyoE);j94DILTyq_*TQz%NN&GfDqU=i(pzLw*33r$*+s>AZzpiu8BV+oS~~uZu{Y z3;%1c1L-h%&TRB`YH4nwVl%lZB(K4wI`nuKUn4zBDxmCfev0%%>bu-TMk1A&cXCBB z^)q$@&sG8QqXS5rKIWucs|3_p4YR|YQ)*8RV}i>TjD`qVA)#P1}1 zpQ_DoQ`U^GD=3X1c^yZYQyonpeL!kRIWyI{ATeeSr4o|Y6EV>$vFOYUBhm+y6RM!%CT@#>LpKus$XG2$v?=|r}kQ_xqP(~q(bVJY9>DQ4%(!31{O0D?jBy**WN8#p8bwhyt!~=s=4DpaEh2<|yk63-Xh%P` zu&Gz5R#Ur-E*nwFic+MlkS-D>DW#Ha+0SRr^Vgo2XWq|qp3C{3?{m(Xd3kc`!fDBm zveFkv9G%mms1=T>A4LnOZ^-g&6n&c?MVWXU`4`n{9z}JqC1zkzXcq^&VqMOk8@w=_ z9}pZIygD`+{f>$ghKG(ng!Y8co`wzRpM?f^AGW|Ju`zDOY}|zjJQU8K!lAV5F}N3& zV;lSnUWzYZ?I=mDWfV1pbTp7m^bYgU3lyLMlwfV_iH_@oBrCcEo8fQJb#6h&kHLC4 z1syjF^Kc$E!N;(H*Iz@WDQ-X)coV&o56}RPqPuYlUAQr6@Phg1f}N3@jrw6OmZRhE zKm(qO{EO!C!y9`7)A1QhI-#11d%PXVO0*A6>5svNt>c9Y(FM;#@2EE#aDOzgtAgd| zvoR9A&{%AQ6VU*Y=)AeD$-e_12ptavA3-znIGTay(3HQ1rtVF2-oDWPDVpkU(7;cI z{>Ep;=M(4!TcLp$qw91(i~Jj587KG`4d6#xtUx3E6PoHuG&7H(fxU!gZU?&XK{Vyx zq6^n9i2Jk9%yz;YJRiNGA!wjCC8?0*=nixbE75_g(UiT6F1Q1o_+jWjf<7ZrVcegM zF4z`*CVHY78G;5j49(aW^oA#fc5(_8_jD#YVK#cwYRf`<5PG3u=)618fd3fU51?DKvK{$1l~tT@&#KXdHim&)(Uk59{fE$r$I-xk zMqjTpXds#Gsb7YUdjd1C z3JrKI+W!(7*fz|-UBUO!{{86qFOh%I34S=fMY2QOQG}i-K{L`LwEF}vK^M9LeORwY z0~&*-dP3;GAHBn+n1L(8`M;qz_AJ)H&FHw~b}AQA*^N%f>KLacAI(59IN`jy^-9LwgPyXbQdKN6;-=jdgK78u(@;kYw~a6+fkKqXQ427yJp`!;Iqi>285e zEJZKa3;iVjHuR501HKoXzX+ZG7#i^NShH2gg`;hl>-)cxiW3jloM3OT9_@ym;`cNg zosf@xumJ5ZM;EL>FE|0cP%?NA)~0vf%R#>gLU!4;K9&;H28h+R50yV@%Vb^x|!Gj^Dya&qHv-U7Sb+7{?>@DLHBq9 z8u=`AiylB1Sb>-0Gk5`>LO!BV&n{8a7jHl_uoTVEay0NN^v2e8A^(2qUgU%e?nDFH zhYj%nHo{}*Uj7Gt`ZG)7z}lhX&Ozt*MIX{Z=(roh`3a#t16{8YUGL!%@^57=CwvIE zq6>b6E^s7x8hzNZ&W=B+CFuCe(T8$4@->b|qFXc%y^%%e4K713yat`O5zXkolT`e6 zA4UU7>l&vl7Y(EZdPg0w3HAzJhNkd3^g=hH7Z`!2ctU7T3;lD^3@t$CJ%p~GTu#ME zR-+4TKo{DK4%~^2@x9Q0F!)vI{|;UFBs#D5uj6$x(ers|hKkS(c0@l|{gAgP8Qo09 zJG>1Ga5`q10Uopq` zznY2*Z$neOAKj9p=)gMN{fK^ZbMT)6V2Q`!TYcl?S<%fV-XtQ z!^-ue)l`b{d31qK(BI!*paDeZ!~x}@3v@#-d_Fq93{CYw^mV&Bczrluj%I8mdV`bE zb>?7(l?AD0O%h3$TEQuk{S>-u>(N+W4(>q5?G610&`=JeAs<68Ri`x0RW{mRf`(X% zZd%`P{u*@s@=|ufg-3D1n|^dmFl` z?_d@lMW6pO=;PS12RmUT#XaKP?13&k2%Rtr9XJEs{UzwP?%8nueN50kf!SE^+&IA2 z==?Tl;HBsd_Chn#7n|XrB$b*}V9f>52{X`Ln~h$$GW1uWTeT_pHah-e^a2Ob3mic+ z@&g*!X>^^$dGV*JE83sz6;AX+@AL}v!lN(`r=oXQiB4FF_CJko%?9*NUPA+U58eBH zXdnlIU!$o%i3Xb9vu0c}YCy$@ry2SYEkG~SDcBvI&>Qox3|(j#^7V--&_EWWfjx|l zuR_;Ziw3kF4e(WT{#H!*CD={H35U^7#@A>-^?Jpr&PCfD&`gwK4qk>{@TSl|7X6!Q zI(nfO(eazmE!&M|JY zKF$xWLNB}#o%a?N;umN}>i1^b%!j;4M-n(CG4Lsf;oj<28( z?-n$*AE4t8qJjN_&a2xe4!kKA(9Z4?4XAngOF7|yGR(z+XoR<*cRDikj|uHbXkgRO zar073vRZa}o!VN;I!Z^1hhaWQX_OX47vVulb!vZB+q5>Rv_#8p@6sMl8A@40xtHRx zoYIOp&(^f~l^y&%H8@ewKaC!b(Uk9MYGf6+Q1a<}4kuE^P#T7@RHJt&yD5Ds8&hi% zy))|2dnk20k+|Ru&LwD_#Ickj>X+eRipN6ATQ#-#$BC}##yv9FKyPNV~Nxi++CV@uZbXo4rOqwR3c^Bx0YqE~}g1~dL|Tova( zrtJ59@N@qe<%iUc+=BL*4BbHMW{SsIw0WwdDU_X*2DIy@n&l&)umwSLy{v7-tr z#!Z?ys^X5q-;bX>Zp7Kul|@t1Glq_-sJOlQbcf2u&HK}R>j?V$4IWrHZhYaSiQ|Xc WKD&BB>B;okL&uM+p4scETK@wio@NyQ diff --git a/locale/ca/LC_MESSAGES/django.po b/locale/ca/LC_MESSAGES/django.po index e5be6d935..d93198460 100644 --- a/locale/ca/LC_MESSAGES/django.po +++ b/locale/ca/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Baby Buddy\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" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -11,12 +11,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: 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 msgid "Settings" 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 #: dashboard/templates/dashboard/child.html:4 #: 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:7 -#: babybuddy/templates/babybuddy/nav-dropdown.html:359 +#: babybuddy/templates/babybuddy/nav-dropdown.html:339 msgid "Database Admin" msgstr "BBDD Admin" @@ -226,19 +226,19 @@ msgid "Diaper Change" msgstr "Canvi Bolquers" #: 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 msgid "Feeding" msgstr "Biberó" #: 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 msgid "Note" msgstr "Nota" #: 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 #: core/models.py:468 core/models.py:471 #: core/templates/core/sleep_confirm_delete.html:7 @@ -249,19 +249,7 @@ msgid "Sleep" msgstr "Dormir" #: babybuddy/templates/babybuddy/nav-dropdown.html:75 -#: babybuddy/templates/babybuddy/nav-dropdown.html:179 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:81 -#: babybuddy/templates/babybuddy/nav-dropdown.html:301 +#: babybuddy/templates/babybuddy/nav-dropdown.html:296 #: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647 #: core/models.py:648 core/models.py:651 #: core/templates/core/timer_detail.html:59 @@ -273,44 +261,15 @@ msgstr "Temperatura" msgid "Tummy Time" msgstr "Temps de panxa" -#: babybuddy/templates/babybuddy/nav-dropdown.html:87 -#: 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 +#: babybuddy/templates/babybuddy/nav-dropdown.html:99 #: core/templates/timeline/timeline.html:4 #: core/templates/timeline/timeline.html:7 #: dashboard/templates/dashboard/child_button_group.html:9 msgid "Timeline" msgstr "Línia de Temps" -#: babybuddy/templates/babybuddy/nav-dropdown.html:129 -#: babybuddy/templates/babybuddy/nav-dropdown.html:137 core/models.py:188 +#: babybuddy/templates/babybuddy/nav-dropdown.html:110 +#: babybuddy/templates/babybuddy/nav-dropdown.html:118 core/models.py:188 #: core/templates/core/child_confirm_delete.html:7 #: core/templates/core/child_detail.html:7 #: 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" 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: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 @@ -339,7 +298,7 @@ msgstr "Nadons" msgid "Child" 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: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 @@ -348,19 +307,46 @@ msgstr "Nadó" msgid "Notes" msgstr "Notes" -#: babybuddy/templates/babybuddy/nav-dropdown.html:171 +#: babybuddy/templates/babybuddy/nav-dropdown.html:152 msgid "Measurements" msgstr "Mides" -#: babybuddy/templates/babybuddy/nav-dropdown.html:185 -msgid "Temperature reading" -msgstr "Lectura Temperatura" +#: babybuddy/templates/babybuddy/nav-dropdown.html:160 core/models.py:139 +#: 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 "BMI" -#: babybuddy/templates/babybuddy/nav-dropdown.html:199 -msgid "Weight entry" -msgstr "Entrada Pes" +#: babybuddy/templates/babybuddy/nav-dropdown.html:166 +msgid "BMI entry" +msgstr "Entrada BMI" + +#: 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:207 core/models.py:369 +#: babybuddy/templates/babybuddy/nav-dropdown.html:188 core/models.py:369 #: 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 @@ -375,59 +361,58 @@ msgstr "Entrada Pes" msgid "Height" msgstr "Alçada" -#: babybuddy/templates/babybuddy/nav-dropdown.html:213 +#: babybuddy/templates/babybuddy/nav-dropdown.html:194 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/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: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:227 -msgid "Head Circumference entry" -msgstr "" +#: babybuddy/templates/babybuddy/nav-dropdown.html:208 +msgid "Temperature reading" +msgstr "Lectura Temperatura" -#: babybuddy/templates/babybuddy/nav-dropdown.html:235 core/models.py:139 -#: 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 "BMI" +#: 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:241 -msgid "BMI entry" -msgstr "Entrada BMI" +#: babybuddy/templates/babybuddy/nav-dropdown.html:222 +msgid "Weight entry" +msgstr "Entrada Pes" -#: babybuddy/templates/babybuddy/nav-dropdown.html:255 +#: babybuddy/templates/babybuddy/nav-dropdown.html:236 msgid "Activities" msgstr "Activitats" -#: babybuddy/templates/babybuddy/nav-dropdown.html:262 +#: babybuddy/templates/babybuddy/nav-dropdown.html:243 #: reports/graphs/diaperchange_lifetimes.py:27 msgid "Changes" msgstr "Canvis" -#: babybuddy/templates/babybuddy/nav-dropdown.html:268 +#: babybuddy/templates/babybuddy/nav-dropdown.html:249 msgid "Change" 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 #: core/templates/core/feeding_confirm_delete.html:7 #: core/templates/core/feeding_form.html:13 @@ -437,19 +422,31 @@ msgstr "Canvi" msgid "Feedings" msgstr "Biberons" -#: babybuddy/templates/babybuddy/nav-dropdown.html:294 +#: babybuddy/templates/babybuddy/nav-dropdown.html:270 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:276 +msgid "Pumping entry" +msgstr "" + +#: babybuddy/templates/babybuddy/nav-dropdown.html:289 msgid "Sleep entry" msgstr "Entrada Son" -#: babybuddy/templates/babybuddy/nav-dropdown.html:307 +#: babybuddy/templates/babybuddy/nav-dropdown.html:302 msgid "Tummy Time entry" msgstr "Entrada de temps de panxa" -#: babybuddy/templates/babybuddy/nav-dropdown.html:322 -msgid "Pumping entry" -msgstr "" - -#: babybuddy/templates/babybuddy/nav-dropdown.html:346 +#: babybuddy/templates/babybuddy/nav-dropdown.html:326 #: babybuddy/templates/babybuddy/user_list.html:17 #: babybuddy/templates/babybuddy/user_password_form.html:7 #: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556 @@ -457,23 +454,23 @@ msgstr "" msgid "User" msgstr "Usuari" -#: babybuddy/templates/babybuddy/nav-dropdown.html:348 +#: babybuddy/templates/babybuddy/nav-dropdown.html:328 msgid "Password" msgstr "Clau" -#: babybuddy/templates/babybuddy/nav-dropdown.html:352 +#: babybuddy/templates/babybuddy/nav-dropdown.html:332 msgid "Logout" msgstr "Tancar" -#: babybuddy/templates/babybuddy/nav-dropdown.html:355 +#: babybuddy/templates/babybuddy/nav-dropdown.html:335 msgid "Site" msgstr "Lloc" -#: babybuddy/templates/babybuddy/nav-dropdown.html:356 +#: babybuddy/templates/babybuddy/nav-dropdown.html:336 msgid "API Browser" 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_form.html:13 #: babybuddy/templates/babybuddy/user_list.html:4 @@ -481,15 +478,15 @@ msgstr "Navegador API" msgid "Users" msgstr "Usuaris" -#: babybuddy/templates/babybuddy/nav-dropdown.html:361 +#: babybuddy/templates/babybuddy/nav-dropdown.html:341 msgid "Support" msgstr "Suport" -#: babybuddy/templates/babybuddy/nav-dropdown.html:363 +#: babybuddy/templates/babybuddy/nav-dropdown.html:343 msgid "Source Code" msgstr "Codi Font" -#: babybuddy/templates/babybuddy/nav-dropdown.html:365 +#: babybuddy/templates/babybuddy/nav-dropdown.html:345 msgid "Chat / Support" msgstr "Xat / Suport" @@ -500,6 +497,7 @@ msgstr "Xat / Suport" #: core/templates/timeline/_timeline.html:73 #: dashboard/templates/cards/feeding_day.html:43 #: dashboard/templates/cards/feeding_last_method.html:34 +#: dashboard/templates/cards/sleep_recent.html:43 #: dashboard/templates/cards/statistics.html:34 msgid "Previous" msgstr "Anterior" @@ -511,6 +509,7 @@ msgstr "Anterior" #: core/templates/timeline/_timeline.html:80 #: dashboard/templates/cards/feeding_day.html:47 #: dashboard/templates/cards/feeding_last_method.html:38 +#: dashboard/templates/cards/sleep_recent.html:47 #: dashboard/templates/cards/statistics.html:38 msgid "Next" msgstr "Següent" @@ -957,7 +956,7 @@ msgstr "" #: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70 #: reports/graphs/feeding_duration.py:56 #: 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/tummytime_duration.py:51 reports/graphs/weight_change.py:28 msgid "Date" @@ -1131,7 +1130,9 @@ msgid "Add BMI" msgstr "Afegeix BMI" #: 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." #: 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_last.html:17 #: 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_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 msgid "None" msgstr "Cap" @@ -1548,6 +1550,22 @@ msgstr "{}, {}" msgid "0 days" 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 #, python-format msgid "%(child)s started tummy time!" @@ -1686,14 +1704,6 @@ msgstr "líquid" msgid "solid" 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 #, python-format msgid "%(key)s days ago" @@ -1712,6 +1722,7 @@ msgstr[0] "Total alimentacions" msgstr[1] "Total alimentacions" #: dashboard/templates/cards/feeding_day.html:32 +#: dashboard/templates/cards/sleep_recent.html:32 #, python-format msgid "
%(since)s
" msgstr "" @@ -1736,15 +1747,6 @@ msgid_plural "%(n)s feedings ago" msgstr[0] "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 msgid "Last Sleep" msgstr "Últim Son" @@ -1760,6 +1762,20 @@ msgid_plural "%(count)s naps" msgstr[0] "" 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 msgid "Statistics" msgstr "Estadístiques" @@ -1811,59 +1827,59 @@ msgstr "Accions Nadó" msgid "Reports" msgstr "Informes" -#: dashboard/templatetags/cards.py:328 +#: dashboard/templatetags/cards.py:357 msgid "Average nap duration" msgstr "Mitjana migdiades" -#: dashboard/templatetags/cards.py:335 +#: dashboard/templatetags/cards.py:364 msgid "Average naps per day" msgstr "Mitjana migdiades per dia" -#: dashboard/templatetags/cards.py:345 +#: dashboard/templatetags/cards.py:374 msgid "Average sleep duration" msgstr "Mitjana temps de son" -#: dashboard/templatetags/cards.py:352 +#: dashboard/templatetags/cards.py:381 msgid "Average awake duration" msgstr "Mitjana temps despert" -#: dashboard/templatetags/cards.py:362 +#: dashboard/templatetags/cards.py:391 msgid "Weight change per week" msgstr "Canvi pes setmanal" -#: dashboard/templatetags/cards.py:372 +#: dashboard/templatetags/cards.py:401 msgid "Height change per week" msgstr "" -#: dashboard/templatetags/cards.py:382 +#: dashboard/templatetags/cards.py:411 msgid "Head circumference change per week" msgstr "" -#: dashboard/templatetags/cards.py:392 +#: dashboard/templatetags/cards.py:421 msgid "BMI change per week" msgstr "" -#: dashboard/templatetags/cards.py:410 +#: dashboard/templatetags/cards.py:439 msgid "Diaper change frequency (past 3 days)" msgstr "" -#: dashboard/templatetags/cards.py:414 +#: dashboard/templatetags/cards.py:443 msgid "Diaper change frequency (past 2 weeks)" msgstr "" -#: dashboard/templatetags/cards.py:420 +#: dashboard/templatetags/cards.py:449 msgid "Diaper change frequency" msgstr "Freqüència Canvi Bolquers" -#: dashboard/templatetags/cards.py:456 +#: dashboard/templatetags/cards.py:485 msgid "Feeding frequency (past 3 days)" msgstr "" -#: dashboard/templatetags/cards.py:460 +#: dashboard/templatetags/cards.py:489 msgid "Feeding frequency (past 2 weeks)" msgstr "" -#: dashboard/templatetags/cards.py:466 +#: dashboard/templatetags/cards.py:495 msgid "Feeding frequency" msgstr "Freqüència Alimentació" @@ -1939,11 +1955,11 @@ msgstr "" msgid "Height" msgstr "Alçada" -#: reports/graphs/pumping_amounts.py:57 +#: reports/graphs/pumping_amounts.py:59 msgid "Total Pumping Amount" msgstr "" -#: reports/graphs/pumping_amounts.py:60 +#: reports/graphs/pumping_amounts.py:62 msgid "Pumping Amount" msgstr "" @@ -2056,3 +2072,6 @@ msgstr "" #: reports/templates/reports/tummytime_duration.html:8 msgid "Total Tummy Time Durations" msgstr "" + +#~ msgid "Today's Sleep" +#~ msgstr "Son d'Avui" diff --git a/locale/de/LC_MESSAGES/django.mo b/locale/de/LC_MESSAGES/django.mo index 73dac4107f293f6de4fa32c115b311295987507b..c8cabb54c1c9eae0af1de448a5acedbc7ddc3eb0 100644 GIT binary patch delta 7903 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 y>F%wwiYmPomHn$XsSe diff --git a/locale/de/LC_MESSAGES/django.po b/locale/de/LC_MESSAGES/django.po index 7bf34fbcd..537ca76f5 100644 --- a/locale/de/LC_MESSAGES/django.po +++ b/locale/de/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Baby Buddy\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" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -11,12 +11,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: 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 msgid "Settings" 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 #: dashboard/templates/dashboard/child.html:4 #: 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:7 -#: babybuddy/templates/babybuddy/nav-dropdown.html:359 +#: babybuddy/templates/babybuddy/nav-dropdown.html:339 msgid "Database Admin" msgstr "Datenbankadministration" @@ -231,19 +231,19 @@ msgid "Diaper Change" msgstr "Windelwechsel" #: 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 msgid "Feeding" msgstr "Mahlzeit" #: 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 msgid "Note" msgstr "Notiz" #: 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 #: core/models.py:468 core/models.py:471 #: core/templates/core/sleep_confirm_delete.html:7 @@ -254,19 +254,7 @@ msgid "Sleep" msgstr "Schlafen" #: babybuddy/templates/babybuddy/nav-dropdown.html:75 -#: babybuddy/templates/babybuddy/nav-dropdown.html:179 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:81 -#: babybuddy/templates/babybuddy/nav-dropdown.html:301 +#: babybuddy/templates/babybuddy/nav-dropdown.html:296 #: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647 #: core/models.py:648 core/models.py:651 #: core/templates/core/timer_detail.html:59 @@ -278,44 +266,15 @@ msgstr "Temperatur" msgid "Tummy Time" msgstr "Bauchzeit" -#: babybuddy/templates/babybuddy/nav-dropdown.html:87 -#: 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 +#: babybuddy/templates/babybuddy/nav-dropdown.html:99 #: core/templates/timeline/timeline.html:4 #: core/templates/timeline/timeline.html:7 #: dashboard/templates/dashboard/child_button_group.html:9 msgid "Timeline" msgstr "Zeitverlauf" -#: babybuddy/templates/babybuddy/nav-dropdown.html:129 -#: babybuddy/templates/babybuddy/nav-dropdown.html:137 core/models.py:188 +#: babybuddy/templates/babybuddy/nav-dropdown.html:110 +#: babybuddy/templates/babybuddy/nav-dropdown.html:118 core/models.py:188 #: core/templates/core/child_confirm_delete.html:7 #: core/templates/core/child_detail.html:7 #: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4 @@ -325,7 +284,7 @@ msgstr "Zeitverlauf" msgid "Children" 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: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 @@ -344,7 +303,7 @@ msgstr "Kinder" msgid "Child" 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: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 @@ -353,19 +312,46 @@ msgstr "Kind" msgid "Notes" msgstr "Notizen" -#: babybuddy/templates/babybuddy/nav-dropdown.html:171 +#: babybuddy/templates/babybuddy/nav-dropdown.html:152 msgid "Measurements" msgstr "Messungen" -#: babybuddy/templates/babybuddy/nav-dropdown.html:185 -msgid "Temperature reading" -msgstr "Temperatur Messung" +#: babybuddy/templates/babybuddy/nav-dropdown.html:160 core/models.py:139 +#: 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 "BMI" -#: babybuddy/templates/babybuddy/nav-dropdown.html:199 -msgid "Weight entry" -msgstr "Gewichtseintrag" +#: babybuddy/templates/babybuddy/nav-dropdown.html:166 +msgid "BMI entry" +msgstr "BMI Eintrag" + +#: 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 "Kopfumfang" + +#: babybuddy/templates/babybuddy/nav-dropdown.html:180 +msgid "Head Circumference entry" +msgstr "Kopfumfang Eintrag" -#: babybuddy/templates/babybuddy/nav-dropdown.html:207 core/models.py:369 +#: babybuddy/templates/babybuddy/nav-dropdown.html:188 core/models.py:369 #: 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 @@ -380,59 +366,58 @@ msgstr "Gewichtseintrag" msgid "Height" msgstr "Größe" -#: babybuddy/templates/babybuddy/nav-dropdown.html:213 +#: babybuddy/templates/babybuddy/nav-dropdown.html:194 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/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 "Kopfumfang" +#: 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:227 -msgid "Head Circumference entry" -msgstr "Kopfumfang Eintrag" +#: babybuddy/templates/babybuddy/nav-dropdown.html:208 +msgid "Temperature reading" +msgstr "Temperatur Messung" -#: babybuddy/templates/babybuddy/nav-dropdown.html:235 core/models.py:139 -#: 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 "BMI" +#: 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:241 -msgid "BMI entry" -msgstr "BMI Eintrag" +#: babybuddy/templates/babybuddy/nav-dropdown.html:222 +msgid "Weight entry" +msgstr "Gewichtseintrag" -#: babybuddy/templates/babybuddy/nav-dropdown.html:255 +#: babybuddy/templates/babybuddy/nav-dropdown.html:236 msgid "Activities" msgstr "Aktivitäten" -#: babybuddy/templates/babybuddy/nav-dropdown.html:262 +#: babybuddy/templates/babybuddy/nav-dropdown.html:243 #: reports/graphs/diaperchange_lifetimes.py:27 msgid "Changes" msgstr "Wechsel" -#: babybuddy/templates/babybuddy/nav-dropdown.html:268 +#: babybuddy/templates/babybuddy/nav-dropdown.html:249 msgid "Change" 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 #: core/templates/core/feeding_confirm_delete.html:7 #: core/templates/core/feeding_form.html:13 @@ -442,19 +427,31 @@ msgstr "Wechsel" msgid "Feedings" msgstr "Mahlzeiten" -#: babybuddy/templates/babybuddy/nav-dropdown.html:294 +#: babybuddy/templates/babybuddy/nav-dropdown.html:270 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:276 +msgid "Pumping entry" +msgstr "" + +#: babybuddy/templates/babybuddy/nav-dropdown.html:289 msgid "Sleep entry" msgstr "Schlaf-Eintrag" -#: babybuddy/templates/babybuddy/nav-dropdown.html:307 +#: babybuddy/templates/babybuddy/nav-dropdown.html:302 msgid "Tummy Time entry" msgstr "Bauchzeit-Eintrag" -#: babybuddy/templates/babybuddy/nav-dropdown.html:322 -msgid "Pumping entry" -msgstr "" - -#: babybuddy/templates/babybuddy/nav-dropdown.html:346 +#: babybuddy/templates/babybuddy/nav-dropdown.html:326 #: babybuddy/templates/babybuddy/user_list.html:17 #: babybuddy/templates/babybuddy/user_password_form.html:7 #: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556 @@ -462,23 +459,23 @@ msgstr "" msgid "User" msgstr "Benutzer" -#: babybuddy/templates/babybuddy/nav-dropdown.html:348 +#: babybuddy/templates/babybuddy/nav-dropdown.html:328 msgid "Password" msgstr "Passwort" -#: babybuddy/templates/babybuddy/nav-dropdown.html:352 +#: babybuddy/templates/babybuddy/nav-dropdown.html:332 msgid "Logout" msgstr "Logout" -#: babybuddy/templates/babybuddy/nav-dropdown.html:355 +#: babybuddy/templates/babybuddy/nav-dropdown.html:335 msgid "Site" msgstr "Seite" -#: babybuddy/templates/babybuddy/nav-dropdown.html:356 +#: babybuddy/templates/babybuddy/nav-dropdown.html:336 msgid "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_form.html:13 #: babybuddy/templates/babybuddy/user_list.html:4 @@ -486,15 +483,15 @@ msgstr "API Browser" msgid "Users" msgstr "Benutzer" -#: babybuddy/templates/babybuddy/nav-dropdown.html:361 +#: babybuddy/templates/babybuddy/nav-dropdown.html:341 msgid "Support" msgstr "Support" -#: babybuddy/templates/babybuddy/nav-dropdown.html:363 +#: babybuddy/templates/babybuddy/nav-dropdown.html:343 msgid "Source Code" msgstr "Quellcode" -#: babybuddy/templates/babybuddy/nav-dropdown.html:365 +#: babybuddy/templates/babybuddy/nav-dropdown.html:345 msgid "Chat / Support" msgstr "Chat / Support" @@ -505,6 +502,7 @@ msgstr "Chat / Support" #: core/templates/timeline/_timeline.html:73 #: dashboard/templates/cards/feeding_day.html:43 #: dashboard/templates/cards/feeding_last_method.html:34 +#: dashboard/templates/cards/sleep_recent.html:43 #: dashboard/templates/cards/statistics.html:34 msgid "Previous" msgstr "Zurück" @@ -516,6 +514,7 @@ msgstr "Zurück" #: core/templates/timeline/_timeline.html:80 #: dashboard/templates/cards/feeding_day.html:47 #: dashboard/templates/cards/feeding_last_method.html:38 +#: dashboard/templates/cards/sleep_recent.html:47 #: dashboard/templates/cards/statistics.html:38 msgid "Next" msgstr "Weiter" @@ -985,7 +984,7 @@ msgstr "" #: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70 #: reports/graphs/feeding_duration.py:56 #: 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/tummytime_duration.py:51 reports/graphs/weight_change.py:28 msgid "Date" @@ -1159,7 +1158,9 @@ msgid "Add BMI" msgstr "Füge BMI hinzu" #: 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." #: 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_last.html:17 #: 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_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 msgid "None" msgstr "Keine" @@ -1580,6 +1582,22 @@ msgstr "{}, {}" msgid "0 days" 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 #, python-format msgid "%(child)s started tummy time!" @@ -1718,14 +1736,6 @@ msgstr "nass" msgid "solid" 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 #, python-format msgid "%(key)s days ago" @@ -1744,6 +1754,7 @@ 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 #, python-format msgid "
%(since)s
" msgstr "" @@ -1768,15 +1779,6 @@ 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/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 msgid "Last Sleep" msgstr "Letzter Schlaf" @@ -1793,6 +1795,20 @@ msgid_plural "%(count)s naps" msgstr[0] "%(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 msgid "Statistics" msgstr "Statistiken" @@ -1845,59 +1861,59 @@ msgstr "Aktionen des Kindes" msgid "Reports" msgstr "Reports" -#: dashboard/templatetags/cards.py:328 +#: dashboard/templatetags/cards.py:357 msgid "Average nap duration" msgstr "Durschnittliche Nickerchen-Dauer" -#: dashboard/templatetags/cards.py:335 +#: dashboard/templatetags/cards.py:364 msgid "Average naps per day" msgstr "Durschnittliche Anzahl Nickerchen" -#: dashboard/templatetags/cards.py:345 +#: dashboard/templatetags/cards.py:374 msgid "Average sleep duration" msgstr "Durchschnittliche Schlafdauer" -#: dashboard/templatetags/cards.py:352 +#: dashboard/templatetags/cards.py:381 msgid "Average awake duration" msgstr "Durchschnittlich wach" -#: dashboard/templatetags/cards.py:362 +#: dashboard/templatetags/cards.py:391 msgid "Weight change per week" msgstr "Gewichtsänderung pro Woche" -#: dashboard/templatetags/cards.py:372 +#: dashboard/templatetags/cards.py:401 msgid "Height change per week" msgstr "Größenänderung pro Woche" -#: dashboard/templatetags/cards.py:382 +#: dashboard/templatetags/cards.py:411 msgid "Head circumference change per week" msgstr "Kopfumfang Änderung pro woche" -#: dashboard/templatetags/cards.py:392 +#: dashboard/templatetags/cards.py:421 msgid "BMI change per week" msgstr "BMI Änderung pro Woche" -#: dashboard/templatetags/cards.py:410 +#: dashboard/templatetags/cards.py:439 msgid "Diaper change frequency (past 3 days)" msgstr "" -#: dashboard/templatetags/cards.py:414 +#: dashboard/templatetags/cards.py:443 msgid "Diaper change frequency (past 2 weeks)" msgstr "" -#: dashboard/templatetags/cards.py:420 +#: dashboard/templatetags/cards.py:449 msgid "Diaper change frequency" msgstr "Frequenz Windelwechsel" -#: dashboard/templatetags/cards.py:456 +#: dashboard/templatetags/cards.py:485 msgid "Feeding frequency (past 3 days)" msgstr "Mahlzeitenintervall (letzte 3 Tage)" -#: dashboard/templatetags/cards.py:460 +#: dashboard/templatetags/cards.py:489 msgid "Feeding frequency (past 2 weeks)" msgstr "Mahlzeitenintervall (letzte 2 Wochen)" -#: dashboard/templatetags/cards.py:466 +#: dashboard/templatetags/cards.py:495 msgid "Feeding frequency" msgstr "Frequenz Mahlzeiten" @@ -1973,11 +1989,11 @@ msgstr "Kopfumfang" msgid "Height" msgstr "Größe" -#: reports/graphs/pumping_amounts.py:57 +#: reports/graphs/pumping_amounts.py:59 msgid "Total Pumping Amount" msgstr "" -#: reports/graphs/pumping_amounts.py:60 +#: reports/graphs/pumping_amounts.py:62 msgid "Pumping Amount" msgstr "" @@ -2090,3 +2106,10 @@ msgstr "Bauchzeit Dauer (Summe)" #: reports/templates/reports/tummytime_duration.html:8 msgid "Total Tummy Time Durations" msgstr "Totalle Bauchzeit Dauer" + +#~ msgid "Today's Sleep" +#~ msgstr "Schlaf heute" + +#, python-format +#~ msgid "%(count)s sleep entries" +#~ msgstr "%(count)s Schlaf-Einträge" diff --git a/locale/en_GB/LC_MESSAGES/django.po b/locale/en_GB/LC_MESSAGES/django.po index 33e3b5924..5550ecc02 100644 --- a/locale/en_GB/LC_MESSAGES/django.po +++ b/locale/en_GB/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Baby Buddy\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" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -10,12 +10,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: 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 msgid "Settings" 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 #: dashboard/templates/dashboard/child.html:4 #: dashboard/templates/dashboard/child.html:9 @@ -178,7 +178,7 @@ msgstr "" #: babybuddy/templates/admin/base_site.html:4 #: babybuddy/templates/admin/base_site.html:7 -#: babybuddy/templates/babybuddy/nav-dropdown.html:359 +#: babybuddy/templates/babybuddy/nav-dropdown.html:339 msgid "Database Admin" msgstr "" @@ -225,19 +225,19 @@ msgid "Diaper Change" msgstr "Nappy Change" #: 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 msgid "Feeding" msgstr "" #: 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 msgid "Note" msgstr "" #: 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 #: core/models.py:468 core/models.py:471 #: core/templates/core/sleep_confirm_delete.html:7 @@ -248,19 +248,7 @@ msgid "Sleep" msgstr "" #: babybuddy/templates/babybuddy/nav-dropdown.html:75 -#: babybuddy/templates/babybuddy/nav-dropdown.html:179 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:81 -#: babybuddy/templates/babybuddy/nav-dropdown.html:301 +#: babybuddy/templates/babybuddy/nav-dropdown.html:296 #: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647 #: core/models.py:648 core/models.py:651 #: core/templates/core/timer_detail.html:59 @@ -272,44 +260,15 @@ msgstr "" msgid "Tummy Time" msgstr "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:87 -#: 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 +#: babybuddy/templates/babybuddy/nav-dropdown.html:99 #: core/templates/timeline/timeline.html:4 #: core/templates/timeline/timeline.html:7 #: dashboard/templates/dashboard/child_button_group.html:9 msgid "Timeline" msgstr "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:129 -#: babybuddy/templates/babybuddy/nav-dropdown.html:137 core/models.py:188 +#: babybuddy/templates/babybuddy/nav-dropdown.html:110 +#: babybuddy/templates/babybuddy/nav-dropdown.html:118 core/models.py:188 #: core/templates/core/child_confirm_delete.html:7 #: core/templates/core/child_detail.html:7 #: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4 @@ -319,7 +278,7 @@ msgstr "" msgid "Children" 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: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 @@ -338,7 +297,7 @@ msgstr "" msgid "Child" 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: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 @@ -347,19 +306,46 @@ msgstr "" msgid "Notes" msgstr "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:171 +#: babybuddy/templates/babybuddy/nav-dropdown.html:152 msgid "Measurements" msgstr "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:185 -msgid "Temperature reading" +#: babybuddy/templates/babybuddy/nav-dropdown.html:160 core/models.py:139 +#: 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 "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:199 -msgid "Weight entry" +#: babybuddy/templates/babybuddy/nav-dropdown.html:166 +msgid "BMI entry" 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: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/templates/core/height_confirm_delete.html:7 #: core/templates/core/height_form.html:13 @@ -374,59 +360,58 @@ msgstr "" msgid "Height" msgstr "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:213 +#: babybuddy/templates/babybuddy/nav-dropdown.html:194 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/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" +#: 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:227 -msgid "Head Circumference entry" +#: babybuddy/templates/babybuddy/nav-dropdown.html:208 +msgid "Temperature reading" msgstr "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:235 core/models.py:139 -#: 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" +#: 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:241 -msgid "BMI entry" +#: babybuddy/templates/babybuddy/nav-dropdown.html:222 +msgid "Weight entry" msgstr "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:255 +#: babybuddy/templates/babybuddy/nav-dropdown.html:236 msgid "Activities" msgstr "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:262 +#: babybuddy/templates/babybuddy/nav-dropdown.html:243 #: reports/graphs/diaperchange_lifetimes.py:27 msgid "Changes" msgstr "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:268 +#: babybuddy/templates/babybuddy/nav-dropdown.html:249 msgid "Change" 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 #: core/templates/core/feeding_confirm_delete.html:7 #: core/templates/core/feeding_form.html:13 @@ -436,19 +421,31 @@ msgstr "" msgid "Feedings" msgstr "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:294 -msgid "Sleep entry" +#: babybuddy/templates/babybuddy/nav-dropdown.html:270 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:307 -msgid "Tummy Time entry" +#: babybuddy/templates/babybuddy/nav-dropdown.html:276 +msgid "Pumping entry" msgstr "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:322 -msgid "Pumping entry" +#: babybuddy/templates/babybuddy/nav-dropdown.html:289 +msgid "Sleep entry" msgstr "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:346 +#: 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_password_form.html:7 #: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556 @@ -456,23 +453,23 @@ msgstr "" msgid "User" msgstr "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:348 +#: babybuddy/templates/babybuddy/nav-dropdown.html:328 msgid "Password" msgstr "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:352 +#: babybuddy/templates/babybuddy/nav-dropdown.html:332 msgid "Logout" msgstr "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:355 +#: babybuddy/templates/babybuddy/nav-dropdown.html:335 msgid "Site" msgstr "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:356 +#: babybuddy/templates/babybuddy/nav-dropdown.html:336 msgid "API Browser" 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_form.html:13 #: babybuddy/templates/babybuddy/user_list.html:4 @@ -480,15 +477,15 @@ msgstr "" msgid "Users" msgstr "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:361 +#: babybuddy/templates/babybuddy/nav-dropdown.html:341 msgid "Support" msgstr "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:363 +#: babybuddy/templates/babybuddy/nav-dropdown.html:343 msgid "Source Code" msgstr "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:365 +#: babybuddy/templates/babybuddy/nav-dropdown.html:345 msgid "Chat / Support" msgstr "" @@ -499,6 +496,7 @@ msgstr "" #: core/templates/timeline/_timeline.html:73 #: dashboard/templates/cards/feeding_day.html:43 #: dashboard/templates/cards/feeding_last_method.html:34 +#: dashboard/templates/cards/sleep_recent.html:43 #: dashboard/templates/cards/statistics.html:34 msgid "Previous" msgstr "" @@ -510,6 +508,7 @@ msgstr "" #: core/templates/timeline/_timeline.html:80 #: dashboard/templates/cards/feeding_day.html:47 #: dashboard/templates/cards/feeding_last_method.html:38 +#: dashboard/templates/cards/sleep_recent.html:47 #: dashboard/templates/cards/statistics.html:38 msgid "Next" msgstr "" @@ -960,7 +959,7 @@ msgstr "" #: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70 #: reports/graphs/feeding_duration.py:56 #: 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/tummytime_duration.py:51 reports/graphs/weight_change.py:28 msgid "Date" @@ -1134,8 +1133,10 @@ msgid "Add BMI" msgstr "" #: core/templates/core/bmi_list.html:70 -msgid "No bmi entries found." -msgstr "" +#, fuzzy +#| msgid "No diaper changes found." +msgid "No BMI entries found." +msgstr "No nappy changes found." #: core/templates/core/child_confirm_delete.html:4 msgid "Delete a Child" @@ -1431,9 +1432,10 @@ msgstr "" #: dashboard/templates/cards/feeding_day.html:52 #: dashboard/templates/cards/feeding_last.html:17 #: 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_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 msgid "None" msgstr "" @@ -1551,6 +1553,20 @@ msgstr "" msgid "0 days" 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 #, python-format msgid "%(child)s started tummy time!" @@ -1689,14 +1705,6 @@ msgstr "" msgid "solid" 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 #, python-format msgid "%(key)s days ago" @@ -1714,6 +1722,7 @@ msgstr[0] "" msgstr[1] "" #: dashboard/templates/cards/feeding_day.html:32 +#: dashboard/templates/cards/sleep_recent.html:32 #, python-format msgid "
%(since)s
" msgstr "" @@ -1737,15 +1746,6 @@ msgid_plural "%(n)s feedings ago" msgstr[0] "" 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 msgid "Last Sleep" msgstr "" @@ -1761,6 +1761,17 @@ msgid_plural "%(count)s naps" msgstr[0] "" 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 msgid "Statistics" msgstr "" @@ -1812,59 +1823,59 @@ msgstr "" msgid "Reports" msgstr "" -#: dashboard/templatetags/cards.py:328 +#: dashboard/templatetags/cards.py:357 msgid "Average nap duration" msgstr "" -#: dashboard/templatetags/cards.py:335 +#: dashboard/templatetags/cards.py:364 msgid "Average naps per day" msgstr "" -#: dashboard/templatetags/cards.py:345 +#: dashboard/templatetags/cards.py:374 msgid "Average sleep duration" msgstr "" -#: dashboard/templatetags/cards.py:352 +#: dashboard/templatetags/cards.py:381 msgid "Average awake duration" msgstr "" -#: dashboard/templatetags/cards.py:362 +#: dashboard/templatetags/cards.py:391 msgid "Weight change per week" msgstr "" -#: dashboard/templatetags/cards.py:372 +#: dashboard/templatetags/cards.py:401 msgid "Height change per week" msgstr "" -#: dashboard/templatetags/cards.py:382 +#: dashboard/templatetags/cards.py:411 msgid "Head circumference change per week" msgstr "" -#: dashboard/templatetags/cards.py:392 +#: dashboard/templatetags/cards.py:421 msgid "BMI change per week" msgstr "" -#: dashboard/templatetags/cards.py:410 +#: dashboard/templatetags/cards.py:439 msgid "Diaper 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)" msgstr "Nappy change frequency (past 2 weeks)" -#: dashboard/templatetags/cards.py:420 +#: dashboard/templatetags/cards.py:449 msgid "Diaper change frequency" msgstr "Nappy change frequency" -#: dashboard/templatetags/cards.py:456 +#: dashboard/templatetags/cards.py:485 msgid "Feeding frequency (past 3 days)" msgstr "" -#: dashboard/templatetags/cards.py:460 +#: dashboard/templatetags/cards.py:489 msgid "Feeding frequency (past 2 weeks)" msgstr "" -#: dashboard/templatetags/cards.py:466 +#: dashboard/templatetags/cards.py:495 msgid "Feeding frequency" msgstr "" @@ -1940,11 +1951,11 @@ msgstr "" msgid "Height" msgstr "" -#: reports/graphs/pumping_amounts.py:57 +#: reports/graphs/pumping_amounts.py:59 msgid "Total Pumping Amount" msgstr "" -#: reports/graphs/pumping_amounts.py:60 +#: reports/graphs/pumping_amounts.py:62 msgid "Pumping Amount" msgstr "" diff --git a/locale/es/LC_MESSAGES/django.mo b/locale/es/LC_MESSAGES/django.mo index 94ff9b1ec5cf272d8e5bb833772812cab35ef3c4..e91fa809543a52a617c831272b22b8bf351c6e2a 100644 GIT binary patch delta 8722 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 delta 9749 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 ZgTb<{37vtQepY$ru3(oOw_C%e{|EityP5z1 diff --git a/locale/es/LC_MESSAGES/django.po b/locale/es/LC_MESSAGES/django.po index 362cf4f39..0c54b293f 100644 --- a/locale/es/LC_MESSAGES/django.po +++ b/locale/es/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Baby Buddy\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" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -11,12 +11,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: 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 msgid "Settings" 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 #: dashboard/templates/dashboard/child.html:4 #: 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:7 -#: babybuddy/templates/babybuddy/nav-dropdown.html:359 +#: babybuddy/templates/babybuddy/nav-dropdown.html:339 msgid "Database Admin" msgstr "Administrar Base de Datos" @@ -230,19 +230,19 @@ msgid "Diaper Change" msgstr "Cambio de Pañal" #: 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 msgid "Feeding" msgstr "Toma" #: 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 msgid "Note" msgstr "Nota" #: 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 #: core/models.py:468 core/models.py:471 #: core/templates/core/sleep_confirm_delete.html:7 @@ -253,19 +253,7 @@ msgid "Sleep" msgstr "Sueño" #: babybuddy/templates/babybuddy/nav-dropdown.html:75 -#: babybuddy/templates/babybuddy/nav-dropdown.html:179 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:81 -#: babybuddy/templates/babybuddy/nav-dropdown.html:301 +#: babybuddy/templates/babybuddy/nav-dropdown.html:296 #: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647 #: core/models.py:648 core/models.py:651 #: core/templates/core/timer_detail.html:59 @@ -277,44 +265,15 @@ msgstr "Temperatura" msgid "Tummy Time" msgstr "Tiempo boca abajo" -#: babybuddy/templates/babybuddy/nav-dropdown.html:87 -#: 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 +#: babybuddy/templates/babybuddy/nav-dropdown.html:99 #: core/templates/timeline/timeline.html:4 #: core/templates/timeline/timeline.html:7 #: dashboard/templates/dashboard/child_button_group.html:9 msgid "Timeline" msgstr "Cronología" -#: babybuddy/templates/babybuddy/nav-dropdown.html:129 -#: babybuddy/templates/babybuddy/nav-dropdown.html:137 core/models.py:188 +#: babybuddy/templates/babybuddy/nav-dropdown.html:110 +#: babybuddy/templates/babybuddy/nav-dropdown.html:118 core/models.py:188 #: core/templates/core/child_confirm_delete.html:7 #: core/templates/core/child_detail.html:7 #: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4 @@ -324,7 +283,7 @@ msgstr "Cronología" msgid "Children" 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: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 @@ -343,7 +302,7 @@ msgstr "Niños" msgid "Child" 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: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 @@ -352,19 +311,46 @@ msgstr "Niño" msgid "Notes" msgstr "Notas" -#: babybuddy/templates/babybuddy/nav-dropdown.html:171 +#: babybuddy/templates/babybuddy/nav-dropdown.html:152 msgid "Measurements" msgstr "Mediciones" -#: babybuddy/templates/babybuddy/nav-dropdown.html:185 -msgid "Temperature reading" -msgstr "Lectura de temperatura" +#: babybuddy/templates/babybuddy/nav-dropdown.html:160 core/models.py:139 +#: 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 "IMC" -#: babybuddy/templates/babybuddy/nav-dropdown.html:199 -msgid "Weight entry" -msgstr "Introducir peso" +#: babybuddy/templates/babybuddy/nav-dropdown.html:166 +msgid "BMI entry" +msgstr "Entrada de IMC" + +#: 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 "Perímetro craneal" + +#: babybuddy/templates/babybuddy/nav-dropdown.html:180 +msgid "Head Circumference entry" +msgstr "Entrada de perímetro craneal" -#: babybuddy/templates/babybuddy/nav-dropdown.html:207 core/models.py:369 +#: babybuddy/templates/babybuddy/nav-dropdown.html:188 core/models.py:369 #: 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 @@ -379,59 +365,58 @@ msgstr "Introducir peso" msgid "Height" msgstr "Altura" -#: babybuddy/templates/babybuddy/nav-dropdown.html:213 +#: babybuddy/templates/babybuddy/nav-dropdown.html:194 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/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 "Perímetro craneal" +#: 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:227 -msgid "Head Circumference entry" -msgstr "Entrada de perímetro craneal" +#: babybuddy/templates/babybuddy/nav-dropdown.html:208 +msgid "Temperature reading" +msgstr "Lectura de temperatura" -#: babybuddy/templates/babybuddy/nav-dropdown.html:235 core/models.py:139 -#: 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 "IMC" +#: 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:241 -msgid "BMI entry" -msgstr "Entrada de IMC" +#: babybuddy/templates/babybuddy/nav-dropdown.html:222 +msgid "Weight entry" +msgstr "Introducir peso" -#: babybuddy/templates/babybuddy/nav-dropdown.html:255 +#: babybuddy/templates/babybuddy/nav-dropdown.html:236 msgid "Activities" msgstr "Actividades" -#: babybuddy/templates/babybuddy/nav-dropdown.html:262 +#: babybuddy/templates/babybuddy/nav-dropdown.html:243 #: reports/graphs/diaperchange_lifetimes.py:27 msgid "Changes" msgstr "Cambios" -#: babybuddy/templates/babybuddy/nav-dropdown.html:268 +#: babybuddy/templates/babybuddy/nav-dropdown.html:249 msgid "Change" 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 #: core/templates/core/feeding_confirm_delete.html:7 #: core/templates/core/feeding_form.html:13 @@ -441,19 +426,31 @@ msgstr "Cambio" msgid "Feedings" msgstr "Tomas" -#: babybuddy/templates/babybuddy/nav-dropdown.html:294 +#: babybuddy/templates/babybuddy/nav-dropdown.html:270 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:276 +msgid "Pumping entry" +msgstr "Entrada de extracción" + +#: babybuddy/templates/babybuddy/nav-dropdown.html:289 msgid "Sleep entry" msgstr "Entrada de sueño" -#: babybuddy/templates/babybuddy/nav-dropdown.html:307 +#: babybuddy/templates/babybuddy/nav-dropdown.html:302 msgid "Tummy Time entry" msgstr "Entrada de tiempo boca abajo" -#: babybuddy/templates/babybuddy/nav-dropdown.html:322 -msgid "Pumping entry" -msgstr "Entrada de extracción" - -#: babybuddy/templates/babybuddy/nav-dropdown.html:346 +#: babybuddy/templates/babybuddy/nav-dropdown.html:326 #: babybuddy/templates/babybuddy/user_list.html:17 #: babybuddy/templates/babybuddy/user_password_form.html:7 #: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556 @@ -461,23 +458,23 @@ msgstr "Entrada de extracción" msgid "User" msgstr "Usuario" -#: babybuddy/templates/babybuddy/nav-dropdown.html:348 +#: babybuddy/templates/babybuddy/nav-dropdown.html:328 msgid "Password" msgstr "Contraseña" -#: babybuddy/templates/babybuddy/nav-dropdown.html:352 +#: babybuddy/templates/babybuddy/nav-dropdown.html:332 msgid "Logout" msgstr "Cerrar sesión" -#: babybuddy/templates/babybuddy/nav-dropdown.html:355 +#: babybuddy/templates/babybuddy/nav-dropdown.html:335 msgid "Site" msgstr "Sitio" -#: babybuddy/templates/babybuddy/nav-dropdown.html:356 +#: babybuddy/templates/babybuddy/nav-dropdown.html:336 msgid "API Browser" 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_form.html:13 #: babybuddy/templates/babybuddy/user_list.html:4 @@ -485,15 +482,15 @@ msgstr "Navegador API" msgid "Users" msgstr "Usuarios" -#: babybuddy/templates/babybuddy/nav-dropdown.html:361 +#: babybuddy/templates/babybuddy/nav-dropdown.html:341 msgid "Support" msgstr "Soporte" -#: babybuddy/templates/babybuddy/nav-dropdown.html:363 +#: babybuddy/templates/babybuddy/nav-dropdown.html:343 msgid "Source Code" msgstr "Código Fuente" -#: babybuddy/templates/babybuddy/nav-dropdown.html:365 +#: babybuddy/templates/babybuddy/nav-dropdown.html:345 msgid "Chat / Support" msgstr "Chat / Soporte" @@ -504,6 +501,7 @@ msgstr "Chat / Soporte" #: core/templates/timeline/_timeline.html:73 #: dashboard/templates/cards/feeding_day.html:43 #: dashboard/templates/cards/feeding_last_method.html:34 +#: dashboard/templates/cards/sleep_recent.html:43 #: dashboard/templates/cards/statistics.html:34 msgid "Previous" msgstr "Anterior" @@ -515,6 +513,7 @@ msgstr "Anterior" #: core/templates/timeline/_timeline.html:80 #: dashboard/templates/cards/feeding_day.html:47 #: dashboard/templates/cards/feeding_last_method.html:38 +#: dashboard/templates/cards/sleep_recent.html:47 #: dashboard/templates/cards/statistics.html:38 msgid "Next" msgstr "Siguiente" @@ -788,7 +787,7 @@ msgstr "Cómo arreglarlo" #, python-format msgid "" "Add %(origin)s to the CSRF_TRUSTED_ORIGINS " -"environment variable. If multiple origins are required separate with commas." +"environment variable. If multiple origins are required separate with commas.\n" msgstr "" "Añade %(origin)s a la variable de entorno " "CSRF_TRUSTED_ORIGINS. 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/feeding_duration.py:56 #: 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/tummytime_duration.py:51 reports/graphs/weight_change.py:28 msgid "Date" @@ -1159,7 +1158,9 @@ msgid "Add BMI" msgstr "Añadir IMC" #: 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." #: 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_plural "Are you sure you want to delete %(number)s inactive timers?" msgstr[0] "" -"¿Está seguro de que desea eliminar %(number)s temporizador%(plural)s inactivo" -"%(plural)s?" +"¿Está seguro de que desea eliminar %(number)s temporizador%(plural)s " +"inactivo%(plural)s?" msgstr[1] "" -"¿Está seguro de que desea eliminar %(number)s temporizador%(plural)s inactivo" -"%(plural)s?" +"¿Está seguro de que desea eliminar %(number)s temporizador%(plural)s " +"inactivo%(plural)s?" #: core/templates/core/timer_detail.html:28 msgid "Started" @@ -1461,9 +1462,10 @@ msgstr "Temporizadores Activos" #: dashboard/templates/cards/feeding_day.html:52 #: dashboard/templates/cards/feeding_last.html:17 #: 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_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 msgid "None" msgstr "Ninguno" @@ -1581,6 +1583,22 @@ msgstr "{}, {}" msgid "0 days" 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 #, python-format msgid "%(child)s started tummy time!" @@ -1719,14 +1737,6 @@ msgstr "mojado" msgid "solid" 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 #, python-format 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" #: dashboard/templates/cards/feeding_day.html:32 +#: dashboard/templates/cards/sleep_recent.html:32 #, python-format msgid "
%(since)s
" msgstr "
%(since)s
" @@ -1769,15 +1780,6 @@ 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/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 msgid "Last Sleep" msgstr "Último sueño" @@ -1794,6 +1796,20 @@ msgid_plural "%(count)s naps" msgstr[0] "%(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 msgid "Statistics" msgstr "Estadísticas" @@ -1846,59 +1862,59 @@ msgstr "Acciones de niño" msgid "Reports" msgstr "Reportes" -#: dashboard/templatetags/cards.py:328 +#: dashboard/templatetags/cards.py:357 msgid "Average nap duration" msgstr "Duración media siesta" -#: dashboard/templatetags/cards.py:335 +#: dashboard/templatetags/cards.py:364 msgid "Average naps per day" msgstr "Media de siestas por día" -#: dashboard/templatetags/cards.py:345 +#: dashboard/templatetags/cards.py:374 msgid "Average sleep duration" msgstr "Duración media sueño" -#: dashboard/templatetags/cards.py:352 +#: dashboard/templatetags/cards.py:381 msgid "Average awake duration" msgstr "Duración media despierto" -#: dashboard/templatetags/cards.py:362 +#: dashboard/templatetags/cards.py:391 msgid "Weight change per week" msgstr "Cambio de peso por semana" -#: dashboard/templatetags/cards.py:372 +#: dashboard/templatetags/cards.py:401 msgid "Height change per week" msgstr "Cambio de altura por semana" -#: dashboard/templatetags/cards.py:382 +#: dashboard/templatetags/cards.py:411 msgid "Head circumference change per week" msgstr "Cambio de perímetro craneal por semana" -#: dashboard/templatetags/cards.py:392 +#: dashboard/templatetags/cards.py:421 msgid "BMI change per week" msgstr "Cambio de IMC por semana" -#: dashboard/templatetags/cards.py:410 +#: dashboard/templatetags/cards.py:439 msgid "Diaper change frequency (past 3 days)" 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)" msgstr "Frecuencia de pañales (últimas 2 semanas)" -#: dashboard/templatetags/cards.py:420 +#: dashboard/templatetags/cards.py:449 msgid "Diaper change frequency" msgstr "Frecuencia de cambio de pañal" -#: dashboard/templatetags/cards.py:456 +#: dashboard/templatetags/cards.py:485 msgid "Feeding frequency (past 3 days)" msgstr "Frecuenca de tomas (últimos 3 días)" -#: dashboard/templatetags/cards.py:460 +#: dashboard/templatetags/cards.py:489 msgid "Feeding frequency (past 2 weeks)" msgstr "Frecuenca de tomas (últimas 2 semanas)" -#: dashboard/templatetags/cards.py:466 +#: dashboard/templatetags/cards.py:495 msgid "Feeding frequency" msgstr "Frecuencia de tomas" @@ -1974,11 +1990,11 @@ msgstr "Perímetro craneal" msgid "Height" msgstr "Altura" -#: reports/graphs/pumping_amounts.py:57 +#: reports/graphs/pumping_amounts.py:59 msgid "Total Pumping Amount" msgstr "Cantidad total extraída" -#: reports/graphs/pumping_amounts.py:60 +#: reports/graphs/pumping_amounts.py:62 msgid "Pumping Amount" msgstr "Cantidad de extracción" @@ -2092,6 +2108,13 @@ msgstr "Tiempo Boca Abajo (Suma)" msgid "Total Tummy Time Durations" 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 "" #~ "This setting will only be used when a browser does not support refresh on " #~ "focus." diff --git a/locale/fi/LC_MESSAGES/django.mo b/locale/fi/LC_MESSAGES/django.mo index c2978d53dc140a1465cecf6a28867692dad0fb0b..99173f45824ba990d99e08bde266d0ed3fb11eb6 100644 GIT binary patch delta 6322 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 delta 6620 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 UpHbzti<*QDFZS1XvWJBI7Z{h#6aWAK diff --git a/locale/fi/LC_MESSAGES/django.po b/locale/fi/LC_MESSAGES/django.po index e90100065..29f233184 100644 --- a/locale/fi/LC_MESSAGES/django.po +++ b/locale/fi/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Baby Buddy\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" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -11,12 +11,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: 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 msgid "Settings" 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 #: dashboard/templates/dashboard/child.html:4 #: 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:7 -#: babybuddy/templates/babybuddy/nav-dropdown.html:359 +#: babybuddy/templates/babybuddy/nav-dropdown.html:339 msgid "Database Admin" msgstr "Tietokantahallinta" @@ -227,19 +227,19 @@ msgid "Diaper Change" msgstr "Vaipanvaihto" #: 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 msgid "Feeding" msgstr "Syöttö" #: 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 msgid "Note" msgstr "Muistiinpano" #: 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 #: core/models.py:468 core/models.py:471 #: core/templates/core/sleep_confirm_delete.html:7 @@ -250,19 +250,7 @@ msgid "Sleep" msgstr "Uni" #: babybuddy/templates/babybuddy/nav-dropdown.html:75 -#: babybuddy/templates/babybuddy/nav-dropdown.html:179 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:81 -#: babybuddy/templates/babybuddy/nav-dropdown.html:301 +#: babybuddy/templates/babybuddy/nav-dropdown.html:296 #: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647 #: core/models.py:648 core/models.py:651 #: core/templates/core/timer_detail.html:59 @@ -274,44 +262,15 @@ msgstr "Lämpötila" msgid "Tummy Time" msgstr "Ihokontakti" -#: babybuddy/templates/babybuddy/nav-dropdown.html:87 -#: 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 +#: babybuddy/templates/babybuddy/nav-dropdown.html:99 #: core/templates/timeline/timeline.html:4 #: core/templates/timeline/timeline.html:7 #: dashboard/templates/dashboard/child_button_group.html:9 msgid "Timeline" msgstr "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:129 -#: babybuddy/templates/babybuddy/nav-dropdown.html:137 core/models.py:188 +#: babybuddy/templates/babybuddy/nav-dropdown.html:110 +#: babybuddy/templates/babybuddy/nav-dropdown.html:118 core/models.py:188 #: core/templates/core/child_confirm_delete.html:7 #: core/templates/core/child_detail.html:7 #: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4 @@ -321,7 +280,7 @@ msgstr "" msgid "Children" 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: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 @@ -340,7 +299,7 @@ msgstr "Lapset" msgid "Child" 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: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 @@ -349,38 +308,26 @@ msgstr "Lapsi" msgid "Notes" msgstr "Muistiinpanot" -#: babybuddy/templates/babybuddy/nav-dropdown.html:171 +#: babybuddy/templates/babybuddy/nav-dropdown.html:152 msgid "Measurements" msgstr "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:185 -msgid "Temperature reading" -msgstr "Lämpötilalukema" - -#: babybuddy/templates/babybuddy/nav-dropdown.html:199 -msgid "Weight entry" -msgstr "Painomerkintä" - -#: babybuddy/templates/babybuddy/nav-dropdown.html:207 core/models.py:369 -#: 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" +#: babybuddy/templates/babybuddy/nav-dropdown.html:160 core/models.py:139 +#: 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 "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:213 -msgid "Height entry" +#: babybuddy/templates/babybuddy/nav-dropdown.html:166 +msgid "BMI entry" 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/templates/core/head_circumference_confirm_delete.html:7 #: core/templates/core/head_circumference_form.html:13 @@ -396,39 +343,77 @@ msgstr "" msgid "Head Circumference" msgstr "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:227 +#: babybuddy/templates/babybuddy/nav-dropdown.html:180 msgid "Head Circumference entry" msgstr "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:235 core/models.py:139 -#: 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" +#: babybuddy/templates/babybuddy/nav-dropdown.html:188 core/models.py:369 +#: 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:241 -msgid "BMI entry" +#: babybuddy/templates/babybuddy/nav-dropdown.html:194 +msgid "Height entry" 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" msgstr "Aktiviteetit" -#: babybuddy/templates/babybuddy/nav-dropdown.html:262 +#: babybuddy/templates/babybuddy/nav-dropdown.html:243 #: reports/graphs/diaperchange_lifetimes.py:27 msgid "Changes" msgstr "Muutokset" -#: babybuddy/templates/babybuddy/nav-dropdown.html:268 +#: babybuddy/templates/babybuddy/nav-dropdown.html:249 msgid "Change" 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 #: core/templates/core/feeding_confirm_delete.html:7 #: core/templates/core/feeding_form.html:13 @@ -438,19 +423,31 @@ msgstr "Muutos" msgid "Feedings" msgstr "Syötöt" -#: babybuddy/templates/babybuddy/nav-dropdown.html:294 +#: babybuddy/templates/babybuddy/nav-dropdown.html:270 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:276 +msgid "Pumping entry" +msgstr "" + +#: babybuddy/templates/babybuddy/nav-dropdown.html:289 msgid "Sleep entry" msgstr "Unimerkintä" -#: babybuddy/templates/babybuddy/nav-dropdown.html:307 +#: babybuddy/templates/babybuddy/nav-dropdown.html:302 msgid "Tummy Time entry" msgstr "Ihokontakti" -#: babybuddy/templates/babybuddy/nav-dropdown.html:322 -msgid "Pumping entry" -msgstr "" - -#: babybuddy/templates/babybuddy/nav-dropdown.html:346 +#: babybuddy/templates/babybuddy/nav-dropdown.html:326 #: babybuddy/templates/babybuddy/user_list.html:17 #: babybuddy/templates/babybuddy/user_password_form.html:7 #: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556 @@ -458,23 +455,23 @@ msgstr "" msgid "User" msgstr "Käyttäjä" -#: babybuddy/templates/babybuddy/nav-dropdown.html:348 +#: babybuddy/templates/babybuddy/nav-dropdown.html:328 msgid "Password" msgstr "Salasana" -#: babybuddy/templates/babybuddy/nav-dropdown.html:352 +#: babybuddy/templates/babybuddy/nav-dropdown.html:332 msgid "Logout" msgstr "Kirjaudu ulos" -#: babybuddy/templates/babybuddy/nav-dropdown.html:355 +#: babybuddy/templates/babybuddy/nav-dropdown.html:335 msgid "Site" msgstr "Sivusto" -#: babybuddy/templates/babybuddy/nav-dropdown.html:356 +#: babybuddy/templates/babybuddy/nav-dropdown.html:336 msgid "API Browser" 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_form.html:13 #: babybuddy/templates/babybuddy/user_list.html:4 @@ -482,15 +479,15 @@ msgstr "API-selain" msgid "Users" msgstr "Käyttäjät" -#: babybuddy/templates/babybuddy/nav-dropdown.html:361 +#: babybuddy/templates/babybuddy/nav-dropdown.html:341 msgid "Support" msgstr "Tuki" -#: babybuddy/templates/babybuddy/nav-dropdown.html:363 +#: babybuddy/templates/babybuddy/nav-dropdown.html:343 msgid "Source Code" msgstr "Lähdekoodi" -#: babybuddy/templates/babybuddy/nav-dropdown.html:365 +#: babybuddy/templates/babybuddy/nav-dropdown.html:345 msgid "Chat / Support" msgstr "Chat / tuki" @@ -501,6 +498,7 @@ msgstr "Chat / tuki" #: core/templates/timeline/_timeline.html:73 #: dashboard/templates/cards/feeding_day.html:43 #: dashboard/templates/cards/feeding_last_method.html:34 +#: dashboard/templates/cards/sleep_recent.html:43 #: dashboard/templates/cards/statistics.html:34 msgid "Previous" msgstr "Edellinen" @@ -512,6 +510,7 @@ msgstr "Edellinen" #: core/templates/timeline/_timeline.html:80 #: dashboard/templates/cards/feeding_day.html:47 #: dashboard/templates/cards/feeding_last_method.html:38 +#: dashboard/templates/cards/sleep_recent.html:47 #: dashboard/templates/cards/statistics.html:38 msgid "Next" msgstr "Seuraava" @@ -973,7 +972,7 @@ msgstr "" #: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70 #: reports/graphs/feeding_duration.py:56 #: 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/tummytime_duration.py:51 reports/graphs/weight_change.py:28 msgid "Date" @@ -1147,8 +1146,10 @@ msgid "Add BMI" msgstr "" #: core/templates/core/bmi_list.html:70 -msgid "No bmi entries found." -msgstr "" +#, fuzzy +#| msgid "No sleep entries found." +msgid "No BMI entries found." +msgstr "Unia ei löytynyt." #: core/templates/core/child_confirm_delete.html:4 msgid "Delete a Child" @@ -1445,9 +1446,10 @@ msgstr "Aktiiviset ajastimet" #: dashboard/templates/cards/feeding_day.html:52 #: dashboard/templates/cards/feeding_last.html:17 #: 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_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 msgid "None" msgstr "Ei mitään" @@ -1565,6 +1567,22 @@ msgstr "" msgid "0 days" 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 #, python-format msgid "%(child)s started tummy time!" @@ -1703,14 +1721,6 @@ msgstr "märkä" msgid "solid" 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 #, python-format msgid "%(key)s days ago" @@ -1729,6 +1739,7 @@ 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 "
%(since)s
" msgstr "" @@ -1753,15 +1764,6 @@ 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/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 msgid "Last Sleep" msgstr "Edellinen uni" @@ -1778,6 +1780,20 @@ msgid_plural "%(count)s naps" msgstr[0] "%(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 msgid "Statistics" msgstr "Tilastot" @@ -1830,59 +1846,59 @@ msgstr "Lapsen toiminnot" msgid "Reports" msgstr "Raportit" -#: dashboard/templatetags/cards.py:328 +#: dashboard/templatetags/cards.py:357 msgid "Average nap duration" msgstr "Päiväunen kesto keskimäärin" -#: dashboard/templatetags/cards.py:335 +#: dashboard/templatetags/cards.py:364 msgid "Average naps per day" msgstr "Päiväunia päivässä" -#: dashboard/templatetags/cards.py:345 +#: dashboard/templatetags/cards.py:374 msgid "Average sleep duration" msgstr "Unen kesto keskimäärin" -#: dashboard/templatetags/cards.py:352 +#: dashboard/templatetags/cards.py:381 msgid "Average awake duration" msgstr "Hereilläoloaika keskimäärin" -#: dashboard/templatetags/cards.py:362 +#: dashboard/templatetags/cards.py:391 msgid "Weight change per week" msgstr "Painonmuutos viikossa" -#: dashboard/templatetags/cards.py:372 +#: dashboard/templatetags/cards.py:401 msgid "Height change per week" msgstr "" -#: dashboard/templatetags/cards.py:382 +#: dashboard/templatetags/cards.py:411 msgid "Head circumference change per week" msgstr "" -#: dashboard/templatetags/cards.py:392 +#: dashboard/templatetags/cards.py:421 msgid "BMI change per week" msgstr "" -#: dashboard/templatetags/cards.py:410 +#: dashboard/templatetags/cards.py:439 msgid "Diaper change frequency (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)" msgstr "Vaipanvaihtotaajuus (past 2 weeks)" -#: dashboard/templatetags/cards.py:420 +#: dashboard/templatetags/cards.py:449 msgid "Diaper change frequency" msgstr "Vaipanvaihtotaajuus" -#: dashboard/templatetags/cards.py:456 +#: dashboard/templatetags/cards.py:485 msgid "Feeding frequency (past 3 days)" msgstr "" -#: dashboard/templatetags/cards.py:460 +#: dashboard/templatetags/cards.py:489 msgid "Feeding frequency (past 2 weeks)" msgstr "" -#: dashboard/templatetags/cards.py:466 +#: dashboard/templatetags/cards.py:495 msgid "Feeding frequency" msgstr "Syöttötaajuus" @@ -1958,11 +1974,11 @@ msgstr "" msgid "Height" msgstr "" -#: reports/graphs/pumping_amounts.py:57 +#: reports/graphs/pumping_amounts.py:59 msgid "Total Pumping Amount" msgstr "" -#: reports/graphs/pumping_amounts.py:60 +#: reports/graphs/pumping_amounts.py:62 msgid "Pumping Amount" msgstr "" @@ -2075,3 +2091,10 @@ msgstr "" #: reports/templates/reports/tummytime_duration.html:8 msgid "Total Tummy Time Durations" msgstr "" + +#~ msgid "Today's Sleep" +#~ msgstr "Uni tänään" + +#, python-format +#~ msgid "%(count)s sleep entries" +#~ msgstr "%(count)s unimerkintä" diff --git a/locale/fr/LC_MESSAGES/django.mo b/locale/fr/LC_MESSAGES/django.mo index afcd4ac970268cbc97ec1ecfcbc16b4d44b1f462..fff13d5bbaefa31a3f7ec28e88311138787f4e4f 100644 GIT binary patch delta 6989 zcmYk=3w+P@9>?+DY_r*HW}C|{?9c4Ru$jviHA1c%B04y^)O4caMB#*ACy5h|Yi=c% z$WgJ_Vb$bJPOdpchp4R5iIGdF&{DnL|KG>s_&pw1oB2whE#|AhMqj3V(!pJl~wLS&e*aUl`8jQ8_C1x?EQ@+pYFI#zio~{98^G5^dgVk{)2IC`^ zA8S5^A(T(`>pIR1tC(vpHeWK=qHfq|`7M@z+w$e;qkbf6lFpNYfjzKk;fExKUjKn3Vj@F~vzlEB~4%CA_M%7oKIzEfKzY60p zhUw}IHAihx7u0|THDdp@WJ4&>$S0we%EcgDj5)X*M+G>}AykL0Ia%tk5Ot`EP)q(4 z>iz}hYp8Z*r~w`^PomC7WwPr%=pqF*DY%Lnh)$wr8iHyVgDQ_ReOQZp8fpdFp|+qa zYQ+jr_YJlBk*F0OXXTSE@46)PpjoJ;UySPD6%4{n$Z>GCB4cw7qXzOLYN>xg%{(&2 z8&C#n#(AiI`=a_AYUN{4EA}jE;O-(4TCz2$t=NuQ;!m&+UO=r(V5-+q6zaw#RDE;Q zS?Fx_gHR6`h3a=A>MYDbt-w0e8Q6rudjHEw1W~ZZD{u~CAo;_n8;;^ktiVhhmF6w= zBGeYVgnUb!H&8R(i&~ju=)+3ng>h=6d;Mi#b@Ht+gy%bX{sdn@)FJ6%4nRF%7;2_t zF$8B=elDt`SIyUv897@}TT+Tzfg`91o@zrchn3DPt{_+%#QuYxlaXm4+z zRwSUg*HI{{qZm}XM68J|tiCVsDZoa|NWms zLLIC?&9E3X!fiMkccBJQ(8?RY08|HKEI$eThYIz&ErG z9q5KCAJ&HT_mP-OK`d^@RNRf~=p3eDR9k-YF&FdjG349iY(TX;V&&H{oqVfy-UElA z>L;SMU?pm6-!{wJvHzOUJ___&d}I}$nWxNisCHK@f5Y+txn75%sQM^WKlLo%81?g= zf%UOF*2NK4KFPI;rRH0xrP+_#<7=p;3u4;$qYpdbWK6~~9EV@xVC;K`w{>q|6!~J* zUYBDqeu!G>BdCG8XGmyCuAt7s&lruN?Y&>U1XOu8>b1+a@;+FPe38{pMV*n^=1TMr zz${0t#9`FHzxQ;VSdOOlG8grYeh~HgJcDe%GXr%9%TN#e!15=NH_kbO0o7REJG~{2 z&-cthz5l%}KLq2+Prx{w=hx*6MnWUsZ5~Ap;0)?5IFIV+d(=w(hFX!3j$XSusPcGJ zyT+)2W~0h`U>)p-TET}=_fNz)m&6PbYPibWU>2ipEJfXT2(_dqQ3Je)I_+0cE0M^- z&`K4c_IMEb@KMy3&b9n%)Bty(8$;p*33&n4FyL;_SoD!k!xZd}8TdGAFPEV@D#iNv z5$eH}s1?158hEYF-lUcUk@m^bZiTDZkl;_0J^Hva8qOP}D#kL2b!6bCUUtISbX% zeAE`LN9}zXYTyS@TX7sUfm0Za-=Us&8Jl23_a5&-olzt0g^O_%uE8o)M=QH|d%gjy zlYbNSz!KC0-$xDPW7GstPsX8ohLg+5fsEGAL+++LK|Z zkv@kyjLT6E+=Ml-1jFz>R7d+z13QXIcn!4@^?G~yP+OIOjWHM1ZV1-m`OecM)ZuJY z!zCDw>oE=HO@iR??N9Q#F}^>)zJ;BuU6;{tR|{F7S*l+YU`RJzfVqA?2j&LML#KI{k7yL zD9~R1iW+HbAFl%+YVVq(maHR2;Bbt@$FVz3Mcuat6Y&UY>n>S7u&?((AEr{Cit4AJ zFYB)_(hv%2;drZKd-+=W*+Lke%Jyhq6YdJ zHp8thiIyZPFb5;=^*XrQ9E>^xPoS1`1?sihfPcrGsHH4mUA02}Q4<=E8qjRi*; z6UC_Z+wm!McaY$XaB>ECBb$a=i5E~yxdL@#snzea`~lQT97Z1=v+`>gKzxXxuS;XH~>xpNOLwX%uWm6$-BCiJ7jmO7Do0+&|cbK*JTzr-DspGRHU zgeH=z4A<8l&Rh7KrM>_D=Oza2zg{%O_r!QYZ$>Yo9_@a_S~whYh*reQgw8-Zv4L1a zJVT5jbiLu>|NEY$cVd~+oIhtD@dfcLag3K)pbWB-#`H zi@KUt@Bd~{IFDFC%q5l)3y7vf2JPw)TQvW>C}>CKC%pY?Oxbr7{F_K1W)iOviInSL z-hM47GnsgZc$(Nq)F#dn)rdf1GokBA5C7kB{`Dt$kO-w?U2Qy^bjvII7!hmb|G^K5 zAnG5mvRmj~zeapx1%vQiVk+?m;tZjSf2%sJxc|8Jzkp~)=xRZszGw|_EdH68Pec=q zC<`ENU3!mSBBm4iM$92}jUY;ikBGk#x-z-1CJrM`5I2bb5qiG=>d4<@;yQ5$afJxu zrX{$L*iM9#??C9P@bG^-W{_@e<$0usT3s+@ZHP&hPqH@cF_t)>=dYx4An^)OpTd^J zBc$&mZe6EHJWTvx1ugN9mKI+Tjfhn4O&}JN?oBiy{VDb!f{0wAn7DP-{r~*=@uBnr zaf$eowfLKPKaM5}i3f@PL@u4D5xTN)6_)sO{BsM>5r-|`8mrOfFP7hd&B^c8`qw3q zgg31+0yBsfL?+RV&~=sgmZ+}GZPy~wMMML_M_=u*4x#HL@jNkwNTyELzle)OGxF{~ zNW4k3C36II4JMBIQ~a+NyXhYCjfoWUQP|n)MLaQ$_?YNRbfQf>v5j;n5ktBQ)<9i% zVg&Jv_J1`6?-2P!TjJLBfhAryD>2YI2tgnDaI5Qw&55m+AA;*FEoNK#any?I+T{Ps zm*oi(@B1^}Phv+p&nNaTDoR*aGB|N`K*?7PJ`dWOoF7?Ikli7;$<+zb$zeX_dE3Gnt&DS0({?A z4SLz(>K@=Yb@71;j#ENuEoD|#@5&LS|* z>}U?c29)O_{rH>(Bq~!-j1BQ4)B}IOT3CkOW3UeDen(XK7_$iD$S*;j?RMykXtCnAB`FGI6{Y}W6 zoFk}}yMhrs-wBO&9IbXNR>QVfANyb^=3+8FjRSB!w!uJ;TQ3#6lOK+~aTNyQuUHYU zqXrm6rsRKL~G$96mQNvJ^+ERV@p1>2%J=#AxYkljy5?d>=W!)HE7JP!^c{pXSXea>PM>Ua(6P;5u7z){p$IEle{1vS&_ zmcNBMBZ0j9svm;Wu`)Kn#TbISQ8PY(`aYaM4e)oYqW8aCy!(DeB5#&+50=9rSQba2 zIvQu@qt3`=a~kRaFQQgrIjVk%<#(X^Ibt41P3R0p@_gqa39Ud-f;+?7s1Zh?7ZY(Z z&PR0|-q@Xa1ZtplP%9OK+JY3+Qg_AjI0!4?2-HBcto$kTs^u|(8X+=pt{-|jzz8rV=&|2e2n_hc(y(8S*VRTOAsJ5gug5bB$K z(efdQ?xBlD)oX|9s5fdLUMqjh@{>>l@u5!tRMbEgnQx(1WLu*4pTs8=Xvq(uPWLHP z!&|5shbOuD+NdpPj9Qr%sE*pA`bk5z>w}f>QM;doYWDPv~if^JC zZbEgq)BF@Q^TVhapFwqW0oCp@s@+Z0QkQS))~kW47l|6E2X((OYCygetI)wrvkJXX z4IaW+9D!;u13fs;?r*g6t*90G$nyKl!>9*-gF2Mwu^HaLj(YzSliiVKqn17&)nFcK z1(u>_u+qxcqGnuzdf;wUz5Uo8kD%&T=PBVBiCUQiRJ#<^Sx7_w@Bcw0^l2Q1VK@Ich)~P%E+(Reujw#?z>k`31E#H&6p}n!BIa5LCS=)Bu{IUiVb2t@rQ2x)rCO9xxL%fQ6_BuQ1<2^|Jx>wrs*GxERUYy8{%}-imXHZmfMT|KR}@BJ1Op=Ov379`=Z*7LiIlj z8{tM|49-{B2E$sj{s|;{w00}zqi!t026!0b@EU4B9&W0`cBlc3K<)ig=2X;-=b+BY z0xN&bTxG6D)hqE?!FDV7*zyM~e+1Rham$}at-xihg`sWTJ#L69PeqjvH49NIG#7OS zwxTAo7YCv59EnaO+TY{OxCnE}ufT_~1_wcVn~OTd1*o$y6?Fz)L@oIu)Ii@xtw;&# ztn9$5cmVa=@syQcMP5&z6O`)SsE!d-NI*60j5+R|HC z7vtKyZ&w;}%$$2shqMSIc)l~!3f{nEZoG~6;t32WLkAt)B~4(Nw6tAN--)4?ABU0T zpTpYtnz;ovfy3rG)N6hXwW2pMOz*$b*1yx)APV9scp9T{HL9aMs3kv%dhm7Bl7^7dd;Sy1~ePBLa(E~fa}s&|6md&6a?Zn)N8U6SK?>LGo6BN?y28m z?ndqTA>Ms+^;zSI=B6Eh%67$T(sE%Go?a^k`-tR+={A<)! zTtLm>3I^j1Y=Qwj+%IVohL9hC8t4#Qfa7sFR_y8a<9mlh5CtWu5pG32a2M)EVbft|x>4C&*pL?bg9wN-8KF6@D-Hx4zxS*ZSA!7zLiE8=Esggeov8D1oz zEx3%D;Z?I-U$>)3)XF5F&PXz<@sUu2PcRmLLTyP6rXwR!1Bym{36oGAb~lHk+D*VDT!tF(er$}#uqg&T z;QmWVOH})@rmu*E4#Q&9(tLn=y$;}9Jd2uH{)6sHO+TDcA)jy8o z@ig*gJA((h16zSwi4Dk#`kW6)sNo5#aMtoaqgLP=dhn)|*L#R}nS3UpYa~&Qg4eMN zp2A+lSVCtfm(aux5gM?rvec{UPqF`@WLA-Rk_aRHEcPL^-xmlSw6(-k7aiORp#2k#u#`d3ujXAzuTV;F~<(f3+s_6{&v^9}w3FT`P#8{*=24 zN|v@MB)!1y)u(;w^(~2iTBZ!f*u6JMSF*GYr!LgrqbC(haVsiShmvf9pbhfBc_LD{~$rQPCP@lm3_8*p5>y z-3Yr;y%JlTqWw-pu#aRfc3vY;qSy& zLf1^9JvW;nue$%r;AcDHaiTZTg?NI{)y+DL!%xUBBVHvg62(L$<(07}v6#>mMOiHI zcImqmN8uO5K;n6#JU8nRKa$={+(mjb)+6QhCDf=0twEv}74v7eE=sM}*Y{GTKe~C3jQ$kmai~r|;_*vE3T_*i+q9W0RNFdq} ze-OGB5-6!8QPHbFhh3xd)zb((t^m=nW-t2yP zQ5=+<7W_!*a7K>J%gN5k+O@hM&wJ-Xn8xTkMm>N*72Hwbj$0b?t~K6#&nT}aKPM~8 zn~_?Ay;NZkBRB_}+mzg_+(-iQ{t$^F8D9 x()|@Z`GvW;d0ItvP&&UmM_W4E(YL$nP#lr^W7UcS+);Q&HA*kO-nVS<{{fD1Q@;QJ diff --git a/locale/fr/LC_MESSAGES/django.po b/locale/fr/LC_MESSAGES/django.po index c100fb37f..85399e671 100644 --- a/locale/fr/LC_MESSAGES/django.po +++ b/locale/fr/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Baby Buddy\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" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -11,12 +11,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: 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 msgid "Settings" 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 #: dashboard/templates/dashboard/child.html:4 #: 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:7 -#: babybuddy/templates/babybuddy/nav-dropdown.html:359 +#: babybuddy/templates/babybuddy/nav-dropdown.html:339 msgid "Database Admin" msgstr "Base de Données" @@ -236,19 +236,19 @@ msgid "Diaper Change" msgstr "Changement de couche" #: 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 msgid "Feeding" msgstr "Allaitement" #: 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 msgid "Note" msgstr "Note" #: 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 #: core/models.py:468 core/models.py:471 #: core/templates/core/sleep_confirm_delete.html:7 @@ -259,19 +259,7 @@ msgid "Sleep" msgstr "Sommeil" #: babybuddy/templates/babybuddy/nav-dropdown.html:75 -#: babybuddy/templates/babybuddy/nav-dropdown.html:179 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 "Température" - -#: babybuddy/templates/babybuddy/nav-dropdown.html:81 -#: babybuddy/templates/babybuddy/nav-dropdown.html:301 +#: babybuddy/templates/babybuddy/nav-dropdown.html:296 #: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647 #: core/models.py:648 core/models.py:651 #: core/templates/core/timer_detail.html:59 @@ -283,44 +271,15 @@ msgstr "Température" msgid "Tummy Time" msgstr "Motricité libre" -#: babybuddy/templates/babybuddy/nav-dropdown.html:87 -#: 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 +#: babybuddy/templates/babybuddy/nav-dropdown.html:99 #: core/templates/timeline/timeline.html:4 #: core/templates/timeline/timeline.html:7 #: dashboard/templates/dashboard/child_button_group.html:9 msgid "Timeline" msgstr "Chronologie" -#: babybuddy/templates/babybuddy/nav-dropdown.html:129 -#: babybuddy/templates/babybuddy/nav-dropdown.html:137 core/models.py:188 +#: babybuddy/templates/babybuddy/nav-dropdown.html:110 +#: babybuddy/templates/babybuddy/nav-dropdown.html:118 core/models.py:188 #: core/templates/core/child_confirm_delete.html:7 #: core/templates/core/child_detail.html:7 #: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4 @@ -330,7 +289,7 @@ msgstr "Chronologie" msgid "Children" 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: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 @@ -349,7 +308,7 @@ msgstr "Enfants" msgid "Child" 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: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 @@ -358,19 +317,48 @@ msgstr "Nouvel enfant" msgid "Notes" msgstr "Notes" -#: babybuddy/templates/babybuddy/nav-dropdown.html:171 +#: babybuddy/templates/babybuddy/nav-dropdown.html:152 msgid "Measurements" msgstr "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:185 -msgid "Temperature reading" -msgstr "Lecture de la température" +#: babybuddy/templates/babybuddy/nav-dropdown.html:160 core/models.py:139 +#: 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 "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:199 -msgid "Weight entry" -msgstr "Nouvelle prise de poids" +#: babybuddy/templates/babybuddy/nav-dropdown.html:166 +#, fuzzy +#| 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/templates/core/height_confirm_delete.html:7 #: core/templates/core/height_form.html:13 @@ -387,63 +375,60 @@ msgstr "Nouvelle prise de poids" msgid "Height" msgstr "Poids" -#: babybuddy/templates/babybuddy/nav-dropdown.html:213 +#: babybuddy/templates/babybuddy/nav-dropdown.html:194 #, fuzzy #| msgid "Weight entry" msgid "Height entry" msgstr "Nouvelle prise de poids" -#: babybuddy/templates/babybuddy/nav-dropdown.html:221 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: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 "Température" -#: babybuddy/templates/babybuddy/nav-dropdown.html:227 -msgid "Head Circumference entry" -msgstr "" +#: babybuddy/templates/babybuddy/nav-dropdown.html:208 +msgid "Temperature reading" +msgstr "Lecture de la température" -#: babybuddy/templates/babybuddy/nav-dropdown.html:235 core/models.py:139 -#: 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 "" +#: 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 "Poids" -#: babybuddy/templates/babybuddy/nav-dropdown.html:241 -#, fuzzy -#| msgid "Sleep entry" -msgid "BMI entry" -msgstr "Nouveau sommeil" +#: babybuddy/templates/babybuddy/nav-dropdown.html:222 +msgid "Weight entry" +msgstr "Nouvelle prise de poids" -#: babybuddy/templates/babybuddy/nav-dropdown.html:255 +#: babybuddy/templates/babybuddy/nav-dropdown.html:236 msgid "Activities" msgstr "Activités" -#: babybuddy/templates/babybuddy/nav-dropdown.html:262 +#: babybuddy/templates/babybuddy/nav-dropdown.html:243 #: reports/graphs/diaperchange_lifetimes.py:27 msgid "Changes" msgstr "Changement de couches" -#: babybuddy/templates/babybuddy/nav-dropdown.html:268 +#: babybuddy/templates/babybuddy/nav-dropdown.html:249 msgid "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 #: core/templates/core/feeding_confirm_delete.html:7 #: core/templates/core/feeding_form.html:13 @@ -453,21 +438,33 @@ msgstr "Nouveau change" msgid "Feedings" msgstr "Allaitements" -#: babybuddy/templates/babybuddy/nav-dropdown.html:294 -msgid "Sleep entry" -msgstr "Nouveau sommeil" - -#: babybuddy/templates/babybuddy/nav-dropdown.html:307 -msgid "Tummy Time entry" -msgstr "Nouvelle période de motricité libre" +#: babybuddy/templates/babybuddy/nav-dropdown.html:270 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:322 +#: babybuddy/templates/babybuddy/nav-dropdown.html:276 #, fuzzy #| msgid "Weight entry" msgid "Pumping entry" 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_password_form.html:7 #: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556 @@ -475,23 +472,23 @@ msgstr "Nouvelle prise de poids" msgid "User" msgstr "Utilisateur" -#: babybuddy/templates/babybuddy/nav-dropdown.html:348 +#: babybuddy/templates/babybuddy/nav-dropdown.html:328 msgid "Password" msgstr "Mot de passe" -#: babybuddy/templates/babybuddy/nav-dropdown.html:352 +#: babybuddy/templates/babybuddy/nav-dropdown.html:332 msgid "Logout" msgstr "Se déconnecter" -#: babybuddy/templates/babybuddy/nav-dropdown.html:355 +#: babybuddy/templates/babybuddy/nav-dropdown.html:335 msgid "Site" msgstr "Site" -#: babybuddy/templates/babybuddy/nav-dropdown.html:356 +#: babybuddy/templates/babybuddy/nav-dropdown.html:336 msgid "API Browser" 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_form.html:13 #: babybuddy/templates/babybuddy/user_list.html:4 @@ -499,15 +496,15 @@ msgstr "Navigateur d'API" msgid "Users" msgstr "Utilisateurs" -#: babybuddy/templates/babybuddy/nav-dropdown.html:361 +#: babybuddy/templates/babybuddy/nav-dropdown.html:341 msgid "Support" msgstr "Support" -#: babybuddy/templates/babybuddy/nav-dropdown.html:363 +#: babybuddy/templates/babybuddy/nav-dropdown.html:343 msgid "Source Code" msgstr "Code source" -#: babybuddy/templates/babybuddy/nav-dropdown.html:365 +#: babybuddy/templates/babybuddy/nav-dropdown.html:345 msgid "Chat / Support" msgstr "Tchat / Support" @@ -518,6 +515,7 @@ msgstr "Tchat / Support" #: core/templates/timeline/_timeline.html:73 #: dashboard/templates/cards/feeding_day.html:43 #: dashboard/templates/cards/feeding_last_method.html:34 +#: dashboard/templates/cards/sleep_recent.html:43 #: dashboard/templates/cards/statistics.html:34 msgid "Previous" msgstr "Précédente" @@ -529,6 +527,7 @@ msgstr "Précédente" #: core/templates/timeline/_timeline.html:80 #: dashboard/templates/cards/feeding_day.html:47 #: dashboard/templates/cards/feeding_last_method.html:38 +#: dashboard/templates/cards/sleep_recent.html:47 #: dashboard/templates/cards/statistics.html:38 msgid "Next" msgstr "Suivante" @@ -1002,7 +1001,7 @@ msgstr "" #: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70 #: reports/graphs/feeding_duration.py:56 #: 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/tummytime_duration.py:51 reports/graphs/weight_change.py:28 msgid "Date" @@ -1182,7 +1181,7 @@ msgstr "" #: core/templates/core/bmi_list.html:70 #, fuzzy #| msgid "No timer entries found." -msgid "No bmi entries found." +msgid "No BMI entries found." msgstr "Aucun chronomètre trouvé." #: 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_last.html:17 #: 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_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 msgid "None" msgstr "Aucun" @@ -1628,6 +1628,22 @@ msgstr "{}, {}" msgid "0 days" 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 #, python-format msgid "%(child)s started tummy time!" @@ -1767,14 +1783,6 @@ msgstr "humide" msgid "solid" 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 #, python-format 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." #: dashboard/templates/cards/feeding_day.html:32 +#: dashboard/templates/cards/sleep_recent.html:32 #, python-format msgid "
%(since)s
" msgstr "" @@ -1817,15 +1826,6 @@ msgid_plural "%(n)s feedings ago" msgstr[0] "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 msgid "Last Sleep" msgstr "Dernier sommeil" @@ -1842,6 +1842,20 @@ msgid_plural "%(count)s naps" msgstr[0] "%(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 msgid "Statistics" msgstr "Statistiques" @@ -1894,69 +1908,69 @@ msgstr "Opérations sur l'enfant" msgid "Reports" msgstr "Rapports" -#: dashboard/templatetags/cards.py:328 +#: dashboard/templatetags/cards.py:357 msgid "Average nap duration" msgstr "Durée moyenne des siestes" -#: dashboard/templatetags/cards.py:335 +#: dashboard/templatetags/cards.py:364 msgid "Average naps per day" msgstr "Moyen de siestes par jour" -#: dashboard/templatetags/cards.py:345 +#: dashboard/templatetags/cards.py:374 msgid "Average sleep duration" msgstr "Durée moyenne du sommeil" -#: dashboard/templatetags/cards.py:352 +#: dashboard/templatetags/cards.py:381 msgid "Average awake duration" msgstr "Durée moyenne de veille" -#: dashboard/templatetags/cards.py:362 +#: dashboard/templatetags/cards.py:391 msgid "Weight change per week" msgstr "Changement de poids par semaine" -#: dashboard/templatetags/cards.py:372 +#: dashboard/templatetags/cards.py:401 #, fuzzy #| msgid "Weight change per week" msgid "Height change per week" msgstr "Changement de poids par semaine" -#: dashboard/templatetags/cards.py:382 +#: dashboard/templatetags/cards.py:411 #, fuzzy #| msgid "Weight change per week" msgid "Head circumference change per week" msgstr "Changement de poids par semaine" -#: dashboard/templatetags/cards.py:392 +#: dashboard/templatetags/cards.py:421 #, fuzzy #| msgid "Weight change per week" msgid "BMI change per week" msgstr "Changement de poids par semaine" -#: dashboard/templatetags/cards.py:410 +#: dashboard/templatetags/cards.py:439 #, fuzzy #| msgid "Feeding frequency (past 3 days)" msgid "Diaper change frequency (past 3 days)" msgstr "Fréquence d'alimentation (3 derniers jours)" -#: dashboard/templatetags/cards.py:414 +#: dashboard/templatetags/cards.py:443 #, fuzzy #| msgid "Feeding frequency (past 2 weeks)" msgid "Diaper change frequency (past 2 weeks)" msgstr "Fréquence d'alimentation (2 dernières semaines)" -#: dashboard/templatetags/cards.py:420 +#: dashboard/templatetags/cards.py:449 msgid "Diaper change frequency" msgstr "Fréquence de change" -#: dashboard/templatetags/cards.py:456 +#: dashboard/templatetags/cards.py:485 msgid "Feeding frequency (past 3 days)" msgstr "Fréquence d'alimentation (3 derniers jours)" -#: dashboard/templatetags/cards.py:460 +#: dashboard/templatetags/cards.py:489 msgid "Feeding frequency (past 2 weeks)" msgstr "Fréquence d'alimentation (2 dernières semaines)" -#: dashboard/templatetags/cards.py:466 +#: dashboard/templatetags/cards.py:495 msgid "Feeding frequency" msgstr "Fréquence des repas" @@ -2038,13 +2052,13 @@ msgstr "" msgid "Height" msgstr "Poids" -#: reports/graphs/pumping_amounts.py:57 +#: reports/graphs/pumping_amounts.py:59 #, fuzzy #| msgid "Total Feeding Amounts" msgid "Total Pumping Amount" msgstr "Durée d'Alimentation Moyenne" -#: reports/graphs/pumping_amounts.py:60 +#: reports/graphs/pumping_amounts.py:62 #, fuzzy #| msgid "Feeding Amounts" msgid "Pumping Amount" @@ -2161,3 +2175,10 @@ msgstr "Durées du temps sur le ventre (Somme)" #: reports/templates/reports/tummytime_duration.html:8 msgid "Total Tummy Time Durations" 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." diff --git a/locale/it/LC_MESSAGES/django.mo b/locale/it/LC_MESSAGES/django.mo index 8e47c5138896b668c34f792e122cf9584c3ccba7..104b4fb86ce42e17634dc46a4d6cef3546f14690 100644 GIT binary patch delta 6970 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 IA%BzqpKnOUZ2$lO diff --git a/locale/it/LC_MESSAGES/django.po b/locale/it/LC_MESSAGES/django.po index 4a211e2fa..c606ed270 100644 --- a/locale/it/LC_MESSAGES/django.po +++ b/locale/it/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Baby Buddy\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" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -11,12 +11,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: 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 msgid "Settings" 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 #: dashboard/templates/dashboard/child.html:4 #: 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:7 -#: babybuddy/templates/babybuddy/nav-dropdown.html:359 +#: babybuddy/templates/babybuddy/nav-dropdown.html:339 msgid "Database Admin" msgstr "Database Admin" @@ -236,19 +236,19 @@ msgid "Diaper Change" msgstr "Cambio Pannolino" #: 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 msgid "Feeding" msgstr "Pasto" #: 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 msgid "Note" msgstr "Note" #: 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 #: core/models.py:468 core/models.py:471 #: core/templates/core/sleep_confirm_delete.html:7 @@ -259,19 +259,7 @@ msgid "Sleep" msgstr "Riposo" #: babybuddy/templates/babybuddy/nav-dropdown.html:75 -#: babybuddy/templates/babybuddy/nav-dropdown.html:179 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:81 -#: babybuddy/templates/babybuddy/nav-dropdown.html:301 +#: babybuddy/templates/babybuddy/nav-dropdown.html:296 #: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647 #: core/models.py:648 core/models.py:651 #: core/templates/core/timer_detail.html:59 @@ -283,44 +271,15 @@ msgstr "Temperatura" msgid "Tummy Time" msgstr "Tummy Time" -#: babybuddy/templates/babybuddy/nav-dropdown.html:87 -#: 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 +#: babybuddy/templates/babybuddy/nav-dropdown.html:99 #: core/templates/timeline/timeline.html:4 #: core/templates/timeline/timeline.html:7 #: dashboard/templates/dashboard/child_button_group.html:9 msgid "Timeline" msgstr "Andamento temporale" -#: babybuddy/templates/babybuddy/nav-dropdown.html:129 -#: babybuddy/templates/babybuddy/nav-dropdown.html:137 core/models.py:188 +#: babybuddy/templates/babybuddy/nav-dropdown.html:110 +#: babybuddy/templates/babybuddy/nav-dropdown.html:118 core/models.py:188 #: core/templates/core/child_confirm_delete.html:7 #: core/templates/core/child_detail.html:7 #: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4 @@ -330,7 +289,7 @@ msgstr "Andamento temporale" msgid "Children" 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: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 @@ -349,7 +308,7 @@ msgstr "Bambino" msgid "Child" 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: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 @@ -358,19 +317,48 @@ msgstr "Figlio" msgid "Notes" msgstr "Note" -#: babybuddy/templates/babybuddy/nav-dropdown.html:171 +#: babybuddy/templates/babybuddy/nav-dropdown.html:152 msgid "Measurements" msgstr "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:185 -msgid "Temperature reading" -msgstr "Lettura temperatura" +#: babybuddy/templates/babybuddy/nav-dropdown.html:160 core/models.py:139 +#: 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 "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:199 -msgid "Weight entry" -msgstr "Pesata" +#: babybuddy/templates/babybuddy/nav-dropdown.html:166 +#, fuzzy +#| 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/templates/core/height_confirm_delete.html:7 #: core/templates/core/height_form.html:13 @@ -387,63 +375,60 @@ msgstr "Pesata" msgid "Height" msgstr "Peso" -#: babybuddy/templates/babybuddy/nav-dropdown.html:213 +#: babybuddy/templates/babybuddy/nav-dropdown.html:194 #, fuzzy #| msgid "Weight entry" msgid "Height entry" msgstr "Pesata" -#: babybuddy/templates/babybuddy/nav-dropdown.html:221 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: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:227 -msgid "Head Circumference entry" -msgstr "" +#: babybuddy/templates/babybuddy/nav-dropdown.html:208 +msgid "Temperature reading" +msgstr "Lettura temperatura" -#: babybuddy/templates/babybuddy/nav-dropdown.html:235 core/models.py:139 -#: 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 "" +#: 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:241 -#, fuzzy -#| msgid "Sleep entry" -msgid "BMI entry" -msgstr "Aggiungi Riposo" +#: babybuddy/templates/babybuddy/nav-dropdown.html:222 +msgid "Weight entry" +msgstr "Pesata" -#: babybuddy/templates/babybuddy/nav-dropdown.html:255 +#: babybuddy/templates/babybuddy/nav-dropdown.html:236 msgid "Activities" msgstr "Azioni" -#: babybuddy/templates/babybuddy/nav-dropdown.html:262 +#: babybuddy/templates/babybuddy/nav-dropdown.html:243 #: reports/graphs/diaperchange_lifetimes.py:27 msgid "Changes" msgstr "Cambi" -#: babybuddy/templates/babybuddy/nav-dropdown.html:268 +#: babybuddy/templates/babybuddy/nav-dropdown.html:249 msgid "Change" 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 #: core/templates/core/feeding_confirm_delete.html:7 #: core/templates/core/feeding_form.html:13 @@ -453,21 +438,33 @@ msgstr "Cambio" msgid "Feedings" msgstr "Pasti" -#: babybuddy/templates/babybuddy/nav-dropdown.html:294 -msgid "Sleep entry" -msgstr "Aggiungi Riposo" - -#: babybuddy/templates/babybuddy/nav-dropdown.html:307 -msgid "Tummy Time entry" -msgstr "Aggiungi Tummy Time" +#: babybuddy/templates/babybuddy/nav-dropdown.html:270 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:322 +#: babybuddy/templates/babybuddy/nav-dropdown.html:276 #, fuzzy #| msgid "Weight entry" msgid "Pumping entry" 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_password_form.html:7 #: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556 @@ -475,23 +472,23 @@ msgstr "Pesata" msgid "User" msgstr "Utente" -#: babybuddy/templates/babybuddy/nav-dropdown.html:348 +#: babybuddy/templates/babybuddy/nav-dropdown.html:328 msgid "Password" msgstr "Password" -#: babybuddy/templates/babybuddy/nav-dropdown.html:352 +#: babybuddy/templates/babybuddy/nav-dropdown.html:332 msgid "Logout" msgstr "Logout" -#: babybuddy/templates/babybuddy/nav-dropdown.html:355 +#: babybuddy/templates/babybuddy/nav-dropdown.html:335 msgid "Site" msgstr "Sito" -#: babybuddy/templates/babybuddy/nav-dropdown.html:356 +#: babybuddy/templates/babybuddy/nav-dropdown.html:336 msgid "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_form.html:13 #: babybuddy/templates/babybuddy/user_list.html:4 @@ -499,15 +496,15 @@ msgstr "API Browser" msgid "Users" msgstr "Utenti" -#: babybuddy/templates/babybuddy/nav-dropdown.html:361 +#: babybuddy/templates/babybuddy/nav-dropdown.html:341 msgid "Support" msgstr "Supporto" -#: babybuddy/templates/babybuddy/nav-dropdown.html:363 +#: babybuddy/templates/babybuddy/nav-dropdown.html:343 msgid "Source Code" msgstr "Codice Sorgente" -#: babybuddy/templates/babybuddy/nav-dropdown.html:365 +#: babybuddy/templates/babybuddy/nav-dropdown.html:345 msgid "Chat / Support" msgstr "Chat / Supporto" @@ -518,6 +515,7 @@ msgstr "Chat / Supporto" #: core/templates/timeline/_timeline.html:73 #: dashboard/templates/cards/feeding_day.html:43 #: dashboard/templates/cards/feeding_last_method.html:34 +#: dashboard/templates/cards/sleep_recent.html:43 #: dashboard/templates/cards/statistics.html:34 msgid "Previous" msgstr "Precedente" @@ -529,6 +527,7 @@ msgstr "Precedente" #: core/templates/timeline/_timeline.html:80 #: dashboard/templates/cards/feeding_day.html:47 #: dashboard/templates/cards/feeding_last_method.html:38 +#: dashboard/templates/cards/sleep_recent.html:47 #: dashboard/templates/cards/statistics.html:38 msgid "Next" msgstr "Successivo" @@ -996,7 +995,7 @@ msgstr "" #: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70 #: reports/graphs/feeding_duration.py:56 #: 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/tummytime_duration.py:51 reports/graphs/weight_change.py:28 msgid "Date" @@ -1176,7 +1175,7 @@ msgstr "" #: core/templates/core/bmi_list.html:70 #, fuzzy #| msgid "No timer entries found." -msgid "No bmi entries found." +msgid "No BMI entries found." msgstr "Nessuna voce timer trovata." #: 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_last.html:17 #: 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_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 msgid "None" msgstr "Nessuno" @@ -1621,6 +1621,22 @@ msgstr "{}, {}" msgid "0 days" 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 #, python-format msgid "%(child)s started tummy time!" @@ -1760,14 +1776,6 @@ msgstr "liquida" msgid "solid" 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 #, python-format msgid "%(key)s days ago" @@ -1786,6 +1794,7 @@ 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 "
%(since)s
" msgstr "" @@ -1810,15 +1819,6 @@ msgid_plural "%(n)s feedings ago" msgstr[0] "%(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 msgid "Last Sleep" msgstr "Ultimo Riposo" @@ -1835,6 +1835,20 @@ msgid_plural "%(count)s naps" msgstr[0] "%(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 msgid "Statistics" msgstr "Statistiche" @@ -1887,69 +1901,69 @@ msgstr "Azioni Bimbo" msgid "Reports" msgstr "Report" -#: dashboard/templatetags/cards.py:328 +#: dashboard/templatetags/cards.py:357 msgid "Average nap duration" msgstr "Durata media riposini" -#: dashboard/templatetags/cards.py:335 +#: dashboard/templatetags/cards.py:364 msgid "Average naps per day" msgstr "Media riposini al giorno" -#: dashboard/templatetags/cards.py:345 +#: dashboard/templatetags/cards.py:374 msgid "Average sleep duration" msgstr "Durata media riposi" -#: dashboard/templatetags/cards.py:352 +#: dashboard/templatetags/cards.py:381 msgid "Average awake duration" msgstr "Durata media bimbo sveglio" -#: dashboard/templatetags/cards.py:362 +#: dashboard/templatetags/cards.py:391 msgid "Weight change per week" msgstr "Cambiamento di peso settimanale" -#: dashboard/templatetags/cards.py:372 +#: dashboard/templatetags/cards.py:401 #, fuzzy #| msgid "Weight change per week" msgid "Height change per week" msgstr "Cambiamento di peso settimanale" -#: dashboard/templatetags/cards.py:382 +#: dashboard/templatetags/cards.py:411 #, fuzzy #| msgid "Weight change per week" msgid "Head circumference change per week" msgstr "Cambiamento di peso settimanale" -#: dashboard/templatetags/cards.py:392 +#: dashboard/templatetags/cards.py:421 #, fuzzy #| msgid "Weight change per week" msgid "BMI change per week" msgstr "Cambiamento di peso settimanale" -#: dashboard/templatetags/cards.py:410 +#: dashboard/templatetags/cards.py:439 #, fuzzy #| msgid "Feeding frequency (past 3 days)" msgid "Diaper change frequency (past 3 days)" msgstr "Frequenza pasti (ultimi 3 giorni)" -#: dashboard/templatetags/cards.py:414 +#: dashboard/templatetags/cards.py:443 #, fuzzy #| msgid "Feeding frequency (past 2 weeks)" msgid "Diaper change frequency (past 2 weeks)" msgstr "Frequenza pasti (ultime 2 settimane)" -#: dashboard/templatetags/cards.py:420 +#: dashboard/templatetags/cards.py:449 msgid "Diaper change frequency" msgstr "Frequenza cambio pannolino" -#: dashboard/templatetags/cards.py:456 +#: dashboard/templatetags/cards.py:485 msgid "Feeding frequency (past 3 days)" msgstr "Frequenza pasti (ultimi 3 giorni)" -#: dashboard/templatetags/cards.py:460 +#: dashboard/templatetags/cards.py:489 msgid "Feeding frequency (past 2 weeks)" msgstr "Frequenza pasti (ultime 2 settimane)" -#: dashboard/templatetags/cards.py:466 +#: dashboard/templatetags/cards.py:495 msgid "Feeding frequency" msgstr "Frequenza pasti" @@ -2031,13 +2045,13 @@ msgstr "" msgid "Height" msgstr "Peso" -#: reports/graphs/pumping_amounts.py:57 +#: reports/graphs/pumping_amounts.py:59 #, fuzzy #| msgid "Total Feeding Amounts" msgid "Total Pumping Amount" msgstr "Totale quantità di cibo" -#: reports/graphs/pumping_amounts.py:60 +#: reports/graphs/pumping_amounts.py:62 #, fuzzy #| msgid "Feeding Amounts" msgid "Pumping Amount" @@ -2154,3 +2168,10 @@ msgstr "Durata totale Tummy Time" #: reports/templates/reports/tummytime_duration.html:8 msgid "Total Tummy Time Durations" msgstr "Durata totale Tummy Time" + +#~ msgid "Today's Sleep" +#~ msgstr "Riposi di Oggi" + +#, python-format +#~ msgid "%(count)s sleep entries" +#~ msgstr "%(count)s Riposi" diff --git a/locale/nl/LC_MESSAGES/django.mo b/locale/nl/LC_MESSAGES/django.mo index 71776eda3b279373c352e26bb0b305f3f7ea429f..8384fd93f57faf8c42749c0cd61759e7cf375516 100644 GIT binary patch delta 7103 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 delta 7564 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 XQ|$3}@x^vJ9l@%YhOZ*$Le>8Q(+gAR diff --git a/locale/nl/LC_MESSAGES/django.po b/locale/nl/LC_MESSAGES/django.po index ada0a7f75..2941bcc9d 100644 --- a/locale/nl/LC_MESSAGES/django.po +++ b/locale/nl/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Baby Buddy\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" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -11,12 +11,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: 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 msgid "Settings" 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 #: dashboard/templates/dashboard/child.html:4 #: 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:7 -#: babybuddy/templates/babybuddy/nav-dropdown.html:359 +#: babybuddy/templates/babybuddy/nav-dropdown.html:339 msgid "Database Admin" msgstr "Database admin" @@ -234,19 +234,19 @@ msgid "Diaper Change" msgstr "Luierverschoning" #: 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 msgid "Feeding" msgstr "Voeding" #: 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 msgid "Note" msgstr "Notitie" #: 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 #: core/models.py:468 core/models.py:471 #: core/templates/core/sleep_confirm_delete.html:7 @@ -257,19 +257,7 @@ msgid "Sleep" msgstr "Slaap" #: babybuddy/templates/babybuddy/nav-dropdown.html:75 -#: babybuddy/templates/babybuddy/nav-dropdown.html:179 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:81 -#: babybuddy/templates/babybuddy/nav-dropdown.html:301 +#: babybuddy/templates/babybuddy/nav-dropdown.html:296 #: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647 #: core/models.py:648 core/models.py:651 #: core/templates/core/timer_detail.html:59 @@ -281,44 +269,15 @@ msgstr "Temperatuur" msgid "Tummy Time" msgstr "Buikliggen" -#: babybuddy/templates/babybuddy/nav-dropdown.html:87 -#: 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 +#: babybuddy/templates/babybuddy/nav-dropdown.html:99 #: core/templates/timeline/timeline.html:4 #: core/templates/timeline/timeline.html:7 #: dashboard/templates/dashboard/child_button_group.html:9 msgid "Timeline" msgstr "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:129 -#: babybuddy/templates/babybuddy/nav-dropdown.html:137 core/models.py:188 +#: babybuddy/templates/babybuddy/nav-dropdown.html:110 +#: babybuddy/templates/babybuddy/nav-dropdown.html:118 core/models.py:188 #: core/templates/core/child_confirm_delete.html:7 #: core/templates/core/child_detail.html:7 #: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4 @@ -328,7 +287,7 @@ msgstr "" msgid "Children" 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: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 @@ -347,7 +306,7 @@ msgstr "Kinderen" msgid "Child" 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: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 @@ -356,19 +315,46 @@ msgstr "Kind" msgid "Notes" msgstr "Notities" -#: babybuddy/templates/babybuddy/nav-dropdown.html:171 +#: babybuddy/templates/babybuddy/nav-dropdown.html:152 msgid "Measurements" msgstr "Metingen" -#: babybuddy/templates/babybuddy/nav-dropdown.html:185 -msgid "Temperature reading" -msgstr "Temperatuur meting" +#: babybuddy/templates/babybuddy/nav-dropdown.html:160 core/models.py:139 +#: 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 "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:199 -msgid "Weight entry" -msgstr "Gewicht ingave" +#: babybuddy/templates/babybuddy/nav-dropdown.html:166 +msgid "BMI entry" +msgstr "MBI ingave" + +#: 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 "Hoofd omtrek" + +#: babybuddy/templates/babybuddy/nav-dropdown.html:180 +msgid "Head Circumference entry" +msgstr "Hoofd omtrek ingave" -#: babybuddy/templates/babybuddy/nav-dropdown.html:207 core/models.py:369 +#: babybuddy/templates/babybuddy/nav-dropdown.html:188 core/models.py:369 #: 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 @@ -383,59 +369,58 @@ msgstr "Gewicht ingave" msgid "Height" msgstr "Lengte" -#: babybuddy/templates/babybuddy/nav-dropdown.html:213 +#: babybuddy/templates/babybuddy/nav-dropdown.html:194 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/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 "Hoofd omtrek" +#: 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:227 -msgid "Head Circumference entry" -msgstr "Hoofd omtrek ingave" +#: babybuddy/templates/babybuddy/nav-dropdown.html:208 +msgid "Temperature reading" +msgstr "Temperatuur meting" -#: babybuddy/templates/babybuddy/nav-dropdown.html:235 core/models.py:139 -#: 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 "" +#: 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:241 -msgid "BMI entry" -msgstr "MBI ingave" +#: babybuddy/templates/babybuddy/nav-dropdown.html:222 +msgid "Weight entry" +msgstr "Gewicht ingave" -#: babybuddy/templates/babybuddy/nav-dropdown.html:255 +#: babybuddy/templates/babybuddy/nav-dropdown.html:236 msgid "Activities" msgstr "Activiteiten" -#: babybuddy/templates/babybuddy/nav-dropdown.html:262 +#: babybuddy/templates/babybuddy/nav-dropdown.html:243 #: reports/graphs/diaperchange_lifetimes.py:27 msgid "Changes" msgstr "Verschoningen" -#: babybuddy/templates/babybuddy/nav-dropdown.html:268 +#: babybuddy/templates/babybuddy/nav-dropdown.html:249 msgid "Change" 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 #: core/templates/core/feeding_confirm_delete.html:7 #: core/templates/core/feeding_form.html:13 @@ -445,21 +430,33 @@ msgstr "Verschoning" msgid "Feedings" msgstr "Voedingen" -#: babybuddy/templates/babybuddy/nav-dropdown.html:294 -msgid "Sleep entry" -msgstr "Slaap ingave" - -#: babybuddy/templates/babybuddy/nav-dropdown.html:307 -msgid "Tummy Time entry" -msgstr "Buikliggen ingave" +#: babybuddy/templates/babybuddy/nav-dropdown.html:270 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:322 +#: babybuddy/templates/babybuddy/nav-dropdown.html:276 #, fuzzy #| msgid "Weight entry" msgid "Pumping entry" 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_password_form.html:7 #: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556 @@ -467,23 +464,23 @@ msgstr "Gewicht ingave" msgid "User" msgstr "Gebruiker" -#: babybuddy/templates/babybuddy/nav-dropdown.html:348 +#: babybuddy/templates/babybuddy/nav-dropdown.html:328 msgid "Password" msgstr "Wachtwoord" -#: babybuddy/templates/babybuddy/nav-dropdown.html:352 +#: babybuddy/templates/babybuddy/nav-dropdown.html:332 msgid "Logout" msgstr "Uitloggen" -#: babybuddy/templates/babybuddy/nav-dropdown.html:355 +#: babybuddy/templates/babybuddy/nav-dropdown.html:335 msgid "Site" msgstr "Site" -#: babybuddy/templates/babybuddy/nav-dropdown.html:356 +#: babybuddy/templates/babybuddy/nav-dropdown.html:336 msgid "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_form.html:13 #: babybuddy/templates/babybuddy/user_list.html:4 @@ -491,15 +488,15 @@ msgstr "API browser" msgid "Users" msgstr "Gebruikers" -#: babybuddy/templates/babybuddy/nav-dropdown.html:361 +#: babybuddy/templates/babybuddy/nav-dropdown.html:341 msgid "Support" msgstr "Ondersteuning" -#: babybuddy/templates/babybuddy/nav-dropdown.html:363 +#: babybuddy/templates/babybuddy/nav-dropdown.html:343 msgid "Source Code" msgstr "Broncode" -#: babybuddy/templates/babybuddy/nav-dropdown.html:365 +#: babybuddy/templates/babybuddy/nav-dropdown.html:345 msgid "Chat / Support" msgstr "Chat / Hulp" @@ -510,6 +507,7 @@ msgstr "Chat / Hulp" #: core/templates/timeline/_timeline.html:73 #: dashboard/templates/cards/feeding_day.html:43 #: dashboard/templates/cards/feeding_last_method.html:34 +#: dashboard/templates/cards/sleep_recent.html:43 #: dashboard/templates/cards/statistics.html:34 msgid "Previous" msgstr "Vorige" @@ -521,6 +519,7 @@ msgstr "Vorige" #: core/templates/timeline/_timeline.html:80 #: dashboard/templates/cards/feeding_day.html:47 #: dashboard/templates/cards/feeding_last_method.html:38 +#: dashboard/templates/cards/sleep_recent.html:47 #: dashboard/templates/cards/statistics.html:38 msgid "Next" msgstr "Volgende" @@ -994,7 +993,7 @@ msgstr "" #: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70 #: reports/graphs/feeding_duration.py:56 #: 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/tummytime_duration.py:51 reports/graphs/weight_change.py:28 msgid "Date" @@ -1174,7 +1173,7 @@ msgstr "" #: core/templates/core/bmi_list.html:70 #, fuzzy #| msgid "No timer entries found." -msgid "No bmi entries found." +msgid "No BMI entries found." msgstr "Geen timer gegevens gevonden." #: 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_last.html:17 #: 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_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 msgid "None" msgstr "Geen" @@ -1621,6 +1621,22 @@ msgstr "" msgid "0 days" 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 #, python-format msgid "%(child)s started tummy time!" @@ -1760,14 +1776,6 @@ msgstr "nat" msgid "solid" 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 #, python-format msgid "%(key)s days ago" @@ -1786,6 +1794,7 @@ msgstr[0] "%(count)s slaap gegevens" msgstr[1] "%(count)s slaap gegevens" #: dashboard/templates/cards/feeding_day.html:32 +#: dashboard/templates/cards/sleep_recent.html:32 #, python-format msgid "
%(since)s
" msgstr "" @@ -1810,15 +1819,6 @@ msgid_plural "%(n)s feedings ago" msgstr[0] "%(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 msgid "Last Sleep" msgstr "Laatste slaap" @@ -1835,6 +1835,20 @@ msgid_plural "%(count)s naps" msgstr[0] "%(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 msgid "Statistics" msgstr "Statistieken" @@ -1887,69 +1901,69 @@ msgstr "Kind acties" msgid "Reports" msgstr "Rapporten" -#: dashboard/templatetags/cards.py:328 +#: dashboard/templatetags/cards.py:357 msgid "Average nap duration" msgstr "Gemiddelde duur dutjes" -#: dashboard/templatetags/cards.py:335 +#: dashboard/templatetags/cards.py:364 msgid "Average naps per day" msgstr "Gemiddelde dutjes per dag" -#: dashboard/templatetags/cards.py:345 +#: dashboard/templatetags/cards.py:374 msgid "Average sleep duration" msgstr "Gemiddelde slaap duur" -#: dashboard/templatetags/cards.py:352 +#: dashboard/templatetags/cards.py:381 msgid "Average awake duration" msgstr "Gemiddeld wakker duur" -#: dashboard/templatetags/cards.py:362 +#: dashboard/templatetags/cards.py:391 msgid "Weight change per week" msgstr "Gewichtsverandering per week" -#: dashboard/templatetags/cards.py:372 +#: dashboard/templatetags/cards.py:401 #, fuzzy #| msgid "Weight change per week" msgid "Height change per week" msgstr "Gewichtsverandering per week" -#: dashboard/templatetags/cards.py:382 +#: dashboard/templatetags/cards.py:411 #, fuzzy #| msgid "Head Circumference entry" msgid "Head circumference change per week" msgstr "Hoofd omtrek ingave" -#: dashboard/templatetags/cards.py:392 +#: dashboard/templatetags/cards.py:421 #, fuzzy #| msgid "Weight change per week" msgid "BMI change per week" msgstr "Gewichtsverandering per week" -#: dashboard/templatetags/cards.py:410 +#: dashboard/templatetags/cards.py:439 #, fuzzy #| msgid "Feeding frequency (past 3 days)" msgid "Diaper change frequency (past 3 days)" msgstr "Voeding frequenties (afgelopen 3 dagen)" -#: dashboard/templatetags/cards.py:414 +#: dashboard/templatetags/cards.py:443 #, fuzzy #| msgid "Feeding frequency (past 2 weeks)" msgid "Diaper change frequency (past 2 weeks)" msgstr "Voeding frequenties (afgelopen 2 weken)" -#: dashboard/templatetags/cards.py:420 +#: dashboard/templatetags/cards.py:449 msgid "Diaper change frequency" msgstr "Luierverschoning frequentie" -#: dashboard/templatetags/cards.py:456 +#: dashboard/templatetags/cards.py:485 msgid "Feeding frequency (past 3 days)" msgstr "Voeding frequenties (afgelopen 3 dagen)" -#: dashboard/templatetags/cards.py:460 +#: dashboard/templatetags/cards.py:489 msgid "Feeding frequency (past 2 weeks)" msgstr "Voeding frequenties (afgelopen 2 weken)" -#: dashboard/templatetags/cards.py:466 +#: dashboard/templatetags/cards.py:495 msgid "Feeding frequency" msgstr "Eten geven frequentie" @@ -2033,13 +2047,13 @@ msgstr "Hoofd omtrek" msgid "Height" msgstr "Gewichts" -#: reports/graphs/pumping_amounts.py:57 +#: reports/graphs/pumping_amounts.py:59 #, fuzzy #| msgid "Total Feeding Amounts" msgid "Total Pumping Amount" msgstr "Totaal hoeveelheid voeding" -#: reports/graphs/pumping_amounts.py:60 +#: reports/graphs/pumping_amounts.py:62 #, fuzzy #| msgid "Feeding Amounts" msgid "Pumping Amount" @@ -2156,3 +2170,10 @@ msgstr "Duur Buikliggen (Som)" #: reports/templates/reports/tummytime_duration.html:8 msgid "Total Tummy Time Durations" msgstr "Totaal Buikligggen Duur" + +#~ msgid "Today's Sleep" +#~ msgstr "Slaap vandaag" + +#, python-format +#~ msgid "%(count)s sleep entries" +#~ msgstr "%(count)s slaap gegevens" diff --git a/locale/pl/LC_MESSAGES/django.mo b/locale/pl/LC_MESSAGES/django.mo index 88c7e19931d30489d9dc06df3b4f3df8a422f9fb..8607e7c84d62a8b31e401a8c7a0870cf667d2d39 100644 GIT binary patch delta 6194 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 delta 6616 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 ? 1 : 2);\n" #: 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 msgid "Settings" 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 #: dashboard/templates/dashboard/child.html:4 #: 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:7 -#: babybuddy/templates/babybuddy/nav-dropdown.html:359 +#: babybuddy/templates/babybuddy/nav-dropdown.html:339 msgid "Database Admin" msgstr "Administrator bazy danych" @@ -233,19 +233,19 @@ msgid "Diaper Change" msgstr "Zmiana pieluchy" #: 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 msgid "Feeding" msgstr "Karmienie" #: 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 msgid "Note" msgstr "Notatka" #: 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 #: core/models.py:468 core/models.py:471 #: core/templates/core/sleep_confirm_delete.html:7 @@ -256,19 +256,7 @@ msgid "Sleep" msgstr "Spać" #: babybuddy/templates/babybuddy/nav-dropdown.html:75 -#: babybuddy/templates/babybuddy/nav-dropdown.html:179 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:81 -#: babybuddy/templates/babybuddy/nav-dropdown.html:301 +#: babybuddy/templates/babybuddy/nav-dropdown.html:296 #: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647 #: core/models.py:648 core/models.py:651 #: core/templates/core/timer_detail.html:59 @@ -280,44 +268,15 @@ msgstr "Temperatura" msgid "Tummy Time" msgstr "Czas drzemki" -#: babybuddy/templates/babybuddy/nav-dropdown.html:87 -#: 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 +#: babybuddy/templates/babybuddy/nav-dropdown.html:99 #: core/templates/timeline/timeline.html:4 #: core/templates/timeline/timeline.html:7 #: dashboard/templates/dashboard/child_button_group.html:9 msgid "Timeline" msgstr "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:129 -#: babybuddy/templates/babybuddy/nav-dropdown.html:137 core/models.py:188 +#: babybuddy/templates/babybuddy/nav-dropdown.html:110 +#: babybuddy/templates/babybuddy/nav-dropdown.html:118 core/models.py:188 #: core/templates/core/child_confirm_delete.html:7 #: core/templates/core/child_detail.html:7 #: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4 @@ -327,7 +286,7 @@ msgstr "" msgid "Children" 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: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 @@ -346,7 +305,7 @@ msgstr "Dzieci" msgid "Child" 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: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 @@ -355,19 +314,48 @@ msgstr "Dziecko" msgid "Notes" msgstr "Notatki" -#: babybuddy/templates/babybuddy/nav-dropdown.html:171 +#: babybuddy/templates/babybuddy/nav-dropdown.html:152 msgid "Measurements" msgstr "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:185 -msgid "Temperature reading" -msgstr "Odczyt temperatury" +#: babybuddy/templates/babybuddy/nav-dropdown.html:160 core/models.py:139 +#: 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 "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:199 -msgid "Weight entry" -msgstr "Wpis wagi" +#: babybuddy/templates/babybuddy/nav-dropdown.html:166 +#, fuzzy +#| 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/templates/core/height_confirm_delete.html:7 #: core/templates/core/height_form.html:13 @@ -384,63 +372,60 @@ msgstr "Wpis wagi" msgid "Height" msgstr "Waga" -#: babybuddy/templates/babybuddy/nav-dropdown.html:213 +#: babybuddy/templates/babybuddy/nav-dropdown.html:194 #, fuzzy #| msgid "Weight entry" msgid "Height entry" msgstr "Wpis wagi" -#: babybuddy/templates/babybuddy/nav-dropdown.html:221 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: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:227 -msgid "Head Circumference entry" -msgstr "" +#: babybuddy/templates/babybuddy/nav-dropdown.html:208 +msgid "Temperature reading" +msgstr "Odczyt temperatury" -#: babybuddy/templates/babybuddy/nav-dropdown.html:235 core/models.py:139 -#: 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 "" +#: 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 "Waga" -#: babybuddy/templates/babybuddy/nav-dropdown.html:241 -#, fuzzy -#| msgid "Sleep entry" -msgid "BMI entry" -msgstr "Czas spania" +#: babybuddy/templates/babybuddy/nav-dropdown.html:222 +msgid "Weight entry" +msgstr "Wpis wagi" -#: babybuddy/templates/babybuddy/nav-dropdown.html:255 +#: babybuddy/templates/babybuddy/nav-dropdown.html:236 msgid "Activities" msgstr "Aktywności" -#: babybuddy/templates/babybuddy/nav-dropdown.html:262 +#: babybuddy/templates/babybuddy/nav-dropdown.html:243 #: reports/graphs/diaperchange_lifetimes.py:27 msgid "Changes" msgstr "Zmiany" -#: babybuddy/templates/babybuddy/nav-dropdown.html:268 +#: babybuddy/templates/babybuddy/nav-dropdown.html:249 msgid "Change" 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 #: core/templates/core/feeding_confirm_delete.html:7 #: core/templates/core/feeding_form.html:13 @@ -450,21 +435,33 @@ msgstr "Zmiana" msgid "Feedings" msgstr "Karmienia" -#: babybuddy/templates/babybuddy/nav-dropdown.html:294 -msgid "Sleep entry" -msgstr "Czas spania" - -#: babybuddy/templates/babybuddy/nav-dropdown.html:307 -msgid "Tummy Time entry" -msgstr "Czas drzemki" +#: babybuddy/templates/babybuddy/nav-dropdown.html:270 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:322 +#: babybuddy/templates/babybuddy/nav-dropdown.html:276 #, fuzzy #| msgid "Weight entry" msgid "Pumping entry" 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_password_form.html:7 #: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556 @@ -472,23 +469,23 @@ msgstr "Wpis wagi" msgid "User" msgstr "Użytkownik" -#: babybuddy/templates/babybuddy/nav-dropdown.html:348 +#: babybuddy/templates/babybuddy/nav-dropdown.html:328 msgid "Password" msgstr "Hasło" -#: babybuddy/templates/babybuddy/nav-dropdown.html:352 +#: babybuddy/templates/babybuddy/nav-dropdown.html:332 msgid "Logout" msgstr "Wyloguj" -#: babybuddy/templates/babybuddy/nav-dropdown.html:355 +#: babybuddy/templates/babybuddy/nav-dropdown.html:335 msgid "Site" msgstr "Strona" -#: babybuddy/templates/babybuddy/nav-dropdown.html:356 +#: babybuddy/templates/babybuddy/nav-dropdown.html:336 msgid "API Browser" 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_form.html:13 #: babybuddy/templates/babybuddy/user_list.html:4 @@ -496,15 +493,15 @@ msgstr "Przeglądarka API" msgid "Users" msgstr "Użytkownicy" -#: babybuddy/templates/babybuddy/nav-dropdown.html:361 +#: babybuddy/templates/babybuddy/nav-dropdown.html:341 msgid "Support" msgstr "Wsparcie" -#: babybuddy/templates/babybuddy/nav-dropdown.html:363 +#: babybuddy/templates/babybuddy/nav-dropdown.html:343 msgid "Source Code" msgstr "Kod źródłowy" -#: babybuddy/templates/babybuddy/nav-dropdown.html:365 +#: babybuddy/templates/babybuddy/nav-dropdown.html:345 msgid "Chat / Support" msgstr "Czat / Wsparcie" @@ -515,6 +512,7 @@ msgstr "Czat / Wsparcie" #: core/templates/timeline/_timeline.html:73 #: dashboard/templates/cards/feeding_day.html:43 #: dashboard/templates/cards/feeding_last_method.html:34 +#: dashboard/templates/cards/sleep_recent.html:43 #: dashboard/templates/cards/statistics.html:34 msgid "Previous" msgstr "Poprzedni" @@ -526,6 +524,7 @@ msgstr "Poprzedni" #: core/templates/timeline/_timeline.html:80 #: dashboard/templates/cards/feeding_day.html:47 #: dashboard/templates/cards/feeding_last_method.html:38 +#: dashboard/templates/cards/sleep_recent.html:47 #: dashboard/templates/cards/statistics.html:38 msgid "Next" msgstr "Następny" @@ -991,7 +990,7 @@ msgstr "" #: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70 #: reports/graphs/feeding_duration.py:56 #: 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/tummytime_duration.py:51 reports/graphs/weight_change.py:28 msgid "Date" @@ -1171,7 +1170,7 @@ msgstr "" #: core/templates/core/bmi_list.html:70 #, fuzzy #| msgid "No timer entries found." -msgid "No bmi entries found." +msgid "No BMI entries found." msgstr "Brak wpisów stopera" #: 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_last.html:17 #: 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_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 msgid "None" msgstr "Brak" @@ -1615,6 +1615,22 @@ msgstr "" msgid "0 days" 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 #, python-format msgid "%(child)s started tummy time!" @@ -1760,14 +1776,6 @@ msgstr "mokry" msgid "solid" 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 #, python-format msgid "%(key)s days ago" @@ -1787,6 +1795,7 @@ msgstr[1] "%(count)s pójść spać" msgstr[2] "%(count)s pójść spać" #: dashboard/templates/cards/feeding_day.html:32 +#: dashboard/templates/cards/sleep_recent.html:32 #, python-format msgid "
%(since)s
" msgstr "" @@ -1812,15 +1821,6 @@ msgstr[0] "%(n)s karmień%(plural)s temu" msgstr[1] "%(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 msgid "Last Sleep" msgstr "Ostatni sen" @@ -1838,6 +1838,21 @@ msgstr[0] "%(count)s nap%(plural)s" msgstr[1] "%(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 msgid "Statistics" msgstr "Statystyki" @@ -1891,69 +1906,69 @@ msgstr "Akcje dzieci" msgid "Reports" msgstr "Zgłoszeń" -#: dashboard/templatetags/cards.py:328 +#: dashboard/templatetags/cards.py:357 msgid "Average nap duration" msgstr "Średni czas drzemi" -#: dashboard/templatetags/cards.py:335 +#: dashboard/templatetags/cards.py:364 msgid "Average naps per day" msgstr "Średnie drzemki na dzień" -#: dashboard/templatetags/cards.py:345 +#: dashboard/templatetags/cards.py:374 msgid "Average sleep duration" msgstr "Średni czas spania" -#: dashboard/templatetags/cards.py:352 +#: dashboard/templatetags/cards.py:381 msgid "Average awake duration" msgstr "Średni czas wstawania" -#: dashboard/templatetags/cards.py:362 +#: dashboard/templatetags/cards.py:391 msgid "Weight change per week" msgstr "Zmiana wagi w ciągu tygodnia" -#: dashboard/templatetags/cards.py:372 +#: dashboard/templatetags/cards.py:401 #, fuzzy #| msgid "Weight change per week" msgid "Height change per week" msgstr "Zmiana wagi w ciągu tygodnia" -#: dashboard/templatetags/cards.py:382 +#: dashboard/templatetags/cards.py:411 #, fuzzy #| msgid "Weight change per week" msgid "Head circumference change per week" msgstr "Zmiana wagi w ciągu tygodnia" -#: dashboard/templatetags/cards.py:392 +#: dashboard/templatetags/cards.py:421 #, fuzzy #| msgid "Weight change per week" msgid "BMI change per week" msgstr "Zmiana wagi w ciągu tygodnia" -#: dashboard/templatetags/cards.py:410 +#: dashboard/templatetags/cards.py:439 #, fuzzy #| msgid "Diaper change frequency" msgid "Diaper change frequency (past 3 days)" msgstr "Częstotliwość zmiany pieluchy" -#: dashboard/templatetags/cards.py:414 +#: dashboard/templatetags/cards.py:443 #, fuzzy #| msgid "Diaper change frequency" msgid "Diaper change frequency (past 2 weeks)" msgstr "Częstotliwość zmiany pieluchy" -#: dashboard/templatetags/cards.py:420 +#: dashboard/templatetags/cards.py:449 msgid "Diaper change frequency" msgstr "Częstotliwość zmiany pieluchy" -#: dashboard/templatetags/cards.py:456 +#: dashboard/templatetags/cards.py:485 msgid "Feeding frequency (past 3 days)" msgstr "" -#: dashboard/templatetags/cards.py:460 +#: dashboard/templatetags/cards.py:489 msgid "Feeding frequency (past 2 weeks)" msgstr "" -#: dashboard/templatetags/cards.py:466 +#: dashboard/templatetags/cards.py:495 msgid "Feeding frequency" msgstr "Częstotliwość karmienia" @@ -2035,13 +2050,13 @@ msgstr "" msgid "Height" msgstr "Waga" -#: reports/graphs/pumping_amounts.py:57 +#: reports/graphs/pumping_amounts.py:59 #, fuzzy #| msgid "Total Feeding Amounts" msgid "Total Pumping Amount" msgstr "Łączna ilość karmień" -#: reports/graphs/pumping_amounts.py:60 +#: reports/graphs/pumping_amounts.py:62 #, fuzzy #| msgid "Feeding Amounts" msgid "Pumping Amount" @@ -2158,3 +2173,10 @@ msgstr "" #: reports/templates/reports/tummytime_duration.html:8 msgid "Total Tummy Time Durations" msgstr "" + +#~ msgid "Today's Sleep" +#~ msgstr "Dzisiejsze spanie" + +#, python-format +#~ msgid "%(count)s sleep entries" +#~ msgstr "%(count)s pójść spać" diff --git a/locale/pt/LC_MESSAGES/django.mo b/locale/pt/LC_MESSAGES/django.mo index 287ef0bb7d3c7e6d5e60ba6c260a33959bc67eef..88ec0ecc8ef76f9a3bf7bb9cf633e8a3e28f8baf 100644 GIT binary patch delta 6834 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 diff --git a/locale/pt/LC_MESSAGES/django.po b/locale/pt/LC_MESSAGES/django.po index 0743fa33b..282f0c4c4 100644 --- a/locale/pt/LC_MESSAGES/django.po +++ b/locale/pt/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Baby Buddy\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" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -11,12 +11,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: 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 msgid "Settings" 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 #: dashboard/templates/dashboard/child.html:4 #: 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:7 -#: babybuddy/templates/babybuddy/nav-dropdown.html:359 +#: babybuddy/templates/babybuddy/nav-dropdown.html:339 msgid "Database Admin" msgstr "Administrador da Base de Dados" @@ -233,19 +233,19 @@ msgid "Diaper Change" msgstr "Mudança de Fralda" #: 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 msgid "Feeding" msgstr "Alimentação" #: 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 msgid "Note" msgstr "Nota" #: 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 #: core/models.py:468 core/models.py:471 #: core/templates/core/sleep_confirm_delete.html:7 @@ -256,19 +256,7 @@ msgid "Sleep" msgstr "Sono" #: babybuddy/templates/babybuddy/nav-dropdown.html:75 -#: babybuddy/templates/babybuddy/nav-dropdown.html:179 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:81 -#: babybuddy/templates/babybuddy/nav-dropdown.html:301 +#: babybuddy/templates/babybuddy/nav-dropdown.html:296 #: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647 #: core/models.py:648 core/models.py:651 #: core/templates/core/timer_detail.html:59 @@ -280,44 +268,15 @@ msgstr "Temperatura" msgid "Tummy Time" msgstr "Tempo de Barriga para Baixo" -#: babybuddy/templates/babybuddy/nav-dropdown.html:87 -#: 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 +#: babybuddy/templates/babybuddy/nav-dropdown.html:99 #: core/templates/timeline/timeline.html:4 #: core/templates/timeline/timeline.html:7 #: dashboard/templates/dashboard/child_button_group.html:9 msgid "Timeline" msgstr "Linha temporal" -#: babybuddy/templates/babybuddy/nav-dropdown.html:129 -#: babybuddy/templates/babybuddy/nav-dropdown.html:137 core/models.py:188 +#: babybuddy/templates/babybuddy/nav-dropdown.html:110 +#: babybuddy/templates/babybuddy/nav-dropdown.html:118 core/models.py:188 #: core/templates/core/child_confirm_delete.html:7 #: core/templates/core/child_detail.html:7 #: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4 @@ -327,7 +286,7 @@ msgstr "Linha temporal" msgid "Children" 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: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 @@ -346,7 +305,7 @@ msgstr "Crianças" msgid "Child" 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: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 @@ -355,19 +314,48 @@ msgstr "Criança" msgid "Notes" msgstr "Notas" -#: babybuddy/templates/babybuddy/nav-dropdown.html:171 +#: babybuddy/templates/babybuddy/nav-dropdown.html:152 msgid "Measurements" msgstr "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:185 -msgid "Temperature reading" -msgstr "Leitura de temperatura" +#: babybuddy/templates/babybuddy/nav-dropdown.html:160 core/models.py:139 +#: 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 "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:199 -msgid "Weight entry" -msgstr "Novo peso" +#: babybuddy/templates/babybuddy/nav-dropdown.html:166 +#, fuzzy +#| 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/templates/core/height_confirm_delete.html:7 #: core/templates/core/height_form.html:13 @@ -384,63 +372,60 @@ msgstr "Novo peso" msgid "Height" msgstr "Peso" -#: babybuddy/templates/babybuddy/nav-dropdown.html:213 +#: babybuddy/templates/babybuddy/nav-dropdown.html:194 #, fuzzy #| msgid "Weight entry" msgid "Height entry" msgstr "Novo peso" -#: babybuddy/templates/babybuddy/nav-dropdown.html:221 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: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:227 -msgid "Head Circumference entry" -msgstr "" +#: babybuddy/templates/babybuddy/nav-dropdown.html:208 +msgid "Temperature reading" +msgstr "Leitura de temperatura" -#: babybuddy/templates/babybuddy/nav-dropdown.html:235 core/models.py:139 -#: 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 "" +#: 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:241 -#, fuzzy -#| msgid "Sleep entry" -msgid "BMI entry" -msgstr "Novo sono" +#: babybuddy/templates/babybuddy/nav-dropdown.html:222 +msgid "Weight entry" +msgstr "Novo peso" -#: babybuddy/templates/babybuddy/nav-dropdown.html:255 +#: babybuddy/templates/babybuddy/nav-dropdown.html:236 msgid "Activities" msgstr "Actividades" -#: babybuddy/templates/babybuddy/nav-dropdown.html:262 +#: babybuddy/templates/babybuddy/nav-dropdown.html:243 #: reports/graphs/diaperchange_lifetimes.py:27 msgid "Changes" msgstr "Mudanças de fralda" -#: babybuddy/templates/babybuddy/nav-dropdown.html:268 +#: babybuddy/templates/babybuddy/nav-dropdown.html:249 msgid "Change" 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 #: core/templates/core/feeding_confirm_delete.html:7 #: core/templates/core/feeding_form.html:13 @@ -450,21 +435,33 @@ msgstr "Mudança de fralda" msgid "Feedings" msgstr "Alimentações" -#: babybuddy/templates/babybuddy/nav-dropdown.html:294 -msgid "Sleep entry" -msgstr "Novo sono" - -#: babybuddy/templates/babybuddy/nav-dropdown.html:307 -msgid "Tummy Time entry" -msgstr "Entrada de Tempo de Barriga para Baixo" +#: babybuddy/templates/babybuddy/nav-dropdown.html:270 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:322 +#: babybuddy/templates/babybuddy/nav-dropdown.html:276 #, fuzzy #| msgid "Weight entry" msgid "Pumping entry" 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_password_form.html:7 #: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556 @@ -472,23 +469,23 @@ msgstr "Novo peso" msgid "User" msgstr "Utilizador" -#: babybuddy/templates/babybuddy/nav-dropdown.html:348 +#: babybuddy/templates/babybuddy/nav-dropdown.html:328 msgid "Password" msgstr "Password" -#: babybuddy/templates/babybuddy/nav-dropdown.html:352 +#: babybuddy/templates/babybuddy/nav-dropdown.html:332 msgid "Logout" msgstr "Logout" -#: babybuddy/templates/babybuddy/nav-dropdown.html:355 +#: babybuddy/templates/babybuddy/nav-dropdown.html:335 msgid "Site" msgstr "Site" -#: babybuddy/templates/babybuddy/nav-dropdown.html:356 +#: babybuddy/templates/babybuddy/nav-dropdown.html:336 msgid "API Browser" 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_form.html:13 #: babybuddy/templates/babybuddy/user_list.html:4 @@ -496,15 +493,15 @@ msgstr "Navegador de API" msgid "Users" msgstr "Utilizadores" -#: babybuddy/templates/babybuddy/nav-dropdown.html:361 +#: babybuddy/templates/babybuddy/nav-dropdown.html:341 msgid "Support" msgstr "Suporte" -#: babybuddy/templates/babybuddy/nav-dropdown.html:363 +#: babybuddy/templates/babybuddy/nav-dropdown.html:343 msgid "Source Code" msgstr "Código Fonte" -#: babybuddy/templates/babybuddy/nav-dropdown.html:365 +#: babybuddy/templates/babybuddy/nav-dropdown.html:345 msgid "Chat / Support" msgstr "Chat / Suporte" @@ -515,6 +512,7 @@ msgstr "Chat / Suporte" #: core/templates/timeline/_timeline.html:73 #: dashboard/templates/cards/feeding_day.html:43 #: dashboard/templates/cards/feeding_last_method.html:34 +#: dashboard/templates/cards/sleep_recent.html:43 #: dashboard/templates/cards/statistics.html:34 msgid "Previous" msgstr "Anterior" @@ -526,6 +524,7 @@ msgstr "Anterior" #: core/templates/timeline/_timeline.html:80 #: dashboard/templates/cards/feeding_day.html:47 #: dashboard/templates/cards/feeding_last_method.html:38 +#: dashboard/templates/cards/sleep_recent.html:47 #: dashboard/templates/cards/statistics.html:38 msgid "Next" msgstr "Seguinte" @@ -995,7 +994,7 @@ msgstr "" #: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70 #: reports/graphs/feeding_duration.py:56 #: 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/tummytime_duration.py:51 reports/graphs/weight_change.py:28 msgid "Date" @@ -1175,7 +1174,7 @@ msgstr "" #: core/templates/core/bmi_list.html:70 #, fuzzy #| msgid "No timer entries found." -msgid "No bmi entries found." +msgid "No BMI entries found." msgstr "Não foram encontradas entradas de temporizador." #: 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_plural "Are you sure you want to delete %(number)s inactive timers?" msgstr[0] "" -"Tem a certeza que deseja eliminar %(number)s temporizadore%(plural)s inactivo" -"%(plural)s?" +"Tem a certeza que deseja eliminar %(number)s temporizadore%(plural)s " +"inactivo%(plural)s?" msgstr[1] "" -"Tem a certeza que deseja eliminar %(number)s temporizadore%(plural)s inactivo" -"%(plural)s?" +"Tem a certeza que deseja eliminar %(number)s temporizadore%(plural)s " +"inactivo%(plural)s?" #: core/templates/core/timer_detail.html:28 msgid "Started" @@ -1499,9 +1498,10 @@ msgstr "Temporizadores Activos" #: dashboard/templates/cards/feeding_day.html:52 #: dashboard/templates/cards/feeding_last.html:17 #: 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_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 msgid "None" msgstr "Nenhum" @@ -1622,6 +1622,22 @@ msgstr "{}, {}" msgid "0 days" 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 #, python-format msgid "%(child)s started tummy time!" @@ -1761,14 +1777,6 @@ msgstr "molhado" msgid "solid" 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 #, python-format msgid "%(key)s days ago" @@ -1787,6 +1795,7 @@ 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 #, python-format msgid "
%(since)s
" msgstr "" @@ -1811,15 +1820,6 @@ 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/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 msgid "Last Sleep" msgstr "Último Sono" @@ -1836,6 +1836,20 @@ msgid_plural "%(count)s naps" msgstr[0] "%(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 msgid "Statistics" msgstr "Estatísticas" @@ -1888,69 +1902,69 @@ msgstr "Acções da criança" msgid "Reports" msgstr "Relatórios" -#: dashboard/templatetags/cards.py:328 +#: dashboard/templatetags/cards.py:357 msgid "Average nap duration" msgstr "Média de duração das sestas" -#: dashboard/templatetags/cards.py:335 +#: dashboard/templatetags/cards.py:364 msgid "Average naps per day" msgstr "Média de sestas por dua" -#: dashboard/templatetags/cards.py:345 +#: dashboard/templatetags/cards.py:374 msgid "Average sleep duration" msgstr "Média de duração dos sonos" -#: dashboard/templatetags/cards.py:352 +#: dashboard/templatetags/cards.py:381 msgid "Average awake duration" msgstr "Média de tempo acordado" -#: dashboard/templatetags/cards.py:362 +#: dashboard/templatetags/cards.py:391 msgid "Weight change per week" msgstr "Alterações de peso por semana" -#: dashboard/templatetags/cards.py:372 +#: dashboard/templatetags/cards.py:401 #, fuzzy #| msgid "Weight change per week" msgid "Height change per week" msgstr "Alterações de peso por semana" -#: dashboard/templatetags/cards.py:382 +#: dashboard/templatetags/cards.py:411 #, fuzzy #| msgid "Weight change per week" msgid "Head circumference change per week" msgstr "Alterações de peso por semana" -#: dashboard/templatetags/cards.py:392 +#: dashboard/templatetags/cards.py:421 #, fuzzy #| msgid "Weight change per week" msgid "BMI change per week" msgstr "Alterações de peso por semana" -#: dashboard/templatetags/cards.py:410 +#: dashboard/templatetags/cards.py:439 #, fuzzy #| msgid "Feeding frequency (past 3 days)" msgid "Diaper change frequency (past 3 days)" msgstr "Frequência de alimentação (últimos 3 dias)" -#: dashboard/templatetags/cards.py:414 +#: dashboard/templatetags/cards.py:443 #, fuzzy #| msgid "Feeding frequency (past 2 weeks)" msgid "Diaper change frequency (past 2 weeks)" msgstr "Frequência de alimentação (últimas 2 semanas)" -#: dashboard/templatetags/cards.py:420 +#: dashboard/templatetags/cards.py:449 msgid "Diaper change frequency" msgstr "Frequência da mudança de fralda" -#: dashboard/templatetags/cards.py:456 +#: dashboard/templatetags/cards.py:485 msgid "Feeding frequency (past 3 days)" 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)" msgstr "Frequência de alimentação (últimas 2 semanas)" -#: dashboard/templatetags/cards.py:466 +#: dashboard/templatetags/cards.py:495 msgid "Feeding frequency" msgstr "Frequência de alimentação" @@ -2032,13 +2046,13 @@ msgstr "" msgid "Height" msgstr "Peso" -#: reports/graphs/pumping_amounts.py:57 +#: reports/graphs/pumping_amounts.py:59 #, fuzzy #| msgid "Total Feeding Amounts" msgid "Total Pumping Amount" msgstr "Total de Alimentações" -#: reports/graphs/pumping_amounts.py:60 +#: reports/graphs/pumping_amounts.py:62 #, fuzzy #| msgid "Feeding Amounts" msgid "Pumping Amount" @@ -2155,3 +2169,10 @@ msgstr "" #: reports/templates/reports/tummytime_duration.html:8 msgid "Total Tummy Time Durations" msgstr "" + +#~ msgid "Today's Sleep" +#~ msgstr "Sono de Hoje" + +#, python-format +#~ msgid "%(count)s sleep entries" +#~ msgstr "%(count)s entradas de sono" diff --git a/locale/sv/LC_MESSAGES/django.mo b/locale/sv/LC_MESSAGES/django.mo index f4ff03b432e211c5a92be4dba214dec76ec58d8b..d7835c20dd690f2f3cf7372a45ffdf0e0a28e433 100644 GIT binary patch delta 5494 zcmYk=3w)2)9mnw#xge4th=h>1B}5`6r4o&{7Pks&tnQa7sWF$Vty$Urk=R(+7UEK7 zn5s@O)1Y-L)eBl_&`gU~sF_Mps$m_fpYQ+q<@M_G>i7RX=RD8MO?*8{h>D$0{6*flNOghhhs{jJ>f0v+*tlVxJi9 z8naOo9EO_kI8=YnVkqOg7bxfpd8jYULk(Pnx^M%A;_Fx+_ak$0WypW-G9N6C3*aua zGSR61+M@O*y8EvQwOKmSaom%wO2KH5IELMeY3q)QW`hifC)%Q3EGgJp-pRzRRMZz1V>o_#kTF z!&Waf%TXPjMNQ}uauco+HIdMk-uEI<=NqCX6ob5xF4^imQ4<-4jrIOdqQJJgJbwef zWT?H~g}U%#R0kJP9pAI|fL30;K5D{IsI7=a4cq~>GEbmZ?nzX?!%^4G#M+GS7Ffd) z)ShiXeQ}Gm??f%>Vborhqpqt!4SX5(uw6q9^gZhO@YY^GO;9(|3Uvc%sPA<}pPt_C z6!e8`)K(0~Ae@N0aI&?}u=*S`-`W?TCbksY;9ArK-@|w;we#1l{X5iF2ee`Rbzv>O z)e-Aq5cWVVRd3XUCSWkmu=-5Y#Pd-d6=8Q=fx&nRbwi(_w&IGl-$SiXjRddX`U$MR zX5NejEn!>K1ky1CyQ6*=dZNycLJd3>^}8?|^?Oi+`rd1(XJs4e7xajozlfU9ebo0u z6TR<8`zQp{kb=6?G+c;}VF-SRn!rg^2Uo0q8}*EYxAmU>DAe^$a2&S4M=>93;Q`b* zN6e2fkh-s&f?lgnQBUO;_yvB8TDni#d3RKaOx^`1d3T(Is%N2o;ijPOyZ~8cw;J{S zA409fDb!nb6Y0v;ZSVhq^SN{iI+26AaGrO_w!ZM1l~YR;27#BxdOGcRc1u0cRms0XwN`B zBO_4HK(09p^-%hduey1-F@S$`kRMGqf>+L`FV3N$r??pT?QmOBuipvO9$&ZfjXHUE zkZNY4?yR3V2qUNuMNK3J!*Hsdf6?0Wuoms}JF)&+k|G+kRBNy3_nDQe5lp~m%9QP3XUw}#LzUPqCrABY&# zQZ>W5m}2L*nY&O+yB~F388*TS)WoY$5AOr3M?b=!UDR75-}AYx6g1NV<`MG*YOl|r zIy#Sf1}ZTXzee3bTvuN30zB2fdjMRlBp8ZZ-+u`g<%nWzaYLJhDQbpxAGEBTIj6!q4Xp-%&TPC-_pmh=v4 zLJv?|6V%N!9Mw@2>iSq~Z-=d^cS3!CDC!4hENa4Yt$iWtAuYE0s&4FmFB;a~DX6WPkBPVhwby$v9?zk+O`y8M+Ai;1Z3 zW%(#*MgwsbhHY{(%|vxc9x< zsFn3aQ1IU=2GCGWbo|4^oyTaRyZs5#@uG(thciiEa*^mrB_l~Cd6VeqPku@sC&vkk z?VcdR_5RPPRcjPv(_ehk-w16s{H7X=;%PQNj%w0I+4ZX6!`_&NB%|1$ooXc zBmVWL@G#j*f=LF^vD(A`n!IJ@F8DVqi_4_I>Wwgl#FApNgR~~!k}D*I==iUP|BujN z+W+5L!#CKK=zZ7ke0%bDa-Y;8I(QrX$0a^*k`S-z|KBQqq&$YaL{5`y(B>PD|nM2+oI;MHJO!EWWLXMF?kdEY^WChto#uFV4Jp7-3{ZY9F z<)=u3=G=!u5IIM5RFESioP0&Dl7Xc9h@&u?1d@}aC(-e;hyQ1|l=57%j4UNDkTc|S z@*G)Crjx;LsP}unic0mdghCccBJ0T~?($vRHzME%pZqNhlThZu%W%n)v( z_9A9U45NQn-WsZz@#y2kx~M1Yf!xE5#FF?XmcWHr1UF$%{1lsFL|NymU?+SYQ?N5` z$NU(?O$%cPhS9$(PC+9pi@Ko?3t=tP1x-;Gv_y5>5p~`G)OjPYIA)>-ItA&=El17l zZq&@2Lf!8=s=plc2UEC9p+4TnA*_8Y3#}W>U_45XNj$BZ!n&vn+oC#p5%pv*p=KZh)nPVj2Ie4> z;MSsM>=5!oxGSjh9-@{kxUzS@DAavwpq8qMpMpl-4Yfx7P*0YETB|hsJrm!euJdbR zn9rM$2B;ZofqFeVqXs?<^+4lL_n(S-&{?RNT!30C{|8psfV$C6)Ds*=op{meH&8ct zj2d7*wz#IW0II_xH~}l520kCv@nY12twOE+F4T-1M3%`!`gRS{TQm_lc=RQi|Y6$YG!h=DE+(q(cXjCW8M z-b3x)A5a&B#CS^)i8`+m>bz>!9%uE2W^-$AjT%@N$7=3ghQu^&D{ zZL-}~--mUnA4PTi7_|iYhe3OzB8Fg`)oY^$-W)@*BR-4WQ0L7+J!_)`iyDZl;dKy#`aXoCey@hQaRb!%p$+Q0&cT}>5SO7g=UTjqdr&jCG~Ront;poKW2h&-XZ6C*cyCiZ)N9!Z z^`RQ>wfkK*1x?9PjKQ6#55z^(6x~C;hT%0?XN*VwxL*9F_AJzS%dCC3)oy5p_J{P`|f94Wu{v^&}Y-v^l1kvr)TsAu>p}3|9v^cLMn;yNr6?49r8V^(N$F z=8m9V&pW8SP_VxDdmYpRbTa#*9&AW`-hUNRXwZ|Vp$3wL;W))koNMiiP;0mXb;I?j znfe5a;Q`e3XHfS$k9v?>sDAEZ1U@iB8!-R+p-cns2`VCQm}`w;n2g%>V=xjYqdIyY zOX6x&M|)7`9kcce)_xDQ+g(HN`U+T(YHid&n))f|2|8IrZ&XJ^P){-*waX`3eW|$$ zHNXw{9&Sf{Dcd*l+Q*?f@}mYY)!J8~I^LM~`)3r?(Gl|`YKp%$FQYEV!P58$)p0~) zZ;7H%^%&HB5>Vfb2B?{8f?3$Xem`cOLT1eG&QZ{bx3CoEqDCIk#M`yyQ1$xwHnv1f z^%2xSzcsI!cTh|E0CnAC)E)?F%Cuu4)PS2|sQ&$L6DaVH1?ow=p`J7mHK1293g5-D zxW?RPo<|?;4^Y>YZsvU#5>OqtM=fb5)KU*XZSG-MSnq!Z1Y}b|Z0+q@F#pjsbfG~vNJD*KUPFy| zv9+&8ZLUpL-+{lPz8AIGf?Ik^Qvgd)uZrrh5eB~XsHN?Ix=%lR5eK$p{x#w)cES$S zlpR8?>47D2u(glJ^3-SgDX7DZ zSOa&V*8B?kF!(udX<|?}Y={-G3+lSzr~zf*`69*pIjze zRpEG^3?-9Qv7;i!Sos6gw6`OZ$Y(^yNs>tT>bhBEHTe(OLbTqM$q}OCPvl$mKbyjL zL{FV}+_b_=xY5ciz3Xn}#dy)mKjI;xWg9~NL28k)WIfUG7oz=T7tF{sSBA zHfkDmY$Nwb8}bfWL$rDRK=is+CELkCGMXGGIYdV<(wS5u8H5+)=c5m$_Tp=!xkDz9j-)zyi~ODxCOSrvPYBf$ShPNZ#=Rg=BJzbRzkP4t))EY$EYw1UX8w$y$=>7GP1Z(JvQ;Ghsx!+=WYY#KiaEX;4<5yNLjWw-&!CZ>{$O$r#=-5yE ze+v}(9}s4L>_HBYg5=NSLo$Qp9sjbzHC$okX#5?SZuP_Fzp)F+A~#4KqNA9H-)*LF zjI<&>Ne2=|rjeN>@A#t?hMSGC1SxLytN0r-j-* %(since)s " msgstr "" @@ -1805,15 +1814,6 @@ msgid_plural "%(n)s feedings ago" msgstr[0] "%(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 msgid "Last Sleep" msgstr "" @@ -1830,6 +1830,18 @@ msgid_plural "%(count)s naps" msgstr[0] "%(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 msgid "Statistics" msgstr "Statistik" @@ -1882,69 +1894,69 @@ msgstr "Barnåtgärder" msgid "Reports" msgstr "Rapporter" -#: dashboard/templatetags/cards.py:328 +#: dashboard/templatetags/cards.py:357 msgid "Average nap duration" msgstr "Genomsnittlig tupplurslängd" -#: dashboard/templatetags/cards.py:335 +#: dashboard/templatetags/cards.py:364 msgid "Average naps per day" msgstr "Genomsnittlig mängd tupplurer per dag" -#: dashboard/templatetags/cards.py:345 +#: dashboard/templatetags/cards.py:374 msgid "Average sleep duration" msgstr "Genomsnittlig sömnlängd" -#: dashboard/templatetags/cards.py:352 +#: dashboard/templatetags/cards.py:381 msgid "Average awake duration" msgstr "Genomsnittlig vakentid" -#: dashboard/templatetags/cards.py:362 +#: dashboard/templatetags/cards.py:391 msgid "Weight change per week" msgstr "Viktförändring per vecka" -#: dashboard/templatetags/cards.py:372 +#: dashboard/templatetags/cards.py:401 #, fuzzy #| msgid "Weight change per week" msgid "Height change per week" msgstr "Viktförändring per vecka" -#: dashboard/templatetags/cards.py:382 +#: dashboard/templatetags/cards.py:411 #, fuzzy #| msgid "Weight change per week" msgid "Head circumference change per week" msgstr "Viktförändring per vecka" -#: dashboard/templatetags/cards.py:392 +#: dashboard/templatetags/cards.py:421 #, fuzzy #| msgid "Weight change per week" msgid "BMI change per week" msgstr "Viktförändring per vecka" -#: dashboard/templatetags/cards.py:410 +#: dashboard/templatetags/cards.py:439 #, fuzzy #| msgid "Diaper change frequency" msgid "Diaper change frequency (past 3 days)" msgstr "Blöjbytesfrekvens" -#: dashboard/templatetags/cards.py:414 +#: dashboard/templatetags/cards.py:443 #, fuzzy #| msgid "Diaper change frequency" msgid "Diaper change frequency (past 2 weeks)" msgstr "Blöjbytesfrekvens" -#: dashboard/templatetags/cards.py:420 +#: dashboard/templatetags/cards.py:449 msgid "Diaper change frequency" msgstr "Blöjbytesfrekvens" -#: dashboard/templatetags/cards.py:456 +#: dashboard/templatetags/cards.py:485 msgid "Feeding frequency (past 3 days)" msgstr "" -#: dashboard/templatetags/cards.py:460 +#: dashboard/templatetags/cards.py:489 msgid "Feeding frequency (past 2 weeks)" msgstr "" -#: dashboard/templatetags/cards.py:466 +#: dashboard/templatetags/cards.py:495 msgid "Feeding frequency" msgstr "Matningsfrekvens" @@ -2026,13 +2038,13 @@ msgstr "" msgid "Height" msgstr "Vikt" -#: reports/graphs/pumping_amounts.py:57 +#: reports/graphs/pumping_amounts.py:59 #, fuzzy #| msgid "Total Feeding Amounts" msgid "Total Pumping Amount" msgstr "Genomsnittlig matningsvaraktighet" -#: reports/graphs/pumping_amounts.py:60 +#: reports/graphs/pumping_amounts.py:62 #, fuzzy #| msgid "Feeding Amounts" msgid "Pumping Amount" @@ -2149,3 +2161,10 @@ msgstr "" #: reports/templates/reports/tummytime_duration.html:8 msgid "Total Tummy Time Durations" msgstr "" + +#~ msgid "Today's Sleep" +#~ msgstr "Sömn idag" + +#, python-format +#~ msgid "%(count)s sleep entries" +#~ msgstr "%(count)s sömn-inlägg" diff --git a/locale/tr/LC_MESSAGES/django.mo b/locale/tr/LC_MESSAGES/django.mo index 4b7f440368d37b1d3b81cef6a3ac784f519703c8..9ef16fe35525ae28abe9246b8893d42e45be9bbb 100644 GIT binary patch delta 6951 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 delta 7207 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 diff --git a/locale/tr/LC_MESSAGES/django.po b/locale/tr/LC_MESSAGES/django.po index 4984f06cd..6b3f2def9 100644 --- a/locale/tr/LC_MESSAGES/django.po +++ b/locale/tr/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Baby Buddy\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" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -11,12 +11,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n>1);\n" #: 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 msgid "Settings" 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 #: dashboard/templates/dashboard/child.html:4 #: 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:7 -#: babybuddy/templates/babybuddy/nav-dropdown.html:359 +#: babybuddy/templates/babybuddy/nav-dropdown.html:339 msgid "Database Admin" msgstr "Veritabanı Admin" @@ -235,19 +235,19 @@ msgid "Diaper Change" msgstr "Bez Değişimi" #: 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 msgid "Feeding" msgstr "Beslenme" #: 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 msgid "Note" msgstr "Not" #: 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 #: core/models.py:468 core/models.py:471 #: core/templates/core/sleep_confirm_delete.html:7 @@ -258,19 +258,7 @@ msgid "Sleep" msgstr "Uyku" #: babybuddy/templates/babybuddy/nav-dropdown.html:75 -#: babybuddy/templates/babybuddy/nav-dropdown.html:179 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 "Sıcaklık" - -#: babybuddy/templates/babybuddy/nav-dropdown.html:81 -#: babybuddy/templates/babybuddy/nav-dropdown.html:301 +#: babybuddy/templates/babybuddy/nav-dropdown.html:296 #: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647 #: core/models.py:648 core/models.py:651 #: core/templates/core/timer_detail.html:59 @@ -282,44 +270,15 @@ msgstr "Sıcaklık" msgid "Tummy Time" msgstr "Karın üstü zamanı" -#: babybuddy/templates/babybuddy/nav-dropdown.html:87 -#: 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 +#: babybuddy/templates/babybuddy/nav-dropdown.html:99 #: core/templates/timeline/timeline.html:4 #: core/templates/timeline/timeline.html:7 #: dashboard/templates/dashboard/child_button_group.html:9 msgid "Timeline" msgstr "Zaman çizelgesi" -#: babybuddy/templates/babybuddy/nav-dropdown.html:129 -#: babybuddy/templates/babybuddy/nav-dropdown.html:137 core/models.py:188 +#: babybuddy/templates/babybuddy/nav-dropdown.html:110 +#: babybuddy/templates/babybuddy/nav-dropdown.html:118 core/models.py:188 #: core/templates/core/child_confirm_delete.html:7 #: core/templates/core/child_detail.html:7 #: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4 @@ -329,7 +288,7 @@ msgstr "Zaman çizelgesi" msgid "Children" 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: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 @@ -348,7 +307,7 @@ msgstr "Çocuklar" msgid "Child" 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: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 @@ -357,19 +316,48 @@ msgstr "Çocuk" msgid "Notes" msgstr "Notlar" -#: babybuddy/templates/babybuddy/nav-dropdown.html:171 +#: babybuddy/templates/babybuddy/nav-dropdown.html:152 msgid "Measurements" msgstr "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:185 -msgid "Temperature reading" -msgstr "Sıcaklık okuma" +#: babybuddy/templates/babybuddy/nav-dropdown.html:160 core/models.py:139 +#: 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 "" -#: babybuddy/templates/babybuddy/nav-dropdown.html:199 -msgid "Weight entry" -msgstr "Ağırlık girdisi" +#: babybuddy/templates/babybuddy/nav-dropdown.html:166 +#, fuzzy +#| 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/templates/core/height_confirm_delete.html:7 #: core/templates/core/height_form.html:13 @@ -386,63 +374,60 @@ msgstr "Ağırlık girdisi" msgid "Height" msgstr "Ağırlık" -#: babybuddy/templates/babybuddy/nav-dropdown.html:213 +#: babybuddy/templates/babybuddy/nav-dropdown.html:194 #, fuzzy #| msgid "Weight entry" msgid "Height entry" msgstr "Ağırlık girdisi" -#: babybuddy/templates/babybuddy/nav-dropdown.html:221 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: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 "Sıcaklık" -#: babybuddy/templates/babybuddy/nav-dropdown.html:227 -msgid "Head Circumference entry" -msgstr "" +#: babybuddy/templates/babybuddy/nav-dropdown.html:208 +msgid "Temperature reading" +msgstr "Sıcaklık okuma" -#: babybuddy/templates/babybuddy/nav-dropdown.html:235 core/models.py:139 -#: 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 "" +#: 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 "Ağırlık" -#: babybuddy/templates/babybuddy/nav-dropdown.html:241 -#, fuzzy -#| msgid "Sleep entry" -msgid "BMI entry" -msgstr "Uyku Girişi" +#: babybuddy/templates/babybuddy/nav-dropdown.html:222 +msgid "Weight entry" +msgstr "Ağırlık girdisi" -#: babybuddy/templates/babybuddy/nav-dropdown.html:255 +#: babybuddy/templates/babybuddy/nav-dropdown.html:236 msgid "Activities" msgstr "Faaliyetler" -#: babybuddy/templates/babybuddy/nav-dropdown.html:262 +#: babybuddy/templates/babybuddy/nav-dropdown.html:243 #: reports/graphs/diaperchange_lifetimes.py:27 msgid "Changes" msgstr "Değişimler" -#: babybuddy/templates/babybuddy/nav-dropdown.html:268 +#: babybuddy/templates/babybuddy/nav-dropdown.html:249 msgid "Change" 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 #: core/templates/core/feeding_confirm_delete.html:7 #: core/templates/core/feeding_form.html:13 @@ -452,21 +437,33 @@ msgstr "Değişim" msgid "Feedings" msgstr "Beslenmeler" -#: babybuddy/templates/babybuddy/nav-dropdown.html:294 -msgid "Sleep entry" -msgstr "Uyku Girişi" - -#: babybuddy/templates/babybuddy/nav-dropdown.html:307 -msgid "Tummy Time entry" -msgstr "Karın Üstü Zaman Girişi" +#: babybuddy/templates/babybuddy/nav-dropdown.html:270 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:322 +#: babybuddy/templates/babybuddy/nav-dropdown.html:276 #, fuzzy #| msgid "Weight entry" msgid "Pumping entry" 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_password_form.html:7 #: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556 @@ -474,23 +471,23 @@ msgstr "Ağırlık girdisi" msgid "User" msgstr "Kullanıcı" -#: babybuddy/templates/babybuddy/nav-dropdown.html:348 +#: babybuddy/templates/babybuddy/nav-dropdown.html:328 msgid "Password" msgstr "Şifre" -#: babybuddy/templates/babybuddy/nav-dropdown.html:352 +#: babybuddy/templates/babybuddy/nav-dropdown.html:332 msgid "Logout" msgstr "Çıkış" -#: babybuddy/templates/babybuddy/nav-dropdown.html:355 +#: babybuddy/templates/babybuddy/nav-dropdown.html:335 msgid "Site" msgstr "Site" -#: babybuddy/templates/babybuddy/nav-dropdown.html:356 +#: babybuddy/templates/babybuddy/nav-dropdown.html:336 msgid "API Browser" 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_form.html:13 #: babybuddy/templates/babybuddy/user_list.html:4 @@ -498,15 +495,15 @@ msgstr "API Görüntüleyici" msgid "Users" msgstr "Kullanıcılar" -#: babybuddy/templates/babybuddy/nav-dropdown.html:361 +#: babybuddy/templates/babybuddy/nav-dropdown.html:341 msgid "Support" msgstr "Destek" -#: babybuddy/templates/babybuddy/nav-dropdown.html:363 +#: babybuddy/templates/babybuddy/nav-dropdown.html:343 msgid "Source Code" msgstr "Kaynak Kod" -#: babybuddy/templates/babybuddy/nav-dropdown.html:365 +#: babybuddy/templates/babybuddy/nav-dropdown.html:345 msgid "Chat / Support" msgstr "Sohbet / Destek" @@ -517,6 +514,7 @@ msgstr "Sohbet / Destek" #: core/templates/timeline/_timeline.html:73 #: dashboard/templates/cards/feeding_day.html:43 #: dashboard/templates/cards/feeding_last_method.html:34 +#: dashboard/templates/cards/sleep_recent.html:43 #: dashboard/templates/cards/statistics.html:34 msgid "Previous" msgstr "Önceki" @@ -528,6 +526,7 @@ msgstr "Önceki" #: core/templates/timeline/_timeline.html:80 #: dashboard/templates/cards/feeding_day.html:47 #: dashboard/templates/cards/feeding_last_method.html:38 +#: dashboard/templates/cards/sleep_recent.html:47 #: dashboard/templates/cards/statistics.html:38 msgid "Next" msgstr "Sonraki" @@ -996,7 +995,7 @@ msgstr "" #: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70 #: reports/graphs/feeding_duration.py:56 #: 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/tummytime_duration.py:51 reports/graphs/weight_change.py:28 msgid "Date" @@ -1176,7 +1175,7 @@ msgstr "" #: core/templates/core/bmi_list.html:70 #, fuzzy #| msgid "No timer entries found." -msgid "No bmi entries found." +msgid "No BMI entries found." msgstr "Zamanlayıcı girdisi bulunamadı" #: 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_last.html:17 #: 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_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 msgid "None" msgstr "Hiç" @@ -1619,6 +1619,22 @@ msgstr "{}, {}" msgid "0 days" 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 #, python-format msgid "%(child)s started tummy time!" @@ -1759,14 +1775,6 @@ msgstr "ıslak" msgid "solid" 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 #, python-format msgid "%(key)s days ago" @@ -1785,6 +1793,7 @@ 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 "
%(since)s
" msgstr "" @@ -1809,15 +1818,6 @@ msgid_plural "%(n)s feedings ago" msgstr[0] "%(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 msgid "Last Sleep" msgstr "En Son Uyku" @@ -1834,6 +1834,20 @@ msgid_plural "%(count)s naps" msgstr[0] "%(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 msgid "Statistics" msgstr "İstatistikler" @@ -1886,69 +1900,69 @@ msgstr "Çocuk eylemleri" msgid "Reports" msgstr "Raporlar" -#: dashboard/templatetags/cards.py:328 +#: dashboard/templatetags/cards.py:357 msgid "Average nap duration" msgstr "Ortalama kısa uyku süresi" -#: dashboard/templatetags/cards.py:335 +#: dashboard/templatetags/cards.py:364 msgid "Average naps per day" msgstr "Ortalama günlük kısa uyku" -#: dashboard/templatetags/cards.py:345 +#: dashboard/templatetags/cards.py:374 msgid "Average sleep duration" msgstr "Ortalama uyku süresi" -#: dashboard/templatetags/cards.py:352 +#: dashboard/templatetags/cards.py:381 msgid "Average awake duration" msgstr "Ortalama uyanıklık süresi" -#: dashboard/templatetags/cards.py:362 +#: dashboard/templatetags/cards.py:391 msgid "Weight change per week" msgstr "Haftalık ağırlık değişimi" -#: dashboard/templatetags/cards.py:372 +#: dashboard/templatetags/cards.py:401 #, fuzzy #| msgid "Weight change per week" msgid "Height change per week" msgstr "Haftalık ağırlık değişimi" -#: dashboard/templatetags/cards.py:382 +#: dashboard/templatetags/cards.py:411 #, fuzzy #| msgid "Weight change per week" msgid "Head circumference change per week" msgstr "Haftalık ağırlık değişimi" -#: dashboard/templatetags/cards.py:392 +#: dashboard/templatetags/cards.py:421 #, fuzzy #| msgid "Weight change per week" msgid "BMI change per week" msgstr "Haftalık ağırlık değişimi" -#: dashboard/templatetags/cards.py:410 +#: dashboard/templatetags/cards.py:439 #, fuzzy #| msgid "Feeding frequency (past 3 days)" msgid "Diaper change frequency (past 3 days)" msgstr "Beslenme sıklığı (son 3 gün)" -#: dashboard/templatetags/cards.py:414 +#: dashboard/templatetags/cards.py:443 #, fuzzy #| msgid "Feeding frequency (past 2 weeks)" msgid "Diaper change frequency (past 2 weeks)" msgstr "Beslenme sıklığı (son 2 hafta)" -#: dashboard/templatetags/cards.py:420 +#: dashboard/templatetags/cards.py:449 msgid "Diaper change frequency" msgstr "Bez değişim sıklığı" -#: dashboard/templatetags/cards.py:456 +#: dashboard/templatetags/cards.py:485 msgid "Feeding frequency (past 3 days)" msgstr "Beslenme sıklığı (son 3 gün)" -#: dashboard/templatetags/cards.py:460 +#: dashboard/templatetags/cards.py:489 msgid "Feeding frequency (past 2 weeks)" msgstr "Beslenme sıklığı (son 2 hafta)" -#: dashboard/templatetags/cards.py:466 +#: dashboard/templatetags/cards.py:495 msgid "Feeding frequency" msgstr "Beslenme sıklığı" @@ -2030,13 +2044,13 @@ msgstr "" msgid "Height" msgstr "Ağırlık" -#: reports/graphs/pumping_amounts.py:57 +#: reports/graphs/pumping_amounts.py:59 #, fuzzy #| msgid "Total Feeding Amounts" msgid "Total Pumping Amount" msgstr "Ortalama Beslenme Süreleri" -#: reports/graphs/pumping_amounts.py:60 +#: reports/graphs/pumping_amounts.py:62 #, fuzzy #| msgid "Feeding Amounts" msgid "Pumping Amount" @@ -2153,3 +2167,10 @@ msgstr "Karın üstü süresi (Sum)" #: reports/templates/reports/tummytime_duration.html:8 msgid "Total Tummy Time Durations" 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" diff --git a/locale/zh/LC_MESSAGES/django.mo b/locale/zh/LC_MESSAGES/django.mo index 501875b50d62b0407b1f62dc282cd465c17f53dd..6417aba64c9a52b0de621761b24f2b843e9544b8 100644 GIT binary patch delta 8578 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 Bi+%tA diff --git a/locale/zh/LC_MESSAGES/django.po b/locale/zh/LC_MESSAGES/django.po index 88c40874d..88c1b9a79 100644 --- a/locale/zh/LC_MESSAGES/django.po +++ b/locale/zh/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Baby Buddy\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" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -11,12 +11,12 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: 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 msgid "Settings" 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 #: dashboard/templates/dashboard/child.html:4 #: dashboard/templates/dashboard/child.html:9 @@ -179,7 +179,7 @@ msgstr "土耳其语" #: babybuddy/templates/admin/base_site.html:4 #: babybuddy/templates/admin/base_site.html:7 -#: babybuddy/templates/babybuddy/nav-dropdown.html:359 +#: babybuddy/templates/babybuddy/nav-dropdown.html:339 msgid "Database Admin" msgstr "数据库管理员" @@ -226,19 +226,19 @@ msgid "Diaper Change" msgstr "更换尿布" #: 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 msgid "Feeding" msgstr "喂食" #: 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 msgid "Note" msgstr "记录" #: 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 #: core/models.py:468 core/models.py:471 #: core/templates/core/sleep_confirm_delete.html:7 @@ -249,19 +249,7 @@ msgid "Sleep" msgstr "睡眠" #: babybuddy/templates/babybuddy/nav-dropdown.html:75 -#: babybuddy/templates/babybuddy/nav-dropdown.html:179 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:81 -#: babybuddy/templates/babybuddy/nav-dropdown.html:301 +#: babybuddy/templates/babybuddy/nav-dropdown.html:296 #: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647 #: core/models.py:648 core/models.py:651 #: core/templates/core/timer_detail.html:59 @@ -273,44 +261,15 @@ msgstr "体温" msgid "Tummy Time" msgstr "趴玩时间" -#: babybuddy/templates/babybuddy/nav-dropdown.html:87 -#: 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 +#: babybuddy/templates/babybuddy/nav-dropdown.html:99 #: core/templates/timeline/timeline.html:4 #: core/templates/timeline/timeline.html:7 #: dashboard/templates/dashboard/child_button_group.html:9 msgid "Timeline" msgstr "时间线" -#: babybuddy/templates/babybuddy/nav-dropdown.html:129 -#: babybuddy/templates/babybuddy/nav-dropdown.html:137 core/models.py:188 +#: babybuddy/templates/babybuddy/nav-dropdown.html:110 +#: babybuddy/templates/babybuddy/nav-dropdown.html:118 core/models.py:188 #: core/templates/core/child_confirm_delete.html:7 #: core/templates/core/child_detail.html:7 #: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4 @@ -320,7 +279,7 @@ msgstr "时间线" msgid "Children" 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: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 @@ -339,7 +298,7 @@ msgstr "我的宝宝" msgid "Child" 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: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 @@ -348,19 +307,46 @@ msgstr "宝宝" msgid "Notes" msgstr "成长记录" -#: babybuddy/templates/babybuddy/nav-dropdown.html:171 +#: babybuddy/templates/babybuddy/nav-dropdown.html:152 msgid "Measurements" msgstr "测量" -#: babybuddy/templates/babybuddy/nav-dropdown.html:185 -msgid "Temperature reading" -msgstr "体温读数" +#: babybuddy/templates/babybuddy/nav-dropdown.html:160 core/models.py:139 +#: 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 "身体质量指数(BMI)" -#: babybuddy/templates/babybuddy/nav-dropdown.html:199 -msgid "Weight entry" -msgstr "体重记录" +#: babybuddy/templates/babybuddy/nav-dropdown.html:166 +msgid "BMI entry" +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: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/templates/core/height_confirm_delete.html:7 #: core/templates/core/height_form.html:13 @@ -375,59 +361,58 @@ msgstr "体重记录" msgid "Height" msgstr "身高" -#: babybuddy/templates/babybuddy/nav-dropdown.html:213 +#: babybuddy/templates/babybuddy/nav-dropdown.html:194 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/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: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:227 -msgid "Head Circumference entry" -msgstr "头围记录" +#: babybuddy/templates/babybuddy/nav-dropdown.html:208 +msgid "Temperature reading" +msgstr "体温读数" -#: babybuddy/templates/babybuddy/nav-dropdown.html:235 core/models.py:139 -#: 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 "身体质量指数(BMI)" +#: 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:241 -msgid "BMI entry" -msgstr "BMI记录" +#: babybuddy/templates/babybuddy/nav-dropdown.html:222 +msgid "Weight entry" +msgstr "体重记录" -#: babybuddy/templates/babybuddy/nav-dropdown.html:255 +#: babybuddy/templates/babybuddy/nav-dropdown.html:236 msgid "Activities" msgstr "活动" -#: babybuddy/templates/babybuddy/nav-dropdown.html:262 +#: babybuddy/templates/babybuddy/nav-dropdown.html:243 #: reports/graphs/diaperchange_lifetimes.py:27 msgid "Changes" msgstr "换尿布" -#: babybuddy/templates/babybuddy/nav-dropdown.html:268 +#: babybuddy/templates/babybuddy/nav-dropdown.html:249 msgid "Change" 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 #: core/templates/core/feeding_confirm_delete.html:7 #: core/templates/core/feeding_form.html:13 @@ -437,19 +422,31 @@ msgstr "换尿布" msgid "Feedings" msgstr "喂食" -#: babybuddy/templates/babybuddy/nav-dropdown.html:294 +#: babybuddy/templates/babybuddy/nav-dropdown.html:270 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:276 +msgid "Pumping entry" +msgstr "吸奶记录" + +#: babybuddy/templates/babybuddy/nav-dropdown.html:289 msgid "Sleep entry" msgstr "睡眠记录" -#: babybuddy/templates/babybuddy/nav-dropdown.html:307 +#: babybuddy/templates/babybuddy/nav-dropdown.html:302 msgid "Tummy Time entry" msgstr "趴玩时间记录" -#: babybuddy/templates/babybuddy/nav-dropdown.html:322 -msgid "Pumping entry" -msgstr "吸奶记录" - -#: babybuddy/templates/babybuddy/nav-dropdown.html:346 +#: babybuddy/templates/babybuddy/nav-dropdown.html:326 #: babybuddy/templates/babybuddy/user_list.html:17 #: babybuddy/templates/babybuddy/user_password_form.html:7 #: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556 @@ -457,23 +454,23 @@ msgstr "吸奶记录" msgid "User" msgstr "用户" -#: babybuddy/templates/babybuddy/nav-dropdown.html:348 +#: babybuddy/templates/babybuddy/nav-dropdown.html:328 msgid "Password" msgstr "密码" -#: babybuddy/templates/babybuddy/nav-dropdown.html:352 +#: babybuddy/templates/babybuddy/nav-dropdown.html:332 msgid "Logout" msgstr "登出" -#: babybuddy/templates/babybuddy/nav-dropdown.html:355 +#: babybuddy/templates/babybuddy/nav-dropdown.html:335 msgid "Site" msgstr "站点" -#: babybuddy/templates/babybuddy/nav-dropdown.html:356 +#: babybuddy/templates/babybuddy/nav-dropdown.html:336 msgid "API Browser" 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_form.html:13 #: babybuddy/templates/babybuddy/user_list.html:4 @@ -481,15 +478,15 @@ msgstr "API浏览" msgid "Users" msgstr "用户" -#: babybuddy/templates/babybuddy/nav-dropdown.html:361 +#: babybuddy/templates/babybuddy/nav-dropdown.html:341 msgid "Support" msgstr "支持" -#: babybuddy/templates/babybuddy/nav-dropdown.html:363 +#: babybuddy/templates/babybuddy/nav-dropdown.html:343 msgid "Source Code" msgstr "源代码" -#: babybuddy/templates/babybuddy/nav-dropdown.html:365 +#: babybuddy/templates/babybuddy/nav-dropdown.html:345 msgid "Chat / Support" msgstr "聊天 / 支持" @@ -500,6 +497,7 @@ msgstr "聊天 / 支持" #: core/templates/timeline/_timeline.html:73 #: dashboard/templates/cards/feeding_day.html:43 #: dashboard/templates/cards/feeding_last_method.html:34 +#: dashboard/templates/cards/sleep_recent.html:43 #: dashboard/templates/cards/statistics.html:34 msgid "Previous" msgstr "上一页" @@ -511,6 +509,7 @@ msgstr "上一页" #: core/templates/timeline/_timeline.html:80 #: dashboard/templates/cards/feeding_day.html:47 #: dashboard/templates/cards/feeding_last_method.html:38 +#: dashboard/templates/cards/sleep_recent.html:47 #: dashboard/templates/cards/statistics.html:38 msgid "Next" msgstr "下一页" @@ -969,7 +968,7 @@ msgstr "标签" #: reports/graphs/diaperchange_types.py:49 reports/graphs/feeding_amounts.py:70 #: reports/graphs/feeding_duration.py:56 #: 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/tummytime_duration.py:51 reports/graphs/weight_change.py:28 msgid "Date" @@ -1143,7 +1142,9 @@ msgid "Add BMI" msgstr "新增BMI记录" #: 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记录。" #: core/templates/core/child_confirm_delete.html:4 @@ -1439,9 +1440,10 @@ msgstr "激活的计时器" #: dashboard/templates/cards/feeding_day.html:52 #: dashboard/templates/cards/feeding_last.html:17 #: 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_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 msgid "None" msgstr "无" @@ -1724,6 +1726,7 @@ msgid_plural "%(counter)s feedings" msgstr[0] "%(counter)s 次喂食" #: dashboard/templates/cards/feeding_day.html:32 +#: dashboard/templates/cards/sleep_recent.html:32 #, python-format msgid "

%(since)s
" msgstr "" @@ -1746,15 +1749,6 @@ msgid "%(n)s feeding ago" msgid_plural "%(n)s feedings ago" 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 msgid "Last Sleep" msgstr "上一次睡眠" @@ -1769,6 +1763,20 @@ msgid "%(count)s nap" msgid_plural "%(count)s naps" 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 msgid "Statistics" msgstr "统计数据" @@ -1819,59 +1827,59 @@ msgstr "宝宝行动" msgid "Reports" msgstr "报告" -#: dashboard/templatetags/cards.py:328 +#: dashboard/templatetags/cards.py:357 msgid "Average nap duration" msgstr "平均小睡时间" -#: dashboard/templatetags/cards.py:335 +#: dashboard/templatetags/cards.py:364 msgid "Average naps per day" msgstr "每天的平均小睡次数" -#: dashboard/templatetags/cards.py:345 +#: dashboard/templatetags/cards.py:374 msgid "Average sleep duration" msgstr "平均睡眠时间" -#: dashboard/templatetags/cards.py:352 +#: dashboard/templatetags/cards.py:381 msgid "Average awake duration" msgstr "平均清醒时间" -#: dashboard/templatetags/cards.py:362 +#: dashboard/templatetags/cards.py:391 msgid "Weight change per week" msgstr "每周体重变化" -#: dashboard/templatetags/cards.py:372 +#: dashboard/templatetags/cards.py:401 msgid "Height change per week" msgstr "每周身高变化" -#: dashboard/templatetags/cards.py:382 +#: dashboard/templatetags/cards.py:411 msgid "Head circumference change per week" msgstr "每周头围变化" -#: dashboard/templatetags/cards.py:392 +#: dashboard/templatetags/cards.py:421 msgid "BMI change per week" msgstr "每周BMI变化" -#: dashboard/templatetags/cards.py:410 +#: dashboard/templatetags/cards.py:439 msgid "Diaper change frequency (past 3 days)" msgstr "换尿布频率(过去三天)" -#: dashboard/templatetags/cards.py:414 +#: dashboard/templatetags/cards.py:443 msgid "Diaper change frequency (past 2 weeks)" msgstr "换尿布频率(过去两周)" -#: dashboard/templatetags/cards.py:420 +#: dashboard/templatetags/cards.py:449 msgid "Diaper change frequency" msgstr "换尿布频率" -#: dashboard/templatetags/cards.py:456 +#: dashboard/templatetags/cards.py:485 msgid "Feeding frequency (past 3 days)" msgstr "喂食频率(过去三天)" -#: dashboard/templatetags/cards.py:460 +#: dashboard/templatetags/cards.py:489 msgid "Feeding frequency (past 2 weeks)" msgstr "喂食频率(过去两周)" -#: dashboard/templatetags/cards.py:466 +#: dashboard/templatetags/cards.py:495 msgid "Feeding frequency" msgstr "喂食频率" @@ -1947,11 +1955,11 @@ msgstr "头围" msgid "Height" msgstr "身高" -#: reports/graphs/pumping_amounts.py:57 +#: reports/graphs/pumping_amounts.py:59 msgid "Total Pumping Amount" msgstr "合计吸奶量" -#: reports/graphs/pumping_amounts.py:60 +#: reports/graphs/pumping_amounts.py:62 msgid "Pumping Amount" msgstr "吸奶量" @@ -2064,3 +2072,10 @@ msgstr "趴玩时光持续时间(合计)" #: reports/templates/reports/tummytime_duration.html:8 msgid "Total Tummy Time Durations" msgstr "趴玩时光持续时间合计" + +#~ msgid "Today's Sleep" +#~ msgstr "今天的睡觉" + +#, python-format +#~ msgid "%(count)s sleep entries" +#~ msgstr "%(count)s 条睡眠记录"