mirror of https://github.com/snachodog/mybuddy.git
Add a way to set the SMTP configuration (#506)
* Update configuration of password reset URLs * Add support for email configuration via environment variables * Remove unused settings files * Add email configuration documentation * Reorganize configuration documentation by topic * Fix linting issue * Add password reset flow test * Correct icon name * Isolate password reset test case * Update locales for new strings
This commit is contained in:
parent
d397d169f9
commit
0d26efe05a
|
@ -233,6 +233,24 @@ if AWS_STORAGE_BUCKET_NAME:
|
||||||
DEFAULT_FILE_STORAGE = "storages.backends.s3boto3.S3Boto3Storage"
|
DEFAULT_FILE_STORAGE = "storages.backends.s3boto3.S3Boto3Storage"
|
||||||
|
|
||||||
|
|
||||||
|
# Email
|
||||||
|
# https://docs.djangoproject.com/en/4.0/topics/email/
|
||||||
|
|
||||||
|
EMAIL_BACKEND = "django.core.mail.backends.console.EmailBackend"
|
||||||
|
EMAIL_SUBJECT_PREFIX = "[Baby Buddy] "
|
||||||
|
EMAIL_TIMEOUT = 30
|
||||||
|
if os.environ.get("EMAIL_HOST"):
|
||||||
|
EMAIL_BACKEND = "django.core.mail.backends.smtp.EmailBackend"
|
||||||
|
EMAIL_HOST = os.environ.get("EMAIL_HOST")
|
||||||
|
EMAIL_HOST_USER = os.environ.get("EMAIL_HOST_USER") or ""
|
||||||
|
EMAIL_HOST_PASSWORD = os.environ.get("EMAIL_HOST_PASSWORD") or ""
|
||||||
|
EMAIL_PORT = os.environ.get("EMAIL_PORT") or 25
|
||||||
|
EMAIL_USE_TLS = bool(strtobool(os.environ.get("EMAIL_USE_TLS") or "False"))
|
||||||
|
EMAIL_USE_SSL = bool(strtobool(os.environ.get("EMAIL_USE_SSL") or "False"))
|
||||||
|
EMAIL_SSL_KEYFILE = os.environ.get("EMAIL_SSL_KEYFILE") or None
|
||||||
|
EMAIL_SSL_CERTFILE = os.environ.get("EMAIL_SSL_CERTFILE") or None
|
||||||
|
|
||||||
|
|
||||||
# Security
|
# Security
|
||||||
|
|
||||||
# https://docs.djangoproject.com/en/4.0/ref/settings/#secure-proxy-ssl-header
|
# https://docs.djangoproject.com/en/4.0/ref/settings/#secure-proxy-ssl-header
|
||||||
|
|
|
@ -32,5 +32,3 @@ if SENDGRID_USERNAME and SENDGRID_PASSWORD:
|
||||||
EMAIL_PORT = 587
|
EMAIL_PORT = 587
|
||||||
EMAIL_USE_TLS = True
|
EMAIL_USE_TLS = True
|
||||||
EMAIL_TIMEOUT = 60
|
EMAIL_TIMEOUT = 60
|
||||||
else:
|
|
||||||
EMAIL_BACKEND = "django.core.mail.backends.console.EmailBackend"
|
|
||||||
|
|
|
@ -1,17 +0,0 @@
|
||||||
import dj_database_url
|
|
||||||
|
|
||||||
from .base import *
|
|
||||||
|
|
||||||
# Settings for Railway.app service.
|
|
||||||
# https://docs.railway.app/develop/variables
|
|
||||||
|
|
||||||
APP_URL = os.environ.get("RAILWAY_STATIC_URL")
|
|
||||||
if APP_URL:
|
|
||||||
ALLOWED_HOSTS.append(APP_URL)
|
|
||||||
CSRF_TRUSTED_ORIGINS.append("".join(["https://", APP_URL]))
|
|
||||||
|
|
||||||
|
|
||||||
# Database
|
|
||||||
# https://docs.djangoproject.com/en/4.0/ref/settings/#databases
|
|
||||||
|
|
||||||
DATABASES = {"default": dj_database_url.config(conn_max_age=500)}
|
|
|
@ -1,14 +0,0 @@
|
||||||
import dj_database_url
|
|
||||||
|
|
||||||
from .base import *
|
|
||||||
|
|
||||||
RENDER_EXTERNAL_HOSTNAME = os.environ.get("RENDER_EXTERNAL_HOSTNAME")
|
|
||||||
if RENDER_EXTERNAL_HOSTNAME:
|
|
||||||
ALLOWED_HOSTS.append(RENDER_EXTERNAL_HOSTNAME)
|
|
||||||
CSRF_TRUSTED_ORIGINS.append("".join(["https://", RENDER_EXTERNAL_HOSTNAME]))
|
|
||||||
|
|
||||||
|
|
||||||
# Database
|
|
||||||
# https://docs.djangoproject.com/en/4.0/ref/settings/#databases
|
|
||||||
|
|
||||||
DATABASES = {"default": dj_database_url.config(conn_max_age=600)}
|
|
|
@ -10,6 +10,11 @@ PASSWORD_HASHERS = [
|
||||||
"django.contrib.auth.hashers.MD5PasswordHasher",
|
"django.contrib.auth.hashers.MD5PasswordHasher",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
# Email
|
||||||
|
# https://docs.djangoproject.com/en/4.0/topics/email/
|
||||||
|
|
||||||
|
EMAIL_BACKEND = "django.core.mail.backends.locmem.EmailBackend"
|
||||||
|
|
||||||
# Axes configuration
|
# Axes configuration
|
||||||
# See https://django-axes.readthedocs.io/en/latest/4_configuration.html
|
# See https://django-axes.readthedocs.io/en/latest/4_configuration.html
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,12 @@
|
||||||
|
{% load i18n %}{% autoescape off %}
|
||||||
|
{% blocktranslate %}You're receiving this email because you requested a password reset for your user account at {{ site_name }}.{% endblocktranslate %}
|
||||||
|
|
||||||
|
{% translate "Please go to the following page and choose a new password:" %}
|
||||||
|
{% block reset_link %}
|
||||||
|
{{ protocol }}://{{ domain }}{% url 'babybuddy:password_reset_confirm' uidb64=uid token=token %}
|
||||||
|
{% endblock %}
|
||||||
|
{% translate 'Your username, in case you’ve forgotten:' %} {{ user.get_username }}
|
||||||
|
|
||||||
|
{% translate "Thanks for using Baby Buddy!" %}
|
||||||
|
|
||||||
|
{% endautoescape %}
|
|
@ -22,7 +22,7 @@
|
||||||
</label>
|
</label>
|
||||||
<div class="input-group mb-3 fade-in">
|
<div class="input-group mb-3 fade-in">
|
||||||
<div class="input-group-prepend">
|
<div class="input-group-prepend">
|
||||||
<span class="input-group-text"><i class="icon-envelope" aria-hidden="true"></i></span>
|
<span class="input-group-text"><i class="icon-mail" aria-hidden="true"></i></span>
|
||||||
</div>
|
</div>
|
||||||
{% render_field form.email name='email' class+='form-control' id='email-input-group' placeholder=form.email.label %}
|
{% render_field form.email name='email' class+='form-control' id='email-input-group' placeholder=form.email.label %}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,9 +1,11 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
import re
|
||||||
import time
|
import time
|
||||||
|
|
||||||
from django.test import TestCase, override_settings
|
from django.test import TestCase, override_settings, tag
|
||||||
from django.test import Client as HttpClient
|
from django.test import Client as HttpClient
|
||||||
from django.contrib.auth.models import User
|
from django.contrib.auth.models import User
|
||||||
|
from django.core import mail
|
||||||
from django.core.management import call_command
|
from django.core.management import call_command
|
||||||
|
|
||||||
from faker import Faker
|
from faker import Faker
|
||||||
|
@ -23,7 +25,9 @@ class ViewsTestCase(TestCase):
|
||||||
"username": fake_user["username"],
|
"username": fake_user["username"],
|
||||||
"password": fake.password(),
|
"password": fake.password(),
|
||||||
}
|
}
|
||||||
cls.user = User.objects.create_user(is_superuser=True, **cls.credentials)
|
cls.user = User.objects.create_user(
|
||||||
|
is_superuser=True, email="admin@admin.admin", **cls.credentials
|
||||||
|
)
|
||||||
|
|
||||||
cls.c.login(**cls.credentials)
|
cls.c.login(**cls.credentials)
|
||||||
|
|
||||||
|
@ -73,3 +77,33 @@ class ViewsTestCase(TestCase):
|
||||||
def test_logout_get_fails(self):
|
def test_logout_get_fails(self):
|
||||||
page = self.c.get("/logout/")
|
page = self.c.get("/logout/")
|
||||||
self.assertEqual(page.status_code, 405)
|
self.assertEqual(page.status_code, 405)
|
||||||
|
|
||||||
|
@tag("isolate")
|
||||||
|
def test_password_reset(self):
|
||||||
|
"""
|
||||||
|
Testing this class primarily ensures Baby Buddy's custom templates are correctly
|
||||||
|
configured for Django's password reset flow.
|
||||||
|
"""
|
||||||
|
self.c.logout()
|
||||||
|
|
||||||
|
page = self.c.get("/reset/")
|
||||||
|
self.assertEqual(page.status_code, 200)
|
||||||
|
|
||||||
|
page = self.c.post("/reset/", data={"email": self.user.email}, follow=True)
|
||||||
|
self.assertEqual(page.status_code, 200)
|
||||||
|
|
||||||
|
self.assertEqual(len(mail.outbox), 1)
|
||||||
|
|
||||||
|
path = re.search(
|
||||||
|
"http://testserver(?P<path>[^\\s]+)", mail.outbox[0].body
|
||||||
|
).group("path")
|
||||||
|
page = self.c.get(path, follow=True)
|
||||||
|
self.assertEqual(page.status_code, 200)
|
||||||
|
|
||||||
|
new_password = "xZZVN6z4TvhFg6S"
|
||||||
|
data = {
|
||||||
|
"new_password1": new_password,
|
||||||
|
"new_password2": new_password,
|
||||||
|
}
|
||||||
|
page = self.c.post(page.request["PATH_INFO"], data=data, follow=True)
|
||||||
|
self.assertEqual(page.status_code, 200)
|
||||||
|
|
|
@ -3,7 +3,7 @@ from django.conf.urls.static import static
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
from django.contrib import admin
|
from django.contrib import admin
|
||||||
from django.contrib.auth import views as auth_views
|
from django.contrib.auth import views as auth_views
|
||||||
from django.urls import include, path
|
from django.urls import include, path, reverse_lazy
|
||||||
|
|
||||||
from . import views
|
from . import views
|
||||||
|
|
||||||
|
@ -11,7 +11,28 @@ app_patterns = [
|
||||||
path("login/", auth_views.LoginView.as_view(), name="login"),
|
path("login/", auth_views.LoginView.as_view(), name="login"),
|
||||||
path("logout/", views.LogoutView.as_view(), name="logout"),
|
path("logout/", views.LogoutView.as_view(), name="logout"),
|
||||||
path(
|
path(
|
||||||
"password_reset/", auth_views.PasswordResetView.as_view(), name="password_reset"
|
"reset/",
|
||||||
|
auth_views.PasswordResetView.as_view(
|
||||||
|
success_url=reverse_lazy("babybuddy:password_reset_done")
|
||||||
|
),
|
||||||
|
name="password_reset",
|
||||||
|
),
|
||||||
|
path(
|
||||||
|
"reset/<uidb64>/<token>/",
|
||||||
|
auth_views.PasswordResetConfirmView.as_view(
|
||||||
|
success_url=reverse_lazy("babybuddy:password_reset_complete")
|
||||||
|
),
|
||||||
|
name="password_reset_confirm",
|
||||||
|
),
|
||||||
|
path(
|
||||||
|
"reset/done/",
|
||||||
|
auth_views.PasswordResetDoneView.as_view(),
|
||||||
|
name="password_reset_done",
|
||||||
|
),
|
||||||
|
path(
|
||||||
|
"reset/complete/",
|
||||||
|
auth_views.PasswordResetCompleteView.as_view(),
|
||||||
|
name="password_reset_complete",
|
||||||
),
|
),
|
||||||
path("", views.RootRouter.as_view(), name="root-router"),
|
path("", views.RootRouter.as_view(), name="root-router"),
|
||||||
path("welcome/", views.Welcome.as_view(), name="welcome"),
|
path("welcome/", views.Welcome.as_view(), name="welcome"),
|
||||||
|
|
|
@ -0,0 +1,59 @@
|
||||||
|
# Application
|
||||||
|
|
||||||
|
## `DEBUG`
|
||||||
|
|
||||||
|
*Default:* `False`
|
||||||
|
|
||||||
|
When in debug mode, Baby Buddy will print much more detailed error information
|
||||||
|
for exceptions. This setting should be *False* in production deployments.
|
||||||
|
|
||||||
|
See also [Django's documentation on the DEBUG setting](https://docs.djangoproject.com/en/4.0/ref/settings/#debug).
|
||||||
|
|
||||||
|
## `NAP_START_MAX`
|
||||||
|
|
||||||
|
*Default:* `18:00`
|
||||||
|
|
||||||
|
The maximum nap *start* time (in the instance's time zone). Expects the 24-hour
|
||||||
|
format %H:%M.
|
||||||
|
|
||||||
|
## `NAP_START_MIN`
|
||||||
|
|
||||||
|
*Default:* `06:00`
|
||||||
|
|
||||||
|
The minimum nap *start* time (in the instance's time zone). Expects the 24-hour
|
||||||
|
format %H:%M.
|
||||||
|
|
||||||
|
## `SUB_PATH`
|
||||||
|
|
||||||
|
*Default:* `None`
|
||||||
|
|
||||||
|
If Baby Buddy is hosted in a subdirectory of another server (e.g., `http://www.example.com/babybuddy`)
|
||||||
|
this must be set to the subdirectory path (e.g., `/babybuddy`) for correct handling of
|
||||||
|
application configuration.
|
||||||
|
|
||||||
|
Additional steps are required! See [Subdirectory configuration](../setup/subdirectory.md) for
|
||||||
|
details.
|
||||||
|
|
||||||
|
## `TIME_ZONE`
|
||||||
|
|
||||||
|
*Default:* `UTC`
|
||||||
|
|
||||||
|
The default time zone to use for the instance. This value can be overridden per use from
|
||||||
|
the user settings form.
|
||||||
|
|
||||||
|
**Example value**
|
||||||
|
|
||||||
|
America/Los_Angeles
|
||||||
|
|
||||||
|
**See also**
|
||||||
|
|
||||||
|
[List of tz database time zones](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones)
|
||||||
|
|
||||||
|
## `USE_24_HOUR_TIME_FORMAT`
|
||||||
|
|
||||||
|
*Default:* `False`
|
||||||
|
|
||||||
|
Whether to force 24-hour time format for locales that do not ordinarily use it
|
||||||
|
(e.g. `en`). Support for this feature must be implemented on a per-locale basis.
|
||||||
|
See format files under [`babybuddy/formats`](https://github.com/babybuddy/babybuddy/tree/master/babybuddy/formats)
|
||||||
|
for supported locales.
|
|
@ -0,0 +1,40 @@
|
||||||
|
# Database
|
||||||
|
|
||||||
|
## `DB_ENGINE`
|
||||||
|
|
||||||
|
*Default:* `django.db.backends.postgresql`
|
||||||
|
|
||||||
|
The database engine utilized for the deployment.
|
||||||
|
|
||||||
|
See also [Django's documentation on the ENGINE setting](https://docs.djangoproject.com/en/4.0/ref/settings/#engine).
|
||||||
|
|
||||||
|
## `DB_HOST`
|
||||||
|
|
||||||
|
*Default:* `db`
|
||||||
|
|
||||||
|
The name of the database host for the deployment.
|
||||||
|
|
||||||
|
## `DB_NAME`
|
||||||
|
|
||||||
|
*Default:* `postgres`
|
||||||
|
|
||||||
|
The name of the database table utilized for the deployment.
|
||||||
|
|
||||||
|
## `DB_PASSWORD`
|
||||||
|
|
||||||
|
*Default:* `None`
|
||||||
|
|
||||||
|
The password for the database user for the deployment. In the default example,
|
||||||
|
this is the root PostgreSQL password.
|
||||||
|
|
||||||
|
## `DB_PORT`
|
||||||
|
|
||||||
|
*Default:* `5432`
|
||||||
|
|
||||||
|
The listening port for the database. The default port is 5432 for PostgreSQL.
|
||||||
|
|
||||||
|
## `DB_USER`
|
||||||
|
|
||||||
|
*Default:* `postgres`
|
||||||
|
|
||||||
|
The database username utilized for the deployment.
|
|
@ -0,0 +1,52 @@
|
||||||
|
# Email
|
||||||
|
|
||||||
|
## `EMAIL_HOST`
|
||||||
|
|
||||||
|
*Default:* `None`
|
||||||
|
|
||||||
|
The host to use for sending email. This must be set to enable SMTP email delivery.
|
||||||
|
|
||||||
|
## `EMAIL_HOST_PASSWORD`
|
||||||
|
|
||||||
|
*Default:* (empty)
|
||||||
|
|
||||||
|
Password to use for the SMTP server defined in `EMAIL_HOST`. This setting is used in
|
||||||
|
conjunction with `EMAIL_HOST_USER` when authenticating to the SMTP server.
|
||||||
|
|
||||||
|
## `EMAIL_HOST_USER`
|
||||||
|
|
||||||
|
*Default:* (empty)
|
||||||
|
|
||||||
|
Username to use for the SMTP server defined in `EMAIL_HOST`.
|
||||||
|
|
||||||
|
## `EMAIL_PORT`
|
||||||
|
|
||||||
|
*Default:* 25
|
||||||
|
|
||||||
|
Port to use for the SMTP server defined in `EMAIL_HOST`.
|
||||||
|
|
||||||
|
## `EMAIL_USE_TLS`
|
||||||
|
|
||||||
|
*Default:* `False`
|
||||||
|
|
||||||
|
Whether to use a TLS (secure) connection when talking to the SMTP server.
|
||||||
|
|
||||||
|
## `EMAIL_USE_SSL`
|
||||||
|
|
||||||
|
*Default:* `False`
|
||||||
|
|
||||||
|
Whether to use an implicit TLS (secure) connection when talking to the SMTP server.
|
||||||
|
|
||||||
|
## `EMAIL_SSL_KEYFILE`
|
||||||
|
|
||||||
|
*Default:* `None`
|
||||||
|
|
||||||
|
f `EMAIL_USE_SSL` or `EMAIL_USE_TLS` is `True`, you can optionally specify the path to a
|
||||||
|
PEM-formatted certificate chain file to use for the SSL connection.
|
||||||
|
|
||||||
|
## `EMAIL_SSL_CERTFILE`
|
||||||
|
|
||||||
|
*Default:* `None`
|
||||||
|
|
||||||
|
If `EMAIL_USE_SSL` or `EMAIL_USE_TLS` is `True`, you can optionally specify the path to
|
||||||
|
a PEM-formatted private key file to use for the SSL connection.
|
|
@ -0,0 +1,6 @@
|
||||||
|
# Customization
|
||||||
|
|
||||||
|
Environment variables can be used to define a number of configuration settings.
|
||||||
|
Baby Buddy will check the application directory structure for an `.env` file or
|
||||||
|
take these variables from the system environment. **System environment variables
|
||||||
|
take precedence over the contents of an `.env` file.**
|
|
@ -0,0 +1,63 @@
|
||||||
|
# Security
|
||||||
|
|
||||||
|
## `ALLOWED_HOSTS`
|
||||||
|
|
||||||
|
*Default:* `*` (any host)
|
||||||
|
|
||||||
|
Set this variable to a single host or comma-separated list of hosts without spaces.
|
||||||
|
This should *always* be set to a specific host or hosts in production deployments.
|
||||||
|
|
||||||
|
Do not include schemes ("http" or "https") with this setting.
|
||||||
|
|
||||||
|
**Example value**
|
||||||
|
|
||||||
|
baby.example.test,baby.example2.test
|
||||||
|
|
||||||
|
**See also**
|
||||||
|
|
||||||
|
- [Django's documentation on the ALLOWED_HOSTS setting](https://docs.djangoproject.com/en/4.0/ref/settings/#allowed-hosts)
|
||||||
|
- [`CSRF_TRUSTED_ORIGINS`](#csrf_trusted_origins)
|
||||||
|
- [`SECURE_PROXY_SSL_HEADER`](#secure_proxy_ssl_header)
|
||||||
|
|
||||||
|
## `CSRF_TRUSTED_ORIGINS`
|
||||||
|
|
||||||
|
*Default:* `None`
|
||||||
|
|
||||||
|
If Baby Buddy is behind a proxy, you may need add all possible origins to this setting
|
||||||
|
for form submission to work correctly. Separate multiple origins with commas.
|
||||||
|
|
||||||
|
Each entry must contain both the scheme (http, https) and fully-qualified domain name.
|
||||||
|
|
||||||
|
**Example value**
|
||||||
|
|
||||||
|
https://baby.example.test,http://baby.example2.test,http://babybudy
|
||||||
|
|
||||||
|
**See also**
|
||||||
|
|
||||||
|
- [Django's documentation on the `CSRF_TRUSTED_ORIGINS` setting](https://docs.djangoproject.com/en/4.0/ref/settings/#std:setting-CSRF_TRUSTED_ORIGINS)
|
||||||
|
- [`ALLOWED_HOSTS`](#allowed_hosts)
|
||||||
|
- [`SECURE_PROXY_SSL_HEADER`](#secure_proxy_ssl_header)
|
||||||
|
|
||||||
|
## `SECRET_KEY`
|
||||||
|
|
||||||
|
*Default:* `None`
|
||||||
|
|
||||||
|
A random, unique string must be set as the "secret key" before Baby Buddy can
|
||||||
|
be deployed and run.
|
||||||
|
|
||||||
|
See also [Django's documentation on the SECRET_KEY setting](https://docs.djangoproject.com/en/4.0/ref/settings/#secret-key).
|
||||||
|
|
||||||
|
## `SECURE_PROXY_SSL_HEADER`
|
||||||
|
|
||||||
|
*Default:* `None`
|
||||||
|
|
||||||
|
If Baby Buddy is behind a proxy, you may need to set this to `True` in order to
|
||||||
|
trust the `X-Forwarded-Proto` header that comes from your proxy, and any time
|
||||||
|
its value is "https". This guarantees the request is secure (i.e., it originally
|
||||||
|
came in via HTTPS).
|
||||||
|
|
||||||
|
**See also**
|
||||||
|
|
||||||
|
- [Django's documentation on the SECURE_PROXY_SSL_HEADER setting](https://docs.djangoproject.com/en/4.0/ref/settings/#secure-proxy-ssl-header)
|
||||||
|
- [`ALLOWED_HOSTS`](#allowed_hosts)
|
||||||
|
- [`CSRF_TRUSTED_ORIGINS`](#csrf_trusted_origins)
|
|
@ -0,0 +1,41 @@
|
||||||
|
# Storage
|
||||||
|
|
||||||
|
## `ALLOW_UPLOADS`
|
||||||
|
|
||||||
|
*Default:* `True`
|
||||||
|
|
||||||
|
Whether to allow uploads (e.g., of Child photos). For some deployments (Heroku)
|
||||||
|
this setting will default to False due to the lack of available persistent storage.
|
||||||
|
|
||||||
|
## `AWS_ACCESS_KEY_ID`
|
||||||
|
|
||||||
|
*Default:* `None`
|
||||||
|
|
||||||
|
Required to access your AWS S3 bucket, should be uniquely generated per bucket
|
||||||
|
for security.
|
||||||
|
|
||||||
|
See also: [`AWS_STORAGE_BUCKET_NAME`](#aws_storage_bucket_name)
|
||||||
|
|
||||||
|
## `AWS_SECRET_ACCESS_KEY`
|
||||||
|
|
||||||
|
*Default:* `None`
|
||||||
|
|
||||||
|
Required to access your AWS S3 bucket, should be uniquely generated per bucket
|
||||||
|
for security.
|
||||||
|
|
||||||
|
See also: [`AWS_STORAGE_BUCKET_NAME`](#aws_storage_bucket_name)
|
||||||
|
|
||||||
|
## `AWS_STORAGE_BUCKET_NAME`
|
||||||
|
|
||||||
|
*Default:* `None`
|
||||||
|
|
||||||
|
If you would like to use AWS S3 for storage on ephemeral storage platforms like
|
||||||
|
Heroku you will need to create a bucket and add its name. See django-storages'
|
||||||
|
[Amazon S3 documentation](https://django-storages.readthedocs.io/en/latest/backends/amazon-S3.html).
|
||||||
|
|
||||||
|
## `AWS_S3_ENDPOINT_URL`
|
||||||
|
|
||||||
|
*Default:* `None`
|
||||||
|
|
||||||
|
Custom URL to use when connecting to S3, including scheme.
|
||||||
|
This allows to use a S3-compatible storage service of another provider than AWS.
|
|
@ -56,7 +56,7 @@ information and steps below to set up a local development environment for Baby B
|
||||||
```
|
```
|
||||||
|
|
||||||
This process will differ based on the host OS. The above example is for
|
This process will differ based on the host OS. The above example is for
|
||||||
Linux-based systems. See [Configuration](../setup/configuration.md) for other
|
Linux-based systems. See [Configuration](../configuration/intro.md) for other
|
||||||
settings and methods for defining them.
|
settings and methods for defining them.
|
||||||
|
|
||||||
1. Migrate the database
|
1. Migrate the database
|
||||||
|
|
|
@ -1,205 +0,0 @@
|
||||||
# Configuration
|
|
||||||
|
|
||||||
Environment variables can be used to define a number of configuration settings.
|
|
||||||
Baby Buddy will check the application directory structure for an `.env` file or
|
|
||||||
take these variables from the system environment. **System environment variables
|
|
||||||
take precedence over the contents of an `.env` file.**
|
|
||||||
|
|
||||||
## `ALLOWED_HOSTS`
|
|
||||||
|
|
||||||
*Default:* `*` (any host)
|
|
||||||
|
|
||||||
Set this variable to a single host or comma-separated list of hosts without spaces.
|
|
||||||
This should *always* be set to a specific host or hosts in production deployments.
|
|
||||||
|
|
||||||
Do not include schemes ("http" or "https") with this setting.
|
|
||||||
|
|
||||||
**Example value**
|
|
||||||
|
|
||||||
baby.example.test,baby.example2.test
|
|
||||||
|
|
||||||
**See also**
|
|
||||||
|
|
||||||
- [Django's documentation on the ALLOWED_HOSTS setting](https://docs.djangoproject.com/en/4.0/ref/settings/#allowed-hosts)
|
|
||||||
- [`CSRF_TRUSTED_ORIGINS`](#csrf_trusted_origins)
|
|
||||||
- [`SECURE_PROXY_SSL_HEADER`](#secure_proxy_ssl_header)
|
|
||||||
|
|
||||||
## `ALLOW_UPLOADS`
|
|
||||||
|
|
||||||
*Default:* `True`
|
|
||||||
|
|
||||||
Whether to allow uploads (e.g., of Child photos). For some deployments (Heroku)
|
|
||||||
this setting will default to False due to the lack of available persistent storage.
|
|
||||||
|
|
||||||
## `AWS_ACCESS_KEY_ID`
|
|
||||||
|
|
||||||
*Default:* `None`
|
|
||||||
|
|
||||||
Required to access your AWS S3 bucket, should be uniquely generated per bucket
|
|
||||||
for security.
|
|
||||||
|
|
||||||
See also: [`AWS_STORAGE_BUCKET_NAME`](#aws_storage_bucket_name)
|
|
||||||
|
|
||||||
## `AWS_SECRET_ACCESS_KEY`
|
|
||||||
|
|
||||||
*Default:* `None`
|
|
||||||
|
|
||||||
Required to access your AWS S3 bucket, should be uniquely generated per bucket
|
|
||||||
for security.
|
|
||||||
|
|
||||||
See also: [`AWS_STORAGE_BUCKET_NAME`](#aws_storage_bucket_name)
|
|
||||||
|
|
||||||
## `AWS_STORAGE_BUCKET_NAME`
|
|
||||||
|
|
||||||
*Default:* `None`
|
|
||||||
|
|
||||||
If you would like to use AWS S3 for storage on ephemeral storage platforms like
|
|
||||||
Heroku you will need to create a bucket and add its name. See django-storages'
|
|
||||||
[Amazon S3 documentation](https://django-storages.readthedocs.io/en/latest/backends/amazon-S3.html).
|
|
||||||
|
|
||||||
## `AWS_S3_ENDPOINT_URL`
|
|
||||||
|
|
||||||
*Default:* `None`
|
|
||||||
|
|
||||||
Custom URL to use when connecting to S3, including scheme.
|
|
||||||
This allows to use a S3-compatible storage service of another provider than AWS.
|
|
||||||
|
|
||||||
## `CSRF_TRUSTED_ORIGINS`
|
|
||||||
|
|
||||||
*Default:* `None`
|
|
||||||
|
|
||||||
If Baby Buddy is behind a proxy, you may need add all possible origins to this setting
|
|
||||||
for form submission to work correctly. Separate multiple origins with commas.
|
|
||||||
|
|
||||||
Each entry must contain both the scheme (http, https) and fully-qualified domain name.
|
|
||||||
|
|
||||||
**Example value**
|
|
||||||
|
|
||||||
https://baby.example.test,http://baby.example2.test,http://babybudy
|
|
||||||
|
|
||||||
**See also**
|
|
||||||
|
|
||||||
- [Django's documentation on the `CSRF_TRUSTED_ORIGINS` setting](https://docs.djangoproject.com/en/4.0/ref/settings/#std:setting-CSRF_TRUSTED_ORIGINS)
|
|
||||||
- [`ALLOWED_HOSTS`](#allowed_hosts)
|
|
||||||
- [`SECURE_PROXY_SSL_HEADER`](#secure_proxy_ssl_header)
|
|
||||||
|
|
||||||
## `DB_ENGINE`
|
|
||||||
|
|
||||||
*Default:* `django.db.backends.postgresql`
|
|
||||||
|
|
||||||
The database engine utilized for the deployment.
|
|
||||||
|
|
||||||
See also [Django's documentation on the ENGINE setting](https://docs.djangoproject.com/en/4.0/ref/settings/#engine).
|
|
||||||
|
|
||||||
## `DB_HOST`
|
|
||||||
|
|
||||||
*Default:* `db`
|
|
||||||
|
|
||||||
The name of the database host for the deployment.
|
|
||||||
|
|
||||||
## `DB_NAME`
|
|
||||||
|
|
||||||
*Default:* `postgres`
|
|
||||||
|
|
||||||
The name of the database table utilized for the deployment.
|
|
||||||
|
|
||||||
## `DB_PASSWORD`
|
|
||||||
|
|
||||||
*Default:* `None`
|
|
||||||
|
|
||||||
The password for the database user for the deployment. In the default example,
|
|
||||||
this is the root PostgreSQL password.
|
|
||||||
|
|
||||||
## `DB_PORT`
|
|
||||||
|
|
||||||
*Default:* `5432`
|
|
||||||
|
|
||||||
The listening port for the database. The default port is 5432 for PostgreSQL.
|
|
||||||
|
|
||||||
## `DB_USER`
|
|
||||||
|
|
||||||
*Default:* `postgres`
|
|
||||||
|
|
||||||
The database username utilized for the deployment.
|
|
||||||
|
|
||||||
## `DEBUG`
|
|
||||||
|
|
||||||
*Default:* `False`
|
|
||||||
|
|
||||||
When in debug mode, Baby Buddy will print much more detailed error information
|
|
||||||
for exceptions. This setting should be *False* in production deployments.
|
|
||||||
|
|
||||||
See also [Django's documentation on the DEBUG setting](https://docs.djangoproject.com/en/4.0/ref/settings/#debug).
|
|
||||||
|
|
||||||
## `NAP_START_MAX`
|
|
||||||
|
|
||||||
*Default:* `18:00`
|
|
||||||
|
|
||||||
The maximum nap *start* time (in the instance's time zone). Expects the 24-hour
|
|
||||||
format %H:%M.
|
|
||||||
|
|
||||||
## `NAP_START_MIN`
|
|
||||||
|
|
||||||
*Default:* `06:00`
|
|
||||||
|
|
||||||
The minimum nap *start* time (in the instance's time zone). Expects the 24-hour
|
|
||||||
format %H:%M.
|
|
||||||
|
|
||||||
## `SECRET_KEY`
|
|
||||||
|
|
||||||
*Default:* `None`
|
|
||||||
|
|
||||||
A random, unique string must be set as the "secret key" before Baby Buddy can
|
|
||||||
be deployed and run.
|
|
||||||
|
|
||||||
See also [Django's documentation on the SECRET_KEY setting](https://docs.djangoproject.com/en/4.0/ref/settings/#secret-key).
|
|
||||||
|
|
||||||
## `SECURE_PROXY_SSL_HEADER`
|
|
||||||
|
|
||||||
*Default:* `None`
|
|
||||||
|
|
||||||
If Baby Buddy is behind a proxy, you may need to set this to `True` in order to
|
|
||||||
trust the `X-Forwarded-Proto` header that comes from your proxy, and any time
|
|
||||||
its value is "https". This guarantees the request is secure (i.e., it originally
|
|
||||||
came in via HTTPS).
|
|
||||||
|
|
||||||
**See also**
|
|
||||||
|
|
||||||
- [Django's documentation on the SECURE_PROXY_SSL_HEADER setting](https://docs.djangoproject.com/en/4.0/ref/settings/#secure-proxy-ssl-header)
|
|
||||||
- [`ALLOWED_HOSTS`](#allowed_hosts)
|
|
||||||
- [`CSRF_TRUSTED_ORIGINS`](#csrf_trusted_origins)
|
|
||||||
|
|
||||||
## `SUB_PATH`
|
|
||||||
|
|
||||||
*Default:* `None`
|
|
||||||
|
|
||||||
If Baby Buddy is hosted in a subdirectory of another server (e.g., `http://www.example.com/babybuddy`)
|
|
||||||
this must be set to the subdirectory path (e.g., `/babybuddy`) for correct handling of
|
|
||||||
application configuration.
|
|
||||||
|
|
||||||
Additional steps are required! See [Subdirectory configuration](subdirectory.md) for
|
|
||||||
details.
|
|
||||||
|
|
||||||
## `TIME_ZONE`
|
|
||||||
|
|
||||||
*Default:* `UTC`
|
|
||||||
|
|
||||||
The default time zone to use for the instance. This value can be overridden per use from
|
|
||||||
the user settings form.
|
|
||||||
|
|
||||||
**Example value**
|
|
||||||
|
|
||||||
America/Los_Angeles
|
|
||||||
|
|
||||||
**See also**
|
|
||||||
|
|
||||||
[List of tz database time zones](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones)
|
|
||||||
|
|
||||||
## `USE_24_HOUR_TIME_FORMAT`
|
|
||||||
|
|
||||||
*Default:* `False`
|
|
||||||
|
|
||||||
Whether to force 24-hour time format for locales that do not ordinarily use it
|
|
||||||
(e.g. `en`). Support for this feature must be implemented on a per-locale basis.
|
|
||||||
See format files under [`babybuddy/formats`](https://github.com/babybuddy/babybuddy/tree/master/babybuddy/formats)
|
|
||||||
for supported locales.
|
|
|
@ -4,7 +4,7 @@ The default username and password for Baby Buddy is `admin`/`admin`. For any
|
||||||
deployment, **log in and change the default password immediately**.
|
deployment, **log in and change the default password immediately**.
|
||||||
|
|
||||||
Many of Baby Buddy's configuration settings can be controlled using environment
|
Many of Baby Buddy's configuration settings can be controlled using environment
|
||||||
variables - see [Configuration](configuration.md) for detailed information.
|
variables - see [Configuration](../configuration/intro.md) for detailed information.
|
||||||
|
|
||||||
## Docker
|
## Docker
|
||||||
|
|
||||||
|
@ -54,7 +54,7 @@ heroku config:set SECRET_KEY=<CHANGE TO SOMETHING RANDOM>
|
||||||
heroku config:set TIME_ZONE=<DESIRED DEFAULT TIMEZONE>
|
heroku config:set TIME_ZONE=<DESIRED DEFAULT TIMEZONE>
|
||||||
```
|
```
|
||||||
|
|
||||||
See [Configuration](configuration.md) for other settings that can be controlled
|
See [Configuration](../configuration/intro.md) for other settings that can be controlled
|
||||||
by `heroku config:set`.
|
by `heroku config:set`.
|
||||||
|
|
||||||
After an initial push, execute the following commands:
|
After an initial push, execute the following commands:
|
||||||
|
@ -83,7 +83,7 @@ TIME_ZONE=<DESIRED DEFAULT TIMEZONE>
|
||||||
AWS_STORAGE_BUCKET_NAME=<DESIRED BUCKET NAME> # only if file storage is needed
|
AWS_STORAGE_BUCKET_NAME=<DESIRED BUCKET NAME> # only if file storage is needed
|
||||||
```
|
```
|
||||||
|
|
||||||
See [Configuration](configuration.md) for other environment variables available
|
See [Configuration](../configuration/intro.md) for other environment variables available
|
||||||
for your instance of babybuddy.
|
for your instance of babybuddy.
|
||||||
|
|
||||||
After that, you just have to push babybuddy code repository to the Git
|
After that, you just have to push babybuddy code repository to the Git
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Proxy configuration
|
# Proxy
|
||||||
|
|
||||||
Configuring Baby Buddy to run behind a proxy may require some additional configuration
|
Configuring Baby Buddy to run behind a proxy may require some additional configuration
|
||||||
depending on the individual proxy configuration. Baby Buddy's environment variables for
|
depending on the individual proxy configuration. Baby Buddy's environment variables for
|
||||||
|
@ -7,7 +7,7 @@ and tweaking of settings.
|
||||||
|
|
||||||
## Important configuration
|
## Important configuration
|
||||||
|
|
||||||
### [`CSRF_TRUSTED_ORIGINS`](../configuration#csrf_trusted_origins)
|
### [`CSRF_TRUSTED_ORIGINS`](../configuration/security.md#csrf_trusted_origins)
|
||||||
|
|
||||||
[Cross Site Request Forgery](https://owasp.org/www-community/attacks/csrf) protection is
|
[Cross Site Request Forgery](https://owasp.org/www-community/attacks/csrf) protection is
|
||||||
an important way to prevent malicious users from sending fake requests to Baby Buddy to
|
an important way to prevent malicious users from sending fake requests to Baby Buddy to
|
||||||
|
@ -33,7 +33,7 @@ Note: multiple origins can be added by separating origins with commas. E.g.:
|
||||||
CSRF_TRUSTED_ORIGINS=https://baby.example.com,https://baby.example.org
|
CSRF_TRUSTED_ORIGINS=https://baby.example.com,https://baby.example.org
|
||||||
```
|
```
|
||||||
|
|
||||||
### [`SECURE_PROXY_SSL_HEADER`](../configuration#secure_proxy_ssl_header)
|
### [`SECURE_PROXY_SSL_HEADER`](../configuration/security.md#secure_proxy_ssl_header)
|
||||||
|
|
||||||
If Baby Buddy is configured behind a standard HTTP proxy requests will always been seen
|
If Baby Buddy is configured behind a standard HTTP proxy requests will always been seen
|
||||||
as insecure even if the exposed public connection uses HTTPS between the client and
|
as insecure even if the exposed public connection uses HTTPS between the client and
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# HTTPS/SSL configuration
|
# HTTPS/SSL
|
||||||
|
|
||||||
The example Docker and manual deployment methods do not include HTTPS/SSL by default.
|
The example Docker and manual deployment methods do not include HTTPS/SSL by default.
|
||||||
Additional tools and configuration are required to add HTTPS support.
|
Additional tools and configuration are required to add HTTPS support.
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Subdirectory configuration
|
# Subdirectory
|
||||||
|
|
||||||
Baby Buddy's default configuration assumes deployment in to the root of a web server.
|
Baby Buddy's default configuration assumes deployment in to the root of a web server.
|
||||||
Some additional configuration is required to install Baby Buddy in a subdirectory of a
|
Some additional configuration is required to install Baby Buddy in a subdirectory of a
|
||||||
|
@ -10,7 +10,7 @@ Baby Buddy added full support for subdirectory installing in version **1.10.2**.
|
||||||
it is still possible to do a subdirectory installation in older versions of Baby Buddy
|
it is still possible to do a subdirectory installation in older versions of Baby Buddy
|
||||||
it is not recommended.
|
it is not recommended.
|
||||||
|
|
||||||
## [`SUB_PATH`](../configuration#sub_path)
|
## [`SUB_PATH`](../configuration/application.md#sub_path)
|
||||||
|
|
||||||
Set this environment variable to the subdirectory of the Baby Buddy installation. E.g.,
|
Set this environment variable to the subdirectory of the Baby Buddy installation. E.g.,
|
||||||
`SUB_PATH=/babybuddy` if the desired URL is `http://www.example.com/babybuddy`).
|
`SUB_PATH=/babybuddy` if the desired URL is `http://www.example.com/babybuddy`).
|
||||||
|
@ -28,7 +28,7 @@ paths used in these examples also assume a configuration based on the
|
||||||
### uWSGI
|
### uWSGI
|
||||||
|
|
||||||
In the app configuration replace the `module` declaration with a `mount` declaration and
|
In the app configuration replace the `module` declaration with a `mount` declaration and
|
||||||
add the `manage-script-name` declaration and [`SUB_PATH`](../configuration#sub_path)
|
add the `manage-script-name` declaration and [`SUB_PATH`](../configuration/application.md#sub_path)
|
||||||
environment variable to the `[uwsgi]` configuration block.
|
environment variable to the `[uwsgi]` configuration block.
|
||||||
|
|
||||||
``` diff
|
``` diff
|
||||||
|
|
|
@ -84,7 +84,8 @@ module.exports = {
|
||||||
},
|
},
|
||||||
testsConfig: {
|
testsConfig: {
|
||||||
isolated: [
|
isolated: [
|
||||||
'babybuddy.tests.formats.tests_en_us.FormatsTestCase.test_use_24_hour_time_format'
|
'babybuddy.tests.formats.tests_en_us.FormatsTestCase.test_use_24_hour_time_format',
|
||||||
|
'babybuddy.tests.tests_views.ViewsTestCase.test_password_reset'
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
watchConfig: {
|
watchConfig: {
|
||||||
|
|
|
@ -244,7 +244,7 @@ function test(cb) {
|
||||||
// Run isolated tests.
|
// Run isolated tests.
|
||||||
config.testsConfig.isolated.forEach(function(test_name) {
|
config.testsConfig.isolated.forEach(function(test_name) {
|
||||||
try {
|
try {
|
||||||
es('pipenv run python manage.py test ' + test_name, {stdio: 'inherit'});
|
es('pipenv run python manage.py test --settings=babybuddy.settings.test ' + test_name, {stdio: 'inherit'});
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error(error);
|
console.error(error);
|
||||||
cb();
|
cb();
|
||||||
|
|
|
@ -2,7 +2,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Baby Buddy\n"
|
"Project-Id-Version: Baby Buddy\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-06-17 22:25+0000\n"
|
"POT-Creation-Date: 2022-07-30 21:13+0000\n"
|
||||||
"Language: ca\n"
|
"Language: ca\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
@ -11,12 +11,12 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: babybuddy/admin.py:12 babybuddy/admin.py:13
|
#: babybuddy/admin.py:12 babybuddy/admin.py:13
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:327
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:324
|
||||||
#: babybuddy/templates/babybuddy/user_settings_form.html:8
|
#: babybuddy/templates/babybuddy/user_settings_form.html:8
|
||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr "Opcions"
|
msgstr "Opcions"
|
||||||
|
|
||||||
#: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:92
|
#: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:89
|
||||||
#: babybuddy/templates/babybuddy/user_settings_form.html:61
|
#: babybuddy/templates/babybuddy/user_settings_form.html:61
|
||||||
#: dashboard/templates/dashboard/child.html:4
|
#: dashboard/templates/dashboard/child.html:4
|
||||||
#: dashboard/templates/dashboard/child.html:9
|
#: dashboard/templates/dashboard/child.html:9
|
||||||
|
@ -179,7 +179,7 @@ msgstr "Turc"
|
||||||
|
|
||||||
#: babybuddy/templates/admin/base_site.html:4
|
#: babybuddy/templates/admin/base_site.html:4
|
||||||
#: babybuddy/templates/admin/base_site.html:7
|
#: babybuddy/templates/admin/base_site.html:7
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:339
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:336
|
||||||
msgid "Database Admin"
|
msgid "Database Admin"
|
||||||
msgstr "BBDD Admin"
|
msgstr "BBDD Admin"
|
||||||
|
|
||||||
|
@ -215,30 +215,25 @@ msgstr "<strong>Error:</strong> %(error)s"
|
||||||
msgid "<strong>Error:</strong> Some fields have errors. See below for details."
|
msgid "<strong>Error:</strong> Some fields have errors. See below for details."
|
||||||
msgstr "<strong>Error:</strong> Alguns camps amb errors. Veure detalls."
|
msgstr "<strong>Error:</strong> Alguns camps amb errors. Veure detalls."
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:32
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:48 core/models.py:248
|
||||||
#: core/templates/core/timer_nav.html:18
|
|
||||||
msgid "Quick Start Timer"
|
|
||||||
msgstr "Temporitzador Ràpid"
|
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:51 core/models.py:248
|
|
||||||
#: core/models.py:252
|
#: core/models.py:252
|
||||||
msgid "Diaper Change"
|
msgid "Diaper Change"
|
||||||
msgstr "Canvi Bolquers"
|
msgstr "Canvi Bolquers"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:57
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:54
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:262 core/models.py:312
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:259 core/models.py:312
|
||||||
#: core/models.py:316 core/templates/core/timer_detail.html:43
|
#: core/models.py:316 core/templates/core/timer_detail.html:43
|
||||||
msgid "Feeding"
|
msgid "Feeding"
|
||||||
msgstr "Biberó"
|
msgstr "Biberó"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:63
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:60
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:138 core/models.py:396
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:135 core/models.py:396
|
||||||
#: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29
|
#: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29
|
||||||
msgid "Note"
|
msgid "Note"
|
||||||
msgstr "Nota"
|
msgstr "Nota"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:69
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:66
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:283
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:280
|
||||||
#: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467
|
#: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467
|
||||||
#: core/models.py:468 core/models.py:471
|
#: core/models.py:468 core/models.py:471
|
||||||
#: core/templates/core/sleep_confirm_delete.html:7
|
#: core/templates/core/sleep_confirm_delete.html:7
|
||||||
|
@ -248,8 +243,8 @@ msgstr "Nota"
|
||||||
msgid "Sleep"
|
msgid "Sleep"
|
||||||
msgstr "Dormir"
|
msgstr "Dormir"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:75
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:72
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:296
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:293
|
||||||
#: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647
|
#: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647
|
||||||
#: core/models.py:648 core/models.py:651
|
#: core/models.py:648 core/models.py:651
|
||||||
#: core/templates/core/timer_detail.html:59
|
#: core/templates/core/timer_detail.html:59
|
||||||
|
@ -261,15 +256,15 @@ msgstr "Dormir"
|
||||||
msgid "Tummy Time"
|
msgid "Tummy Time"
|
||||||
msgstr "Temps de panxa"
|
msgstr "Temps de panxa"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:99
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:96
|
||||||
#: core/templates/timeline/timeline.html:4
|
#: core/templates/timeline/timeline.html:4
|
||||||
#: core/templates/timeline/timeline.html:7
|
#: core/templates/timeline/timeline.html:7
|
||||||
#: dashboard/templates/dashboard/child_button_group.html:9
|
#: dashboard/templates/dashboard/child_button_group.html:9
|
||||||
msgid "Timeline"
|
msgid "Timeline"
|
||||||
msgstr "Línia de Temps"
|
msgstr "Línia de Temps"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:110
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:107
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:118 core/models.py:188
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:115 core/models.py:188
|
||||||
#: core/templates/core/child_confirm_delete.html:7
|
#: core/templates/core/child_confirm_delete.html:7
|
||||||
#: core/templates/core/child_detail.html:7
|
#: core/templates/core/child_detail.html:7
|
||||||
#: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4
|
#: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4
|
||||||
|
@ -279,7 +274,7 @@ msgstr "Línia de Temps"
|
||||||
msgid "Children"
|
msgid "Children"
|
||||||
msgstr "Nadons"
|
msgstr "Nadons"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:124 core/models.py:137
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:121 core/models.py:137
|
||||||
#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335
|
#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335
|
||||||
#: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450
|
#: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450
|
||||||
#: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671
|
#: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671
|
||||||
|
@ -298,7 +293,7 @@ msgstr "Nadons"
|
||||||
msgid "Child"
|
msgid "Child"
|
||||||
msgstr "Nadó"
|
msgstr "Nadó"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:132 core/models.py:143
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:129 core/models.py:143
|
||||||
#: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373
|
#: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373
|
||||||
#: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511
|
#: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511
|
||||||
#: core/models.py:677 core/templates/core/note_confirm_delete.html:7
|
#: core/models.py:677 core/templates/core/note_confirm_delete.html:7
|
||||||
|
@ -307,11 +302,11 @@ msgstr "Nadó"
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Notes"
|
msgstr "Notes"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:152
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:149
|
||||||
msgid "Measurements"
|
msgid "Measurements"
|
||||||
msgstr "Mides"
|
msgstr "Mides"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:160 core/models.py:139
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:157 core/models.py:139
|
||||||
#: core/models.py:151 core/models.py:152 core/models.py:155
|
#: core/models.py:151 core/models.py:152 core/models.py:155
|
||||||
#: core/templates/core/bmi_confirm_delete.html:7
|
#: 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_form.html:13 core/templates/core/bmi_list.html:4
|
||||||
|
@ -322,11 +317,11 @@ msgstr "Mides"
|
||||||
msgid "BMI"
|
msgid "BMI"
|
||||||
msgstr "BMI"
|
msgstr "BMI"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:166
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:163
|
||||||
msgid "BMI entry"
|
msgid "BMI entry"
|
||||||
msgstr "Entrada BMI"
|
msgstr "Entrada BMI"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:174 core/models.py:338
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:171 core/models.py:338
|
||||||
#: core/models.py:351 core/models.py:352 core/models.py:355
|
#: core/models.py:351 core/models.py:352 core/models.py:355
|
||||||
#: core/templates/core/head_circumference_confirm_delete.html:7
|
#: core/templates/core/head_circumference_confirm_delete.html:7
|
||||||
#: core/templates/core/head_circumference_form.html:13
|
#: core/templates/core/head_circumference_form.html:13
|
||||||
|
@ -342,11 +337,11 @@ msgstr "Entrada BMI"
|
||||||
msgid "Head Circumference"
|
msgid "Head Circumference"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:180
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:177
|
||||||
msgid "Head Circumference entry"
|
msgid "Head Circumference entry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:188 core/models.py:369
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:185 core/models.py:369
|
||||||
#: core/models.py:381 core/models.py:382 core/models.py:385
|
#: core/models.py:381 core/models.py:382 core/models.py:385
|
||||||
#: core/templates/core/height_confirm_delete.html:7
|
#: core/templates/core/height_confirm_delete.html:7
|
||||||
#: core/templates/core/height_form.html:13
|
#: core/templates/core/height_form.html:13
|
||||||
|
@ -361,11 +356,11 @@ msgstr ""
|
||||||
msgid "Height"
|
msgid "Height"
|
||||||
msgstr "Alçada"
|
msgstr "Alçada"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:194
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:191
|
||||||
msgid "Height entry"
|
msgid "Height entry"
|
||||||
msgstr "Entrada Alçada"
|
msgstr "Entrada Alçada"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:202 core/models.py:506
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:199 core/models.py:506
|
||||||
#: core/models.py:519 core/models.py:520 core/models.py:523
|
#: core/models.py:519 core/models.py:520 core/models.py:523
|
||||||
#: core/templates/core/temperature_confirm_delete.html:7
|
#: core/templates/core/temperature_confirm_delete.html:7
|
||||||
#: core/templates/core/temperature_form.html:13
|
#: core/templates/core/temperature_form.html:13
|
||||||
|
@ -376,11 +371,11 @@ msgstr "Entrada Alçada"
|
||||||
msgid "Temperature"
|
msgid "Temperature"
|
||||||
msgstr "Temperatura"
|
msgstr "Temperatura"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:208
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:205
|
||||||
msgid "Temperature reading"
|
msgid "Temperature reading"
|
||||||
msgstr "Lectura Temperatura"
|
msgstr "Lectura Temperatura"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:216 core/models.py:673
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:213 core/models.py:673
|
||||||
#: core/models.py:685 core/models.py:686 core/models.py:689
|
#: core/models.py:685 core/models.py:686 core/models.py:689
|
||||||
#: core/templates/core/weight_confirm_delete.html:7
|
#: core/templates/core/weight_confirm_delete.html:7
|
||||||
#: core/templates/core/weight_form.html:13
|
#: core/templates/core/weight_form.html:13
|
||||||
|
@ -395,24 +390,24 @@ msgstr "Lectura Temperatura"
|
||||||
msgid "Weight"
|
msgid "Weight"
|
||||||
msgstr "Pes"
|
msgstr "Pes"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:222
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:219
|
||||||
msgid "Weight entry"
|
msgid "Weight entry"
|
||||||
msgstr "Entrada Pes"
|
msgstr "Entrada Pes"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:236
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:233
|
||||||
msgid "Activities"
|
msgid "Activities"
|
||||||
msgstr "Activitats"
|
msgstr "Activitats"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:243
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:240
|
||||||
#: reports/graphs/diaperchange_lifetimes.py:27
|
#: reports/graphs/diaperchange_lifetimes.py:27
|
||||||
msgid "Changes"
|
msgid "Changes"
|
||||||
msgstr "Canvis"
|
msgstr "Canvis"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:249
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:246
|
||||||
msgid "Change"
|
msgid "Change"
|
||||||
msgstr "Canvi"
|
msgstr "Canvi"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:256
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:253
|
||||||
#: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313
|
#: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313
|
||||||
#: core/templates/core/feeding_confirm_delete.html:7
|
#: core/templates/core/feeding_confirm_delete.html:7
|
||||||
#: core/templates/core/feeding_form.html:13
|
#: core/templates/core/feeding_form.html:13
|
||||||
|
@ -422,7 +417,7 @@ msgstr "Canvi"
|
||||||
msgid "Feedings"
|
msgid "Feedings"
|
||||||
msgstr "Biberons"
|
msgstr "Biberons"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:270 core/models.py:437
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:267 core/models.py:437
|
||||||
#: core/models.py:438 core/models.py:441
|
#: core/models.py:438 core/models.py:441
|
||||||
#: core/templates/core/pumping_confirm_delete.html:7
|
#: core/templates/core/pumping_confirm_delete.html:7
|
||||||
#: core/templates/core/pumping_form.html:13
|
#: core/templates/core/pumping_form.html:13
|
||||||
|
@ -434,19 +429,19 @@ msgstr "Biberons"
|
||||||
msgid "Pumping"
|
msgid "Pumping"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:276
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:273
|
||||||
msgid "Pumping entry"
|
msgid "Pumping entry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:289
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:286
|
||||||
msgid "Sleep entry"
|
msgid "Sleep entry"
|
||||||
msgstr "Entrada Son"
|
msgstr "Entrada Son"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:302
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:299
|
||||||
msgid "Tummy Time entry"
|
msgid "Tummy Time entry"
|
||||||
msgstr "Entrada de temps de panxa"
|
msgstr "Entrada de temps de panxa"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:326
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:323
|
||||||
#: babybuddy/templates/babybuddy/user_list.html:17
|
#: babybuddy/templates/babybuddy/user_list.html:17
|
||||||
#: babybuddy/templates/babybuddy/user_password_form.html:7
|
#: babybuddy/templates/babybuddy/user_password_form.html:7
|
||||||
#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556
|
#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556
|
||||||
|
@ -454,23 +449,23 @@ msgstr "Entrada de temps de panxa"
|
||||||
msgid "User"
|
msgid "User"
|
||||||
msgstr "Usuari"
|
msgstr "Usuari"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:328
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:325
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr "Clau"
|
msgstr "Clau"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:332
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:329
|
||||||
msgid "Logout"
|
msgid "Logout"
|
||||||
msgstr "Tancar"
|
msgstr "Tancar"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:335
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:332
|
||||||
msgid "Site"
|
msgid "Site"
|
||||||
msgstr "Lloc"
|
msgstr "Lloc"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:336
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:333
|
||||||
msgid "API Browser"
|
msgid "API Browser"
|
||||||
msgstr "Navegador API"
|
msgstr "Navegador API"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:338
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:335
|
||||||
#: babybuddy/templates/babybuddy/user_confirm_delete.html:7
|
#: babybuddy/templates/babybuddy/user_confirm_delete.html:7
|
||||||
#: babybuddy/templates/babybuddy/user_form.html:13
|
#: babybuddy/templates/babybuddy/user_form.html:13
|
||||||
#: babybuddy/templates/babybuddy/user_list.html:4
|
#: babybuddy/templates/babybuddy/user_list.html:4
|
||||||
|
@ -478,15 +473,15 @@ msgstr "Navegador API"
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr "Usuaris"
|
msgstr "Usuaris"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:341
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:338
|
||||||
msgid "Support"
|
msgid "Support"
|
||||||
msgstr "Suport"
|
msgstr "Suport"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:343
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:340
|
||||||
msgid "Source Code"
|
msgid "Source Code"
|
||||||
msgstr "Codi Font"
|
msgstr "Codi Font"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:345
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:342
|
||||||
msgid "Chat / Support"
|
msgid "Chat / Support"
|
||||||
msgstr "Xat / Suport"
|
msgstr "Xat / Suport"
|
||||||
|
|
||||||
|
@ -656,7 +651,7 @@ msgstr "Actiu"
|
||||||
#: babybuddy/templates/babybuddy/user_list.html:23
|
#: babybuddy/templates/babybuddy/user_list.html:23
|
||||||
#: core/templates/core/bmi_list.html:24 core/templates/core/bmi_list.html:38
|
#: core/templates/core/bmi_list.html:24 core/templates/core/bmi_list.html:38
|
||||||
#: core/templates/core/child_list.html:28
|
#: core/templates/core/child_list.html:28
|
||||||
#: core/templates/core/child_list.html:48
|
#: core/templates/core/child_list.html:43
|
||||||
#: core/templates/core/diaperchange_list.html:24
|
#: core/templates/core/diaperchange_list.html:24
|
||||||
#: core/templates/core/diaperchange_list.html:40
|
#: core/templates/core/diaperchange_list.html:40
|
||||||
#: core/templates/core/feeding_list.html:24
|
#: core/templates/core/feeding_list.html:24
|
||||||
|
@ -846,6 +841,25 @@ msgid ""
|
||||||
"you registered with, and check your spam folder."
|
"you registered with, and check your spam folder."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:2
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"You're receiving this email because you requested a password reset for your "
|
||||||
|
"user account at %(site_name)s."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:4
|
||||||
|
msgid "Please go to the following page and choose a new password:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:8
|
||||||
|
msgid "Your username, in case you’ve forgotten:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:10
|
||||||
|
msgid "Thanks for using Baby Buddy!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/registration/password_reset_form.html:4
|
#: babybuddy/templates/registration/password_reset_form.html:4
|
||||||
msgid "Forgot Password"
|
msgid "Forgot Password"
|
||||||
msgstr "Clau Oblidada"
|
msgstr "Clau Oblidada"
|
||||||
|
@ -957,7 +971,7 @@ msgstr ""
|
||||||
#: reports/graphs/feeding_duration.py:56
|
#: reports/graphs/feeding_duration.py:56
|
||||||
#: reports/graphs/head_circumference_change.py:28
|
#: reports/graphs/head_circumference_change.py:28
|
||||||
#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60
|
#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60
|
||||||
#: reports/graphs/sleep_pattern.py:151 reports/graphs/sleep_totals.py:59
|
#: reports/graphs/sleep_pattern.py:153 reports/graphs/sleep_totals.py:59
|
||||||
#: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28
|
#: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28
|
||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "Data"
|
msgstr "Data"
|
||||||
|
@ -1161,7 +1175,7 @@ msgstr "Afegir Nadó"
|
||||||
msgid "Birth Date"
|
msgid "Birth Date"
|
||||||
msgstr "Data Naixement"
|
msgstr "Data Naixement"
|
||||||
|
|
||||||
#: core/templates/core/child_list.html:67
|
#: core/templates/core/child_list.html:62
|
||||||
msgid "No children found."
|
msgid "No children found."
|
||||||
msgstr "Nadons no trobats."
|
msgstr "Nadons no trobats."
|
||||||
|
|
||||||
|
@ -1297,6 +1311,19 @@ msgstr ""
|
||||||
msgid "No pumping entries found."
|
msgid "No pumping entries found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: core/templates/core/quick_timer_nav.html:9
|
||||||
|
#: core/templates/core/quick_timer_nav.html:29
|
||||||
|
#: core/templates/core/timer_nav.html:37
|
||||||
|
msgid "Quick Start Timer"
|
||||||
|
msgstr "Temporitzador Ràpid"
|
||||||
|
|
||||||
|
#: core/templates/core/quick_timer_nav.html:19
|
||||||
|
#: core/templates/core/timer_nav.html:28
|
||||||
|
#, fuzzy
|
||||||
|
#| msgid "Quick Start Timer"
|
||||||
|
msgid "Quick Start Timer For…"
|
||||||
|
msgstr "Temporitzador Ràpid"
|
||||||
|
|
||||||
#: core/templates/core/sleep_confirm_delete.html:4
|
#: core/templates/core/sleep_confirm_delete.html:4
|
||||||
msgid "Delete a Sleep Entry"
|
msgid "Delete a Sleep Entry"
|
||||||
msgstr "Esborra entrada son"
|
msgstr "Esborra entrada son"
|
||||||
|
@ -1401,7 +1428,7 @@ msgid "Delete timer"
|
||||||
msgstr "Esborra temporitzador"
|
msgstr "Esborra temporitzador"
|
||||||
|
|
||||||
#: core/templates/core/timer_form.html:22
|
#: core/templates/core/timer_form.html:22
|
||||||
#: core/templates/core/timer_list.html:15 core/templates/core/timer_nav.html:23
|
#: core/templates/core/timer_list.html:15 core/templates/core/timer_nav.html:15
|
||||||
msgid "Start Timer"
|
msgid "Start Timer"
|
||||||
msgstr "Començar Temporitzador"
|
msgstr "Començar Temporitzador"
|
||||||
|
|
||||||
|
@ -1413,16 +1440,16 @@ msgstr "Sense entrades de temporitzadors."
|
||||||
msgid "Delete Inactive Timers"
|
msgid "Delete Inactive Timers"
|
||||||
msgstr "Esborra Temporitzadors Actius"
|
msgstr "Esborra Temporitzadors Actius"
|
||||||
|
|
||||||
#: core/templates/core/timer_nav.html:28
|
#: core/templates/core/timer_nav.html:20
|
||||||
msgid "View Timers"
|
msgid "View Timers"
|
||||||
msgstr "Veure Temporitzadors"
|
msgstr "Veure Temporitzadors"
|
||||||
|
|
||||||
#: core/templates/core/timer_nav.html:32
|
#: core/templates/core/timer_nav.html:44
|
||||||
#: dashboard/templates/cards/timer_list.html:6
|
#: dashboard/templates/cards/timer_list.html:6
|
||||||
msgid "Active Timers"
|
msgid "Active Timers"
|
||||||
msgstr "Temporitzadors Actius"
|
msgstr "Temporitzadors Actius"
|
||||||
|
|
||||||
#: core/templates/core/timer_nav.html:38
|
#: core/templates/core/timer_nav.html:50
|
||||||
#: dashboard/templates/cards/diaperchange_last.html:17
|
#: dashboard/templates/cards/diaperchange_last.html:17
|
||||||
#: dashboard/templates/cards/diaperchange_types.html:12
|
#: dashboard/templates/cards/diaperchange_types.html:12
|
||||||
#: dashboard/templates/cards/feeding_day.html:20
|
#: dashboard/templates/cards/feeding_day.html:20
|
||||||
|
@ -1667,16 +1694,16 @@ msgstr ""
|
||||||
msgid "%(model)s reading for %(child)s updated."
|
msgid "%(model)s reading for %(child)s updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: core/views.py:478
|
#: core/views.py:483
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(timer)s stopped."
|
msgid "%(timer)s stopped."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: core/views.py:501
|
#: core/views.py:506
|
||||||
msgid "All inactive timers deleted."
|
msgid "All inactive timers deleted."
|
||||||
msgstr "Temporitzadors inactius esborrats."
|
msgstr "Temporitzadors inactius esborrats."
|
||||||
|
|
||||||
#: core/views.py:511
|
#: core/views.py:516
|
||||||
msgid "No inactive timers exist."
|
msgid "No inactive timers exist."
|
||||||
msgstr "Sense temporitzadors inactius."
|
msgstr "Sense temporitzadors inactius."
|
||||||
|
|
||||||
|
@ -1963,11 +1990,11 @@ msgstr ""
|
||||||
msgid "Pumping Amount"
|
msgid "Pumping Amount"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: reports/graphs/sleep_pattern.py:148
|
#: reports/graphs/sleep_pattern.py:150
|
||||||
msgid "<b>Sleep Pattern</b>"
|
msgid "<b>Sleep Pattern</b>"
|
||||||
msgstr "<b>Patró Son</b>"
|
msgstr "<b>Patró Son</b>"
|
||||||
|
|
||||||
#: reports/graphs/sleep_pattern.py:165
|
#: reports/graphs/sleep_pattern.py:167
|
||||||
msgid "Time of day"
|
msgid "Time of day"
|
||||||
msgstr "Temps del dia"
|
msgstr "Temps del dia"
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Baby Buddy\n"
|
"Project-Id-Version: Baby Buddy\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-06-17 22:25+0000\n"
|
"POT-Creation-Date: 2022-07-30 21:13+0000\n"
|
||||||
"Language: de\n"
|
"Language: de\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
@ -11,12 +11,12 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: babybuddy/admin.py:12 babybuddy/admin.py:13
|
#: babybuddy/admin.py:12 babybuddy/admin.py:13
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:327
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:324
|
||||||
#: babybuddy/templates/babybuddy/user_settings_form.html:8
|
#: babybuddy/templates/babybuddy/user_settings_form.html:8
|
||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr "Einstellungen"
|
msgstr "Einstellungen"
|
||||||
|
|
||||||
#: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:92
|
#: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:89
|
||||||
#: babybuddy/templates/babybuddy/user_settings_form.html:61
|
#: babybuddy/templates/babybuddy/user_settings_form.html:61
|
||||||
#: dashboard/templates/dashboard/child.html:4
|
#: dashboard/templates/dashboard/child.html:4
|
||||||
#: dashboard/templates/dashboard/child.html:9
|
#: dashboard/templates/dashboard/child.html:9
|
||||||
|
@ -182,7 +182,7 @@ msgstr "Türkisch"
|
||||||
|
|
||||||
#: babybuddy/templates/admin/base_site.html:4
|
#: babybuddy/templates/admin/base_site.html:4
|
||||||
#: babybuddy/templates/admin/base_site.html:7
|
#: babybuddy/templates/admin/base_site.html:7
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:339
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:336
|
||||||
msgid "Database Admin"
|
msgid "Database Admin"
|
||||||
msgstr "Datenbankadministration"
|
msgstr "Datenbankadministration"
|
||||||
|
|
||||||
|
@ -220,30 +220,25 @@ msgstr ""
|
||||||
"<strong>Fehler:</strong> Gewisse Felder sind fehlerhaft. Details sind unten "
|
"<strong>Fehler:</strong> Gewisse Felder sind fehlerhaft. Details sind unten "
|
||||||
"ersichtlich."
|
"ersichtlich."
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:32
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:48 core/models.py:248
|
||||||
#: core/templates/core/timer_nav.html:18
|
|
||||||
msgid "Quick Start Timer"
|
|
||||||
msgstr "Quick-Start Timer"
|
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:51 core/models.py:248
|
|
||||||
#: core/models.py:252
|
#: core/models.py:252
|
||||||
msgid "Diaper Change"
|
msgid "Diaper Change"
|
||||||
msgstr "Windelwechsel"
|
msgstr "Windelwechsel"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:57
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:54
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:262 core/models.py:312
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:259 core/models.py:312
|
||||||
#: core/models.py:316 core/templates/core/timer_detail.html:43
|
#: core/models.py:316 core/templates/core/timer_detail.html:43
|
||||||
msgid "Feeding"
|
msgid "Feeding"
|
||||||
msgstr "Mahlzeit"
|
msgstr "Mahlzeit"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:63
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:60
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:138 core/models.py:396
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:135 core/models.py:396
|
||||||
#: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29
|
#: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29
|
||||||
msgid "Note"
|
msgid "Note"
|
||||||
msgstr "Notiz"
|
msgstr "Notiz"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:69
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:66
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:283
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:280
|
||||||
#: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467
|
#: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467
|
||||||
#: core/models.py:468 core/models.py:471
|
#: core/models.py:468 core/models.py:471
|
||||||
#: core/templates/core/sleep_confirm_delete.html:7
|
#: core/templates/core/sleep_confirm_delete.html:7
|
||||||
|
@ -253,8 +248,8 @@ msgstr "Notiz"
|
||||||
msgid "Sleep"
|
msgid "Sleep"
|
||||||
msgstr "Schlafen"
|
msgstr "Schlafen"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:75
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:72
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:296
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:293
|
||||||
#: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647
|
#: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647
|
||||||
#: core/models.py:648 core/models.py:651
|
#: core/models.py:648 core/models.py:651
|
||||||
#: core/templates/core/timer_detail.html:59
|
#: core/templates/core/timer_detail.html:59
|
||||||
|
@ -266,15 +261,15 @@ msgstr "Schlafen"
|
||||||
msgid "Tummy Time"
|
msgid "Tummy Time"
|
||||||
msgstr "Bauchzeit"
|
msgstr "Bauchzeit"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:99
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:96
|
||||||
#: core/templates/timeline/timeline.html:4
|
#: core/templates/timeline/timeline.html:4
|
||||||
#: core/templates/timeline/timeline.html:7
|
#: core/templates/timeline/timeline.html:7
|
||||||
#: dashboard/templates/dashboard/child_button_group.html:9
|
#: dashboard/templates/dashboard/child_button_group.html:9
|
||||||
msgid "Timeline"
|
msgid "Timeline"
|
||||||
msgstr "Zeitverlauf"
|
msgstr "Zeitverlauf"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:110
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:107
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:118 core/models.py:188
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:115 core/models.py:188
|
||||||
#: core/templates/core/child_confirm_delete.html:7
|
#: core/templates/core/child_confirm_delete.html:7
|
||||||
#: core/templates/core/child_detail.html:7
|
#: core/templates/core/child_detail.html:7
|
||||||
#: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4
|
#: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4
|
||||||
|
@ -284,7 +279,7 @@ msgstr "Zeitverlauf"
|
||||||
msgid "Children"
|
msgid "Children"
|
||||||
msgstr "Kinder"
|
msgstr "Kinder"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:124 core/models.py:137
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:121 core/models.py:137
|
||||||
#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335
|
#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335
|
||||||
#: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450
|
#: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450
|
||||||
#: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671
|
#: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671
|
||||||
|
@ -303,7 +298,7 @@ msgstr "Kinder"
|
||||||
msgid "Child"
|
msgid "Child"
|
||||||
msgstr "Kind"
|
msgstr "Kind"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:132 core/models.py:143
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:129 core/models.py:143
|
||||||
#: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373
|
#: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373
|
||||||
#: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511
|
#: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511
|
||||||
#: core/models.py:677 core/templates/core/note_confirm_delete.html:7
|
#: core/models.py:677 core/templates/core/note_confirm_delete.html:7
|
||||||
|
@ -312,11 +307,11 @@ msgstr "Kind"
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Notizen"
|
msgstr "Notizen"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:152
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:149
|
||||||
msgid "Measurements"
|
msgid "Measurements"
|
||||||
msgstr "Messungen"
|
msgstr "Messungen"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:160 core/models.py:139
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:157 core/models.py:139
|
||||||
#: core/models.py:151 core/models.py:152 core/models.py:155
|
#: core/models.py:151 core/models.py:152 core/models.py:155
|
||||||
#: core/templates/core/bmi_confirm_delete.html:7
|
#: 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_form.html:13 core/templates/core/bmi_list.html:4
|
||||||
|
@ -327,11 +322,11 @@ msgstr "Messungen"
|
||||||
msgid "BMI"
|
msgid "BMI"
|
||||||
msgstr "BMI"
|
msgstr "BMI"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:166
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:163
|
||||||
msgid "BMI entry"
|
msgid "BMI entry"
|
||||||
msgstr "BMI Eintrag"
|
msgstr "BMI Eintrag"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:174 core/models.py:338
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:171 core/models.py:338
|
||||||
#: core/models.py:351 core/models.py:352 core/models.py:355
|
#: core/models.py:351 core/models.py:352 core/models.py:355
|
||||||
#: core/templates/core/head_circumference_confirm_delete.html:7
|
#: core/templates/core/head_circumference_confirm_delete.html:7
|
||||||
#: core/templates/core/head_circumference_form.html:13
|
#: core/templates/core/head_circumference_form.html:13
|
||||||
|
@ -347,11 +342,11 @@ msgstr "BMI Eintrag"
|
||||||
msgid "Head Circumference"
|
msgid "Head Circumference"
|
||||||
msgstr "Kopfumfang"
|
msgstr "Kopfumfang"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:180
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:177
|
||||||
msgid "Head Circumference entry"
|
msgid "Head Circumference entry"
|
||||||
msgstr "Kopfumfang Eintrag"
|
msgstr "Kopfumfang Eintrag"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:188 core/models.py:369
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:185 core/models.py:369
|
||||||
#: core/models.py:381 core/models.py:382 core/models.py:385
|
#: core/models.py:381 core/models.py:382 core/models.py:385
|
||||||
#: core/templates/core/height_confirm_delete.html:7
|
#: core/templates/core/height_confirm_delete.html:7
|
||||||
#: core/templates/core/height_form.html:13
|
#: core/templates/core/height_form.html:13
|
||||||
|
@ -366,11 +361,11 @@ msgstr "Kopfumfang Eintrag"
|
||||||
msgid "Height"
|
msgid "Height"
|
||||||
msgstr "Größe"
|
msgstr "Größe"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:194
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:191
|
||||||
msgid "Height entry"
|
msgid "Height entry"
|
||||||
msgstr "Größen Eintrag"
|
msgstr "Größen Eintrag"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:202 core/models.py:506
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:199 core/models.py:506
|
||||||
#: core/models.py:519 core/models.py:520 core/models.py:523
|
#: core/models.py:519 core/models.py:520 core/models.py:523
|
||||||
#: core/templates/core/temperature_confirm_delete.html:7
|
#: core/templates/core/temperature_confirm_delete.html:7
|
||||||
#: core/templates/core/temperature_form.html:13
|
#: core/templates/core/temperature_form.html:13
|
||||||
|
@ -381,11 +376,11 @@ msgstr "Größen Eintrag"
|
||||||
msgid "Temperature"
|
msgid "Temperature"
|
||||||
msgstr "Temperatur"
|
msgstr "Temperatur"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:208
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:205
|
||||||
msgid "Temperature reading"
|
msgid "Temperature reading"
|
||||||
msgstr "Temperatur Messung"
|
msgstr "Temperatur Messung"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:216 core/models.py:673
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:213 core/models.py:673
|
||||||
#: core/models.py:685 core/models.py:686 core/models.py:689
|
#: core/models.py:685 core/models.py:686 core/models.py:689
|
||||||
#: core/templates/core/weight_confirm_delete.html:7
|
#: core/templates/core/weight_confirm_delete.html:7
|
||||||
#: core/templates/core/weight_form.html:13
|
#: core/templates/core/weight_form.html:13
|
||||||
|
@ -400,24 +395,24 @@ msgstr "Temperatur Messung"
|
||||||
msgid "Weight"
|
msgid "Weight"
|
||||||
msgstr "Gewicht"
|
msgstr "Gewicht"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:222
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:219
|
||||||
msgid "Weight entry"
|
msgid "Weight entry"
|
||||||
msgstr "Gewichtseintrag"
|
msgstr "Gewichtseintrag"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:236
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:233
|
||||||
msgid "Activities"
|
msgid "Activities"
|
||||||
msgstr "Aktivitäten"
|
msgstr "Aktivitäten"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:243
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:240
|
||||||
#: reports/graphs/diaperchange_lifetimes.py:27
|
#: reports/graphs/diaperchange_lifetimes.py:27
|
||||||
msgid "Changes"
|
msgid "Changes"
|
||||||
msgstr "Wechsel"
|
msgstr "Wechsel"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:249
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:246
|
||||||
msgid "Change"
|
msgid "Change"
|
||||||
msgstr "Wechsel"
|
msgstr "Wechsel"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:256
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:253
|
||||||
#: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313
|
#: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313
|
||||||
#: core/templates/core/feeding_confirm_delete.html:7
|
#: core/templates/core/feeding_confirm_delete.html:7
|
||||||
#: core/templates/core/feeding_form.html:13
|
#: core/templates/core/feeding_form.html:13
|
||||||
|
@ -427,7 +422,7 @@ msgstr "Wechsel"
|
||||||
msgid "Feedings"
|
msgid "Feedings"
|
||||||
msgstr "Mahlzeiten"
|
msgstr "Mahlzeiten"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:270 core/models.py:437
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:267 core/models.py:437
|
||||||
#: core/models.py:438 core/models.py:441
|
#: core/models.py:438 core/models.py:441
|
||||||
#: core/templates/core/pumping_confirm_delete.html:7
|
#: core/templates/core/pumping_confirm_delete.html:7
|
||||||
#: core/templates/core/pumping_form.html:13
|
#: core/templates/core/pumping_form.html:13
|
||||||
|
@ -439,19 +434,19 @@ msgstr "Mahlzeiten"
|
||||||
msgid "Pumping"
|
msgid "Pumping"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:276
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:273
|
||||||
msgid "Pumping entry"
|
msgid "Pumping entry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:289
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:286
|
||||||
msgid "Sleep entry"
|
msgid "Sleep entry"
|
||||||
msgstr "Schlaf-Eintrag"
|
msgstr "Schlaf-Eintrag"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:302
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:299
|
||||||
msgid "Tummy Time entry"
|
msgid "Tummy Time entry"
|
||||||
msgstr "Bauchzeit-Eintrag"
|
msgstr "Bauchzeit-Eintrag"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:326
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:323
|
||||||
#: babybuddy/templates/babybuddy/user_list.html:17
|
#: babybuddy/templates/babybuddy/user_list.html:17
|
||||||
#: babybuddy/templates/babybuddy/user_password_form.html:7
|
#: babybuddy/templates/babybuddy/user_password_form.html:7
|
||||||
#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556
|
#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556
|
||||||
|
@ -459,23 +454,23 @@ msgstr "Bauchzeit-Eintrag"
|
||||||
msgid "User"
|
msgid "User"
|
||||||
msgstr "Benutzer"
|
msgstr "Benutzer"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:328
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:325
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr "Passwort"
|
msgstr "Passwort"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:332
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:329
|
||||||
msgid "Logout"
|
msgid "Logout"
|
||||||
msgstr "Logout"
|
msgstr "Logout"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:335
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:332
|
||||||
msgid "Site"
|
msgid "Site"
|
||||||
msgstr "Seite"
|
msgstr "Seite"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:336
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:333
|
||||||
msgid "API Browser"
|
msgid "API Browser"
|
||||||
msgstr "API Browser"
|
msgstr "API Browser"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:338
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:335
|
||||||
#: babybuddy/templates/babybuddy/user_confirm_delete.html:7
|
#: babybuddy/templates/babybuddy/user_confirm_delete.html:7
|
||||||
#: babybuddy/templates/babybuddy/user_form.html:13
|
#: babybuddy/templates/babybuddy/user_form.html:13
|
||||||
#: babybuddy/templates/babybuddy/user_list.html:4
|
#: babybuddy/templates/babybuddy/user_list.html:4
|
||||||
|
@ -483,15 +478,15 @@ msgstr "API Browser"
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr "Benutzer"
|
msgstr "Benutzer"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:341
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:338
|
||||||
msgid "Support"
|
msgid "Support"
|
||||||
msgstr "Support"
|
msgstr "Support"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:343
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:340
|
||||||
msgid "Source Code"
|
msgid "Source Code"
|
||||||
msgstr "Quellcode"
|
msgstr "Quellcode"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:345
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:342
|
||||||
msgid "Chat / Support"
|
msgid "Chat / Support"
|
||||||
msgstr "Chat / Support"
|
msgstr "Chat / Support"
|
||||||
|
|
||||||
|
@ -662,7 +657,7 @@ msgstr "Aktiv"
|
||||||
#: babybuddy/templates/babybuddy/user_list.html:23
|
#: babybuddy/templates/babybuddy/user_list.html:23
|
||||||
#: core/templates/core/bmi_list.html:24 core/templates/core/bmi_list.html:38
|
#: core/templates/core/bmi_list.html:24 core/templates/core/bmi_list.html:38
|
||||||
#: core/templates/core/child_list.html:28
|
#: core/templates/core/child_list.html:28
|
||||||
#: core/templates/core/child_list.html:48
|
#: core/templates/core/child_list.html:43
|
||||||
#: core/templates/core/diaperchange_list.html:24
|
#: core/templates/core/diaperchange_list.html:24
|
||||||
#: core/templates/core/diaperchange_list.html:40
|
#: core/templates/core/diaperchange_list.html:40
|
||||||
#: core/templates/core/feeding_list.html:24
|
#: core/templates/core/feeding_list.html:24
|
||||||
|
@ -872,6 +867,25 @@ msgstr ""
|
||||||
"Falls du die E-Mail nicht erhältst, überprüfe, dass du die registrierte "
|
"Falls du die E-Mail nicht erhältst, überprüfe, dass du die registrierte "
|
||||||
"Adresse eingegeben hast und überprüfe deinen Spam-Ordner."
|
"Adresse eingegeben hast und überprüfe deinen Spam-Ordner."
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:2
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"You're receiving this email because you requested a password reset for your "
|
||||||
|
"user account at %(site_name)s."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:4
|
||||||
|
msgid "Please go to the following page and choose a new password:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:8
|
||||||
|
msgid "Your username, in case you’ve forgotten:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:10
|
||||||
|
msgid "Thanks for using Baby Buddy!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/registration/password_reset_form.html:4
|
#: babybuddy/templates/registration/password_reset_form.html:4
|
||||||
msgid "Forgot Password"
|
msgid "Forgot Password"
|
||||||
msgstr "Passwort vergessen"
|
msgstr "Passwort vergessen"
|
||||||
|
@ -985,7 +999,7 @@ msgstr ""
|
||||||
#: reports/graphs/feeding_duration.py:56
|
#: reports/graphs/feeding_duration.py:56
|
||||||
#: reports/graphs/head_circumference_change.py:28
|
#: reports/graphs/head_circumference_change.py:28
|
||||||
#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60
|
#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60
|
||||||
#: reports/graphs/sleep_pattern.py:151 reports/graphs/sleep_totals.py:59
|
#: reports/graphs/sleep_pattern.py:153 reports/graphs/sleep_totals.py:59
|
||||||
#: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28
|
#: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28
|
||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "Datum"
|
msgstr "Datum"
|
||||||
|
@ -1190,7 +1204,7 @@ msgstr "Kind hinzufügen"
|
||||||
msgid "Birth Date"
|
msgid "Birth Date"
|
||||||
msgstr "Geburtsdatum"
|
msgstr "Geburtsdatum"
|
||||||
|
|
||||||
#: core/templates/core/child_list.html:67
|
#: core/templates/core/child_list.html:62
|
||||||
msgid "No children found."
|
msgid "No children found."
|
||||||
msgstr "Keine Kinder gefunden."
|
msgstr "Keine Kinder gefunden."
|
||||||
|
|
||||||
|
@ -1326,6 +1340,19 @@ msgstr ""
|
||||||
msgid "No pumping entries found."
|
msgid "No pumping entries found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: core/templates/core/quick_timer_nav.html:9
|
||||||
|
#: core/templates/core/quick_timer_nav.html:29
|
||||||
|
#: core/templates/core/timer_nav.html:37
|
||||||
|
msgid "Quick Start Timer"
|
||||||
|
msgstr "Quick-Start Timer"
|
||||||
|
|
||||||
|
#: core/templates/core/quick_timer_nav.html:19
|
||||||
|
#: core/templates/core/timer_nav.html:28
|
||||||
|
#, fuzzy
|
||||||
|
#| msgid "Quick Start Timer"
|
||||||
|
msgid "Quick Start Timer For…"
|
||||||
|
msgstr "Quick-Start Timer"
|
||||||
|
|
||||||
#: core/templates/core/sleep_confirm_delete.html:4
|
#: core/templates/core/sleep_confirm_delete.html:4
|
||||||
msgid "Delete a Sleep Entry"
|
msgid "Delete a Sleep Entry"
|
||||||
msgstr "Einen Schlaf-Eintrag löschen"
|
msgstr "Einen Schlaf-Eintrag löschen"
|
||||||
|
@ -1433,7 +1460,7 @@ msgid "Delete timer"
|
||||||
msgstr "Timer löschen"
|
msgstr "Timer löschen"
|
||||||
|
|
||||||
#: core/templates/core/timer_form.html:22
|
#: core/templates/core/timer_form.html:22
|
||||||
#: core/templates/core/timer_list.html:15 core/templates/core/timer_nav.html:23
|
#: core/templates/core/timer_list.html:15 core/templates/core/timer_nav.html:15
|
||||||
msgid "Start Timer"
|
msgid "Start Timer"
|
||||||
msgstr "Starte Timer"
|
msgstr "Starte Timer"
|
||||||
|
|
||||||
|
@ -1445,16 +1472,16 @@ msgstr "Keine Timer-Einträge gefunden."
|
||||||
msgid "Delete Inactive Timers"
|
msgid "Delete Inactive Timers"
|
||||||
msgstr "Inaktive Timer löschen"
|
msgstr "Inaktive Timer löschen"
|
||||||
|
|
||||||
#: core/templates/core/timer_nav.html:28
|
#: core/templates/core/timer_nav.html:20
|
||||||
msgid "View Timers"
|
msgid "View Timers"
|
||||||
msgstr "Zeige Timer"
|
msgstr "Zeige Timer"
|
||||||
|
|
||||||
#: core/templates/core/timer_nav.html:32
|
#: core/templates/core/timer_nav.html:44
|
||||||
#: dashboard/templates/cards/timer_list.html:6
|
#: dashboard/templates/cards/timer_list.html:6
|
||||||
msgid "Active Timers"
|
msgid "Active Timers"
|
||||||
msgstr "Aktive Timer"
|
msgstr "Aktive Timer"
|
||||||
|
|
||||||
#: core/templates/core/timer_nav.html:38
|
#: core/templates/core/timer_nav.html:50
|
||||||
#: dashboard/templates/cards/diaperchange_last.html:17
|
#: dashboard/templates/cards/diaperchange_last.html:17
|
||||||
#: dashboard/templates/cards/diaperchange_types.html:12
|
#: dashboard/templates/cards/diaperchange_types.html:12
|
||||||
#: dashboard/templates/cards/feeding_day.html:20
|
#: dashboard/templates/cards/feeding_day.html:20
|
||||||
|
@ -1699,16 +1726,16 @@ msgstr "%(model)s Eintrag hinzugefügt!"
|
||||||
msgid "%(model)s reading for %(child)s updated."
|
msgid "%(model)s reading for %(child)s updated."
|
||||||
msgstr "%(model)s Eintrag für %(child)s geändert! "
|
msgstr "%(model)s Eintrag für %(child)s geändert! "
|
||||||
|
|
||||||
#: core/views.py:478
|
#: core/views.py:483
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(timer)s stopped."
|
msgid "%(timer)s stopped."
|
||||||
msgstr "%(timer)s gestoppt."
|
msgstr "%(timer)s gestoppt."
|
||||||
|
|
||||||
#: core/views.py:501
|
#: core/views.py:506
|
||||||
msgid "All inactive timers deleted."
|
msgid "All inactive timers deleted."
|
||||||
msgstr "Alle inaktiven Timer gelöscht."
|
msgstr "Alle inaktiven Timer gelöscht."
|
||||||
|
|
||||||
#: core/views.py:511
|
#: core/views.py:516
|
||||||
msgid "No inactive timers exist."
|
msgid "No inactive timers exist."
|
||||||
msgstr "Keine inaktiven Timer vorhanden."
|
msgstr "Keine inaktiven Timer vorhanden."
|
||||||
|
|
||||||
|
@ -1997,11 +2024,11 @@ msgstr ""
|
||||||
msgid "Pumping Amount"
|
msgid "Pumping Amount"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: reports/graphs/sleep_pattern.py:148
|
#: reports/graphs/sleep_pattern.py:150
|
||||||
msgid "<b>Sleep Pattern</b>"
|
msgid "<b>Sleep Pattern</b>"
|
||||||
msgstr "<b>Schlaf-Rhythmus</b>"
|
msgstr "<b>Schlaf-Rhythmus</b>"
|
||||||
|
|
||||||
#: reports/graphs/sleep_pattern.py:165
|
#: reports/graphs/sleep_pattern.py:167
|
||||||
msgid "Time of day"
|
msgid "Time of day"
|
||||||
msgstr "Tageszeit"
|
msgstr "Tageszeit"
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Baby Buddy\n"
|
"Project-Id-Version: Baby Buddy\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-06-17 22:25+0000\n"
|
"POT-Creation-Date: 2022-07-30 21:13+0000\n"
|
||||||
"Language: en-GB\n"
|
"Language: en-GB\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
@ -10,12 +10,12 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: babybuddy/admin.py:12 babybuddy/admin.py:13
|
#: babybuddy/admin.py:12 babybuddy/admin.py:13
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:327
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:324
|
||||||
#: babybuddy/templates/babybuddy/user_settings_form.html:8
|
#: babybuddy/templates/babybuddy/user_settings_form.html:8
|
||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:92
|
#: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:89
|
||||||
#: babybuddy/templates/babybuddy/user_settings_form.html:61
|
#: babybuddy/templates/babybuddy/user_settings_form.html:61
|
||||||
#: dashboard/templates/dashboard/child.html:4
|
#: dashboard/templates/dashboard/child.html:4
|
||||||
#: dashboard/templates/dashboard/child.html:9
|
#: dashboard/templates/dashboard/child.html:9
|
||||||
|
@ -178,7 +178,7 @@ msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/admin/base_site.html:4
|
#: babybuddy/templates/admin/base_site.html:4
|
||||||
#: babybuddy/templates/admin/base_site.html:7
|
#: babybuddy/templates/admin/base_site.html:7
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:339
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:336
|
||||||
msgid "Database Admin"
|
msgid "Database Admin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -214,30 +214,25 @@ msgstr ""
|
||||||
msgid "<strong>Error:</strong> Some fields have errors. See below for details."
|
msgid "<strong>Error:</strong> Some fields have errors. See below for details."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:32
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:48 core/models.py:248
|
||||||
#: core/templates/core/timer_nav.html:18
|
|
||||||
msgid "Quick Start Timer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:51 core/models.py:248
|
|
||||||
#: core/models.py:252
|
#: core/models.py:252
|
||||||
msgid "Diaper Change"
|
msgid "Diaper Change"
|
||||||
msgstr "Nappy Change"
|
msgstr "Nappy Change"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:57
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:54
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:262 core/models.py:312
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:259 core/models.py:312
|
||||||
#: core/models.py:316 core/templates/core/timer_detail.html:43
|
#: core/models.py:316 core/templates/core/timer_detail.html:43
|
||||||
msgid "Feeding"
|
msgid "Feeding"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:63
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:60
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:138 core/models.py:396
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:135 core/models.py:396
|
||||||
#: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29
|
#: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29
|
||||||
msgid "Note"
|
msgid "Note"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:69
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:66
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:283
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:280
|
||||||
#: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467
|
#: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467
|
||||||
#: core/models.py:468 core/models.py:471
|
#: core/models.py:468 core/models.py:471
|
||||||
#: core/templates/core/sleep_confirm_delete.html:7
|
#: core/templates/core/sleep_confirm_delete.html:7
|
||||||
|
@ -247,8 +242,8 @@ msgstr ""
|
||||||
msgid "Sleep"
|
msgid "Sleep"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:75
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:72
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:296
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:293
|
||||||
#: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647
|
#: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647
|
||||||
#: core/models.py:648 core/models.py:651
|
#: core/models.py:648 core/models.py:651
|
||||||
#: core/templates/core/timer_detail.html:59
|
#: core/templates/core/timer_detail.html:59
|
||||||
|
@ -260,15 +255,15 @@ msgstr ""
|
||||||
msgid "Tummy Time"
|
msgid "Tummy Time"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:99
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:96
|
||||||
#: core/templates/timeline/timeline.html:4
|
#: core/templates/timeline/timeline.html:4
|
||||||
#: core/templates/timeline/timeline.html:7
|
#: core/templates/timeline/timeline.html:7
|
||||||
#: dashboard/templates/dashboard/child_button_group.html:9
|
#: dashboard/templates/dashboard/child_button_group.html:9
|
||||||
msgid "Timeline"
|
msgid "Timeline"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:110
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:107
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:118 core/models.py:188
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:115 core/models.py:188
|
||||||
#: core/templates/core/child_confirm_delete.html:7
|
#: core/templates/core/child_confirm_delete.html:7
|
||||||
#: core/templates/core/child_detail.html:7
|
#: core/templates/core/child_detail.html:7
|
||||||
#: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4
|
#: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4
|
||||||
|
@ -278,7 +273,7 @@ msgstr ""
|
||||||
msgid "Children"
|
msgid "Children"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:124 core/models.py:137
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:121 core/models.py:137
|
||||||
#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335
|
#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335
|
||||||
#: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450
|
#: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450
|
||||||
#: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671
|
#: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671
|
||||||
|
@ -297,7 +292,7 @@ msgstr ""
|
||||||
msgid "Child"
|
msgid "Child"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:132 core/models.py:143
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:129 core/models.py:143
|
||||||
#: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373
|
#: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373
|
||||||
#: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511
|
#: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511
|
||||||
#: core/models.py:677 core/templates/core/note_confirm_delete.html:7
|
#: core/models.py:677 core/templates/core/note_confirm_delete.html:7
|
||||||
|
@ -306,11 +301,11 @@ msgstr ""
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:152
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:149
|
||||||
msgid "Measurements"
|
msgid "Measurements"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:160 core/models.py:139
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:157 core/models.py:139
|
||||||
#: core/models.py:151 core/models.py:152 core/models.py:155
|
#: core/models.py:151 core/models.py:152 core/models.py:155
|
||||||
#: core/templates/core/bmi_confirm_delete.html:7
|
#: 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_form.html:13 core/templates/core/bmi_list.html:4
|
||||||
|
@ -321,11 +316,11 @@ msgstr ""
|
||||||
msgid "BMI"
|
msgid "BMI"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:166
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:163
|
||||||
msgid "BMI entry"
|
msgid "BMI entry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:174 core/models.py:338
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:171 core/models.py:338
|
||||||
#: core/models.py:351 core/models.py:352 core/models.py:355
|
#: core/models.py:351 core/models.py:352 core/models.py:355
|
||||||
#: core/templates/core/head_circumference_confirm_delete.html:7
|
#: core/templates/core/head_circumference_confirm_delete.html:7
|
||||||
#: core/templates/core/head_circumference_form.html:13
|
#: core/templates/core/head_circumference_form.html:13
|
||||||
|
@ -341,11 +336,11 @@ msgstr ""
|
||||||
msgid "Head Circumference"
|
msgid "Head Circumference"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:180
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:177
|
||||||
msgid "Head Circumference entry"
|
msgid "Head Circumference entry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:188 core/models.py:369
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:185 core/models.py:369
|
||||||
#: core/models.py:381 core/models.py:382 core/models.py:385
|
#: core/models.py:381 core/models.py:382 core/models.py:385
|
||||||
#: core/templates/core/height_confirm_delete.html:7
|
#: core/templates/core/height_confirm_delete.html:7
|
||||||
#: core/templates/core/height_form.html:13
|
#: core/templates/core/height_form.html:13
|
||||||
|
@ -360,11 +355,11 @@ msgstr ""
|
||||||
msgid "Height"
|
msgid "Height"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:194
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:191
|
||||||
msgid "Height entry"
|
msgid "Height entry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:202 core/models.py:506
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:199 core/models.py:506
|
||||||
#: core/models.py:519 core/models.py:520 core/models.py:523
|
#: core/models.py:519 core/models.py:520 core/models.py:523
|
||||||
#: core/templates/core/temperature_confirm_delete.html:7
|
#: core/templates/core/temperature_confirm_delete.html:7
|
||||||
#: core/templates/core/temperature_form.html:13
|
#: core/templates/core/temperature_form.html:13
|
||||||
|
@ -375,11 +370,11 @@ msgstr ""
|
||||||
msgid "Temperature"
|
msgid "Temperature"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:208
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:205
|
||||||
msgid "Temperature reading"
|
msgid "Temperature reading"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:216 core/models.py:673
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:213 core/models.py:673
|
||||||
#: core/models.py:685 core/models.py:686 core/models.py:689
|
#: core/models.py:685 core/models.py:686 core/models.py:689
|
||||||
#: core/templates/core/weight_confirm_delete.html:7
|
#: core/templates/core/weight_confirm_delete.html:7
|
||||||
#: core/templates/core/weight_form.html:13
|
#: core/templates/core/weight_form.html:13
|
||||||
|
@ -394,24 +389,24 @@ msgstr ""
|
||||||
msgid "Weight"
|
msgid "Weight"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:222
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:219
|
||||||
msgid "Weight entry"
|
msgid "Weight entry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:236
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:233
|
||||||
msgid "Activities"
|
msgid "Activities"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:243
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:240
|
||||||
#: reports/graphs/diaperchange_lifetimes.py:27
|
#: reports/graphs/diaperchange_lifetimes.py:27
|
||||||
msgid "Changes"
|
msgid "Changes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:249
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:246
|
||||||
msgid "Change"
|
msgid "Change"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:256
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:253
|
||||||
#: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313
|
#: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313
|
||||||
#: core/templates/core/feeding_confirm_delete.html:7
|
#: core/templates/core/feeding_confirm_delete.html:7
|
||||||
#: core/templates/core/feeding_form.html:13
|
#: core/templates/core/feeding_form.html:13
|
||||||
|
@ -421,7 +416,7 @@ msgstr ""
|
||||||
msgid "Feedings"
|
msgid "Feedings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:270 core/models.py:437
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:267 core/models.py:437
|
||||||
#: core/models.py:438 core/models.py:441
|
#: core/models.py:438 core/models.py:441
|
||||||
#: core/templates/core/pumping_confirm_delete.html:7
|
#: core/templates/core/pumping_confirm_delete.html:7
|
||||||
#: core/templates/core/pumping_form.html:13
|
#: core/templates/core/pumping_form.html:13
|
||||||
|
@ -433,19 +428,19 @@ msgstr ""
|
||||||
msgid "Pumping"
|
msgid "Pumping"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:276
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:273
|
||||||
msgid "Pumping entry"
|
msgid "Pumping entry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:289
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:286
|
||||||
msgid "Sleep entry"
|
msgid "Sleep entry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:302
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:299
|
||||||
msgid "Tummy Time entry"
|
msgid "Tummy Time entry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:326
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:323
|
||||||
#: babybuddy/templates/babybuddy/user_list.html:17
|
#: babybuddy/templates/babybuddy/user_list.html:17
|
||||||
#: babybuddy/templates/babybuddy/user_password_form.html:7
|
#: babybuddy/templates/babybuddy/user_password_form.html:7
|
||||||
#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556
|
#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556
|
||||||
|
@ -453,23 +448,23 @@ msgstr ""
|
||||||
msgid "User"
|
msgid "User"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:328
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:325
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:332
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:329
|
||||||
msgid "Logout"
|
msgid "Logout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:335
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:332
|
||||||
msgid "Site"
|
msgid "Site"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:336
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:333
|
||||||
msgid "API Browser"
|
msgid "API Browser"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:338
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:335
|
||||||
#: babybuddy/templates/babybuddy/user_confirm_delete.html:7
|
#: babybuddy/templates/babybuddy/user_confirm_delete.html:7
|
||||||
#: babybuddy/templates/babybuddy/user_form.html:13
|
#: babybuddy/templates/babybuddy/user_form.html:13
|
||||||
#: babybuddy/templates/babybuddy/user_list.html:4
|
#: babybuddy/templates/babybuddy/user_list.html:4
|
||||||
|
@ -477,15 +472,15 @@ msgstr ""
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:341
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:338
|
||||||
msgid "Support"
|
msgid "Support"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:343
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:340
|
||||||
msgid "Source Code"
|
msgid "Source Code"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:345
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:342
|
||||||
msgid "Chat / Support"
|
msgid "Chat / Support"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -654,7 +649,7 @@ msgstr ""
|
||||||
#: babybuddy/templates/babybuddy/user_list.html:23
|
#: babybuddy/templates/babybuddy/user_list.html:23
|
||||||
#: core/templates/core/bmi_list.html:24 core/templates/core/bmi_list.html:38
|
#: core/templates/core/bmi_list.html:24 core/templates/core/bmi_list.html:38
|
||||||
#: core/templates/core/child_list.html:28
|
#: core/templates/core/child_list.html:28
|
||||||
#: core/templates/core/child_list.html:48
|
#: core/templates/core/child_list.html:43
|
||||||
#: core/templates/core/diaperchange_list.html:24
|
#: core/templates/core/diaperchange_list.html:24
|
||||||
#: core/templates/core/diaperchange_list.html:40
|
#: core/templates/core/diaperchange_list.html:40
|
||||||
#: core/templates/core/feeding_list.html:24
|
#: core/templates/core/feeding_list.html:24
|
||||||
|
@ -849,6 +844,25 @@ msgid ""
|
||||||
"you registered with, and check your spam folder."
|
"you registered with, and check your spam folder."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:2
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"You're receiving this email because you requested a password reset for your "
|
||||||
|
"user account at %(site_name)s."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:4
|
||||||
|
msgid "Please go to the following page and choose a new password:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:8
|
||||||
|
msgid "Your username, in case you’ve forgotten:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:10
|
||||||
|
msgid "Thanks for using Baby Buddy!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/registration/password_reset_form.html:4
|
#: babybuddy/templates/registration/password_reset_form.html:4
|
||||||
msgid "Forgot Password"
|
msgid "Forgot Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -960,7 +974,7 @@ msgstr ""
|
||||||
#: reports/graphs/feeding_duration.py:56
|
#: reports/graphs/feeding_duration.py:56
|
||||||
#: reports/graphs/head_circumference_change.py:28
|
#: reports/graphs/head_circumference_change.py:28
|
||||||
#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60
|
#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60
|
||||||
#: reports/graphs/sleep_pattern.py:151 reports/graphs/sleep_totals.py:59
|
#: reports/graphs/sleep_pattern.py:153 reports/graphs/sleep_totals.py:59
|
||||||
#: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28
|
#: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28
|
||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1164,7 +1178,7 @@ msgstr ""
|
||||||
msgid "Birth Date"
|
msgid "Birth Date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: core/templates/core/child_list.html:67
|
#: core/templates/core/child_list.html:62
|
||||||
msgid "No children found."
|
msgid "No children found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -1300,6 +1314,17 @@ msgstr ""
|
||||||
msgid "No pumping entries found."
|
msgid "No pumping entries found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: core/templates/core/quick_timer_nav.html:9
|
||||||
|
#: core/templates/core/quick_timer_nav.html:29
|
||||||
|
#: core/templates/core/timer_nav.html:37
|
||||||
|
msgid "Quick Start Timer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: core/templates/core/quick_timer_nav.html:19
|
||||||
|
#: core/templates/core/timer_nav.html:28
|
||||||
|
msgid "Quick Start Timer For…"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: core/templates/core/sleep_confirm_delete.html:4
|
#: core/templates/core/sleep_confirm_delete.html:4
|
||||||
msgid "Delete a Sleep Entry"
|
msgid "Delete a Sleep Entry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1404,7 +1429,7 @@ msgid "Delete timer"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: core/templates/core/timer_form.html:22
|
#: core/templates/core/timer_form.html:22
|
||||||
#: core/templates/core/timer_list.html:15 core/templates/core/timer_nav.html:23
|
#: core/templates/core/timer_list.html:15 core/templates/core/timer_nav.html:15
|
||||||
msgid "Start Timer"
|
msgid "Start Timer"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -1416,16 +1441,16 @@ msgstr ""
|
||||||
msgid "Delete Inactive Timers"
|
msgid "Delete Inactive Timers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: core/templates/core/timer_nav.html:28
|
#: core/templates/core/timer_nav.html:20
|
||||||
msgid "View Timers"
|
msgid "View Timers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: core/templates/core/timer_nav.html:32
|
#: core/templates/core/timer_nav.html:44
|
||||||
#: dashboard/templates/cards/timer_list.html:6
|
#: dashboard/templates/cards/timer_list.html:6
|
||||||
msgid "Active Timers"
|
msgid "Active Timers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: core/templates/core/timer_nav.html:38
|
#: core/templates/core/timer_nav.html:50
|
||||||
#: dashboard/templates/cards/diaperchange_last.html:17
|
#: dashboard/templates/cards/diaperchange_last.html:17
|
||||||
#: dashboard/templates/cards/diaperchange_types.html:12
|
#: dashboard/templates/cards/diaperchange_types.html:12
|
||||||
#: dashboard/templates/cards/feeding_day.html:20
|
#: dashboard/templates/cards/feeding_day.html:20
|
||||||
|
@ -1668,16 +1693,16 @@ msgstr ""
|
||||||
msgid "%(model)s reading for %(child)s updated."
|
msgid "%(model)s reading for %(child)s updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: core/views.py:478
|
#: core/views.py:483
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(timer)s stopped."
|
msgid "%(timer)s stopped."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: core/views.py:501
|
#: core/views.py:506
|
||||||
msgid "All inactive timers deleted."
|
msgid "All inactive timers deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: core/views.py:511
|
#: core/views.py:516
|
||||||
msgid "No inactive timers exist."
|
msgid "No inactive timers exist."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -1959,11 +1984,11 @@ msgstr ""
|
||||||
msgid "Pumping Amount"
|
msgid "Pumping Amount"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: reports/graphs/sleep_pattern.py:148
|
#: reports/graphs/sleep_pattern.py:150
|
||||||
msgid "<b>Sleep Pattern</b>"
|
msgid "<b>Sleep Pattern</b>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: reports/graphs/sleep_pattern.py:165
|
#: reports/graphs/sleep_pattern.py:167
|
||||||
msgid "Time of day"
|
msgid "Time of day"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -2,7 +2,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Baby Buddy\n"
|
"Project-Id-Version: Baby Buddy\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-06-17 22:25+0000\n"
|
"POT-Creation-Date: 2022-07-30 21:13+0000\n"
|
||||||
"Language: es\n"
|
"Language: es\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
@ -11,12 +11,12 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: babybuddy/admin.py:12 babybuddy/admin.py:13
|
#: babybuddy/admin.py:12 babybuddy/admin.py:13
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:327
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:324
|
||||||
#: babybuddy/templates/babybuddy/user_settings_form.html:8
|
#: babybuddy/templates/babybuddy/user_settings_form.html:8
|
||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr "Configuración"
|
msgstr "Configuración"
|
||||||
|
|
||||||
#: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:92
|
#: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:89
|
||||||
#: babybuddy/templates/babybuddy/user_settings_form.html:61
|
#: babybuddy/templates/babybuddy/user_settings_form.html:61
|
||||||
#: dashboard/templates/dashboard/child.html:4
|
#: dashboard/templates/dashboard/child.html:4
|
||||||
#: dashboard/templates/dashboard/child.html:9
|
#: dashboard/templates/dashboard/child.html:9
|
||||||
|
@ -181,7 +181,7 @@ msgstr "Turco"
|
||||||
|
|
||||||
#: babybuddy/templates/admin/base_site.html:4
|
#: babybuddy/templates/admin/base_site.html:4
|
||||||
#: babybuddy/templates/admin/base_site.html:7
|
#: babybuddy/templates/admin/base_site.html:7
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:339
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:336
|
||||||
msgid "Database Admin"
|
msgid "Database Admin"
|
||||||
msgstr "Administrar Base de Datos"
|
msgstr "Administrar Base de Datos"
|
||||||
|
|
||||||
|
@ -219,30 +219,25 @@ msgstr ""
|
||||||
"<strong>Error:</strong> Algunos campos contienen errores. Mira más abajo "
|
"<strong>Error:</strong> Algunos campos contienen errores. Mira más abajo "
|
||||||
"para más detalles."
|
"para más detalles."
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:32
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:48 core/models.py:248
|
||||||
#: core/templates/core/timer_nav.html:18
|
|
||||||
msgid "Quick Start Timer"
|
|
||||||
msgstr "Iniciar Temporizador Rápido"
|
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:51 core/models.py:248
|
|
||||||
#: core/models.py:252
|
#: core/models.py:252
|
||||||
msgid "Diaper Change"
|
msgid "Diaper Change"
|
||||||
msgstr "Cambio de Pañal"
|
msgstr "Cambio de Pañal"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:57
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:54
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:262 core/models.py:312
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:259 core/models.py:312
|
||||||
#: core/models.py:316 core/templates/core/timer_detail.html:43
|
#: core/models.py:316 core/templates/core/timer_detail.html:43
|
||||||
msgid "Feeding"
|
msgid "Feeding"
|
||||||
msgstr "Toma"
|
msgstr "Toma"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:63
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:60
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:138 core/models.py:396
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:135 core/models.py:396
|
||||||
#: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29
|
#: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29
|
||||||
msgid "Note"
|
msgid "Note"
|
||||||
msgstr "Nota"
|
msgstr "Nota"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:69
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:66
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:283
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:280
|
||||||
#: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467
|
#: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467
|
||||||
#: core/models.py:468 core/models.py:471
|
#: core/models.py:468 core/models.py:471
|
||||||
#: core/templates/core/sleep_confirm_delete.html:7
|
#: core/templates/core/sleep_confirm_delete.html:7
|
||||||
|
@ -252,8 +247,8 @@ msgstr "Nota"
|
||||||
msgid "Sleep"
|
msgid "Sleep"
|
||||||
msgstr "Sueño"
|
msgstr "Sueño"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:75
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:72
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:296
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:293
|
||||||
#: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647
|
#: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647
|
||||||
#: core/models.py:648 core/models.py:651
|
#: core/models.py:648 core/models.py:651
|
||||||
#: core/templates/core/timer_detail.html:59
|
#: core/templates/core/timer_detail.html:59
|
||||||
|
@ -265,15 +260,15 @@ msgstr "Sueño"
|
||||||
msgid "Tummy Time"
|
msgid "Tummy Time"
|
||||||
msgstr "Tiempo boca abajo"
|
msgstr "Tiempo boca abajo"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:99
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:96
|
||||||
#: core/templates/timeline/timeline.html:4
|
#: core/templates/timeline/timeline.html:4
|
||||||
#: core/templates/timeline/timeline.html:7
|
#: core/templates/timeline/timeline.html:7
|
||||||
#: dashboard/templates/dashboard/child_button_group.html:9
|
#: dashboard/templates/dashboard/child_button_group.html:9
|
||||||
msgid "Timeline"
|
msgid "Timeline"
|
||||||
msgstr "Cronología"
|
msgstr "Cronología"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:110
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:107
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:118 core/models.py:188
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:115 core/models.py:188
|
||||||
#: core/templates/core/child_confirm_delete.html:7
|
#: core/templates/core/child_confirm_delete.html:7
|
||||||
#: core/templates/core/child_detail.html:7
|
#: core/templates/core/child_detail.html:7
|
||||||
#: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4
|
#: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4
|
||||||
|
@ -283,7 +278,7 @@ msgstr "Cronología"
|
||||||
msgid "Children"
|
msgid "Children"
|
||||||
msgstr "Niños"
|
msgstr "Niños"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:124 core/models.py:137
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:121 core/models.py:137
|
||||||
#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335
|
#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335
|
||||||
#: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450
|
#: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450
|
||||||
#: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671
|
#: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671
|
||||||
|
@ -302,7 +297,7 @@ msgstr "Niños"
|
||||||
msgid "Child"
|
msgid "Child"
|
||||||
msgstr "Niño"
|
msgstr "Niño"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:132 core/models.py:143
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:129 core/models.py:143
|
||||||
#: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373
|
#: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373
|
||||||
#: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511
|
#: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511
|
||||||
#: core/models.py:677 core/templates/core/note_confirm_delete.html:7
|
#: core/models.py:677 core/templates/core/note_confirm_delete.html:7
|
||||||
|
@ -311,11 +306,11 @@ msgstr "Niño"
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Notas"
|
msgstr "Notas"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:152
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:149
|
||||||
msgid "Measurements"
|
msgid "Measurements"
|
||||||
msgstr "Mediciones"
|
msgstr "Mediciones"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:160 core/models.py:139
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:157 core/models.py:139
|
||||||
#: core/models.py:151 core/models.py:152 core/models.py:155
|
#: core/models.py:151 core/models.py:152 core/models.py:155
|
||||||
#: core/templates/core/bmi_confirm_delete.html:7
|
#: 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_form.html:13 core/templates/core/bmi_list.html:4
|
||||||
|
@ -326,11 +321,11 @@ msgstr "Mediciones"
|
||||||
msgid "BMI"
|
msgid "BMI"
|
||||||
msgstr "IMC"
|
msgstr "IMC"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:166
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:163
|
||||||
msgid "BMI entry"
|
msgid "BMI entry"
|
||||||
msgstr "Entrada de IMC"
|
msgstr "Entrada de IMC"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:174 core/models.py:338
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:171 core/models.py:338
|
||||||
#: core/models.py:351 core/models.py:352 core/models.py:355
|
#: core/models.py:351 core/models.py:352 core/models.py:355
|
||||||
#: core/templates/core/head_circumference_confirm_delete.html:7
|
#: core/templates/core/head_circumference_confirm_delete.html:7
|
||||||
#: core/templates/core/head_circumference_form.html:13
|
#: core/templates/core/head_circumference_form.html:13
|
||||||
|
@ -346,11 +341,11 @@ msgstr "Entrada de IMC"
|
||||||
msgid "Head Circumference"
|
msgid "Head Circumference"
|
||||||
msgstr "Perímetro craneal"
|
msgstr "Perímetro craneal"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:180
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:177
|
||||||
msgid "Head Circumference entry"
|
msgid "Head Circumference entry"
|
||||||
msgstr "Entrada de perímetro craneal"
|
msgstr "Entrada de perímetro craneal"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:188 core/models.py:369
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:185 core/models.py:369
|
||||||
#: core/models.py:381 core/models.py:382 core/models.py:385
|
#: core/models.py:381 core/models.py:382 core/models.py:385
|
||||||
#: core/templates/core/height_confirm_delete.html:7
|
#: core/templates/core/height_confirm_delete.html:7
|
||||||
#: core/templates/core/height_form.html:13
|
#: core/templates/core/height_form.html:13
|
||||||
|
@ -365,11 +360,11 @@ msgstr "Entrada de perímetro craneal"
|
||||||
msgid "Height"
|
msgid "Height"
|
||||||
msgstr "Altura"
|
msgstr "Altura"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:194
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:191
|
||||||
msgid "Height entry"
|
msgid "Height entry"
|
||||||
msgstr "Entrada de altura"
|
msgstr "Entrada de altura"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:202 core/models.py:506
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:199 core/models.py:506
|
||||||
#: core/models.py:519 core/models.py:520 core/models.py:523
|
#: core/models.py:519 core/models.py:520 core/models.py:523
|
||||||
#: core/templates/core/temperature_confirm_delete.html:7
|
#: core/templates/core/temperature_confirm_delete.html:7
|
||||||
#: core/templates/core/temperature_form.html:13
|
#: core/templates/core/temperature_form.html:13
|
||||||
|
@ -380,11 +375,11 @@ msgstr "Entrada de altura"
|
||||||
msgid "Temperature"
|
msgid "Temperature"
|
||||||
msgstr "Temperatura"
|
msgstr "Temperatura"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:208
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:205
|
||||||
msgid "Temperature reading"
|
msgid "Temperature reading"
|
||||||
msgstr "Lectura de temperatura"
|
msgstr "Lectura de temperatura"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:216 core/models.py:673
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:213 core/models.py:673
|
||||||
#: core/models.py:685 core/models.py:686 core/models.py:689
|
#: core/models.py:685 core/models.py:686 core/models.py:689
|
||||||
#: core/templates/core/weight_confirm_delete.html:7
|
#: core/templates/core/weight_confirm_delete.html:7
|
||||||
#: core/templates/core/weight_form.html:13
|
#: core/templates/core/weight_form.html:13
|
||||||
|
@ -399,24 +394,24 @@ msgstr "Lectura de temperatura"
|
||||||
msgid "Weight"
|
msgid "Weight"
|
||||||
msgstr "Peso"
|
msgstr "Peso"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:222
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:219
|
||||||
msgid "Weight entry"
|
msgid "Weight entry"
|
||||||
msgstr "Introducir peso"
|
msgstr "Introducir peso"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:236
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:233
|
||||||
msgid "Activities"
|
msgid "Activities"
|
||||||
msgstr "Actividades"
|
msgstr "Actividades"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:243
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:240
|
||||||
#: reports/graphs/diaperchange_lifetimes.py:27
|
#: reports/graphs/diaperchange_lifetimes.py:27
|
||||||
msgid "Changes"
|
msgid "Changes"
|
||||||
msgstr "Cambios"
|
msgstr "Cambios"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:249
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:246
|
||||||
msgid "Change"
|
msgid "Change"
|
||||||
msgstr "Cambio"
|
msgstr "Cambio"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:256
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:253
|
||||||
#: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313
|
#: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313
|
||||||
#: core/templates/core/feeding_confirm_delete.html:7
|
#: core/templates/core/feeding_confirm_delete.html:7
|
||||||
#: core/templates/core/feeding_form.html:13
|
#: core/templates/core/feeding_form.html:13
|
||||||
|
@ -426,7 +421,7 @@ msgstr "Cambio"
|
||||||
msgid "Feedings"
|
msgid "Feedings"
|
||||||
msgstr "Tomas"
|
msgstr "Tomas"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:270 core/models.py:437
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:267 core/models.py:437
|
||||||
#: core/models.py:438 core/models.py:441
|
#: core/models.py:438 core/models.py:441
|
||||||
#: core/templates/core/pumping_confirm_delete.html:7
|
#: core/templates/core/pumping_confirm_delete.html:7
|
||||||
#: core/templates/core/pumping_form.html:13
|
#: core/templates/core/pumping_form.html:13
|
||||||
|
@ -438,19 +433,19 @@ msgstr "Tomas"
|
||||||
msgid "Pumping"
|
msgid "Pumping"
|
||||||
msgstr "Extracciones"
|
msgstr "Extracciones"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:276
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:273
|
||||||
msgid "Pumping entry"
|
msgid "Pumping entry"
|
||||||
msgstr "Entrada de extracción"
|
msgstr "Entrada de extracción"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:289
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:286
|
||||||
msgid "Sleep entry"
|
msgid "Sleep entry"
|
||||||
msgstr "Entrada de sueño"
|
msgstr "Entrada de sueño"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:302
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:299
|
||||||
msgid "Tummy Time entry"
|
msgid "Tummy Time entry"
|
||||||
msgstr "Entrada de tiempo boca abajo"
|
msgstr "Entrada de tiempo boca abajo"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:326
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:323
|
||||||
#: babybuddy/templates/babybuddy/user_list.html:17
|
#: babybuddy/templates/babybuddy/user_list.html:17
|
||||||
#: babybuddy/templates/babybuddy/user_password_form.html:7
|
#: babybuddy/templates/babybuddy/user_password_form.html:7
|
||||||
#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556
|
#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556
|
||||||
|
@ -458,23 +453,23 @@ msgstr "Entrada de tiempo boca abajo"
|
||||||
msgid "User"
|
msgid "User"
|
||||||
msgstr "Usuario"
|
msgstr "Usuario"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:328
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:325
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr "Contraseña"
|
msgstr "Contraseña"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:332
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:329
|
||||||
msgid "Logout"
|
msgid "Logout"
|
||||||
msgstr "Cerrar sesión"
|
msgstr "Cerrar sesión"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:335
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:332
|
||||||
msgid "Site"
|
msgid "Site"
|
||||||
msgstr "Sitio"
|
msgstr "Sitio"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:336
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:333
|
||||||
msgid "API Browser"
|
msgid "API Browser"
|
||||||
msgstr "Navegador API"
|
msgstr "Navegador API"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:338
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:335
|
||||||
#: babybuddy/templates/babybuddy/user_confirm_delete.html:7
|
#: babybuddy/templates/babybuddy/user_confirm_delete.html:7
|
||||||
#: babybuddy/templates/babybuddy/user_form.html:13
|
#: babybuddy/templates/babybuddy/user_form.html:13
|
||||||
#: babybuddy/templates/babybuddy/user_list.html:4
|
#: babybuddy/templates/babybuddy/user_list.html:4
|
||||||
|
@ -482,15 +477,15 @@ msgstr "Navegador API"
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr "Usuarios"
|
msgstr "Usuarios"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:341
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:338
|
||||||
msgid "Support"
|
msgid "Support"
|
||||||
msgstr "Soporte"
|
msgstr "Soporte"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:343
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:340
|
||||||
msgid "Source Code"
|
msgid "Source Code"
|
||||||
msgstr "Código Fuente"
|
msgstr "Código Fuente"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:345
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:342
|
||||||
msgid "Chat / Support"
|
msgid "Chat / Support"
|
||||||
msgstr "Chat / Soporte"
|
msgstr "Chat / Soporte"
|
||||||
|
|
||||||
|
@ -661,7 +656,7 @@ msgstr "Activo"
|
||||||
#: babybuddy/templates/babybuddy/user_list.html:23
|
#: babybuddy/templates/babybuddy/user_list.html:23
|
||||||
#: core/templates/core/bmi_list.html:24 core/templates/core/bmi_list.html:38
|
#: core/templates/core/bmi_list.html:24 core/templates/core/bmi_list.html:38
|
||||||
#: core/templates/core/child_list.html:28
|
#: core/templates/core/child_list.html:28
|
||||||
#: core/templates/core/child_list.html:48
|
#: core/templates/core/child_list.html:43
|
||||||
#: core/templates/core/diaperchange_list.html:24
|
#: core/templates/core/diaperchange_list.html:24
|
||||||
#: core/templates/core/diaperchange_list.html:40
|
#: core/templates/core/diaperchange_list.html:40
|
||||||
#: core/templates/core/feeding_list.html:24
|
#: core/templates/core/feeding_list.html:24
|
||||||
|
@ -784,10 +779,14 @@ msgid "How to Fix"
|
||||||
msgstr "Cómo arreglarlo"
|
msgstr "Cómo arreglarlo"
|
||||||
|
|
||||||
#: babybuddy/templates/error/403_csrf_bad_origin.html:15
|
#: babybuddy/templates/error/403_csrf_bad_origin.html:15
|
||||||
#, python-format
|
#, fuzzy, python-format
|
||||||
|
#| msgid ""
|
||||||
|
#| "Add <samp>%(origin)s</samp> to the <code>CSRF_TRUSTED_ORIGINS</code> "
|
||||||
|
#| "environment variable. If multiple origins are required separate with "
|
||||||
|
#| "commas.\n"
|
||||||
msgid ""
|
msgid ""
|
||||||
"Add <samp>%(origin)s</samp> to the <code>CSRF_TRUSTED_ORIGINS</code> "
|
"Add <samp>%(origin)s</samp> to the <code>CSRF_TRUSTED_ORIGINS</code> "
|
||||||
"environment variable. If multiple origins are required separate with commas.\n"
|
"environment variable. If multiple origins are required separate with commas."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Añade <samp>%(origin)s</samp> a la variable de entorno "
|
"Añade <samp>%(origin)s</samp> a la variable de entorno "
|
||||||
"<code>CSRF_TRUSTED_ORIGINS</code>. Si se requieren orígenes múltiples, "
|
"<code>CSRF_TRUSTED_ORIGINS</code>. Si se requieren orígenes múltiples, "
|
||||||
|
@ -870,6 +869,25 @@ msgstr ""
|
||||||
"Si no recibes el email, asegúrate de haber introducido la dirección de "
|
"Si no recibes el email, asegúrate de haber introducido la dirección de "
|
||||||
"correo con la que te has registrado y comprueba tu carpeta de spam."
|
"correo con la que te has registrado y comprueba tu carpeta de spam."
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:2
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"You're receiving this email because you requested a password reset for your "
|
||||||
|
"user account at %(site_name)s."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:4
|
||||||
|
msgid "Please go to the following page and choose a new password:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:8
|
||||||
|
msgid "Your username, in case you’ve forgotten:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:10
|
||||||
|
msgid "Thanks for using Baby Buddy!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/registration/password_reset_form.html:4
|
#: babybuddy/templates/registration/password_reset_form.html:4
|
||||||
msgid "Forgot Password"
|
msgid "Forgot Password"
|
||||||
msgstr "Contraseña Olvidada"
|
msgstr "Contraseña Olvidada"
|
||||||
|
@ -985,7 +1003,7 @@ msgstr "Etiquetas"
|
||||||
#: reports/graphs/feeding_duration.py:56
|
#: reports/graphs/feeding_duration.py:56
|
||||||
#: reports/graphs/head_circumference_change.py:28
|
#: reports/graphs/head_circumference_change.py:28
|
||||||
#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60
|
#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60
|
||||||
#: reports/graphs/sleep_pattern.py:151 reports/graphs/sleep_totals.py:59
|
#: reports/graphs/sleep_pattern.py:153 reports/graphs/sleep_totals.py:59
|
||||||
#: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28
|
#: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28
|
||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "Fecha"
|
msgstr "Fecha"
|
||||||
|
@ -1189,7 +1207,7 @@ msgstr "Añadir Niño"
|
||||||
msgid "Birth Date"
|
msgid "Birth Date"
|
||||||
msgstr "Fecha Nacimiento"
|
msgstr "Fecha Nacimiento"
|
||||||
|
|
||||||
#: core/templates/core/child_list.html:67
|
#: core/templates/core/child_list.html:62
|
||||||
msgid "No children found."
|
msgid "No children found."
|
||||||
msgstr "No se ha encontrado ningún niño."
|
msgstr "No se ha encontrado ningún niño."
|
||||||
|
|
||||||
|
@ -1325,6 +1343,19 @@ msgstr "Añadir extracción"
|
||||||
msgid "No pumping entries found."
|
msgid "No pumping entries found."
|
||||||
msgstr "No se encontraron extracciones."
|
msgstr "No se encontraron extracciones."
|
||||||
|
|
||||||
|
#: core/templates/core/quick_timer_nav.html:9
|
||||||
|
#: core/templates/core/quick_timer_nav.html:29
|
||||||
|
#: core/templates/core/timer_nav.html:37
|
||||||
|
msgid "Quick Start Timer"
|
||||||
|
msgstr "Iniciar Temporizador Rápido"
|
||||||
|
|
||||||
|
#: core/templates/core/quick_timer_nav.html:19
|
||||||
|
#: core/templates/core/timer_nav.html:28
|
||||||
|
#, fuzzy
|
||||||
|
#| msgid "Quick Start Timer"
|
||||||
|
msgid "Quick Start Timer For…"
|
||||||
|
msgstr "Iniciar Temporizador Rápido"
|
||||||
|
|
||||||
#: core/templates/core/sleep_confirm_delete.html:4
|
#: core/templates/core/sleep_confirm_delete.html:4
|
||||||
msgid "Delete a Sleep Entry"
|
msgid "Delete a Sleep Entry"
|
||||||
msgstr "Eliminar Entrada de Sueño"
|
msgstr "Eliminar Entrada de Sueño"
|
||||||
|
@ -1402,11 +1433,11 @@ msgstr "Eliminar Inactivo"
|
||||||
msgid "Are you sure you want to delete %(number)s inactive timer?"
|
msgid "Are you sure you want to delete %(number)s inactive timer?"
|
||||||
msgid_plural "Are you sure you want to delete %(number)s inactive timers?"
|
msgid_plural "Are you sure you want to delete %(number)s inactive timers?"
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
"¿Está seguro de que desea eliminar %(number)s temporizador%(plural)s "
|
"¿Está seguro de que desea eliminar %(number)s temporizador%(plural)s inactivo"
|
||||||
"inactivo%(plural)s?"
|
"%(plural)s?"
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
"¿Está seguro de que desea eliminar %(number)s temporizador%(plural)s "
|
"¿Está seguro de que desea eliminar %(number)s temporizador%(plural)s inactivo"
|
||||||
"inactivo%(plural)s?"
|
"%(plural)s?"
|
||||||
|
|
||||||
#: core/templates/core/timer_detail.html:28
|
#: core/templates/core/timer_detail.html:28
|
||||||
msgid "Started"
|
msgid "Started"
|
||||||
|
@ -1434,7 +1465,7 @@ msgid "Delete timer"
|
||||||
msgstr "Eliminar temporizador"
|
msgstr "Eliminar temporizador"
|
||||||
|
|
||||||
#: core/templates/core/timer_form.html:22
|
#: core/templates/core/timer_form.html:22
|
||||||
#: core/templates/core/timer_list.html:15 core/templates/core/timer_nav.html:23
|
#: core/templates/core/timer_list.html:15 core/templates/core/timer_nav.html:15
|
||||||
msgid "Start Timer"
|
msgid "Start Timer"
|
||||||
msgstr "Iniciar Temporizador"
|
msgstr "Iniciar Temporizador"
|
||||||
|
|
||||||
|
@ -1446,16 +1477,16 @@ msgstr "No se han encontrado temporizadores."
|
||||||
msgid "Delete Inactive Timers"
|
msgid "Delete Inactive Timers"
|
||||||
msgstr "Eliminar Temporizadores Inactivos"
|
msgstr "Eliminar Temporizadores Inactivos"
|
||||||
|
|
||||||
#: core/templates/core/timer_nav.html:28
|
#: core/templates/core/timer_nav.html:20
|
||||||
msgid "View Timers"
|
msgid "View Timers"
|
||||||
msgstr "Ver Temporizadores"
|
msgstr "Ver Temporizadores"
|
||||||
|
|
||||||
#: core/templates/core/timer_nav.html:32
|
#: core/templates/core/timer_nav.html:44
|
||||||
#: dashboard/templates/cards/timer_list.html:6
|
#: dashboard/templates/cards/timer_list.html:6
|
||||||
msgid "Active Timers"
|
msgid "Active Timers"
|
||||||
msgstr "Temporizadores Activos"
|
msgstr "Temporizadores Activos"
|
||||||
|
|
||||||
#: core/templates/core/timer_nav.html:38
|
#: core/templates/core/timer_nav.html:50
|
||||||
#: dashboard/templates/cards/diaperchange_last.html:17
|
#: dashboard/templates/cards/diaperchange_last.html:17
|
||||||
#: dashboard/templates/cards/diaperchange_types.html:12
|
#: dashboard/templates/cards/diaperchange_types.html:12
|
||||||
#: dashboard/templates/cards/feeding_day.html:20
|
#: dashboard/templates/cards/feeding_day.html:20
|
||||||
|
@ -1700,16 +1731,16 @@ msgstr "%(model)s lectura añadida!"
|
||||||
msgid "%(model)s reading for %(child)s updated."
|
msgid "%(model)s reading for %(child)s updated."
|
||||||
msgstr "%(model)s lectura para %(child)s actualizada."
|
msgstr "%(model)s lectura para %(child)s actualizada."
|
||||||
|
|
||||||
#: core/views.py:478
|
#: core/views.py:483
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(timer)s stopped."
|
msgid "%(timer)s stopped."
|
||||||
msgstr "%(timer)s parado."
|
msgstr "%(timer)s parado."
|
||||||
|
|
||||||
#: core/views.py:501
|
#: core/views.py:506
|
||||||
msgid "All inactive timers deleted."
|
msgid "All inactive timers deleted."
|
||||||
msgstr "Todos los temporizadores inactivos eliminados."
|
msgstr "Todos los temporizadores inactivos eliminados."
|
||||||
|
|
||||||
#: core/views.py:511
|
#: core/views.py:516
|
||||||
msgid "No inactive timers exist."
|
msgid "No inactive timers exist."
|
||||||
msgstr "No hay temporizadores inactivos."
|
msgstr "No hay temporizadores inactivos."
|
||||||
|
|
||||||
|
@ -1998,11 +2029,11 @@ msgstr "<b>Cantidad total extraída</b>"
|
||||||
msgid "Pumping Amount"
|
msgid "Pumping Amount"
|
||||||
msgstr "Cantidad de extracción"
|
msgstr "Cantidad de extracción"
|
||||||
|
|
||||||
#: reports/graphs/sleep_pattern.py:148
|
#: reports/graphs/sleep_pattern.py:150
|
||||||
msgid "<b>Sleep Pattern</b>"
|
msgid "<b>Sleep Pattern</b>"
|
||||||
msgstr "<p>Patrón de Sueño</p>"
|
msgstr "<p>Patrón de Sueño</p>"
|
||||||
|
|
||||||
#: reports/graphs/sleep_pattern.py:165
|
#: reports/graphs/sleep_pattern.py:167
|
||||||
msgid "Time of day"
|
msgid "Time of day"
|
||||||
msgstr "Hora del día"
|
msgstr "Hora del día"
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Baby Buddy\n"
|
"Project-Id-Version: Baby Buddy\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-06-17 22:25+0000\n"
|
"POT-Creation-Date: 2022-07-30 21:13+0000\n"
|
||||||
"Language: fi\n"
|
"Language: fi\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
@ -11,12 +11,12 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: babybuddy/admin.py:12 babybuddy/admin.py:13
|
#: babybuddy/admin.py:12 babybuddy/admin.py:13
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:327
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:324
|
||||||
#: babybuddy/templates/babybuddy/user_settings_form.html:8
|
#: babybuddy/templates/babybuddy/user_settings_form.html:8
|
||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr "Asetukset"
|
msgstr "Asetukset"
|
||||||
|
|
||||||
#: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:92
|
#: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:89
|
||||||
#: babybuddy/templates/babybuddy/user_settings_form.html:61
|
#: babybuddy/templates/babybuddy/user_settings_form.html:61
|
||||||
#: dashboard/templates/dashboard/child.html:4
|
#: dashboard/templates/dashboard/child.html:4
|
||||||
#: dashboard/templates/dashboard/child.html:9
|
#: dashboard/templates/dashboard/child.html:9
|
||||||
|
@ -179,7 +179,7 @@ msgstr "turkki"
|
||||||
|
|
||||||
#: babybuddy/templates/admin/base_site.html:4
|
#: babybuddy/templates/admin/base_site.html:4
|
||||||
#: babybuddy/templates/admin/base_site.html:7
|
#: babybuddy/templates/admin/base_site.html:7
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:339
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:336
|
||||||
msgid "Database Admin"
|
msgid "Database Admin"
|
||||||
msgstr "Tietokantahallinta"
|
msgstr "Tietokantahallinta"
|
||||||
|
|
||||||
|
@ -216,30 +216,25 @@ msgid "<strong>Error:</strong> Some fields have errors. See below for details."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"<strong>Virhe:</strong> Joissakin kentissä on virheitä. Tarkista ne alta."
|
"<strong>Virhe:</strong> Joissakin kentissä on virheitä. Tarkista ne alta."
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:32
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:48 core/models.py:248
|
||||||
#: core/templates/core/timer_nav.html:18
|
|
||||||
msgid "Quick Start Timer"
|
|
||||||
msgstr "Pika-ajastin"
|
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:51 core/models.py:248
|
|
||||||
#: core/models.py:252
|
#: core/models.py:252
|
||||||
msgid "Diaper Change"
|
msgid "Diaper Change"
|
||||||
msgstr "Vaipanvaihto"
|
msgstr "Vaipanvaihto"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:57
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:54
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:262 core/models.py:312
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:259 core/models.py:312
|
||||||
#: core/models.py:316 core/templates/core/timer_detail.html:43
|
#: core/models.py:316 core/templates/core/timer_detail.html:43
|
||||||
msgid "Feeding"
|
msgid "Feeding"
|
||||||
msgstr "Syöttö"
|
msgstr "Syöttö"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:63
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:60
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:138 core/models.py:396
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:135 core/models.py:396
|
||||||
#: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29
|
#: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29
|
||||||
msgid "Note"
|
msgid "Note"
|
||||||
msgstr "Muistiinpano"
|
msgstr "Muistiinpano"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:69
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:66
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:283
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:280
|
||||||
#: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467
|
#: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467
|
||||||
#: core/models.py:468 core/models.py:471
|
#: core/models.py:468 core/models.py:471
|
||||||
#: core/templates/core/sleep_confirm_delete.html:7
|
#: core/templates/core/sleep_confirm_delete.html:7
|
||||||
|
@ -249,8 +244,8 @@ msgstr "Muistiinpano"
|
||||||
msgid "Sleep"
|
msgid "Sleep"
|
||||||
msgstr "Uni"
|
msgstr "Uni"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:75
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:72
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:296
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:293
|
||||||
#: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647
|
#: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647
|
||||||
#: core/models.py:648 core/models.py:651
|
#: core/models.py:648 core/models.py:651
|
||||||
#: core/templates/core/timer_detail.html:59
|
#: core/templates/core/timer_detail.html:59
|
||||||
|
@ -262,15 +257,15 @@ msgstr "Uni"
|
||||||
msgid "Tummy Time"
|
msgid "Tummy Time"
|
||||||
msgstr "Ihokontakti"
|
msgstr "Ihokontakti"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:99
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:96
|
||||||
#: core/templates/timeline/timeline.html:4
|
#: core/templates/timeline/timeline.html:4
|
||||||
#: core/templates/timeline/timeline.html:7
|
#: core/templates/timeline/timeline.html:7
|
||||||
#: dashboard/templates/dashboard/child_button_group.html:9
|
#: dashboard/templates/dashboard/child_button_group.html:9
|
||||||
msgid "Timeline"
|
msgid "Timeline"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:110
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:107
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:118 core/models.py:188
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:115 core/models.py:188
|
||||||
#: core/templates/core/child_confirm_delete.html:7
|
#: core/templates/core/child_confirm_delete.html:7
|
||||||
#: core/templates/core/child_detail.html:7
|
#: core/templates/core/child_detail.html:7
|
||||||
#: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4
|
#: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4
|
||||||
|
@ -280,7 +275,7 @@ msgstr ""
|
||||||
msgid "Children"
|
msgid "Children"
|
||||||
msgstr "Lapset"
|
msgstr "Lapset"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:124 core/models.py:137
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:121 core/models.py:137
|
||||||
#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335
|
#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335
|
||||||
#: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450
|
#: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450
|
||||||
#: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671
|
#: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671
|
||||||
|
@ -299,7 +294,7 @@ msgstr "Lapset"
|
||||||
msgid "Child"
|
msgid "Child"
|
||||||
msgstr "Lapsi"
|
msgstr "Lapsi"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:132 core/models.py:143
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:129 core/models.py:143
|
||||||
#: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373
|
#: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373
|
||||||
#: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511
|
#: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511
|
||||||
#: core/models.py:677 core/templates/core/note_confirm_delete.html:7
|
#: core/models.py:677 core/templates/core/note_confirm_delete.html:7
|
||||||
|
@ -308,11 +303,11 @@ msgstr "Lapsi"
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Muistiinpanot"
|
msgstr "Muistiinpanot"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:152
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:149
|
||||||
msgid "Measurements"
|
msgid "Measurements"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:160 core/models.py:139
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:157 core/models.py:139
|
||||||
#: core/models.py:151 core/models.py:152 core/models.py:155
|
#: core/models.py:151 core/models.py:152 core/models.py:155
|
||||||
#: core/templates/core/bmi_confirm_delete.html:7
|
#: 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_form.html:13 core/templates/core/bmi_list.html:4
|
||||||
|
@ -323,11 +318,11 @@ msgstr ""
|
||||||
msgid "BMI"
|
msgid "BMI"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:166
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:163
|
||||||
msgid "BMI entry"
|
msgid "BMI entry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:174 core/models.py:338
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:171 core/models.py:338
|
||||||
#: core/models.py:351 core/models.py:352 core/models.py:355
|
#: core/models.py:351 core/models.py:352 core/models.py:355
|
||||||
#: core/templates/core/head_circumference_confirm_delete.html:7
|
#: core/templates/core/head_circumference_confirm_delete.html:7
|
||||||
#: core/templates/core/head_circumference_form.html:13
|
#: core/templates/core/head_circumference_form.html:13
|
||||||
|
@ -343,11 +338,11 @@ msgstr ""
|
||||||
msgid "Head Circumference"
|
msgid "Head Circumference"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:180
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:177
|
||||||
msgid "Head Circumference entry"
|
msgid "Head Circumference entry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:188 core/models.py:369
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:185 core/models.py:369
|
||||||
#: core/models.py:381 core/models.py:382 core/models.py:385
|
#: core/models.py:381 core/models.py:382 core/models.py:385
|
||||||
#: core/templates/core/height_confirm_delete.html:7
|
#: core/templates/core/height_confirm_delete.html:7
|
||||||
#: core/templates/core/height_form.html:13
|
#: core/templates/core/height_form.html:13
|
||||||
|
@ -362,11 +357,11 @@ msgstr ""
|
||||||
msgid "Height"
|
msgid "Height"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:194
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:191
|
||||||
msgid "Height entry"
|
msgid "Height entry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:202 core/models.py:506
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:199 core/models.py:506
|
||||||
#: core/models.py:519 core/models.py:520 core/models.py:523
|
#: core/models.py:519 core/models.py:520 core/models.py:523
|
||||||
#: core/templates/core/temperature_confirm_delete.html:7
|
#: core/templates/core/temperature_confirm_delete.html:7
|
||||||
#: core/templates/core/temperature_form.html:13
|
#: core/templates/core/temperature_form.html:13
|
||||||
|
@ -377,11 +372,11 @@ msgstr ""
|
||||||
msgid "Temperature"
|
msgid "Temperature"
|
||||||
msgstr "Lämpötila"
|
msgstr "Lämpötila"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:208
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:205
|
||||||
msgid "Temperature reading"
|
msgid "Temperature reading"
|
||||||
msgstr "Lämpötilalukema"
|
msgstr "Lämpötilalukema"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:216 core/models.py:673
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:213 core/models.py:673
|
||||||
#: core/models.py:685 core/models.py:686 core/models.py:689
|
#: core/models.py:685 core/models.py:686 core/models.py:689
|
||||||
#: core/templates/core/weight_confirm_delete.html:7
|
#: core/templates/core/weight_confirm_delete.html:7
|
||||||
#: core/templates/core/weight_form.html:13
|
#: core/templates/core/weight_form.html:13
|
||||||
|
@ -396,24 +391,24 @@ msgstr "Lämpötilalukema"
|
||||||
msgid "Weight"
|
msgid "Weight"
|
||||||
msgstr "Paino"
|
msgstr "Paino"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:222
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:219
|
||||||
msgid "Weight entry"
|
msgid "Weight entry"
|
||||||
msgstr "Painomerkintä"
|
msgstr "Painomerkintä"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:236
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:233
|
||||||
msgid "Activities"
|
msgid "Activities"
|
||||||
msgstr "Aktiviteetit"
|
msgstr "Aktiviteetit"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:243
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:240
|
||||||
#: reports/graphs/diaperchange_lifetimes.py:27
|
#: reports/graphs/diaperchange_lifetimes.py:27
|
||||||
msgid "Changes"
|
msgid "Changes"
|
||||||
msgstr "Muutokset"
|
msgstr "Muutokset"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:249
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:246
|
||||||
msgid "Change"
|
msgid "Change"
|
||||||
msgstr "Muutos"
|
msgstr "Muutos"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:256
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:253
|
||||||
#: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313
|
#: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313
|
||||||
#: core/templates/core/feeding_confirm_delete.html:7
|
#: core/templates/core/feeding_confirm_delete.html:7
|
||||||
#: core/templates/core/feeding_form.html:13
|
#: core/templates/core/feeding_form.html:13
|
||||||
|
@ -423,7 +418,7 @@ msgstr "Muutos"
|
||||||
msgid "Feedings"
|
msgid "Feedings"
|
||||||
msgstr "Syötöt"
|
msgstr "Syötöt"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:270 core/models.py:437
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:267 core/models.py:437
|
||||||
#: core/models.py:438 core/models.py:441
|
#: core/models.py:438 core/models.py:441
|
||||||
#: core/templates/core/pumping_confirm_delete.html:7
|
#: core/templates/core/pumping_confirm_delete.html:7
|
||||||
#: core/templates/core/pumping_form.html:13
|
#: core/templates/core/pumping_form.html:13
|
||||||
|
@ -435,19 +430,19 @@ msgstr "Syötöt"
|
||||||
msgid "Pumping"
|
msgid "Pumping"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:276
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:273
|
||||||
msgid "Pumping entry"
|
msgid "Pumping entry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:289
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:286
|
||||||
msgid "Sleep entry"
|
msgid "Sleep entry"
|
||||||
msgstr "Unimerkintä"
|
msgstr "Unimerkintä"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:302
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:299
|
||||||
msgid "Tummy Time entry"
|
msgid "Tummy Time entry"
|
||||||
msgstr "Ihokontakti"
|
msgstr "Ihokontakti"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:326
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:323
|
||||||
#: babybuddy/templates/babybuddy/user_list.html:17
|
#: babybuddy/templates/babybuddy/user_list.html:17
|
||||||
#: babybuddy/templates/babybuddy/user_password_form.html:7
|
#: babybuddy/templates/babybuddy/user_password_form.html:7
|
||||||
#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556
|
#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556
|
||||||
|
@ -455,23 +450,23 @@ msgstr "Ihokontakti"
|
||||||
msgid "User"
|
msgid "User"
|
||||||
msgstr "Käyttäjä"
|
msgstr "Käyttäjä"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:328
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:325
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr "Salasana"
|
msgstr "Salasana"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:332
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:329
|
||||||
msgid "Logout"
|
msgid "Logout"
|
||||||
msgstr "Kirjaudu ulos"
|
msgstr "Kirjaudu ulos"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:335
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:332
|
||||||
msgid "Site"
|
msgid "Site"
|
||||||
msgstr "Sivusto"
|
msgstr "Sivusto"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:336
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:333
|
||||||
msgid "API Browser"
|
msgid "API Browser"
|
||||||
msgstr "API-selain"
|
msgstr "API-selain"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:338
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:335
|
||||||
#: babybuddy/templates/babybuddy/user_confirm_delete.html:7
|
#: babybuddy/templates/babybuddy/user_confirm_delete.html:7
|
||||||
#: babybuddy/templates/babybuddy/user_form.html:13
|
#: babybuddy/templates/babybuddy/user_form.html:13
|
||||||
#: babybuddy/templates/babybuddy/user_list.html:4
|
#: babybuddy/templates/babybuddy/user_list.html:4
|
||||||
|
@ -479,15 +474,15 @@ msgstr "API-selain"
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr "Käyttäjät"
|
msgstr "Käyttäjät"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:341
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:338
|
||||||
msgid "Support"
|
msgid "Support"
|
||||||
msgstr "Tuki"
|
msgstr "Tuki"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:343
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:340
|
||||||
msgid "Source Code"
|
msgid "Source Code"
|
||||||
msgstr "Lähdekoodi"
|
msgstr "Lähdekoodi"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:345
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:342
|
||||||
msgid "Chat / Support"
|
msgid "Chat / Support"
|
||||||
msgstr "Chat / tuki"
|
msgstr "Chat / tuki"
|
||||||
|
|
||||||
|
@ -658,7 +653,7 @@ msgstr "Aktiivinen"
|
||||||
#: babybuddy/templates/babybuddy/user_list.html:23
|
#: babybuddy/templates/babybuddy/user_list.html:23
|
||||||
#: core/templates/core/bmi_list.html:24 core/templates/core/bmi_list.html:38
|
#: core/templates/core/bmi_list.html:24 core/templates/core/bmi_list.html:38
|
||||||
#: core/templates/core/child_list.html:28
|
#: core/templates/core/child_list.html:28
|
||||||
#: core/templates/core/child_list.html:48
|
#: core/templates/core/child_list.html:43
|
||||||
#: core/templates/core/diaperchange_list.html:24
|
#: core/templates/core/diaperchange_list.html:24
|
||||||
#: core/templates/core/diaperchange_list.html:40
|
#: core/templates/core/diaperchange_list.html:40
|
||||||
#: core/templates/core/feeding_list.html:24
|
#: core/templates/core/feeding_list.html:24
|
||||||
|
@ -860,6 +855,25 @@ msgid ""
|
||||||
"you registered with, and check your spam folder."
|
"you registered with, and check your spam folder."
|
||||||
msgstr "Jos viestiä ei tule, tarkista roskapostikansiosi."
|
msgstr "Jos viestiä ei tule, tarkista roskapostikansiosi."
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:2
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"You're receiving this email because you requested a password reset for your "
|
||||||
|
"user account at %(site_name)s."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:4
|
||||||
|
msgid "Please go to the following page and choose a new password:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:8
|
||||||
|
msgid "Your username, in case you’ve forgotten:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:10
|
||||||
|
msgid "Thanks for using Baby Buddy!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/registration/password_reset_form.html:4
|
#: babybuddy/templates/registration/password_reset_form.html:4
|
||||||
msgid "Forgot Password"
|
msgid "Forgot Password"
|
||||||
msgstr "Unohditko salasanan?"
|
msgstr "Unohditko salasanan?"
|
||||||
|
@ -973,7 +987,7 @@ msgstr ""
|
||||||
#: reports/graphs/feeding_duration.py:56
|
#: reports/graphs/feeding_duration.py:56
|
||||||
#: reports/graphs/head_circumference_change.py:28
|
#: reports/graphs/head_circumference_change.py:28
|
||||||
#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60
|
#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60
|
||||||
#: reports/graphs/sleep_pattern.py:151 reports/graphs/sleep_totals.py:59
|
#: reports/graphs/sleep_pattern.py:153 reports/graphs/sleep_totals.py:59
|
||||||
#: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28
|
#: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28
|
||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "Päivämäärä"
|
msgstr "Päivämäärä"
|
||||||
|
@ -1177,7 +1191,7 @@ msgstr "Lisää lapsi"
|
||||||
msgid "Birth Date"
|
msgid "Birth Date"
|
||||||
msgstr "Syntymäpäivä"
|
msgstr "Syntymäpäivä"
|
||||||
|
|
||||||
#: core/templates/core/child_list.html:67
|
#: core/templates/core/child_list.html:62
|
||||||
msgid "No children found."
|
msgid "No children found."
|
||||||
msgstr "Lapsia ei löytynyt."
|
msgstr "Lapsia ei löytynyt."
|
||||||
|
|
||||||
|
@ -1313,6 +1327,19 @@ msgstr ""
|
||||||
msgid "No pumping entries found."
|
msgid "No pumping entries found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: core/templates/core/quick_timer_nav.html:9
|
||||||
|
#: core/templates/core/quick_timer_nav.html:29
|
||||||
|
#: core/templates/core/timer_nav.html:37
|
||||||
|
msgid "Quick Start Timer"
|
||||||
|
msgstr "Pika-ajastin"
|
||||||
|
|
||||||
|
#: core/templates/core/quick_timer_nav.html:19
|
||||||
|
#: core/templates/core/timer_nav.html:28
|
||||||
|
#, fuzzy
|
||||||
|
#| msgid "Quick Start Timer"
|
||||||
|
msgid "Quick Start Timer For…"
|
||||||
|
msgstr "Pika-ajastin"
|
||||||
|
|
||||||
#: core/templates/core/sleep_confirm_delete.html:4
|
#: core/templates/core/sleep_confirm_delete.html:4
|
||||||
msgid "Delete a Sleep Entry"
|
msgid "Delete a Sleep Entry"
|
||||||
msgstr "Poista uni"
|
msgstr "Poista uni"
|
||||||
|
@ -1418,7 +1445,7 @@ msgid "Delete timer"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: core/templates/core/timer_form.html:22
|
#: core/templates/core/timer_form.html:22
|
||||||
#: core/templates/core/timer_list.html:15 core/templates/core/timer_nav.html:23
|
#: core/templates/core/timer_list.html:15 core/templates/core/timer_nav.html:15
|
||||||
msgid "Start Timer"
|
msgid "Start Timer"
|
||||||
msgstr "Aloita ajastin"
|
msgstr "Aloita ajastin"
|
||||||
|
|
||||||
|
@ -1430,16 +1457,16 @@ msgstr "Akastimia ei löytynyt."
|
||||||
msgid "Delete Inactive Timers"
|
msgid "Delete Inactive Timers"
|
||||||
msgstr "Poista inaktiiviset ajastimet"
|
msgstr "Poista inaktiiviset ajastimet"
|
||||||
|
|
||||||
#: core/templates/core/timer_nav.html:28
|
#: core/templates/core/timer_nav.html:20
|
||||||
msgid "View Timers"
|
msgid "View Timers"
|
||||||
msgstr "Näytä ajastimet"
|
msgstr "Näytä ajastimet"
|
||||||
|
|
||||||
#: core/templates/core/timer_nav.html:32
|
#: core/templates/core/timer_nav.html:44
|
||||||
#: dashboard/templates/cards/timer_list.html:6
|
#: dashboard/templates/cards/timer_list.html:6
|
||||||
msgid "Active Timers"
|
msgid "Active Timers"
|
||||||
msgstr "Aktiiviset ajastimet"
|
msgstr "Aktiiviset ajastimet"
|
||||||
|
|
||||||
#: core/templates/core/timer_nav.html:38
|
#: core/templates/core/timer_nav.html:50
|
||||||
#: dashboard/templates/cards/diaperchange_last.html:17
|
#: dashboard/templates/cards/diaperchange_last.html:17
|
||||||
#: dashboard/templates/cards/diaperchange_types.html:12
|
#: dashboard/templates/cards/diaperchange_types.html:12
|
||||||
#: dashboard/templates/cards/feeding_day.html:20
|
#: dashboard/templates/cards/feeding_day.html:20
|
||||||
|
@ -1684,16 +1711,16 @@ msgstr "%(model)s -lukema lisätty!"
|
||||||
msgid "%(model)s reading for %(child)s updated."
|
msgid "%(model)s reading for %(child)s updated."
|
||||||
msgstr "%(model)s -lukema lapselle %(child)s päivitetty."
|
msgstr "%(model)s -lukema lapselle %(child)s päivitetty."
|
||||||
|
|
||||||
#: core/views.py:478
|
#: core/views.py:483
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(timer)s stopped."
|
msgid "%(timer)s stopped."
|
||||||
msgstr "%(timer)s pysäytetty."
|
msgstr "%(timer)s pysäytetty."
|
||||||
|
|
||||||
#: core/views.py:501
|
#: core/views.py:506
|
||||||
msgid "All inactive timers deleted."
|
msgid "All inactive timers deleted."
|
||||||
msgstr "Kaikki inaktiiviset ajastimet poistettu."
|
msgstr "Kaikki inaktiiviset ajastimet poistettu."
|
||||||
|
|
||||||
#: core/views.py:511
|
#: core/views.py:516
|
||||||
msgid "No inactive timers exist."
|
msgid "No inactive timers exist."
|
||||||
msgstr "Ei inaktiivisia ajastimia."
|
msgstr "Ei inaktiivisia ajastimia."
|
||||||
|
|
||||||
|
@ -1982,11 +2009,11 @@ msgstr ""
|
||||||
msgid "Pumping Amount"
|
msgid "Pumping Amount"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: reports/graphs/sleep_pattern.py:148
|
#: reports/graphs/sleep_pattern.py:150
|
||||||
msgid "<b>Sleep Pattern</b>"
|
msgid "<b>Sleep Pattern</b>"
|
||||||
msgstr "<b>Unimallit</b>"
|
msgstr "<b>Unimallit</b>"
|
||||||
|
|
||||||
#: reports/graphs/sleep_pattern.py:165
|
#: reports/graphs/sleep_pattern.py:167
|
||||||
msgid "Time of day"
|
msgid "Time of day"
|
||||||
msgstr "Ajankohta"
|
msgstr "Ajankohta"
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Baby Buddy\n"
|
"Project-Id-Version: Baby Buddy\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-06-17 22:25+0000\n"
|
"POT-Creation-Date: 2022-07-30 21:13+0000\n"
|
||||||
"Language: fr\n"
|
"Language: fr\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
@ -11,12 +11,12 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||||
|
|
||||||
#: babybuddy/admin.py:12 babybuddy/admin.py:13
|
#: babybuddy/admin.py:12 babybuddy/admin.py:13
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:327
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:324
|
||||||
#: babybuddy/templates/babybuddy/user_settings_form.html:8
|
#: babybuddy/templates/babybuddy/user_settings_form.html:8
|
||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr "Paramètres"
|
msgstr "Paramètres"
|
||||||
|
|
||||||
#: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:92
|
#: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:89
|
||||||
#: babybuddy/templates/babybuddy/user_settings_form.html:61
|
#: babybuddy/templates/babybuddy/user_settings_form.html:61
|
||||||
#: dashboard/templates/dashboard/child.html:4
|
#: dashboard/templates/dashboard/child.html:4
|
||||||
#: dashboard/templates/dashboard/child.html:9
|
#: dashboard/templates/dashboard/child.html:9
|
||||||
|
@ -187,7 +187,7 @@ msgstr "Turc"
|
||||||
|
|
||||||
#: babybuddy/templates/admin/base_site.html:4
|
#: babybuddy/templates/admin/base_site.html:4
|
||||||
#: babybuddy/templates/admin/base_site.html:7
|
#: babybuddy/templates/admin/base_site.html:7
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:339
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:336
|
||||||
msgid "Database Admin"
|
msgid "Database Admin"
|
||||||
msgstr "Base de Données"
|
msgstr "Base de Données"
|
||||||
|
|
||||||
|
@ -225,30 +225,25 @@ msgstr ""
|
||||||
"<strong>Erreur :</strong> Certains champs comportent des erreurs. Plus de "
|
"<strong>Erreur :</strong> Certains champs comportent des erreurs. Plus de "
|
||||||
"détails sont disponibles ci-dessous. "
|
"détails sont disponibles ci-dessous. "
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:32
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:48 core/models.py:248
|
||||||
#: core/templates/core/timer_nav.html:18
|
|
||||||
msgid "Quick Start Timer"
|
|
||||||
msgstr "Chronomètre de démarrage rapide"
|
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:51 core/models.py:248
|
|
||||||
#: core/models.py:252
|
#: core/models.py:252
|
||||||
msgid "Diaper Change"
|
msgid "Diaper Change"
|
||||||
msgstr "Changement de couche"
|
msgstr "Changement de couche"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:57
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:54
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:262 core/models.py:312
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:259 core/models.py:312
|
||||||
#: core/models.py:316 core/templates/core/timer_detail.html:43
|
#: core/models.py:316 core/templates/core/timer_detail.html:43
|
||||||
msgid "Feeding"
|
msgid "Feeding"
|
||||||
msgstr "Allaitement"
|
msgstr "Allaitement"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:63
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:60
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:138 core/models.py:396
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:135 core/models.py:396
|
||||||
#: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29
|
#: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29
|
||||||
msgid "Note"
|
msgid "Note"
|
||||||
msgstr "Note"
|
msgstr "Note"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:69
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:66
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:283
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:280
|
||||||
#: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467
|
#: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467
|
||||||
#: core/models.py:468 core/models.py:471
|
#: core/models.py:468 core/models.py:471
|
||||||
#: core/templates/core/sleep_confirm_delete.html:7
|
#: core/templates/core/sleep_confirm_delete.html:7
|
||||||
|
@ -258,8 +253,8 @@ msgstr "Note"
|
||||||
msgid "Sleep"
|
msgid "Sleep"
|
||||||
msgstr "Sommeil"
|
msgstr "Sommeil"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:75
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:72
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:296
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:293
|
||||||
#: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647
|
#: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647
|
||||||
#: core/models.py:648 core/models.py:651
|
#: core/models.py:648 core/models.py:651
|
||||||
#: core/templates/core/timer_detail.html:59
|
#: core/templates/core/timer_detail.html:59
|
||||||
|
@ -271,15 +266,15 @@ msgstr "Sommeil"
|
||||||
msgid "Tummy Time"
|
msgid "Tummy Time"
|
||||||
msgstr "Motricité libre"
|
msgstr "Motricité libre"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:99
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:96
|
||||||
#: core/templates/timeline/timeline.html:4
|
#: core/templates/timeline/timeline.html:4
|
||||||
#: core/templates/timeline/timeline.html:7
|
#: core/templates/timeline/timeline.html:7
|
||||||
#: dashboard/templates/dashboard/child_button_group.html:9
|
#: dashboard/templates/dashboard/child_button_group.html:9
|
||||||
msgid "Timeline"
|
msgid "Timeline"
|
||||||
msgstr "Chronologie"
|
msgstr "Chronologie"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:110
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:107
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:118 core/models.py:188
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:115 core/models.py:188
|
||||||
#: core/templates/core/child_confirm_delete.html:7
|
#: core/templates/core/child_confirm_delete.html:7
|
||||||
#: core/templates/core/child_detail.html:7
|
#: core/templates/core/child_detail.html:7
|
||||||
#: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4
|
#: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4
|
||||||
|
@ -289,7 +284,7 @@ msgstr "Chronologie"
|
||||||
msgid "Children"
|
msgid "Children"
|
||||||
msgstr "Enfants"
|
msgstr "Enfants"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:124 core/models.py:137
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:121 core/models.py:137
|
||||||
#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335
|
#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335
|
||||||
#: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450
|
#: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450
|
||||||
#: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671
|
#: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671
|
||||||
|
@ -308,7 +303,7 @@ msgstr "Enfants"
|
||||||
msgid "Child"
|
msgid "Child"
|
||||||
msgstr "Nouvel enfant"
|
msgstr "Nouvel enfant"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:132 core/models.py:143
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:129 core/models.py:143
|
||||||
#: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373
|
#: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373
|
||||||
#: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511
|
#: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511
|
||||||
#: core/models.py:677 core/templates/core/note_confirm_delete.html:7
|
#: core/models.py:677 core/templates/core/note_confirm_delete.html:7
|
||||||
|
@ -317,11 +312,11 @@ msgstr "Nouvel enfant"
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Notes"
|
msgstr "Notes"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:152
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:149
|
||||||
msgid "Measurements"
|
msgid "Measurements"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:160 core/models.py:139
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:157 core/models.py:139
|
||||||
#: core/models.py:151 core/models.py:152 core/models.py:155
|
#: core/models.py:151 core/models.py:152 core/models.py:155
|
||||||
#: core/templates/core/bmi_confirm_delete.html:7
|
#: 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_form.html:13 core/templates/core/bmi_list.html:4
|
||||||
|
@ -332,13 +327,13 @@ msgstr ""
|
||||||
msgid "BMI"
|
msgid "BMI"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:166
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:163
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Sleep entry"
|
#| msgid "Sleep entry"
|
||||||
msgid "BMI entry"
|
msgid "BMI entry"
|
||||||
msgstr "Nouveau sommeil"
|
msgstr "Nouveau sommeil"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:174 core/models.py:338
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:171 core/models.py:338
|
||||||
#: core/models.py:351 core/models.py:352 core/models.py:355
|
#: core/models.py:351 core/models.py:352 core/models.py:355
|
||||||
#: core/templates/core/head_circumference_confirm_delete.html:7
|
#: core/templates/core/head_circumference_confirm_delete.html:7
|
||||||
#: core/templates/core/head_circumference_form.html:13
|
#: core/templates/core/head_circumference_form.html:13
|
||||||
|
@ -354,11 +349,11 @@ msgstr "Nouveau sommeil"
|
||||||
msgid "Head Circumference"
|
msgid "Head Circumference"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:180
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:177
|
||||||
msgid "Head Circumference entry"
|
msgid "Head Circumference entry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:188 core/models.py:369
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:185 core/models.py:369
|
||||||
#: core/models.py:381 core/models.py:382 core/models.py:385
|
#: core/models.py:381 core/models.py:382 core/models.py:385
|
||||||
#: core/templates/core/height_confirm_delete.html:7
|
#: core/templates/core/height_confirm_delete.html:7
|
||||||
#: core/templates/core/height_form.html:13
|
#: core/templates/core/height_form.html:13
|
||||||
|
@ -375,13 +370,13 @@ msgstr ""
|
||||||
msgid "Height"
|
msgid "Height"
|
||||||
msgstr "Poids"
|
msgstr "Poids"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:194
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:191
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Weight entry"
|
#| msgid "Weight entry"
|
||||||
msgid "Height entry"
|
msgid "Height entry"
|
||||||
msgstr "Nouvelle prise de poids"
|
msgstr "Nouvelle prise de poids"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:202 core/models.py:506
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:199 core/models.py:506
|
||||||
#: core/models.py:519 core/models.py:520 core/models.py:523
|
#: core/models.py:519 core/models.py:520 core/models.py:523
|
||||||
#: core/templates/core/temperature_confirm_delete.html:7
|
#: core/templates/core/temperature_confirm_delete.html:7
|
||||||
#: core/templates/core/temperature_form.html:13
|
#: core/templates/core/temperature_form.html:13
|
||||||
|
@ -392,11 +387,11 @@ msgstr "Nouvelle prise de poids"
|
||||||
msgid "Temperature"
|
msgid "Temperature"
|
||||||
msgstr "Température"
|
msgstr "Température"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:208
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:205
|
||||||
msgid "Temperature reading"
|
msgid "Temperature reading"
|
||||||
msgstr "Lecture de la température"
|
msgstr "Lecture de la température"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:216 core/models.py:673
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:213 core/models.py:673
|
||||||
#: core/models.py:685 core/models.py:686 core/models.py:689
|
#: core/models.py:685 core/models.py:686 core/models.py:689
|
||||||
#: core/templates/core/weight_confirm_delete.html:7
|
#: core/templates/core/weight_confirm_delete.html:7
|
||||||
#: core/templates/core/weight_form.html:13
|
#: core/templates/core/weight_form.html:13
|
||||||
|
@ -411,24 +406,24 @@ msgstr "Lecture de la température"
|
||||||
msgid "Weight"
|
msgid "Weight"
|
||||||
msgstr "Poids"
|
msgstr "Poids"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:222
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:219
|
||||||
msgid "Weight entry"
|
msgid "Weight entry"
|
||||||
msgstr "Nouvelle prise de poids"
|
msgstr "Nouvelle prise de poids"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:236
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:233
|
||||||
msgid "Activities"
|
msgid "Activities"
|
||||||
msgstr "Activités"
|
msgstr "Activités"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:243
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:240
|
||||||
#: reports/graphs/diaperchange_lifetimes.py:27
|
#: reports/graphs/diaperchange_lifetimes.py:27
|
||||||
msgid "Changes"
|
msgid "Changes"
|
||||||
msgstr "Changement de couches"
|
msgstr "Changement de couches"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:249
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:246
|
||||||
msgid "Change"
|
msgid "Change"
|
||||||
msgstr "Nouveau change"
|
msgstr "Nouveau change"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:256
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:253
|
||||||
#: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313
|
#: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313
|
||||||
#: core/templates/core/feeding_confirm_delete.html:7
|
#: core/templates/core/feeding_confirm_delete.html:7
|
||||||
#: core/templates/core/feeding_form.html:13
|
#: core/templates/core/feeding_form.html:13
|
||||||
|
@ -438,7 +433,7 @@ msgstr "Nouveau change"
|
||||||
msgid "Feedings"
|
msgid "Feedings"
|
||||||
msgstr "Allaitements"
|
msgstr "Allaitements"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:270 core/models.py:437
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:267 core/models.py:437
|
||||||
#: core/models.py:438 core/models.py:441
|
#: core/models.py:438 core/models.py:441
|
||||||
#: core/templates/core/pumping_confirm_delete.html:7
|
#: core/templates/core/pumping_confirm_delete.html:7
|
||||||
#: core/templates/core/pumping_form.html:13
|
#: core/templates/core/pumping_form.html:13
|
||||||
|
@ -450,21 +445,21 @@ msgstr "Allaitements"
|
||||||
msgid "Pumping"
|
msgid "Pumping"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:276
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:273
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Weight entry"
|
#| msgid "Weight entry"
|
||||||
msgid "Pumping entry"
|
msgid "Pumping entry"
|
||||||
msgstr "Nouvelle prise de poids"
|
msgstr "Nouvelle prise de poids"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:289
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:286
|
||||||
msgid "Sleep entry"
|
msgid "Sleep entry"
|
||||||
msgstr "Nouveau sommeil"
|
msgstr "Nouveau sommeil"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:302
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:299
|
||||||
msgid "Tummy Time entry"
|
msgid "Tummy Time entry"
|
||||||
msgstr "Nouvelle période de motricité libre"
|
msgstr "Nouvelle période de motricité libre"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:326
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:323
|
||||||
#: babybuddy/templates/babybuddy/user_list.html:17
|
#: babybuddy/templates/babybuddy/user_list.html:17
|
||||||
#: babybuddy/templates/babybuddy/user_password_form.html:7
|
#: babybuddy/templates/babybuddy/user_password_form.html:7
|
||||||
#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556
|
#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556
|
||||||
|
@ -472,23 +467,23 @@ msgstr "Nouvelle période de motricité libre"
|
||||||
msgid "User"
|
msgid "User"
|
||||||
msgstr "Utilisateur"
|
msgstr "Utilisateur"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:328
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:325
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr "Mot de passe"
|
msgstr "Mot de passe"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:332
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:329
|
||||||
msgid "Logout"
|
msgid "Logout"
|
||||||
msgstr "Se déconnecter"
|
msgstr "Se déconnecter"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:335
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:332
|
||||||
msgid "Site"
|
msgid "Site"
|
||||||
msgstr "Site"
|
msgstr "Site"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:336
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:333
|
||||||
msgid "API Browser"
|
msgid "API Browser"
|
||||||
msgstr "Navigateur d'API"
|
msgstr "Navigateur d'API"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:338
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:335
|
||||||
#: babybuddy/templates/babybuddy/user_confirm_delete.html:7
|
#: babybuddy/templates/babybuddy/user_confirm_delete.html:7
|
||||||
#: babybuddy/templates/babybuddy/user_form.html:13
|
#: babybuddy/templates/babybuddy/user_form.html:13
|
||||||
#: babybuddy/templates/babybuddy/user_list.html:4
|
#: babybuddy/templates/babybuddy/user_list.html:4
|
||||||
|
@ -496,15 +491,15 @@ msgstr "Navigateur d'API"
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr "Utilisateurs"
|
msgstr "Utilisateurs"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:341
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:338
|
||||||
msgid "Support"
|
msgid "Support"
|
||||||
msgstr "Support"
|
msgstr "Support"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:343
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:340
|
||||||
msgid "Source Code"
|
msgid "Source Code"
|
||||||
msgstr "Code source"
|
msgstr "Code source"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:345
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:342
|
||||||
msgid "Chat / Support"
|
msgid "Chat / Support"
|
||||||
msgstr "Tchat / Support"
|
msgstr "Tchat / Support"
|
||||||
|
|
||||||
|
@ -675,7 +670,7 @@ msgstr "Actif"
|
||||||
#: babybuddy/templates/babybuddy/user_list.html:23
|
#: babybuddy/templates/babybuddy/user_list.html:23
|
||||||
#: core/templates/core/bmi_list.html:24 core/templates/core/bmi_list.html:38
|
#: core/templates/core/bmi_list.html:24 core/templates/core/bmi_list.html:38
|
||||||
#: core/templates/core/child_list.html:28
|
#: core/templates/core/child_list.html:28
|
||||||
#: core/templates/core/child_list.html:48
|
#: core/templates/core/child_list.html:43
|
||||||
#: core/templates/core/diaperchange_list.html:24
|
#: core/templates/core/diaperchange_list.html:24
|
||||||
#: core/templates/core/diaperchange_list.html:40
|
#: core/templates/core/diaperchange_list.html:40
|
||||||
#: core/templates/core/feeding_list.html:24
|
#: core/templates/core/feeding_list.html:24
|
||||||
|
@ -886,6 +881,25 @@ msgstr ""
|
||||||
"laquelle vous vous êtes inscrit et vérifiez votre dossier de courrier "
|
"laquelle vous vous êtes inscrit et vérifiez votre dossier de courrier "
|
||||||
"indésirable."
|
"indésirable."
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:2
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"You're receiving this email because you requested a password reset for your "
|
||||||
|
"user account at %(site_name)s."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:4
|
||||||
|
msgid "Please go to the following page and choose a new password:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:8
|
||||||
|
msgid "Your username, in case you’ve forgotten:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:10
|
||||||
|
msgid "Thanks for using Baby Buddy!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/registration/password_reset_form.html:4
|
#: babybuddy/templates/registration/password_reset_form.html:4
|
||||||
msgid "Forgot Password"
|
msgid "Forgot Password"
|
||||||
msgstr "Mot de passe oublié"
|
msgstr "Mot de passe oublié"
|
||||||
|
@ -1002,7 +1016,7 @@ msgstr ""
|
||||||
#: reports/graphs/feeding_duration.py:56
|
#: reports/graphs/feeding_duration.py:56
|
||||||
#: reports/graphs/head_circumference_change.py:28
|
#: reports/graphs/head_circumference_change.py:28
|
||||||
#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60
|
#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60
|
||||||
#: reports/graphs/sleep_pattern.py:151 reports/graphs/sleep_totals.py:59
|
#: reports/graphs/sleep_pattern.py:153 reports/graphs/sleep_totals.py:59
|
||||||
#: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28
|
#: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28
|
||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "Date"
|
msgstr "Date"
|
||||||
|
@ -1211,7 +1225,7 @@ msgstr "Nouvel Enfant"
|
||||||
msgid "Birth Date"
|
msgid "Birth Date"
|
||||||
msgstr "Date de Naissance"
|
msgstr "Date de Naissance"
|
||||||
|
|
||||||
#: core/templates/core/child_list.html:67
|
#: core/templates/core/child_list.html:62
|
||||||
msgid "No children found."
|
msgid "No children found."
|
||||||
msgstr "Aucun enfant trouvé."
|
msgstr "Aucun enfant trouvé."
|
||||||
|
|
||||||
|
@ -1369,6 +1383,19 @@ msgstr "Ajouter une entrée de poids"
|
||||||
msgid "No pumping entries found."
|
msgid "No pumping entries found."
|
||||||
msgstr "Aucun chronomètre trouvé."
|
msgstr "Aucun chronomètre trouvé."
|
||||||
|
|
||||||
|
#: core/templates/core/quick_timer_nav.html:9
|
||||||
|
#: core/templates/core/quick_timer_nav.html:29
|
||||||
|
#: core/templates/core/timer_nav.html:37
|
||||||
|
msgid "Quick Start Timer"
|
||||||
|
msgstr "Chronomètre de démarrage rapide"
|
||||||
|
|
||||||
|
#: core/templates/core/quick_timer_nav.html:19
|
||||||
|
#: core/templates/core/timer_nav.html:28
|
||||||
|
#, fuzzy
|
||||||
|
#| msgid "Quick Start Timer"
|
||||||
|
msgid "Quick Start Timer For…"
|
||||||
|
msgstr "Chronomètre de démarrage rapide"
|
||||||
|
|
||||||
#: core/templates/core/sleep_confirm_delete.html:4
|
#: core/templates/core/sleep_confirm_delete.html:4
|
||||||
msgid "Delete a Sleep Entry"
|
msgid "Delete a Sleep Entry"
|
||||||
msgstr "Supprimer une entrée de sommeil"
|
msgstr "Supprimer une entrée de sommeil"
|
||||||
|
@ -1476,7 +1503,7 @@ msgid "Delete timer"
|
||||||
msgstr "Supprimer l'utilisateur"
|
msgstr "Supprimer l'utilisateur"
|
||||||
|
|
||||||
#: core/templates/core/timer_form.html:22
|
#: core/templates/core/timer_form.html:22
|
||||||
#: core/templates/core/timer_list.html:15 core/templates/core/timer_nav.html:23
|
#: core/templates/core/timer_list.html:15 core/templates/core/timer_nav.html:15
|
||||||
msgid "Start Timer"
|
msgid "Start Timer"
|
||||||
msgstr "Démarrer un chronomètre"
|
msgstr "Démarrer un chronomètre"
|
||||||
|
|
||||||
|
@ -1488,16 +1515,16 @@ msgstr "Aucun chronomètre trouvé."
|
||||||
msgid "Delete Inactive Timers"
|
msgid "Delete Inactive Timers"
|
||||||
msgstr "Supprimer chronomètres inactifs"
|
msgstr "Supprimer chronomètres inactifs"
|
||||||
|
|
||||||
#: core/templates/core/timer_nav.html:28
|
#: core/templates/core/timer_nav.html:20
|
||||||
msgid "View Timers"
|
msgid "View Timers"
|
||||||
msgstr "Voir les chronomètres"
|
msgstr "Voir les chronomètres"
|
||||||
|
|
||||||
#: core/templates/core/timer_nav.html:32
|
#: core/templates/core/timer_nav.html:44
|
||||||
#: dashboard/templates/cards/timer_list.html:6
|
#: dashboard/templates/cards/timer_list.html:6
|
||||||
msgid "Active Timers"
|
msgid "Active Timers"
|
||||||
msgstr "Chronomètres actifs"
|
msgstr "Chronomètres actifs"
|
||||||
|
|
||||||
#: core/templates/core/timer_nav.html:38
|
#: core/templates/core/timer_nav.html:50
|
||||||
#: dashboard/templates/cards/diaperchange_last.html:17
|
#: dashboard/templates/cards/diaperchange_last.html:17
|
||||||
#: dashboard/templates/cards/diaperchange_types.html:12
|
#: dashboard/templates/cards/diaperchange_types.html:12
|
||||||
#: dashboard/templates/cards/feeding_day.html:20
|
#: dashboard/templates/cards/feeding_day.html:20
|
||||||
|
@ -1746,16 +1773,16 @@ msgstr "Entrée de %(model)s a été ajouté!"
|
||||||
msgid "%(model)s reading for %(child)s updated."
|
msgid "%(model)s reading for %(child)s updated."
|
||||||
msgstr "Entrée de %(model)s pour %(child)s a été mise à jour!"
|
msgstr "Entrée de %(model)s pour %(child)s a été mise à jour!"
|
||||||
|
|
||||||
#: core/views.py:478
|
#: core/views.py:483
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(timer)s stopped."
|
msgid "%(timer)s stopped."
|
||||||
msgstr "%(timer)s a été arrêté"
|
msgstr "%(timer)s a été arrêté"
|
||||||
|
|
||||||
#: core/views.py:501
|
#: core/views.py:506
|
||||||
msgid "All inactive timers deleted."
|
msgid "All inactive timers deleted."
|
||||||
msgstr "Tous les chronomètres inactifs ont été supprimés."
|
msgstr "Tous les chronomètres inactifs ont été supprimés."
|
||||||
|
|
||||||
#: core/views.py:511
|
#: core/views.py:516
|
||||||
msgid "No inactive timers exist."
|
msgid "No inactive timers exist."
|
||||||
msgstr "Aucun chronomètres inactif n'existe."
|
msgstr "Aucun chronomètres inactif n'existe."
|
||||||
|
|
||||||
|
@ -2064,11 +2091,11 @@ msgstr "<b>Durée d'Alimentation Moyenne</b>"
|
||||||
msgid "Pumping Amount"
|
msgid "Pumping Amount"
|
||||||
msgstr "Allaitement"
|
msgstr "Allaitement"
|
||||||
|
|
||||||
#: reports/graphs/sleep_pattern.py:148
|
#: reports/graphs/sleep_pattern.py:150
|
||||||
msgid "<b>Sleep Pattern</b>"
|
msgid "<b>Sleep Pattern</b>"
|
||||||
msgstr "<b>Rythme de Sommeil</b>"
|
msgstr "<b>Rythme de Sommeil</b>"
|
||||||
|
|
||||||
#: reports/graphs/sleep_pattern.py:165
|
#: reports/graphs/sleep_pattern.py:167
|
||||||
msgid "Time of day"
|
msgid "Time of day"
|
||||||
msgstr "Moment de la journée"
|
msgstr "Moment de la journée"
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Baby Buddy\n"
|
"Project-Id-Version: Baby Buddy\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-06-17 22:25+0000\n"
|
"POT-Creation-Date: 2022-07-30 21:13+0000\n"
|
||||||
"Language: it\n"
|
"Language: it\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
@ -11,12 +11,12 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: babybuddy/admin.py:12 babybuddy/admin.py:13
|
#: babybuddy/admin.py:12 babybuddy/admin.py:13
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:327
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:324
|
||||||
#: babybuddy/templates/babybuddy/user_settings_form.html:8
|
#: babybuddy/templates/babybuddy/user_settings_form.html:8
|
||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr "Impostazioni"
|
msgstr "Impostazioni"
|
||||||
|
|
||||||
#: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:92
|
#: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:89
|
||||||
#: babybuddy/templates/babybuddy/user_settings_form.html:61
|
#: babybuddy/templates/babybuddy/user_settings_form.html:61
|
||||||
#: dashboard/templates/dashboard/child.html:4
|
#: dashboard/templates/dashboard/child.html:4
|
||||||
#: dashboard/templates/dashboard/child.html:9
|
#: dashboard/templates/dashboard/child.html:9
|
||||||
|
@ -187,7 +187,7 @@ msgstr "Turco"
|
||||||
|
|
||||||
#: babybuddy/templates/admin/base_site.html:4
|
#: babybuddy/templates/admin/base_site.html:4
|
||||||
#: babybuddy/templates/admin/base_site.html:7
|
#: babybuddy/templates/admin/base_site.html:7
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:339
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:336
|
||||||
msgid "Database Admin"
|
msgid "Database Admin"
|
||||||
msgstr "Database Admin"
|
msgstr "Database Admin"
|
||||||
|
|
||||||
|
@ -225,30 +225,25 @@ msgstr ""
|
||||||
"<strong>Errore:</strong> Alcuni campi contengono errori. I dettagli sono "
|
"<strong>Errore:</strong> Alcuni campi contengono errori. I dettagli sono "
|
||||||
"riportati di seguito."
|
"riportati di seguito."
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:32
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:48 core/models.py:248
|
||||||
#: core/templates/core/timer_nav.html:18
|
|
||||||
msgid "Quick Start Timer"
|
|
||||||
msgstr "Avvio Rapido Timer"
|
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:51 core/models.py:248
|
|
||||||
#: core/models.py:252
|
#: core/models.py:252
|
||||||
msgid "Diaper Change"
|
msgid "Diaper Change"
|
||||||
msgstr "Cambio Pannolino"
|
msgstr "Cambio Pannolino"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:57
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:54
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:262 core/models.py:312
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:259 core/models.py:312
|
||||||
#: core/models.py:316 core/templates/core/timer_detail.html:43
|
#: core/models.py:316 core/templates/core/timer_detail.html:43
|
||||||
msgid "Feeding"
|
msgid "Feeding"
|
||||||
msgstr "Pasto"
|
msgstr "Pasto"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:63
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:60
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:138 core/models.py:396
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:135 core/models.py:396
|
||||||
#: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29
|
#: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29
|
||||||
msgid "Note"
|
msgid "Note"
|
||||||
msgstr "Note"
|
msgstr "Note"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:69
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:66
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:283
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:280
|
||||||
#: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467
|
#: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467
|
||||||
#: core/models.py:468 core/models.py:471
|
#: core/models.py:468 core/models.py:471
|
||||||
#: core/templates/core/sleep_confirm_delete.html:7
|
#: core/templates/core/sleep_confirm_delete.html:7
|
||||||
|
@ -258,8 +253,8 @@ msgstr "Note"
|
||||||
msgid "Sleep"
|
msgid "Sleep"
|
||||||
msgstr "Riposo"
|
msgstr "Riposo"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:75
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:72
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:296
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:293
|
||||||
#: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647
|
#: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647
|
||||||
#: core/models.py:648 core/models.py:651
|
#: core/models.py:648 core/models.py:651
|
||||||
#: core/templates/core/timer_detail.html:59
|
#: core/templates/core/timer_detail.html:59
|
||||||
|
@ -271,15 +266,15 @@ msgstr "Riposo"
|
||||||
msgid "Tummy Time"
|
msgid "Tummy Time"
|
||||||
msgstr "Tummy Time"
|
msgstr "Tummy Time"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:99
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:96
|
||||||
#: core/templates/timeline/timeline.html:4
|
#: core/templates/timeline/timeline.html:4
|
||||||
#: core/templates/timeline/timeline.html:7
|
#: core/templates/timeline/timeline.html:7
|
||||||
#: dashboard/templates/dashboard/child_button_group.html:9
|
#: dashboard/templates/dashboard/child_button_group.html:9
|
||||||
msgid "Timeline"
|
msgid "Timeline"
|
||||||
msgstr "Andamento temporale"
|
msgstr "Andamento temporale"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:110
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:107
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:118 core/models.py:188
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:115 core/models.py:188
|
||||||
#: core/templates/core/child_confirm_delete.html:7
|
#: core/templates/core/child_confirm_delete.html:7
|
||||||
#: core/templates/core/child_detail.html:7
|
#: core/templates/core/child_detail.html:7
|
||||||
#: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4
|
#: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4
|
||||||
|
@ -289,7 +284,7 @@ msgstr "Andamento temporale"
|
||||||
msgid "Children"
|
msgid "Children"
|
||||||
msgstr "Bambino"
|
msgstr "Bambino"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:124 core/models.py:137
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:121 core/models.py:137
|
||||||
#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335
|
#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335
|
||||||
#: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450
|
#: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450
|
||||||
#: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671
|
#: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671
|
||||||
|
@ -308,7 +303,7 @@ msgstr "Bambino"
|
||||||
msgid "Child"
|
msgid "Child"
|
||||||
msgstr "Figlio"
|
msgstr "Figlio"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:132 core/models.py:143
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:129 core/models.py:143
|
||||||
#: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373
|
#: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373
|
||||||
#: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511
|
#: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511
|
||||||
#: core/models.py:677 core/templates/core/note_confirm_delete.html:7
|
#: core/models.py:677 core/templates/core/note_confirm_delete.html:7
|
||||||
|
@ -317,11 +312,11 @@ msgstr "Figlio"
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Note"
|
msgstr "Note"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:152
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:149
|
||||||
msgid "Measurements"
|
msgid "Measurements"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:160 core/models.py:139
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:157 core/models.py:139
|
||||||
#: core/models.py:151 core/models.py:152 core/models.py:155
|
#: core/models.py:151 core/models.py:152 core/models.py:155
|
||||||
#: core/templates/core/bmi_confirm_delete.html:7
|
#: 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_form.html:13 core/templates/core/bmi_list.html:4
|
||||||
|
@ -332,13 +327,13 @@ msgstr ""
|
||||||
msgid "BMI"
|
msgid "BMI"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:166
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:163
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Sleep entry"
|
#| msgid "Sleep entry"
|
||||||
msgid "BMI entry"
|
msgid "BMI entry"
|
||||||
msgstr "Aggiungi Riposo"
|
msgstr "Aggiungi Riposo"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:174 core/models.py:338
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:171 core/models.py:338
|
||||||
#: core/models.py:351 core/models.py:352 core/models.py:355
|
#: core/models.py:351 core/models.py:352 core/models.py:355
|
||||||
#: core/templates/core/head_circumference_confirm_delete.html:7
|
#: core/templates/core/head_circumference_confirm_delete.html:7
|
||||||
#: core/templates/core/head_circumference_form.html:13
|
#: core/templates/core/head_circumference_form.html:13
|
||||||
|
@ -354,11 +349,11 @@ msgstr "Aggiungi Riposo"
|
||||||
msgid "Head Circumference"
|
msgid "Head Circumference"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:180
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:177
|
||||||
msgid "Head Circumference entry"
|
msgid "Head Circumference entry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:188 core/models.py:369
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:185 core/models.py:369
|
||||||
#: core/models.py:381 core/models.py:382 core/models.py:385
|
#: core/models.py:381 core/models.py:382 core/models.py:385
|
||||||
#: core/templates/core/height_confirm_delete.html:7
|
#: core/templates/core/height_confirm_delete.html:7
|
||||||
#: core/templates/core/height_form.html:13
|
#: core/templates/core/height_form.html:13
|
||||||
|
@ -375,13 +370,13 @@ msgstr ""
|
||||||
msgid "Height"
|
msgid "Height"
|
||||||
msgstr "Peso"
|
msgstr "Peso"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:194
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:191
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Weight entry"
|
#| msgid "Weight entry"
|
||||||
msgid "Height entry"
|
msgid "Height entry"
|
||||||
msgstr "Pesata"
|
msgstr "Pesata"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:202 core/models.py:506
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:199 core/models.py:506
|
||||||
#: core/models.py:519 core/models.py:520 core/models.py:523
|
#: core/models.py:519 core/models.py:520 core/models.py:523
|
||||||
#: core/templates/core/temperature_confirm_delete.html:7
|
#: core/templates/core/temperature_confirm_delete.html:7
|
||||||
#: core/templates/core/temperature_form.html:13
|
#: core/templates/core/temperature_form.html:13
|
||||||
|
@ -392,11 +387,11 @@ msgstr "Pesata"
|
||||||
msgid "Temperature"
|
msgid "Temperature"
|
||||||
msgstr "Temperatura"
|
msgstr "Temperatura"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:208
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:205
|
||||||
msgid "Temperature reading"
|
msgid "Temperature reading"
|
||||||
msgstr "Lettura temperatura"
|
msgstr "Lettura temperatura"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:216 core/models.py:673
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:213 core/models.py:673
|
||||||
#: core/models.py:685 core/models.py:686 core/models.py:689
|
#: core/models.py:685 core/models.py:686 core/models.py:689
|
||||||
#: core/templates/core/weight_confirm_delete.html:7
|
#: core/templates/core/weight_confirm_delete.html:7
|
||||||
#: core/templates/core/weight_form.html:13
|
#: core/templates/core/weight_form.html:13
|
||||||
|
@ -411,24 +406,24 @@ msgstr "Lettura temperatura"
|
||||||
msgid "Weight"
|
msgid "Weight"
|
||||||
msgstr "Peso"
|
msgstr "Peso"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:222
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:219
|
||||||
msgid "Weight entry"
|
msgid "Weight entry"
|
||||||
msgstr "Pesata"
|
msgstr "Pesata"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:236
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:233
|
||||||
msgid "Activities"
|
msgid "Activities"
|
||||||
msgstr "Azioni"
|
msgstr "Azioni"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:243
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:240
|
||||||
#: reports/graphs/diaperchange_lifetimes.py:27
|
#: reports/graphs/diaperchange_lifetimes.py:27
|
||||||
msgid "Changes"
|
msgid "Changes"
|
||||||
msgstr "Cambi"
|
msgstr "Cambi"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:249
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:246
|
||||||
msgid "Change"
|
msgid "Change"
|
||||||
msgstr "Cambio"
|
msgstr "Cambio"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:256
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:253
|
||||||
#: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313
|
#: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313
|
||||||
#: core/templates/core/feeding_confirm_delete.html:7
|
#: core/templates/core/feeding_confirm_delete.html:7
|
||||||
#: core/templates/core/feeding_form.html:13
|
#: core/templates/core/feeding_form.html:13
|
||||||
|
@ -438,7 +433,7 @@ msgstr "Cambio"
|
||||||
msgid "Feedings"
|
msgid "Feedings"
|
||||||
msgstr "Pasti"
|
msgstr "Pasti"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:270 core/models.py:437
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:267 core/models.py:437
|
||||||
#: core/models.py:438 core/models.py:441
|
#: core/models.py:438 core/models.py:441
|
||||||
#: core/templates/core/pumping_confirm_delete.html:7
|
#: core/templates/core/pumping_confirm_delete.html:7
|
||||||
#: core/templates/core/pumping_form.html:13
|
#: core/templates/core/pumping_form.html:13
|
||||||
|
@ -450,21 +445,21 @@ msgstr "Pasti"
|
||||||
msgid "Pumping"
|
msgid "Pumping"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:276
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:273
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Weight entry"
|
#| msgid "Weight entry"
|
||||||
msgid "Pumping entry"
|
msgid "Pumping entry"
|
||||||
msgstr "Pesata"
|
msgstr "Pesata"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:289
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:286
|
||||||
msgid "Sleep entry"
|
msgid "Sleep entry"
|
||||||
msgstr "Aggiungi Riposo"
|
msgstr "Aggiungi Riposo"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:302
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:299
|
||||||
msgid "Tummy Time entry"
|
msgid "Tummy Time entry"
|
||||||
msgstr "Aggiungi Tummy Time"
|
msgstr "Aggiungi Tummy Time"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:326
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:323
|
||||||
#: babybuddy/templates/babybuddy/user_list.html:17
|
#: babybuddy/templates/babybuddy/user_list.html:17
|
||||||
#: babybuddy/templates/babybuddy/user_password_form.html:7
|
#: babybuddy/templates/babybuddy/user_password_form.html:7
|
||||||
#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556
|
#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556
|
||||||
|
@ -472,23 +467,23 @@ msgstr "Aggiungi Tummy Time"
|
||||||
msgid "User"
|
msgid "User"
|
||||||
msgstr "Utente"
|
msgstr "Utente"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:328
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:325
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr "Password"
|
msgstr "Password"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:332
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:329
|
||||||
msgid "Logout"
|
msgid "Logout"
|
||||||
msgstr "Logout"
|
msgstr "Logout"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:335
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:332
|
||||||
msgid "Site"
|
msgid "Site"
|
||||||
msgstr "Sito"
|
msgstr "Sito"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:336
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:333
|
||||||
msgid "API Browser"
|
msgid "API Browser"
|
||||||
msgstr "API Browser"
|
msgstr "API Browser"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:338
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:335
|
||||||
#: babybuddy/templates/babybuddy/user_confirm_delete.html:7
|
#: babybuddy/templates/babybuddy/user_confirm_delete.html:7
|
||||||
#: babybuddy/templates/babybuddy/user_form.html:13
|
#: babybuddy/templates/babybuddy/user_form.html:13
|
||||||
#: babybuddy/templates/babybuddy/user_list.html:4
|
#: babybuddy/templates/babybuddy/user_list.html:4
|
||||||
|
@ -496,15 +491,15 @@ msgstr "API Browser"
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr "Utenti"
|
msgstr "Utenti"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:341
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:338
|
||||||
msgid "Support"
|
msgid "Support"
|
||||||
msgstr "Supporto"
|
msgstr "Supporto"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:343
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:340
|
||||||
msgid "Source Code"
|
msgid "Source Code"
|
||||||
msgstr "Codice Sorgente"
|
msgstr "Codice Sorgente"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:345
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:342
|
||||||
msgid "Chat / Support"
|
msgid "Chat / Support"
|
||||||
msgstr "Chat / Supporto"
|
msgstr "Chat / Supporto"
|
||||||
|
|
||||||
|
@ -675,7 +670,7 @@ msgstr "Attivo"
|
||||||
#: babybuddy/templates/babybuddy/user_list.html:23
|
#: babybuddy/templates/babybuddy/user_list.html:23
|
||||||
#: core/templates/core/bmi_list.html:24 core/templates/core/bmi_list.html:38
|
#: core/templates/core/bmi_list.html:24 core/templates/core/bmi_list.html:38
|
||||||
#: core/templates/core/child_list.html:28
|
#: core/templates/core/child_list.html:28
|
||||||
#: core/templates/core/child_list.html:48
|
#: core/templates/core/child_list.html:43
|
||||||
#: core/templates/core/diaperchange_list.html:24
|
#: core/templates/core/diaperchange_list.html:24
|
||||||
#: core/templates/core/diaperchange_list.html:40
|
#: core/templates/core/diaperchange_list.html:40
|
||||||
#: core/templates/core/feeding_list.html:24
|
#: core/templates/core/feeding_list.html:24
|
||||||
|
@ -881,6 +876,25 @@ msgstr ""
|
||||||
"Se non hai ricevuto la mail, controlla di aver inserito l'indirizzo "
|
"Se non hai ricevuto la mail, controlla di aver inserito l'indirizzo "
|
||||||
"utilizzato durante la registrazione e controlla la cartella spam."
|
"utilizzato durante la registrazione e controlla la cartella spam."
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:2
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"You're receiving this email because you requested a password reset for your "
|
||||||
|
"user account at %(site_name)s."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:4
|
||||||
|
msgid "Please go to the following page and choose a new password:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:8
|
||||||
|
msgid "Your username, in case you’ve forgotten:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:10
|
||||||
|
msgid "Thanks for using Baby Buddy!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/registration/password_reset_form.html:4
|
#: babybuddy/templates/registration/password_reset_form.html:4
|
||||||
msgid "Forgot Password"
|
msgid "Forgot Password"
|
||||||
msgstr "Password dimenticata"
|
msgstr "Password dimenticata"
|
||||||
|
@ -996,7 +1010,7 @@ msgstr ""
|
||||||
#: reports/graphs/feeding_duration.py:56
|
#: reports/graphs/feeding_duration.py:56
|
||||||
#: reports/graphs/head_circumference_change.py:28
|
#: reports/graphs/head_circumference_change.py:28
|
||||||
#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60
|
#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60
|
||||||
#: reports/graphs/sleep_pattern.py:151 reports/graphs/sleep_totals.py:59
|
#: reports/graphs/sleep_pattern.py:153 reports/graphs/sleep_totals.py:59
|
||||||
#: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28
|
#: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28
|
||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "Data"
|
msgstr "Data"
|
||||||
|
@ -1206,7 +1220,7 @@ msgstr "Aggiungi Bimbo"
|
||||||
msgid "Birth Date"
|
msgid "Birth Date"
|
||||||
msgstr "Data di nascita"
|
msgstr "Data di nascita"
|
||||||
|
|
||||||
#: core/templates/core/child_list.html:67
|
#: core/templates/core/child_list.html:62
|
||||||
msgid "No children found."
|
msgid "No children found."
|
||||||
msgstr "Nessun figlio trovato."
|
msgstr "Nessun figlio trovato."
|
||||||
|
|
||||||
|
@ -1364,6 +1378,19 @@ msgstr "Aggiungi una Pesata"
|
||||||
msgid "No pumping entries found."
|
msgid "No pumping entries found."
|
||||||
msgstr "Nessuna voce timer trovata."
|
msgstr "Nessuna voce timer trovata."
|
||||||
|
|
||||||
|
#: core/templates/core/quick_timer_nav.html:9
|
||||||
|
#: core/templates/core/quick_timer_nav.html:29
|
||||||
|
#: core/templates/core/timer_nav.html:37
|
||||||
|
msgid "Quick Start Timer"
|
||||||
|
msgstr "Avvio Rapido Timer"
|
||||||
|
|
||||||
|
#: core/templates/core/quick_timer_nav.html:19
|
||||||
|
#: core/templates/core/timer_nav.html:28
|
||||||
|
#, fuzzy
|
||||||
|
#| msgid "Quick Start Timer"
|
||||||
|
msgid "Quick Start Timer For…"
|
||||||
|
msgstr "Avvio Rapido Timer"
|
||||||
|
|
||||||
#: core/templates/core/sleep_confirm_delete.html:4
|
#: core/templates/core/sleep_confirm_delete.html:4
|
||||||
msgid "Delete a Sleep Entry"
|
msgid "Delete a Sleep Entry"
|
||||||
msgstr "Elimina un Riposo"
|
msgstr "Elimina un Riposo"
|
||||||
|
@ -1469,7 +1496,7 @@ msgid "Delete timer"
|
||||||
msgstr "Cancella timer"
|
msgstr "Cancella timer"
|
||||||
|
|
||||||
#: core/templates/core/timer_form.html:22
|
#: core/templates/core/timer_form.html:22
|
||||||
#: core/templates/core/timer_list.html:15 core/templates/core/timer_nav.html:23
|
#: core/templates/core/timer_list.html:15 core/templates/core/timer_nav.html:15
|
||||||
msgid "Start Timer"
|
msgid "Start Timer"
|
||||||
msgstr "Avvia Timer"
|
msgstr "Avvia Timer"
|
||||||
|
|
||||||
|
@ -1481,16 +1508,16 @@ msgstr "Nessuna voce timer trovata."
|
||||||
msgid "Delete Inactive Timers"
|
msgid "Delete Inactive Timers"
|
||||||
msgstr "Elimina Timer Inattivo"
|
msgstr "Elimina Timer Inattivo"
|
||||||
|
|
||||||
#: core/templates/core/timer_nav.html:28
|
#: core/templates/core/timer_nav.html:20
|
||||||
msgid "View Timers"
|
msgid "View Timers"
|
||||||
msgstr "Vedi Timer"
|
msgstr "Vedi Timer"
|
||||||
|
|
||||||
#: core/templates/core/timer_nav.html:32
|
#: core/templates/core/timer_nav.html:44
|
||||||
#: dashboard/templates/cards/timer_list.html:6
|
#: dashboard/templates/cards/timer_list.html:6
|
||||||
msgid "Active Timers"
|
msgid "Active Timers"
|
||||||
msgstr "Timer Attivi"
|
msgstr "Timer Attivi"
|
||||||
|
|
||||||
#: core/templates/core/timer_nav.html:38
|
#: core/templates/core/timer_nav.html:50
|
||||||
#: dashboard/templates/cards/diaperchange_last.html:17
|
#: dashboard/templates/cards/diaperchange_last.html:17
|
||||||
#: dashboard/templates/cards/diaperchange_types.html:12
|
#: dashboard/templates/cards/diaperchange_types.html:12
|
||||||
#: dashboard/templates/cards/feeding_day.html:20
|
#: dashboard/templates/cards/feeding_day.html:20
|
||||||
|
@ -1739,16 +1766,16 @@ msgstr "%(model)s lettura aggiunta!"
|
||||||
msgid "%(model)s reading for %(child)s updated."
|
msgid "%(model)s reading for %(child)s updated."
|
||||||
msgstr "%(model)s lettura per %(child)s aggiornata."
|
msgstr "%(model)s lettura per %(child)s aggiornata."
|
||||||
|
|
||||||
#: core/views.py:478
|
#: core/views.py:483
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(timer)s stopped."
|
msgid "%(timer)s stopped."
|
||||||
msgstr "%(timer)s fermato."
|
msgstr "%(timer)s fermato."
|
||||||
|
|
||||||
#: core/views.py:501
|
#: core/views.py:506
|
||||||
msgid "All inactive timers deleted."
|
msgid "All inactive timers deleted."
|
||||||
msgstr "Eliminati tutti i timer inattivi."
|
msgstr "Eliminati tutti i timer inattivi."
|
||||||
|
|
||||||
#: core/views.py:511
|
#: core/views.py:516
|
||||||
msgid "No inactive timers exist."
|
msgid "No inactive timers exist."
|
||||||
msgstr "Non esistono timer attivi."
|
msgstr "Non esistono timer attivi."
|
||||||
|
|
||||||
|
@ -2057,11 +2084,11 @@ msgstr "<b>Totale quantità di cibo</b>"
|
||||||
msgid "Pumping Amount"
|
msgid "Pumping Amount"
|
||||||
msgstr "Quantità di Cibo"
|
msgstr "Quantità di Cibo"
|
||||||
|
|
||||||
#: reports/graphs/sleep_pattern.py:148
|
#: reports/graphs/sleep_pattern.py:150
|
||||||
msgid "<b>Sleep Pattern</b>"
|
msgid "<b>Sleep Pattern</b>"
|
||||||
msgstr "<b>Modello Riposo</b>"
|
msgstr "<b>Modello Riposo</b>"
|
||||||
|
|
||||||
#: reports/graphs/sleep_pattern.py:165
|
#: reports/graphs/sleep_pattern.py:167
|
||||||
msgid "Time of day"
|
msgid "Time of day"
|
||||||
msgstr "Ora del giorno"
|
msgstr "Ora del giorno"
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Baby Buddy\n"
|
"Project-Id-Version: Baby Buddy\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-06-17 22:25+0000\n"
|
"POT-Creation-Date: 2022-07-30 21:13+0000\n"
|
||||||
"Language: nl\n"
|
"Language: nl\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
@ -11,12 +11,12 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: babybuddy/admin.py:12 babybuddy/admin.py:13
|
#: babybuddy/admin.py:12 babybuddy/admin.py:13
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:327
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:324
|
||||||
#: babybuddy/templates/babybuddy/user_settings_form.html:8
|
#: babybuddy/templates/babybuddy/user_settings_form.html:8
|
||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr "Instellingen"
|
msgstr "Instellingen"
|
||||||
|
|
||||||
#: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:92
|
#: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:89
|
||||||
#: babybuddy/templates/babybuddy/user_settings_form.html:61
|
#: babybuddy/templates/babybuddy/user_settings_form.html:61
|
||||||
#: dashboard/templates/dashboard/child.html:4
|
#: dashboard/templates/dashboard/child.html:4
|
||||||
#: dashboard/templates/dashboard/child.html:9
|
#: dashboard/templates/dashboard/child.html:9
|
||||||
|
@ -185,7 +185,7 @@ msgstr "Turks"
|
||||||
|
|
||||||
#: babybuddy/templates/admin/base_site.html:4
|
#: babybuddy/templates/admin/base_site.html:4
|
||||||
#: babybuddy/templates/admin/base_site.html:7
|
#: babybuddy/templates/admin/base_site.html:7
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:339
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:336
|
||||||
msgid "Database Admin"
|
msgid "Database Admin"
|
||||||
msgstr "Database admin"
|
msgstr "Database admin"
|
||||||
|
|
||||||
|
@ -223,30 +223,25 @@ msgstr ""
|
||||||
"<strong>Fout:</strong> Sommige velden zijn fout. Kijk hieronder voor meer "
|
"<strong>Fout:</strong> Sommige velden zijn fout. Kijk hieronder voor meer "
|
||||||
"info."
|
"info."
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:32
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:48 core/models.py:248
|
||||||
#: core/templates/core/timer_nav.html:18
|
|
||||||
msgid "Quick Start Timer"
|
|
||||||
msgstr "Snel start timer"
|
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:51 core/models.py:248
|
|
||||||
#: core/models.py:252
|
#: core/models.py:252
|
||||||
msgid "Diaper Change"
|
msgid "Diaper Change"
|
||||||
msgstr "Luierverschoning"
|
msgstr "Luierverschoning"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:57
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:54
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:262 core/models.py:312
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:259 core/models.py:312
|
||||||
#: core/models.py:316 core/templates/core/timer_detail.html:43
|
#: core/models.py:316 core/templates/core/timer_detail.html:43
|
||||||
msgid "Feeding"
|
msgid "Feeding"
|
||||||
msgstr "Voeding"
|
msgstr "Voeding"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:63
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:60
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:138 core/models.py:396
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:135 core/models.py:396
|
||||||
#: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29
|
#: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29
|
||||||
msgid "Note"
|
msgid "Note"
|
||||||
msgstr "Notitie"
|
msgstr "Notitie"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:69
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:66
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:283
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:280
|
||||||
#: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467
|
#: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467
|
||||||
#: core/models.py:468 core/models.py:471
|
#: core/models.py:468 core/models.py:471
|
||||||
#: core/templates/core/sleep_confirm_delete.html:7
|
#: core/templates/core/sleep_confirm_delete.html:7
|
||||||
|
@ -256,8 +251,8 @@ msgstr "Notitie"
|
||||||
msgid "Sleep"
|
msgid "Sleep"
|
||||||
msgstr "Slaap"
|
msgstr "Slaap"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:75
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:72
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:296
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:293
|
||||||
#: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647
|
#: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647
|
||||||
#: core/models.py:648 core/models.py:651
|
#: core/models.py:648 core/models.py:651
|
||||||
#: core/templates/core/timer_detail.html:59
|
#: core/templates/core/timer_detail.html:59
|
||||||
|
@ -269,15 +264,15 @@ msgstr "Slaap"
|
||||||
msgid "Tummy Time"
|
msgid "Tummy Time"
|
||||||
msgstr "Buikliggen"
|
msgstr "Buikliggen"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:99
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:96
|
||||||
#: core/templates/timeline/timeline.html:4
|
#: core/templates/timeline/timeline.html:4
|
||||||
#: core/templates/timeline/timeline.html:7
|
#: core/templates/timeline/timeline.html:7
|
||||||
#: dashboard/templates/dashboard/child_button_group.html:9
|
#: dashboard/templates/dashboard/child_button_group.html:9
|
||||||
msgid "Timeline"
|
msgid "Timeline"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:110
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:107
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:118 core/models.py:188
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:115 core/models.py:188
|
||||||
#: core/templates/core/child_confirm_delete.html:7
|
#: core/templates/core/child_confirm_delete.html:7
|
||||||
#: core/templates/core/child_detail.html:7
|
#: core/templates/core/child_detail.html:7
|
||||||
#: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4
|
#: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4
|
||||||
|
@ -287,7 +282,7 @@ msgstr ""
|
||||||
msgid "Children"
|
msgid "Children"
|
||||||
msgstr "Kinderen"
|
msgstr "Kinderen"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:124 core/models.py:137
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:121 core/models.py:137
|
||||||
#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335
|
#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335
|
||||||
#: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450
|
#: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450
|
||||||
#: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671
|
#: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671
|
||||||
|
@ -306,7 +301,7 @@ msgstr "Kinderen"
|
||||||
msgid "Child"
|
msgid "Child"
|
||||||
msgstr "Kind"
|
msgstr "Kind"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:132 core/models.py:143
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:129 core/models.py:143
|
||||||
#: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373
|
#: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373
|
||||||
#: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511
|
#: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511
|
||||||
#: core/models.py:677 core/templates/core/note_confirm_delete.html:7
|
#: core/models.py:677 core/templates/core/note_confirm_delete.html:7
|
||||||
|
@ -315,11 +310,11 @@ msgstr "Kind"
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Notities"
|
msgstr "Notities"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:152
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:149
|
||||||
msgid "Measurements"
|
msgid "Measurements"
|
||||||
msgstr "Metingen"
|
msgstr "Metingen"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:160 core/models.py:139
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:157 core/models.py:139
|
||||||
#: core/models.py:151 core/models.py:152 core/models.py:155
|
#: core/models.py:151 core/models.py:152 core/models.py:155
|
||||||
#: core/templates/core/bmi_confirm_delete.html:7
|
#: 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_form.html:13 core/templates/core/bmi_list.html:4
|
||||||
|
@ -330,11 +325,11 @@ msgstr "Metingen"
|
||||||
msgid "BMI"
|
msgid "BMI"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:166
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:163
|
||||||
msgid "BMI entry"
|
msgid "BMI entry"
|
||||||
msgstr "MBI ingave"
|
msgstr "MBI ingave"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:174 core/models.py:338
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:171 core/models.py:338
|
||||||
#: core/models.py:351 core/models.py:352 core/models.py:355
|
#: core/models.py:351 core/models.py:352 core/models.py:355
|
||||||
#: core/templates/core/head_circumference_confirm_delete.html:7
|
#: core/templates/core/head_circumference_confirm_delete.html:7
|
||||||
#: core/templates/core/head_circumference_form.html:13
|
#: core/templates/core/head_circumference_form.html:13
|
||||||
|
@ -350,11 +345,11 @@ msgstr "MBI ingave"
|
||||||
msgid "Head Circumference"
|
msgid "Head Circumference"
|
||||||
msgstr "Hoofd omtrek"
|
msgstr "Hoofd omtrek"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:180
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:177
|
||||||
msgid "Head Circumference entry"
|
msgid "Head Circumference entry"
|
||||||
msgstr "Hoofd omtrek ingave"
|
msgstr "Hoofd omtrek ingave"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:188 core/models.py:369
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:185 core/models.py:369
|
||||||
#: core/models.py:381 core/models.py:382 core/models.py:385
|
#: core/models.py:381 core/models.py:382 core/models.py:385
|
||||||
#: core/templates/core/height_confirm_delete.html:7
|
#: core/templates/core/height_confirm_delete.html:7
|
||||||
#: core/templates/core/height_form.html:13
|
#: core/templates/core/height_form.html:13
|
||||||
|
@ -369,11 +364,11 @@ msgstr "Hoofd omtrek ingave"
|
||||||
msgid "Height"
|
msgid "Height"
|
||||||
msgstr "Lengte"
|
msgstr "Lengte"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:194
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:191
|
||||||
msgid "Height entry"
|
msgid "Height entry"
|
||||||
msgstr "Lengte ingave"
|
msgstr "Lengte ingave"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:202 core/models.py:506
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:199 core/models.py:506
|
||||||
#: core/models.py:519 core/models.py:520 core/models.py:523
|
#: core/models.py:519 core/models.py:520 core/models.py:523
|
||||||
#: core/templates/core/temperature_confirm_delete.html:7
|
#: core/templates/core/temperature_confirm_delete.html:7
|
||||||
#: core/templates/core/temperature_form.html:13
|
#: core/templates/core/temperature_form.html:13
|
||||||
|
@ -384,11 +379,11 @@ msgstr "Lengte ingave"
|
||||||
msgid "Temperature"
|
msgid "Temperature"
|
||||||
msgstr "Temperatuur"
|
msgstr "Temperatuur"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:208
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:205
|
||||||
msgid "Temperature reading"
|
msgid "Temperature reading"
|
||||||
msgstr "Temperatuur meting"
|
msgstr "Temperatuur meting"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:216 core/models.py:673
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:213 core/models.py:673
|
||||||
#: core/models.py:685 core/models.py:686 core/models.py:689
|
#: core/models.py:685 core/models.py:686 core/models.py:689
|
||||||
#: core/templates/core/weight_confirm_delete.html:7
|
#: core/templates/core/weight_confirm_delete.html:7
|
||||||
#: core/templates/core/weight_form.html:13
|
#: core/templates/core/weight_form.html:13
|
||||||
|
@ -403,24 +398,24 @@ msgstr "Temperatuur meting"
|
||||||
msgid "Weight"
|
msgid "Weight"
|
||||||
msgstr "Gewicht"
|
msgstr "Gewicht"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:222
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:219
|
||||||
msgid "Weight entry"
|
msgid "Weight entry"
|
||||||
msgstr "Gewicht ingave"
|
msgstr "Gewicht ingave"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:236
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:233
|
||||||
msgid "Activities"
|
msgid "Activities"
|
||||||
msgstr "Activiteiten"
|
msgstr "Activiteiten"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:243
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:240
|
||||||
#: reports/graphs/diaperchange_lifetimes.py:27
|
#: reports/graphs/diaperchange_lifetimes.py:27
|
||||||
msgid "Changes"
|
msgid "Changes"
|
||||||
msgstr "Verschoningen"
|
msgstr "Verschoningen"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:249
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:246
|
||||||
msgid "Change"
|
msgid "Change"
|
||||||
msgstr "Verschoning"
|
msgstr "Verschoning"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:256
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:253
|
||||||
#: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313
|
#: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313
|
||||||
#: core/templates/core/feeding_confirm_delete.html:7
|
#: core/templates/core/feeding_confirm_delete.html:7
|
||||||
#: core/templates/core/feeding_form.html:13
|
#: core/templates/core/feeding_form.html:13
|
||||||
|
@ -430,7 +425,7 @@ msgstr "Verschoning"
|
||||||
msgid "Feedings"
|
msgid "Feedings"
|
||||||
msgstr "Voedingen"
|
msgstr "Voedingen"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:270 core/models.py:437
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:267 core/models.py:437
|
||||||
#: core/models.py:438 core/models.py:441
|
#: core/models.py:438 core/models.py:441
|
||||||
#: core/templates/core/pumping_confirm_delete.html:7
|
#: core/templates/core/pumping_confirm_delete.html:7
|
||||||
#: core/templates/core/pumping_form.html:13
|
#: core/templates/core/pumping_form.html:13
|
||||||
|
@ -442,21 +437,21 @@ msgstr "Voedingen"
|
||||||
msgid "Pumping"
|
msgid "Pumping"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:276
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:273
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Weight entry"
|
#| msgid "Weight entry"
|
||||||
msgid "Pumping entry"
|
msgid "Pumping entry"
|
||||||
msgstr "Gewicht ingave"
|
msgstr "Gewicht ingave"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:289
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:286
|
||||||
msgid "Sleep entry"
|
msgid "Sleep entry"
|
||||||
msgstr "Slaap ingave"
|
msgstr "Slaap ingave"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:302
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:299
|
||||||
msgid "Tummy Time entry"
|
msgid "Tummy Time entry"
|
||||||
msgstr "Buikliggen ingave"
|
msgstr "Buikliggen ingave"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:326
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:323
|
||||||
#: babybuddy/templates/babybuddy/user_list.html:17
|
#: babybuddy/templates/babybuddy/user_list.html:17
|
||||||
#: babybuddy/templates/babybuddy/user_password_form.html:7
|
#: babybuddy/templates/babybuddy/user_password_form.html:7
|
||||||
#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556
|
#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556
|
||||||
|
@ -464,23 +459,23 @@ msgstr "Buikliggen ingave"
|
||||||
msgid "User"
|
msgid "User"
|
||||||
msgstr "Gebruiker"
|
msgstr "Gebruiker"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:328
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:325
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr "Wachtwoord"
|
msgstr "Wachtwoord"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:332
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:329
|
||||||
msgid "Logout"
|
msgid "Logout"
|
||||||
msgstr "Uitloggen"
|
msgstr "Uitloggen"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:335
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:332
|
||||||
msgid "Site"
|
msgid "Site"
|
||||||
msgstr "Site"
|
msgstr "Site"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:336
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:333
|
||||||
msgid "API Browser"
|
msgid "API Browser"
|
||||||
msgstr "API browser"
|
msgstr "API browser"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:338
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:335
|
||||||
#: babybuddy/templates/babybuddy/user_confirm_delete.html:7
|
#: babybuddy/templates/babybuddy/user_confirm_delete.html:7
|
||||||
#: babybuddy/templates/babybuddy/user_form.html:13
|
#: babybuddy/templates/babybuddy/user_form.html:13
|
||||||
#: babybuddy/templates/babybuddy/user_list.html:4
|
#: babybuddy/templates/babybuddy/user_list.html:4
|
||||||
|
@ -488,15 +483,15 @@ msgstr "API browser"
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr "Gebruikers"
|
msgstr "Gebruikers"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:341
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:338
|
||||||
msgid "Support"
|
msgid "Support"
|
||||||
msgstr "Ondersteuning"
|
msgstr "Ondersteuning"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:343
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:340
|
||||||
msgid "Source Code"
|
msgid "Source Code"
|
||||||
msgstr "Broncode"
|
msgstr "Broncode"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:345
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:342
|
||||||
msgid "Chat / Support"
|
msgid "Chat / Support"
|
||||||
msgstr "Chat / Hulp"
|
msgstr "Chat / Hulp"
|
||||||
|
|
||||||
|
@ -667,7 +662,7 @@ msgstr "Actief"
|
||||||
#: babybuddy/templates/babybuddy/user_list.html:23
|
#: babybuddy/templates/babybuddy/user_list.html:23
|
||||||
#: core/templates/core/bmi_list.html:24 core/templates/core/bmi_list.html:38
|
#: core/templates/core/bmi_list.html:24 core/templates/core/bmi_list.html:38
|
||||||
#: core/templates/core/child_list.html:28
|
#: core/templates/core/child_list.html:28
|
||||||
#: core/templates/core/child_list.html:48
|
#: core/templates/core/child_list.html:43
|
||||||
#: core/templates/core/diaperchange_list.html:24
|
#: core/templates/core/diaperchange_list.html:24
|
||||||
#: core/templates/core/diaperchange_list.html:40
|
#: core/templates/core/diaperchange_list.html:40
|
||||||
#: core/templates/core/feeding_list.html:24
|
#: core/templates/core/feeding_list.html:24
|
||||||
|
@ -878,6 +873,25 @@ msgstr ""
|
||||||
"Als je geen email ontvangen hebt, controleer je spam folder, en het email "
|
"Als je geen email ontvangen hebt, controleer je spam folder, en het email "
|
||||||
"adres dat je ingegeven hebt."
|
"adres dat je ingegeven hebt."
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:2
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"You're receiving this email because you requested a password reset for your "
|
||||||
|
"user account at %(site_name)s."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:4
|
||||||
|
msgid "Please go to the following page and choose a new password:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:8
|
||||||
|
msgid "Your username, in case you’ve forgotten:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:10
|
||||||
|
msgid "Thanks for using Baby Buddy!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/registration/password_reset_form.html:4
|
#: babybuddy/templates/registration/password_reset_form.html:4
|
||||||
msgid "Forgot Password"
|
msgid "Forgot Password"
|
||||||
msgstr "Wachtwoord vergeten"
|
msgstr "Wachtwoord vergeten"
|
||||||
|
@ -994,7 +1008,7 @@ msgstr ""
|
||||||
#: reports/graphs/feeding_duration.py:56
|
#: reports/graphs/feeding_duration.py:56
|
||||||
#: reports/graphs/head_circumference_change.py:28
|
#: reports/graphs/head_circumference_change.py:28
|
||||||
#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60
|
#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60
|
||||||
#: reports/graphs/sleep_pattern.py:151 reports/graphs/sleep_totals.py:59
|
#: reports/graphs/sleep_pattern.py:153 reports/graphs/sleep_totals.py:59
|
||||||
#: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28
|
#: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28
|
||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "Datum"
|
msgstr "Datum"
|
||||||
|
@ -1202,7 +1216,7 @@ msgstr "Voeg kind toe"
|
||||||
msgid "Birth Date"
|
msgid "Birth Date"
|
||||||
msgstr "Geboorte datum"
|
msgstr "Geboorte datum"
|
||||||
|
|
||||||
#: core/templates/core/child_list.html:67
|
#: core/templates/core/child_list.html:62
|
||||||
msgid "No children found."
|
msgid "No children found."
|
||||||
msgstr "Geen kinderen gevonden"
|
msgstr "Geen kinderen gevonden"
|
||||||
|
|
||||||
|
@ -1362,6 +1376,19 @@ msgstr "Voeg een gewicht toe"
|
||||||
msgid "No pumping entries found."
|
msgid "No pumping entries found."
|
||||||
msgstr "Geen timer gegevens gevonden."
|
msgstr "Geen timer gegevens gevonden."
|
||||||
|
|
||||||
|
#: core/templates/core/quick_timer_nav.html:9
|
||||||
|
#: core/templates/core/quick_timer_nav.html:29
|
||||||
|
#: core/templates/core/timer_nav.html:37
|
||||||
|
msgid "Quick Start Timer"
|
||||||
|
msgstr "Snel start timer"
|
||||||
|
|
||||||
|
#: core/templates/core/quick_timer_nav.html:19
|
||||||
|
#: core/templates/core/timer_nav.html:28
|
||||||
|
#, fuzzy
|
||||||
|
#| msgid "Quick Start Timer"
|
||||||
|
msgid "Quick Start Timer For…"
|
||||||
|
msgstr "Snel start timer"
|
||||||
|
|
||||||
#: core/templates/core/sleep_confirm_delete.html:4
|
#: core/templates/core/sleep_confirm_delete.html:4
|
||||||
msgid "Delete a Sleep Entry"
|
msgid "Delete a Sleep Entry"
|
||||||
msgstr "Verwijder een slaap ingave"
|
msgstr "Verwijder een slaap ingave"
|
||||||
|
@ -1469,7 +1496,7 @@ msgid "Delete timer"
|
||||||
msgstr "Verwijder timer"
|
msgstr "Verwijder timer"
|
||||||
|
|
||||||
#: core/templates/core/timer_form.html:22
|
#: core/templates/core/timer_form.html:22
|
||||||
#: core/templates/core/timer_list.html:15 core/templates/core/timer_nav.html:23
|
#: core/templates/core/timer_list.html:15 core/templates/core/timer_nav.html:15
|
||||||
msgid "Start Timer"
|
msgid "Start Timer"
|
||||||
msgstr "Start timer"
|
msgstr "Start timer"
|
||||||
|
|
||||||
|
@ -1481,16 +1508,16 @@ msgstr "Geen timer gegevens gevonden."
|
||||||
msgid "Delete Inactive Timers"
|
msgid "Delete Inactive Timers"
|
||||||
msgstr "Verwijder inactieve timers"
|
msgstr "Verwijder inactieve timers"
|
||||||
|
|
||||||
#: core/templates/core/timer_nav.html:28
|
#: core/templates/core/timer_nav.html:20
|
||||||
msgid "View Timers"
|
msgid "View Timers"
|
||||||
msgstr "Bekijk timers"
|
msgstr "Bekijk timers"
|
||||||
|
|
||||||
#: core/templates/core/timer_nav.html:32
|
#: core/templates/core/timer_nav.html:44
|
||||||
#: dashboard/templates/cards/timer_list.html:6
|
#: dashboard/templates/cards/timer_list.html:6
|
||||||
msgid "Active Timers"
|
msgid "Active Timers"
|
||||||
msgstr "Actieve timers"
|
msgstr "Actieve timers"
|
||||||
|
|
||||||
#: core/templates/core/timer_nav.html:38
|
#: core/templates/core/timer_nav.html:50
|
||||||
#: dashboard/templates/cards/diaperchange_last.html:17
|
#: dashboard/templates/cards/diaperchange_last.html:17
|
||||||
#: dashboard/templates/cards/diaperchange_types.html:12
|
#: dashboard/templates/cards/diaperchange_types.html:12
|
||||||
#: dashboard/templates/cards/feeding_day.html:20
|
#: dashboard/templates/cards/feeding_day.html:20
|
||||||
|
@ -1739,16 +1766,16 @@ msgstr "%(model)s meting toegevoegd!"
|
||||||
msgid "%(model)s reading for %(child)s updated."
|
msgid "%(model)s reading for %(child)s updated."
|
||||||
msgstr "%(model)s meting voor %(child)s bijgewerkt."
|
msgstr "%(model)s meting voor %(child)s bijgewerkt."
|
||||||
|
|
||||||
#: core/views.py:478
|
#: core/views.py:483
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(timer)s stopped."
|
msgid "%(timer)s stopped."
|
||||||
msgstr "%(timer)s is gestopt."
|
msgstr "%(timer)s is gestopt."
|
||||||
|
|
||||||
#: core/views.py:501
|
#: core/views.py:506
|
||||||
msgid "All inactive timers deleted."
|
msgid "All inactive timers deleted."
|
||||||
msgstr "Alle inactieve timers verwijderd."
|
msgstr "Alle inactieve timers verwijderd."
|
||||||
|
|
||||||
#: core/views.py:511
|
#: core/views.py:516
|
||||||
msgid "No inactive timers exist."
|
msgid "No inactive timers exist."
|
||||||
msgstr "Geen inactieve timers gevonden."
|
msgstr "Geen inactieve timers gevonden."
|
||||||
|
|
||||||
|
@ -2059,11 +2086,11 @@ msgstr "<b>Totaal hoeveelheid voeding</b>"
|
||||||
msgid "Pumping Amount"
|
msgid "Pumping Amount"
|
||||||
msgstr "Hoeveelheid voedingen"
|
msgstr "Hoeveelheid voedingen"
|
||||||
|
|
||||||
#: reports/graphs/sleep_pattern.py:148
|
#: reports/graphs/sleep_pattern.py:150
|
||||||
msgid "<b>Sleep Pattern</b>"
|
msgid "<b>Sleep Pattern</b>"
|
||||||
msgstr "<b>Slaappatroon</b>"
|
msgstr "<b>Slaappatroon</b>"
|
||||||
|
|
||||||
#: reports/graphs/sleep_pattern.py:165
|
#: reports/graphs/sleep_pattern.py:167
|
||||||
msgid "Time of day"
|
msgid "Time of day"
|
||||||
msgstr "Tijd van de dag"
|
msgstr "Tijd van de dag"
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: test\n"
|
"Project-Id-Version: test\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-06-17 22:25+0000\n"
|
"POT-Creation-Date: 2022-07-30 21:13+0000\n"
|
||||||
"Language: pl\n"
|
"Language: pl\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
@ -12,12 +12,12 @@ msgstr ""
|
||||||
"|| n%100>=20) ? 1 : 2);\n"
|
"|| n%100>=20) ? 1 : 2);\n"
|
||||||
|
|
||||||
#: babybuddy/admin.py:12 babybuddy/admin.py:13
|
#: babybuddy/admin.py:12 babybuddy/admin.py:13
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:327
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:324
|
||||||
#: babybuddy/templates/babybuddy/user_settings_form.html:8
|
#: babybuddy/templates/babybuddy/user_settings_form.html:8
|
||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr "Ustawienia"
|
msgstr "Ustawienia"
|
||||||
|
|
||||||
#: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:92
|
#: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:89
|
||||||
#: babybuddy/templates/babybuddy/user_settings_form.html:61
|
#: babybuddy/templates/babybuddy/user_settings_form.html:61
|
||||||
#: dashboard/templates/dashboard/child.html:4
|
#: dashboard/templates/dashboard/child.html:4
|
||||||
#: dashboard/templates/dashboard/child.html:9
|
#: dashboard/templates/dashboard/child.html:9
|
||||||
|
@ -184,7 +184,7 @@ msgstr "Turecki"
|
||||||
|
|
||||||
#: babybuddy/templates/admin/base_site.html:4
|
#: babybuddy/templates/admin/base_site.html:4
|
||||||
#: babybuddy/templates/admin/base_site.html:7
|
#: babybuddy/templates/admin/base_site.html:7
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:339
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:336
|
||||||
msgid "Database Admin"
|
msgid "Database Admin"
|
||||||
msgstr "Administrator bazy danych"
|
msgstr "Administrator bazy danych"
|
||||||
|
|
||||||
|
@ -222,30 +222,25 @@ msgstr ""
|
||||||
"<strong>Błąd:</strong> Niektóre pola zawierają błędy. Spójrz poniżej po "
|
"<strong>Błąd:</strong> Niektóre pola zawierają błędy. Spójrz poniżej po "
|
||||||
"więcej szczegółów."
|
"więcej szczegółów."
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:32
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:48 core/models.py:248
|
||||||
#: core/templates/core/timer_nav.html:18
|
|
||||||
msgid "Quick Start Timer"
|
|
||||||
msgstr "Szybki start stopera"
|
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:51 core/models.py:248
|
|
||||||
#: core/models.py:252
|
#: core/models.py:252
|
||||||
msgid "Diaper Change"
|
msgid "Diaper Change"
|
||||||
msgstr "Zmiana pieluchy"
|
msgstr "Zmiana pieluchy"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:57
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:54
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:262 core/models.py:312
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:259 core/models.py:312
|
||||||
#: core/models.py:316 core/templates/core/timer_detail.html:43
|
#: core/models.py:316 core/templates/core/timer_detail.html:43
|
||||||
msgid "Feeding"
|
msgid "Feeding"
|
||||||
msgstr "Karmienie"
|
msgstr "Karmienie"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:63
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:60
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:138 core/models.py:396
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:135 core/models.py:396
|
||||||
#: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29
|
#: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29
|
||||||
msgid "Note"
|
msgid "Note"
|
||||||
msgstr "Notatka"
|
msgstr "Notatka"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:69
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:66
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:283
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:280
|
||||||
#: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467
|
#: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467
|
||||||
#: core/models.py:468 core/models.py:471
|
#: core/models.py:468 core/models.py:471
|
||||||
#: core/templates/core/sleep_confirm_delete.html:7
|
#: core/templates/core/sleep_confirm_delete.html:7
|
||||||
|
@ -255,8 +250,8 @@ msgstr "Notatka"
|
||||||
msgid "Sleep"
|
msgid "Sleep"
|
||||||
msgstr "Spać"
|
msgstr "Spać"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:75
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:72
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:296
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:293
|
||||||
#: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647
|
#: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647
|
||||||
#: core/models.py:648 core/models.py:651
|
#: core/models.py:648 core/models.py:651
|
||||||
#: core/templates/core/timer_detail.html:59
|
#: core/templates/core/timer_detail.html:59
|
||||||
|
@ -268,15 +263,15 @@ msgstr "Spać"
|
||||||
msgid "Tummy Time"
|
msgid "Tummy Time"
|
||||||
msgstr "Czas drzemki"
|
msgstr "Czas drzemki"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:99
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:96
|
||||||
#: core/templates/timeline/timeline.html:4
|
#: core/templates/timeline/timeline.html:4
|
||||||
#: core/templates/timeline/timeline.html:7
|
#: core/templates/timeline/timeline.html:7
|
||||||
#: dashboard/templates/dashboard/child_button_group.html:9
|
#: dashboard/templates/dashboard/child_button_group.html:9
|
||||||
msgid "Timeline"
|
msgid "Timeline"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:110
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:107
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:118 core/models.py:188
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:115 core/models.py:188
|
||||||
#: core/templates/core/child_confirm_delete.html:7
|
#: core/templates/core/child_confirm_delete.html:7
|
||||||
#: core/templates/core/child_detail.html:7
|
#: core/templates/core/child_detail.html:7
|
||||||
#: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4
|
#: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4
|
||||||
|
@ -286,7 +281,7 @@ msgstr ""
|
||||||
msgid "Children"
|
msgid "Children"
|
||||||
msgstr "Dzieci"
|
msgstr "Dzieci"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:124 core/models.py:137
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:121 core/models.py:137
|
||||||
#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335
|
#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335
|
||||||
#: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450
|
#: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450
|
||||||
#: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671
|
#: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671
|
||||||
|
@ -305,7 +300,7 @@ msgstr "Dzieci"
|
||||||
msgid "Child"
|
msgid "Child"
|
||||||
msgstr "Dziecko"
|
msgstr "Dziecko"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:132 core/models.py:143
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:129 core/models.py:143
|
||||||
#: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373
|
#: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373
|
||||||
#: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511
|
#: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511
|
||||||
#: core/models.py:677 core/templates/core/note_confirm_delete.html:7
|
#: core/models.py:677 core/templates/core/note_confirm_delete.html:7
|
||||||
|
@ -314,11 +309,11 @@ msgstr "Dziecko"
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Notatki"
|
msgstr "Notatki"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:152
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:149
|
||||||
msgid "Measurements"
|
msgid "Measurements"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:160 core/models.py:139
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:157 core/models.py:139
|
||||||
#: core/models.py:151 core/models.py:152 core/models.py:155
|
#: core/models.py:151 core/models.py:152 core/models.py:155
|
||||||
#: core/templates/core/bmi_confirm_delete.html:7
|
#: 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_form.html:13 core/templates/core/bmi_list.html:4
|
||||||
|
@ -329,13 +324,13 @@ msgstr ""
|
||||||
msgid "BMI"
|
msgid "BMI"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:166
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:163
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Sleep entry"
|
#| msgid "Sleep entry"
|
||||||
msgid "BMI entry"
|
msgid "BMI entry"
|
||||||
msgstr "Czas spania"
|
msgstr "Czas spania"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:174 core/models.py:338
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:171 core/models.py:338
|
||||||
#: core/models.py:351 core/models.py:352 core/models.py:355
|
#: core/models.py:351 core/models.py:352 core/models.py:355
|
||||||
#: core/templates/core/head_circumference_confirm_delete.html:7
|
#: core/templates/core/head_circumference_confirm_delete.html:7
|
||||||
#: core/templates/core/head_circumference_form.html:13
|
#: core/templates/core/head_circumference_form.html:13
|
||||||
|
@ -351,11 +346,11 @@ msgstr "Czas spania"
|
||||||
msgid "Head Circumference"
|
msgid "Head Circumference"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:180
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:177
|
||||||
msgid "Head Circumference entry"
|
msgid "Head Circumference entry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:188 core/models.py:369
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:185 core/models.py:369
|
||||||
#: core/models.py:381 core/models.py:382 core/models.py:385
|
#: core/models.py:381 core/models.py:382 core/models.py:385
|
||||||
#: core/templates/core/height_confirm_delete.html:7
|
#: core/templates/core/height_confirm_delete.html:7
|
||||||
#: core/templates/core/height_form.html:13
|
#: core/templates/core/height_form.html:13
|
||||||
|
@ -372,13 +367,13 @@ msgstr ""
|
||||||
msgid "Height"
|
msgid "Height"
|
||||||
msgstr "Waga"
|
msgstr "Waga"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:194
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:191
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Weight entry"
|
#| msgid "Weight entry"
|
||||||
msgid "Height entry"
|
msgid "Height entry"
|
||||||
msgstr "Wpis wagi"
|
msgstr "Wpis wagi"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:202 core/models.py:506
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:199 core/models.py:506
|
||||||
#: core/models.py:519 core/models.py:520 core/models.py:523
|
#: core/models.py:519 core/models.py:520 core/models.py:523
|
||||||
#: core/templates/core/temperature_confirm_delete.html:7
|
#: core/templates/core/temperature_confirm_delete.html:7
|
||||||
#: core/templates/core/temperature_form.html:13
|
#: core/templates/core/temperature_form.html:13
|
||||||
|
@ -389,11 +384,11 @@ msgstr "Wpis wagi"
|
||||||
msgid "Temperature"
|
msgid "Temperature"
|
||||||
msgstr "Temperatura"
|
msgstr "Temperatura"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:208
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:205
|
||||||
msgid "Temperature reading"
|
msgid "Temperature reading"
|
||||||
msgstr "Odczyt temperatury"
|
msgstr "Odczyt temperatury"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:216 core/models.py:673
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:213 core/models.py:673
|
||||||
#: core/models.py:685 core/models.py:686 core/models.py:689
|
#: core/models.py:685 core/models.py:686 core/models.py:689
|
||||||
#: core/templates/core/weight_confirm_delete.html:7
|
#: core/templates/core/weight_confirm_delete.html:7
|
||||||
#: core/templates/core/weight_form.html:13
|
#: core/templates/core/weight_form.html:13
|
||||||
|
@ -408,24 +403,24 @@ msgstr "Odczyt temperatury"
|
||||||
msgid "Weight"
|
msgid "Weight"
|
||||||
msgstr "Waga"
|
msgstr "Waga"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:222
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:219
|
||||||
msgid "Weight entry"
|
msgid "Weight entry"
|
||||||
msgstr "Wpis wagi"
|
msgstr "Wpis wagi"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:236
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:233
|
||||||
msgid "Activities"
|
msgid "Activities"
|
||||||
msgstr "Aktywności"
|
msgstr "Aktywności"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:243
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:240
|
||||||
#: reports/graphs/diaperchange_lifetimes.py:27
|
#: reports/graphs/diaperchange_lifetimes.py:27
|
||||||
msgid "Changes"
|
msgid "Changes"
|
||||||
msgstr "Zmiany"
|
msgstr "Zmiany"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:249
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:246
|
||||||
msgid "Change"
|
msgid "Change"
|
||||||
msgstr "Zmiana"
|
msgstr "Zmiana"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:256
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:253
|
||||||
#: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313
|
#: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313
|
||||||
#: core/templates/core/feeding_confirm_delete.html:7
|
#: core/templates/core/feeding_confirm_delete.html:7
|
||||||
#: core/templates/core/feeding_form.html:13
|
#: core/templates/core/feeding_form.html:13
|
||||||
|
@ -435,7 +430,7 @@ msgstr "Zmiana"
|
||||||
msgid "Feedings"
|
msgid "Feedings"
|
||||||
msgstr "Karmienia"
|
msgstr "Karmienia"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:270 core/models.py:437
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:267 core/models.py:437
|
||||||
#: core/models.py:438 core/models.py:441
|
#: core/models.py:438 core/models.py:441
|
||||||
#: core/templates/core/pumping_confirm_delete.html:7
|
#: core/templates/core/pumping_confirm_delete.html:7
|
||||||
#: core/templates/core/pumping_form.html:13
|
#: core/templates/core/pumping_form.html:13
|
||||||
|
@ -447,21 +442,21 @@ msgstr "Karmienia"
|
||||||
msgid "Pumping"
|
msgid "Pumping"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:276
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:273
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Weight entry"
|
#| msgid "Weight entry"
|
||||||
msgid "Pumping entry"
|
msgid "Pumping entry"
|
||||||
msgstr "Wpis wagi"
|
msgstr "Wpis wagi"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:289
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:286
|
||||||
msgid "Sleep entry"
|
msgid "Sleep entry"
|
||||||
msgstr "Czas spania"
|
msgstr "Czas spania"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:302
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:299
|
||||||
msgid "Tummy Time entry"
|
msgid "Tummy Time entry"
|
||||||
msgstr "Czas drzemki"
|
msgstr "Czas drzemki"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:326
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:323
|
||||||
#: babybuddy/templates/babybuddy/user_list.html:17
|
#: babybuddy/templates/babybuddy/user_list.html:17
|
||||||
#: babybuddy/templates/babybuddy/user_password_form.html:7
|
#: babybuddy/templates/babybuddy/user_password_form.html:7
|
||||||
#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556
|
#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556
|
||||||
|
@ -469,23 +464,23 @@ msgstr "Czas drzemki"
|
||||||
msgid "User"
|
msgid "User"
|
||||||
msgstr "Użytkownik"
|
msgstr "Użytkownik"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:328
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:325
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr "Hasło"
|
msgstr "Hasło"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:332
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:329
|
||||||
msgid "Logout"
|
msgid "Logout"
|
||||||
msgstr "Wyloguj"
|
msgstr "Wyloguj"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:335
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:332
|
||||||
msgid "Site"
|
msgid "Site"
|
||||||
msgstr "Strona"
|
msgstr "Strona"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:336
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:333
|
||||||
msgid "API Browser"
|
msgid "API Browser"
|
||||||
msgstr "Przeglądarka API"
|
msgstr "Przeglądarka API"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:338
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:335
|
||||||
#: babybuddy/templates/babybuddy/user_confirm_delete.html:7
|
#: babybuddy/templates/babybuddy/user_confirm_delete.html:7
|
||||||
#: babybuddy/templates/babybuddy/user_form.html:13
|
#: babybuddy/templates/babybuddy/user_form.html:13
|
||||||
#: babybuddy/templates/babybuddy/user_list.html:4
|
#: babybuddy/templates/babybuddy/user_list.html:4
|
||||||
|
@ -493,15 +488,15 @@ msgstr "Przeglądarka API"
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr "Użytkownicy"
|
msgstr "Użytkownicy"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:341
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:338
|
||||||
msgid "Support"
|
msgid "Support"
|
||||||
msgstr "Wsparcie"
|
msgstr "Wsparcie"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:343
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:340
|
||||||
msgid "Source Code"
|
msgid "Source Code"
|
||||||
msgstr "Kod źródłowy"
|
msgstr "Kod źródłowy"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:345
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:342
|
||||||
msgid "Chat / Support"
|
msgid "Chat / Support"
|
||||||
msgstr "Czat / Wsparcie"
|
msgstr "Czat / Wsparcie"
|
||||||
|
|
||||||
|
@ -670,7 +665,7 @@ msgstr "Aktywny"
|
||||||
#: babybuddy/templates/babybuddy/user_list.html:23
|
#: babybuddy/templates/babybuddy/user_list.html:23
|
||||||
#: core/templates/core/bmi_list.html:24 core/templates/core/bmi_list.html:38
|
#: core/templates/core/bmi_list.html:24 core/templates/core/bmi_list.html:38
|
||||||
#: core/templates/core/child_list.html:28
|
#: core/templates/core/child_list.html:28
|
||||||
#: core/templates/core/child_list.html:48
|
#: core/templates/core/child_list.html:43
|
||||||
#: core/templates/core/diaperchange_list.html:24
|
#: core/templates/core/diaperchange_list.html:24
|
||||||
#: core/templates/core/diaperchange_list.html:40
|
#: core/templates/core/diaperchange_list.html:40
|
||||||
#: core/templates/core/feeding_list.html:24
|
#: core/templates/core/feeding_list.html:24
|
||||||
|
@ -876,6 +871,25 @@ msgstr ""
|
||||||
"Jeśli nie otrzymasz wiadomości e-mail, upewnij się, że wpisałeś adres, pod "
|
"Jeśli nie otrzymasz wiadomości e-mail, upewnij się, że wpisałeś adres, pod "
|
||||||
"którym się zarejestrowałeś, i sprawdź folder ze spamem."
|
"którym się zarejestrowałeś, i sprawdź folder ze spamem."
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:2
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"You're receiving this email because you requested a password reset for your "
|
||||||
|
"user account at %(site_name)s."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:4
|
||||||
|
msgid "Please go to the following page and choose a new password:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:8
|
||||||
|
msgid "Your username, in case you’ve forgotten:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:10
|
||||||
|
msgid "Thanks for using Baby Buddy!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/registration/password_reset_form.html:4
|
#: babybuddy/templates/registration/password_reset_form.html:4
|
||||||
msgid "Forgot Password"
|
msgid "Forgot Password"
|
||||||
msgstr "Zapomniano hasła"
|
msgstr "Zapomniano hasła"
|
||||||
|
@ -991,7 +1005,7 @@ msgstr ""
|
||||||
#: reports/graphs/feeding_duration.py:56
|
#: reports/graphs/feeding_duration.py:56
|
||||||
#: reports/graphs/head_circumference_change.py:28
|
#: reports/graphs/head_circumference_change.py:28
|
||||||
#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60
|
#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60
|
||||||
#: reports/graphs/sleep_pattern.py:151 reports/graphs/sleep_totals.py:59
|
#: reports/graphs/sleep_pattern.py:153 reports/graphs/sleep_totals.py:59
|
||||||
#: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28
|
#: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28
|
||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "Data"
|
msgstr "Data"
|
||||||
|
@ -1199,7 +1213,7 @@ msgstr "Dodaj dziecko"
|
||||||
msgid "Birth Date"
|
msgid "Birth Date"
|
||||||
msgstr "Data urodzenia"
|
msgstr "Data urodzenia"
|
||||||
|
|
||||||
#: core/templates/core/child_list.html:67
|
#: core/templates/core/child_list.html:62
|
||||||
msgid "No children found."
|
msgid "No children found."
|
||||||
msgstr "Nie znaleziono dzieci"
|
msgstr "Nie znaleziono dzieci"
|
||||||
|
|
||||||
|
@ -1357,6 +1371,19 @@ msgstr "Zaktualizuj wpis wagi"
|
||||||
msgid "No pumping entries found."
|
msgid "No pumping entries found."
|
||||||
msgstr "Brak wpisów stopera"
|
msgstr "Brak wpisów stopera"
|
||||||
|
|
||||||
|
#: core/templates/core/quick_timer_nav.html:9
|
||||||
|
#: core/templates/core/quick_timer_nav.html:29
|
||||||
|
#: core/templates/core/timer_nav.html:37
|
||||||
|
msgid "Quick Start Timer"
|
||||||
|
msgstr "Szybki start stopera"
|
||||||
|
|
||||||
|
#: core/templates/core/quick_timer_nav.html:19
|
||||||
|
#: core/templates/core/timer_nav.html:28
|
||||||
|
#, fuzzy
|
||||||
|
#| msgid "Quick Start Timer"
|
||||||
|
msgid "Quick Start Timer For…"
|
||||||
|
msgstr "Szybki start stopera"
|
||||||
|
|
||||||
#: core/templates/core/sleep_confirm_delete.html:4
|
#: core/templates/core/sleep_confirm_delete.html:4
|
||||||
msgid "Delete a Sleep Entry"
|
msgid "Delete a Sleep Entry"
|
||||||
msgstr "Usuń czas spania"
|
msgstr "Usuń czas spania"
|
||||||
|
@ -1463,7 +1490,7 @@ msgid "Delete timer"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: core/templates/core/timer_form.html:22
|
#: core/templates/core/timer_form.html:22
|
||||||
#: core/templates/core/timer_list.html:15 core/templates/core/timer_nav.html:23
|
#: core/templates/core/timer_list.html:15 core/templates/core/timer_nav.html:15
|
||||||
msgid "Start Timer"
|
msgid "Start Timer"
|
||||||
msgstr "Start stopera"
|
msgstr "Start stopera"
|
||||||
|
|
||||||
|
@ -1475,16 +1502,16 @@ msgstr "Brak wpisów stopera"
|
||||||
msgid "Delete Inactive Timers"
|
msgid "Delete Inactive Timers"
|
||||||
msgstr "Usuń niekatywne stopery"
|
msgstr "Usuń niekatywne stopery"
|
||||||
|
|
||||||
#: core/templates/core/timer_nav.html:28
|
#: core/templates/core/timer_nav.html:20
|
||||||
msgid "View Timers"
|
msgid "View Timers"
|
||||||
msgstr "Zobacz stopery"
|
msgstr "Zobacz stopery"
|
||||||
|
|
||||||
#: core/templates/core/timer_nav.html:32
|
#: core/templates/core/timer_nav.html:44
|
||||||
#: dashboard/templates/cards/timer_list.html:6
|
#: dashboard/templates/cards/timer_list.html:6
|
||||||
msgid "Active Timers"
|
msgid "Active Timers"
|
||||||
msgstr "Aktywne stopery"
|
msgstr "Aktywne stopery"
|
||||||
|
|
||||||
#: core/templates/core/timer_nav.html:38
|
#: core/templates/core/timer_nav.html:50
|
||||||
#: dashboard/templates/cards/diaperchange_last.html:17
|
#: dashboard/templates/cards/diaperchange_last.html:17
|
||||||
#: dashboard/templates/cards/diaperchange_types.html:12
|
#: dashboard/templates/cards/diaperchange_types.html:12
|
||||||
#: dashboard/templates/cards/feeding_day.html:20
|
#: dashboard/templates/cards/feeding_day.html:20
|
||||||
|
@ -1739,16 +1766,16 @@ msgstr "Odczytywanie %(model)s dodano!"
|
||||||
msgid "%(model)s reading for %(child)s updated."
|
msgid "%(model)s reading for %(child)s updated."
|
||||||
msgstr "Zaktualizowano odczytywanie %(model)s dla %(child)s"
|
msgstr "Zaktualizowano odczytywanie %(model)s dla %(child)s"
|
||||||
|
|
||||||
#: core/views.py:478
|
#: core/views.py:483
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(timer)s stopped."
|
msgid "%(timer)s stopped."
|
||||||
msgstr "Stop %(timer)s"
|
msgstr "Stop %(timer)s"
|
||||||
|
|
||||||
#: core/views.py:501
|
#: core/views.py:506
|
||||||
msgid "All inactive timers deleted."
|
msgid "All inactive timers deleted."
|
||||||
msgstr "Usunięto wszystkie nieaktywne stopery"
|
msgstr "Usunięto wszystkie nieaktywne stopery"
|
||||||
|
|
||||||
#: core/views.py:511
|
#: core/views.py:516
|
||||||
msgid "No inactive timers exist."
|
msgid "No inactive timers exist."
|
||||||
msgstr "Brak nieaktywnych stoperów"
|
msgstr "Brak nieaktywnych stoperów"
|
||||||
|
|
||||||
|
@ -2062,11 +2089,11 @@ msgstr "<b>Łączna ilość karmień</b>"
|
||||||
msgid "Pumping Amount"
|
msgid "Pumping Amount"
|
||||||
msgstr "Ilośc karmień"
|
msgstr "Ilośc karmień"
|
||||||
|
|
||||||
#: reports/graphs/sleep_pattern.py:148
|
#: reports/graphs/sleep_pattern.py:150
|
||||||
msgid "<b>Sleep Pattern</b>"
|
msgid "<b>Sleep Pattern</b>"
|
||||||
msgstr "<b>Wzorzec snu</b>"
|
msgstr "<b>Wzorzec snu</b>"
|
||||||
|
|
||||||
#: reports/graphs/sleep_pattern.py:165
|
#: reports/graphs/sleep_pattern.py:167
|
||||||
msgid "Time of day"
|
msgid "Time of day"
|
||||||
msgstr "Pora dnia"
|
msgstr "Pora dnia"
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Baby Buddy\n"
|
"Project-Id-Version: Baby Buddy\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-06-17 22:25+0000\n"
|
"POT-Creation-Date: 2022-07-30 21:13+0000\n"
|
||||||
"Language: es\n"
|
"Language: es\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
@ -11,12 +11,12 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: babybuddy/admin.py:12 babybuddy/admin.py:13
|
#: babybuddy/admin.py:12 babybuddy/admin.py:13
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:327
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:324
|
||||||
#: babybuddy/templates/babybuddy/user_settings_form.html:8
|
#: babybuddy/templates/babybuddy/user_settings_form.html:8
|
||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr "Preferências"
|
msgstr "Preferências"
|
||||||
|
|
||||||
#: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:92
|
#: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:89
|
||||||
#: babybuddy/templates/babybuddy/user_settings_form.html:61
|
#: babybuddy/templates/babybuddy/user_settings_form.html:61
|
||||||
#: dashboard/templates/dashboard/child.html:4
|
#: dashboard/templates/dashboard/child.html:4
|
||||||
#: dashboard/templates/dashboard/child.html:9
|
#: dashboard/templates/dashboard/child.html:9
|
||||||
|
@ -185,7 +185,7 @@ msgstr "Turco"
|
||||||
|
|
||||||
#: babybuddy/templates/admin/base_site.html:4
|
#: babybuddy/templates/admin/base_site.html:4
|
||||||
#: babybuddy/templates/admin/base_site.html:7
|
#: babybuddy/templates/admin/base_site.html:7
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:339
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:336
|
||||||
msgid "Database Admin"
|
msgid "Database Admin"
|
||||||
msgstr "Administrador da Base de Dados"
|
msgstr "Administrador da Base de Dados"
|
||||||
|
|
||||||
|
@ -222,30 +222,25 @@ msgid "<strong>Error:</strong> Some fields have errors. See below for details."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"<strong>Erro:</strong> Alguns campos têm erros. Veja abaixo, para detalhes"
|
"<strong>Erro:</strong> Alguns campos têm erros. Veja abaixo, para detalhes"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:32
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:48 core/models.py:248
|
||||||
#: core/templates/core/timer_nav.html:18
|
|
||||||
msgid "Quick Start Timer"
|
|
||||||
msgstr "Temporizador Rápido"
|
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:51 core/models.py:248
|
|
||||||
#: core/models.py:252
|
#: core/models.py:252
|
||||||
msgid "Diaper Change"
|
msgid "Diaper Change"
|
||||||
msgstr "Mudança de Fralda"
|
msgstr "Mudança de Fralda"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:57
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:54
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:262 core/models.py:312
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:259 core/models.py:312
|
||||||
#: core/models.py:316 core/templates/core/timer_detail.html:43
|
#: core/models.py:316 core/templates/core/timer_detail.html:43
|
||||||
msgid "Feeding"
|
msgid "Feeding"
|
||||||
msgstr "Alimentação"
|
msgstr "Alimentação"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:63
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:60
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:138 core/models.py:396
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:135 core/models.py:396
|
||||||
#: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29
|
#: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29
|
||||||
msgid "Note"
|
msgid "Note"
|
||||||
msgstr "Nota"
|
msgstr "Nota"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:69
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:66
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:283
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:280
|
||||||
#: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467
|
#: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467
|
||||||
#: core/models.py:468 core/models.py:471
|
#: core/models.py:468 core/models.py:471
|
||||||
#: core/templates/core/sleep_confirm_delete.html:7
|
#: core/templates/core/sleep_confirm_delete.html:7
|
||||||
|
@ -255,8 +250,8 @@ msgstr "Nota"
|
||||||
msgid "Sleep"
|
msgid "Sleep"
|
||||||
msgstr "Sono"
|
msgstr "Sono"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:75
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:72
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:296
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:293
|
||||||
#: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647
|
#: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647
|
||||||
#: core/models.py:648 core/models.py:651
|
#: core/models.py:648 core/models.py:651
|
||||||
#: core/templates/core/timer_detail.html:59
|
#: core/templates/core/timer_detail.html:59
|
||||||
|
@ -268,15 +263,15 @@ msgstr "Sono"
|
||||||
msgid "Tummy Time"
|
msgid "Tummy Time"
|
||||||
msgstr "Tempo de Barriga para Baixo"
|
msgstr "Tempo de Barriga para Baixo"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:99
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:96
|
||||||
#: core/templates/timeline/timeline.html:4
|
#: core/templates/timeline/timeline.html:4
|
||||||
#: core/templates/timeline/timeline.html:7
|
#: core/templates/timeline/timeline.html:7
|
||||||
#: dashboard/templates/dashboard/child_button_group.html:9
|
#: dashboard/templates/dashboard/child_button_group.html:9
|
||||||
msgid "Timeline"
|
msgid "Timeline"
|
||||||
msgstr "Linha temporal"
|
msgstr "Linha temporal"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:110
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:107
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:118 core/models.py:188
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:115 core/models.py:188
|
||||||
#: core/templates/core/child_confirm_delete.html:7
|
#: core/templates/core/child_confirm_delete.html:7
|
||||||
#: core/templates/core/child_detail.html:7
|
#: core/templates/core/child_detail.html:7
|
||||||
#: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4
|
#: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4
|
||||||
|
@ -286,7 +281,7 @@ msgstr "Linha temporal"
|
||||||
msgid "Children"
|
msgid "Children"
|
||||||
msgstr "Crianças"
|
msgstr "Crianças"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:124 core/models.py:137
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:121 core/models.py:137
|
||||||
#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335
|
#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335
|
||||||
#: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450
|
#: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450
|
||||||
#: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671
|
#: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671
|
||||||
|
@ -305,7 +300,7 @@ msgstr "Crianças"
|
||||||
msgid "Child"
|
msgid "Child"
|
||||||
msgstr "Criança"
|
msgstr "Criança"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:132 core/models.py:143
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:129 core/models.py:143
|
||||||
#: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373
|
#: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373
|
||||||
#: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511
|
#: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511
|
||||||
#: core/models.py:677 core/templates/core/note_confirm_delete.html:7
|
#: core/models.py:677 core/templates/core/note_confirm_delete.html:7
|
||||||
|
@ -314,11 +309,11 @@ msgstr "Criança"
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Notas"
|
msgstr "Notas"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:152
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:149
|
||||||
msgid "Measurements"
|
msgid "Measurements"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:160 core/models.py:139
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:157 core/models.py:139
|
||||||
#: core/models.py:151 core/models.py:152 core/models.py:155
|
#: core/models.py:151 core/models.py:152 core/models.py:155
|
||||||
#: core/templates/core/bmi_confirm_delete.html:7
|
#: 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_form.html:13 core/templates/core/bmi_list.html:4
|
||||||
|
@ -329,13 +324,13 @@ msgstr ""
|
||||||
msgid "BMI"
|
msgid "BMI"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:166
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:163
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Sleep entry"
|
#| msgid "Sleep entry"
|
||||||
msgid "BMI entry"
|
msgid "BMI entry"
|
||||||
msgstr "Novo sono"
|
msgstr "Novo sono"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:174 core/models.py:338
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:171 core/models.py:338
|
||||||
#: core/models.py:351 core/models.py:352 core/models.py:355
|
#: core/models.py:351 core/models.py:352 core/models.py:355
|
||||||
#: core/templates/core/head_circumference_confirm_delete.html:7
|
#: core/templates/core/head_circumference_confirm_delete.html:7
|
||||||
#: core/templates/core/head_circumference_form.html:13
|
#: core/templates/core/head_circumference_form.html:13
|
||||||
|
@ -351,11 +346,11 @@ msgstr "Novo sono"
|
||||||
msgid "Head Circumference"
|
msgid "Head Circumference"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:180
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:177
|
||||||
msgid "Head Circumference entry"
|
msgid "Head Circumference entry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:188 core/models.py:369
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:185 core/models.py:369
|
||||||
#: core/models.py:381 core/models.py:382 core/models.py:385
|
#: core/models.py:381 core/models.py:382 core/models.py:385
|
||||||
#: core/templates/core/height_confirm_delete.html:7
|
#: core/templates/core/height_confirm_delete.html:7
|
||||||
#: core/templates/core/height_form.html:13
|
#: core/templates/core/height_form.html:13
|
||||||
|
@ -372,13 +367,13 @@ msgstr ""
|
||||||
msgid "Height"
|
msgid "Height"
|
||||||
msgstr "Peso"
|
msgstr "Peso"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:194
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:191
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Weight entry"
|
#| msgid "Weight entry"
|
||||||
msgid "Height entry"
|
msgid "Height entry"
|
||||||
msgstr "Novo peso"
|
msgstr "Novo peso"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:202 core/models.py:506
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:199 core/models.py:506
|
||||||
#: core/models.py:519 core/models.py:520 core/models.py:523
|
#: core/models.py:519 core/models.py:520 core/models.py:523
|
||||||
#: core/templates/core/temperature_confirm_delete.html:7
|
#: core/templates/core/temperature_confirm_delete.html:7
|
||||||
#: core/templates/core/temperature_form.html:13
|
#: core/templates/core/temperature_form.html:13
|
||||||
|
@ -389,11 +384,11 @@ msgstr "Novo peso"
|
||||||
msgid "Temperature"
|
msgid "Temperature"
|
||||||
msgstr "Temperatura"
|
msgstr "Temperatura"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:208
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:205
|
||||||
msgid "Temperature reading"
|
msgid "Temperature reading"
|
||||||
msgstr "Leitura de temperatura"
|
msgstr "Leitura de temperatura"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:216 core/models.py:673
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:213 core/models.py:673
|
||||||
#: core/models.py:685 core/models.py:686 core/models.py:689
|
#: core/models.py:685 core/models.py:686 core/models.py:689
|
||||||
#: core/templates/core/weight_confirm_delete.html:7
|
#: core/templates/core/weight_confirm_delete.html:7
|
||||||
#: core/templates/core/weight_form.html:13
|
#: core/templates/core/weight_form.html:13
|
||||||
|
@ -408,24 +403,24 @@ msgstr "Leitura de temperatura"
|
||||||
msgid "Weight"
|
msgid "Weight"
|
||||||
msgstr "Peso"
|
msgstr "Peso"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:222
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:219
|
||||||
msgid "Weight entry"
|
msgid "Weight entry"
|
||||||
msgstr "Novo peso"
|
msgstr "Novo peso"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:236
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:233
|
||||||
msgid "Activities"
|
msgid "Activities"
|
||||||
msgstr "Actividades"
|
msgstr "Actividades"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:243
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:240
|
||||||
#: reports/graphs/diaperchange_lifetimes.py:27
|
#: reports/graphs/diaperchange_lifetimes.py:27
|
||||||
msgid "Changes"
|
msgid "Changes"
|
||||||
msgstr "Mudanças de fralda"
|
msgstr "Mudanças de fralda"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:249
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:246
|
||||||
msgid "Change"
|
msgid "Change"
|
||||||
msgstr "Mudança de fralda"
|
msgstr "Mudança de fralda"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:256
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:253
|
||||||
#: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313
|
#: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313
|
||||||
#: core/templates/core/feeding_confirm_delete.html:7
|
#: core/templates/core/feeding_confirm_delete.html:7
|
||||||
#: core/templates/core/feeding_form.html:13
|
#: core/templates/core/feeding_form.html:13
|
||||||
|
@ -435,7 +430,7 @@ msgstr "Mudança de fralda"
|
||||||
msgid "Feedings"
|
msgid "Feedings"
|
||||||
msgstr "Alimentações"
|
msgstr "Alimentações"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:270 core/models.py:437
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:267 core/models.py:437
|
||||||
#: core/models.py:438 core/models.py:441
|
#: core/models.py:438 core/models.py:441
|
||||||
#: core/templates/core/pumping_confirm_delete.html:7
|
#: core/templates/core/pumping_confirm_delete.html:7
|
||||||
#: core/templates/core/pumping_form.html:13
|
#: core/templates/core/pumping_form.html:13
|
||||||
|
@ -447,21 +442,21 @@ msgstr "Alimentações"
|
||||||
msgid "Pumping"
|
msgid "Pumping"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:276
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:273
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Weight entry"
|
#| msgid "Weight entry"
|
||||||
msgid "Pumping entry"
|
msgid "Pumping entry"
|
||||||
msgstr "Novo peso"
|
msgstr "Novo peso"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:289
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:286
|
||||||
msgid "Sleep entry"
|
msgid "Sleep entry"
|
||||||
msgstr "Novo sono"
|
msgstr "Novo sono"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:302
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:299
|
||||||
msgid "Tummy Time entry"
|
msgid "Tummy Time entry"
|
||||||
msgstr "Entrada de Tempo de Barriga para Baixo"
|
msgstr "Entrada de Tempo de Barriga para Baixo"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:326
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:323
|
||||||
#: babybuddy/templates/babybuddy/user_list.html:17
|
#: babybuddy/templates/babybuddy/user_list.html:17
|
||||||
#: babybuddy/templates/babybuddy/user_password_form.html:7
|
#: babybuddy/templates/babybuddy/user_password_form.html:7
|
||||||
#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556
|
#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556
|
||||||
|
@ -469,23 +464,23 @@ msgstr "Entrada de Tempo de Barriga para Baixo"
|
||||||
msgid "User"
|
msgid "User"
|
||||||
msgstr "Utilizador"
|
msgstr "Utilizador"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:328
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:325
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr "Password"
|
msgstr "Password"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:332
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:329
|
||||||
msgid "Logout"
|
msgid "Logout"
|
||||||
msgstr "Logout"
|
msgstr "Logout"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:335
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:332
|
||||||
msgid "Site"
|
msgid "Site"
|
||||||
msgstr "Site"
|
msgstr "Site"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:336
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:333
|
||||||
msgid "API Browser"
|
msgid "API Browser"
|
||||||
msgstr "Navegador de API"
|
msgstr "Navegador de API"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:338
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:335
|
||||||
#: babybuddy/templates/babybuddy/user_confirm_delete.html:7
|
#: babybuddy/templates/babybuddy/user_confirm_delete.html:7
|
||||||
#: babybuddy/templates/babybuddy/user_form.html:13
|
#: babybuddy/templates/babybuddy/user_form.html:13
|
||||||
#: babybuddy/templates/babybuddy/user_list.html:4
|
#: babybuddy/templates/babybuddy/user_list.html:4
|
||||||
|
@ -493,15 +488,15 @@ msgstr "Navegador de API"
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr "Utilizadores"
|
msgstr "Utilizadores"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:341
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:338
|
||||||
msgid "Support"
|
msgid "Support"
|
||||||
msgstr "Suporte"
|
msgstr "Suporte"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:343
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:340
|
||||||
msgid "Source Code"
|
msgid "Source Code"
|
||||||
msgstr "Código Fonte"
|
msgstr "Código Fonte"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:345
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:342
|
||||||
msgid "Chat / Support"
|
msgid "Chat / Support"
|
||||||
msgstr "Chat / Suporte"
|
msgstr "Chat / Suporte"
|
||||||
|
|
||||||
|
@ -672,7 +667,7 @@ msgstr "Activo"
|
||||||
#: babybuddy/templates/babybuddy/user_list.html:23
|
#: babybuddy/templates/babybuddy/user_list.html:23
|
||||||
#: core/templates/core/bmi_list.html:24 core/templates/core/bmi_list.html:38
|
#: core/templates/core/bmi_list.html:24 core/templates/core/bmi_list.html:38
|
||||||
#: core/templates/core/child_list.html:28
|
#: core/templates/core/child_list.html:28
|
||||||
#: core/templates/core/child_list.html:48
|
#: core/templates/core/child_list.html:43
|
||||||
#: core/templates/core/diaperchange_list.html:24
|
#: core/templates/core/diaperchange_list.html:24
|
||||||
#: core/templates/core/diaperchange_list.html:40
|
#: core/templates/core/diaperchange_list.html:40
|
||||||
#: core/templates/core/feeding_list.html:24
|
#: core/templates/core/feeding_list.html:24
|
||||||
|
@ -880,6 +875,25 @@ msgstr ""
|
||||||
"Se não receber um e-mail, por favor verifique o endereço com o qual se "
|
"Se não receber um e-mail, por favor verifique o endereço com o qual se "
|
||||||
"registou e a sua caixa de spam."
|
"registou e a sua caixa de spam."
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:2
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"You're receiving this email because you requested a password reset for your "
|
||||||
|
"user account at %(site_name)s."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:4
|
||||||
|
msgid "Please go to the following page and choose a new password:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:8
|
||||||
|
msgid "Your username, in case you’ve forgotten:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:10
|
||||||
|
msgid "Thanks for using Baby Buddy!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/registration/password_reset_form.html:4
|
#: babybuddy/templates/registration/password_reset_form.html:4
|
||||||
msgid "Forgot Password"
|
msgid "Forgot Password"
|
||||||
msgstr "Password Esquecida"
|
msgstr "Password Esquecida"
|
||||||
|
@ -995,7 +1009,7 @@ msgstr ""
|
||||||
#: reports/graphs/feeding_duration.py:56
|
#: reports/graphs/feeding_duration.py:56
|
||||||
#: reports/graphs/head_circumference_change.py:28
|
#: reports/graphs/head_circumference_change.py:28
|
||||||
#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60
|
#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60
|
||||||
#: reports/graphs/sleep_pattern.py:151 reports/graphs/sleep_totals.py:59
|
#: reports/graphs/sleep_pattern.py:153 reports/graphs/sleep_totals.py:59
|
||||||
#: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28
|
#: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28
|
||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "Data"
|
msgstr "Data"
|
||||||
|
@ -1203,7 +1217,7 @@ msgstr "Adicionar Criança"
|
||||||
msgid "Birth Date"
|
msgid "Birth Date"
|
||||||
msgstr "Data de Nascimento"
|
msgstr "Data de Nascimento"
|
||||||
|
|
||||||
#: core/templates/core/child_list.html:67
|
#: core/templates/core/child_list.html:62
|
||||||
msgid "No children found."
|
msgid "No children found."
|
||||||
msgstr "Nenhuma criança encontrada."
|
msgstr "Nenhuma criança encontrada."
|
||||||
|
|
||||||
|
@ -1361,6 +1375,19 @@ msgstr "Adicionar uma entrada de Peso"
|
||||||
msgid "No pumping entries found."
|
msgid "No pumping entries found."
|
||||||
msgstr "Não foram encontradas entradas de temporizador."
|
msgstr "Não foram encontradas entradas de temporizador."
|
||||||
|
|
||||||
|
#: core/templates/core/quick_timer_nav.html:9
|
||||||
|
#: core/templates/core/quick_timer_nav.html:29
|
||||||
|
#: core/templates/core/timer_nav.html:37
|
||||||
|
msgid "Quick Start Timer"
|
||||||
|
msgstr "Temporizador Rápido"
|
||||||
|
|
||||||
|
#: core/templates/core/quick_timer_nav.html:19
|
||||||
|
#: core/templates/core/timer_nav.html:28
|
||||||
|
#, fuzzy
|
||||||
|
#| msgid "Quick Start Timer"
|
||||||
|
msgid "Quick Start Timer For…"
|
||||||
|
msgstr "Temporizador Rápido"
|
||||||
|
|
||||||
#: core/templates/core/sleep_confirm_delete.html:4
|
#: core/templates/core/sleep_confirm_delete.html:4
|
||||||
msgid "Delete a Sleep Entry"
|
msgid "Delete a Sleep Entry"
|
||||||
msgstr "Apagar uma entrada de Sono"
|
msgstr "Apagar uma entrada de Sono"
|
||||||
|
@ -1438,11 +1465,11 @@ msgstr "Apagar inactivo"
|
||||||
msgid "Are you sure you want to delete %(number)s inactive timer?"
|
msgid "Are you sure you want to delete %(number)s inactive timer?"
|
||||||
msgid_plural "Are you sure you want to delete %(number)s inactive timers?"
|
msgid_plural "Are you sure you want to delete %(number)s inactive timers?"
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
"Tem a certeza que deseja eliminar %(number)s temporizadore%(plural)s "
|
"Tem a certeza que deseja eliminar %(number)s temporizadore%(plural)s inactivo"
|
||||||
"inactivo%(plural)s?"
|
"%(plural)s?"
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
"Tem a certeza que deseja eliminar %(number)s temporizadore%(plural)s "
|
"Tem a certeza que deseja eliminar %(number)s temporizadore%(plural)s inactivo"
|
||||||
"inactivo%(plural)s?"
|
"%(plural)s?"
|
||||||
|
|
||||||
#: core/templates/core/timer_detail.html:28
|
#: core/templates/core/timer_detail.html:28
|
||||||
msgid "Started"
|
msgid "Started"
|
||||||
|
@ -1470,7 +1497,7 @@ msgid "Delete timer"
|
||||||
msgstr "Apagar temporizador"
|
msgstr "Apagar temporizador"
|
||||||
|
|
||||||
#: core/templates/core/timer_form.html:22
|
#: core/templates/core/timer_form.html:22
|
||||||
#: core/templates/core/timer_list.html:15 core/templates/core/timer_nav.html:23
|
#: core/templates/core/timer_list.html:15 core/templates/core/timer_nav.html:15
|
||||||
msgid "Start Timer"
|
msgid "Start Timer"
|
||||||
msgstr "Iniciar Temporizador"
|
msgstr "Iniciar Temporizador"
|
||||||
|
|
||||||
|
@ -1482,16 +1509,16 @@ msgstr "Não foram encontradas entradas de temporizador."
|
||||||
msgid "Delete Inactive Timers"
|
msgid "Delete Inactive Timers"
|
||||||
msgstr "Apagar Temporizadores Inactivos"
|
msgstr "Apagar Temporizadores Inactivos"
|
||||||
|
|
||||||
#: core/templates/core/timer_nav.html:28
|
#: core/templates/core/timer_nav.html:20
|
||||||
msgid "View Timers"
|
msgid "View Timers"
|
||||||
msgstr "Ver Temporizadores"
|
msgstr "Ver Temporizadores"
|
||||||
|
|
||||||
#: core/templates/core/timer_nav.html:32
|
#: core/templates/core/timer_nav.html:44
|
||||||
#: dashboard/templates/cards/timer_list.html:6
|
#: dashboard/templates/cards/timer_list.html:6
|
||||||
msgid "Active Timers"
|
msgid "Active Timers"
|
||||||
msgstr "Temporizadores Activos"
|
msgstr "Temporizadores Activos"
|
||||||
|
|
||||||
#: core/templates/core/timer_nav.html:38
|
#: core/templates/core/timer_nav.html:50
|
||||||
#: dashboard/templates/cards/diaperchange_last.html:17
|
#: dashboard/templates/cards/diaperchange_last.html:17
|
||||||
#: dashboard/templates/cards/diaperchange_types.html:12
|
#: dashboard/templates/cards/diaperchange_types.html:12
|
||||||
#: dashboard/templates/cards/feeding_day.html:20
|
#: dashboard/templates/cards/feeding_day.html:20
|
||||||
|
@ -1740,16 +1767,16 @@ msgstr "%(model)s leitura adicionada!"
|
||||||
msgid "%(model)s reading for %(child)s updated."
|
msgid "%(model)s reading for %(child)s updated."
|
||||||
msgstr "%(model)s leitura para %(child)s actualizada."
|
msgstr "%(model)s leitura para %(child)s actualizada."
|
||||||
|
|
||||||
#: core/views.py:478
|
#: core/views.py:483
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(timer)s stopped."
|
msgid "%(timer)s stopped."
|
||||||
msgstr "%(timer)s parado."
|
msgstr "%(timer)s parado."
|
||||||
|
|
||||||
#: core/views.py:501
|
#: core/views.py:506
|
||||||
msgid "All inactive timers deleted."
|
msgid "All inactive timers deleted."
|
||||||
msgstr "Todos os temporizadores inactivos foram apagados."
|
msgstr "Todos os temporizadores inactivos foram apagados."
|
||||||
|
|
||||||
#: core/views.py:511
|
#: core/views.py:516
|
||||||
msgid "No inactive timers exist."
|
msgid "No inactive timers exist."
|
||||||
msgstr "Não foram encontrados temporizadores activos."
|
msgstr "Não foram encontrados temporizadores activos."
|
||||||
|
|
||||||
|
@ -2058,11 +2085,11 @@ msgstr "<b>Total de Alimentações</b>"
|
||||||
msgid "Pumping Amount"
|
msgid "Pumping Amount"
|
||||||
msgstr "Quantidades de Alimentações"
|
msgstr "Quantidades de Alimentações"
|
||||||
|
|
||||||
#: reports/graphs/sleep_pattern.py:148
|
#: reports/graphs/sleep_pattern.py:150
|
||||||
msgid "<b>Sleep Pattern</b>"
|
msgid "<b>Sleep Pattern</b>"
|
||||||
msgstr "<b>Padrões de Sono</b>"
|
msgstr "<b>Padrões de Sono</b>"
|
||||||
|
|
||||||
#: reports/graphs/sleep_pattern.py:165
|
#: reports/graphs/sleep_pattern.py:167
|
||||||
msgid "Time of day"
|
msgid "Time of day"
|
||||||
msgstr "Hora"
|
msgstr "Hora"
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Baby Buddy\n"
|
"Project-Id-Version: Baby Buddy\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-06-17 22:25+0000\n"
|
"POT-Creation-Date: 2022-07-30 21:13+0000\n"
|
||||||
"Language: sv\n"
|
"Language: sv\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
@ -11,12 +11,12 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: babybuddy/admin.py:12 babybuddy/admin.py:13
|
#: babybuddy/admin.py:12 babybuddy/admin.py:13
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:327
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:324
|
||||||
#: babybuddy/templates/babybuddy/user_settings_form.html:8
|
#: babybuddy/templates/babybuddy/user_settings_form.html:8
|
||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr "Inställningar"
|
msgstr "Inställningar"
|
||||||
|
|
||||||
#: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:92
|
#: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:89
|
||||||
#: babybuddy/templates/babybuddy/user_settings_form.html:61
|
#: babybuddy/templates/babybuddy/user_settings_form.html:61
|
||||||
#: dashboard/templates/dashboard/child.html:4
|
#: dashboard/templates/dashboard/child.html:4
|
||||||
#: dashboard/templates/dashboard/child.html:9
|
#: dashboard/templates/dashboard/child.html:9
|
||||||
|
@ -183,7 +183,7 @@ msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/admin/base_site.html:4
|
#: babybuddy/templates/admin/base_site.html:4
|
||||||
#: babybuddy/templates/admin/base_site.html:7
|
#: babybuddy/templates/admin/base_site.html:7
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:339
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:336
|
||||||
msgid "Database Admin"
|
msgid "Database Admin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -221,30 +221,25 @@ msgstr ""
|
||||||
"<strong>Fel:</strong> Vissa fält innehåller felaktigheter. Se nedan för "
|
"<strong>Fel:</strong> Vissa fält innehåller felaktigheter. Se nedan för "
|
||||||
"detaljer."
|
"detaljer."
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:32
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:48 core/models.py:248
|
||||||
#: core/templates/core/timer_nav.html:18
|
|
||||||
msgid "Quick Start Timer"
|
|
||||||
msgstr "Snabbstarta timer"
|
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:51 core/models.py:248
|
|
||||||
#: core/models.py:252
|
#: core/models.py:252
|
||||||
msgid "Diaper Change"
|
msgid "Diaper Change"
|
||||||
msgstr "Blöjbyte"
|
msgstr "Blöjbyte"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:57
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:54
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:262 core/models.py:312
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:259 core/models.py:312
|
||||||
#: core/models.py:316 core/templates/core/timer_detail.html:43
|
#: core/models.py:316 core/templates/core/timer_detail.html:43
|
||||||
msgid "Feeding"
|
msgid "Feeding"
|
||||||
msgstr "Matning"
|
msgstr "Matning"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:63
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:60
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:138 core/models.py:396
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:135 core/models.py:396
|
||||||
#: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29
|
#: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29
|
||||||
msgid "Note"
|
msgid "Note"
|
||||||
msgstr "Anteckning"
|
msgstr "Anteckning"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:69
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:66
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:283
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:280
|
||||||
#: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467
|
#: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467
|
||||||
#: core/models.py:468 core/models.py:471
|
#: core/models.py:468 core/models.py:471
|
||||||
#: core/templates/core/sleep_confirm_delete.html:7
|
#: core/templates/core/sleep_confirm_delete.html:7
|
||||||
|
@ -254,8 +249,8 @@ msgstr "Anteckning"
|
||||||
msgid "Sleep"
|
msgid "Sleep"
|
||||||
msgstr "Sömn"
|
msgstr "Sömn"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:75
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:72
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:296
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:293
|
||||||
#: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647
|
#: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647
|
||||||
#: core/models.py:648 core/models.py:651
|
#: core/models.py:648 core/models.py:651
|
||||||
#: core/templates/core/timer_detail.html:59
|
#: core/templates/core/timer_detail.html:59
|
||||||
|
@ -267,15 +262,15 @@ msgstr "Sömn"
|
||||||
msgid "Tummy Time"
|
msgid "Tummy Time"
|
||||||
msgstr "Magläge"
|
msgstr "Magläge"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:99
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:96
|
||||||
#: core/templates/timeline/timeline.html:4
|
#: core/templates/timeline/timeline.html:4
|
||||||
#: core/templates/timeline/timeline.html:7
|
#: core/templates/timeline/timeline.html:7
|
||||||
#: dashboard/templates/dashboard/child_button_group.html:9
|
#: dashboard/templates/dashboard/child_button_group.html:9
|
||||||
msgid "Timeline"
|
msgid "Timeline"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:110
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:107
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:118 core/models.py:188
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:115 core/models.py:188
|
||||||
#: core/templates/core/child_confirm_delete.html:7
|
#: core/templates/core/child_confirm_delete.html:7
|
||||||
#: core/templates/core/child_detail.html:7
|
#: core/templates/core/child_detail.html:7
|
||||||
#: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4
|
#: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4
|
||||||
|
@ -285,7 +280,7 @@ msgstr ""
|
||||||
msgid "Children"
|
msgid "Children"
|
||||||
msgstr "Barn"
|
msgstr "Barn"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:124 core/models.py:137
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:121 core/models.py:137
|
||||||
#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335
|
#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335
|
||||||
#: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450
|
#: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450
|
||||||
#: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671
|
#: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671
|
||||||
|
@ -304,7 +299,7 @@ msgstr "Barn"
|
||||||
msgid "Child"
|
msgid "Child"
|
||||||
msgstr "Barnet"
|
msgstr "Barnet"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:132 core/models.py:143
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:129 core/models.py:143
|
||||||
#: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373
|
#: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373
|
||||||
#: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511
|
#: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511
|
||||||
#: core/models.py:677 core/templates/core/note_confirm_delete.html:7
|
#: core/models.py:677 core/templates/core/note_confirm_delete.html:7
|
||||||
|
@ -313,11 +308,11 @@ msgstr "Barnet"
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Anteckningar"
|
msgstr "Anteckningar"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:152
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:149
|
||||||
msgid "Measurements"
|
msgid "Measurements"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:160 core/models.py:139
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:157 core/models.py:139
|
||||||
#: core/models.py:151 core/models.py:152 core/models.py:155
|
#: core/models.py:151 core/models.py:152 core/models.py:155
|
||||||
#: core/templates/core/bmi_confirm_delete.html:7
|
#: 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_form.html:13 core/templates/core/bmi_list.html:4
|
||||||
|
@ -328,13 +323,13 @@ msgstr ""
|
||||||
msgid "BMI"
|
msgid "BMI"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:166
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:163
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Sleep entry"
|
#| msgid "Sleep entry"
|
||||||
msgid "BMI entry"
|
msgid "BMI entry"
|
||||||
msgstr "Sömninlägg"
|
msgstr "Sömninlägg"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:174 core/models.py:338
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:171 core/models.py:338
|
||||||
#: core/models.py:351 core/models.py:352 core/models.py:355
|
#: core/models.py:351 core/models.py:352 core/models.py:355
|
||||||
#: core/templates/core/head_circumference_confirm_delete.html:7
|
#: core/templates/core/head_circumference_confirm_delete.html:7
|
||||||
#: core/templates/core/head_circumference_form.html:13
|
#: core/templates/core/head_circumference_form.html:13
|
||||||
|
@ -350,11 +345,11 @@ msgstr "Sömninlägg"
|
||||||
msgid "Head Circumference"
|
msgid "Head Circumference"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:180
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:177
|
||||||
msgid "Head Circumference entry"
|
msgid "Head Circumference entry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:188 core/models.py:369
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:185 core/models.py:369
|
||||||
#: core/models.py:381 core/models.py:382 core/models.py:385
|
#: core/models.py:381 core/models.py:382 core/models.py:385
|
||||||
#: core/templates/core/height_confirm_delete.html:7
|
#: core/templates/core/height_confirm_delete.html:7
|
||||||
#: core/templates/core/height_form.html:13
|
#: core/templates/core/height_form.html:13
|
||||||
|
@ -371,13 +366,13 @@ msgstr ""
|
||||||
msgid "Height"
|
msgid "Height"
|
||||||
msgstr "Vikt"
|
msgstr "Vikt"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:194
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:191
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Weight entry"
|
#| msgid "Weight entry"
|
||||||
msgid "Height entry"
|
msgid "Height entry"
|
||||||
msgstr "Viktinlägg"
|
msgstr "Viktinlägg"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:202 core/models.py:506
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:199 core/models.py:506
|
||||||
#: core/models.py:519 core/models.py:520 core/models.py:523
|
#: core/models.py:519 core/models.py:520 core/models.py:523
|
||||||
#: core/templates/core/temperature_confirm_delete.html:7
|
#: core/templates/core/temperature_confirm_delete.html:7
|
||||||
#: core/templates/core/temperature_form.html:13
|
#: core/templates/core/temperature_form.html:13
|
||||||
|
@ -388,11 +383,11 @@ msgstr "Viktinlägg"
|
||||||
msgid "Temperature"
|
msgid "Temperature"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:208
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:205
|
||||||
msgid "Temperature reading"
|
msgid "Temperature reading"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:216 core/models.py:673
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:213 core/models.py:673
|
||||||
#: core/models.py:685 core/models.py:686 core/models.py:689
|
#: core/models.py:685 core/models.py:686 core/models.py:689
|
||||||
#: core/templates/core/weight_confirm_delete.html:7
|
#: core/templates/core/weight_confirm_delete.html:7
|
||||||
#: core/templates/core/weight_form.html:13
|
#: core/templates/core/weight_form.html:13
|
||||||
|
@ -407,24 +402,24 @@ msgstr ""
|
||||||
msgid "Weight"
|
msgid "Weight"
|
||||||
msgstr "Vikt"
|
msgstr "Vikt"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:222
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:219
|
||||||
msgid "Weight entry"
|
msgid "Weight entry"
|
||||||
msgstr "Viktinlägg"
|
msgstr "Viktinlägg"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:236
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:233
|
||||||
msgid "Activities"
|
msgid "Activities"
|
||||||
msgstr "Aktiviteter"
|
msgstr "Aktiviteter"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:243
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:240
|
||||||
#: reports/graphs/diaperchange_lifetimes.py:27
|
#: reports/graphs/diaperchange_lifetimes.py:27
|
||||||
msgid "Changes"
|
msgid "Changes"
|
||||||
msgstr "Ändringar"
|
msgstr "Ändringar"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:249
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:246
|
||||||
msgid "Change"
|
msgid "Change"
|
||||||
msgstr "Ändring"
|
msgstr "Ändring"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:256
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:253
|
||||||
#: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313
|
#: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313
|
||||||
#: core/templates/core/feeding_confirm_delete.html:7
|
#: core/templates/core/feeding_confirm_delete.html:7
|
||||||
#: core/templates/core/feeding_form.html:13
|
#: core/templates/core/feeding_form.html:13
|
||||||
|
@ -434,7 +429,7 @@ msgstr "Ändring"
|
||||||
msgid "Feedings"
|
msgid "Feedings"
|
||||||
msgstr "Matningar"
|
msgstr "Matningar"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:270 core/models.py:437
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:267 core/models.py:437
|
||||||
#: core/models.py:438 core/models.py:441
|
#: core/models.py:438 core/models.py:441
|
||||||
#: core/templates/core/pumping_confirm_delete.html:7
|
#: core/templates/core/pumping_confirm_delete.html:7
|
||||||
#: core/templates/core/pumping_form.html:13
|
#: core/templates/core/pumping_form.html:13
|
||||||
|
@ -446,21 +441,21 @@ msgstr "Matningar"
|
||||||
msgid "Pumping"
|
msgid "Pumping"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:276
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:273
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Weight entry"
|
#| msgid "Weight entry"
|
||||||
msgid "Pumping entry"
|
msgid "Pumping entry"
|
||||||
msgstr "Viktinlägg"
|
msgstr "Viktinlägg"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:289
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:286
|
||||||
msgid "Sleep entry"
|
msgid "Sleep entry"
|
||||||
msgstr "Sömninlägg"
|
msgstr "Sömninlägg"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:302
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:299
|
||||||
msgid "Tummy Time entry"
|
msgid "Tummy Time entry"
|
||||||
msgstr "Magläge-inlägg"
|
msgstr "Magläge-inlägg"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:326
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:323
|
||||||
#: babybuddy/templates/babybuddy/user_list.html:17
|
#: babybuddy/templates/babybuddy/user_list.html:17
|
||||||
#: babybuddy/templates/babybuddy/user_password_form.html:7
|
#: babybuddy/templates/babybuddy/user_password_form.html:7
|
||||||
#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556
|
#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556
|
||||||
|
@ -468,23 +463,23 @@ msgstr "Magläge-inlägg"
|
||||||
msgid "User"
|
msgid "User"
|
||||||
msgstr "Användare"
|
msgstr "Användare"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:328
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:325
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr "Lösenord"
|
msgstr "Lösenord"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:332
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:329
|
||||||
msgid "Logout"
|
msgid "Logout"
|
||||||
msgstr "Logga ut"
|
msgstr "Logga ut"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:335
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:332
|
||||||
msgid "Site"
|
msgid "Site"
|
||||||
msgstr "Sidan"
|
msgstr "Sidan"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:336
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:333
|
||||||
msgid "API Browser"
|
msgid "API Browser"
|
||||||
msgstr "API-bläddrare"
|
msgstr "API-bläddrare"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:338
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:335
|
||||||
#: babybuddy/templates/babybuddy/user_confirm_delete.html:7
|
#: babybuddy/templates/babybuddy/user_confirm_delete.html:7
|
||||||
#: babybuddy/templates/babybuddy/user_form.html:13
|
#: babybuddy/templates/babybuddy/user_form.html:13
|
||||||
#: babybuddy/templates/babybuddy/user_list.html:4
|
#: babybuddy/templates/babybuddy/user_list.html:4
|
||||||
|
@ -492,15 +487,15 @@ msgstr "API-bläddrare"
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr "Användare"
|
msgstr "Användare"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:341
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:338
|
||||||
msgid "Support"
|
msgid "Support"
|
||||||
msgstr "Support"
|
msgstr "Support"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:343
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:340
|
||||||
msgid "Source Code"
|
msgid "Source Code"
|
||||||
msgstr "Källkod"
|
msgstr "Källkod"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:345
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:342
|
||||||
msgid "Chat / Support"
|
msgid "Chat / Support"
|
||||||
msgstr "Chatt / Support"
|
msgstr "Chatt / Support"
|
||||||
|
|
||||||
|
@ -671,7 +666,7 @@ msgstr "Aktiv"
|
||||||
#: babybuddy/templates/babybuddy/user_list.html:23
|
#: babybuddy/templates/babybuddy/user_list.html:23
|
||||||
#: core/templates/core/bmi_list.html:24 core/templates/core/bmi_list.html:38
|
#: core/templates/core/bmi_list.html:24 core/templates/core/bmi_list.html:38
|
||||||
#: core/templates/core/child_list.html:28
|
#: core/templates/core/child_list.html:28
|
||||||
#: core/templates/core/child_list.html:48
|
#: core/templates/core/child_list.html:43
|
||||||
#: core/templates/core/diaperchange_list.html:24
|
#: core/templates/core/diaperchange_list.html:24
|
||||||
#: core/templates/core/diaperchange_list.html:40
|
#: core/templates/core/diaperchange_list.html:40
|
||||||
#: core/templates/core/feeding_list.html:24
|
#: core/templates/core/feeding_list.html:24
|
||||||
|
@ -878,6 +873,25 @@ msgstr ""
|
||||||
" Om du inte får ett e-postmeddelande, se till att du har anget adressen du "
|
" Om du inte får ett e-postmeddelande, se till att du har anget adressen du "
|
||||||
"registrerade med och kontrollera din skräppost mapp."
|
"registrerade med och kontrollera din skräppost mapp."
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:2
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"You're receiving this email because you requested a password reset for your "
|
||||||
|
"user account at %(site_name)s."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:4
|
||||||
|
msgid "Please go to the following page and choose a new password:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:8
|
||||||
|
msgid "Your username, in case you’ve forgotten:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:10
|
||||||
|
msgid "Thanks for using Baby Buddy!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/registration/password_reset_form.html:4
|
#: babybuddy/templates/registration/password_reset_form.html:4
|
||||||
msgid "Forgot Password"
|
msgid "Forgot Password"
|
||||||
msgstr "Glömt lösenord"
|
msgstr "Glömt lösenord"
|
||||||
|
@ -993,7 +1007,7 @@ msgstr ""
|
||||||
#: reports/graphs/feeding_duration.py:56
|
#: reports/graphs/feeding_duration.py:56
|
||||||
#: reports/graphs/head_circumference_change.py:28
|
#: reports/graphs/head_circumference_change.py:28
|
||||||
#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60
|
#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60
|
||||||
#: reports/graphs/sleep_pattern.py:151 reports/graphs/sleep_totals.py:59
|
#: reports/graphs/sleep_pattern.py:153 reports/graphs/sleep_totals.py:59
|
||||||
#: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28
|
#: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28
|
||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "Datum"
|
msgstr "Datum"
|
||||||
|
@ -1202,7 +1216,7 @@ msgstr ""
|
||||||
msgid "Birth Date"
|
msgid "Birth Date"
|
||||||
msgstr "Födelsedatum"
|
msgstr "Födelsedatum"
|
||||||
|
|
||||||
#: core/templates/core/child_list.html:67
|
#: core/templates/core/child_list.html:62
|
||||||
msgid "No children found."
|
msgid "No children found."
|
||||||
msgstr "Inga barn funna."
|
msgstr "Inga barn funna."
|
||||||
|
|
||||||
|
@ -1360,6 +1374,19 @@ msgstr "Lägg till viktinlägg"
|
||||||
msgid "No pumping entries found."
|
msgid "No pumping entries found."
|
||||||
msgstr "Inga timer-inlägg funna."
|
msgstr "Inga timer-inlägg funna."
|
||||||
|
|
||||||
|
#: core/templates/core/quick_timer_nav.html:9
|
||||||
|
#: core/templates/core/quick_timer_nav.html:29
|
||||||
|
#: core/templates/core/timer_nav.html:37
|
||||||
|
msgid "Quick Start Timer"
|
||||||
|
msgstr "Snabbstarta timer"
|
||||||
|
|
||||||
|
#: core/templates/core/quick_timer_nav.html:19
|
||||||
|
#: core/templates/core/timer_nav.html:28
|
||||||
|
#, fuzzy
|
||||||
|
#| msgid "Quick Start Timer"
|
||||||
|
msgid "Quick Start Timer For…"
|
||||||
|
msgstr "Snabbstarta timer"
|
||||||
|
|
||||||
#: core/templates/core/sleep_confirm_delete.html:4
|
#: core/templates/core/sleep_confirm_delete.html:4
|
||||||
msgid "Delete a Sleep Entry"
|
msgid "Delete a Sleep Entry"
|
||||||
msgstr "Radera sömn-inlägg"
|
msgstr "Radera sömn-inlägg"
|
||||||
|
@ -1464,7 +1491,7 @@ msgid "Delete timer"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: core/templates/core/timer_form.html:22
|
#: core/templates/core/timer_form.html:22
|
||||||
#: core/templates/core/timer_list.html:15 core/templates/core/timer_nav.html:23
|
#: core/templates/core/timer_list.html:15 core/templates/core/timer_nav.html:15
|
||||||
msgid "Start Timer"
|
msgid "Start Timer"
|
||||||
msgstr "Starta timer"
|
msgstr "Starta timer"
|
||||||
|
|
||||||
|
@ -1476,16 +1503,16 @@ msgstr "Inga timer-inlägg funna."
|
||||||
msgid "Delete Inactive Timers"
|
msgid "Delete Inactive Timers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: core/templates/core/timer_nav.html:28
|
#: core/templates/core/timer_nav.html:20
|
||||||
msgid "View Timers"
|
msgid "View Timers"
|
||||||
msgstr "Visa timers"
|
msgstr "Visa timers"
|
||||||
|
|
||||||
#: core/templates/core/timer_nav.html:32
|
#: core/templates/core/timer_nav.html:44
|
||||||
#: dashboard/templates/cards/timer_list.html:6
|
#: dashboard/templates/cards/timer_list.html:6
|
||||||
msgid "Active Timers"
|
msgid "Active Timers"
|
||||||
msgstr "Aktiva timers"
|
msgstr "Aktiva timers"
|
||||||
|
|
||||||
#: core/templates/core/timer_nav.html:38
|
#: core/templates/core/timer_nav.html:50
|
||||||
#: dashboard/templates/cards/diaperchange_last.html:17
|
#: dashboard/templates/cards/diaperchange_last.html:17
|
||||||
#: dashboard/templates/cards/diaperchange_types.html:12
|
#: dashboard/templates/cards/diaperchange_types.html:12
|
||||||
#: dashboard/templates/cards/feeding_day.html:20
|
#: dashboard/templates/cards/feeding_day.html:20
|
||||||
|
@ -1734,16 +1761,16 @@ msgstr "%(model)s inlägg tillagd!"
|
||||||
msgid "%(model)s reading for %(child)s updated."
|
msgid "%(model)s reading for %(child)s updated."
|
||||||
msgstr "%(model)s inlägg för %(child)s uppdaterad."
|
msgstr "%(model)s inlägg för %(child)s uppdaterad."
|
||||||
|
|
||||||
#: core/views.py:478
|
#: core/views.py:483
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(timer)s stopped."
|
msgid "%(timer)s stopped."
|
||||||
msgstr "%(timer)s stoppad."
|
msgstr "%(timer)s stoppad."
|
||||||
|
|
||||||
#: core/views.py:501
|
#: core/views.py:506
|
||||||
msgid "All inactive timers deleted."
|
msgid "All inactive timers deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: core/views.py:511
|
#: core/views.py:516
|
||||||
msgid "No inactive timers exist."
|
msgid "No inactive timers exist."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -2050,11 +2077,11 @@ msgstr "<b>Genomsnittlig matningsvaraktighet</b>"
|
||||||
msgid "Pumping Amount"
|
msgid "Pumping Amount"
|
||||||
msgstr "Matningar"
|
msgstr "Matningar"
|
||||||
|
|
||||||
#: reports/graphs/sleep_pattern.py:148
|
#: reports/graphs/sleep_pattern.py:150
|
||||||
msgid "<b>Sleep Pattern</b>"
|
msgid "<b>Sleep Pattern</b>"
|
||||||
msgstr "<b>Sömnmönster</b>"
|
msgstr "<b>Sömnmönster</b>"
|
||||||
|
|
||||||
#: reports/graphs/sleep_pattern.py:165
|
#: reports/graphs/sleep_pattern.py:167
|
||||||
msgid "Time of day"
|
msgid "Time of day"
|
||||||
msgstr "Tidpunkt på dygnet"
|
msgstr "Tidpunkt på dygnet"
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Baby Buddy\n"
|
"Project-Id-Version: Baby Buddy\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-06-17 22:25+0000\n"
|
"POT-Creation-Date: 2022-07-30 21:13+0000\n"
|
||||||
"Language: tr\n"
|
"Language: tr\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
@ -11,12 +11,12 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n>1);\n"
|
"Plural-Forms: nplurals=2; plural=(n>1);\n"
|
||||||
|
|
||||||
#: babybuddy/admin.py:12 babybuddy/admin.py:13
|
#: babybuddy/admin.py:12 babybuddy/admin.py:13
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:327
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:324
|
||||||
#: babybuddy/templates/babybuddy/user_settings_form.html:8
|
#: babybuddy/templates/babybuddy/user_settings_form.html:8
|
||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr "Ayarlar"
|
msgstr "Ayarlar"
|
||||||
|
|
||||||
#: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:92
|
#: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:89
|
||||||
#: babybuddy/templates/babybuddy/user_settings_form.html:61
|
#: babybuddy/templates/babybuddy/user_settings_form.html:61
|
||||||
#: dashboard/templates/dashboard/child.html:4
|
#: dashboard/templates/dashboard/child.html:4
|
||||||
#: dashboard/templates/dashboard/child.html:9
|
#: dashboard/templates/dashboard/child.html:9
|
||||||
|
@ -186,7 +186,7 @@ msgstr "Türkçe"
|
||||||
|
|
||||||
#: babybuddy/templates/admin/base_site.html:4
|
#: babybuddy/templates/admin/base_site.html:4
|
||||||
#: babybuddy/templates/admin/base_site.html:7
|
#: babybuddy/templates/admin/base_site.html:7
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:339
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:336
|
||||||
msgid "Database Admin"
|
msgid "Database Admin"
|
||||||
msgstr "Veritabanı Admin"
|
msgstr "Veritabanı Admin"
|
||||||
|
|
||||||
|
@ -224,30 +224,25 @@ msgstr ""
|
||||||
"<strong>Hata:</strong> Bazı alanlarda hata var. Detaylar için aşağıya "
|
"<strong>Hata:</strong> Bazı alanlarda hata var. Detaylar için aşağıya "
|
||||||
"bakınız."
|
"bakınız."
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:32
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:48 core/models.py:248
|
||||||
#: core/templates/core/timer_nav.html:18
|
|
||||||
msgid "Quick Start Timer"
|
|
||||||
msgstr "Hızı Zamanlayıcı Başlat"
|
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:51 core/models.py:248
|
|
||||||
#: core/models.py:252
|
#: core/models.py:252
|
||||||
msgid "Diaper Change"
|
msgid "Diaper Change"
|
||||||
msgstr "Bez Değişimi"
|
msgstr "Bez Değişimi"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:57
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:54
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:262 core/models.py:312
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:259 core/models.py:312
|
||||||
#: core/models.py:316 core/templates/core/timer_detail.html:43
|
#: core/models.py:316 core/templates/core/timer_detail.html:43
|
||||||
msgid "Feeding"
|
msgid "Feeding"
|
||||||
msgstr "Beslenme"
|
msgstr "Beslenme"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:63
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:60
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:138 core/models.py:396
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:135 core/models.py:396
|
||||||
#: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29
|
#: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29
|
||||||
msgid "Note"
|
msgid "Note"
|
||||||
msgstr "Not"
|
msgstr "Not"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:69
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:66
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:283
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:280
|
||||||
#: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467
|
#: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467
|
||||||
#: core/models.py:468 core/models.py:471
|
#: core/models.py:468 core/models.py:471
|
||||||
#: core/templates/core/sleep_confirm_delete.html:7
|
#: core/templates/core/sleep_confirm_delete.html:7
|
||||||
|
@ -257,8 +252,8 @@ msgstr "Not"
|
||||||
msgid "Sleep"
|
msgid "Sleep"
|
||||||
msgstr "Uyku"
|
msgstr "Uyku"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:75
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:72
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:296
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:293
|
||||||
#: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647
|
#: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647
|
||||||
#: core/models.py:648 core/models.py:651
|
#: core/models.py:648 core/models.py:651
|
||||||
#: core/templates/core/timer_detail.html:59
|
#: core/templates/core/timer_detail.html:59
|
||||||
|
@ -270,15 +265,15 @@ msgstr "Uyku"
|
||||||
msgid "Tummy Time"
|
msgid "Tummy Time"
|
||||||
msgstr "Karın üstü zamanı"
|
msgstr "Karın üstü zamanı"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:99
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:96
|
||||||
#: core/templates/timeline/timeline.html:4
|
#: core/templates/timeline/timeline.html:4
|
||||||
#: core/templates/timeline/timeline.html:7
|
#: core/templates/timeline/timeline.html:7
|
||||||
#: dashboard/templates/dashboard/child_button_group.html:9
|
#: dashboard/templates/dashboard/child_button_group.html:9
|
||||||
msgid "Timeline"
|
msgid "Timeline"
|
||||||
msgstr "Zaman çizelgesi"
|
msgstr "Zaman çizelgesi"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:110
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:107
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:118 core/models.py:188
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:115 core/models.py:188
|
||||||
#: core/templates/core/child_confirm_delete.html:7
|
#: core/templates/core/child_confirm_delete.html:7
|
||||||
#: core/templates/core/child_detail.html:7
|
#: core/templates/core/child_detail.html:7
|
||||||
#: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4
|
#: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4
|
||||||
|
@ -288,7 +283,7 @@ msgstr "Zaman çizelgesi"
|
||||||
msgid "Children"
|
msgid "Children"
|
||||||
msgstr "Çocuklar"
|
msgstr "Çocuklar"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:124 core/models.py:137
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:121 core/models.py:137
|
||||||
#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335
|
#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335
|
||||||
#: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450
|
#: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450
|
||||||
#: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671
|
#: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671
|
||||||
|
@ -307,7 +302,7 @@ msgstr "Çocuklar"
|
||||||
msgid "Child"
|
msgid "Child"
|
||||||
msgstr "Çocuk"
|
msgstr "Çocuk"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:132 core/models.py:143
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:129 core/models.py:143
|
||||||
#: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373
|
#: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373
|
||||||
#: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511
|
#: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511
|
||||||
#: core/models.py:677 core/templates/core/note_confirm_delete.html:7
|
#: core/models.py:677 core/templates/core/note_confirm_delete.html:7
|
||||||
|
@ -316,11 +311,11 @@ msgstr "Çocuk"
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Notlar"
|
msgstr "Notlar"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:152
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:149
|
||||||
msgid "Measurements"
|
msgid "Measurements"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:160 core/models.py:139
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:157 core/models.py:139
|
||||||
#: core/models.py:151 core/models.py:152 core/models.py:155
|
#: core/models.py:151 core/models.py:152 core/models.py:155
|
||||||
#: core/templates/core/bmi_confirm_delete.html:7
|
#: 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_form.html:13 core/templates/core/bmi_list.html:4
|
||||||
|
@ -331,13 +326,13 @@ msgstr ""
|
||||||
msgid "BMI"
|
msgid "BMI"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:166
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:163
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Sleep entry"
|
#| msgid "Sleep entry"
|
||||||
msgid "BMI entry"
|
msgid "BMI entry"
|
||||||
msgstr "Uyku Girişi"
|
msgstr "Uyku Girişi"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:174 core/models.py:338
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:171 core/models.py:338
|
||||||
#: core/models.py:351 core/models.py:352 core/models.py:355
|
#: core/models.py:351 core/models.py:352 core/models.py:355
|
||||||
#: core/templates/core/head_circumference_confirm_delete.html:7
|
#: core/templates/core/head_circumference_confirm_delete.html:7
|
||||||
#: core/templates/core/head_circumference_form.html:13
|
#: core/templates/core/head_circumference_form.html:13
|
||||||
|
@ -353,11 +348,11 @@ msgstr "Uyku Girişi"
|
||||||
msgid "Head Circumference"
|
msgid "Head Circumference"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:180
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:177
|
||||||
msgid "Head Circumference entry"
|
msgid "Head Circumference entry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:188 core/models.py:369
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:185 core/models.py:369
|
||||||
#: core/models.py:381 core/models.py:382 core/models.py:385
|
#: core/models.py:381 core/models.py:382 core/models.py:385
|
||||||
#: core/templates/core/height_confirm_delete.html:7
|
#: core/templates/core/height_confirm_delete.html:7
|
||||||
#: core/templates/core/height_form.html:13
|
#: core/templates/core/height_form.html:13
|
||||||
|
@ -374,13 +369,13 @@ msgstr ""
|
||||||
msgid "Height"
|
msgid "Height"
|
||||||
msgstr "Ağırlık"
|
msgstr "Ağırlık"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:194
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:191
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Weight entry"
|
#| msgid "Weight entry"
|
||||||
msgid "Height entry"
|
msgid "Height entry"
|
||||||
msgstr "Ağırlık girdisi"
|
msgstr "Ağırlık girdisi"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:202 core/models.py:506
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:199 core/models.py:506
|
||||||
#: core/models.py:519 core/models.py:520 core/models.py:523
|
#: core/models.py:519 core/models.py:520 core/models.py:523
|
||||||
#: core/templates/core/temperature_confirm_delete.html:7
|
#: core/templates/core/temperature_confirm_delete.html:7
|
||||||
#: core/templates/core/temperature_form.html:13
|
#: core/templates/core/temperature_form.html:13
|
||||||
|
@ -391,11 +386,11 @@ msgstr "Ağırlık girdisi"
|
||||||
msgid "Temperature"
|
msgid "Temperature"
|
||||||
msgstr "Sıcaklık"
|
msgstr "Sıcaklık"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:208
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:205
|
||||||
msgid "Temperature reading"
|
msgid "Temperature reading"
|
||||||
msgstr "Sıcaklık okuma"
|
msgstr "Sıcaklık okuma"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:216 core/models.py:673
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:213 core/models.py:673
|
||||||
#: core/models.py:685 core/models.py:686 core/models.py:689
|
#: core/models.py:685 core/models.py:686 core/models.py:689
|
||||||
#: core/templates/core/weight_confirm_delete.html:7
|
#: core/templates/core/weight_confirm_delete.html:7
|
||||||
#: core/templates/core/weight_form.html:13
|
#: core/templates/core/weight_form.html:13
|
||||||
|
@ -410,24 +405,24 @@ msgstr "Sıcaklık okuma"
|
||||||
msgid "Weight"
|
msgid "Weight"
|
||||||
msgstr "Ağırlık"
|
msgstr "Ağırlık"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:222
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:219
|
||||||
msgid "Weight entry"
|
msgid "Weight entry"
|
||||||
msgstr "Ağırlık girdisi"
|
msgstr "Ağırlık girdisi"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:236
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:233
|
||||||
msgid "Activities"
|
msgid "Activities"
|
||||||
msgstr "Faaliyetler"
|
msgstr "Faaliyetler"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:243
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:240
|
||||||
#: reports/graphs/diaperchange_lifetimes.py:27
|
#: reports/graphs/diaperchange_lifetimes.py:27
|
||||||
msgid "Changes"
|
msgid "Changes"
|
||||||
msgstr "Değişimler"
|
msgstr "Değişimler"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:249
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:246
|
||||||
msgid "Change"
|
msgid "Change"
|
||||||
msgstr "Değişim"
|
msgstr "Değişim"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:256
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:253
|
||||||
#: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313
|
#: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313
|
||||||
#: core/templates/core/feeding_confirm_delete.html:7
|
#: core/templates/core/feeding_confirm_delete.html:7
|
||||||
#: core/templates/core/feeding_form.html:13
|
#: core/templates/core/feeding_form.html:13
|
||||||
|
@ -437,7 +432,7 @@ msgstr "Değişim"
|
||||||
msgid "Feedings"
|
msgid "Feedings"
|
||||||
msgstr "Beslenmeler"
|
msgstr "Beslenmeler"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:270 core/models.py:437
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:267 core/models.py:437
|
||||||
#: core/models.py:438 core/models.py:441
|
#: core/models.py:438 core/models.py:441
|
||||||
#: core/templates/core/pumping_confirm_delete.html:7
|
#: core/templates/core/pumping_confirm_delete.html:7
|
||||||
#: core/templates/core/pumping_form.html:13
|
#: core/templates/core/pumping_form.html:13
|
||||||
|
@ -449,21 +444,21 @@ msgstr "Beslenmeler"
|
||||||
msgid "Pumping"
|
msgid "Pumping"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:276
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:273
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Weight entry"
|
#| msgid "Weight entry"
|
||||||
msgid "Pumping entry"
|
msgid "Pumping entry"
|
||||||
msgstr "Ağırlık girdisi"
|
msgstr "Ağırlık girdisi"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:289
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:286
|
||||||
msgid "Sleep entry"
|
msgid "Sleep entry"
|
||||||
msgstr "Uyku Girişi"
|
msgstr "Uyku Girişi"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:302
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:299
|
||||||
msgid "Tummy Time entry"
|
msgid "Tummy Time entry"
|
||||||
msgstr "Karın Üstü Zaman Girişi"
|
msgstr "Karın Üstü Zaman Girişi"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:326
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:323
|
||||||
#: babybuddy/templates/babybuddy/user_list.html:17
|
#: babybuddy/templates/babybuddy/user_list.html:17
|
||||||
#: babybuddy/templates/babybuddy/user_password_form.html:7
|
#: babybuddy/templates/babybuddy/user_password_form.html:7
|
||||||
#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556
|
#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556
|
||||||
|
@ -471,23 +466,23 @@ msgstr "Karın Üstü Zaman Girişi"
|
||||||
msgid "User"
|
msgid "User"
|
||||||
msgstr "Kullanıcı"
|
msgstr "Kullanıcı"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:328
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:325
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr "Şifre"
|
msgstr "Şifre"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:332
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:329
|
||||||
msgid "Logout"
|
msgid "Logout"
|
||||||
msgstr "Çıkış"
|
msgstr "Çıkış"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:335
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:332
|
||||||
msgid "Site"
|
msgid "Site"
|
||||||
msgstr "Site"
|
msgstr "Site"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:336
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:333
|
||||||
msgid "API Browser"
|
msgid "API Browser"
|
||||||
msgstr "API Görüntüleyici"
|
msgstr "API Görüntüleyici"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:338
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:335
|
||||||
#: babybuddy/templates/babybuddy/user_confirm_delete.html:7
|
#: babybuddy/templates/babybuddy/user_confirm_delete.html:7
|
||||||
#: babybuddy/templates/babybuddy/user_form.html:13
|
#: babybuddy/templates/babybuddy/user_form.html:13
|
||||||
#: babybuddy/templates/babybuddy/user_list.html:4
|
#: babybuddy/templates/babybuddy/user_list.html:4
|
||||||
|
@ -495,15 +490,15 @@ msgstr "API Görüntüleyici"
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr "Kullanıcılar"
|
msgstr "Kullanıcılar"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:341
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:338
|
||||||
msgid "Support"
|
msgid "Support"
|
||||||
msgstr "Destek"
|
msgstr "Destek"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:343
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:340
|
||||||
msgid "Source Code"
|
msgid "Source Code"
|
||||||
msgstr "Kaynak Kod"
|
msgstr "Kaynak Kod"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:345
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:342
|
||||||
msgid "Chat / Support"
|
msgid "Chat / Support"
|
||||||
msgstr "Sohbet / Destek"
|
msgstr "Sohbet / Destek"
|
||||||
|
|
||||||
|
@ -674,7 +669,7 @@ msgstr "Etkin"
|
||||||
#: babybuddy/templates/babybuddy/user_list.html:23
|
#: babybuddy/templates/babybuddy/user_list.html:23
|
||||||
#: core/templates/core/bmi_list.html:24 core/templates/core/bmi_list.html:38
|
#: core/templates/core/bmi_list.html:24 core/templates/core/bmi_list.html:38
|
||||||
#: core/templates/core/child_list.html:28
|
#: core/templates/core/child_list.html:28
|
||||||
#: core/templates/core/child_list.html:48
|
#: core/templates/core/child_list.html:43
|
||||||
#: core/templates/core/diaperchange_list.html:24
|
#: core/templates/core/diaperchange_list.html:24
|
||||||
#: core/templates/core/diaperchange_list.html:40
|
#: core/templates/core/diaperchange_list.html:40
|
||||||
#: core/templates/core/feeding_list.html:24
|
#: core/templates/core/feeding_list.html:24
|
||||||
|
@ -881,6 +876,25 @@ msgstr ""
|
||||||
"Eğer eposta size ulaşmazsa lütfen girdiğiniz eposta adresinizin doğru "
|
"Eğer eposta size ulaşmazsa lütfen girdiğiniz eposta adresinizin doğru "
|
||||||
"olduğuna emin olun ve epostanızdaki spam klasörünü kontrol ediniz."
|
"olduğuna emin olun ve epostanızdaki spam klasörünü kontrol ediniz."
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:2
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"You're receiving this email because you requested a password reset for your "
|
||||||
|
"user account at %(site_name)s."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:4
|
||||||
|
msgid "Please go to the following page and choose a new password:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:8
|
||||||
|
msgid "Your username, in case you’ve forgotten:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:10
|
||||||
|
msgid "Thanks for using Baby Buddy!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/registration/password_reset_form.html:4
|
#: babybuddy/templates/registration/password_reset_form.html:4
|
||||||
msgid "Forgot Password"
|
msgid "Forgot Password"
|
||||||
msgstr "Şifremi Unuttum"
|
msgstr "Şifremi Unuttum"
|
||||||
|
@ -996,7 +1010,7 @@ msgstr ""
|
||||||
#: reports/graphs/feeding_duration.py:56
|
#: reports/graphs/feeding_duration.py:56
|
||||||
#: reports/graphs/head_circumference_change.py:28
|
#: reports/graphs/head_circumference_change.py:28
|
||||||
#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60
|
#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60
|
||||||
#: reports/graphs/sleep_pattern.py:151 reports/graphs/sleep_totals.py:59
|
#: reports/graphs/sleep_pattern.py:153 reports/graphs/sleep_totals.py:59
|
||||||
#: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28
|
#: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28
|
||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "Tarih"
|
msgstr "Tarih"
|
||||||
|
@ -1204,7 +1218,7 @@ msgstr "Çocuk Ekle"
|
||||||
msgid "Birth Date"
|
msgid "Birth Date"
|
||||||
msgstr "Doğum Tarihi"
|
msgstr "Doğum Tarihi"
|
||||||
|
|
||||||
#: core/templates/core/child_list.html:67
|
#: core/templates/core/child_list.html:62
|
||||||
msgid "No children found."
|
msgid "No children found."
|
||||||
msgstr "Çocuk bulunamadı."
|
msgstr "Çocuk bulunamadı."
|
||||||
|
|
||||||
|
@ -1362,6 +1376,19 @@ msgstr "Ağırlık Girdisi Ekle"
|
||||||
msgid "No pumping entries found."
|
msgid "No pumping entries found."
|
||||||
msgstr "Zamanlayıcı girdisi bulunamadı"
|
msgstr "Zamanlayıcı girdisi bulunamadı"
|
||||||
|
|
||||||
|
#: core/templates/core/quick_timer_nav.html:9
|
||||||
|
#: core/templates/core/quick_timer_nav.html:29
|
||||||
|
#: core/templates/core/timer_nav.html:37
|
||||||
|
msgid "Quick Start Timer"
|
||||||
|
msgstr "Hızı Zamanlayıcı Başlat"
|
||||||
|
|
||||||
|
#: core/templates/core/quick_timer_nav.html:19
|
||||||
|
#: core/templates/core/timer_nav.html:28
|
||||||
|
#, fuzzy
|
||||||
|
#| msgid "Quick Start Timer"
|
||||||
|
msgid "Quick Start Timer For…"
|
||||||
|
msgstr "Hızı Zamanlayıcı Başlat"
|
||||||
|
|
||||||
#: core/templates/core/sleep_confirm_delete.html:4
|
#: core/templates/core/sleep_confirm_delete.html:4
|
||||||
msgid "Delete a Sleep Entry"
|
msgid "Delete a Sleep Entry"
|
||||||
msgstr "Uyku Girdisi Sil"
|
msgstr "Uyku Girdisi Sil"
|
||||||
|
@ -1467,7 +1494,7 @@ msgid "Delete timer"
|
||||||
msgstr "Silme zamanlayıcısı"
|
msgstr "Silme zamanlayıcısı"
|
||||||
|
|
||||||
#: core/templates/core/timer_form.html:22
|
#: core/templates/core/timer_form.html:22
|
||||||
#: core/templates/core/timer_list.html:15 core/templates/core/timer_nav.html:23
|
#: core/templates/core/timer_list.html:15 core/templates/core/timer_nav.html:15
|
||||||
msgid "Start Timer"
|
msgid "Start Timer"
|
||||||
msgstr "Zamanlayıcı Başlat"
|
msgstr "Zamanlayıcı Başlat"
|
||||||
|
|
||||||
|
@ -1479,16 +1506,16 @@ msgstr "Zamanlayıcı girdisi bulunamadı"
|
||||||
msgid "Delete Inactive Timers"
|
msgid "Delete Inactive Timers"
|
||||||
msgstr "Pasif Zamanlayıcıları Sil"
|
msgstr "Pasif Zamanlayıcıları Sil"
|
||||||
|
|
||||||
#: core/templates/core/timer_nav.html:28
|
#: core/templates/core/timer_nav.html:20
|
||||||
msgid "View Timers"
|
msgid "View Timers"
|
||||||
msgstr "Zamanlayıcıları İzle"
|
msgstr "Zamanlayıcıları İzle"
|
||||||
|
|
||||||
#: core/templates/core/timer_nav.html:32
|
#: core/templates/core/timer_nav.html:44
|
||||||
#: dashboard/templates/cards/timer_list.html:6
|
#: dashboard/templates/cards/timer_list.html:6
|
||||||
msgid "Active Timers"
|
msgid "Active Timers"
|
||||||
msgstr "Etkin Zamanlayıcılar"
|
msgstr "Etkin Zamanlayıcılar"
|
||||||
|
|
||||||
#: core/templates/core/timer_nav.html:38
|
#: core/templates/core/timer_nav.html:50
|
||||||
#: dashboard/templates/cards/diaperchange_last.html:17
|
#: dashboard/templates/cards/diaperchange_last.html:17
|
||||||
#: dashboard/templates/cards/diaperchange_types.html:12
|
#: dashboard/templates/cards/diaperchange_types.html:12
|
||||||
#: dashboard/templates/cards/feeding_day.html:20
|
#: dashboard/templates/cards/feeding_day.html:20
|
||||||
|
@ -1738,16 +1765,16 @@ msgstr "%(model)s girdisi eklendi!"
|
||||||
msgid "%(model)s reading for %(child)s updated."
|
msgid "%(model)s reading for %(child)s updated."
|
||||||
msgstr "%(child)s için %(model)s girdisi güncellendi."
|
msgstr "%(child)s için %(model)s girdisi güncellendi."
|
||||||
|
|
||||||
#: core/views.py:478
|
#: core/views.py:483
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(timer)s stopped."
|
msgid "%(timer)s stopped."
|
||||||
msgstr "%(timer)s durdu."
|
msgstr "%(timer)s durdu."
|
||||||
|
|
||||||
#: core/views.py:501
|
#: core/views.py:506
|
||||||
msgid "All inactive timers deleted."
|
msgid "All inactive timers deleted."
|
||||||
msgstr "Tüm Pasif Zamanlayıcılar Silindi"
|
msgstr "Tüm Pasif Zamanlayıcılar Silindi"
|
||||||
|
|
||||||
#: core/views.py:511
|
#: core/views.py:516
|
||||||
msgid "No inactive timers exist."
|
msgid "No inactive timers exist."
|
||||||
msgstr "Pasif Zamanlayıcı Yok."
|
msgstr "Pasif Zamanlayıcı Yok."
|
||||||
|
|
||||||
|
@ -2056,11 +2083,11 @@ msgstr "<b>Ortalama Beslenme Süreleri</b>"
|
||||||
msgid "Pumping Amount"
|
msgid "Pumping Amount"
|
||||||
msgstr "Beslenmeler"
|
msgstr "Beslenmeler"
|
||||||
|
|
||||||
#: reports/graphs/sleep_pattern.py:148
|
#: reports/graphs/sleep_pattern.py:150
|
||||||
msgid "<b>Sleep Pattern</b>"
|
msgid "<b>Sleep Pattern</b>"
|
||||||
msgstr "<b>Uyku Deseni</b>"
|
msgstr "<b>Uyku Deseni</b>"
|
||||||
|
|
||||||
#: reports/graphs/sleep_pattern.py:165
|
#: reports/graphs/sleep_pattern.py:167
|
||||||
msgid "Time of day"
|
msgid "Time of day"
|
||||||
msgstr "Günün zamanı"
|
msgstr "Günün zamanı"
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Baby Buddy\n"
|
"Project-Id-Version: Baby Buddy\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-06-17 22:25+0000\n"
|
"POT-Creation-Date: 2022-07-30 21:13+0000\n"
|
||||||
"Language: zh-Hans\n"
|
"Language: zh-Hans\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
@ -11,12 +11,12 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
|
|
||||||
#: babybuddy/admin.py:12 babybuddy/admin.py:13
|
#: babybuddy/admin.py:12 babybuddy/admin.py:13
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:327
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:324
|
||||||
#: babybuddy/templates/babybuddy/user_settings_form.html:8
|
#: babybuddy/templates/babybuddy/user_settings_form.html:8
|
||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr "设置"
|
msgstr "设置"
|
||||||
|
|
||||||
#: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:92
|
#: babybuddy/admin.py:17 babybuddy/templates/babybuddy/nav-dropdown.html:89
|
||||||
#: babybuddy/templates/babybuddy/user_settings_form.html:61
|
#: babybuddy/templates/babybuddy/user_settings_form.html:61
|
||||||
#: dashboard/templates/dashboard/child.html:4
|
#: dashboard/templates/dashboard/child.html:4
|
||||||
#: dashboard/templates/dashboard/child.html:9
|
#: dashboard/templates/dashboard/child.html:9
|
||||||
|
@ -179,7 +179,7 @@ msgstr "土耳其语"
|
||||||
|
|
||||||
#: babybuddy/templates/admin/base_site.html:4
|
#: babybuddy/templates/admin/base_site.html:4
|
||||||
#: babybuddy/templates/admin/base_site.html:7
|
#: babybuddy/templates/admin/base_site.html:7
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:339
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:336
|
||||||
msgid "Database Admin"
|
msgid "Database Admin"
|
||||||
msgstr "数据库管理员"
|
msgstr "数据库管理员"
|
||||||
|
|
||||||
|
@ -215,30 +215,25 @@ msgstr "<strong>错误:</strong> %(error)s"
|
||||||
msgid "<strong>Error:</strong> Some fields have errors. See below for details."
|
msgid "<strong>Error:</strong> Some fields have errors. See below for details."
|
||||||
msgstr "<strong>错误:</strong> 有些字段有错误。详情见下文。 "
|
msgstr "<strong>错误:</strong> 有些字段有错误。详情见下文。 "
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:32
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:48 core/models.py:248
|
||||||
#: core/templates/core/timer_nav.html:18
|
|
||||||
msgid "Quick Start Timer"
|
|
||||||
msgstr "快速开始计时"
|
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:51 core/models.py:248
|
|
||||||
#: core/models.py:252
|
#: core/models.py:252
|
||||||
msgid "Diaper Change"
|
msgid "Diaper Change"
|
||||||
msgstr "更换尿布"
|
msgstr "更换尿布"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:57
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:54
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:262 core/models.py:312
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:259 core/models.py:312
|
||||||
#: core/models.py:316 core/templates/core/timer_detail.html:43
|
#: core/models.py:316 core/templates/core/timer_detail.html:43
|
||||||
msgid "Feeding"
|
msgid "Feeding"
|
||||||
msgstr "喂食"
|
msgstr "喂食"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:63
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:60
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:138 core/models.py:396
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:135 core/models.py:396
|
||||||
#: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29
|
#: core/models.py:407 core/models.py:411 core/templates/core/note_list.html:29
|
||||||
msgid "Note"
|
msgid "Note"
|
||||||
msgstr "记录"
|
msgstr "记录"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:69
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:66
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:283
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:280
|
||||||
#: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467
|
#: babybuddy/templates/babybuddy/welcome.html:42 core/models.py:467
|
||||||
#: core/models.py:468 core/models.py:471
|
#: core/models.py:468 core/models.py:471
|
||||||
#: core/templates/core/sleep_confirm_delete.html:7
|
#: core/templates/core/sleep_confirm_delete.html:7
|
||||||
|
@ -248,8 +243,8 @@ msgstr "记录"
|
||||||
msgid "Sleep"
|
msgid "Sleep"
|
||||||
msgstr "睡眠"
|
msgstr "睡眠"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:75
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:72
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:296
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:293
|
||||||
#: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647
|
#: babybuddy/templates/babybuddy/welcome.html:50 core/models.py:647
|
||||||
#: core/models.py:648 core/models.py:651
|
#: core/models.py:648 core/models.py:651
|
||||||
#: core/templates/core/timer_detail.html:59
|
#: core/templates/core/timer_detail.html:59
|
||||||
|
@ -261,15 +256,15 @@ msgstr "睡眠"
|
||||||
msgid "Tummy Time"
|
msgid "Tummy Time"
|
||||||
msgstr "趴玩时间"
|
msgstr "趴玩时间"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:99
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:96
|
||||||
#: core/templates/timeline/timeline.html:4
|
#: core/templates/timeline/timeline.html:4
|
||||||
#: core/templates/timeline/timeline.html:7
|
#: core/templates/timeline/timeline.html:7
|
||||||
#: dashboard/templates/dashboard/child_button_group.html:9
|
#: dashboard/templates/dashboard/child_button_group.html:9
|
||||||
msgid "Timeline"
|
msgid "Timeline"
|
||||||
msgstr "时间线"
|
msgstr "时间线"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:110
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:107
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:118 core/models.py:188
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:115 core/models.py:188
|
||||||
#: core/templates/core/child_confirm_delete.html:7
|
#: core/templates/core/child_confirm_delete.html:7
|
||||||
#: core/templates/core/child_detail.html:7
|
#: core/templates/core/child_detail.html:7
|
||||||
#: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4
|
#: core/templates/core/child_form.html:13 core/templates/core/child_list.html:4
|
||||||
|
@ -279,7 +274,7 @@ msgstr "时间线"
|
||||||
msgid "Children"
|
msgid "Children"
|
||||||
msgstr "我的宝宝"
|
msgstr "我的宝宝"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:124 core/models.py:137
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:121 core/models.py:137
|
||||||
#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335
|
#: core/models.py:187 core/models.py:221 core/models.py:274 core/models.py:335
|
||||||
#: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450
|
#: core/models.py:367 core/models.py:394 core/models.py:426 core/models.py:450
|
||||||
#: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671
|
#: core/models.py:503 core/models.py:537 core/models.py:630 core/models.py:671
|
||||||
|
@ -298,7 +293,7 @@ msgstr "我的宝宝"
|
||||||
msgid "Child"
|
msgid "Child"
|
||||||
msgstr "宝宝"
|
msgstr "宝宝"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:132 core/models.py:143
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:129 core/models.py:143
|
||||||
#: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373
|
#: core/models.py:240 core/models.py:304 core/models.py:343 core/models.py:373
|
||||||
#: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511
|
#: core/models.py:408 core/models.py:430 core/models.py:458 core/models.py:511
|
||||||
#: core/models.py:677 core/templates/core/note_confirm_delete.html:7
|
#: core/models.py:677 core/templates/core/note_confirm_delete.html:7
|
||||||
|
@ -307,11 +302,11 @@ msgstr "宝宝"
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "成长记录"
|
msgstr "成长记录"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:152
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:149
|
||||||
msgid "Measurements"
|
msgid "Measurements"
|
||||||
msgstr "测量"
|
msgstr "测量"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:160 core/models.py:139
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:157 core/models.py:139
|
||||||
#: core/models.py:151 core/models.py:152 core/models.py:155
|
#: core/models.py:151 core/models.py:152 core/models.py:155
|
||||||
#: core/templates/core/bmi_confirm_delete.html:7
|
#: 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_form.html:13 core/templates/core/bmi_list.html:4
|
||||||
|
@ -322,11 +317,11 @@ msgstr "测量"
|
||||||
msgid "BMI"
|
msgid "BMI"
|
||||||
msgstr "身体质量指数(BMI)"
|
msgstr "身体质量指数(BMI)"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:166
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:163
|
||||||
msgid "BMI entry"
|
msgid "BMI entry"
|
||||||
msgstr "BMI记录"
|
msgstr "BMI记录"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:174 core/models.py:338
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:171 core/models.py:338
|
||||||
#: core/models.py:351 core/models.py:352 core/models.py:355
|
#: core/models.py:351 core/models.py:352 core/models.py:355
|
||||||
#: core/templates/core/head_circumference_confirm_delete.html:7
|
#: core/templates/core/head_circumference_confirm_delete.html:7
|
||||||
#: core/templates/core/head_circumference_form.html:13
|
#: core/templates/core/head_circumference_form.html:13
|
||||||
|
@ -342,11 +337,11 @@ msgstr "BMI记录"
|
||||||
msgid "Head Circumference"
|
msgid "Head Circumference"
|
||||||
msgstr "头围"
|
msgstr "头围"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:180
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:177
|
||||||
msgid "Head Circumference entry"
|
msgid "Head Circumference entry"
|
||||||
msgstr "头围记录"
|
msgstr "头围记录"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:188 core/models.py:369
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:185 core/models.py:369
|
||||||
#: core/models.py:381 core/models.py:382 core/models.py:385
|
#: core/models.py:381 core/models.py:382 core/models.py:385
|
||||||
#: core/templates/core/height_confirm_delete.html:7
|
#: core/templates/core/height_confirm_delete.html:7
|
||||||
#: core/templates/core/height_form.html:13
|
#: core/templates/core/height_form.html:13
|
||||||
|
@ -361,11 +356,11 @@ msgstr "头围记录"
|
||||||
msgid "Height"
|
msgid "Height"
|
||||||
msgstr "身高"
|
msgstr "身高"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:194
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:191
|
||||||
msgid "Height entry"
|
msgid "Height entry"
|
||||||
msgstr "身高记录"
|
msgstr "身高记录"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:202 core/models.py:506
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:199 core/models.py:506
|
||||||
#: core/models.py:519 core/models.py:520 core/models.py:523
|
#: core/models.py:519 core/models.py:520 core/models.py:523
|
||||||
#: core/templates/core/temperature_confirm_delete.html:7
|
#: core/templates/core/temperature_confirm_delete.html:7
|
||||||
#: core/templates/core/temperature_form.html:13
|
#: core/templates/core/temperature_form.html:13
|
||||||
|
@ -376,11 +371,11 @@ msgstr "身高记录"
|
||||||
msgid "Temperature"
|
msgid "Temperature"
|
||||||
msgstr "体温"
|
msgstr "体温"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:208
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:205
|
||||||
msgid "Temperature reading"
|
msgid "Temperature reading"
|
||||||
msgstr "体温读数"
|
msgstr "体温读数"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:216 core/models.py:673
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:213 core/models.py:673
|
||||||
#: core/models.py:685 core/models.py:686 core/models.py:689
|
#: core/models.py:685 core/models.py:686 core/models.py:689
|
||||||
#: core/templates/core/weight_confirm_delete.html:7
|
#: core/templates/core/weight_confirm_delete.html:7
|
||||||
#: core/templates/core/weight_form.html:13
|
#: core/templates/core/weight_form.html:13
|
||||||
|
@ -395,24 +390,24 @@ msgstr "体温读数"
|
||||||
msgid "Weight"
|
msgid "Weight"
|
||||||
msgstr "体重"
|
msgstr "体重"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:222
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:219
|
||||||
msgid "Weight entry"
|
msgid "Weight entry"
|
||||||
msgstr "体重记录"
|
msgstr "体重记录"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:236
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:233
|
||||||
msgid "Activities"
|
msgid "Activities"
|
||||||
msgstr "活动"
|
msgstr "活动"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:243
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:240
|
||||||
#: reports/graphs/diaperchange_lifetimes.py:27
|
#: reports/graphs/diaperchange_lifetimes.py:27
|
||||||
msgid "Changes"
|
msgid "Changes"
|
||||||
msgstr "换尿布"
|
msgstr "换尿布"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:249
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:246
|
||||||
msgid "Change"
|
msgid "Change"
|
||||||
msgstr "换尿布"
|
msgstr "换尿布"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:256
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:253
|
||||||
#: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313
|
#: babybuddy/templates/babybuddy/welcome.html:34 core/models.py:313
|
||||||
#: core/templates/core/feeding_confirm_delete.html:7
|
#: core/templates/core/feeding_confirm_delete.html:7
|
||||||
#: core/templates/core/feeding_form.html:13
|
#: core/templates/core/feeding_form.html:13
|
||||||
|
@ -422,7 +417,7 @@ msgstr "换尿布"
|
||||||
msgid "Feedings"
|
msgid "Feedings"
|
||||||
msgstr "喂食"
|
msgstr "喂食"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:270 core/models.py:437
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:267 core/models.py:437
|
||||||
#: core/models.py:438 core/models.py:441
|
#: core/models.py:438 core/models.py:441
|
||||||
#: core/templates/core/pumping_confirm_delete.html:7
|
#: core/templates/core/pumping_confirm_delete.html:7
|
||||||
#: core/templates/core/pumping_form.html:13
|
#: core/templates/core/pumping_form.html:13
|
||||||
|
@ -434,19 +429,19 @@ msgstr "喂食"
|
||||||
msgid "Pumping"
|
msgid "Pumping"
|
||||||
msgstr "吸奶"
|
msgstr "吸奶"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:276
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:273
|
||||||
msgid "Pumping entry"
|
msgid "Pumping entry"
|
||||||
msgstr "吸奶记录"
|
msgstr "吸奶记录"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:289
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:286
|
||||||
msgid "Sleep entry"
|
msgid "Sleep entry"
|
||||||
msgstr "睡眠记录"
|
msgstr "睡眠记录"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:302
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:299
|
||||||
msgid "Tummy Time entry"
|
msgid "Tummy Time entry"
|
||||||
msgstr "趴玩时间记录"
|
msgstr "趴玩时间记录"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:326
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:323
|
||||||
#: babybuddy/templates/babybuddy/user_list.html:17
|
#: babybuddy/templates/babybuddy/user_list.html:17
|
||||||
#: babybuddy/templates/babybuddy/user_password_form.html:7
|
#: babybuddy/templates/babybuddy/user_password_form.html:7
|
||||||
#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556
|
#: babybuddy/templates/babybuddy/user_settings_form.html:7 core/models.py:556
|
||||||
|
@ -454,23 +449,23 @@ msgstr "趴玩时间记录"
|
||||||
msgid "User"
|
msgid "User"
|
||||||
msgstr "用户"
|
msgstr "用户"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:328
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:325
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr "密码"
|
msgstr "密码"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:332
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:329
|
||||||
msgid "Logout"
|
msgid "Logout"
|
||||||
msgstr "登出"
|
msgstr "登出"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:335
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:332
|
||||||
msgid "Site"
|
msgid "Site"
|
||||||
msgstr "站点"
|
msgstr "站点"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:336
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:333
|
||||||
msgid "API Browser"
|
msgid "API Browser"
|
||||||
msgstr "API浏览"
|
msgstr "API浏览"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:338
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:335
|
||||||
#: babybuddy/templates/babybuddy/user_confirm_delete.html:7
|
#: babybuddy/templates/babybuddy/user_confirm_delete.html:7
|
||||||
#: babybuddy/templates/babybuddy/user_form.html:13
|
#: babybuddy/templates/babybuddy/user_form.html:13
|
||||||
#: babybuddy/templates/babybuddy/user_list.html:4
|
#: babybuddy/templates/babybuddy/user_list.html:4
|
||||||
|
@ -478,15 +473,15 @@ msgstr "API浏览"
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr "用户"
|
msgstr "用户"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:341
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:338
|
||||||
msgid "Support"
|
msgid "Support"
|
||||||
msgstr "支持"
|
msgstr "支持"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:343
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:340
|
||||||
msgid "Source Code"
|
msgid "Source Code"
|
||||||
msgstr "源代码"
|
msgstr "源代码"
|
||||||
|
|
||||||
#: babybuddy/templates/babybuddy/nav-dropdown.html:345
|
#: babybuddy/templates/babybuddy/nav-dropdown.html:342
|
||||||
msgid "Chat / Support"
|
msgid "Chat / Support"
|
||||||
msgstr "聊天 / 支持"
|
msgstr "聊天 / 支持"
|
||||||
|
|
||||||
|
@ -655,7 +650,7 @@ msgstr "活动"
|
||||||
#: babybuddy/templates/babybuddy/user_list.html:23
|
#: babybuddy/templates/babybuddy/user_list.html:23
|
||||||
#: core/templates/core/bmi_list.html:24 core/templates/core/bmi_list.html:38
|
#: core/templates/core/bmi_list.html:24 core/templates/core/bmi_list.html:38
|
||||||
#: core/templates/core/child_list.html:28
|
#: core/templates/core/child_list.html:28
|
||||||
#: core/templates/core/child_list.html:48
|
#: core/templates/core/child_list.html:43
|
||||||
#: core/templates/core/diaperchange_list.html:24
|
#: core/templates/core/diaperchange_list.html:24
|
||||||
#: core/templates/core/diaperchange_list.html:40
|
#: core/templates/core/diaperchange_list.html:40
|
||||||
#: core/templates/core/feeding_list.html:24
|
#: core/templates/core/feeding_list.html:24
|
||||||
|
@ -857,6 +852,25 @@ msgstr ""
|
||||||
"如果您没有收到电子邮件,请确保您已输入正确的邮箱地址,并检查您的垃圾邮件文件"
|
"如果您没有收到电子邮件,请确保您已输入正确的邮箱地址,并检查您的垃圾邮件文件"
|
||||||
"夹。"
|
"夹。"
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:2
|
||||||
|
#, python-format
|
||||||
|
msgid ""
|
||||||
|
"You're receiving this email because you requested a password reset for your "
|
||||||
|
"user account at %(site_name)s."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:4
|
||||||
|
msgid "Please go to the following page and choose a new password:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:8
|
||||||
|
msgid "Your username, in case you’ve forgotten:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: babybuddy/templates/registration/password_reset_email.html:10
|
||||||
|
msgid "Thanks for using Baby Buddy!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: babybuddy/templates/registration/password_reset_form.html:4
|
#: babybuddy/templates/registration/password_reset_form.html:4
|
||||||
msgid "Forgot Password"
|
msgid "Forgot Password"
|
||||||
msgstr "忘记密码"
|
msgstr "忘记密码"
|
||||||
|
@ -969,7 +983,7 @@ msgstr "标签"
|
||||||
#: reports/graphs/feeding_duration.py:56
|
#: reports/graphs/feeding_duration.py:56
|
||||||
#: reports/graphs/head_circumference_change.py:28
|
#: reports/graphs/head_circumference_change.py:28
|
||||||
#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60
|
#: reports/graphs/height_change.py:28 reports/graphs/pumping_amounts.py:60
|
||||||
#: reports/graphs/sleep_pattern.py:151 reports/graphs/sleep_totals.py:59
|
#: reports/graphs/sleep_pattern.py:153 reports/graphs/sleep_totals.py:59
|
||||||
#: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28
|
#: reports/graphs/tummytime_duration.py:51 reports/graphs/weight_change.py:28
|
||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "日期"
|
msgstr "日期"
|
||||||
|
@ -1173,7 +1187,7 @@ msgstr "新增宝宝"
|
||||||
msgid "Birth Date"
|
msgid "Birth Date"
|
||||||
msgstr "出生日期"
|
msgstr "出生日期"
|
||||||
|
|
||||||
#: core/templates/core/child_list.html:67
|
#: core/templates/core/child_list.html:62
|
||||||
msgid "No children found."
|
msgid "No children found."
|
||||||
msgstr "未找到宝宝。"
|
msgstr "未找到宝宝。"
|
||||||
|
|
||||||
|
@ -1309,6 +1323,19 @@ msgstr "新增吸奶记录"
|
||||||
msgid "No pumping entries found."
|
msgid "No pumping entries found."
|
||||||
msgstr "未找到吸奶记录。"
|
msgstr "未找到吸奶记录。"
|
||||||
|
|
||||||
|
#: core/templates/core/quick_timer_nav.html:9
|
||||||
|
#: core/templates/core/quick_timer_nav.html:29
|
||||||
|
#: core/templates/core/timer_nav.html:37
|
||||||
|
msgid "Quick Start Timer"
|
||||||
|
msgstr "快速开始计时"
|
||||||
|
|
||||||
|
#: core/templates/core/quick_timer_nav.html:19
|
||||||
|
#: core/templates/core/timer_nav.html:28
|
||||||
|
#, fuzzy
|
||||||
|
#| msgid "Quick Start Timer"
|
||||||
|
msgid "Quick Start Timer For…"
|
||||||
|
msgstr "快速开始计时"
|
||||||
|
|
||||||
#: core/templates/core/sleep_confirm_delete.html:4
|
#: core/templates/core/sleep_confirm_delete.html:4
|
||||||
msgid "Delete a Sleep Entry"
|
msgid "Delete a Sleep Entry"
|
||||||
msgstr "删除一条睡眠记录"
|
msgstr "删除一条睡眠记录"
|
||||||
|
@ -1412,7 +1439,7 @@ msgid "Delete timer"
|
||||||
msgstr "删除计时器"
|
msgstr "删除计时器"
|
||||||
|
|
||||||
#: core/templates/core/timer_form.html:22
|
#: core/templates/core/timer_form.html:22
|
||||||
#: core/templates/core/timer_list.html:15 core/templates/core/timer_nav.html:23
|
#: core/templates/core/timer_list.html:15 core/templates/core/timer_nav.html:15
|
||||||
msgid "Start Timer"
|
msgid "Start Timer"
|
||||||
msgstr "开始计时"
|
msgstr "开始计时"
|
||||||
|
|
||||||
|
@ -1424,16 +1451,16 @@ msgstr "未找到计时器。"
|
||||||
msgid "Delete Inactive Timers"
|
msgid "Delete Inactive Timers"
|
||||||
msgstr "删除处于非活动状态下的计时器"
|
msgstr "删除处于非活动状态下的计时器"
|
||||||
|
|
||||||
#: core/templates/core/timer_nav.html:28
|
#: core/templates/core/timer_nav.html:20
|
||||||
msgid "View Timers"
|
msgid "View Timers"
|
||||||
msgstr "查看计时器"
|
msgstr "查看计时器"
|
||||||
|
|
||||||
#: core/templates/core/timer_nav.html:32
|
#: core/templates/core/timer_nav.html:44
|
||||||
#: dashboard/templates/cards/timer_list.html:6
|
#: dashboard/templates/cards/timer_list.html:6
|
||||||
msgid "Active Timers"
|
msgid "Active Timers"
|
||||||
msgstr "激活的计时器"
|
msgstr "激活的计时器"
|
||||||
|
|
||||||
#: core/templates/core/timer_nav.html:38
|
#: core/templates/core/timer_nav.html:50
|
||||||
#: dashboard/templates/cards/diaperchange_last.html:17
|
#: dashboard/templates/cards/diaperchange_last.html:17
|
||||||
#: dashboard/templates/cards/diaperchange_types.html:12
|
#: dashboard/templates/cards/diaperchange_types.html:12
|
||||||
#: dashboard/templates/cards/feeding_day.html:20
|
#: dashboard/templates/cards/feeding_day.html:20
|
||||||
|
@ -1673,16 +1700,16 @@ msgstr "%(model)s 读数已增加!"
|
||||||
msgid "%(model)s reading for %(child)s updated."
|
msgid "%(model)s reading for %(child)s updated."
|
||||||
msgstr "%(child)s 的 %(model)s 读数已更新。"
|
msgstr "%(child)s 的 %(model)s 读数已更新。"
|
||||||
|
|
||||||
#: core/views.py:478
|
#: core/views.py:483
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(timer)s stopped."
|
msgid "%(timer)s stopped."
|
||||||
msgstr "%(timer)s 停止。"
|
msgstr "%(timer)s 停止。"
|
||||||
|
|
||||||
#: core/views.py:501
|
#: core/views.py:506
|
||||||
msgid "All inactive timers deleted."
|
msgid "All inactive timers deleted."
|
||||||
msgstr "所有处于非活动状态下的计时器已删除。"
|
msgstr "所有处于非活动状态下的计时器已删除。"
|
||||||
|
|
||||||
#: core/views.py:511
|
#: core/views.py:516
|
||||||
msgid "No inactive timers exist."
|
msgid "No inactive timers exist."
|
||||||
msgstr "不存在非活动的计时器。"
|
msgstr "不存在非活动的计时器。"
|
||||||
|
|
||||||
|
@ -1963,11 +1990,11 @@ msgstr "<b>合计吸奶量</b>"
|
||||||
msgid "Pumping Amount"
|
msgid "Pumping Amount"
|
||||||
msgstr "吸奶量"
|
msgstr "吸奶量"
|
||||||
|
|
||||||
#: reports/graphs/sleep_pattern.py:148
|
#: reports/graphs/sleep_pattern.py:150
|
||||||
msgid "<b>Sleep Pattern</b>"
|
msgid "<b>Sleep Pattern</b>"
|
||||||
msgstr "<b>睡眠类型</b>"
|
msgstr "<b>睡眠类型</b>"
|
||||||
|
|
||||||
#: reports/graphs/sleep_pattern.py:165
|
#: reports/graphs/sleep_pattern.py:167
|
||||||
msgid "Time of day"
|
msgid "Time of day"
|
||||||
msgstr "当日时间"
|
msgstr "当日时间"
|
||||||
|
|
||||||
|
|
24
mkdocs.yml
24
mkdocs.yml
|
@ -8,21 +8,27 @@ markdown_extensions:
|
||||||
nav:
|
nav:
|
||||||
- 'index.md'
|
- 'index.md'
|
||||||
- 'Setup':
|
- 'Setup':
|
||||||
- 'setup/deployment.md'
|
- 'setup/deployment.md'
|
||||||
- 'setup/configuration.md'
|
- 'setup/ssl.md'
|
||||||
- 'setup/ssl.md'
|
- 'setup/subdirectory.md'
|
||||||
- 'setup/subdirectory.md'
|
- 'setup/proxy.md'
|
||||||
- 'setup/proxy.md'
|
- 'Configuration':
|
||||||
|
- 'configuration/intro.md'
|
||||||
|
- 'configuration/application.md'
|
||||||
|
- 'configuration/database.md'
|
||||||
|
- 'configuration/email.md'
|
||||||
|
- 'configuration/security.md'
|
||||||
|
- 'configuration/storage.md'
|
||||||
- 'User Guide':
|
- 'User Guide':
|
||||||
- 'user-guide/getting-started.md'
|
- 'user-guide/getting-started.md'
|
||||||
- 'user-guide/managing-users.md'
|
- 'user-guide/managing-users.md'
|
||||||
- 'user-guide/adding-entries.md'
|
- 'user-guide/adding-entries.md'
|
||||||
- 'user-guide/using-timers.md'
|
- 'user-guide/using-timers.md'
|
||||||
- 'Contributing':
|
- 'Contributing':
|
||||||
- 'contributing/development-environment.md'
|
- 'contributing/development-environment.md'
|
||||||
- 'contributing/translation.md'
|
- 'contributing/translation.md'
|
||||||
- 'contributing/pull-requests.md'
|
- 'contributing/pull-requests.md'
|
||||||
- 'contributing/gulp-command-reference.md'
|
- 'contributing/gulp-command-reference.md'
|
||||||
- 'import-export.md'
|
- 'import-export.md'
|
||||||
- 'api.md'
|
- 'api.md'
|
||||||
theme:
|
theme:
|
||||||
|
|
Loading…
Reference in New Issue