-
+
+
+
+
+
{{ survey_schema['groups'][0]['legend'] }}
+
+
+
+
+
+
+
+
+
+
+ {% if previous_survey is not none %}
+
+
{{ previous_survey['survey_name'] |e }}
+
{{ previous_survey['est_minutes'] |e }} min
+ {% endif %}
+
+
+ {% if next_survey is none %}
+
{{ _('You\'ve finished building your profile!') }}
+ {% else %}
+
+
{{ next_survey['survey_name'] |e }}
+
{{ next_survey['est_minutes'] |e }} min
+ {% endif %}
+
-
-
{% endblock %}
diff --git a/microsetta_interface/tests/test_integration.py b/microsetta_interface/tests/test_integration.py
index 66884fb3..5aacc38e 100644
--- a/microsetta_interface/tests/test_integration.py
+++ b/microsetta_interface/tests/test_integration.py
@@ -88,19 +88,38 @@ def _fake_jwt(email, verified, uniqify=False):
"participant_name": "foo bar",
"age_range": "18-plus",
"parent_1_name": None,
- "parent_2_name": None,
- "deceased_parent": None,
- "obtainer_name": None,
+ "assent_obtainer": None,
"consent_type": "adult_data",
"consent_id": "4f3c5b1e-a16c-485a-b7af-a236409ea0d4"}
-# answer a quesion on each survey
-PRIMARY_SURVEY_SIMPLE = {"112": "1970"}
-COVID_SURVEY_SIMPLE = {"209": "An integration test"}
-FERMENTED_SURVEY_SIMPLE = {"173": "im a test"}
-SURFER_SURVEY_SIMPLE = {"174": "Other"}
-PERSONAL_SURVEY_SIMPLE = {"208": "im definitely a test"}
-OILS_SURVEY_SIMPLE = {"240": "Never"}
+BASIC_INFO_ID = 10
+AT_HOME_ID = 11
+LIFESTYLE_ID = 12
+GUT_ID = 13
+GENERAL_HEALTH_ID = 14
+HEALTH_DIAG_ID = 15
+ALLERGIES_ID = 16
+DIET_ID = 17
+DETAILED_DIET_ID = 18
+COVID19_ID = 21
+OTHER_ID = 22
+VIOSCREEN_ID = 10001
+MYFOODREPO_ID = 10002
+POLYPHENOL_FFQ_ID = 10003
+SPAIN_FFQ_ID = 10004
+
+BASIC_INFO_SIMPLE = {"112": "1970"}
+BASIC_INFO_SIMPLE_ALT = {"112": "1983"}
+AT_HOME_SIMPLE = {"313": "Unspecified"}
+LIFESTYLE_SIMPLE = {"16": "Month"}
+GUT_SIMPLE = {"37": "One"}
+GENERAL_HEALTH_SIMPLE = {"50": "No"}
+HEALTH_DIAGNOSIS_SIMPLE = {"85": "Self-diagnosed"}
+ALLERGIES_SIMPLE = {"53": "Yes"}
+DIET_SIMPLE = {"1": "Omnivore"}
+DETAILED_DIET_SIMPLE = {"56": "Daily"}
+COVID19_SIMPLE = {"209": "Janitor"}
+OTHER_SIMPLE = {"116": "I like microbiomes"}
@unittest.skipIf(not PRIVATE_API_AVAILABLE,
@@ -172,7 +191,7 @@ def _first_ids_from_html(self, page):
def assertPageTitle(self, resp, title, exp_code=200):
self.assertEqual(resp.status_code, exp_code)
data = self._html_page(resp)
- self.assertIn(f'
Microsetta {title} ', data)
+ self.assertIn(f'
Microsetta - {title} ', data)
def assertPageContains(self, resp, string):
data = self._html_page(resp)
@@ -251,12 +270,14 @@ def _new_to_create(self):
body = {"first_name": "a",
"last_name": "b",
"street": "c",
+ "street2": "",
"email": email,
"city": "d",
"state": "e",
"post_code": "f",
"language": "en_US",
- "country_code": "US"
+ "country_code": "US",
+ "consent_privacy_terms": True
}
resp = self.app.post(url, data=body)
@@ -277,7 +298,7 @@ def test_user_with_valid_sample(self):
url = self.redirectURL(resp)
- # we should now be on the source listing page
+ # we should now be on the Account Dashboard page
resp = self.app.get(url)
self.assertPageTitle(resp, 'Account')
@@ -302,8 +323,25 @@ def test_new_human_source_to_sample(self):
resp = self.app.get(url)
self.assertPageTitle(resp, 'Account')
- # sign the consent
account_id, _, _ = self._ids_from_url(url)
+
+ # The account that's used for integration tests has a country
+ # code of GB, which doesn't have access to My Kits. Let's fix that.
+ url = f'/accounts/{account_id}/details'
+ body = {"first_name": "a",
+ "last_name": "b",
+ "email": USER_WITH_VALID_SAMPLE_EMAIL,
+ "street": "c",
+ "street2": "",
+ "city": "d",
+ "state": "e",
+ "post_code": "f",
+ "language": "en_US",
+ "country_code": "US"
+ }
+ _ = self.app.post(url, data=body)
+
+ # sign the consent
url = f'/accounts/{account_id}/create_human_source'
resp = self.app.get(url)
self.assertPageTitle(resp, 'Consent')
@@ -313,24 +351,17 @@ def test_new_human_source_to_sample(self):
resp = self.app.post(url, data=ADULT_CONSENT)
self.assertEqual(resp.status_code, 302)
- self.assertRedirect(resp, 'take_survey?survey_template_id=1')
+ self.assertRedirect(resp, suffix_is_uuid=True)
url = self.redirectURL(resp)
- # let's complete the primary survey, and advance to the covid survey
- survey_body = PRIMARY_SURVEY_SIMPLE
- resp = self.app.post(url, json=survey_body, follow_redirects=True)
+ account_id, source_id, _ = self._ids_from_url(url)
- # we should still be on the survey page, but now for COVID
- self.assertPageTitle(resp, 'Participant Survey')
- data = self._html_page(resp)
- self.assertIn('COVID19', data)
+ # take the Basic Info survey
+ self._complete_basic_survey(account_id, source_id)
- # complete the COVID survey
- survey_body = COVID_SURVEY_SIMPLE
- account_id, source_id, _ = self._ids_from_url(url)
- url = url[:-1] + '6'
- resp = self.app.post(url, json=survey_body, follow_redirects=True)
- self.assertPageTitle(resp, 'Account Samples')
+ # go to the My Kits tab
+ resp = self.app.get(f'/accounts/{account_id}/sources/{source_id}/kits')
+ self.assertPageTitle(resp, "My Kits")
# query for samples
resp = self.app.get(f'/list_kit_samples?kit_name={TEST_KIT_1}')
@@ -352,21 +383,21 @@ def test_new_human_source_to_sample(self):
consent_id = _get_consent_id_from_webpage(page_data, con)
ADULT_CONSENT["consent_id"] = consent_id
ADULT_CONSENT["consent_type"] = "adult_biospecimen"
+ ADULT_CONSENT["sample_ids"] = sample_id
url = f'/accounts/{account_id}/create_human_source'
resp = self.app.post(url, data=ADULT_CONSENT)
url = self.redirectURL(resp)
resp = self.app.get(url)
- self.assertPageTitle(resp, 'Account Samples')
+ self.assertPageTitle(resp, 'My Kits')
data = self._html_page(resp)
- self.assertIn('click on a barcode to provide collection information',
- data)
+ self.assertIn('/static/img/edit.svg', data)
# get collection info
url = f'/accounts/{account_id}/sources/{source_id}/samples/{sample_id}'
resp = self.app.get(url)
self.assertEqual(resp.status_code, 200)
- self.assertPageTitle(resp, 'Sample Information')
+ self.assertPageTitle(resp, 'My Kits')
# set collection info
collection_note = 'SAMPLE COLLECTED BY INTEGRATION TESTING'
@@ -377,64 +408,159 @@ def test_new_human_source_to_sample(self):
'sample_site': 'Stool',
'sample_notes': collection_note}
resp = self.app.post(url, data=body)
- self.assertRedirect(resp, 'after_edit_questionnaire')
+ self.assertRedirect(resp, suffix_is_uuid=False)
url = self.redirectURL(resp)
resp = self.app.get(url)
- self.assertPageTitle(resp, 'Optional Sample Surveys')
+ self.assertPageTitle(resp, 'My Kits')
# verify we have our sample information
# get collection info
url = f'/accounts/{account_id}/sources/{source_id}/samples/{sample_id}'
resp = self.app.get(url)
self.assertEqual(resp.status_code, 200)
- self.assertPageTitle(resp, 'Sample Information')
+ self.assertPageTitle(resp, 'My Kits')
data = self._html_page(resp)
self.assertIn(collection_note, data)
- def _sign_consent(self, account_id, consent=ADULT_CONSENT):
+ def test_take_survey_twice(self):
+ self._login(USER_WITH_VALID_SAMPLE)
+
+ resp = self.app.get('/home')
+ self.assertRedirect(resp, suffix_is_uuid=True)
+
+ url = self.redirectURL(resp)
+ resp = self.app.get(url)
+ self.assertPageTitle(resp, 'Account')
+
+ account_id, _, _ = self._ids_from_url(url)
+
+ # sign the consent
url = f'/accounts/{account_id}/create_human_source'
resp = self.app.get(url)
self.assertPageTitle(resp, 'Consent')
-
page_data = self._html_page(resp)
consent_id = _get_consent_id_from_webpage(page_data, "adult_data")
- consent["consent_id"] = consent_id
- consent["consent_type"] = "adult_data"
- resp = self.app.post(url, data=consent)
- url = resp.headers['Location']
- return self.app.get(url), url
+ ADULT_CONSENT["consent_id"] = consent_id
+ resp = self.app.post(url, data=ADULT_CONSENT)
- def _complete_primary_survey(self, account_id, source_id,
- survey=PRIMARY_SURVEY_SIMPLE):
- return self._complete_local_survey(account_id, source_id, survey, '1')
+ self.assertEqual(resp.status_code, 302)
+ self.assertRedirect(resp, suffix_is_uuid=True)
+
+ url = self.redirectURL(resp)
+ account_id, source_id, _ = self._ids_from_url(url)
- def _complete_oils_survey(self, account_id, source_id,
- survey=OILS_SURVEY_SIMPLE):
- return self._complete_local_survey(account_id, source_id, survey, '7')
+ # take the Basic Info survey
+ self._complete_basic_survey(account_id, source_id)
- def _complete_covid_survey(self, account_id, source_id,
- survey=COVID_SURVEY_SIMPLE):
- return self._complete_local_survey(account_id, source_id, survey, '6')
+ # now let's make sure the answer we provided is available to edit
+ url = f'/accounts/{account_id}/sources/{source_id}/'\
+ f'take_survey?survey_template_id={BASIC_INFO_ID}'
+ resp = self.app.get(url)
- def _complete_fermented_survey(self, account_id, source_id,
- survey=FERMENTED_SURVEY_SIMPLE):
- return self._complete_local_survey(account_id, source_id, survey, '3')
+ # we should see 1970 in the contents
+ data = self._html_page(resp)
+ self.assertIn("1970", data)
- def _complete_personal_survey(self, account_id, source_id,
- survey=PERSONAL_SURVEY_SIMPLE):
- return self._complete_local_survey(account_id, source_id, survey, '5')
+ # now, let's re-submit it with an alternate response
+ self._complete_basic_survey(account_id, source_id,
+ survey=BASIC_INFO_SIMPLE_ALT)
- def _complete_surfer_survey(self, account_id, source_id,
- survey=SURFER_SURVEY_SIMPLE):
- return self._complete_local_survey(account_id, source_id, survey, '4')
+ # and let's make sure the new answer saved
+ url = f'/accounts/{account_id}/sources/{source_id}/'\
+ f'take_survey?survey_template_id={BASIC_INFO_ID}'
+ resp = self.app.get(url)
- def _complete_local_survey(self, account_id, source_id, body, template_id):
- url = (f'/accounts/{account_id}/sources/{source_id}/'
- f'take_survey?survey_template_id={template_id}')
- resp = self.app.post(url, json=body)
+ # we should see 1970 in the contents
+ data = self._html_page(resp)
+ self.assertIn("1983", data)
+
+ def _sign_consent(self, account_id, consent=ADULT_CONSENT):
+ url = f'/accounts/{account_id}/create_human_source'
+ resp = self.app.get(url)
+ self.assertPageTitle(resp, 'Consent')
+
+ page_data = self._html_page(resp)
+ consent_id = _get_consent_id_from_webpage(page_data, "adult_data")
+ consent["consent_id"] = consent_id
+ consent["consent_type"] = "adult_data"
+ resp = self.app.post(url, data=consent)
url = resp.headers['Location']
return self.app.get(url), url
+ def _complete_basic_survey(self, account_id, source_id,
+ survey=BASIC_INFO_SIMPLE):
+ return self._complete_local_survey(
+ account_id, source_id, survey, BASIC_INFO_ID
+ )
+
+ def _complete_at_home_survey(self, account_id, source_id,
+ survey=AT_HOME_SIMPLE):
+ return self._complete_local_survey(
+ account_id, source_id, survey, AT_HOME_ID
+ )
+
+ def _complete_lifestyle_survey(self, account_id, source_id,
+ survey=LIFESTYLE_SIMPLE):
+ return self._complete_local_survey(
+ account_id, source_id, survey, LIFESTYLE_ID
+ )
+
+ def _complete_gut_survey(self, account_id, source_id,
+ survey=GUT_SIMPLE):
+ return self._complete_local_survey(
+ account_id, source_id, survey, GUT_ID
+ )
+
+ def _complete_general_health_survey(self, account_id, source_id,
+ survey=GENERAL_HEALTH_SIMPLE):
+ return self._complete_local_survey(
+ account_id, source_id, survey, GENERAL_HEALTH_ID
+ )
+
+ def _complete_health_diagnosis_survey(self, account_id, source_id,
+ survey=HEALTH_DIAGNOSIS_SIMPLE):
+ return self._complete_local_survey(
+ account_id, source_id, survey, HEALTH_DIAG_ID
+ )
+
+ def _complete_allergies_survey(self, account_id, source_id,
+ survey=ALLERGIES_SIMPLE):
+ return self._complete_local_survey(
+ account_id, source_id, survey, ALLERGIES_ID
+ )
+
+ def _complete_diet_survey(self, account_id, source_id,
+ survey=DIET_SIMPLE):
+ return self._complete_local_survey(
+ account_id, source_id, survey, DIET_ID
+ )
+
+ def _complete_detailed_diet_survey(self, account_id, source_id,
+ survey=DETAILED_DIET_SIMPLE):
+ return self._complete_local_survey(
+ account_id, source_id, survey, DETAILED_DIET_ID
+ )
+
+ def _complete_covid19_survey(self, account_id, source_id,
+ survey=COVID19_SIMPLE):
+ return self._complete_local_survey(
+ account_id, source_id, survey, COVID19_ID
+ )
+
+ def _complete_other_survey(self, account_id, source_id,
+ survey=OTHER_SIMPLE):
+ return self._complete_local_survey(
+ account_id, source_id, survey, OTHER_ID
+ )
+
+ def _complete_local_survey(self, account_id, source_id, body, template_id,
+ target="home"):
+ url = (
+ f'/accounts/{account_id}/sources/{source_id}/'
+ f'take_survey?survey_template_id={template_id}&target={target}'
+ )
+ return self.app.post(url, json=body)
+
def _complete_myfoodrepo_survey(self, account_id, source_id):
url = (f'/accounts/{account_id}/sources/{source_id}/'
f'take_survey?survey_template_id=10002')
@@ -455,49 +581,7 @@ def test_new_user_to_source_listing(self):
account_id, _, _ = self._ids_from_url(url)
resp, url = self._sign_consent(account_id)
account_id, source_id, _ = self._ids_from_url(url)
- self._complete_primary_survey(account_id, source_id)
- resp, url = self._complete_covid_survey(account_id, source_id)
- self.assertPageTitle(resp, 'Account Samples')
-
- def test_existing_user_to_secondary_survey(self):
- # test db doesn't have a completed covid survey, so let's do that
- # logout then back in
- self._login(USER_WITH_VALID_SAMPLE)
- resp = self.app.get('/home', follow_redirects=True)
- page = self._html_page(resp)
- account_id, source_id, _ = self._first_ids_from_html(page)
- self._complete_covid_survey(account_id, source_id)
-
- self._logout()
-
- self._login(USER_WITH_VALID_SAMPLE)
- url = f'/accounts/{account_id}/sources/{source_id}'
- resp = self.app.get(url, follow_redirects=True)
- self.assertPageTitle(resp, 'Consent')
- self.assertPageContains(resp, 'Microsetta Consent')
-
- def test_only_untaken_secondarys_available(self):
- resp, url, user_jwt = self._new_to_create()
- account_id, _, _ = self._ids_from_url(url)
- resp, url = self._sign_consent(account_id)
- account_id, source_id, _ = self._ids_from_url(url)
- self._complete_primary_survey(account_id, source_id)
- self._complete_covid_survey(account_id, source_id)
- self._complete_fermented_survey(account_id, source_id)
-
- url = f'/accounts/{account_id}/sources/{source_id}'
- resp = self.app.get(url, follow_redirects=True)
- self.assertPageTitle(resp, 'Account Samples')
- data = self._html_page(resp)
-
- # we've taken the fermented food survey, so we should not
- # observe its URL in the rendered page
- # TODO: this check will likely break if/when survey editing is allowed
- self.assertIn('survey_template_id=10002', data)
- # removing Personal Microbiome from possible surveys
- # self.assertIn('survey_template_id=5', data)
- self.assertIn('survey_template_id=4', data)
- self.assertNotIn('survey_template_id=3', data)
+ self.assertPageTitle(resp, 'My Profile')
def test_new_source_data_consent(self):
resp, url, user_jwt = self._new_to_create()
diff --git a/microsetta_interface/translations/en_US/LC_MESSAGES/messages.po b/microsetta_interface/translations/en_US/LC_MESSAGES/messages.po
index 1b801fe5..5d46fe56 100644
--- a/microsetta_interface/translations/en_US/LC_MESSAGES/messages.po
+++ b/microsetta_interface/translations/en_US/LC_MESSAGES/messages.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2022-09-01 20:54-0700\n"
+"POT-Creation-Date: 2023-02-15 13:39-0800\n"
"PO-Revision-Date: 2021-05-17 16:56-0700\n"
"Last-Translator: FULL NAME
\n"
"Language: en_US\n"
@@ -18,177 +18,159 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.9.1\n"
-#: implementation.py:476
-msgid "Unable to validate the kit name; please reload the page."
+#: implementation.py:582
+msgid "The provided Kit ID is not in our system or has already been used."
msgstr ""
-#: implementation.py:495
-msgid ""
-"The provided kit id is not valid or has already been used; please re-"
-"check your entry."
+#: implementation.py:1160
+msgid "SKIP"
msgstr ""
-#: implementation.py:1232 model_i18n.py:56
+#: implementation.py:1776 model_i18n.py:58
msgid "Blood (skin prick)"
msgstr ""
-#: implementation.py:1233 model_i18n.py:57
+#: implementation.py:1777 model_i18n.py:59
msgid "Saliva"
msgstr ""
-#: implementation.py:1234 model_i18n.py:69
+#: implementation.py:1778 model_i18n.py:71
msgid "Stool"
msgstr ""
-#: implementation.py:1235 model_i18n.py:64
+#: implementation.py:1779 model_i18n.py:66
msgid "Mouth"
msgstr ""
-#: implementation.py:1236 model_i18n.py:65
+#: implementation.py:1780 model_i18n.py:67
msgid "Nares"
msgstr ""
-#: implementation.py:1237 model_i18n.py:66
+#: implementation.py:1781 model_i18n.py:68
msgid "Nasal mucus"
msgstr ""
-#: implementation.py:1238 model_i18n.py:67
+#: implementation.py:1782 model_i18n.py:69
msgid "Right hand"
msgstr ""
-#: implementation.py:1239 model_i18n.py:62
+#: implementation.py:1783 model_i18n.py:64
msgid "Left hand"
msgstr ""
-#: implementation.py:1240 model_i18n.py:59
+#: implementation.py:1784 model_i18n.py:61
msgid "Forehead"
msgstr ""
-#: implementation.py:1241 model_i18n.py:71
+#: implementation.py:1785 model_i18n.py:73
msgid "Torso"
msgstr ""
-#: implementation.py:1242 model_i18n.py:68
+#: implementation.py:1786 model_i18n.py:70
msgid "Right leg"
msgstr ""
-#: implementation.py:1243 model_i18n.py:63
+#: implementation.py:1787 model_i18n.py:65
msgid "Left leg"
msgstr ""
-#: implementation.py:1244 model_i18n.py:72
+#: implementation.py:1788 model_i18n.py:74
msgid "Vaginal mucus"
msgstr ""
-#: implementation.py:1245 model_i18n.py:70
+#: implementation.py:1789 model_i18n.py:72
msgid "Tears"
msgstr ""
-#: implementation.py:1246 model_i18n.py:58
+#: implementation.py:1790 model_i18n.py:60
msgid "Ear wax"
msgstr ""
-#: implementation.py:1247 model_i18n.py:61
+#: implementation.py:1791 model_i18n.py:63
msgid "Hair"
msgstr ""
-#: implementation.py:1248 model_i18n.py:60
+#: implementation.py:1792 model_i18n.py:62
msgid "Fur"
msgstr ""
-#: implementation.py:1547
+#: implementation.py:2081
msgid "Unable to validate Activation Code at this time"
msgstr ""
-#: implementation.py:1837
+#: implementation.py:2399
msgid "Address 1, Postal Code, and Country are required"
msgstr ""
-#: implementation.py:2173 implementation.py:2214
+#: implementation.py:2811 implementation.py:2923
msgid "Sorry, there was a problem saving your information."
msgstr ""
-#: model_i18n.py:21
+#: model_i18n.py:23
msgid "sample_site"
msgstr ""
-#: model_i18n.py:31
+#: model_i18n.py:33
msgid "source_type"
msgstr ""
-#: model_i18n.py:38
+#: model_i18n.py:40
msgid "survey_template_title"
msgstr ""
-#: model_i18n.py:40
+#: model_i18n.py:42
msgid "description"
msgstr ""
-#: model_i18n.py:77
+#: model_i18n.py:79
msgid "human"
msgstr ""
-#: model_i18n.py:78 templates/account_overview.jinja2:139
+#: model_i18n.py:80
msgid "animal"
msgstr ""
-#: model_i18n.py:79
+#: model_i18n.py:81
msgid "environmental"
msgstr ""
-#: model_i18n.py:84
+#: model_i18n.py:86
msgid "Primary Questionnaire"
msgstr ""
-#: model_i18n.py:85
+#: model_i18n.py:87
msgid "Pet Information"
msgstr ""
-#: model_i18n.py:86
+#: model_i18n.py:88
msgid "Fermented Foods Questionnaire"
msgstr ""
-#: model_i18n.py:87
+#: model_i18n.py:89
msgid "Surfer Questionnaire"
msgstr ""
-#: model_i18n.py:88
+#: model_i18n.py:90
msgid "Personal Microbiome Information"
msgstr ""
-#: model_i18n.py:89
+#: model_i18n.py:91
msgid "COVID-19 Questionnaire"
msgstr ""
-#: model_i18n.py:90
+#: model_i18n.py:92
msgid "Vioscreen Food Frequency Questionnaire"
msgstr ""
-#: model_i18n.py:91
+#: model_i18n.py:93
msgid "Polyphenol Food Frequency Questionnaire"
msgstr ""
-#: model_i18n.py:92
+#: model_i18n.py:94
msgid "Cooking Oils and Oxalate-rich Foods"
msgstr ""
-#: model_i18n.py:96
-msgid "A fermented foods specific questionnaire"
-msgstr ""
-
-#: model_i18n.py:97
-msgid "Questions on surfing behavior"
-msgstr ""
-
#: model_i18n.py:98
-msgid "Questions about your interest in the microbiome"
-msgstr ""
-
-#: model_i18n.py:99
-msgid "Questions related to cooking oils and oxalate-rich foods"
-msgstr ""
-
-#: model_i18n.py:100
msgid ""
"Polyphenols are chemical compounds naturally found in plants that have "
"been shown to provide many beneficial properties. They are antioxidants, "
@@ -198,7 +180,7 @@ msgid ""
"diet."
msgstr ""
-#: model_i18n.py:106
+#: model_i18n.py:104
msgid ""
"Only for participants in Spain: The Food Frequency "
"Questionnaire (FFQ) will ask you about your usual frequency of "
@@ -207,1028 +189,987 @@ msgid ""
"like."
msgstr ""
-#: model_i18n.py:113
+#: model_i18n.py:111
msgid "en_us"
msgstr ""
-#: templates/account_details.jinja2:2 templates/account_details.jinja2:127
-#: templates/account_details.jinja2:131 templates/account_overview.jinja2:47
-#: templates/sitebase.jinja2:80 templates/sitebase.jinja2:82
+#: templates/account_details.jinja2:2 templates/account_details.jinja2:110
+#: templates/account_details.jinja2:115 templates/sitebase.jinja2:84
+#: templates/sitebase.jinja2:86
msgid "Account Details"
msgstr ""
-#: templates/account_details.jinja2:74
+#: templates/account_details.jinja2:41 templates/account_details.jinja2:379
+msgid "Please agree to the Privacy Statement and Terms and Conditions"
+msgstr ""
+
+#: templates/account_details.jinja2:60
#: templates/admin_address_verification.jinja2:41
#: templates/admin_address_verification.jinja2:93
#: templates/admin_interested_user_edit.jinja2:138
-#: templates/submit_interest.jinja2:535 templates/update_address.jinja2:221
+#: templates/submit_interest.jinja2:570 templates/update_address.jinja2:221
msgid "City"
msgstr ""
-#: templates/account_details.jinja2:75
+#: templates/account_details.jinja2:61
#: templates/admin_address_verification.jinja2:45
#: templates/admin_address_verification.jinja2:97
#: templates/admin_interested_user_edit.jinja2:142
-#: templates/submit_interest.jinja2:539 templates/update_address.jinja2:225
+#: templates/submit_interest.jinja2:574 templates/update_address.jinja2:225
msgid "State"
msgstr ""
-#: templates/account_details.jinja2:76
+#: templates/account_details.jinja2:62
msgid "Zip Code"
msgstr ""
-#: templates/account_details.jinja2:79
+#: templates/account_details.jinja2:65
msgid "City/Town"
msgstr ""
-#: templates/account_details.jinja2:80
+#: templates/account_details.jinja2:66
msgid "County/State"
msgstr ""
-#: templates/account_details.jinja2:81
+#: templates/account_details.jinja2:67
msgid "Postcode"
msgstr ""
-#: templates/account_details.jinja2:125 templates/account_overview.jinja2:2
-#: templates/account_overview.jinja2:44 templates/new_results_page.jinja2:1395
-#: templates/sample.jinja2:148 templates/sample_results.jinja2:127
-#: templates/source.jinja2:146
-msgid "Account"
+#: templates/account_details.jinja2:109 templates/account_overview.jinja2:44
+#: templates/consents.jinja2:22 templates/kits.jinja2:168
+#: templates/new_participant.jinja2:191 templates/nutrition.jinja2:87
+#: templates/reports.jinja2:55 templates/sample.jinja2:182
+#: templates/source.jinja2:45 templates/survey.jinja2:164
+msgid "Dashboard"
msgstr ""
-#: templates/account_details.jinja2:135
+#: templates/account_details.jinja2:119
#: templates/admin_activation_codes.jinja2:7
#: templates/admin_activation_codes.jinja2:21
#: templates/admin_activation_codes.jinja2:40 templates/admin_home.jinja2:11
#: templates/admin_interested_user_edit.jinja2:114
-#: templates/admin_interested_users.jinja2:21 templates/sitebase.jinja2:128
+#: templates/admin_interested_users.jinja2:21 templates/sitebase.jinja2:226
msgid "Email"
msgstr ""
-#: templates/account_details.jinja2:139
+#: templates/account_details.jinja2:123
msgid "Prefer to use a different email account? You can change it "
msgstr ""
-#: templates/account_details.jinja2:141
+#: templates/account_details.jinja2:125
msgid "here"
msgstr ""
-#: templates/account_details.jinja2:147
+#: templates/account_details.jinja2:131
#: templates/admin_interested_user_edit.jinja2:106
#: templates/admin_interested_users.jinja2:15
-#: templates/submit_interest.jinja2:305
+#: templates/submit_interest.jinja2:340
msgid "First Name"
msgstr ""
-#: templates/account_details.jinja2:151
+#: templates/account_details.jinja2:135
#: templates/admin_interested_user_edit.jinja2:110
#: templates/admin_interested_users.jinja2:18
-#: templates/submit_interest.jinja2:309
+#: templates/submit_interest.jinja2:344
msgid "Last Name"
msgstr ""
-#: templates/account_details.jinja2:155
+#: templates/account_details.jinja2:139
#: templates/admin_address_verification.jinja2:53
#: templates/admin_address_verification.jinja2:105
#: templates/admin_interested_user_edit.jinja2:164
-#: templates/submit_interest.jinja2:321 templates/update_address.jinja2:246
+#: templates/submit_interest.jinja2:356 templates/update_address.jinja2:246
msgid "Country"
msgstr ""
-#: templates/account_details.jinja2:158 templates/admin_campaign_edit.jinja2:96
-#: templates/submit_interest.jinja2:324
+#: templates/account_details.jinja2:142 templates/admin_campaign_edit.jinja2:96
+#: templates/submit_interest.jinja2:359
msgid "United States"
msgstr ""
-#: templates/account_details.jinja2:159 templates/admin_campaign_edit.jinja2:97
-#: templates/submit_interest.jinja2:325
+#: templates/account_details.jinja2:143 templates/admin_campaign_edit.jinja2:97
+#: templates/submit_interest.jinja2:360
msgid "United Kingdom"
msgstr ""
-#: templates/account_details.jinja2:160 templates/admin_campaign_edit.jinja2:98
-#: templates/submit_interest.jinja2:326
+#: templates/account_details.jinja2:144 templates/admin_campaign_edit.jinja2:98
+#: templates/submit_interest.jinja2:361
msgid "Mexico"
msgstr ""
-#: templates/account_details.jinja2:161 templates/admin_campaign_edit.jinja2:99
-#: templates/submit_interest.jinja2:327
+#: templates/account_details.jinja2:145 templates/admin_campaign_edit.jinja2:99
+#: templates/submit_interest.jinja2:362
msgid "Spain"
msgstr ""
-#: templates/account_details.jinja2:162 templates/submit_interest.jinja2:328
+#: templates/account_details.jinja2:146 templates/submit_interest.jinja2:363
msgid "Afghanistan"
msgstr ""
-#: templates/account_details.jinja2:163 templates/submit_interest.jinja2:329
+#: templates/account_details.jinja2:147 templates/submit_interest.jinja2:364
msgid "Albania"
msgstr ""
-#: templates/account_details.jinja2:164 templates/submit_interest.jinja2:330
+#: templates/account_details.jinja2:148 templates/submit_interest.jinja2:365
msgid "Algeria"
msgstr ""
-#: templates/account_details.jinja2:165 templates/submit_interest.jinja2:331
+#: templates/account_details.jinja2:149 templates/submit_interest.jinja2:366
msgid "Andorra"
msgstr ""
-#: templates/account_details.jinja2:166 templates/submit_interest.jinja2:332
+#: templates/account_details.jinja2:150 templates/submit_interest.jinja2:367
msgid "Angola"
msgstr ""
-#: templates/account_details.jinja2:167 templates/submit_interest.jinja2:333
+#: templates/account_details.jinja2:151 templates/submit_interest.jinja2:368
msgid "Antarctica"
msgstr ""
-#: templates/account_details.jinja2:168 templates/submit_interest.jinja2:334
+#: templates/account_details.jinja2:152 templates/submit_interest.jinja2:369
msgid "Antigua and Barbuda"
msgstr ""
-#: templates/account_details.jinja2:169 templates/submit_interest.jinja2:335
+#: templates/account_details.jinja2:153 templates/submit_interest.jinja2:370
msgid "Argentina"
msgstr ""
-#: templates/account_details.jinja2:170 templates/submit_interest.jinja2:336
+#: templates/account_details.jinja2:154 templates/submit_interest.jinja2:371
msgid "Armenia"
msgstr ""
-#: templates/account_details.jinja2:171 templates/submit_interest.jinja2:337
+#: templates/account_details.jinja2:155 templates/submit_interest.jinja2:372
msgid "Australia"
msgstr ""
-#: templates/account_details.jinja2:172 templates/submit_interest.jinja2:338
+#: templates/account_details.jinja2:156 templates/submit_interest.jinja2:373
msgid "Austria"
msgstr ""
-#: templates/account_details.jinja2:173 templates/submit_interest.jinja2:339
+#: templates/account_details.jinja2:157 templates/submit_interest.jinja2:374
msgid "Azerbaijan"
msgstr ""
-#: templates/account_details.jinja2:174 templates/submit_interest.jinja2:340
+#: templates/account_details.jinja2:158 templates/submit_interest.jinja2:375
msgid "Bahamas"
msgstr ""
-#: templates/account_details.jinja2:175 templates/submit_interest.jinja2:341
+#: templates/account_details.jinja2:159 templates/submit_interest.jinja2:376
msgid "Bahrain"
msgstr ""
-#: templates/account_details.jinja2:176 templates/submit_interest.jinja2:342
+#: templates/account_details.jinja2:160 templates/submit_interest.jinja2:377
msgid "Bangladesh"
msgstr ""
-#: templates/account_details.jinja2:177 templates/submit_interest.jinja2:343
+#: templates/account_details.jinja2:161 templates/submit_interest.jinja2:378
msgid "Barbados"
msgstr ""
-#: templates/account_details.jinja2:178 templates/submit_interest.jinja2:344
+#: templates/account_details.jinja2:162 templates/submit_interest.jinja2:379
msgid "Belarus"
msgstr ""
-#: templates/account_details.jinja2:179 templates/submit_interest.jinja2:345
+#: templates/account_details.jinja2:163 templates/submit_interest.jinja2:380
msgid "Belgium"
msgstr ""
-#: templates/account_details.jinja2:180 templates/submit_interest.jinja2:346
+#: templates/account_details.jinja2:164 templates/submit_interest.jinja2:381
msgid "Belize"
msgstr ""
-#: templates/account_details.jinja2:181 templates/submit_interest.jinja2:347
+#: templates/account_details.jinja2:165 templates/submit_interest.jinja2:382
msgid "Benin"
msgstr ""
-#: templates/account_details.jinja2:182 templates/submit_interest.jinja2:348
+#: templates/account_details.jinja2:166 templates/submit_interest.jinja2:383
msgid "Bermuda"
msgstr ""
-#: templates/account_details.jinja2:183 templates/submit_interest.jinja2:349
+#: templates/account_details.jinja2:167 templates/submit_interest.jinja2:384
msgid "Bhutan"
msgstr ""
-#: templates/account_details.jinja2:184 templates/submit_interest.jinja2:350
+#: templates/account_details.jinja2:168 templates/submit_interest.jinja2:385
msgid "Bolivia"
msgstr ""
-#: templates/account_details.jinja2:185 templates/submit_interest.jinja2:351
+#: templates/account_details.jinja2:169 templates/submit_interest.jinja2:386
msgid "Bosnia and Herzegovina"
msgstr ""
-#: templates/account_details.jinja2:186 templates/submit_interest.jinja2:352
+#: templates/account_details.jinja2:170 templates/submit_interest.jinja2:387
msgid "Botswana"
msgstr ""
-#: templates/account_details.jinja2:187 templates/submit_interest.jinja2:353
+#: templates/account_details.jinja2:171 templates/submit_interest.jinja2:388
msgid "Brazil"
msgstr ""
-#: templates/account_details.jinja2:188 templates/submit_interest.jinja2:354
+#: templates/account_details.jinja2:172 templates/submit_interest.jinja2:389
msgid "Brunei"
msgstr ""
-#: templates/account_details.jinja2:189 templates/submit_interest.jinja2:355
+#: templates/account_details.jinja2:173 templates/submit_interest.jinja2:390
msgid "Bulgaria"
msgstr ""
-#: templates/account_details.jinja2:190 templates/submit_interest.jinja2:356
+#: templates/account_details.jinja2:174 templates/submit_interest.jinja2:391
msgid "Burkina Faso"
msgstr ""
-#: templates/account_details.jinja2:191 templates/submit_interest.jinja2:357
+#: templates/account_details.jinja2:175 templates/submit_interest.jinja2:392
msgid "Burma"
msgstr ""
-#: templates/account_details.jinja2:192 templates/submit_interest.jinja2:358
+#: templates/account_details.jinja2:176 templates/submit_interest.jinja2:393
msgid "Burundi"
msgstr ""
-#: templates/account_details.jinja2:193 templates/submit_interest.jinja2:359
+#: templates/account_details.jinja2:177 templates/submit_interest.jinja2:394
msgid "Cambodia"
msgstr ""
-#: templates/account_details.jinja2:194 templates/submit_interest.jinja2:360
+#: templates/account_details.jinja2:178 templates/submit_interest.jinja2:395
msgid "Cameroon"
msgstr ""
-#: templates/account_details.jinja2:195 templates/submit_interest.jinja2:361
+#: templates/account_details.jinja2:179 templates/submit_interest.jinja2:396
msgid "Canada"
msgstr ""
-#: templates/account_details.jinja2:196 templates/submit_interest.jinja2:362
+#: templates/account_details.jinja2:180 templates/submit_interest.jinja2:397
msgid "Cape Verde"
msgstr ""
-#: templates/account_details.jinja2:197 templates/submit_interest.jinja2:363
+#: templates/account_details.jinja2:181 templates/submit_interest.jinja2:398
msgid "Central African Republic"
msgstr ""
-#: templates/account_details.jinja2:198 templates/submit_interest.jinja2:364
+#: templates/account_details.jinja2:182 templates/submit_interest.jinja2:399
msgid "Chad"
msgstr ""
-#: templates/account_details.jinja2:199 templates/submit_interest.jinja2:365
+#: templates/account_details.jinja2:183 templates/submit_interest.jinja2:400
msgid "Chile"
msgstr ""
-#: templates/account_details.jinja2:200 templates/submit_interest.jinja2:366
+#: templates/account_details.jinja2:184 templates/submit_interest.jinja2:401
msgid "China"
msgstr ""
-#: templates/account_details.jinja2:201 templates/submit_interest.jinja2:367
+#: templates/account_details.jinja2:185 templates/submit_interest.jinja2:402
msgid "Colombia"
msgstr ""
-#: templates/account_details.jinja2:202 templates/submit_interest.jinja2:368
+#: templates/account_details.jinja2:186 templates/submit_interest.jinja2:403
msgid "Comoros"
msgstr ""
-#: templates/account_details.jinja2:203 templates/submit_interest.jinja2:369
+#: templates/account_details.jinja2:187 templates/submit_interest.jinja2:404
msgid "Congo, Democratic Republic"
msgstr ""
-#: templates/account_details.jinja2:204 templates/submit_interest.jinja2:370
+#: templates/account_details.jinja2:188 templates/submit_interest.jinja2:405
msgid "Congo, Republic of the"
msgstr ""
-#: templates/account_details.jinja2:205 templates/submit_interest.jinja2:371
+#: templates/account_details.jinja2:189 templates/submit_interest.jinja2:406
msgid "Costa Rica"
msgstr ""
-#: templates/account_details.jinja2:206 templates/submit_interest.jinja2:372
+#: templates/account_details.jinja2:190 templates/submit_interest.jinja2:407
msgid "Cote d'Ivoire"
msgstr ""
-#: templates/account_details.jinja2:207 templates/submit_interest.jinja2:373
+#: templates/account_details.jinja2:191 templates/submit_interest.jinja2:408
msgid "Croatia"
msgstr ""
-#: templates/account_details.jinja2:208 templates/submit_interest.jinja2:374
+#: templates/account_details.jinja2:192 templates/submit_interest.jinja2:409
msgid "Cuba"
msgstr ""
-#: templates/account_details.jinja2:209 templates/submit_interest.jinja2:375
+#: templates/account_details.jinja2:193 templates/submit_interest.jinja2:410
msgid "Cyprus"
msgstr ""
-#: templates/account_details.jinja2:210 templates/submit_interest.jinja2:376
+#: templates/account_details.jinja2:194 templates/submit_interest.jinja2:411
msgid "Czech Republic"
msgstr ""
-#: templates/account_details.jinja2:211 templates/submit_interest.jinja2:377
+#: templates/account_details.jinja2:195 templates/submit_interest.jinja2:412
msgid "Denmark"
msgstr ""
-#: templates/account_details.jinja2:212 templates/submit_interest.jinja2:378
+#: templates/account_details.jinja2:196 templates/submit_interest.jinja2:413
msgid "Djibouti"
msgstr ""
-#: templates/account_details.jinja2:213 templates/submit_interest.jinja2:379
+#: templates/account_details.jinja2:197 templates/submit_interest.jinja2:414
msgid "Dominica"
msgstr ""
-#: templates/account_details.jinja2:214 templates/submit_interest.jinja2:380
+#: templates/account_details.jinja2:198 templates/submit_interest.jinja2:415
msgid "Dominican Republic"
msgstr ""
-#: templates/account_details.jinja2:215 templates/submit_interest.jinja2:381
+#: templates/account_details.jinja2:199 templates/submit_interest.jinja2:416
msgid "East Timor"
msgstr ""
-#: templates/account_details.jinja2:216 templates/submit_interest.jinja2:382
+#: templates/account_details.jinja2:200 templates/submit_interest.jinja2:417
msgid "Ecuador"
msgstr ""
-#: templates/account_details.jinja2:217 templates/submit_interest.jinja2:383
+#: templates/account_details.jinja2:201 templates/submit_interest.jinja2:418
msgid "Egypt"
msgstr ""
-#: templates/account_details.jinja2:218 templates/submit_interest.jinja2:384
+#: templates/account_details.jinja2:202 templates/submit_interest.jinja2:419
msgid "El Salvador"
msgstr ""
-#: templates/account_details.jinja2:219 templates/submit_interest.jinja2:385
+#: templates/account_details.jinja2:203 templates/submit_interest.jinja2:420
msgid "Equatorial Guinea"
msgstr ""
-#: templates/account_details.jinja2:220 templates/submit_interest.jinja2:386
+#: templates/account_details.jinja2:204 templates/submit_interest.jinja2:421
msgid "Eritrea"
msgstr ""
-#: templates/account_details.jinja2:221 templates/submit_interest.jinja2:387
+#: templates/account_details.jinja2:205 templates/submit_interest.jinja2:422
msgid "Estonia"
msgstr ""
-#: templates/account_details.jinja2:222 templates/submit_interest.jinja2:388
+#: templates/account_details.jinja2:206 templates/submit_interest.jinja2:423
msgid "Ethiopia"
msgstr ""
-#: templates/account_details.jinja2:223 templates/submit_interest.jinja2:389
+#: templates/account_details.jinja2:207 templates/submit_interest.jinja2:424
msgid "Fiji"
msgstr ""
-#: templates/account_details.jinja2:224 templates/submit_interest.jinja2:390
+#: templates/account_details.jinja2:208 templates/submit_interest.jinja2:425
msgid "Finland"
msgstr ""
-#: templates/account_details.jinja2:225 templates/submit_interest.jinja2:391
+#: templates/account_details.jinja2:209 templates/submit_interest.jinja2:426
msgid "France"
msgstr ""
-#: templates/account_details.jinja2:226 templates/submit_interest.jinja2:392
+#: templates/account_details.jinja2:210 templates/submit_interest.jinja2:427
msgid "Gabon"
msgstr ""
-#: templates/account_details.jinja2:227 templates/submit_interest.jinja2:393
+#: templates/account_details.jinja2:211 templates/submit_interest.jinja2:428
msgid "Gambia"
msgstr ""
-#: templates/account_details.jinja2:228 templates/submit_interest.jinja2:394
+#: templates/account_details.jinja2:212 templates/submit_interest.jinja2:429
msgid "Georgia"
msgstr ""
-#: templates/account_details.jinja2:229 templates/submit_interest.jinja2:395
+#: templates/account_details.jinja2:213 templates/submit_interest.jinja2:430
msgid "Germany"
msgstr ""
-#: templates/account_details.jinja2:230 templates/submit_interest.jinja2:396
+#: templates/account_details.jinja2:214 templates/submit_interest.jinja2:431
msgid "Ghana"
msgstr ""
-#: templates/account_details.jinja2:231 templates/submit_interest.jinja2:397
+#: templates/account_details.jinja2:215 templates/submit_interest.jinja2:432
msgid "Greece"
msgstr ""
-#: templates/account_details.jinja2:232 templates/submit_interest.jinja2:398
+#: templates/account_details.jinja2:216 templates/submit_interest.jinja2:433
msgid "Greenland"
msgstr ""
-#: templates/account_details.jinja2:233 templates/submit_interest.jinja2:399
+#: templates/account_details.jinja2:217 templates/submit_interest.jinja2:434
msgid "Grenada"
msgstr ""
-#: templates/account_details.jinja2:234 templates/submit_interest.jinja2:400
+#: templates/account_details.jinja2:218 templates/submit_interest.jinja2:435
msgid "Guatemala"
msgstr ""
-#: templates/account_details.jinja2:235 templates/submit_interest.jinja2:401
+#: templates/account_details.jinja2:219 templates/submit_interest.jinja2:436
msgid "Guinea"
msgstr ""
-#: templates/account_details.jinja2:236 templates/submit_interest.jinja2:402
+#: templates/account_details.jinja2:220 templates/submit_interest.jinja2:437
msgid "Guinea-Bissau"
msgstr ""
-#: templates/account_details.jinja2:237 templates/submit_interest.jinja2:403
+#: templates/account_details.jinja2:221 templates/submit_interest.jinja2:438
msgid "Guyana"
msgstr ""
-#: templates/account_details.jinja2:238 templates/submit_interest.jinja2:404
+#: templates/account_details.jinja2:222 templates/submit_interest.jinja2:439
msgid "Haiti"
msgstr ""
-#: templates/account_details.jinja2:239 templates/submit_interest.jinja2:405
+#: templates/account_details.jinja2:223 templates/submit_interest.jinja2:440
msgid "Honduras"
msgstr ""
-#: templates/account_details.jinja2:240 templates/submit_interest.jinja2:406
+#: templates/account_details.jinja2:224 templates/submit_interest.jinja2:441
msgid "Hong Kong"
msgstr ""
-#: templates/account_details.jinja2:241 templates/submit_interest.jinja2:407
+#: templates/account_details.jinja2:225 templates/submit_interest.jinja2:442
msgid "Hungary"
msgstr ""
-#: templates/account_details.jinja2:242 templates/submit_interest.jinja2:408
+#: templates/account_details.jinja2:226 templates/submit_interest.jinja2:443
msgid "Iceland"
msgstr ""
-#: templates/account_details.jinja2:243 templates/submit_interest.jinja2:409
+#: templates/account_details.jinja2:227 templates/submit_interest.jinja2:444
msgid "India"
msgstr ""
-#: templates/account_details.jinja2:244 templates/submit_interest.jinja2:410
+#: templates/account_details.jinja2:228 templates/submit_interest.jinja2:445
msgid "Indonesia"
msgstr ""
-#: templates/account_details.jinja2:245 templates/submit_interest.jinja2:411
+#: templates/account_details.jinja2:229 templates/submit_interest.jinja2:446
msgid "Iran"
msgstr ""
-#: templates/account_details.jinja2:246 templates/submit_interest.jinja2:412
+#: templates/account_details.jinja2:230 templates/submit_interest.jinja2:447
msgid "Iraq"
msgstr ""
-#: templates/account_details.jinja2:247 templates/submit_interest.jinja2:413
+#: templates/account_details.jinja2:231 templates/submit_interest.jinja2:448
msgid "Ireland"
msgstr ""
-#: templates/account_details.jinja2:248 templates/submit_interest.jinja2:414
+#: templates/account_details.jinja2:232 templates/submit_interest.jinja2:449
msgid "Israel"
msgstr ""
-#: templates/account_details.jinja2:249 templates/submit_interest.jinja2:415
+#: templates/account_details.jinja2:233 templates/submit_interest.jinja2:450
msgid "Italy"
msgstr ""
-#: templates/account_details.jinja2:250 templates/submit_interest.jinja2:416
+#: templates/account_details.jinja2:234 templates/submit_interest.jinja2:451
msgid "Jamaica"
msgstr ""
-#: templates/account_details.jinja2:251 templates/submit_interest.jinja2:417
+#: templates/account_details.jinja2:235
+#: templates/admin_campaign_edit.jinja2:100
+#: templates/submit_interest.jinja2:452
msgid "Japan"
msgstr ""
-#: templates/account_details.jinja2:252 templates/submit_interest.jinja2:418
+#: templates/account_details.jinja2:236 templates/submit_interest.jinja2:453
msgid "Jordan"
msgstr ""
-#: templates/account_details.jinja2:253 templates/submit_interest.jinja2:419
+#: templates/account_details.jinja2:237 templates/submit_interest.jinja2:454
msgid "Kazakhstan"
msgstr ""
-#: templates/account_details.jinja2:254 templates/submit_interest.jinja2:420
+#: templates/account_details.jinja2:238 templates/submit_interest.jinja2:455
msgid "Kenya"
msgstr ""
-#: templates/account_details.jinja2:255 templates/submit_interest.jinja2:421
+#: templates/account_details.jinja2:239 templates/submit_interest.jinja2:456
msgid "Kiribati"
msgstr ""
-#: templates/account_details.jinja2:256 templates/submit_interest.jinja2:422
+#: templates/account_details.jinja2:240 templates/submit_interest.jinja2:457
msgid "Korea North"
msgstr ""
-#: templates/account_details.jinja2:257 templates/submit_interest.jinja2:423
+#: templates/account_details.jinja2:241 templates/submit_interest.jinja2:458
msgid "Korea South"
msgstr ""
-#: templates/account_details.jinja2:258 templates/submit_interest.jinja2:424
+#: templates/account_details.jinja2:242 templates/submit_interest.jinja2:459
msgid "Kuwait"
msgstr ""
-#: templates/account_details.jinja2:259 templates/submit_interest.jinja2:425
+#: templates/account_details.jinja2:243 templates/submit_interest.jinja2:460
msgid "Kyrgyzstan"
msgstr ""
-#: templates/account_details.jinja2:260 templates/submit_interest.jinja2:426
+#: templates/account_details.jinja2:244 templates/submit_interest.jinja2:461
msgid "Laos"
msgstr ""
-#: templates/account_details.jinja2:261 templates/submit_interest.jinja2:427
+#: templates/account_details.jinja2:245 templates/submit_interest.jinja2:462
msgid "Latvia"
msgstr ""
-#: templates/account_details.jinja2:262 templates/submit_interest.jinja2:428
+#: templates/account_details.jinja2:246 templates/submit_interest.jinja2:463
msgid "Lebanon"
msgstr ""
-#: templates/account_details.jinja2:263 templates/submit_interest.jinja2:429
+#: templates/account_details.jinja2:247 templates/submit_interest.jinja2:464
msgid "Lesotho"
msgstr ""
-#: templates/account_details.jinja2:264 templates/submit_interest.jinja2:430
+#: templates/account_details.jinja2:248 templates/submit_interest.jinja2:465
msgid "Liberia"
msgstr ""
-#: templates/account_details.jinja2:265 templates/submit_interest.jinja2:431
+#: templates/account_details.jinja2:249 templates/submit_interest.jinja2:466
msgid "Libya"
msgstr ""
-#: templates/account_details.jinja2:266 templates/submit_interest.jinja2:432
+#: templates/account_details.jinja2:250 templates/submit_interest.jinja2:467
msgid "Liechtenstein"
msgstr ""
-#: templates/account_details.jinja2:267 templates/submit_interest.jinja2:433
+#: templates/account_details.jinja2:251 templates/submit_interest.jinja2:468
msgid "Lithuania"
msgstr ""
-#: templates/account_details.jinja2:268 templates/submit_interest.jinja2:434
+#: templates/account_details.jinja2:252 templates/submit_interest.jinja2:469
msgid "Luxembourg"
msgstr ""
-#: templates/account_details.jinja2:269 templates/submit_interest.jinja2:435
+#: templates/account_details.jinja2:253 templates/submit_interest.jinja2:470
msgid "Macedonia"
msgstr ""
-#: templates/account_details.jinja2:270 templates/submit_interest.jinja2:436
+#: templates/account_details.jinja2:254 templates/submit_interest.jinja2:471
msgid "Madagascar"
msgstr ""
-#: templates/account_details.jinja2:271 templates/submit_interest.jinja2:437
+#: templates/account_details.jinja2:255 templates/submit_interest.jinja2:472
msgid "Malawi"
msgstr ""
-#: templates/account_details.jinja2:272 templates/submit_interest.jinja2:438
+#: templates/account_details.jinja2:256 templates/submit_interest.jinja2:473
msgid "Malaysia"
msgstr ""
-#: templates/account_details.jinja2:273 templates/submit_interest.jinja2:439
+#: templates/account_details.jinja2:257 templates/submit_interest.jinja2:474
msgid "Maldives"
msgstr ""
-#: templates/account_details.jinja2:274 templates/submit_interest.jinja2:440
+#: templates/account_details.jinja2:258 templates/submit_interest.jinja2:475
msgid "Mali"
msgstr ""
-#: templates/account_details.jinja2:275 templates/submit_interest.jinja2:441
+#: templates/account_details.jinja2:259 templates/submit_interest.jinja2:476
msgid "Malta"
msgstr ""
-#: templates/account_details.jinja2:276 templates/submit_interest.jinja2:442
+#: templates/account_details.jinja2:260 templates/submit_interest.jinja2:477
msgid "Marshall Islands"
msgstr ""
-#: templates/account_details.jinja2:277 templates/submit_interest.jinja2:443
+#: templates/account_details.jinja2:261 templates/submit_interest.jinja2:478
msgid "Mauritania"
msgstr ""
-#: templates/account_details.jinja2:278 templates/submit_interest.jinja2:444
+#: templates/account_details.jinja2:262 templates/submit_interest.jinja2:479
msgid "Mauritius"
msgstr ""
-#: templates/account_details.jinja2:279 templates/submit_interest.jinja2:445
+#: templates/account_details.jinja2:263 templates/submit_interest.jinja2:480
msgid "Micronesia"
msgstr ""
-#: templates/account_details.jinja2:280 templates/submit_interest.jinja2:446
+#: templates/account_details.jinja2:264 templates/submit_interest.jinja2:481
msgid "Moldova"
msgstr ""
-#: templates/account_details.jinja2:281 templates/submit_interest.jinja2:447
+#: templates/account_details.jinja2:265 templates/submit_interest.jinja2:482
msgid "Mongolia"
msgstr ""
-#: templates/account_details.jinja2:282 templates/submit_interest.jinja2:448
+#: templates/account_details.jinja2:266 templates/submit_interest.jinja2:483
msgid "Montenegro"
msgstr ""
-#: templates/account_details.jinja2:283 templates/submit_interest.jinja2:449
+#: templates/account_details.jinja2:267 templates/submit_interest.jinja2:484
msgid "Morocco"
msgstr ""
-#: templates/account_details.jinja2:284 templates/submit_interest.jinja2:450
+#: templates/account_details.jinja2:268 templates/submit_interest.jinja2:485
msgid "Monaco"
msgstr ""
-#: templates/account_details.jinja2:285 templates/submit_interest.jinja2:451
+#: templates/account_details.jinja2:269 templates/submit_interest.jinja2:486
msgid "Mozambique"
msgstr ""
-#: templates/account_details.jinja2:286 templates/submit_interest.jinja2:452
+#: templates/account_details.jinja2:270 templates/submit_interest.jinja2:487
msgid "Namibia"
msgstr ""
-#: templates/account_details.jinja2:287 templates/submit_interest.jinja2:453
+#: templates/account_details.jinja2:271 templates/submit_interest.jinja2:488
msgid "Nauru"
msgstr ""
-#: templates/account_details.jinja2:288 templates/submit_interest.jinja2:454
+#: templates/account_details.jinja2:272 templates/submit_interest.jinja2:489
msgid "Nepal"
msgstr ""
-#: templates/account_details.jinja2:289 templates/submit_interest.jinja2:455
+#: templates/account_details.jinja2:273 templates/submit_interest.jinja2:490
msgid "Netherlands"
msgstr ""
-#: templates/account_details.jinja2:290 templates/submit_interest.jinja2:456
+#: templates/account_details.jinja2:274 templates/submit_interest.jinja2:491
msgid "New Zealand"
msgstr ""
-#: templates/account_details.jinja2:291 templates/submit_interest.jinja2:457
+#: templates/account_details.jinja2:275 templates/submit_interest.jinja2:492
msgid "Nicaragua"
msgstr ""
-#: templates/account_details.jinja2:292 templates/submit_interest.jinja2:458
+#: templates/account_details.jinja2:276 templates/submit_interest.jinja2:493
msgid "Niger"
msgstr ""
-#: templates/account_details.jinja2:293 templates/submit_interest.jinja2:459
+#: templates/account_details.jinja2:277 templates/submit_interest.jinja2:494
msgid "Nigeria"
msgstr ""
-#: templates/account_details.jinja2:294 templates/submit_interest.jinja2:460
+#: templates/account_details.jinja2:278 templates/submit_interest.jinja2:495
msgid "Norway"
msgstr ""
-#: templates/account_details.jinja2:295 templates/submit_interest.jinja2:461
+#: templates/account_details.jinja2:279 templates/submit_interest.jinja2:496
msgid "Oman"
msgstr ""
-#: templates/account_details.jinja2:296 templates/submit_interest.jinja2:462
+#: templates/account_details.jinja2:280 templates/submit_interest.jinja2:497
msgid "Pakistan"
msgstr ""
-#: templates/account_details.jinja2:297 templates/submit_interest.jinja2:463
+#: templates/account_details.jinja2:281 templates/submit_interest.jinja2:498
msgid "Panama"
msgstr ""
-#: templates/account_details.jinja2:298 templates/submit_interest.jinja2:464
+#: templates/account_details.jinja2:282 templates/submit_interest.jinja2:499
msgid "Papua New Guinea"
msgstr ""
-#: templates/account_details.jinja2:299 templates/submit_interest.jinja2:465
+#: templates/account_details.jinja2:283 templates/submit_interest.jinja2:500
msgid "Paraguay"
msgstr ""
-#: templates/account_details.jinja2:300 templates/submit_interest.jinja2:466
+#: templates/account_details.jinja2:284 templates/submit_interest.jinja2:501
msgid "Peru"
msgstr ""
-#: templates/account_details.jinja2:301 templates/submit_interest.jinja2:467
+#: templates/account_details.jinja2:285 templates/submit_interest.jinja2:502
msgid "Philippines"
msgstr ""
-#: templates/account_details.jinja2:302 templates/submit_interest.jinja2:468
+#: templates/account_details.jinja2:286 templates/submit_interest.jinja2:503
msgid "Poland"
msgstr ""
-#: templates/account_details.jinja2:303 templates/submit_interest.jinja2:469
+#: templates/account_details.jinja2:287 templates/submit_interest.jinja2:504
msgid "Portugal"
msgstr ""
-#: templates/account_details.jinja2:304 templates/submit_interest.jinja2:470
+#: templates/account_details.jinja2:288 templates/submit_interest.jinja2:505
msgid "Qatar"
msgstr ""
-#: templates/account_details.jinja2:305 templates/submit_interest.jinja2:471
+#: templates/account_details.jinja2:289 templates/submit_interest.jinja2:506
msgid "Romania"
msgstr ""
-#: templates/account_details.jinja2:306 templates/submit_interest.jinja2:472
+#: templates/account_details.jinja2:290 templates/submit_interest.jinja2:507
msgid "Russia"
msgstr ""
-#: templates/account_details.jinja2:307 templates/submit_interest.jinja2:473
+#: templates/account_details.jinja2:291 templates/submit_interest.jinja2:508
msgid "Rwanda"
msgstr ""
-#: templates/account_details.jinja2:308 templates/submit_interest.jinja2:474
+#: templates/account_details.jinja2:292 templates/submit_interest.jinja2:509
msgid "Samoa"
msgstr ""
-#: templates/account_details.jinja2:309 templates/submit_interest.jinja2:475
+#: templates/account_details.jinja2:293 templates/submit_interest.jinja2:510
msgid "San Marino"
msgstr ""
-#: templates/account_details.jinja2:310 templates/submit_interest.jinja2:476
+#: templates/account_details.jinja2:294 templates/submit_interest.jinja2:511
msgid "Sao Tome"
msgstr ""
-#: templates/account_details.jinja2:311 templates/submit_interest.jinja2:477
+#: templates/account_details.jinja2:295 templates/submit_interest.jinja2:512
msgid "Saudi Arabia"
msgstr ""
-#: templates/account_details.jinja2:312 templates/submit_interest.jinja2:478
+#: templates/account_details.jinja2:296 templates/submit_interest.jinja2:513
msgid "Senegal"
msgstr ""
-#: templates/account_details.jinja2:313 templates/submit_interest.jinja2:479
+#: templates/account_details.jinja2:297 templates/submit_interest.jinja2:514
msgid "Serbia"
msgstr ""
-#: templates/account_details.jinja2:314 templates/submit_interest.jinja2:480
+#: templates/account_details.jinja2:298 templates/submit_interest.jinja2:515
msgid "Seychelles"
msgstr ""
-#: templates/account_details.jinja2:315 templates/submit_interest.jinja2:481
+#: templates/account_details.jinja2:299 templates/submit_interest.jinja2:516
msgid "Sierra Leone"
msgstr ""
-#: templates/account_details.jinja2:316 templates/submit_interest.jinja2:482
+#: templates/account_details.jinja2:300 templates/submit_interest.jinja2:517
msgid "Singapore"
msgstr ""
-#: templates/account_details.jinja2:317 templates/submit_interest.jinja2:483
+#: templates/account_details.jinja2:301 templates/submit_interest.jinja2:518
msgid "Slovakia"
msgstr ""
-#: templates/account_details.jinja2:318 templates/submit_interest.jinja2:484
+#: templates/account_details.jinja2:302 templates/submit_interest.jinja2:519
msgid "Slovenia"
msgstr ""
-#: templates/account_details.jinja2:319 templates/submit_interest.jinja2:485
+#: templates/account_details.jinja2:303 templates/submit_interest.jinja2:520
msgid "Solomon Islands"
msgstr ""
-#: templates/account_details.jinja2:320 templates/submit_interest.jinja2:486
+#: templates/account_details.jinja2:304 templates/submit_interest.jinja2:521
msgid "Somalia"
msgstr ""
-#: templates/account_details.jinja2:321 templates/submit_interest.jinja2:487
+#: templates/account_details.jinja2:305 templates/submit_interest.jinja2:522
msgid "South Africa"
msgstr ""
-#: templates/account_details.jinja2:322 templates/submit_interest.jinja2:488
+#: templates/account_details.jinja2:306 templates/submit_interest.jinja2:523
msgid "Sri Lanka"
msgstr ""
-#: templates/account_details.jinja2:323 templates/submit_interest.jinja2:489
+#: templates/account_details.jinja2:307 templates/submit_interest.jinja2:524
msgid "Sudan"
msgstr ""
-#: templates/account_details.jinja2:324 templates/submit_interest.jinja2:490
+#: templates/account_details.jinja2:308 templates/submit_interest.jinja2:525
msgid "Suriname"
msgstr ""
-#: templates/account_details.jinja2:325 templates/submit_interest.jinja2:491
+#: templates/account_details.jinja2:309 templates/submit_interest.jinja2:526
msgid "Swaziland"
msgstr ""
-#: templates/account_details.jinja2:326 templates/submit_interest.jinja2:492
+#: templates/account_details.jinja2:310 templates/submit_interest.jinja2:527
msgid "Sweden"
msgstr ""
-#: templates/account_details.jinja2:327 templates/submit_interest.jinja2:493
+#: templates/account_details.jinja2:311 templates/submit_interest.jinja2:528
msgid "Switzerland"
msgstr ""
-#: templates/account_details.jinja2:328 templates/submit_interest.jinja2:494
+#: templates/account_details.jinja2:312 templates/submit_interest.jinja2:529
msgid "Syria"
msgstr ""
-#: templates/account_details.jinja2:329 templates/submit_interest.jinja2:495
+#: templates/account_details.jinja2:313 templates/submit_interest.jinja2:530
msgid "Taiwan"
msgstr ""
-#: templates/account_details.jinja2:330 templates/submit_interest.jinja2:496
+#: templates/account_details.jinja2:314 templates/submit_interest.jinja2:531
msgid "Tajikistan"
msgstr ""
-#: templates/account_details.jinja2:331 templates/submit_interest.jinja2:497
+#: templates/account_details.jinja2:315 templates/submit_interest.jinja2:532
msgid "Tanzania"
msgstr ""
-#: templates/account_details.jinja2:332 templates/submit_interest.jinja2:498
+#: templates/account_details.jinja2:316 templates/submit_interest.jinja2:533
msgid "Thailand"
msgstr ""
-#: templates/account_details.jinja2:333 templates/submit_interest.jinja2:499
+#: templates/account_details.jinja2:317 templates/submit_interest.jinja2:534
msgid "Togo"
msgstr ""
-#: templates/account_details.jinja2:334 templates/submit_interest.jinja2:500
+#: templates/account_details.jinja2:318 templates/submit_interest.jinja2:535
msgid "Tonga"
msgstr ""
-#: templates/account_details.jinja2:335 templates/submit_interest.jinja2:501
+#: templates/account_details.jinja2:319 templates/submit_interest.jinja2:536
msgid "Trinidad and Tobago"
msgstr ""
-#: templates/account_details.jinja2:336 templates/submit_interest.jinja2:502
+#: templates/account_details.jinja2:320 templates/submit_interest.jinja2:537
msgid "Tunisia"
msgstr ""
-#: templates/account_details.jinja2:337 templates/submit_interest.jinja2:503
+#: templates/account_details.jinja2:321 templates/submit_interest.jinja2:538
msgid "Turkey"
msgstr ""
-#: templates/account_details.jinja2:338 templates/submit_interest.jinja2:504
+#: templates/account_details.jinja2:322 templates/submit_interest.jinja2:539
msgid "Turkmenistan"
msgstr ""
-#: templates/account_details.jinja2:339 templates/submit_interest.jinja2:505
+#: templates/account_details.jinja2:323 templates/submit_interest.jinja2:540
msgid "Uganda"
msgstr ""
-#: templates/account_details.jinja2:340 templates/submit_interest.jinja2:506
+#: templates/account_details.jinja2:324 templates/submit_interest.jinja2:541
msgid "Ukraine"
msgstr ""
-#: templates/account_details.jinja2:341 templates/submit_interest.jinja2:507
+#: templates/account_details.jinja2:325 templates/submit_interest.jinja2:542
msgid "United Arab Emirates"
msgstr ""
-#: templates/account_details.jinja2:342 templates/submit_interest.jinja2:508
+#: templates/account_details.jinja2:326 templates/submit_interest.jinja2:543
msgid "Uruguay"
msgstr ""
-#: templates/account_details.jinja2:343 templates/submit_interest.jinja2:509
+#: templates/account_details.jinja2:327 templates/submit_interest.jinja2:544
msgid "Uzbekistan"
msgstr ""
-#: templates/account_details.jinja2:344 templates/submit_interest.jinja2:510
+#: templates/account_details.jinja2:328 templates/submit_interest.jinja2:545
msgid "Vanuatu"
msgstr ""
-#: templates/account_details.jinja2:345 templates/submit_interest.jinja2:511
+#: templates/account_details.jinja2:329 templates/submit_interest.jinja2:546
msgid "Venezuela"
msgstr ""
-#: templates/account_details.jinja2:346 templates/submit_interest.jinja2:512
+#: templates/account_details.jinja2:330 templates/submit_interest.jinja2:547
msgid "Viet nam"
msgstr ""
-#: templates/account_details.jinja2:347 templates/submit_interest.jinja2:513
+#: templates/account_details.jinja2:331 templates/submit_interest.jinja2:548
msgid "Yemen"
msgstr ""
-#: templates/account_details.jinja2:348 templates/submit_interest.jinja2:514
+#: templates/account_details.jinja2:332 templates/submit_interest.jinja2:549
msgid "Zambia"
msgstr ""
-#: templates/account_details.jinja2:349 templates/submit_interest.jinja2:515
+#: templates/account_details.jinja2:333 templates/submit_interest.jinja2:550
msgid "Zimbabwe"
msgstr ""
-#: templates/account_details.jinja2:353
-msgid "Street Address"
+#: templates/account_details.jinja2:337
+msgid "Address Line 1"
msgstr ""
-#: templates/account_details.jinja2:373
-msgid "Preferred language for future communications"
-msgstr ""
-
-#: templates/account_details.jinja2:386
-msgid "Activation Info"
+#: templates/account_details.jinja2:341
+msgid "Address Line 2"
msgstr ""
-#: templates/account_details.jinja2:390
-msgid "Kit ID"
+#: templates/account_details.jinja2:361
+msgid "Preferred language for future communications"
msgstr ""
-#: templates/account_details.jinja2:393
-msgid "OR"
+#: templates/account_details.jinja2:377
+msgid ""
+"I agree to the Privacy Statement and accept the Terms and Conditions "
msgstr ""
-#: templates/account_details.jinja2:395
-#: templates/admin_activation_codes.jinja2:14
-msgid "Activation Code"
+#: templates/account_details.jinja2:384 templates/submit_interest.jinja2:600
+msgid "Next"
msgstr ""
-#: templates/account_details.jinja2:402 templates/account_details.jinja2:404
+#: templates/account_details.jinja2:386 templates/sample.jinja2:242
msgid "Save"
msgstr ""
-#: templates/account_details.jinja2:412
+#: templates/account_details.jinja2:395
msgid "Danger zone"
msgstr ""
-#: templates/account_details.jinja2:416
+#: templates/account_details.jinja2:399
msgid "Delete or scrub the account."
msgstr ""
-#: templates/account_details.jinja2:419
+#: templates/account_details.jinja2:402
msgid ""
"If the account has any samples associated, the account and sources will "
"be scrubbed, meaning all free text and identifiable information is "
"removed."
msgstr ""
-#: templates/account_details.jinja2:422
+#: templates/account_details.jinja2:405
msgid "Otherwise, the account and any sources will be deleted"
msgstr ""
-#: templates/account_details.jinja2:425
+#: templates/account_details.jinja2:408
msgid ""
"IMPORTANT: you must manually delete the email from Authrocket and other "
"external services like MyEmma to complete the process"
msgstr ""
-#: templates/account_details.jinja2:428
+#: templates/account_details.jinja2:411
msgid "ACCOUNT DELETION CANNOT BE UNDONE"
msgstr ""
-#: templates/account_details.jinja2:431
+#: templates/account_details.jinja2:414
msgid "Delete Account"
msgstr ""
-#: templates/account_overview.jinja2:53
-msgid "View Account Details"
+#: templates/account_overview.jinja2:2 templates/new_results_page.jinja2:1318
+#: templates/sample_results.jinja2:127
+msgid "Account"
msgstr ""
-#: templates/account_overview.jinja2:58
-msgid "Sources"
+#: templates/account_overview.jinja2:51
+msgid "Active Profiles"
msgstr ""
-#: templates/account_overview.jinja2:62
-msgid "You have now set up your account! Please proceed to identify your source."
+#: templates/account_overview.jinja2:59
+msgid "Go to My Profile"
msgstr ""
#: templates/account_overview.jinja2:66
-msgid ""
-"Choose a source to assign samples to by clicking on a name, listed in "
-"blue below:"
+msgid "Add New Profile"
msgstr ""
-#: templates/account_overview.jinja2:71
-msgid "Name"
-msgstr ""
-
-#: templates/account_overview.jinja2:74
-msgid "Source type"
-msgstr ""
-
-#: templates/account_overview.jinja2:95
-msgid "What is the Source of Your Sample?"
+#: templates/account_overview.jinja2:67
+msgid "Select the type of profile you would like to create."
msgstr ""
-#: templates/account_overview.jinja2:103
-msgid ""
-"Our lab needs to know what type of sample(s) you are submitting (a.k.a. "
-"the \"source\"). Add a new source and assign samples to it so we can "
-"perform the correct analysis in our laboratory."
+#: templates/account_overview.jinja2:71
+msgid "Human Profile"
msgstr ""
-#: templates/account_overview.jinja2:108
+#: templates/account_overview.jinja2:72
msgid ""
-"If you have multiple sources, you may add one source at a time. You can "
-"return to this page after you finish registering the first one."
-msgstr ""
-
-#: templates/account_overview.jinja2:114
-msgid "Human Source"
-msgstr ""
-
-#: templates/account_overview.jinja2:116 templates/account_overview.jinja2:118
-#: templates/account_overview.jinja2:139
-msgid "Collect sample(s) from"
-msgstr ""
-
-#: templates/account_overview.jinja2:116
-msgid "yourself"
-msgstr ""
-
-#: templates/account_overview.jinja2:116 templates/account_overview.jinja2:118
-#: templates/account_overview.jinja2:139
-msgid "(e.g. fecal, saliva, skin, etc.)"
-msgstr ""
-
-#: templates/account_overview.jinja2:118
-msgid "someone else"
-msgstr ""
-
-#: templates/account_overview.jinja2:121 templates/account_overview.jinja2:131
-#: templates/account_overview.jinja2:144
-msgid "Select"
-msgstr ""
-
-#: templates/account_overview.jinja2:126
-msgid "Environmental Source"
-msgstr ""
-
-#: templates/account_overview.jinja2:128
-msgid "Collect sample(s) from a"
+"Share your diet, health, and lifestyle details to help discover more "
+"about how this affects the human microbiome."
msgstr ""
-#: templates/account_overview.jinja2:128
-msgid "surface"
+#: templates/account_overview.jinja2:73
+msgid "Add Human Profile"
msgstr ""
-#: templates/account_overview.jinja2:128
-msgid "(e.g. kitchen counter, backyard soil, food, etc.)"
+#: templates/account_overview.jinja2:81
+msgid "Pet Profile"
msgstr ""
-#: templates/account_overview.jinja2:136
-msgid "Animal Source"
+#: templates/account_overview.jinja2:82
+msgid "Share sample(s) from an animal (e.g. fecal, saliva, skin, etc.)"
msgstr ""
-#: templates/account_overview.jinja2:139
-msgid "your pet"
+#: templates/account_overview.jinja2:83 templates/account_overview.jinja2:91
+msgid "Coming Soon"
msgstr ""
-#: templates/account_overview.jinja2:139
-msgid "or an"
+#: templates/account_overview.jinja2:89
+msgid "Environment Profile"
msgstr ""
-#: templates/account_overview.jinja2:141
-msgid "Animal sources are currently unavailable."
+#: templates/account_overview.jinja2:90
+msgid "Share sample(s) from the environment (e.g. kitchen counter, food, etc.)"
msgstr ""
#: templates/admin_activation_codes.jinja2:2
@@ -1249,12 +1190,17 @@ msgstr ""
msgid "Search by Activation Code"
msgstr ""
+#: templates/admin_activation_codes.jinja2:14
+msgid "Activation Code"
+msgstr ""
+
#: templates/admin_activation_codes.jinja2:20
msgid "Generate Activation Code"
msgstr ""
#: templates/admin_activation_codes.jinja2:23
#: templates/admin_activation_codes.jinja2:31
+#: templates/admin_ffq_codes.jinja2:8 templates/admin_ffq_codes.jinja2:20
msgid "Generate"
msgstr ""
@@ -1312,28 +1258,28 @@ msgstr ""
#: templates/admin_address_verification.jinja2:29
#: templates/admin_address_verification.jinja2:81
#: templates/admin_interested_user_edit.jinja2:122
-#: templates/submit_interest.jinja2:523 templates/update_address.jinja2:209
+#: templates/submit_interest.jinja2:558 templates/update_address.jinja2:209
msgid "Address 1"
msgstr ""
#: templates/admin_address_verification.jinja2:33
#: templates/admin_address_verification.jinja2:85
#: templates/admin_interested_user_edit.jinja2:126
-#: templates/submit_interest.jinja2:527 templates/update_address.jinja2:213
+#: templates/submit_interest.jinja2:562 templates/update_address.jinja2:213
msgid "Address 2"
msgstr ""
#: templates/admin_address_verification.jinja2:37
#: templates/admin_address_verification.jinja2:89
#: templates/admin_interested_user_edit.jinja2:132
-#: templates/submit_interest.jinja2:531 templates/update_address.jinja2:217
+#: templates/submit_interest.jinja2:566 templates/update_address.jinja2:217
msgid "Address 3"
msgstr ""
#: templates/admin_address_verification.jinja2:49
#: templates/admin_address_verification.jinja2:101
#: templates/admin_interested_user_edit.jinja2:146
-#: templates/submit_interest.jinja2:545 templates/update_address.jinja2:231
+#: templates/submit_interest.jinja2:580 templates/update_address.jinja2:231
msgid "Postal Code"
msgstr ""
@@ -1361,8 +1307,7 @@ msgstr ""
msgid "Search Qiita"
msgstr ""
-#: templates/admin_barcode_search.jinja2:97 templates/sample.jinja2:162
-#: templates/source.jinja2:161
+#: templates/admin_barcode_search.jinja2:97
msgid "Barcode"
msgstr ""
@@ -1428,18 +1373,26 @@ msgstr ""
msgid "Permitted Countries"
msgstr ""
-#: templates/admin_campaign_edit.jinja2:104
+#: templates/admin_campaign_edit.jinja2:105
#: templates/admin_campaign_list.jinja2:20
msgid "Accepting Participants"
msgstr ""
-#: templates/admin_campaign_edit.jinja2:113
+#: templates/admin_campaign_edit.jinja2:114
+msgid "Send THDMI Confirmation Email"
+msgstr ""
+
+#: templates/admin_campaign_edit.jinja2:123
+msgid "Force Primary Language on Form"
+msgstr ""
+
+#: templates/admin_campaign_edit.jinja2:132
#: templates/admin_interested_user_edit.jinja2:170
-#: templates/submit_interest.jinja2:566 templates/update_address.jinja2:254
+#: templates/submit_interest.jinja2:601 templates/update_address.jinja2:254
msgid "Submit"
msgstr ""
-#: templates/admin_campaign_list.jinja2:5 templates/sitebase.jinja2:50
+#: templates/admin_campaign_list.jinja2:5 templates/sitebase.jinja2:61
msgid "Campaigns"
msgstr ""
@@ -1451,6 +1404,22 @@ msgstr ""
msgid "No campaigns found"
msgstr ""
+#: templates/admin_ffq_codes.jinja2:2
+msgid "Admin FFQ Codes"
+msgstr ""
+
+#: templates/admin_ffq_codes.jinja2:6
+msgid "Generate Single Code"
+msgstr ""
+
+#: templates/admin_ffq_codes.jinja2:17
+msgid "Generate Multiple Codes and download CSV File"
+msgstr ""
+
+#: templates/admin_ffq_codes.jinja2:18
+msgid "Number of Codes"
+msgstr ""
+
#: templates/admin_home.jinja2:2 templates/admin_interested_users.jinja2:2
msgid "ADMINISTRATOR MODE"
msgstr ""
@@ -1461,31 +1430,31 @@ msgstr ""
#: templates/admin_interested_user_edit.jinja2:30
#: templates/admin_interested_user_edit.jinja2:64
-#: templates/submit_interest.jinja2:193
+#: templates/submit_interest.jinja2:228
msgid "Please enter a valid phone number."
msgstr ""
#: templates/admin_interested_user_edit.jinja2:31
#: templates/admin_interested_user_edit.jinja2:65
-#: templates/submit_interest.jinja2:197 templates/update_address.jinja2:130
+#: templates/submit_interest.jinja2:232 templates/update_address.jinja2:130
msgid "Please enter your street address."
msgstr ""
#: templates/admin_interested_user_edit.jinja2:32
#: templates/admin_interested_user_edit.jinja2:66
-#: templates/submit_interest.jinja2:198 templates/update_address.jinja2:131
+#: templates/submit_interest.jinja2:233 templates/update_address.jinja2:131
msgid "Please enter your city."
msgstr ""
#: templates/admin_interested_user_edit.jinja2:33
#: templates/admin_interested_user_edit.jinja2:67
-#: templates/submit_interest.jinja2:199 templates/update_address.jinja2:132
+#: templates/submit_interest.jinja2:234 templates/update_address.jinja2:132
msgid "Please select your state."
msgstr ""
#: templates/admin_interested_user_edit.jinja2:35
#: templates/admin_interested_user_edit.jinja2:69
-#: templates/submit_interest.jinja2:201 templates/update_address.jinja2:134
+#: templates/submit_interest.jinja2:236 templates/update_address.jinja2:134
msgid "Please enter your postal code."
msgstr ""
@@ -1504,11 +1473,11 @@ msgid "Phone"
msgstr ""
#: templates/admin_interested_user_edit.jinja2:152
-#: templates/submit_interest.jinja2:549 templates/update_address.jinja2:235
+#: templates/submit_interest.jinja2:584 templates/update_address.jinja2:235
msgid "Address Type"
msgstr ""
-#: templates/admin_interested_users.jinja2:5 templates/sitebase.jinja2:48
+#: templates/admin_interested_users.jinja2:5 templates/sitebase.jinja2:59
msgid "Interested Users"
msgstr ""
@@ -1565,6 +1534,23 @@ msgstr ""
msgid "dark"
msgstr ""
+#: templates/consents.jinja2:2 templates/consents.jinja2:30
+#: templates/sitebase.jinja2:183
+msgid "Consent Documents"
+msgstr ""
+
+#: templates/consents.jinja2:38
+msgid "Survey"
+msgstr ""
+
+#: templates/consents.jinja2:55
+msgid "Biospecimen"
+msgstr ""
+
+#: templates/consents.jinja2:59
+msgid "View"
+msgstr ""
+
#: templates/create_nonhuman_source.jinja2:2
msgid "Create Non-human Source"
msgstr ""
@@ -1638,13 +1624,11 @@ msgid "Embedded PDF"
msgstr ""
#: templates/embedded_pdf.jinja2:25
-msgid ""
-"This report is generated by a third party without information regarding "
-"age, height or weight."
+msgid "This report is generated by a third party."
msgstr ""
#: templates/emperor.jinja2:2 templates/emperor.jinja2:65
-#: templates/sitebase.jinja2:45
+#: templates/sitebase.jinja2:58
msgid "Emperor Playground"
msgstr ""
@@ -1681,31 +1665,111 @@ msgstr ""
msgid "Error"
msgstr ""
-#: templates/home.jinja2:2 templates/sitebase.jinja2:105
-#: templates/submit_interest.jinja2:2
+#: templates/home.jinja2:2 templates/submit_interest.jinja2:2
#: templates/submit_interest_confirm.jinja2:2 templates/update_address.jinja2:2
#: templates/update_address_confirm.jinja2:2
msgid "Home"
msgstr ""
-#: templates/home.jinja2:34
+#: templates/home.jinja2:30
msgid "Welcome!"
msgstr ""
-#: templates/home.jinja2:38
-msgid "SIGN UP"
+#: templates/home.jinja2:35 templates/sitebase.jinja2:91
+msgid "Sign Up"
+msgstr ""
+
+#: templates/home.jinja2:40 templates/sitebase.jinja2:90
+msgid "Log In"
+msgstr ""
+
+#: templates/kits.jinja2:2 templates/kits.jinja2:177 templates/kits.jinja2:197
+#: templates/reports.jinja2:63 templates/sample.jinja2:2
+#: templates/sample.jinja2:184 templates/sitebase.jinja2:133
+#: templates/sitebase.jinja2:155 templates/sitebase.jinja2:157
+msgid "My Kits"
+msgstr ""
+
+#: templates/kits.jinja2:62 templates/kits.jinja2:214 templates/kits.jinja2:262
+msgid "KitID"
+msgstr ""
+
+#: templates/kits.jinja2:98 templates/reports.jinja2:26
+msgid "View Results"
+msgstr ""
+
+#: templates/kits.jinja2:183
+msgid ""
+"Currently, \"My Kits\" is unavailable in your country or region. We "
+"apologize for any inconvenience."
+msgstr ""
+
+#: templates/kits.jinja2:192
+msgid ""
+"Click on the following link if you would like to contribute to receive a "
+"kit"
+msgstr ""
+
+#: templates/kits.jinja2:192 templates/kits.jinja2:205
+msgid "Get a Kit"
+msgstr ""
+
+#: templates/kits.jinja2:203
+msgid "Have a KitID"
+msgstr ""
+
+#: templates/kits.jinja2:231 templates/reports.jinja2:75
+msgid "Sample Received - Results Pending"
+msgstr ""
+
+#: templates/kits.jinja2:249
+msgid "To register your kit, enter your Kit ID below"
+msgstr ""
+
+#: templates/kits.jinja2:255
+msgid "Register Kit"
+msgstr ""
+
+#: templates/kits.jinja2:265
+msgid "Which barcode(s) are you using from this kit (select all that apply)?"
+msgstr ""
+
+#: templates/kits.jinja2:265
+msgid "Each collection tube you receive has a unique barcode printed on the side."
msgstr ""
-#: templates/home.jinja2:42
-msgid "Already have an account?"
+#: templates/kits.jinja2:266
+msgid "1. Select the barcode(s) you are using"
msgstr ""
-#: templates/home.jinja2:43
-msgid "Welcome back!"
+#: templates/kits.jinja2:267
+msgid ""
+"2. Add the date and time of sample collection and select the sample type "
+"taken."
+msgstr ""
+
+#: templates/kits.jinja2:268
+msgid "Important"
+msgstr ""
+
+#: templates/kits.jinja2:269
+msgid ""
+"The sample cannot be processed in the lab until this information is "
+"complete."
+msgstr ""
+
+#: templates/kits.jinja2:270
+msgid ""
+"Keep a record of these details. The barcode is needed to resolve any "
+"issues you may have with your sample collection."
+msgstr ""
+
+#: templates/kits.jinja2:270
+msgid "What is the barcode and why is it important?"
msgstr ""
-#: templates/home.jinja2:43
-msgid "LOG IN"
+#: templates/kits.jinja2:275
+msgid "Confirm"
msgstr ""
#: templates/myfoodrepo_no_slots.jinja2:2
@@ -1735,33 +1799,107 @@ msgstr ""
msgid "Back to Samples"
msgstr ""
-#: templates/new_participant.jinja2:2 templates/new_participant.jinja2:194
+#: templates/new_participant.jinja2:2 templates/signed_consent.jinja2:2
msgid "Consent"
msgstr ""
-#: templates/new_participant.jinja2:119 templates/new_participant.jinja2:120
-#: templates/new_participant.jinja2:121 templates/new_participant.jinja2:122
+#: templates/new_participant.jinja2:31 templates/new_participant.jinja2:32
+#: templates/new_participant.jinja2:33 templates/new_participant.jinja2:34
msgid "Saving..."
msgstr ""
-#: templates/new_participant.jinja2:144
+#: templates/new_participant.jinja2:60 templates/new_participant.jinja2:84
+#: templates/new_participant.jinja2:101 templates/new_participant.jinja2:103
+#: templates/new_participant.jinja2:118 templates/new_participant.jinja2:255
+#: templates/new_participant.jinja2:355 templates/new_participant.jinja2:396
+#: templates/new_participant.jinja2:425 templates/new_participant.jinja2:468
+msgid "Please confirm that you have read this form."
+msgstr ""
+
+#: templates/new_participant.jinja2:61 templates/new_participant.jinja2:81
+#: templates/new_participant.jinja2:102 templates/new_participant.jinja2:119
+#: templates/new_participant.jinja2:266 templates/new_participant.jinja2:316
+#: templates/new_participant.jinja2:407 templates/new_participant.jinja2:479
+msgid "Please enter the participant name."
+msgstr ""
+
+#: templates/new_participant.jinja2:62 templates/new_participant.jinja2:85
+#: templates/new_participant.jinja2:104 templates/new_participant.jinja2:277
+#: templates/new_participant.jinja2:366 templates/new_participant.jinja2:436
+msgid "Please enter the parent or guardian name."
+msgstr ""
+
+#: templates/new_participant.jinja2:80 templates/new_participant.jinja2:305
+msgid "Please confirm that you will be in this study."
+msgstr ""
+
+#: templates/new_participant.jinja2:82 templates/new_participant.jinja2:327
msgid ""
-"It looks like you are creating a new source that may be similar or the "
-"same as an existing source. If this is the same person as an existing "
-"source, please consider providing new samples or survey responses under "
-"that source"
+"Please confirm that the participant is voluntarily and knowingly giving "
+"consent."
msgstr ""
-#: templates/new_participant.jinja2:229 templates/new_participant.jinja2:273
-#: templates/new_participant.jinja2:307 templates/new_participant.jinja2:328
-msgid "https://oag.ca.gov/sites/all/files/agweb/pdfs/research/bill_of_rights.pdf"
+#: templates/new_participant.jinja2:83 templates/new_participant.jinja2:338
+msgid "Please enter the name of the person obtaining assent."
msgstr ""
-#: templates/new_participant.jinja2:240 templates/new_participant.jinja2:280
-#: templates/new_participant.jinja2:314 templates/new_participant.jinja2:336
+#: templates/new_participant.jinja2:143
+msgid ""
+"It looks like you are creating a new profile that may be similar or the "
+"same as an existing profile. If this is the same person as an existing "
+"profile, please consider providing new samples or survey responses under "
+"that profile."
+msgstr ""
+
+#: templates/new_participant.jinja2:162 templates/new_participant.jinja2:176
+#: templates/new_participant.jinja2:283 templates/new_participant.jinja2:372
+#: templates/new_participant.jinja2:442 templates/new_participant.jinja2:485
msgid "I Accept"
msgstr ""
+#: templates/new_participant.jinja2:193
+msgid "Biospecimen Consent Form"
+msgstr ""
+
+#: templates/new_participant.jinja2:195
+msgid "Data Consent Form"
+msgstr ""
+
+#: templates/new_participant.jinja2:206
+msgid ""
+"Signature and agreement of this consent form is required to process your "
+"sample(s)."
+msgstr ""
+
+#: templates/new_participant.jinja2:212
+msgid "Select age range of participant"
+msgstr ""
+
+#: templates/new_participant.jinja2:252 templates/new_participant.jinja2:352
+#: templates/new_participant.jinja2:422 templates/new_participant.jinja2:465
+#: templates/signed_consent.jinja2:23 templates/signed_consent.jinja2:107
+#: templates/signed_consent.jinja2:163 templates/signed_consent.jinja2:200
+msgid "https://oag.ca.gov/sites/all/files/agweb/pdfs/research/bill_of_rights.pdf"
+msgstr ""
+
+#: templates/new_participant.jinja2:282 templates/new_participant.jinja2:371
+#: templates/new_participant.jinja2:441 templates/new_participant.jinja2:484
+#: templates/sample.jinja2:241
+msgid "Cancel"
+msgstr ""
+
+#: templates/new_participant.jinja2:496
+msgid "Warning"
+msgstr ""
+
+#: templates/new_participant.jinja2:502
+msgid "Return to Home Page"
+msgstr ""
+
+#: templates/new_participant.jinja2:503
+msgid "Proceed with Creating New Source"
+msgstr ""
+
#: templates/new_results_page.jinja2:2 templates/sample_results.jinja2:2
msgid "Sample Results"
msgstr ""
@@ -1794,7 +1932,7 @@ msgstr ""
msgid "8 or more hours"
msgstr ""
-#: templates/new_results_page.jinja2:223 templates/new_results_page.jinja2:958
+#: templates/new_results_page.jinja2:223 templates/new_results_page.jinja2:870
msgid "Daily"
msgstr ""
@@ -1810,17 +1948,17 @@ msgstr ""
msgid "More than 30"
msgstr ""
-#: templates/new_results_page.jinja2:227 templates/new_results_page.jinja2:954
+#: templates/new_results_page.jinja2:227 templates/new_results_page.jinja2:866
msgid "Never"
msgstr ""
#: templates/new_results_page.jinja2:228 templates/new_results_page.jinja2:233
#: templates/new_results_page.jinja2:234 templates/new_results_page.jinja2:235
-#: templates/new_results_page.jinja2:943 templates/new_results_page.jinja2:953
+#: templates/new_results_page.jinja2:855 templates/new_results_page.jinja2:865
msgid "Not provided"
msgstr ""
-#: templates/new_results_page.jinja2:229 templates/new_results_page.jinja2:956
+#: templates/new_results_page.jinja2:229 templates/new_results_page.jinja2:868
msgid "Occasionally (1-2 times/week)"
msgstr ""
@@ -1828,133 +1966,193 @@ msgstr ""
msgid "Rarely (a few times/month)"
msgstr ""
-#: templates/new_results_page.jinja2:231 templates/new_results_page.jinja2:955
+#: templates/new_results_page.jinja2:231 templates/new_results_page.jinja2:867
msgid "Rarely (less than once/week)"
msgstr ""
-#: templates/new_results_page.jinja2:232 templates/new_results_page.jinja2:957
+#: templates/new_results_page.jinja2:232 templates/new_results_page.jinja2:869
msgid "Regularly (3-5 times/week)"
msgstr ""
-#: templates/new_results_page.jinja2:426
-msgid "All of the Microsetta Initiative"
+#: templates/new_results_page.jinja2:319
+msgid "Microbiomes Across the Body"
msgstr ""
-#: templates/new_results_page.jinja2:436 templates/new_results_page.jinja2:447
-msgid "Multipopulation"
+#: templates/new_results_page.jinja2:322
+msgid ""
+"In this map, we've placed your sample relative to all the other samples "
+"we have in Microsetta. As you can see, there are a few different types of"
+" samples people have contributed, and the microbial configurations "
+"present can be REALLY different."
msgstr ""
+#: templates/new_results_page.jinja2:327 templates/new_results_page.jinja2:351
#: templates/new_results_page.jinja2:458
-msgid "You and the Microbes Around You"
+msgid "Microbiomes Across the World"
+msgstr ""
+
+#: templates/new_results_page.jinja2:330 templates/new_results_page.jinja2:354
+msgid ""
+"Researchers have noted large differences in our microbiomes depending on "
+"where we live. The reason WHY is not well understood, but we suspect "
+"factors such as diet or environmental exposures (e.g., plants, what's in "
+"your house, pollution, how often you come in contact with soil, etc) may "
+"be be major factors."
+msgstr ""
+
+#: templates/new_results_page.jinja2:330 templates/new_results_page.jinja2:354
+msgid ""
+"Researchers do not know how much these differences matter! They certainly"
+" may."
+msgstr ""
+
+#: templates/new_results_page.jinja2:335 templates/new_results_page.jinja2:359
+#: templates/new_results_page.jinja2:463
+msgid "Microbiomes Across the Lifespan"
+msgstr ""
+
+#: templates/new_results_page.jinja2:338 templates/new_results_page.jinja2:362
+msgid ""
+"One major factor associated with gut microbiomes is the age of the "
+"individual, emphasized here by life stages."
+msgstr ""
+
+#: templates/new_results_page.jinja2:338 templates/new_results_page.jinja2:362
+msgid ""
+"Interestingly, infants are relatively similar microbially regardless of "
+"where they were born. But, as individuals age, it seems like their "
+"microbiomes reflect regional or population differences."
+msgstr ""
+
+#: templates/new_results_page.jinja2:343 templates/new_results_page.jinja2:449
+msgid "Microbiomes in the Environment"
msgstr ""
-#: templates/new_results_page.jinja2:521
+#: templates/new_results_page.jinja2:346
+msgid ""
+"Microbes are EVERYWHERE though! Using these same techniques described "
+"above, we compared your microbiome to samples collected from all over the"
+" surfaces from a brand new hospital."
+msgstr ""
+
+#: templates/new_results_page.jinja2:346
+msgid ""
+"As you can see, skin samples tend to more closely resemble those from the"
+" built environment, which makes sense as skin cells are constantly "
+"shedding from you."
+msgstr ""
+
+#: templates/new_results_page.jinja2:453
+msgid "The Microsetta Initiative"
+msgstr ""
+
+#: templates/new_results_page.jinja2:480
msgid "Publication link"
msgstr ""
-#: templates/new_results_page.jinja2:523
+#: templates/new_results_page.jinja2:482
msgid "Data access (Qiita study"
msgstr ""
-#: templates/new_results_page.jinja2:713
+#: templates/new_results_page.jinja2:625
msgid "Download the spreadsheet"
msgstr ""
-#: templates/new_results_page.jinja2:720
+#: templates/new_results_page.jinja2:632
msgid ""
"The broadest classification like Bacteria, Archaea and Eukaryokes (what "
"humans are!)"
msgstr ""
-#: templates/new_results_page.jinja2:723
+#: templates/new_results_page.jinja2:635
msgid ""
"Within the kingdom Eukarya, this is like the difference between humans "
"and plants"
msgstr ""
-#: templates/new_results_page.jinja2:726
+#: templates/new_results_page.jinja2:638
msgid "Within the phylum Chordata, this is along the lines of humans and fish"
msgstr ""
-#: templates/new_results_page.jinja2:729
+#: templates/new_results_page.jinja2:641
msgid ""
"Within the class Mammalia, this is like the difference between whales and"
" a dogs"
msgstr ""
-#: templates/new_results_page.jinja2:732
+#: templates/new_results_page.jinja2:644
msgid "With the order Carnivora are the families for dogs and cats"
msgstr ""
-#: templates/new_results_page.jinja2:735
+#: templates/new_results_page.jinja2:647
msgid ""
"Within the family Canidae, you would find a genus for foxes and one for "
"wolves"
msgstr ""
-#: templates/new_results_page.jinja2:922 templates/new_results_page.jinja2:925
-#: templates/new_results_page.jinja2:931 templates/new_results_page.jinja2:939
-#: templates/new_results_page.jinja2:942 templates/new_results_page.jinja2:952
+#: templates/new_results_page.jinja2:834 templates/new_results_page.jinja2:837
+#: templates/new_results_page.jinja2:843 templates/new_results_page.jinja2:851
+#: templates/new_results_page.jinja2:854 templates/new_results_page.jinja2:864
msgid "Unspecified"
msgstr ""
-#: templates/new_results_page.jinja2:932
+#: templates/new_results_page.jinja2:844
msgid "chose not to provide their age"
msgstr ""
-#: templates/new_results_page.jinja2:934
+#: templates/new_results_page.jinja2:846
msgid "is"
msgstr ""
-#: templates/new_results_page.jinja2:934
+#: templates/new_results_page.jinja2:846
msgid "years old"
msgstr ""
-#: templates/new_results_page.jinja2:967 templates/new_results_page.jinja2:979
+#: templates/new_results_page.jinja2:879 templates/new_results_page.jinja2:891
msgid "chose not to say how many sweets they eat"
msgstr ""
-#: templates/new_results_page.jinja2:969
+#: templates/new_results_page.jinja2:881
msgid "eats sweets"
msgstr ""
-#: templates/new_results_page.jinja2:973
+#: templates/new_results_page.jinja2:885
msgid "eats more sugary sweets than you"
msgstr ""
-#: templates/new_results_page.jinja2:975
+#: templates/new_results_page.jinja2:887
msgid "eats fewer sugary sweets than you"
msgstr ""
-#: templates/new_results_page.jinja2:977
+#: templates/new_results_page.jinja2:889
msgid "eats about the same number of sugary sweets as you"
msgstr ""
-#: templates/new_results_page.jinja2:1217
+#: templates/new_results_page.jinja2:1129
msgid "Rank Distributions"
msgstr ""
-#: templates/new_results_page.jinja2:1235
+#: templates/new_results_page.jinja2:1147
msgid "My Sample"
msgstr ""
-#: templates/new_results_page.jinja2:1241
+#: templates/new_results_page.jinja2:1153
msgid "How abundant are my microbes compared everyone in Microsetta?"
msgstr ""
-#: templates/new_results_page.jinja2:1244
+#: templates/new_results_page.jinja2:1156
msgid "Common types of microbes"
msgstr ""
-#: templates/new_results_page.jinja2:1250
+#: templates/new_results_page.jinja2:1162
msgid "Least Abundant"
msgstr ""
-#: templates/new_results_page.jinja2:1250
+#: templates/new_results_page.jinja2:1162
msgid "Most Abundant"
msgstr ""
-#: templates/new_results_page.jinja2:1268
+#: templates/new_results_page.jinja2:1192
msgid ""
"whole genome sequencing, a technique that produces a large number of "
"small DNA sequences from all of the microbial genomes in your sample. "
@@ -1962,7 +2160,7 @@ msgid ""
"microbes of the same species."
msgstr ""
-#: templates/new_results_page.jinja2:1271
+#: templates/new_results_page.jinja2:1195
msgid ""
"16S. This technique produces DNA sequences from a specific variable "
"region (V4) within a microbial gene (the 16S small subunit ribosomal "
@@ -1971,54 +2169,52 @@ msgid ""
"microbes that may be present in your sample."
msgstr ""
-#: templates/new_results_page.jinja2:1396 templates/sample.jinja2:149
-#: templates/sample_results.jinja2:128
+#: templates/new_results_page.jinja2:1319 templates/sample_results.jinja2:128
msgid "Source"
msgstr ""
-#: templates/new_results_page.jinja2:1397 templates/sample_results.jinja2:129
-#: templates/source.jinja2:171
+#: templates/new_results_page.jinja2:1320 templates/sample_results.jinja2:129
msgid "Results"
msgstr ""
-#: templates/new_results_page.jinja2:1406
-#: templates/new_results_page.jinja2:1420
+#: templates/new_results_page.jinja2:1329
+#: templates/new_results_page.jinja2:1343
msgid "How do you compare?"
msgstr ""
-#: templates/new_results_page.jinja2:1407
-#: templates/new_results_page.jinja2:1432
-#: templates/new_results_page.jinja2:1434
-#: templates/new_results_page.jinja2:1465
+#: templates/new_results_page.jinja2:1330
+#: templates/new_results_page.jinja2:1355
+#: templates/new_results_page.jinja2:1357
+#: templates/new_results_page.jinja2:1388
msgid "Diversity"
msgstr ""
-#: templates/new_results_page.jinja2:1408
-#: templates/new_results_page.jinja2:1440
-#: templates/new_results_page.jinja2:1442
-#: templates/new_results_page.jinja2:1534
+#: templates/new_results_page.jinja2:1331
+#: templates/new_results_page.jinja2:1363
+#: templates/new_results_page.jinja2:1365
+#: templates/new_results_page.jinja2:1457
msgid "Similarity"
msgstr ""
-#: templates/new_results_page.jinja2:1409
-#: templates/new_results_page.jinja2:1448
-#: templates/new_results_page.jinja2:1450
+#: templates/new_results_page.jinja2:1332
+#: templates/new_results_page.jinja2:1371
+#: templates/new_results_page.jinja2:1373
msgid "Your Inner Zoo"
msgstr ""
-#: templates/new_results_page.jinja2:1410
-#: templates/new_results_page.jinja2:1456
-#: templates/new_results_page.jinja2:1458
-#: templates/new_results_page.jinja2:1763
+#: templates/new_results_page.jinja2:1333
+#: templates/new_results_page.jinja2:1379
+#: templates/new_results_page.jinja2:1381
+#: templates/new_results_page.jinja2:1670
msgid "Microbiome Map"
msgstr ""
-#: templates/new_results_page.jinja2:1411
-#: templates/new_results_page.jinja2:1714
+#: templates/new_results_page.jinja2:1334
+#: templates/new_results_page.jinja2:1640
msgid "How can I learn more?"
msgstr ""
-#: templates/new_results_page.jinja2:1424
+#: templates/new_results_page.jinja2:1347
msgid ""
"Your microbiome is a rainforest of diverse microbes dominated by microbes"
" - some 40 trillion bacteria, weighing around 1 lb, live all over and in "
@@ -2027,7 +2223,7 @@ msgid ""
"linked to health, disease and lifestyle traits in numerous studies."
msgstr ""
-#: templates/new_results_page.jinja2:1428
+#: templates/new_results_page.jinja2:1351
msgid ""
"Scientists often use many different approaches to see how your microbiome"
" differs. We've analyzed your microbiome sample using standard microbiome"
@@ -2035,46 +2231,47 @@ msgid ""
" categories"
msgstr ""
-#: templates/new_results_page.jinja2:1434
+#: templates/new_results_page.jinja2:1357
msgid "How many kinds of microbes were in your sample? Check out your"
msgstr ""
-#: templates/new_results_page.jinja2:1442
+#: templates/new_results_page.jinja2:1365
msgid ""
"What kinds of people have microbiomes like yours? Check out your "
"microbiome"
msgstr ""
-#: templates/new_results_page.jinja2:1450
+#: templates/new_results_page.jinja2:1373
msgid "What particular kinds of microbes are in your sample? Wander through"
msgstr ""
-#: templates/new_results_page.jinja2:1458
+#: templates/new_results_page.jinja2:1381
msgid "Where are you on the"
msgstr ""
-#: templates/new_results_page.jinja2:1468
+#: templates/new_results_page.jinja2:1391
msgid ""
"There are anywhere from hundreds of millions to hundreds of billions of "
"different types of bacteria living on planet earth. This dwarfs the "
"meager 2 million different kinds of animals and plants that you can see "
"with your eyes. The average American has 93 different"
-" types of microbes in a stool sample, which is lower than we find in "
-"people living a more hunter-gatherer lifestyle, like the "
-"132 we find in samples from the average American has FILLIN different types of microbes in a"
+" stool sample, which is lower than we find in people living a more "
+"hunter-gatherer lifestyle, like the FILLIN we find in samples from the Smits et al. Science 2017\" data-"
"html=\"true\">Hadza ."
msgstr ""
-#: templates/new_results_page.jinja2:1472
+#: templates/new_results_page.jinja2:1395
msgid "Number of different microbes found in your sample"
msgstr ""
-#: templates/new_results_page.jinja2:1479
+#: templates/new_results_page.jinja2:1402
msgid ""
"When we calculated the diversity of groups for samples in our database, "
"we found diversity is associated with how you live your life. Here, we "
@@ -2084,30 +2281,30 @@ msgid ""
"hours a night."
msgstr ""
-#: templates/new_results_page.jinja2:1487
+#: templates/new_results_page.jinja2:1410
msgid "Eat more than 30 plants a week"
msgstr ""
-#: templates/new_results_page.jinja2:1490
-#: templates/new_results_page.jinja2:1501
-#: templates/new_results_page.jinja2:1514
-#: templates/new_results_page.jinja2:1525
+#: templates/new_results_page.jinja2:1413
+#: templates/new_results_page.jinja2:1424
+#: templates/new_results_page.jinja2:1437
+#: templates/new_results_page.jinja2:1448
msgid "unique microbial features"
msgstr ""
-#: templates/new_results_page.jinja2:1498
+#: templates/new_results_page.jinja2:1421
msgid "Exercise regularly"
msgstr ""
-#: templates/new_results_page.jinja2:1511
+#: templates/new_results_page.jinja2:1434
msgid "Drink 1L or water regularly"
msgstr ""
-#: templates/new_results_page.jinja2:1522
+#: templates/new_results_page.jinja2:1445
msgid "Sleep more than 6 hours per night"
msgstr ""
-#: templates/new_results_page.jinja2:1537
+#: templates/new_results_page.jinja2:1460
msgid ""
"One of the powerful ways microbiome scientists analyze data is by looking"
" at similarities among samples. To do this, we compute a here."
msgstr ""
-#: templates/new_results_page.jinja2:1674
+#: templates/new_results_page.jinja2:1597
msgid ""
"Please mouse over the header to learn more about how to interpret these "
"taxonomic ranks (e.g., Kingdom) using examples of non-microbial "
"organisms."
msgstr ""
-#: templates/new_results_page.jinja2:1681
+#: templates/new_results_page.jinja2:1604
#, python-format
msgid "%% of Sample"
msgstr ""
-#: templates/new_results_page.jinja2:1682 templates/sample_results.jinja2:148
+#: templates/new_results_page.jinja2:1605 templates/sample_results.jinja2:148
msgid "Kingdom"
msgstr ""
-#: templates/new_results_page.jinja2:1683 templates/sample_results.jinja2:149
+#: templates/new_results_page.jinja2:1606 templates/sample_results.jinja2:149
msgid "Phylum"
msgstr ""
-#: templates/new_results_page.jinja2:1684 templates/sample_results.jinja2:150
+#: templates/new_results_page.jinja2:1607 templates/sample_results.jinja2:150
msgid "Class"
msgstr ""
-#: templates/new_results_page.jinja2:1685 templates/sample_results.jinja2:151
+#: templates/new_results_page.jinja2:1608 templates/sample_results.jinja2:151
msgid "Order"
msgstr ""
-#: templates/new_results_page.jinja2:1686 templates/sample_results.jinja2:152
+#: templates/new_results_page.jinja2:1609 templates/sample_results.jinja2:152
msgid "Family"
msgstr ""
-#: templates/new_results_page.jinja2:1687 templates/sample_results.jinja2:153
+#: templates/new_results_page.jinja2:1610 templates/sample_results.jinja2:153
msgid "Genus"
msgstr ""
-#: templates/new_results_page.jinja2:1698
+#: templates/new_results_page.jinja2:1618
+msgid ""
+"No evidence presented here indicates what we've observed is clinically "
+"dangerous"
+msgstr ""
+
+#: templates/new_results_page.jinja2:1624
msgid ""
"In the plot below, you can see the most commonly observed microbial "
"genera in the dataset, and distribution of ranks of those genera. For "
"example,"
msgstr ""
-#: templates/new_results_page.jinja2:1700
+#: templates/new_results_page.jinja2:1626
msgid "typically has the highest relative abundance of samples in the dataset."
msgstr ""
-#: templates/new_results_page.jinja2:1717
+#: templates/new_results_page.jinja2:1643
msgid ""
"Microbiome analysis is a burgeoning new field, and the information "
"displayed here is only an example of what is becoming possible thanks to "
"the data that you helped collect."
msgstr ""
-#: templates/new_results_page.jinja2:1721
+#: templates/new_results_page.jinja2:1647
msgid ""
"So if you want to learn more, you can even take a look at the dataset for"
" yourself!"
msgstr ""
-#: templates/new_results_page.jinja2:1725
+#: templates/new_results_page.jinja2:1651
msgid ""
"For your sample, we performed a technique called amplicon sequencing "
"where we examine pieces of DNA corresponding to a particular gene. "
@@ -2280,7 +2483,7 @@ msgid ""
"evidence of the types of microbes that may be present in your sample."
msgstr ""
-#: templates/new_results_page.jinja2:1729
+#: templates/new_results_page.jinja2:1655
msgid ""
"There are many resources for microbiome information available online. If "
"you'd like to learn more, we recommend the ."
msgstr ""
-#: templates/new_results_page.jinja2:1732
+#: templates/new_results_page.jinja2:1658
msgid "Datasets used in your results report"
msgstr ""
-#: templates/new_results_page.jinja2:1734
+#: templates/new_results_page.jinja2:1660
msgid ""
"The results shown in the Microbiome Maps portion of the report relied on "
"data from many different publically accessible microbiome datasets. These"
" different datasets, and links to them, are listed below."
msgstr ""
-#: templates/new_results_page.jinja2:1737
-msgid "The Microsetta Initiative"
-msgstr ""
-
-#: templates/new_results_page.jinja2:1742
-#: templates/new_results_page.jinja2:1795
-msgid "Microbiomes Across the World"
-msgstr ""
-
-#: templates/new_results_page.jinja2:1747
-#: templates/new_results_page.jinja2:1819
-msgid "Microbiomes Across the Lifespan"
-msgstr ""
-
-#: templates/new_results_page.jinja2:1752
-#: templates/new_results_page.jinja2:1842
-msgid "Microbiomes in the Environment"
-msgstr ""
-
-#: templates/new_results_page.jinja2:1766
+#: templates/new_results_page.jinja2:1673
msgid ""
"Microbiome maps turn the similarities and differences among microbiomes "
"into a two-dimensional picture. Each dot is a whole microbiome, and dots "
"close to yours are more similar microbiomes."
msgstr ""
-#: templates/new_results_page.jinja2:1770
+#: templates/new_results_page.jinja2:1677
msgid ""
""
msgstr ""
-#: templates/new_results_page.jinja2:1775
-msgid "Microbiomes Across the Body"
+#: templates/nutrition.jinja2:2 templates/sitebase.jinja2:135
+#: templates/sitebase.jinja2:162 templates/sitebase.jinja2:164
+msgid "My Nutrition"
msgstr ""
-#: templates/new_results_page.jinja2:1786
+#: templates/nutrition.jinja2:66
msgid ""
-"In this map, we've placed your sample relative to all the other samples "
-"we have in Microsetta. As you can see, there are a few different types of"
-" samples people have contributed, and the microbial configurations "
-"present can be REALLY different."
+"Your registration code is not in our system or has already been used. "
+"Please try again."
+msgstr ""
+
+#: templates/nutrition.jinja2:96 templates/nutrition.jinja2:113
+#: templates/reports.jinja2:83
+msgid "My FFQs"
msgstr ""
-#: templates/new_results_page.jinja2:1806
+#: templates/nutrition.jinja2:102
msgid ""
-"Researchers have noted large differences in our microbiomes depending on "
-"where we live. The reason WHY is not well understood, but we suspect "
-"factors such as diet or environmental exposures (e.g., plants, what's in "
-"your house, pollution, how often you come in contact with soil, etc) may "
-"be be major factors."
+"Currently, \"My FFQs\" is unavailable in your country or region. We "
+"apologize for any inconvenience."
+msgstr ""
+
+#: templates/nutrition.jinja2:119
+msgid "Have an FFQ Code"
msgstr ""
-#: templates/new_results_page.jinja2:1810
+#: templates/nutrition.jinja2:121
+msgid "Get an FFQ Code"
+msgstr ""
+
+#: templates/nutrition.jinja2:129
msgid ""
-"Researchers do not know how much these differences matter! They certainly"
-" may."
+"This Food Frequency Questionnaire (FFQ) will take approximately 30 "
+"minutes. By completing it, you'll receive the following report"
msgstr ""
-#: templates/new_results_page.jinja2:1830
+#: templates/nutrition.jinja2:130
msgid ""
-"One major factor associated with gut microbiomes is the age of the "
-"individual, emphasized here by life stages."
+"Personal diet and nutrition summary, listing the highest contributing "
+"food sources of nutrients you should try to limit and your top food "
+"sources with key nutrients that promote good health."
msgstr ""
-#: templates/new_results_page.jinja2:1834
+#: templates/nutrition.jinja2:135
msgid ""
-"Interestingly, infants are relatively similar microbially regardless of "
-"where they were born. But, as individuals age, it seems like their "
-"microbiomes reflect regional or population differences."
+"You must press the \"Finish\" button on the final page of the FFQ to "
+"register it as completed. You can complete the FFQ in stages by clicking "
+"\"Continue FFQ\" and selecting the \"Resume\" button to return to where "
+"you left off."
+msgstr ""
+
+#: templates/nutrition.jinja2:146 templates/reports.jinja2:93
+msgid "Download Top Food Report"
+msgstr ""
+
+#: templates/nutrition.jinja2:149 templates/nutrition.jinja2:151
+#: templates/reports.jinja2:96 templates/reports.jinja2:98
+msgid "Continue FFQ"
+msgstr ""
+
+#: templates/nutrition.jinja2:164
+msgid "Registration Code"
+msgstr ""
+
+#: templates/nutrition.jinja2:170
+msgid "Register FFQ"
+msgstr ""
+
+#: templates/opt_out.jinja2:2 templates/opt_out.jinja2:37
+#: templates/opt_out_confirm.jinja2:2
+msgid "Opt Out"
msgstr ""
-#: templates/new_results_page.jinja2:1853
+#: templates/opt_out.jinja2:28
msgid ""
-"Microbes are EVERYWHERE though! Using these same techniques described "
-"above, we compared your microbiome to samples collected from all over the"
-" surfaces from a brand new hospital."
+"Sorry, we could not complete the request. Please email microsetta@ucsd.edu with the "
+"email address you signed up with so we can remove you from our list."
+msgstr ""
+
+#: templates/opt_out.jinja2:36
+msgid ""
+"We're sorry you are no longer interested in participating in The Human "
+"Diets & Microbiome Initiative (THDMI). Please click the \"opt out\" "
+"button below to confirm that you do not wish to take part."
msgstr ""
-#: templates/new_results_page.jinja2:1857
+#: templates/opt_out_confirm.jinja2:27
msgid ""
-"As you can see, skin samples tend to more closely resemble those from "
-"\"the built environment\", which makes sense as skin cells are constantly"
-" shedding from you."
+"Thank you for letting us know. You will no longer be part of this "
+"research study."
msgstr ""
#: templates/post_sample_questionnaire.jinja2:2
@@ -2408,7 +2631,7 @@ msgstr ""
msgid "Would you like to take our additional survey, the"
msgstr ""
-#: templates/post_sample_questionnaire.jinja2:19 templates/source.jinja2:201
+#: templates/post_sample_questionnaire.jinja2:19
msgid "Food Frequency Questionnaire"
msgstr ""
@@ -2440,74 +2663,68 @@ msgstr ""
msgid "Take FFQ"
msgstr ""
-#: templates/sample.jinja2:2 templates/sample.jinja2:150
-msgid "Sample Information"
-msgstr ""
-
-#: templates/sample.jinja2:27
-msgid "Please select a date within the last 10 years."
-msgstr ""
-
-#: templates/sample.jinja2:30
-msgid "Please select a date within the next 30 days."
+#: templates/reports.jinja2:2 templates/sitebase.jinja2:137
+#: templates/sitebase.jinja2:169 templates/sitebase.jinja2:171
+msgid "My Reports"
msgstr ""
-#: templates/sample.jinja2:86
-msgid "Required Format: MM/DD/YYYY"
-msgstr ""
-
-#: templates/sample.jinja2:158
-msgid "Sample Recorded, Editing is Locked"
+#: templates/sample.jinja2:24
+msgid "Do you really want to remove this sample from this source?"
msgstr ""
-#: templates/sample.jinja2:169
-msgid "Date"
+#: templates/sample.jinja2:25
+msgid "Doing so will remove any collection info saved for this sample and will"
msgstr ""
-#: templates/sample.jinja2:178
-msgid "Time"
+#: templates/sample.jinja2:26
+msgid "unlink it from all surveys."
msgstr ""
-#: templates/sample.jinja2:192
-msgid "Guidelines for site identification"
+#: templates/sample.jinja2:85
+msgid "Required Format: MM/DD/YYYY"
msgstr ""
-#: templates/sample.jinja2:193
-msgid "If collecting a"
+#: templates/sample.jinja2:99
+msgid "Please select a date within the last 10 years."
msgstr ""
-#: templates/sample.jinja2:193
-msgid "BLOOD"
+#: templates/sample.jinja2:113
+msgid "Please select a date within the next 30 days."
msgstr ""
-#: templates/sample.jinja2:193
-msgid "sample, please select Blood (skin prick)"
+#: templates/sample.jinja2:204
+msgid "Date of Sample Collection"
msgstr ""
-#: templates/sample.jinja2:194
-msgid ""
-"For all swabs, please select the site as precisely as possible from the "
-"options available"
+#: templates/sample.jinja2:208
+msgid "Time of Sample Collection"
msgstr ""
-#: templates/sample.jinja2:200
-msgid "Site sampled"
+#: templates/sample.jinja2:214
+msgid "Sample Type"
msgstr ""
-#: templates/sample.jinja2:204
+#: templates/sample.jinja2:217
msgid "Select a sample type"
msgstr ""
-#: templates/sample.jinja2:220
+#: templates/sample.jinja2:229
msgid "Notes"
msgstr ""
-#: templates/sample.jinja2:222
+#: templates/sample.jinja2:230
msgid "(Optional) Is there else about this sample that you would like to add?"
msgstr ""
-#: templates/sample.jinja2:225
-msgid "Update"
+#: templates/sample.jinja2:236
+msgid "Remove"
+msgstr ""
+
+#: templates/sample.jinja2:239
+msgid ""
+"Your sample has been received by our lab and can no longer be edited. "
+"Please contact us with any "
+"questions."
msgstr ""
#: templates/sample_results.jinja2:140
@@ -2584,309 +2801,293 @@ msgstr ""
msgid "Secondary Surveys"
msgstr ""
-#: templates/secondary_surveys.jinja2:12 templates/source.jinja2:258
+#: templates/secondary_surveys.jinja2:12
msgid "Survey Title"
msgstr ""
-#: templates/secondary_surveys.jinja2:15 templates/source.jinja2:261
+#: templates/secondary_surveys.jinja2:15
msgid "Survey Description"
msgstr ""
-#: templates/sitebase.jinja2:5
-msgid "Microsetta"
+#: templates/signed_consent.jinja2:51 templates/signed_consent.jinja2:125
+#: templates/signed_consent.jinja2:181 templates/signed_consent.jinja2:218
+msgid "Date Signed"
msgstr ""
-#: templates/sitebase.jinja2:43
-msgid "Administrator Toolbar"
+#: templates/sitebase.jinja2:5
+msgid "Microsetta"
msgstr ""
#: templates/sitebase.jinja2:44
-msgid "System Panel"
-msgstr ""
-
-#: templates/sitebase.jinja2:46 templates/sitebase.jinja2:84
-msgid "Log Out"
-msgstr ""
-
-#: templates/sitebase.jinja2:47
-msgid "Activation Codes"
+msgid "You are deleting the profile for"
msgstr ""
-#: templates/sitebase.jinja2:49
-msgid "Address Verification"
+#: templates/sitebase.jinja2:44
+msgid "and all surveys associated with it!"
msgstr ""
-#: templates/sitebase.jinja2:53
-msgid "Find Account"
+#: templates/sitebase.jinja2:45
+msgid ""
+"This operation cannot be undone. Are you sure you want to delete this "
+"source?"
msgstr ""
-#: templates/sitebase.jinja2:55
-msgid "Barcode Search"
+#: templates/sitebase.jinja2:56
+msgid "Administrator Toolbar"
msgstr ""
-#: templates/sitebase.jinja2:86
-msgid "Log In"
+#: templates/sitebase.jinja2:57
+msgid "System Panel"
msgstr ""
-#: templates/sitebase.jinja2:87
-msgid "Sign Up"
+#: templates/sitebase.jinja2:60
+msgid "Address Verification"
msgstr ""
-#: templates/sitebase.jinja2:126
-msgid "FAQs"
+#: templates/sitebase.jinja2:62
+msgid "FFQ Codes"
msgstr ""
-#: templates/source.jinja2:2
-msgid "Account Samples"
+#: templates/sitebase.jinja2:65
+msgid "Find Account"
msgstr ""
-#: templates/source.jinja2:84
-msgid "Do you really want to remove this sample from this source?"
+#: templates/sitebase.jinja2:67
+msgid "Barcode Search"
msgstr ""
-#: templates/source.jinja2:85
-msgid "Doing so will remove any collection info saved for this sample and will"
+#: templates/sitebase.jinja2:68 templates/sitebase.jinja2:88
+msgid "Log Out"
msgstr ""
-#: templates/source.jinja2:86
-msgid "unlink it from all surveys."
+#: templates/sitebase.jinja2:139 templates/sitebase.jinja2:148
+#: templates/sitebase.jinja2:150 templates/source.jinja2:2
+#: templates/survey.jinja2:165
+msgid "My Profile"
msgstr ""
-#: templates/source.jinja2:91
-msgid "You are deleting source"
+#: templates/sitebase.jinja2:184
+msgid "Delete This Profile"
msgstr ""
-#: templates/source.jinja2:91
-msgid "and all surveys associated with it!"
+#: templates/sitebase.jinja2:198
+msgid "Are you sure you want to withdraw your consent and delete your profile?"
msgstr ""
-#: templates/source.jinja2:92
+#: templates/sitebase.jinja2:201
msgid ""
-"This operation cannot be undone. Are you sure you want to delete this "
-"source?"
+"I hereby withdraw consent for researchers to use my personal data and/or "
+"sample(s) for The Microsetta Initiative (TMI)."
msgstr ""
-#: templates/source.jinja2:100
-msgid "View"
-msgstr ""
-
-#: templates/source.jinja2:152
-msgid "It looks like some samples do not have collection information recorded."
-msgstr ""
-
-#: templates/source.jinja2:156
-msgid "Samples (click on a barcode to provide collection information)"
-msgstr ""
-
-#: templates/source.jinja2:164
-msgid "Collection date"
-msgstr ""
-
-#: templates/source.jinja2:168
-msgid "Sample type"
+#: templates/sitebase.jinja2:202
+msgid ""
+"I understand and acknowledge that any personal data and/or sample(s) that"
+" have already been provided to TMI in accordance with the consent I "
+"provided by signing the consent form(s), will continue to be used for the"
+" research. However, no new information will be collected."
msgstr ""
-#: templates/source.jinja2:174
-msgid "Sample-specific survey"
+#: templates/sitebase.jinja2:203
+msgid ""
+"I understand that my data will only be shared after directly identifying "
+"information has been removed so that researchers cannot re-identify my "
+"personal data and/or sample(s) for future use."
msgstr ""
-#: templates/source.jinja2:199
-msgid "View Top Food Report"
+#: templates/sitebase.jinja2:204
+msgid ""
+"By clicking withdraw, you will be ending your participation and "
+"terminating your profile. If you would like to be removed from being "
+"contacted for general program updates or information about future "
+"research studies, please refer to account deletion or contact us at "
+"microsetta@ucsd.edu."
msgstr ""
-#: templates/source.jinja2:206
-msgid "This sample has been received and cannot be removed."
+#: templates/sitebase.jinja2:207 templates/source.jinja2:151
+msgid "Maybe Later"
msgstr ""
-#: templates/source.jinja2:208
-msgid "Remove"
+#: templates/sitebase.jinja2:208 templates/source.jinja2:152
+msgid "Take This Survey Now"
msgstr ""
-#: templates/source.jinja2:218
-msgid "Do I need to take more than one Food Frequency Questionnaire (FFQ)"
+#: templates/sitebase.jinja2:224
+msgid "FAQs"
msgstr ""
-#: templates/source.jinja2:219
+#: templates/source.jinja2:52
msgid ""
-"If you are taking all of your samples at the same time, you will only "
-"need to complete one. If you are collecting samples over time (e.g., once"
-" per week), then please consider taking an FFQ per time point. The FFQs "
-"provide valuable dietary research data for the project, so researchers "
-"can better understand the relationship between the food you eat and your "
-"microbes."
+"The Microsetta Initiative aims to generate quality data that can help you"
+" better understand your microbiome, help scientists design better "
+"studies, and improve the world's understanding of the human microbiome."
msgstr ""
-#: templates/source.jinja2:227
+#: templates/source.jinja2:55
msgid ""
-"The kit ID used to create your account has unclaimed samples. To claim "
-"samples from this kit, please click \"List samples\". To claim samples "
-"from another kit ID, please enter it here and then click \"List Samples\""
-msgstr ""
-
-#: templates/source.jinja2:230
-msgid "To add samples, please enter a kit ID here"
+"Answering our surveys can help us do just that. To get started, build out"
+" your profile by answering the surveys below. We will alert you when new "
+"surveys become available."
msgstr ""
-#: templates/source.jinja2:234
-msgid "List Samples"
+#: templates/source.jinja2:63
+msgid "Last modified"
msgstr ""
-#: templates/source.jinja2:239
-msgid "Select all samples that should be associated with this source"
+#: templates/source.jinja2:65 templates/source.jinja2:107
+msgid "NEW"
msgstr ""
-#: templates/source.jinja2:245
-msgid "Claim Selected Samples"
+#: templates/source.jinja2:67 templates/survey.jinja2:176
+msgid "minutes"
msgstr ""
-#: templates/source.jinja2:253
-msgid "Available optional surveys"
-msgstr ""
-
-#: templates/source.jinja2:283
-msgid "Start"
+#: templates/source.jinja2:97
+msgid ""
+"Below are surveys hosted by partner organizations. You will be directed "
+"to an external site in a new browser tab to complete the survey(s) you "
+"select. Once you complete them, you may close the tab and return to this "
+"page."
msgstr ""
-#: templates/source.jinja2:295
-msgid "Completed surveys"
+#: templates/source.jinja2:105
+msgid "COMPLETED"
msgstr ""
-#: templates/source.jinja2:320
-msgid ""
-"Sources with one or more samples assigned cannot be deleted. All samples"
-" above must be removed prior to deleting this source."
+#: templates/source.jinja2:109
+msgid "min"
msgstr ""
-#: templates/source.jinja2:322
+#: templates/source.jinja2:148
msgid ""
-"If you need to delete this source, click the following button. Please "
-"note, this action can NOT be reversed."
+"You will only have one opportunity to take this survey. Please make sure "
+"you have ample time before you start."
msgstr ""
-#: templates/source.jinja2:322
-msgid "Delete Source"
+#: templates/submit_interest.jinja2:146 templates/submit_interest.jinja2:223
+msgid "Sorry, you must be 18 or older to participate in this study."
msgstr ""
-#: templates/submit_interest.jinja2:127
+#: templates/submit_interest.jinja2:159
msgid "Sorry, this study is not open to residents of your country."
msgstr ""
-#: templates/submit_interest.jinja2:189 templates/submit_interest.jinja2:295
+#: templates/submit_interest.jinja2:222 templates/submit_interest.jinja2:330
msgid "Please select whether you are at least 18 years of age."
msgstr ""
-#: templates/submit_interest.jinja2:190
+#: templates/submit_interest.jinja2:225
msgid "Please enter your first name."
msgstr ""
-#: templates/submit_interest.jinja2:191
+#: templates/submit_interest.jinja2:226
msgid "Please enter your last name."
msgstr ""
-#: templates/submit_interest.jinja2:192
+#: templates/submit_interest.jinja2:227
msgid "Please enter a valid email address."
msgstr ""
-#: templates/submit_interest.jinja2:195
+#: templates/submit_interest.jinja2:230
msgid "Please select your country."
msgstr ""
-#: templates/submit_interest.jinja2:202 templates/update_address.jinja2:135
+#: templates/submit_interest.jinja2:237 templates/update_address.jinja2:135
#: templates/update_address.jinja2:250
msgid ""
"Sorry, we were unable to verify your address. Please check your "
"information and try again."
msgstr ""
-#: templates/submit_interest.jinja2:204 templates/submit_interest.jinja2:560
+#: templates/submit_interest.jinja2:239 templates/submit_interest.jinja2:595
msgid "Please agree to receiving communications from us."
msgstr ""
-#: templates/submit_interest.jinja2:265
+#: templates/submit_interest.jinja2:300
msgid ""
"Sorry, due to widespread interest, the sign-up list for this project is "
"full."
msgstr ""
-#: templates/submit_interest.jinja2:266
+#: templates/submit_interest.jinja2:301
msgid ""
"Please visit our website to "
"learn about other opportunities to participate in The Microsetta "
"Initiative."
msgstr ""
-#: templates/submit_interest.jinja2:270 templates/update_address.jinja2:193
+#: templates/submit_interest.jinja2:305 templates/update_address.jinja2:193
msgid "Verifying your information, please wait just a moment."
msgstr ""
-#: templates/submit_interest.jinja2:291
+#: templates/submit_interest.jinja2:326
msgid "Are you at least 18 years of age?"
msgstr ""
-#: templates/submit_interest.jinja2:292 templates/submit_interest.jinja2:559
+#: templates/submit_interest.jinja2:327 templates/submit_interest.jinja2:594
msgid "Yes"
msgstr ""
-#: templates/submit_interest.jinja2:294
+#: templates/submit_interest.jinja2:329
msgid "No"
msgstr ""
-#: templates/submit_interest.jinja2:299
+#: templates/submit_interest.jinja2:334
msgid ""
"Please note: Specimen collection kits are associated with the email used "
"when registering. We recommend the following:"
msgstr ""
-#: templates/submit_interest.jinja2:300
+#: templates/submit_interest.jinja2:335
msgid "1. One email must be used per kit."
msgstr ""
-#: templates/submit_interest.jinja2:301
+#: templates/submit_interest.jinja2:336
msgid ""
"2. If you plan to complete the form on behalf of another adult, use that "
"person's name and email address."
msgstr ""
-#: templates/submit_interest.jinja2:302
+#: templates/submit_interest.jinja2:337
msgid "3. If possible, continue to use the same email throughout the study."
msgstr ""
-#: templates/submit_interest.jinja2:303
+#: templates/submit_interest.jinja2:338
msgid ""
"Once you have received the kit, please continue to use the same email "
"address used when creating your online account."
msgstr ""
-#: templates/submit_interest.jinja2:313
+#: templates/submit_interest.jinja2:348
msgid "Email Address"
msgstr ""
-#: templates/submit_interest.jinja2:317 templates/update_address.jinja2:242
+#: templates/submit_interest.jinja2:352 templates/update_address.jinja2:242
msgid "Phone Number"
msgstr ""
-#: templates/submit_interest.jinja2:323 templates/submit_interest.jinja2:541
+#: templates/submit_interest.jinja2:358 templates/submit_interest.jinja2:576
#: templates/update_address.jinja2:227
msgid "SELECT"
msgstr ""
-#: templates/submit_interest.jinja2:520
+#: templates/submit_interest.jinja2:555
msgid "Please fill in the address you would like your kit delivered to. Example:"
msgstr ""
-#: templates/submit_interest.jinja2:521
-msgid "9500 Gilman Dr. San Diego, CA 920932"
+#: templates/submit_interest.jinja2:556
+msgid "9500 Gilman Dr. San Diego, CA 92093"
msgstr ""
-#: templates/submit_interest.jinja2:551 templates/update_address.jinja2:237
+#: templates/submit_interest.jinja2:586 templates/update_address.jinja2:237
msgid "Residential"
msgstr ""
-#: templates/submit_interest.jinja2:552 templates/update_address.jinja2:238
+#: templates/submit_interest.jinja2:587 templates/update_address.jinja2:238
msgid "Commercial"
msgstr ""
-#: templates/submit_interest.jinja2:558
+#: templates/submit_interest.jinja2:593
msgid ""
"By subscribing to this program, I agree to receive communications via the"
" newsletter regarding the status of the program, the steps I must "
@@ -2896,89 +3097,52 @@ msgid ""
"status updates directly from the TMI database. "
msgstr ""
-#: templates/submit_interest.jinja2:564
+#: templates/submit_interest.jinja2:599
msgid "Previous"
msgstr ""
-#: templates/submit_interest.jinja2:565
-msgid "Next"
-msgstr ""
-
#: templates/submit_interest_confirm.jinja2:36
msgid ""
-"Thank you for your interest! Your information has been saved, and we will"
-" contact you via email soon."
-msgstr ""
-
-#: templates/survey.jinja2:2 templates/survey.jinja2:128
-msgid "Participant Survey"
+"Thank you for your interest in our research. Your application has been "
+"received. You will receive an email shortly. Please check your junk or "
+"spam folder if the email hasn’t reached your inbox."
msgstr ""
#: templates/survey.jinja2:8
msgid " selected"
msgstr ""
-#: templates/survey.jinja2:58
+#: templates/survey.jinja2:96
msgid "The value is not an integer"
msgstr ""
-#: templates/survey.jinja2:59
+#: templates/survey.jinja2:97
msgid "Invalid number"
msgstr ""
-#: templates/survey.jinja2:131
-msgid "Progress"
-msgstr ""
-
-#: templates/survey.jinja2:138
-msgid "Previous Section"
+#: templates/survey.jinja2:176
+msgid "questions"
msgstr ""
-#: templates/survey.jinja2:139
-msgid "Next Section"
+#: templates/survey.jinja2:196
+msgid "You've finished building your profile!"
msgstr ""
-#: templates/survey.jinja2:158
-msgid "Submit Survey"
+#: templates/survey.jinja2:245 templates/survey.jinja2:276
+#: templates/survey.jinja2:307
+msgid "Save & Go Home"
msgstr ""
-#: templates/survey.jinja2:166
-msgid ""
-"Please note: Once you've submitted this survey, you'll be unable to edit "
-"your answers."
-msgstr ""
-
-#: templates/survey.jinja2:166
-msgid ""
-"If you'd like to review or change any of your responses, please press the"
-" Cancel button. Otherwise, press OK to submit your responses."
-msgstr ""
-
-#: templates/survey.jinja2:166
-msgid "This warning will only appear once."
-msgstr ""
-
-#: templates/survey.jinja2:170
-msgid ""
-"It looks like you are trying to submit this survey without answering any "
-"questions. If you would prefer not to complete this survey, please return"
-" to the homepage."
-msgstr ""
-
-#: templates/survey.jinja2:193 templates/survey.jinja2:218
-msgid "Step"
-msgstr ""
-
-#: templates/survey.jinja2:193 templates/survey.jinja2:218
-msgid "of"
+#: templates/survey.jinja2:254 templates/survey.jinja2:316
+msgid "Save & Next"
msgstr ""
-#: templates/survey.jinja2:193 templates/survey.jinja2:218
-msgid "Complete"
+#: templates/survey.jinja2:266 templates/survey.jinja2:297
+msgid "Save & Previous"
msgstr ""
-#: templates/survey.jinja2:203
-msgid "Please correct the fields with errors."
+#: templates/survey.jinja2:285
+msgid "Save & Finish"
msgstr ""
#: templates/update_address.jinja2:198
@@ -3062,3 +3226,2860 @@ msgstr ""
#~ "to the homepage."
#~ msgstr ""
+#~ msgid "Unable to validate the kit name; please reload the page."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "The provided kit id is not valid"
+#~ " or has already been used; please "
+#~ "re-check your entry."
+#~ msgstr ""
+
+#~ msgid "Street Address"
+#~ msgstr ""
+
+#~ msgid "Activation Info"
+#~ msgstr ""
+
+#~ msgid "Kit ID"
+#~ msgstr ""
+
+#~ msgid "OR"
+#~ msgstr ""
+
+#~ msgid "View Account Details"
+#~ msgstr ""
+
+#~ msgid "Sources"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "You have now set up your account!"
+#~ " Please proceed to identify your "
+#~ "source."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Choose a source to assign samples "
+#~ "to by clicking on a name, listed"
+#~ " in blue below:"
+#~ msgstr ""
+
+#~ msgid "Name"
+#~ msgstr ""
+
+#~ msgid "Source type"
+#~ msgstr ""
+
+#~ msgid "What is the Source of Your Sample?"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Our lab needs to know what type"
+#~ " of sample(s) you are submitting "
+#~ "(a.k.a. the \"source\"). Add a new "
+#~ "source and assign samples to it so"
+#~ " we can perform the correct analysis"
+#~ " in our laboratory."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "If you have multiple sources, you "
+#~ "may add one source at a time. "
+#~ "You can return to this page after"
+#~ " you finish registering the first "
+#~ "one."
+#~ msgstr ""
+
+#~ msgid "Human Source"
+#~ msgstr ""
+
+#~ msgid "Collect sample(s) from"
+#~ msgstr ""
+
+#~ msgid "yourself"
+#~ msgstr ""
+
+#~ msgid "(e.g. fecal, saliva, skin, etc.)"
+#~ msgstr ""
+
+#~ msgid "someone else"
+#~ msgstr ""
+
+#~ msgid "Select"
+#~ msgstr ""
+
+#~ msgid "Environmental Source"
+#~ msgstr ""
+
+#~ msgid "Collect sample(s) from a"
+#~ msgstr ""
+
+#~ msgid "surface"
+#~ msgstr ""
+
+#~ msgid "(e.g. kitchen counter, backyard soil, food, etc.)"
+#~ msgstr ""
+
+#~ msgid "Animal Source"
+#~ msgstr ""
+
+#~ msgid "your pet"
+#~ msgstr ""
+
+#~ msgid "or an"
+#~ msgstr ""
+
+#~ msgid "Animal sources are currently unavailable."
+#~ msgstr ""
+
+#~ msgid "SIGN UP"
+#~ msgstr ""
+
+#~ msgid "Already have an account?"
+#~ msgstr ""
+
+#~ msgid "Welcome back!"
+#~ msgstr ""
+
+#~ msgid "LOG IN"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "It looks like you are creating a"
+#~ " new source that may be similar "
+#~ "or the same as an existing source."
+#~ " If this is the same person as"
+#~ " an existing source, please consider "
+#~ "providing new samples or survey "
+#~ "responses under that source"
+#~ msgstr ""
+
+#~ msgid "All of the Microsetta Initiative"
+#~ msgstr ""
+
+#~ msgid "Multipopulation"
+#~ msgstr ""
+
+#~ msgid "You and the Microbes Around You"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "There are anywhere from hundreds of "
+#~ "millions to hundreds of billions of "
+#~ "different types of bacteria living on"
+#~ " planet earth. This dwarfs the meager"
+#~ " 2 million different kinds of animals"
+#~ " and plants that you can see "
+#~ "with your eyes. The average American has "
+#~ "93 different types of "
+#~ "microbes in a stool sample, which "
+#~ "is lower than we find in people"
+#~ " living a more hunter-gatherer "
+#~ "lifestyle, like the 132 we"
+#~ " find in samples from the Smits et "
+#~ "al. Science 2017 \" data-"
+#~ "html=\"true\">Hadza ."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "As you can see, skin samples tend"
+#~ " to more closely resemble those from"
+#~ " \"the built environment\", which makes "
+#~ "sense as skin cells are constantly "
+#~ "shedding from you."
+#~ msgstr ""
+
+#~ msgid "Sample Information"
+#~ msgstr ""
+
+#~ msgid "Sample Recorded, Editing is Locked"
+#~ msgstr ""
+
+#~ msgid "Date"
+#~ msgstr ""
+
+#~ msgid "Time"
+#~ msgstr ""
+
+#~ msgid "Guidelines for site identification"
+#~ msgstr ""
+
+#~ msgid "If collecting a"
+#~ msgstr ""
+
+#~ msgid "BLOOD"
+#~ msgstr ""
+
+#~ msgid "sample, please select Blood (skin prick)"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "For all swabs, please select the "
+#~ "site as precisely as possible from "
+#~ "the options available"
+#~ msgstr ""
+
+#~ msgid "Site sampled"
+#~ msgstr ""
+
+#~ msgid "Update"
+#~ msgstr ""
+
+#~ msgid "Activation Codes"
+#~ msgstr ""
+
+#~ msgid "Account Samples"
+#~ msgstr ""
+
+#~ msgid "You are deleting source"
+#~ msgstr ""
+
+#~ msgid "It looks like some samples do not have collection information recorded."
+#~ msgstr ""
+
+#~ msgid "Samples (click on a barcode to provide collection information)"
+#~ msgstr ""
+
+#~ msgid "Collection date"
+#~ msgstr ""
+
+#~ msgid "Sample type"
+#~ msgstr ""
+
+#~ msgid "Sample-specific survey"
+#~ msgstr ""
+
+#~ msgid "View Top Food Report"
+#~ msgstr ""
+
+#~ msgid "This sample has been received and cannot be removed."
+#~ msgstr ""
+
+#~ msgid "Do I need to take more than one Food Frequency Questionnaire (FFQ)"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "If you are taking all of your "
+#~ "samples at the same time, you will"
+#~ " only need to complete one. If "
+#~ "you are collecting samples over time "
+#~ "(e.g., once per week), then please "
+#~ "consider taking an FFQ per time "
+#~ "point. The FFQs provide valuable dietary"
+#~ " research data for the project, so"
+#~ " researchers can better understand the "
+#~ "relationship between the food you eat"
+#~ " and your microbes."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "The kit ID used to create your "
+#~ "account has unclaimed samples. To claim"
+#~ " samples from this kit, please click"
+#~ " \"List samples\". To claim samples "
+#~ "from another kit ID, please enter "
+#~ "it here and then click \"List "
+#~ "Samples\""
+#~ msgstr ""
+
+#~ msgid "To add samples, please enter a kit ID here"
+#~ msgstr ""
+
+#~ msgid "List Samples"
+#~ msgstr ""
+
+#~ msgid "Select all samples that should be associated with this source"
+#~ msgstr ""
+
+#~ msgid "Claim Selected Samples"
+#~ msgstr ""
+
+#~ msgid "Available optional surveys"
+#~ msgstr ""
+
+#~ msgid "Start"
+#~ msgstr ""
+
+#~ msgid "Completed surveys"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Sources with one or more samples "
+#~ "assigned cannot be deleted. All samples"
+#~ " above must be removed prior to "
+#~ "deleting this source."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "If you need to delete this source,"
+#~ " click the following button. Please "
+#~ "note, this action can NOT be "
+#~ "reversed."
+#~ msgstr ""
+
+#~ msgid "Delete Source"
+#~ msgstr ""
+
+#~ msgid "9500 Gilman Dr. San Diego, CA 920932"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Thank you for your interest! Your "
+#~ "information has been saved, and we "
+#~ "will contact you via email soon."
+#~ msgstr ""
+
+#~ msgid "Participant Survey"
+#~ msgstr ""
+
+#~ msgid "Progress"
+#~ msgstr ""
+
+#~ msgid "Previous Section"
+#~ msgstr ""
+
+#~ msgid "Next Section"
+#~ msgstr ""
+
+#~ msgid "Submit Survey"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Please note: Once you've submitted this"
+#~ " survey, you'll be unable to edit "
+#~ "your answers."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "If you'd like to review or change"
+#~ " any of your responses, please press"
+#~ " the Cancel button. Otherwise, press "
+#~ "OK to submit your responses."
+#~ msgstr ""
+
+#~ msgid "This warning will only appear once."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "It looks like you are trying to"
+#~ " submit this survey without answering "
+#~ "any questions. If you would prefer "
+#~ "not to complete this survey, please "
+#~ "return to the homepage."
+#~ msgstr ""
+
+#~ msgid "Step"
+#~ msgstr ""
+
+#~ msgid "of"
+#~ msgstr ""
+
+#~ msgid "Complete"
+#~ msgstr ""
+
+#~ msgid "Please correct the fields with errors."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Your KitID is not in our system"
+#~ " or has already been used, please "
+#~ "try again!"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "This report is generated by a "
+#~ "third party without information regarding "
+#~ "age, height or weight."
+#~ msgstr ""
+
+#~ msgid "Save & Come Back Later"
+#~ msgstr ""
+
+#~ msgid "Account Details"
+#~ msgstr ""
+
+#~ msgid "Please agree to the Privacy Statement and Terms and Conditions"
+#~ msgstr ""
+
+#~ msgid "City"
+#~ msgstr ""
+
+#~ msgid "State"
+#~ msgstr ""
+
+#~ msgid "Zip Code"
+#~ msgstr ""
+
+#~ msgid "City/Town"
+#~ msgstr ""
+
+#~ msgid "County/State"
+#~ msgstr ""
+
+#~ msgid "Postcode"
+#~ msgstr ""
+
+#~ msgid "Dashboard"
+#~ msgstr ""
+
+#~ msgid "Email"
+#~ msgstr ""
+
+#~ msgid "Prefer to use a different email account? You can change it "
+#~ msgstr ""
+
+#~ msgid "here"
+#~ msgstr ""
+
+#~ msgid "First Name"
+#~ msgstr ""
+
+#~ msgid "Last Name"
+#~ msgstr ""
+
+#~ msgid "Country"
+#~ msgstr ""
+
+#~ msgid "United States"
+#~ msgstr ""
+
+#~ msgid "United Kingdom"
+#~ msgstr ""
+
+#~ msgid "Mexico"
+#~ msgstr ""
+
+#~ msgid "Spain"
+#~ msgstr ""
+
+#~ msgid "Afghanistan"
+#~ msgstr ""
+
+#~ msgid "Albania"
+#~ msgstr ""
+
+#~ msgid "Algeria"
+#~ msgstr ""
+
+#~ msgid "Andorra"
+#~ msgstr ""
+
+#~ msgid "Angola"
+#~ msgstr ""
+
+#~ msgid "Antarctica"
+#~ msgstr ""
+
+#~ msgid "Antigua and Barbuda"
+#~ msgstr ""
+
+#~ msgid "Argentina"
+#~ msgstr ""
+
+#~ msgid "Armenia"
+#~ msgstr ""
+
+#~ msgid "Australia"
+#~ msgstr ""
+
+#~ msgid "Austria"
+#~ msgstr ""
+
+#~ msgid "Azerbaijan"
+#~ msgstr ""
+
+#~ msgid "Bahamas"
+#~ msgstr ""
+
+#~ msgid "Bahrain"
+#~ msgstr ""
+
+#~ msgid "Bangladesh"
+#~ msgstr ""
+
+#~ msgid "Barbados"
+#~ msgstr ""
+
+#~ msgid "Belarus"
+#~ msgstr ""
+
+#~ msgid "Belgium"
+#~ msgstr ""
+
+#~ msgid "Belize"
+#~ msgstr ""
+
+#~ msgid "Benin"
+#~ msgstr ""
+
+#~ msgid "Bermuda"
+#~ msgstr ""
+
+#~ msgid "Bhutan"
+#~ msgstr ""
+
+#~ msgid "Bolivia"
+#~ msgstr ""
+
+#~ msgid "Bosnia and Herzegovina"
+#~ msgstr ""
+
+#~ msgid "Botswana"
+#~ msgstr ""
+
+#~ msgid "Brazil"
+#~ msgstr ""
+
+#~ msgid "Brunei"
+#~ msgstr ""
+
+#~ msgid "Bulgaria"
+#~ msgstr ""
+
+#~ msgid "Burkina Faso"
+#~ msgstr ""
+
+#~ msgid "Burma"
+#~ msgstr ""
+
+#~ msgid "Burundi"
+#~ msgstr ""
+
+#~ msgid "Cambodia"
+#~ msgstr ""
+
+#~ msgid "Cameroon"
+#~ msgstr ""
+
+#~ msgid "Canada"
+#~ msgstr ""
+
+#~ msgid "Cape Verde"
+#~ msgstr ""
+
+#~ msgid "Central African Republic"
+#~ msgstr ""
+
+#~ msgid "Chad"
+#~ msgstr ""
+
+#~ msgid "Chile"
+#~ msgstr ""
+
+#~ msgid "China"
+#~ msgstr ""
+
+#~ msgid "Colombia"
+#~ msgstr ""
+
+#~ msgid "Comoros"
+#~ msgstr ""
+
+#~ msgid "Congo, Democratic Republic"
+#~ msgstr ""
+
+#~ msgid "Congo, Republic of the"
+#~ msgstr ""
+
+#~ msgid "Costa Rica"
+#~ msgstr ""
+
+#~ msgid "Cote d'Ivoire"
+#~ msgstr ""
+
+#~ msgid "Croatia"
+#~ msgstr ""
+
+#~ msgid "Cuba"
+#~ msgstr ""
+
+#~ msgid "Cyprus"
+#~ msgstr ""
+
+#~ msgid "Czech Republic"
+#~ msgstr ""
+
+#~ msgid "Denmark"
+#~ msgstr ""
+
+#~ msgid "Djibouti"
+#~ msgstr ""
+
+#~ msgid "Dominica"
+#~ msgstr ""
+
+#~ msgid "Dominican Republic"
+#~ msgstr ""
+
+#~ msgid "East Timor"
+#~ msgstr ""
+
+#~ msgid "Ecuador"
+#~ msgstr ""
+
+#~ msgid "Egypt"
+#~ msgstr ""
+
+#~ msgid "El Salvador"
+#~ msgstr ""
+
+#~ msgid "Equatorial Guinea"
+#~ msgstr ""
+
+#~ msgid "Eritrea"
+#~ msgstr ""
+
+#~ msgid "Estonia"
+#~ msgstr ""
+
+#~ msgid "Ethiopia"
+#~ msgstr ""
+
+#~ msgid "Fiji"
+#~ msgstr ""
+
+#~ msgid "Finland"
+#~ msgstr ""
+
+#~ msgid "France"
+#~ msgstr ""
+
+#~ msgid "Gabon"
+#~ msgstr ""
+
+#~ msgid "Gambia"
+#~ msgstr ""
+
+#~ msgid "Georgia"
+#~ msgstr ""
+
+#~ msgid "Germany"
+#~ msgstr ""
+
+#~ msgid "Ghana"
+#~ msgstr ""
+
+#~ msgid "Greece"
+#~ msgstr ""
+
+#~ msgid "Greenland"
+#~ msgstr ""
+
+#~ msgid "Grenada"
+#~ msgstr ""
+
+#~ msgid "Guatemala"
+#~ msgstr ""
+
+#~ msgid "Guinea"
+#~ msgstr ""
+
+#~ msgid "Guinea-Bissau"
+#~ msgstr ""
+
+#~ msgid "Guyana"
+#~ msgstr ""
+
+#~ msgid "Haiti"
+#~ msgstr ""
+
+#~ msgid "Honduras"
+#~ msgstr ""
+
+#~ msgid "Hong Kong"
+#~ msgstr ""
+
+#~ msgid "Hungary"
+#~ msgstr ""
+
+#~ msgid "Iceland"
+#~ msgstr ""
+
+#~ msgid "India"
+#~ msgstr ""
+
+#~ msgid "Indonesia"
+#~ msgstr ""
+
+#~ msgid "Iran"
+#~ msgstr ""
+
+#~ msgid "Iraq"
+#~ msgstr ""
+
+#~ msgid "Ireland"
+#~ msgstr ""
+
+#~ msgid "Israel"
+#~ msgstr ""
+
+#~ msgid "Italy"
+#~ msgstr ""
+
+#~ msgid "Jamaica"
+#~ msgstr ""
+
+#~ msgid "Japan"
+#~ msgstr ""
+
+#~ msgid "Jordan"
+#~ msgstr ""
+
+#~ msgid "Kazakhstan"
+#~ msgstr ""
+
+#~ msgid "Kenya"
+#~ msgstr ""
+
+#~ msgid "Kiribati"
+#~ msgstr ""
+
+#~ msgid "Korea North"
+#~ msgstr ""
+
+#~ msgid "Korea South"
+#~ msgstr ""
+
+#~ msgid "Kuwait"
+#~ msgstr ""
+
+#~ msgid "Kyrgyzstan"
+#~ msgstr ""
+
+#~ msgid "Laos"
+#~ msgstr ""
+
+#~ msgid "Latvia"
+#~ msgstr ""
+
+#~ msgid "Lebanon"
+#~ msgstr ""
+
+#~ msgid "Lesotho"
+#~ msgstr ""
+
+#~ msgid "Liberia"
+#~ msgstr ""
+
+#~ msgid "Libya"
+#~ msgstr ""
+
+#~ msgid "Liechtenstein"
+#~ msgstr ""
+
+#~ msgid "Lithuania"
+#~ msgstr ""
+
+#~ msgid "Luxembourg"
+#~ msgstr ""
+
+#~ msgid "Macedonia"
+#~ msgstr ""
+
+#~ msgid "Madagascar"
+#~ msgstr ""
+
+#~ msgid "Malawi"
+#~ msgstr ""
+
+#~ msgid "Malaysia"
+#~ msgstr ""
+
+#~ msgid "Maldives"
+#~ msgstr ""
+
+#~ msgid "Mali"
+#~ msgstr ""
+
+#~ msgid "Malta"
+#~ msgstr ""
+
+#~ msgid "Marshall Islands"
+#~ msgstr ""
+
+#~ msgid "Mauritania"
+#~ msgstr ""
+
+#~ msgid "Mauritius"
+#~ msgstr ""
+
+#~ msgid "Micronesia"
+#~ msgstr ""
+
+#~ msgid "Moldova"
+#~ msgstr ""
+
+#~ msgid "Mongolia"
+#~ msgstr ""
+
+#~ msgid "Montenegro"
+#~ msgstr ""
+
+#~ msgid "Morocco"
+#~ msgstr ""
+
+#~ msgid "Monaco"
+#~ msgstr ""
+
+#~ msgid "Mozambique"
+#~ msgstr ""
+
+#~ msgid "Namibia"
+#~ msgstr ""
+
+#~ msgid "Nauru"
+#~ msgstr ""
+
+#~ msgid "Nepal"
+#~ msgstr ""
+
+#~ msgid "Netherlands"
+#~ msgstr ""
+
+#~ msgid "New Zealand"
+#~ msgstr ""
+
+#~ msgid "Nicaragua"
+#~ msgstr ""
+
+#~ msgid "Niger"
+#~ msgstr ""
+
+#~ msgid "Nigeria"
+#~ msgstr ""
+
+#~ msgid "Norway"
+#~ msgstr ""
+
+#~ msgid "Oman"
+#~ msgstr ""
+
+#~ msgid "Pakistan"
+#~ msgstr ""
+
+#~ msgid "Panama"
+#~ msgstr ""
+
+#~ msgid "Papua New Guinea"
+#~ msgstr ""
+
+#~ msgid "Paraguay"
+#~ msgstr ""
+
+#~ msgid "Peru"
+#~ msgstr ""
+
+#~ msgid "Philippines"
+#~ msgstr ""
+
+#~ msgid "Poland"
+#~ msgstr ""
+
+#~ msgid "Portugal"
+#~ msgstr ""
+
+#~ msgid "Qatar"
+#~ msgstr ""
+
+#~ msgid "Romania"
+#~ msgstr ""
+
+#~ msgid "Russia"
+#~ msgstr ""
+
+#~ msgid "Rwanda"
+#~ msgstr ""
+
+#~ msgid "Samoa"
+#~ msgstr ""
+
+#~ msgid "San Marino"
+#~ msgstr ""
+
+#~ msgid "Sao Tome"
+#~ msgstr ""
+
+#~ msgid "Saudi Arabia"
+#~ msgstr ""
+
+#~ msgid "Senegal"
+#~ msgstr ""
+
+#~ msgid "Serbia"
+#~ msgstr ""
+
+#~ msgid "Seychelles"
+#~ msgstr ""
+
+#~ msgid "Sierra Leone"
+#~ msgstr ""
+
+#~ msgid "Singapore"
+#~ msgstr ""
+
+#~ msgid "Slovakia"
+#~ msgstr ""
+
+#~ msgid "Slovenia"
+#~ msgstr ""
+
+#~ msgid "Solomon Islands"
+#~ msgstr ""
+
+#~ msgid "Somalia"
+#~ msgstr ""
+
+#~ msgid "South Africa"
+#~ msgstr ""
+
+#~ msgid "Sri Lanka"
+#~ msgstr ""
+
+#~ msgid "Sudan"
+#~ msgstr ""
+
+#~ msgid "Suriname"
+#~ msgstr ""
+
+#~ msgid "Swaziland"
+#~ msgstr ""
+
+#~ msgid "Sweden"
+#~ msgstr ""
+
+#~ msgid "Switzerland"
+#~ msgstr ""
+
+#~ msgid "Syria"
+#~ msgstr ""
+
+#~ msgid "Taiwan"
+#~ msgstr ""
+
+#~ msgid "Tajikistan"
+#~ msgstr ""
+
+#~ msgid "Tanzania"
+#~ msgstr ""
+
+#~ msgid "Thailand"
+#~ msgstr ""
+
+#~ msgid "Togo"
+#~ msgstr ""
+
+#~ msgid "Tonga"
+#~ msgstr ""
+
+#~ msgid "Trinidad and Tobago"
+#~ msgstr ""
+
+#~ msgid "Tunisia"
+#~ msgstr ""
+
+#~ msgid "Turkey"
+#~ msgstr ""
+
+#~ msgid "Turkmenistan"
+#~ msgstr ""
+
+#~ msgid "Uganda"
+#~ msgstr ""
+
+#~ msgid "Ukraine"
+#~ msgstr ""
+
+#~ msgid "United Arab Emirates"
+#~ msgstr ""
+
+#~ msgid "Uruguay"
+#~ msgstr ""
+
+#~ msgid "Uzbekistan"
+#~ msgstr ""
+
+#~ msgid "Vanuatu"
+#~ msgstr ""
+
+#~ msgid "Venezuela"
+#~ msgstr ""
+
+#~ msgid "Viet nam"
+#~ msgstr ""
+
+#~ msgid "Yemen"
+#~ msgstr ""
+
+#~ msgid "Zambia"
+#~ msgstr ""
+
+#~ msgid "Zimbabwe"
+#~ msgstr ""
+
+#~ msgid "Address Line 1"
+#~ msgstr ""
+
+#~ msgid "Address Line 2"
+#~ msgstr ""
+
+#~ msgid "Preferred language for future communications"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "I agree to the Privacy Statement and accept"
+#~ " the Terms and "
+#~ "Conditions "
+#~ msgstr ""
+
+#~ msgid "Next"
+#~ msgstr ""
+
+#~ msgid "Save"
+#~ msgstr ""
+
+#~ msgid "Danger zone"
+#~ msgstr ""
+
+#~ msgid "Delete or scrub the account."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "If the account has any samples "
+#~ "associated, the account and sources will"
+#~ " be scrubbed, meaning all free text"
+#~ " and identifiable information is removed."
+#~ msgstr ""
+
+#~ msgid "Otherwise, the account and any sources will be deleted"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "IMPORTANT: you must manually delete the"
+#~ " email from Authrocket and other "
+#~ "external services like MyEmma to "
+#~ "complete the process"
+#~ msgstr ""
+
+#~ msgid "ACCOUNT DELETION CANNOT BE UNDONE"
+#~ msgstr ""
+
+#~ msgid "Delete Account"
+#~ msgstr ""
+
+#~ msgid "Account"
+#~ msgstr ""
+
+#~ msgid "Active Profiles"
+#~ msgstr ""
+
+#~ msgid "Go to My Profile"
+#~ msgstr ""
+
+#~ msgid "Add New Profile"
+#~ msgstr ""
+
+#~ msgid "Select the type of profile you would like to create."
+#~ msgstr ""
+
+#~ msgid "Human Profile"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Share your diet, health, and lifestyle"
+#~ " details to help discover more about"
+#~ " how this affects the human "
+#~ "microbiome."
+#~ msgstr ""
+
+#~ msgid "Add Human Profile"
+#~ msgstr ""
+
+#~ msgid "Pet Profile"
+#~ msgstr ""
+
+#~ msgid "Share sample(s) from an animal (e.g. fecal, saliva, skin, etc.)"
+#~ msgstr ""
+
+#~ msgid "Coming Soon"
+#~ msgstr ""
+
+#~ msgid "Environment Profile"
+#~ msgstr ""
+
+#~ msgid "Share sample(s) from the environment (e.g. kitchen counter, food, etc.)"
+#~ msgstr ""
+
+#~ msgid "Admin Activation Codes"
+#~ msgstr ""
+
+#~ msgid "Search by Email"
+#~ msgstr ""
+
+#~ msgid "Search"
+#~ msgstr ""
+
+#~ msgid "Search by Activation Code"
+#~ msgstr ""
+
+#~ msgid "Activation Code"
+#~ msgstr ""
+
+#~ msgid "Generate Activation Code"
+#~ msgstr ""
+
+#~ msgid "Generate"
+#~ msgstr ""
+
+#~ msgid "Generate + Send Email"
+#~ msgstr ""
+
+#~ msgid "Generate Activation Codes from CSV File"
+#~ msgstr ""
+
+#~ msgid "CSV File of Emails"
+#~ msgstr ""
+
+#~ msgid "Search Results"
+#~ msgstr ""
+
+#~ msgid "Code"
+#~ msgstr ""
+
+#~ msgid "Activated"
+#~ msgstr ""
+
+#~ msgid "No accounts found"
+#~ msgstr ""
+
+#~ msgid "Admin Address Verification"
+#~ msgstr ""
+
+#~ msgid "Verify CSV File of Addresses"
+#~ msgstr ""
+
+#~ msgid "CSV File"
+#~ msgstr ""
+
+#~ msgid "Verify"
+#~ msgstr ""
+
+#~ msgid "Verify Single Address"
+#~ msgstr ""
+
+#~ msgid "Address 1"
+#~ msgstr ""
+
+#~ msgid "Address 2"
+#~ msgstr ""
+
+#~ msgid "Address 3"
+#~ msgstr ""
+
+#~ msgid "Postal Code"
+#~ msgstr ""
+
+#~ msgid "Latitude"
+#~ msgstr ""
+
+#~ msgid "Longitude"
+#~ msgstr ""
+
+#~ msgid "ADMINISTRATOR BARCODE SEARCH"
+#~ msgstr ""
+
+#~ msgid "Download CSV"
+#~ msgstr ""
+
+#~ msgid "Download Excel"
+#~ msgstr ""
+
+#~ msgid "Search Qiita"
+#~ msgstr ""
+
+#~ msgid "Barcode"
+#~ msgstr ""
+
+#~ msgid "Admin Campaign Edit"
+#~ msgstr ""
+
+#~ msgid "Edit Campaign"
+#~ msgstr ""
+
+#~ msgid "Campaign ID"
+#~ msgstr ""
+
+#~ msgid "Campaign Link"
+#~ msgstr ""
+
+#~ msgid "Associated Projects"
+#~ msgstr ""
+
+#~ msgid "Add Campaign"
+#~ msgstr ""
+
+#~ msgid "Campaign Language"
+#~ msgstr ""
+
+#~ msgid "Title"
+#~ msgstr ""
+
+#~ msgid "Instructions"
+#~ msgstr ""
+
+#~ msgid "Alt Campaign Language"
+#~ msgstr ""
+
+#~ msgid "Title in Alt Language"
+#~ msgstr ""
+
+#~ msgid "Instructions in Alt Language"
+#~ msgstr ""
+
+#~ msgid "Current Header Image"
+#~ msgstr ""
+
+#~ msgid "Upload New Header Image"
+#~ msgstr ""
+
+#~ msgid "Permitted Countries"
+#~ msgstr ""
+
+#~ msgid "Accepting Participants"
+#~ msgstr ""
+
+#~ msgid "Send THDMI Confirmation Email"
+#~ msgstr ""
+
+#~ msgid "Force Primary Language on Form"
+#~ msgstr ""
+
+#~ msgid "Submit"
+#~ msgstr ""
+
+#~ msgid "Campaigns"
+#~ msgstr ""
+
+#~ msgid "Campaign Name"
+#~ msgstr ""
+
+#~ msgid "No campaigns found"
+#~ msgstr ""
+
+#~ msgid "Admin FFQ Codes"
+#~ msgstr ""
+
+#~ msgid "Generate Single Code"
+#~ msgstr ""
+
+#~ msgid "Generate Multiple Codes and download CSV File"
+#~ msgstr ""
+
+#~ msgid "Number of Codes"
+#~ msgstr ""
+
+#~ msgid "ADMINISTRATOR MODE"
+#~ msgstr ""
+
+#~ msgid "Account ID"
+#~ msgstr ""
+
+#~ msgid "Please enter a valid phone number."
+#~ msgstr ""
+
+#~ msgid "Please enter your street address."
+#~ msgstr ""
+
+#~ msgid "Please enter your city."
+#~ msgstr ""
+
+#~ msgid "Please select your state."
+#~ msgstr ""
+
+#~ msgid "Please enter your postal code."
+#~ msgstr ""
+
+#~ msgid "Edit Interested User"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "CAUTION: Edits made will NOT go "
+#~ "through address verification - proceed "
+#~ "carefully"
+#~ msgstr ""
+
+#~ msgid "Phone"
+#~ msgstr ""
+
+#~ msgid "Address Type"
+#~ msgstr ""
+
+#~ msgid "Interested Users"
+#~ msgstr ""
+
+#~ msgid "Converted to Account"
+#~ msgstr ""
+
+#~ msgid "No interested users found"
+#~ msgstr ""
+
+#~ msgid "ADMINISTRATOR SYSTEM PANEL"
+#~ msgstr ""
+
+#~ msgid "Set System Message"
+#~ msgstr ""
+
+#~ msgid "System Message"
+#~ msgstr ""
+
+#~ msgid "primary"
+#~ msgstr ""
+
+#~ msgid "secondary"
+#~ msgstr ""
+
+#~ msgid "success"
+#~ msgstr ""
+
+#~ msgid "danger"
+#~ msgstr ""
+
+#~ msgid "warning"
+#~ msgstr ""
+
+#~ msgid "info"
+#~ msgstr ""
+
+#~ msgid "light"
+#~ msgstr ""
+
+#~ msgid "dark"
+#~ msgstr ""
+
+#~ msgid "Consent Documents"
+#~ msgstr ""
+
+#~ msgid "Survey"
+#~ msgstr ""
+
+#~ msgid "Biospecimen"
+#~ msgstr ""
+
+#~ msgid "View"
+#~ msgstr ""
+
+#~ msgid "Create Non-human Source"
+#~ msgstr ""
+
+#~ msgid "Creating Source..."
+#~ msgstr ""
+
+#~ msgid "Environment name (e.g., microwave)"
+#~ msgstr ""
+
+#~ msgid "Environment description (optional)"
+#~ msgstr ""
+
+#~ msgid "Create Source"
+#~ msgstr ""
+
+#~ msgid "Awaiting Email Confirmation"
+#~ msgstr ""
+
+#~ msgid "Check your email inbox"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "To complete your verification, click on"
+#~ " the link in the email AuthRocket "
+#~ "has sent to"
+#~ msgstr ""
+
+#~ msgid "Waiting for you to confirm"
+#~ msgstr ""
+
+#~ msgid "Please check both your spam and inbox"
+#~ msgstr ""
+
+#~ msgid "AuthRocket is our authentication service"
+#~ msgstr ""
+
+#~ msgid "Email wrong or didn't receive an email?"
+#~ msgstr ""
+
+#~ msgid "Go to your AuthRocket Account"
+#~ msgstr ""
+
+#~ msgid "to update your email or resend a verification email"
+#~ msgstr ""
+
+#~ msgid "You can close this browser tab!"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "After email verification, a new tab "
+#~ "will automatically open, and you will"
+#~ " proceed with filling out your "
+#~ "account details"
+#~ msgstr ""
+
+#~ msgid "Embedded PDF"
+#~ msgstr ""
+
+#~ msgid "This report is generated by a third party."
+#~ msgstr ""
+
+#~ msgid "Emperor Playground"
+#~ msgstr ""
+
+#~ msgid "PCOA URL"
+#~ msgstr ""
+
+#~ msgid "Go!"
+#~ msgstr ""
+
+#~ msgid "Error Page"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "An error seemed to have occurred "
+#~ "(see below). It is most likely our"
+#~ " fault. We are actively modifying our"
+#~ " infrastructure to support COVID-19 "
+#~ "research, and we're still in the "
+#~ "process of handling the different type"
+#~ " of scenarios that can happen on "
+#~ "a website. We apologize for any "
+#~ "inconvenience."
+#~ msgstr ""
+
+#~ msgid "If you have any concerns, please email us at"
+#~ msgstr ""
+
+#~ msgid "and please note the error below"
+#~ msgstr ""
+
+#~ msgid "Error"
+#~ msgstr ""
+
+#~ msgid "Home"
+#~ msgstr ""
+
+#~ msgid "Welcome!"
+#~ msgstr ""
+
+#~ msgid "Sign Up"
+#~ msgstr ""
+
+#~ msgid "Log In"
+#~ msgstr ""
+
+#~ msgid "My Kits"
+#~ msgstr ""
+
+#~ msgid "KitID"
+#~ msgstr ""
+
+#~ msgid "View Results"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Currently, \"My Kits\" is unavailable in"
+#~ " your country or region. We apologize"
+#~ " for any inconvenience."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Click on the following link if you"
+#~ " would like to contribute to receive"
+#~ " a kit"
+#~ msgstr ""
+
+#~ msgid "Get a Kit"
+#~ msgstr ""
+
+#~ msgid "Have a KitID"
+#~ msgstr ""
+
+#~ msgid "Sample Received - Results Pending"
+#~ msgstr ""
+
+#~ msgid "To register your kit, enter your Kit ID below"
+#~ msgstr ""
+
+#~ msgid "Register Kit"
+#~ msgstr ""
+
+#~ msgid "Which barcode(s) are you using from this kit (select all that apply)?"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Each collection tube you receive has "
+#~ "a unique barcode printed on the "
+#~ "side."
+#~ msgstr ""
+
+#~ msgid "1. Select the barcode(s) you are using"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "2. Add the date and time of "
+#~ "sample collection and select the sample"
+#~ " type taken."
+#~ msgstr ""
+
+#~ msgid "Important"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "The sample cannot be processed in "
+#~ "the lab until this information is "
+#~ "complete."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Keep a record of these details. "
+#~ "The barcode is needed to resolve "
+#~ "any issues you may have with your"
+#~ " sample collection."
+#~ msgstr ""
+
+#~ msgid "What is the barcode and why is it important?"
+#~ msgstr ""
+
+#~ msgid "Confirm"
+#~ msgstr ""
+
+#~ msgid "MyFoodRepo unavailable"
+#~ msgstr ""
+
+#~ msgid "MyFoodRepo is currently unavailabile"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "We apologize, but unfortunately MyFoodRepo "
+#~ "is not available at this time. "
+#~ "Please check back in a few days"
+#~ " and try again."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "MyFoodRepo is human curated to ensure"
+#~ " the highest accuracy in reported "
+#~ "dietary detail. Because the process is"
+#~ " not fully automated, we need to "
+#~ "limit the number of concurrent users "
+#~ "who take part. We apologize for "
+#~ "the inconvenience."
+#~ msgstr ""
+
+#~ msgid "Back to Samples"
+#~ msgstr ""
+
+#~ msgid "Consent"
+#~ msgstr ""
+
+#~ msgid "Saving..."
+#~ msgstr ""
+
+#~ msgid "Please confirm that you have read this form."
+#~ msgstr ""
+
+#~ msgid "Please enter the participant name."
+#~ msgstr ""
+
+#~ msgid "Please enter the parent or guardian name."
+#~ msgstr ""
+
+#~ msgid "Please confirm that you will be in this study."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Please confirm that the participant is"
+#~ " voluntarily and knowingly giving consent."
+#~ msgstr ""
+
+#~ msgid "Please enter the name of the person obtaining assent."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "It looks like you are creating a"
+#~ " new profile that may be similar "
+#~ "or the same as an existing "
+#~ "profile. If this is the same "
+#~ "person as an existing profile, please"
+#~ " consider providing new samples or "
+#~ "survey responses under that profile."
+#~ msgstr ""
+
+#~ msgid "I Accept"
+#~ msgstr ""
+
+#~ msgid "Biospecimen Consent Form"
+#~ msgstr ""
+
+#~ msgid "Data Consent Form"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Signature and agreement of this consent"
+#~ " form is required to process your "
+#~ "sample(s)."
+#~ msgstr ""
+
+#~ msgid "Select age range of participant"
+#~ msgstr ""
+
+#~ msgid "Cancel"
+#~ msgstr ""
+
+#~ msgid "Warning"
+#~ msgstr ""
+
+#~ msgid "Return to Home Page"
+#~ msgstr ""
+
+#~ msgid "Proceed with Creating New Source"
+#~ msgstr ""
+
+#~ msgid "Sample Results"
+#~ msgstr ""
+
+#~ msgid "11 to 20"
+#~ msgstr ""
+
+#~ msgid "21 to 30"
+#~ msgstr ""
+
+#~ msgid "5-6 hours"
+#~ msgstr ""
+
+#~ msgid "6 to 10"
+#~ msgstr ""
+
+#~ msgid "6-7 hours"
+#~ msgstr ""
+
+#~ msgid "7-8 hours"
+#~ msgstr ""
+
+#~ msgid "8 or more hours"
+#~ msgstr ""
+
+#~ msgid "Daily"
+#~ msgstr ""
+
+#~ msgid "Less than 5"
+#~ msgstr ""
+
+#~ msgid "Less than 5 hours"
+#~ msgstr ""
+
+#~ msgid "More than 30"
+#~ msgstr ""
+
+#~ msgid "Never"
+#~ msgstr ""
+
+#~ msgid "Not provided"
+#~ msgstr ""
+
+#~ msgid "Occasionally (1-2 times/week)"
+#~ msgstr ""
+
+#~ msgid "Rarely (a few times/month)"
+#~ msgstr ""
+
+#~ msgid "Rarely (less than once/week)"
+#~ msgstr ""
+
+#~ msgid "Regularly (3-5 times/week)"
+#~ msgstr ""
+
+#~ msgid "Microbiomes Across the Body"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "In this map, we've placed your "
+#~ "sample relative to all the other "
+#~ "samples we have in Microsetta. As "
+#~ "you can see, there are a few "
+#~ "different types of samples people have"
+#~ " contributed, and the microbial "
+#~ "configurations present can be REALLY "
+#~ "different."
+#~ msgstr ""
+
+#~ msgid "Microbiomes Across the World"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Researchers have noted large differences "
+#~ "in our microbiomes depending on where"
+#~ " we live. The reason WHY is not"
+#~ " well understood, but we suspect "
+#~ "factors such as diet or environmental"
+#~ " exposures (e.g., plants, what's in "
+#~ "your house, pollution, how often you "
+#~ "come in contact with soil, etc) "
+#~ "may be be major factors."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Researchers do not know how much "
+#~ "these differences matter! They certainly "
+#~ "may."
+#~ msgstr ""
+
+#~ msgid "Microbiomes Across the Lifespan"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "One major factor associated with gut "
+#~ "microbiomes is the age of the "
+#~ "individual, emphasized here by life "
+#~ "stages."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Interestingly, infants are relatively similar"
+#~ " microbially regardless of where they "
+#~ "were born. But, as individuals age, "
+#~ "it seems like their microbiomes reflect"
+#~ " regional or population differences."
+#~ msgstr ""
+
+#~ msgid "Microbiomes in the Environment"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Microbes are EVERYWHERE though! Using "
+#~ "these same techniques described above, "
+#~ "we compared your microbiome to samples"
+#~ " collected from all over the surfaces"
+#~ " from a brand new hospital."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "As you can see, skin samples tend"
+#~ " to more closely resemble those from"
+#~ " the built environment, which makes "
+#~ "sense as skin cells are constantly "
+#~ "shedding from you."
+#~ msgstr ""
+
+#~ msgid "The Microsetta Initiative"
+#~ msgstr ""
+
+#~ msgid "Publication link"
+#~ msgstr ""
+
+#~ msgid "Data access (Qiita study"
+#~ msgstr ""
+
+#~ msgid "Download the spreadsheet"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "The broadest classification like Bacteria, "
+#~ "Archaea and Eukaryokes (what humans "
+#~ "are!)"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Within the kingdom Eukarya, this is "
+#~ "like the difference between humans and"
+#~ " plants"
+#~ msgstr ""
+
+#~ msgid "Within the phylum Chordata, this is along the lines of humans and fish"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Within the class Mammalia, this is "
+#~ "like the difference between whales and"
+#~ " a dogs"
+#~ msgstr ""
+
+#~ msgid "With the order Carnivora are the families for dogs and cats"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Within the family Canidae, you would "
+#~ "find a genus for foxes and one "
+#~ "for wolves"
+#~ msgstr ""
+
+#~ msgid "Unspecified"
+#~ msgstr ""
+
+#~ msgid "chose not to provide their age"
+#~ msgstr ""
+
+#~ msgid "is"
+#~ msgstr ""
+
+#~ msgid "years old"
+#~ msgstr ""
+
+#~ msgid "chose not to say how many sweets they eat"
+#~ msgstr ""
+
+#~ msgid "eats sweets"
+#~ msgstr ""
+
+#~ msgid "eats more sugary sweets than you"
+#~ msgstr ""
+
+#~ msgid "eats fewer sugary sweets than you"
+#~ msgstr ""
+
+#~ msgid "eats about the same number of sugary sweets as you"
+#~ msgstr ""
+
+#~ msgid "Rank Distributions"
+#~ msgstr ""
+
+#~ msgid "My Sample"
+#~ msgstr ""
+
+#~ msgid "How abundant are my microbes compared everyone in Microsetta?"
+#~ msgstr ""
+
+#~ msgid "Common types of microbes"
+#~ msgstr ""
+
+#~ msgid "Least Abundant"
+#~ msgstr ""
+
+#~ msgid "Most Abundant"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "whole genome sequencing, a technique "
+#~ "that produces a large number of "
+#~ "small DNA sequences from all of "
+#~ "the microbial genomes in your sample."
+#~ " With enough sequences you can even"
+#~ " see the variation that exists "
+#~ "between microbes of the same species."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "16S. This technique produces DNA "
+#~ "sequences from a specific variable "
+#~ "region (V4) within a microbial gene "
+#~ "(the 16S small subunit ribosomal gene)."
+#~ " DNA sequences from this region of"
+#~ " this gene can be used like a"
+#~ " microbial barcode, providing researchers "
+#~ "evidence of the types of microbes "
+#~ "that may be present in your "
+#~ "sample."
+#~ msgstr ""
+
+#~ msgid "Source"
+#~ msgstr ""
+
+#~ msgid "Results"
+#~ msgstr ""
+
+#~ msgid "How do you compare?"
+#~ msgstr ""
+
+#~ msgid "Diversity"
+#~ msgstr ""
+
+#~ msgid "Similarity"
+#~ msgstr ""
+
+#~ msgid "Your Inner Zoo"
+#~ msgstr ""
+
+#~ msgid "Microbiome Map"
+#~ msgstr ""
+
+#~ msgid "How can I learn more?"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Your microbiome is a rainforest of "
+#~ "diverse microbes dominated by microbes -"
+#~ " some 40 trillion bacteria, weighing "
+#~ "around 1 lb, live all over and "
+#~ "in your body. The diversity of "
+#~ "your microbiome, how similar it is "
+#~ "to other peoples', and the types "
+#~ "of bacteria living inside you have "
+#~ "all been linked to health, disease "
+#~ "and lifestyle traits in numerous "
+#~ "studies."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Scientists often use many different "
+#~ "approaches to see how your microbiome"
+#~ " differs. We've analyzed your microbiome"
+#~ " sample using standard microbiome research"
+#~ " tools, and the results are broken"
+#~ " down below in a few different "
+#~ "categories"
+#~ msgstr ""
+
+#~ msgid "How many kinds of microbes were in your sample? Check out your"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "What kinds of people have microbiomes"
+#~ " like yours? Check out your "
+#~ "microbiome"
+#~ msgstr ""
+
+#~ msgid "What particular kinds of microbes are in your sample? Wander through"
+#~ msgstr ""
+
+#~ msgid "Where are you on the"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "There are anywhere from hundreds of "
+#~ "millions to hundreds of billions of "
+#~ "different types of bacteria living on"
+#~ " planet earth. This dwarfs the meager"
+#~ " 2 million different kinds of animals"
+#~ " and plants that you can see "
+#~ "with your eyes. The average American has FILLIN different types of "
+#~ "microbes in a stool sample, which "
+#~ "is lower than we find in people"
+#~ " living a more hunter-gatherer "
+#~ "lifestyle, like the FILLIN we find"
+#~ " in samples from the Smits et "
+#~ "al. Science 2017\" data-"
+#~ "html=\"true\">Hadza ."
+#~ msgstr ""
+
+#~ msgid "Number of different microbes found in your sample"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "When we calculated the diversity of "
+#~ "groups for samples in our database, "
+#~ "we found diversity is associated with"
+#~ " how you live your life. Here, "
+#~ "we summarized the average microbiome "
+#~ "diversity for a few of the "
+#~ "questionnaire responses, specifically people "
+#~ "who eat more than 30 plants a "
+#~ "week, exercise regularly, drink water "
+#~ "regularly, or sleep more than 6 "
+#~ "hours a night."
+#~ msgstr ""
+
+#~ msgid "Eat more than 30 plants a week"
+#~ msgstr ""
+
+#~ msgid "unique microbial features"
+#~ msgstr ""
+
+#~ msgid "Exercise regularly"
+#~ msgstr ""
+
+#~ msgid "Drink 1L or water regularly"
+#~ msgstr ""
+
+#~ msgid "Sleep more than 6 hours per night"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "One of the powerful ways microbiome "
+#~ "scientists analyze data is by looking"
+#~ " at similarities among samples. To do"
+#~ " this, we compute a a "
+#~ "lot of ways to form a "
+#~ "distance. One way is to base the"
+#~ " distance off of the fraction of "
+#~ "microbes in common in your sample "
+#~ "with each other sample. We typically "
+#~ "share few of the exact same "
+#~ "microbes in common with other people "
+#~ "though which is problematic when "
+#~ "comparing exact microbes. To account for"
+#~ " this, researchers often take the "
+#~ "evolutionary relationships among microbes into"
+#~ " account when forming these "
+#~ "distances.\">distance from your sample "
+#~ "to all other samples based on the"
+#~ " microbes observed."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Here, we your sample to all the"
+#~ " others in our database, and examined"
+#~ " the 100 most similar samples to "
+#~ "yours. These people answered their "
+#~ "questionnaires in the following way; the"
+#~ " response is colored in light green "
+#~ "if it matches your response and "
+#~ "brown if your response "
+#~ "differed."
+#~ msgstr ""
+
+#~ msgid "Diet"
+#~ msgstr ""
+
+#~ msgid "of people with a microbiome like yours eat"
+#~ msgstr ""
+
+#~ msgid "plants per week"
+#~ msgstr ""
+
+#~ msgid "of people with a microbiome like yours had a similar diet"
+#~ msgstr ""
+
+#~ msgid "Supplements"
+#~ msgstr ""
+
+#~ msgid "of people with a microbiome like yours"
+#~ msgstr ""
+
+#~ msgid "take probiotics"
+#~ msgstr ""
+
+#~ msgid "of people with a microbiome like yours take vitamins"
+#~ msgstr ""
+
+#~ msgid "Activity"
+#~ msgstr ""
+
+#~ msgid "of people with a microbiome like yours exercise"
+#~ msgstr ""
+
+#~ msgid "of people with a microbiome like yours get"
+#~ msgstr ""
+
+#~ msgid "of sleep at night"
+#~ msgstr ""
+
+#~ msgid "Demographic"
+#~ msgstr ""
+
+#~ msgid "of people with a microbiome like yours were the same age as you"
+#~ msgstr ""
+
+#~ msgid "of people with a microbiome like yours were the same gender"
+#~ msgstr ""
+
+#~ msgid "Your Inner Zoo (aka What's in your sample?)"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Below you will find a table of "
+#~ "all of the different microbes we "
+#~ "found in your sample, and their "
+#~ "proportions."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Microbes sometimes have difficult names "
+#~ "to pronounce. Some of the names "
+#~ "are Latin, Greek, Norse, Chinese and "
+#~ "more. If you'd like to know more,"
+#~ " a pronounciation guide can be found"
+#~ " here ."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Please mouse over the header to "
+#~ "learn more about how to interpret "
+#~ "these taxonomic ranks (e.g., Kingdom) "
+#~ "using examples of non-microbial "
+#~ "organisms."
+#~ msgstr ""
+
+#~ msgid "%% of Sample"
+#~ msgstr ""
+
+#~ msgid "Kingdom"
+#~ msgstr ""
+
+#~ msgid "Phylum"
+#~ msgstr ""
+
+#~ msgid "Class"
+#~ msgstr ""
+
+#~ msgid "Order"
+#~ msgstr ""
+
+#~ msgid "Family"
+#~ msgstr ""
+
+#~ msgid "Genus"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "No evidence presented here indicates "
+#~ "what we've observed is clinically "
+#~ "dangerous"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "In the plot below, you can see "
+#~ "the most commonly observed microbial "
+#~ "genera in the dataset, and distribution"
+#~ " of ranks of those genera. For "
+#~ "example,"
+#~ msgstr ""
+
+#~ msgid "typically has the highest relative abundance of samples in the dataset."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Microbiome analysis is a burgeoning new"
+#~ " field, and the information displayed "
+#~ "here is only an example of what"
+#~ " is becoming possible thanks to the"
+#~ " data that you helped collect."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "So if you want to learn more, "
+#~ "you can even take a look at "
+#~ "the dataset for yourself!"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "For your sample, we performed a "
+#~ "technique called amplicon sequencing where "
+#~ "we examine pieces of DNA corresponding"
+#~ " to a particular gene. Specifically, "
+#~ "we sequenced the fourth variable region"
+#~ " (V4) of the 16S rRNA small "
+#~ "subunit ribosomal gene. DNA sequences "
+#~ "from this region of this gene can"
+#~ " be used like a microbial barcode,"
+#~ " providing researchers evidence of the "
+#~ "types of microbes that may be "
+#~ "present in your sample."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "There are many resources for microbiome"
+#~ " information available online. If you'd "
+#~ "like to learn more, we recommend "
+#~ "the American Society for"
+#~ " Microbiology , microBEnet , the Canadian Probiotics "
+#~ "Chart , and the American Gastroenterological Association ."
+#~ msgstr ""
+
+#~ msgid "Datasets used in your results report"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "The results shown in the Microbiome "
+#~ "Maps portion of the report relied "
+#~ "on data from many different publically"
+#~ " accessible microbiome datasets. These "
+#~ "different datasets, and links to them,"
+#~ " are listed below."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Microbiome maps turn the similarities "
+#~ "and differences among microbiomes into a"
+#~ " two-dimensional picture. Each dot is"
+#~ " a whole microbiome, and dots close"
+#~ " to yours are more similar "
+#~ "microbiomes."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "How "
+#~ "are these maps produced? "
+#~ msgstr ""
+
+#~ msgid "My Nutrition"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Your registration code is not in "
+#~ "our system or has already been "
+#~ "used. Please try again."
+#~ msgstr ""
+
+#~ msgid "My FFQs"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Currently, \"My FFQs\" is unavailable in"
+#~ " your country or region. We apologize"
+#~ " for any inconvenience."
+#~ msgstr ""
+
+#~ msgid "Have an FFQ Code"
+#~ msgstr ""
+
+#~ msgid "Get an FFQ Code"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "This Food Frequency Questionnaire (FFQ) "
+#~ "will take approximately 30 minutes. By"
+#~ " completing it, you'll receive the "
+#~ "following report"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Personal diet and nutrition summary, "
+#~ "listing the highest contributing food "
+#~ "sources of nutrients you should try "
+#~ "to limit and your top food sources"
+#~ " with key nutrients that promote good"
+#~ " health."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "You must press the \"Finish\" button "
+#~ "on the final page of the FFQ "
+#~ "to register it as completed. You "
+#~ "can complete the FFQ in stages by"
+#~ " clicking \"Continue FFQ\" and selecting"
+#~ " the \"Resume\" button to return to"
+#~ " where you left off."
+#~ msgstr ""
+
+#~ msgid "Download Top Food Report"
+#~ msgstr ""
+
+#~ msgid "Continue FFQ"
+#~ msgstr ""
+
+#~ msgid "Registration Code"
+#~ msgstr ""
+
+#~ msgid "Register FFQ"
+#~ msgstr ""
+
+#~ msgid "Opt Out"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Sorry, we could not complete the "
+#~ "request. Please email microsetta@ucsd.edu with"
+#~ " the email address you signed up "
+#~ "with so we can remove you from "
+#~ "our list."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "We're sorry you are no longer "
+#~ "interested in participating in The Human"
+#~ " Diets & Microbiome Initiative (THDMI). "
+#~ "Please click the \"opt out\" button "
+#~ "below to confirm that you do not"
+#~ " wish to take part."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Thank you for letting us know. You"
+#~ " will no longer be part of this"
+#~ " research study."
+#~ msgstr ""
+
+#~ msgid "Optional Sample Surveys"
+#~ msgstr ""
+
+#~ msgid "Your diet can provide researchers valuable information"
+#~ msgstr ""
+
+#~ msgid "Would you like to take our additional survey, the"
+#~ msgstr ""
+
+#~ msgid "Food Frequency Questionnaire"
+#~ msgstr ""
+
+#~ msgid "FFQ"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "By completing the questionnaire, you can"
+#~ " enhance information about your sample, "
+#~ "which will power more insightful "
+#~ "research!"
+#~ msgstr ""
+
+#~ msgid "Note"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "If you took multiple samples within "
+#~ "a short time frame, you only need"
+#~ " to take the FFQ for one such"
+#~ " sample"
+#~ msgstr ""
+
+#~ msgid "Approx time: 30 minutes"
+#~ msgstr ""
+
+#~ msgid "Take FFQ"
+#~ msgstr ""
+
+#~ msgid "My Reports"
+#~ msgstr ""
+
+#~ msgid "Do you really want to remove this sample from this source?"
+#~ msgstr ""
+
+#~ msgid "Doing so will remove any collection info saved for this sample and will"
+#~ msgstr ""
+
+#~ msgid "unlink it from all surveys."
+#~ msgstr ""
+
+#~ msgid "Required Format: MM/DD/YYYY"
+#~ msgstr ""
+
+#~ msgid "Please select a date within the last 10 years."
+#~ msgstr ""
+
+#~ msgid "Please select a date within the next 30 days."
+#~ msgstr ""
+
+#~ msgid "Date of Sample Collection"
+#~ msgstr ""
+
+#~ msgid "Time of Sample Collection"
+#~ msgstr ""
+
+#~ msgid "Sample Type"
+#~ msgstr ""
+
+#~ msgid "Select a sample type"
+#~ msgstr ""
+
+#~ msgid "Notes"
+#~ msgstr ""
+
+#~ msgid "(Optional) Is there else about this sample that you would like to add?"
+#~ msgstr ""
+
+#~ msgid "Remove"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Your sample has been received by "
+#~ "our lab and can no longer be "
+#~ "edited. Please contact us with"
+#~ " any questions."
+#~ msgstr ""
+
+#~ msgid "What is in your sample?"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "The table below shows the relative "
+#~ "abundances of all of the organisms "
+#~ "we observed in your sample. To "
+#~ "produce this, we took the DNA "
+#~ "sequences from your sample, and compared"
+#~ " them against publicly available annotated"
+#~ " reference databases. In some cases, "
+#~ "a sequence may uniquely match a "
+#~ "database record, in other cases a "
+#~ "sequence may match may different "
+#~ "records. To handle the uncertainty that"
+#~ " can arise, we rely on a well"
+#~ " used and publicly available microbiome "
+#~ "software package called QIIME 2 ."
+#~ " The exact approach taken is "
+#~ "highlighted in the main tutorial on "
+#~ "feature-classification "
+#~ msgstr ""
+
+#~ msgid "Relative Abundance"
+#~ msgstr ""
+
+#~ msgid "Alpha Diversity"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Here, we're providing a measure of "
+#~ "the diversity of your sample, and "
+#~ "how it compares to the diversities "
+#~ "of all of the same type of "
+#~ "samples in The Microsetta Initiative. "
+#~ "There are many ways to calculate "
+#~ "diversity. For instance, you could "
+#~ "compute a diversity value by counting"
+#~ " the number of unique organisms "
+#~ "observed (i.e., the sample \"richness\"). "
+#~ "Or, you might be interested in "
+#~ "weighting the calculation by the "
+#~ "relative abundance of the organisms "
+#~ "(i.e., the sample \"evenness\"). The "
+#~ "metric we're computing here is called"
+#~ " Faith's Phylogenetic Diversity (originally "
+#~ "defined here ). Faith's Phylogenetic "
+#~ "Diversity computes the \"richness\" of "
+#~ "your sample as the amount of "
+#~ "evolutionary breadth represented by your "
+#~ "sample. The way we compute alpha "
+#~ "diversity is also through QIIME 2 ,"
+#~ " and more information on it can "
+#~ "be found in the alpha and beta "
+#~ "diversity sections of the QIIME 2"
+#~ " tutorial"
+#~ msgstr ""
+
+#~ msgid "Beta Diversity"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Here we display how your sample "
+#~ "fits in among the other samples of"
+#~ " The Microsetta Initiative in terms "
+#~ "of shared microbes. There are many "
+#~ "ways to calculate beta diversity, "
+#~ "differing in how to weight the "
+#~ "distance between any two microbes. We"
+#~ " take evolutionary distance into account"
+#~ " with the metric displayed here, "
+#~ "known as Unweighted Unifrac. You can "
+#~ "find an overview of this metric here or better understand "
+#~ "its derivation here . This computation is "
+#~ "performed with QIIME 2 , and more "
+#~ "information on it can be found in"
+#~ " the alpha and beta diversity sections of the QIIME 2"
+#~ " tutorial"
+#~ msgstr ""
+
+#~ msgid "Secondary Surveys"
+#~ msgstr ""
+
+#~ msgid "Survey Title"
+#~ msgstr ""
+
+#~ msgid "Survey Description"
+#~ msgstr ""
+
+#~ msgid "Date Signed"
+#~ msgstr ""
+
+#~ msgid "Microsetta"
+#~ msgstr ""
+
+#~ msgid "You are deleting the profile for"
+#~ msgstr ""
+
+#~ msgid "and all surveys associated with it!"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "This operation cannot be undone. Are"
+#~ " you sure you want to delete "
+#~ "this source?"
+#~ msgstr ""
+
+#~ msgid "Administrator Toolbar"
+#~ msgstr ""
+
+#~ msgid "System Panel"
+#~ msgstr ""
+
+#~ msgid "Address Verification"
+#~ msgstr ""
+
+#~ msgid "FFQ Codes"
+#~ msgstr ""
+
+#~ msgid "Find Account"
+#~ msgstr ""
+
+#~ msgid "Barcode Search"
+#~ msgstr ""
+
+#~ msgid "Log Out"
+#~ msgstr ""
+
+#~ msgid "My Profile"
+#~ msgstr ""
+
+#~ msgid "Delete This Profile"
+#~ msgstr ""
+
+#~ msgid "Are you sure you want to withdraw your consent and delete your profile?"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "I hereby withdraw consent for "
+#~ "researchers to use my personal data "
+#~ "and/or sample(s) for The Microsetta "
+#~ "Initiative (TMI)."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "I understand and acknowledge that any"
+#~ " personal data and/or sample(s) that "
+#~ "have already been provided to TMI "
+#~ "in accordance with the consent I "
+#~ "provided by signing the consent form(s),"
+#~ " will continue to be used for "
+#~ "the research. However, no new "
+#~ "information will be collected."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "I understand that my data will "
+#~ "only be shared after directly "
+#~ "identifying information has been removed "
+#~ "so that researchers cannot re-identify"
+#~ " my personal data and/or sample(s) "
+#~ "for future use."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "By clicking withdraw, you will be "
+#~ "ending your participation and terminating "
+#~ "your profile. If you would like to"
+#~ " be removed from being contacted for"
+#~ " general program updates or information "
+#~ "about future research studies, please "
+#~ "refer to account deletion or contact "
+#~ "us at microsetta@ucsd.edu."
+#~ msgstr ""
+
+#~ msgid "Maybe Later"
+#~ msgstr ""
+
+#~ msgid "Take This Survey Now"
+#~ msgstr ""
+
+#~ msgid "FAQs"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "The Microsetta Initiative aims to "
+#~ "generate quality data that can help "
+#~ "you better understand your microbiome, "
+#~ "help scientists design better studies, "
+#~ "and improve the world's understanding of"
+#~ " the human microbiome."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Answering our surveys can help us "
+#~ "do just that. To get started, "
+#~ "build out your profile by answering "
+#~ "the surveys below. We will alert "
+#~ "you when new surveys become available."
+#~ msgstr ""
+
+#~ msgid "Last modified"
+#~ msgstr ""
+
+#~ msgid "NEW"
+#~ msgstr ""
+
+#~ msgid "minutes"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Below are surveys hosted by partner "
+#~ "organizations. You will be directed to"
+#~ " an external site in a new "
+#~ "browser tab to complete the survey(s)"
+#~ " you select. Once you complete them,"
+#~ " you may close the tab and "
+#~ "return to this page."
+#~ msgstr ""
+
+#~ msgid "COMPLETED"
+#~ msgstr ""
+
+#~ msgid "min"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "You will only have one opportunity "
+#~ "to take this survey. Please make "
+#~ "sure you have ample time before "
+#~ "you start."
+#~ msgstr ""
+
+#~ msgid "Sorry, you must be 18 or older to participate in this study."
+#~ msgstr ""
+
+#~ msgid "Sorry, this study is not open to residents of your country."
+#~ msgstr ""
+
+#~ msgid "Please select whether you are at least 18 years of age."
+#~ msgstr ""
+
+#~ msgid "Please enter your first name."
+#~ msgstr ""
+
+#~ msgid "Please enter your last name."
+#~ msgstr ""
+
+#~ msgid "Please enter a valid email address."
+#~ msgstr ""
+
+#~ msgid "Please select your country."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Sorry, we were unable to verify "
+#~ "your address. Please check your "
+#~ "information and try again."
+#~ msgstr ""
+
+#~ msgid "Please agree to receiving communications from us."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Sorry, due to widespread interest, the"
+#~ " sign-up list for this project "
+#~ "is full."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Please visit our website to learn"
+#~ " about other opportunities to participate"
+#~ " in The Microsetta Initiative."
+#~ msgstr ""
+
+#~ msgid "Verifying your information, please wait just a moment."
+#~ msgstr ""
+
+#~ msgid "Are you at least 18 years of age?"
+#~ msgstr ""
+
+#~ msgid "Yes"
+#~ msgstr ""
+
+#~ msgid "No"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Please note: Specimen collection kits "
+#~ "are associated with the email used "
+#~ "when registering. We recommend the "
+#~ "following:"
+#~ msgstr ""
+
+#~ msgid "1. One email must be used per kit."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "2. If you plan to complete the "
+#~ "form on behalf of another adult, "
+#~ "use that person's name and email "
+#~ "address."
+#~ msgstr ""
+
+#~ msgid "3. If possible, continue to use the same email throughout the study."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Once you have received the kit, "
+#~ "please continue to use the same "
+#~ "email address used when creating your"
+#~ " online account."
+#~ msgstr ""
+
+#~ msgid "Email Address"
+#~ msgstr ""
+
+#~ msgid "Phone Number"
+#~ msgstr ""
+
+#~ msgid "SELECT"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Please fill in the address you "
+#~ "would like your kit delivered to. "
+#~ "Example:"
+#~ msgstr ""
+
+#~ msgid "9500 Gilman Dr. San Diego, CA 92093"
+#~ msgstr ""
+
+#~ msgid "Residential"
+#~ msgstr ""
+
+#~ msgid "Commercial"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "By subscribing to this program, I "
+#~ "agree to receive communications via the"
+#~ " newsletter regarding the status of "
+#~ "the program, the steps I must "
+#~ "complete, tips and tricks for completing"
+#~ " my participation and surveys. I "
+#~ "agree and understand that I can "
+#~ "unsubscribe at any time using a "
+#~ "link in the newsletter and this "
+#~ "will not change my consent to "
+#~ "receive sample status updates directly "
+#~ "from the TMI database. "
+#~ msgstr ""
+
+#~ msgid "Previous"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Thank you for your interest in our"
+#~ " research. Your application has been "
+#~ "received. You will receive an email "
+#~ "shortly. Please check your junk or "
+#~ "spam folder if the email hasn’t "
+#~ "reached your inbox."
+#~ msgstr ""
+
+#~ msgid " selected"
+#~ msgstr ""
+
+#~ msgid "The value is not an integer"
+#~ msgstr ""
+
+#~ msgid "Invalid number"
+#~ msgstr ""
+
+#~ msgid "questions"
+#~ msgstr ""
+
+#~ msgid "You've finished building your profile!"
+#~ msgstr ""
+
+#~ msgid "Save & Go Home"
+#~ msgstr ""
+
+#~ msgid "Save & Next"
+#~ msgstr ""
+
+#~ msgid "Save & Previous"
+#~ msgstr ""
+
+#~ msgid "Save & Finish"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Sorry, it appears you are having "
+#~ "trouble verifying your address. Please "
+#~ "contact our support team at "
+#~ "microsetta@ucsd.edu and they can assist "
+#~ "with confirming your address."
+#~ msgstr ""
+
+#~ msgid "Update Your Address"
+#~ msgstr ""
+
+#~ msgid "Address Updated"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Thank you for updating your address! "
+#~ "Your information has been saved and "
+#~ "you will receive an email notification"
+#~ " once your kit ships."
+#~ msgstr ""
+
+#~ msgid "Email Update"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "It appears that the email we have"
+#~ " for your account is not the "
+#~ "same as the email you logged in"
+#~ " with. Would you like us to "
+#~ "update your email in our records?"
+#~ msgstr ""
+
+#~ msgid "No, skip and continue"
+#~ msgstr ""
+
+#~ msgid "Yes, update and continue"
+#~ msgstr ""
+
+#~ msgid "A fermented foods specific questionnaire"
+#~ msgstr ""
+
+#~ msgid "Questions on surfing behavior"
+#~ msgstr ""
+
+#~ msgid "Questions about your interest in the microbiome"
+#~ msgstr ""
+
+#~ msgid "Questions related to cooking oils and oxalate-rich foods"
+#~ msgstr ""
+
diff --git a/microsetta_interface/translations/es_ES/LC_MESSAGES/messages.po b/microsetta_interface/translations/es_ES/LC_MESSAGES/messages.po
index 74531555..2ad92ada 100644
--- a/microsetta_interface/translations/es_ES/LC_MESSAGES/messages.po
+++ b/microsetta_interface/translations/es_ES/LC_MESSAGES/messages.po
@@ -7,3275 +7,6582 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2022-09-01 20:54-0700\n"
+"POT-Creation-Date: 2023-02-15 13:39-0800\n"
"PO-Revision-Date: 2022-09-01 21:06-0700\n"
"Last-Translator: Edgar Diaz \n"
-"Language-Team: es_ES \n"
"Language: es_ES\n"
+"Language-Team: es_ES \n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Generated-By: Babel 2.9.1\n"
-"X-Generator: Poedit 3.1.1\n"
-#: implementation.py:476
-msgid "Unable to validate the kit name; please reload the page."
+#: implementation.py:582
+#, fuzzy
+msgid "The provided Kit ID is not in our system or has already been used."
msgstr ""
-"No se ha podido validar el nombre del kit; por favor recargue la página web."
+"El ID del kit proporcionado no es válido o ya ha sido utilizado; por "
+"favor vuelva a comprobar su información."
-#: implementation.py:495
-msgid ""
-"The provided kit id is not valid or has already been used; please re-check your "
-"entry."
+#: implementation.py:1160
+msgid "SKIP"
msgstr ""
-"El ID del kit proporcionado no es válido o ya ha sido utilizado; por favor "
-"vuelva a comprobar su información."
-#: implementation.py:1232 model_i18n.py:56
+#: implementation.py:1776 model_i18n.py:58
msgid "Blood (skin prick)"
msgstr "Sangre (pinchazo en la piel)"
-#: implementation.py:1233 model_i18n.py:57
+#: implementation.py:1777 model_i18n.py:59
msgid "Saliva"
msgstr "Saliva"
-#: implementation.py:1234 model_i18n.py:69
+#: implementation.py:1778 model_i18n.py:71
msgid "Stool"
msgstr "Heces"
-#: implementation.py:1235 model_i18n.py:64
+#: implementation.py:1779 model_i18n.py:66
msgid "Mouth"
msgstr "Boca"
-#: implementation.py:1236 model_i18n.py:65
+#: implementation.py:1780 model_i18n.py:67
msgid "Nares"
msgstr "Fosas nasales"
-#: implementation.py:1237 model_i18n.py:66
+#: implementation.py:1781 model_i18n.py:68
msgid "Nasal mucus"
msgstr "Moco nasal"
-#: implementation.py:1238 model_i18n.py:67
+#: implementation.py:1782 model_i18n.py:69
msgid "Right hand"
msgstr "Mano derecha"
-#: implementation.py:1239 model_i18n.py:62
+#: implementation.py:1783 model_i18n.py:64
msgid "Left hand"
msgstr "Mano izquierda"
-#: implementation.py:1240 model_i18n.py:59
+#: implementation.py:1784 model_i18n.py:61
msgid "Forehead"
msgstr "Frente"
-#: implementation.py:1241 model_i18n.py:71
+#: implementation.py:1785 model_i18n.py:73
msgid "Torso"
msgstr "Torso"
-#: implementation.py:1242 model_i18n.py:68
+#: implementation.py:1786 model_i18n.py:70
msgid "Right leg"
msgstr "Pierna derecha"
-#: implementation.py:1243 model_i18n.py:63
+#: implementation.py:1787 model_i18n.py:65
msgid "Left leg"
msgstr "Pierna izquierda"
-#: implementation.py:1244 model_i18n.py:72
+#: implementation.py:1788 model_i18n.py:74
msgid "Vaginal mucus"
msgstr "Moco vaginal"
-#: implementation.py:1245 model_i18n.py:70
+#: implementation.py:1789 model_i18n.py:72
msgid "Tears"
msgstr "Lágrimas"
-#: implementation.py:1246 model_i18n.py:58
+#: implementation.py:1790 model_i18n.py:60
msgid "Ear wax"
msgstr "Cera de oído"
-#: implementation.py:1247 model_i18n.py:61
+#: implementation.py:1791 model_i18n.py:63
msgid "Hair"
msgstr "Cabello"
-#: implementation.py:1248 model_i18n.py:60
+#: implementation.py:1792 model_i18n.py:62
msgid "Fur"
msgstr "Piel"
-#: implementation.py:1547
+#: implementation.py:2081
msgid "Unable to validate Activation Code at this time"
msgstr "No se ha podido validar el código de activación en este momento"
-#: implementation.py:1837
+#: implementation.py:2399
msgid "Address 1, Postal Code, and Country are required"
msgstr "Dirección 1, Código Postal y País son requeridos"
-#: implementation.py:2173 implementation.py:2214
+#: implementation.py:2811 implementation.py:2923
msgid "Sorry, there was a problem saving your information."
msgstr "Lo sentimos, hubo un problema al guardar su información."
-#: model_i18n.py:21
+#: model_i18n.py:23
msgid "sample_site"
msgstr "sitio_muestra"
-#: model_i18n.py:31
+#: model_i18n.py:33
msgid "source_type"
msgstr "tipo_muestra"
-#: model_i18n.py:38
+#: model_i18n.py:40
msgid "survey_template_title"
msgstr "cuestionario_plantilla_título"
-#: model_i18n.py:40
+#: model_i18n.py:42
msgid "description"
msgstr "descripción"
-#: model_i18n.py:77
+#: model_i18n.py:79
msgid "human"
msgstr "humana"
-#: model_i18n.py:78 templates/account_overview.jinja2:139
+#: model_i18n.py:80
msgid "animal"
msgstr "animal"
-#: model_i18n.py:79
+#: model_i18n.py:81
msgid "environmental"
msgstr "ambiental"
-#: model_i18n.py:84
+#: model_i18n.py:86
msgid "Primary Questionnaire"
msgstr "Cuestionario Principal"
-#: model_i18n.py:85
+#: model_i18n.py:87
msgid "Pet Information"
msgstr "Información de la mascota"
-#: model_i18n.py:86
+#: model_i18n.py:88
msgid "Fermented Foods Questionnaire"
msgstr "Cuestionario de Alimentos Fermentados"
-#: model_i18n.py:87
+#: model_i18n.py:89
msgid "Surfer Questionnaire"
msgstr "Cuestionario del Surfista"
-#: model_i18n.py:88
+#: model_i18n.py:90
msgid "Personal Microbiome Information"
msgstr "Información Personal del Microbioma"
-#: model_i18n.py:89
+#: model_i18n.py:91
msgid "COVID-19 Questionnaire"
msgstr "Cuestionario COVID-19"
-#: model_i18n.py:90
+#: model_i18n.py:92
msgid "Vioscreen Food Frequency Questionnaire"
msgstr "Cuestionario de Frecuencia de Consumo de Alimentos Vioscreen"
-#: model_i18n.py:91
+#: model_i18n.py:93
msgid "Polyphenol Food Frequency Questionnaire"
msgstr "Cuestionario de Polifenoles Dietéticos"
-#: model_i18n.py:92
+#: model_i18n.py:94
msgid "Cooking Oils and Oxalate-rich Foods"
msgstr "Aceites de Cocina y Alimentos ricos en Oxalatos"
-#: model_i18n.py:96
-msgid "A fermented foods specific questionnaire"
-msgstr "Cuestionario especifico sobre alimentos fermentados"
-
-#: model_i18n.py:97
-msgid "Questions on surfing behavior"
-msgstr "Preguntas sobre comportamiento del surfista"
-
#: model_i18n.py:98
-msgid "Questions about your interest in the microbiome"
-msgstr "Preguntas sobre su interés en el microbioma"
-
-#: model_i18n.py:99
-msgid "Questions related to cooking oils and oxalate-rich foods"
-msgstr ""
-"Preguntas relacionadas con los aceites de cocina y los alimentos ricos en "
-"oxalatos"
-
-#: model_i18n.py:100
msgid ""
-"Polyphenols are chemical compounds naturally found in plants that have been "
-"shown to provide many beneficial properties. They are antioxidants, fighting "
-"aging and protecting your heart, but they may also provide benefits by "
-"interacting with the microbes in your gut. This survey will allow us to better "
-"quantify your consumption of polyphenols through your diet."
+"Polyphenols are chemical compounds naturally found in plants that have "
+"been shown to provide many beneficial properties. They are antioxidants, "
+"fighting aging and protecting your heart, but they may also provide "
+"benefits by interacting with the microbes in your gut. This survey will "
+"allow us to better quantify your consumption of polyphenols through your "
+"diet."
msgstr ""
-"Los polifenoles son compuestos químicos que se encuentran naturalmente en las "
-"plantas y se ha demostrado que brindan muchas propiedades beneficiosas. Son "
-"antioxidantes, combaten el envejecimiento y protegen su corazón, pero también "
-"pueden brindar beneficios al interactuar con los microbios en su intestino. "
-"Esta encuesta nos permitirá cuantificar mejor su consumo de polifenoles a "
-"través de su dieta."
-
-#: model_i18n.py:106
+"Los polifenoles son compuestos químicos que se encuentran naturalmente en"
+" las plantas y se ha demostrado que brindan muchas propiedades "
+"beneficiosas. Son antioxidantes, combaten el envejecimiento y protegen su"
+" corazón, pero también pueden brindar beneficios al interactuar con los "
+"microbios en su intestino. Esta encuesta nos permitirá cuantificar mejor "
+"su consumo de polifenoles a través de su dieta."
+
+#: model_i18n.py:104
msgid ""
"Only for participants in Spain: The Food Frequency "
-"Questionnaire (FFQ) will ask you about your usual frequency of consumption of a "
-"list of foods and beverages. The questionnaire consists of 28 questions, and "
-"will allow us to find out what your usual diet is like."
+"Questionnaire (FFQ) will ask you about your usual frequency of "
+"consumption of a list of foods and beverages. The questionnaire consists "
+"of 28 questions, and will allow us to find out what your usual diet is "
+"like."
msgstr ""
-"Solo para participantes en España: El cuestionario de "
-"frecuencia de alimentos (FFQ por sus siglas en Inglés) le preguntará sobre su "
-"frecuencia habitual de consumo de una lista de alimentos y bebidas. El "
-"cuestionario consta de 28 preguntas, y nos permitirá conocer cómo es su dieta "
-"habitual."
+"Solo para participantes en España: El cuestionario "
+"de frecuencia de alimentos (FFQ por sus siglas en Inglés) le preguntará "
+"sobre su frecuencia habitual de consumo de una lista de alimentos y "
+"bebidas. El cuestionario consta de 28 preguntas, y nos permitirá conocer "
+"cómo es su dieta habitual."
-#: model_i18n.py:113
+#: model_i18n.py:111
msgid "en_us"
msgstr "es_es"
-#: templates/account_details.jinja2:2 templates/account_details.jinja2:127
-#: templates/account_details.jinja2:131 templates/account_overview.jinja2:47
-#: templates/sitebase.jinja2:80 templates/sitebase.jinja2:82
+#: templates/account_details.jinja2:2 templates/account_details.jinja2:110
+#: templates/account_details.jinja2:115 templates/sitebase.jinja2:84
+#: templates/sitebase.jinja2:86
msgid "Account Details"
-msgstr "Información de la cuenta"
+msgstr ""
+
+#: templates/account_details.jinja2:41 templates/account_details.jinja2:379
+msgid "Please agree to the Privacy Statement and Terms and Conditions"
+msgstr ""
-#: templates/account_details.jinja2:74
+#: templates/account_details.jinja2:60
#: templates/admin_address_verification.jinja2:41
#: templates/admin_address_verification.jinja2:93
#: templates/admin_interested_user_edit.jinja2:138
-#: templates/submit_interest.jinja2:535 templates/update_address.jinja2:221
+#: templates/submit_interest.jinja2:570 templates/update_address.jinja2:221
msgid "City"
-msgstr "Ciudad"
+msgstr ""
-#: templates/account_details.jinja2:75
+#: templates/account_details.jinja2:61
#: templates/admin_address_verification.jinja2:45
#: templates/admin_address_verification.jinja2:97
#: templates/admin_interested_user_edit.jinja2:142
-#: templates/submit_interest.jinja2:539 templates/update_address.jinja2:225
+#: templates/submit_interest.jinja2:574 templates/update_address.jinja2:225
msgid "State"
-msgstr "Estado"
+msgstr ""
-#: templates/account_details.jinja2:76
+#: templates/account_details.jinja2:62
msgid "Zip Code"
-msgstr "Código Postal"
+msgstr ""
-#: templates/account_details.jinja2:79
+#: templates/account_details.jinja2:65
msgid "City/Town"
-msgstr "Ciudad/Pueblo"
+msgstr ""
-#: templates/account_details.jinja2:80
+#: templates/account_details.jinja2:66
msgid "County/State"
-msgstr "Condado/Estado"
+msgstr ""
-#: templates/account_details.jinja2:81
+#: templates/account_details.jinja2:67
msgid "Postcode"
-msgstr "Código Postal"
+msgstr ""
-#: templates/account_details.jinja2:125 templates/account_overview.jinja2:2
-#: templates/account_overview.jinja2:44 templates/new_results_page.jinja2:1395
-#: templates/sample.jinja2:148 templates/sample_results.jinja2:127
-#: templates/source.jinja2:146
-msgid "Account"
-msgstr "Cuenta"
+#: templates/account_details.jinja2:109 templates/account_overview.jinja2:44
+#: templates/consents.jinja2:22 templates/kits.jinja2:168
+#: templates/new_participant.jinja2:191 templates/nutrition.jinja2:87
+#: templates/reports.jinja2:55 templates/sample.jinja2:182
+#: templates/source.jinja2:45 templates/survey.jinja2:164
+msgid "Dashboard"
+msgstr ""
-#: templates/account_details.jinja2:135 templates/admin_activation_codes.jinja2:7
+#: templates/account_details.jinja2:119
+#: templates/admin_activation_codes.jinja2:7
#: templates/admin_activation_codes.jinja2:21
#: templates/admin_activation_codes.jinja2:40 templates/admin_home.jinja2:11
#: templates/admin_interested_user_edit.jinja2:114
-#: templates/admin_interested_users.jinja2:21 templates/sitebase.jinja2:128
+#: templates/admin_interested_users.jinja2:21 templates/sitebase.jinja2:226
msgid "Email"
-msgstr "Correo electrónico"
+msgstr ""
-#: templates/account_details.jinja2:139
+#: templates/account_details.jinja2:123
msgid "Prefer to use a different email account? You can change it "
msgstr ""
-"¿Prefiere usar una cuenta de correo electrónico diferente? Usted puede "
-"cambiarla "
-#: templates/account_details.jinja2:141
+#: templates/account_details.jinja2:125
msgid "here"
-msgstr "aquí"
+msgstr ""
-#: templates/account_details.jinja2:147
+#: templates/account_details.jinja2:131
#: templates/admin_interested_user_edit.jinja2:106
-#: templates/admin_interested_users.jinja2:15 templates/submit_interest.jinja2:305
+#: templates/admin_interested_users.jinja2:15
+#: templates/submit_interest.jinja2:340
msgid "First Name"
-msgstr "Primer nombre"
+msgstr ""
-#: templates/account_details.jinja2:151
+#: templates/account_details.jinja2:135
#: templates/admin_interested_user_edit.jinja2:110
-#: templates/admin_interested_users.jinja2:18 templates/submit_interest.jinja2:309
+#: templates/admin_interested_users.jinja2:18
+#: templates/submit_interest.jinja2:344
msgid "Last Name"
-msgstr "Apellido"
+msgstr ""
-#: templates/account_details.jinja2:155
+#: templates/account_details.jinja2:139
#: templates/admin_address_verification.jinja2:53
#: templates/admin_address_verification.jinja2:105
#: templates/admin_interested_user_edit.jinja2:164
-#: templates/submit_interest.jinja2:321 templates/update_address.jinja2:246
+#: templates/submit_interest.jinja2:356 templates/update_address.jinja2:246
msgid "Country"
-msgstr "País"
+msgstr ""
-#: templates/account_details.jinja2:158 templates/admin_campaign_edit.jinja2:96
-#: templates/submit_interest.jinja2:324
+#: templates/account_details.jinja2:142 templates/admin_campaign_edit.jinja2:96
+#: templates/submit_interest.jinja2:359
msgid "United States"
-msgstr "Estados Unidos"
+msgstr ""
-#: templates/account_details.jinja2:159 templates/admin_campaign_edit.jinja2:97
-#: templates/submit_interest.jinja2:325
+#: templates/account_details.jinja2:143 templates/admin_campaign_edit.jinja2:97
+#: templates/submit_interest.jinja2:360
msgid "United Kingdom"
-msgstr "Reino Unido"
+msgstr ""
-#: templates/account_details.jinja2:160 templates/admin_campaign_edit.jinja2:98
-#: templates/submit_interest.jinja2:326
+#: templates/account_details.jinja2:144 templates/admin_campaign_edit.jinja2:98
+#: templates/submit_interest.jinja2:361
msgid "Mexico"
-msgstr "México"
+msgstr ""
-#: templates/account_details.jinja2:161 templates/admin_campaign_edit.jinja2:99
-#: templates/submit_interest.jinja2:327
+#: templates/account_details.jinja2:145 templates/admin_campaign_edit.jinja2:99
+#: templates/submit_interest.jinja2:362
msgid "Spain"
-msgstr "España"
+msgstr ""
-#: templates/account_details.jinja2:162 templates/submit_interest.jinja2:328
+#: templates/account_details.jinja2:146 templates/submit_interest.jinja2:363
msgid "Afghanistan"
-msgstr "Afganistán"
+msgstr ""
-#: templates/account_details.jinja2:163 templates/submit_interest.jinja2:329
+#: templates/account_details.jinja2:147 templates/submit_interest.jinja2:364
+#, fuzzy
msgid "Albania"
-msgstr "Albania"
+msgstr "animal"
-#: templates/account_details.jinja2:164 templates/submit_interest.jinja2:330
+#: templates/account_details.jinja2:148 templates/submit_interest.jinja2:365
+#, fuzzy
msgid "Algeria"
-msgstr "Argelia"
+msgstr "Saliva"
-#: templates/account_details.jinja2:165 templates/submit_interest.jinja2:331
+#: templates/account_details.jinja2:149 templates/submit_interest.jinja2:366
msgid "Andorra"
-msgstr "Andorra"
+msgstr ""
-#: templates/account_details.jinja2:166 templates/submit_interest.jinja2:332
+#: templates/account_details.jinja2:150 templates/submit_interest.jinja2:367
msgid "Angola"
-msgstr "Angola"
+msgstr ""
-#: templates/account_details.jinja2:167 templates/submit_interest.jinja2:333
+#: templates/account_details.jinja2:151 templates/submit_interest.jinja2:368
msgid "Antarctica"
-msgstr "Antártica"
+msgstr ""
-#: templates/account_details.jinja2:168 templates/submit_interest.jinja2:334
+#: templates/account_details.jinja2:152 templates/submit_interest.jinja2:369
msgid "Antigua and Barbuda"
-msgstr "Antigua y Barbuda"
+msgstr ""
-#: templates/account_details.jinja2:169 templates/submit_interest.jinja2:335
+#: templates/account_details.jinja2:153 templates/submit_interest.jinja2:370
msgid "Argentina"
-msgstr "Argentina"
+msgstr ""
-#: templates/account_details.jinja2:170 templates/submit_interest.jinja2:336
+#: templates/account_details.jinja2:154 templates/submit_interest.jinja2:371
+#, fuzzy
msgid "Armenia"
-msgstr "Armenia"
+msgstr "animal"
-#: templates/account_details.jinja2:171 templates/submit_interest.jinja2:337
+#: templates/account_details.jinja2:155 templates/submit_interest.jinja2:372
msgid "Australia"
-msgstr "Australia"
+msgstr ""
-#: templates/account_details.jinja2:172 templates/submit_interest.jinja2:338
+#: templates/account_details.jinja2:156 templates/submit_interest.jinja2:373
msgid "Austria"
-msgstr "Austria"
+msgstr ""
-#: templates/account_details.jinja2:173 templates/submit_interest.jinja2:339
+#: templates/account_details.jinja2:157 templates/submit_interest.jinja2:374
msgid "Azerbaijan"
-msgstr "Azerbaiyán"
+msgstr ""
-#: templates/account_details.jinja2:174 templates/submit_interest.jinja2:340
+#: templates/account_details.jinja2:158 templates/submit_interest.jinja2:375
msgid "Bahamas"
-msgstr "Bahamas"
+msgstr ""
-#: templates/account_details.jinja2:175 templates/submit_interest.jinja2:341
+#: templates/account_details.jinja2:159 templates/submit_interest.jinja2:376
msgid "Bahrain"
-msgstr "Baréin"
+msgstr ""
-#: templates/account_details.jinja2:176 templates/submit_interest.jinja2:342
+#: templates/account_details.jinja2:160 templates/submit_interest.jinja2:377
msgid "Bangladesh"
-msgstr "Bangladesh"
+msgstr ""
-#: templates/account_details.jinja2:177 templates/submit_interest.jinja2:343
+#: templates/account_details.jinja2:161 templates/submit_interest.jinja2:378
msgid "Barbados"
-msgstr "Barbados"
+msgstr ""
-#: templates/account_details.jinja2:178 templates/submit_interest.jinja2:344
+#: templates/account_details.jinja2:162 templates/submit_interest.jinja2:379
+#, fuzzy
msgid "Belarus"
-msgstr "Bielorrusia"
+msgstr "Lágrimas"
-#: templates/account_details.jinja2:179 templates/submit_interest.jinja2:345
+#: templates/account_details.jinja2:163 templates/submit_interest.jinja2:380
msgid "Belgium"
-msgstr "Bélgica"
+msgstr ""
-#: templates/account_details.jinja2:180 templates/submit_interest.jinja2:346
+#: templates/account_details.jinja2:164 templates/submit_interest.jinja2:381
msgid "Belize"
-msgstr "Belice"
+msgstr ""
-#: templates/account_details.jinja2:181 templates/submit_interest.jinja2:347
+#: templates/account_details.jinja2:165 templates/submit_interest.jinja2:382
msgid "Benin"
-msgstr "Benín"
+msgstr ""
-#: templates/account_details.jinja2:182 templates/submit_interest.jinja2:348
+#: templates/account_details.jinja2:166 templates/submit_interest.jinja2:383
msgid "Bermuda"
-msgstr "Bermuda"
+msgstr ""
-#: templates/account_details.jinja2:183 templates/submit_interest.jinja2:349
+#: templates/account_details.jinja2:167 templates/submit_interest.jinja2:384
+#, fuzzy
msgid "Bhutan"
-msgstr "Bután"
+msgstr "humana"
-#: templates/account_details.jinja2:184 templates/submit_interest.jinja2:350
+#: templates/account_details.jinja2:168 templates/submit_interest.jinja2:385
+#, fuzzy
msgid "Bolivia"
-msgstr "Bolivia"
+msgstr "Saliva"
-#: templates/account_details.jinja2:185 templates/submit_interest.jinja2:351
+#: templates/account_details.jinja2:169 templates/submit_interest.jinja2:386
msgid "Bosnia and Herzegovina"
-msgstr "Bosnia y Herzegovina"
+msgstr ""
-#: templates/account_details.jinja2:186 templates/submit_interest.jinja2:352
+#: templates/account_details.jinja2:170 templates/submit_interest.jinja2:387
msgid "Botswana"
-msgstr "Botsuana"
+msgstr ""
-#: templates/account_details.jinja2:187 templates/submit_interest.jinja2:353
+#: templates/account_details.jinja2:171 templates/submit_interest.jinja2:388
msgid "Brazil"
-msgstr "Brasil"
+msgstr ""
-#: templates/account_details.jinja2:188 templates/submit_interest.jinja2:354
+#: templates/account_details.jinja2:172 templates/submit_interest.jinja2:389
msgid "Brunei"
-msgstr "Brunéi"
+msgstr ""
-#: templates/account_details.jinja2:189 templates/submit_interest.jinja2:355
+#: templates/account_details.jinja2:173 templates/submit_interest.jinja2:390
msgid "Bulgaria"
-msgstr "Bulgaria"
+msgstr ""
-#: templates/account_details.jinja2:190 templates/submit_interest.jinja2:356
+#: templates/account_details.jinja2:174 templates/submit_interest.jinja2:391
msgid "Burkina Faso"
-msgstr "Burkina Faso"
+msgstr ""
-#: templates/account_details.jinja2:191 templates/submit_interest.jinja2:357
+#: templates/account_details.jinja2:175 templates/submit_interest.jinja2:392
+#, fuzzy
msgid "Burma"
-msgstr "Birmania"
+msgstr "humana"
-#: templates/account_details.jinja2:192 templates/submit_interest.jinja2:358
+#: templates/account_details.jinja2:176 templates/submit_interest.jinja2:393
msgid "Burundi"
-msgstr "Burundi"
+msgstr ""
-#: templates/account_details.jinja2:193 templates/submit_interest.jinja2:359
+#: templates/account_details.jinja2:177 templates/submit_interest.jinja2:394
msgid "Cambodia"
-msgstr "Camboya"
+msgstr ""
-#: templates/account_details.jinja2:194 templates/submit_interest.jinja2:360
+#: templates/account_details.jinja2:178 templates/submit_interest.jinja2:395
msgid "Cameroon"
-msgstr "Camerún"
+msgstr ""
-#: templates/account_details.jinja2:195 templates/submit_interest.jinja2:361
+#: templates/account_details.jinja2:179 templates/submit_interest.jinja2:396
msgid "Canada"
-msgstr "Canada"
+msgstr ""
-#: templates/account_details.jinja2:196 templates/submit_interest.jinja2:362
+#: templates/account_details.jinja2:180 templates/submit_interest.jinja2:397
msgid "Cape Verde"
-msgstr "Cabo Verde"
+msgstr ""
-#: templates/account_details.jinja2:197 templates/submit_interest.jinja2:363
+#: templates/account_details.jinja2:181 templates/submit_interest.jinja2:398
msgid "Central African Republic"
-msgstr "República Centroafricana"
+msgstr ""
-#: templates/account_details.jinja2:198 templates/submit_interest.jinja2:364
+#: templates/account_details.jinja2:182 templates/submit_interest.jinja2:399
msgid "Chad"
-msgstr "Chad"
+msgstr ""
-#: templates/account_details.jinja2:199 templates/submit_interest.jinja2:365
+#: templates/account_details.jinja2:183 templates/submit_interest.jinja2:400
msgid "Chile"
-msgstr "Chile"
+msgstr ""
-#: templates/account_details.jinja2:200 templates/submit_interest.jinja2:366
+#: templates/account_details.jinja2:184 templates/submit_interest.jinja2:401
msgid "China"
-msgstr "China"
+msgstr ""
-#: templates/account_details.jinja2:201 templates/submit_interest.jinja2:367
+#: templates/account_details.jinja2:185 templates/submit_interest.jinja2:402
msgid "Colombia"
-msgstr "Colombia"
+msgstr ""
-#: templates/account_details.jinja2:202 templates/submit_interest.jinja2:368
+#: templates/account_details.jinja2:186 templates/submit_interest.jinja2:403
msgid "Comoros"
-msgstr "Comoras"
+msgstr ""
-#: templates/account_details.jinja2:203 templates/submit_interest.jinja2:369
+#: templates/account_details.jinja2:187 templates/submit_interest.jinja2:404
msgid "Congo, Democratic Republic"
-msgstr "Congo, República Democrática"
+msgstr ""
-#: templates/account_details.jinja2:204 templates/submit_interest.jinja2:370
+#: templates/account_details.jinja2:188 templates/submit_interest.jinja2:405
msgid "Congo, Republic of the"
-msgstr "Congo, República del"
+msgstr ""
-#: templates/account_details.jinja2:205 templates/submit_interest.jinja2:371
+#: templates/account_details.jinja2:189 templates/submit_interest.jinja2:406
msgid "Costa Rica"
-msgstr "Costa Rica"
+msgstr ""
-#: templates/account_details.jinja2:206 templates/submit_interest.jinja2:372
+#: templates/account_details.jinja2:190 templates/submit_interest.jinja2:407
msgid "Cote d'Ivoire"
-msgstr "Costa de Marfil"
+msgstr ""
-#: templates/account_details.jinja2:207 templates/submit_interest.jinja2:373
+#: templates/account_details.jinja2:191 templates/submit_interest.jinja2:408
msgid "Croatia"
-msgstr "Croacia"
+msgstr ""
-#: templates/account_details.jinja2:208 templates/submit_interest.jinja2:374
+#: templates/account_details.jinja2:192 templates/submit_interest.jinja2:409
msgid "Cuba"
-msgstr "Cuba"
+msgstr ""
-#: templates/account_details.jinja2:209 templates/submit_interest.jinja2:375
+#: templates/account_details.jinja2:193 templates/submit_interest.jinja2:410
msgid "Cyprus"
-msgstr "Chipre"
+msgstr ""
-#: templates/account_details.jinja2:210 templates/submit_interest.jinja2:376
+#: templates/account_details.jinja2:194 templates/submit_interest.jinja2:411
msgid "Czech Republic"
-msgstr "República Checa"
+msgstr ""
-#: templates/account_details.jinja2:211 templates/submit_interest.jinja2:377
+#: templates/account_details.jinja2:195 templates/submit_interest.jinja2:412
msgid "Denmark"
-msgstr "Dinamarca"
+msgstr ""
-#: templates/account_details.jinja2:212 templates/submit_interest.jinja2:378
+#: templates/account_details.jinja2:196 templates/submit_interest.jinja2:413
msgid "Djibouti"
-msgstr "Yibuti"
+msgstr ""
-#: templates/account_details.jinja2:213 templates/submit_interest.jinja2:379
+#: templates/account_details.jinja2:197 templates/submit_interest.jinja2:414
msgid "Dominica"
-msgstr "Dominicana"
+msgstr ""
-#: templates/account_details.jinja2:214 templates/submit_interest.jinja2:380
+#: templates/account_details.jinja2:198 templates/submit_interest.jinja2:415
msgid "Dominican Republic"
-msgstr "República Dominicana"
+msgstr ""
-#: templates/account_details.jinja2:215 templates/submit_interest.jinja2:381
+#: templates/account_details.jinja2:199 templates/submit_interest.jinja2:416
msgid "East Timor"
-msgstr "Timor Oriental"
+msgstr ""
-#: templates/account_details.jinja2:216 templates/submit_interest.jinja2:382
+#: templates/account_details.jinja2:200 templates/submit_interest.jinja2:417
msgid "Ecuador"
-msgstr "Ecuador"
+msgstr ""
-#: templates/account_details.jinja2:217 templates/submit_interest.jinja2:383
+#: templates/account_details.jinja2:201 templates/submit_interest.jinja2:418
msgid "Egypt"
-msgstr "Egipto"
+msgstr ""
-#: templates/account_details.jinja2:218 templates/submit_interest.jinja2:384
+#: templates/account_details.jinja2:202 templates/submit_interest.jinja2:419
msgid "El Salvador"
-msgstr "El Salvador"
+msgstr ""
-#: templates/account_details.jinja2:219 templates/submit_interest.jinja2:385
+#: templates/account_details.jinja2:203 templates/submit_interest.jinja2:420
msgid "Equatorial Guinea"
-msgstr "Guinea Ecuatorial"
+msgstr ""
-#: templates/account_details.jinja2:220 templates/submit_interest.jinja2:386
+#: templates/account_details.jinja2:204 templates/submit_interest.jinja2:421
msgid "Eritrea"
-msgstr "Eritrea"
+msgstr ""
-#: templates/account_details.jinja2:221 templates/submit_interest.jinja2:387
+#: templates/account_details.jinja2:205 templates/submit_interest.jinja2:422
msgid "Estonia"
-msgstr "Estonia"
+msgstr ""
-#: templates/account_details.jinja2:222 templates/submit_interest.jinja2:388
+#: templates/account_details.jinja2:206 templates/submit_interest.jinja2:423
msgid "Ethiopia"
-msgstr "Etiopía"
+msgstr ""
-#: templates/account_details.jinja2:223 templates/submit_interest.jinja2:389
+#: templates/account_details.jinja2:207 templates/submit_interest.jinja2:424
msgid "Fiji"
-msgstr "Fiyi"
+msgstr ""
-#: templates/account_details.jinja2:224 templates/submit_interest.jinja2:390
+#: templates/account_details.jinja2:208 templates/submit_interest.jinja2:425
msgid "Finland"
-msgstr "Finlandia"
+msgstr ""
-#: templates/account_details.jinja2:225 templates/submit_interest.jinja2:391
+#: templates/account_details.jinja2:209 templates/submit_interest.jinja2:426
msgid "France"
-msgstr "Francia"
+msgstr ""
-#: templates/account_details.jinja2:226 templates/submit_interest.jinja2:392
+#: templates/account_details.jinja2:210 templates/submit_interest.jinja2:427
msgid "Gabon"
-msgstr "Gabón"
+msgstr ""
-#: templates/account_details.jinja2:227 templates/submit_interest.jinja2:393
+#: templates/account_details.jinja2:211 templates/submit_interest.jinja2:428
msgid "Gambia"
-msgstr "Gambia"
+msgstr ""
-#: templates/account_details.jinja2:228 templates/submit_interest.jinja2:394
+#: templates/account_details.jinja2:212 templates/submit_interest.jinja2:429
msgid "Georgia"
-msgstr "Georgia"
+msgstr ""
-#: templates/account_details.jinja2:229 templates/submit_interest.jinja2:395
+#: templates/account_details.jinja2:213 templates/submit_interest.jinja2:430
msgid "Germany"
-msgstr "Alemania"
+msgstr ""
-#: templates/account_details.jinja2:230 templates/submit_interest.jinja2:396
+#: templates/account_details.jinja2:214 templates/submit_interest.jinja2:431
+#, fuzzy
msgid "Ghana"
-msgstr "Ghana"
+msgstr "humana"
-#: templates/account_details.jinja2:231 templates/submit_interest.jinja2:397
+#: templates/account_details.jinja2:215 templates/submit_interest.jinja2:432
msgid "Greece"
-msgstr "Grecia"
+msgstr ""
-#: templates/account_details.jinja2:232 templates/submit_interest.jinja2:398
+#: templates/account_details.jinja2:216 templates/submit_interest.jinja2:433
msgid "Greenland"
-msgstr "Groenlandia"
+msgstr ""
-#: templates/account_details.jinja2:233 templates/submit_interest.jinja2:399
+#: templates/account_details.jinja2:217 templates/submit_interest.jinja2:434
msgid "Grenada"
-msgstr "Granada"
+msgstr ""
-#: templates/account_details.jinja2:234 templates/submit_interest.jinja2:400
+#: templates/account_details.jinja2:218 templates/submit_interest.jinja2:435
msgid "Guatemala"
-msgstr "Guatemala"
+msgstr ""
-#: templates/account_details.jinja2:235 templates/submit_interest.jinja2:401
+#: templates/account_details.jinja2:219 templates/submit_interest.jinja2:436
msgid "Guinea"
-msgstr "Guinea"
+msgstr ""
-#: templates/account_details.jinja2:236 templates/submit_interest.jinja2:402
+#: templates/account_details.jinja2:220 templates/submit_interest.jinja2:437
msgid "Guinea-Bissau"
-msgstr "Guinea-Bisáu"
+msgstr ""
-#: templates/account_details.jinja2:237 templates/submit_interest.jinja2:403
+#: templates/account_details.jinja2:221 templates/submit_interest.jinja2:438
msgid "Guyana"
-msgstr "Guayana"
+msgstr ""
-#: templates/account_details.jinja2:238 templates/submit_interest.jinja2:404
+#: templates/account_details.jinja2:222 templates/submit_interest.jinja2:439
msgid "Haiti"
-msgstr "Haití"
+msgstr ""
-#: templates/account_details.jinja2:239 templates/submit_interest.jinja2:405
+#: templates/account_details.jinja2:223 templates/submit_interest.jinja2:440
msgid "Honduras"
-msgstr "Honduras"
+msgstr ""
-#: templates/account_details.jinja2:240 templates/submit_interest.jinja2:406
+#: templates/account_details.jinja2:224 templates/submit_interest.jinja2:441
msgid "Hong Kong"
-msgstr "Hong Kong"
+msgstr ""
-#: templates/account_details.jinja2:241 templates/submit_interest.jinja2:407
+#: templates/account_details.jinja2:225 templates/submit_interest.jinja2:442
msgid "Hungary"
-msgstr "Hungría"
+msgstr ""
-#: templates/account_details.jinja2:242 templates/submit_interest.jinja2:408
+#: templates/account_details.jinja2:226 templates/submit_interest.jinja2:443
msgid "Iceland"
-msgstr "Islandia"
+msgstr ""
-#: templates/account_details.jinja2:243 templates/submit_interest.jinja2:409
+#: templates/account_details.jinja2:227 templates/submit_interest.jinja2:444
msgid "India"
-msgstr "India"
+msgstr ""
-#: templates/account_details.jinja2:244 templates/submit_interest.jinja2:410
+#: templates/account_details.jinja2:228 templates/submit_interest.jinja2:445
msgid "Indonesia"
-msgstr "Indonesia"
+msgstr ""
-#: templates/account_details.jinja2:245 templates/submit_interest.jinja2:411
+#: templates/account_details.jinja2:229 templates/submit_interest.jinja2:446
msgid "Iran"
-msgstr "Irán"
+msgstr ""
-#: templates/account_details.jinja2:246 templates/submit_interest.jinja2:412
+#: templates/account_details.jinja2:230 templates/submit_interest.jinja2:447
msgid "Iraq"
-msgstr "Iraq"
+msgstr ""
-#: templates/account_details.jinja2:247 templates/submit_interest.jinja2:413
+#: templates/account_details.jinja2:231 templates/submit_interest.jinja2:448
msgid "Ireland"
-msgstr "Irlanda"
+msgstr ""
-#: templates/account_details.jinja2:248 templates/submit_interest.jinja2:414
+#: templates/account_details.jinja2:232 templates/submit_interest.jinja2:449
msgid "Israel"
-msgstr "Israel"
+msgstr ""
-#: templates/account_details.jinja2:249 templates/submit_interest.jinja2:415
+#: templates/account_details.jinja2:233 templates/submit_interest.jinja2:450
msgid "Italy"
-msgstr "Italia"
+msgstr ""
-#: templates/account_details.jinja2:250 templates/submit_interest.jinja2:416
+#: templates/account_details.jinja2:234 templates/submit_interest.jinja2:451
msgid "Jamaica"
-msgstr "Jamaica"
+msgstr ""
-#: templates/account_details.jinja2:251 templates/submit_interest.jinja2:417
+#: templates/account_details.jinja2:235
+#: templates/admin_campaign_edit.jinja2:100
+#: templates/submit_interest.jinja2:452
msgid "Japan"
-msgstr "Japón"
+msgstr ""
-#: templates/account_details.jinja2:252 templates/submit_interest.jinja2:418
+#: templates/account_details.jinja2:236 templates/submit_interest.jinja2:453
msgid "Jordan"
-msgstr "Jordán"
+msgstr ""
-#: templates/account_details.jinja2:253 templates/submit_interest.jinja2:419
+#: templates/account_details.jinja2:237 templates/submit_interest.jinja2:454
msgid "Kazakhstan"
-msgstr "Kazajistán"
+msgstr ""
-#: templates/account_details.jinja2:254 templates/submit_interest.jinja2:420
+#: templates/account_details.jinja2:238 templates/submit_interest.jinja2:455
msgid "Kenya"
-msgstr "Kenia"
+msgstr ""
-#: templates/account_details.jinja2:255 templates/submit_interest.jinja2:421
+#: templates/account_details.jinja2:239 templates/submit_interest.jinja2:456
msgid "Kiribati"
-msgstr "Kiribati"
+msgstr ""
-#: templates/account_details.jinja2:256 templates/submit_interest.jinja2:422
+#: templates/account_details.jinja2:240 templates/submit_interest.jinja2:457
msgid "Korea North"
-msgstr "Corea del Norte"
+msgstr ""
-#: templates/account_details.jinja2:257 templates/submit_interest.jinja2:423
+#: templates/account_details.jinja2:241 templates/submit_interest.jinja2:458
msgid "Korea South"
-msgstr "Corea del Sur"
+msgstr ""
-#: templates/account_details.jinja2:258 templates/submit_interest.jinja2:424
+#: templates/account_details.jinja2:242 templates/submit_interest.jinja2:459
msgid "Kuwait"
-msgstr "Kuwait"
+msgstr ""
-#: templates/account_details.jinja2:259 templates/submit_interest.jinja2:425
+#: templates/account_details.jinja2:243 templates/submit_interest.jinja2:460
msgid "Kyrgyzstan"
-msgstr "Kirguistán"
+msgstr ""
-#: templates/account_details.jinja2:260 templates/submit_interest.jinja2:426
+#: templates/account_details.jinja2:244 templates/submit_interest.jinja2:461
msgid "Laos"
-msgstr "Laos"
+msgstr ""
-#: templates/account_details.jinja2:261 templates/submit_interest.jinja2:427
+#: templates/account_details.jinja2:245 templates/submit_interest.jinja2:462
msgid "Latvia"
-msgstr "Letonia"
+msgstr ""
-#: templates/account_details.jinja2:262 templates/submit_interest.jinja2:428
+#: templates/account_details.jinja2:246 templates/submit_interest.jinja2:463
msgid "Lebanon"
-msgstr "Líbano"
+msgstr ""
-#: templates/account_details.jinja2:263 templates/submit_interest.jinja2:429
+#: templates/account_details.jinja2:247 templates/submit_interest.jinja2:464
msgid "Lesotho"
-msgstr "Lesoto"
+msgstr ""
-#: templates/account_details.jinja2:264 templates/submit_interest.jinja2:430
+#: templates/account_details.jinja2:248 templates/submit_interest.jinja2:465
msgid "Liberia"
-msgstr "Liberia"
+msgstr ""
-#: templates/account_details.jinja2:265 templates/submit_interest.jinja2:431
+#: templates/account_details.jinja2:249 templates/submit_interest.jinja2:466
msgid "Libya"
-msgstr "Libia"
+msgstr ""
-#: templates/account_details.jinja2:266 templates/submit_interest.jinja2:432
+#: templates/account_details.jinja2:250 templates/submit_interest.jinja2:467
msgid "Liechtenstein"
-msgstr "Liechtenstein"
+msgstr ""
-#: templates/account_details.jinja2:267 templates/submit_interest.jinja2:433
+#: templates/account_details.jinja2:251 templates/submit_interest.jinja2:468
msgid "Lithuania"
-msgstr "Lituania"
+msgstr ""
-#: templates/account_details.jinja2:268 templates/submit_interest.jinja2:434
+#: templates/account_details.jinja2:252 templates/submit_interest.jinja2:469
msgid "Luxembourg"
-msgstr "Luxemburgo"
+msgstr ""
-#: templates/account_details.jinja2:269 templates/submit_interest.jinja2:435
+#: templates/account_details.jinja2:253 templates/submit_interest.jinja2:470
msgid "Macedonia"
-msgstr "Macedonia"
+msgstr ""
-#: templates/account_details.jinja2:270 templates/submit_interest.jinja2:436
+#: templates/account_details.jinja2:254 templates/submit_interest.jinja2:471
msgid "Madagascar"
-msgstr "Madagascar"
+msgstr ""
-#: templates/account_details.jinja2:271 templates/submit_interest.jinja2:437
+#: templates/account_details.jinja2:255 templates/submit_interest.jinja2:472
msgid "Malawi"
-msgstr "Malaui"
+msgstr ""
-#: templates/account_details.jinja2:272 templates/submit_interest.jinja2:438
+#: templates/account_details.jinja2:256 templates/submit_interest.jinja2:473
msgid "Malaysia"
-msgstr "Malasia"
+msgstr ""
-#: templates/account_details.jinja2:273 templates/submit_interest.jinja2:439
+#: templates/account_details.jinja2:257 templates/submit_interest.jinja2:474
msgid "Maldives"
-msgstr "Maldivas"
+msgstr ""
-#: templates/account_details.jinja2:274 templates/submit_interest.jinja2:440
+#: templates/account_details.jinja2:258 templates/submit_interest.jinja2:475
+#, fuzzy
msgid "Mali"
-msgstr "Malí"
+msgstr "animal"
-#: templates/account_details.jinja2:275 templates/submit_interest.jinja2:441
+#: templates/account_details.jinja2:259 templates/submit_interest.jinja2:476
msgid "Malta"
-msgstr "Malta"
+msgstr ""
-#: templates/account_details.jinja2:276 templates/submit_interest.jinja2:442
+#: templates/account_details.jinja2:260 templates/submit_interest.jinja2:477
msgid "Marshall Islands"
-msgstr "Islas Marshall"
+msgstr ""
-#: templates/account_details.jinja2:277 templates/submit_interest.jinja2:443
+#: templates/account_details.jinja2:261 templates/submit_interest.jinja2:478
msgid "Mauritania"
-msgstr "Mauritania"
+msgstr ""
-#: templates/account_details.jinja2:278 templates/submit_interest.jinja2:444
+#: templates/account_details.jinja2:262 templates/submit_interest.jinja2:479
msgid "Mauritius"
-msgstr "Mauritius"
+msgstr ""
-#: templates/account_details.jinja2:279 templates/submit_interest.jinja2:445
+#: templates/account_details.jinja2:263 templates/submit_interest.jinja2:480
msgid "Micronesia"
-msgstr "Micronesia"
+msgstr ""
-#: templates/account_details.jinja2:280 templates/submit_interest.jinja2:446
+#: templates/account_details.jinja2:264 templates/submit_interest.jinja2:481
msgid "Moldova"
-msgstr "Moldavia"
+msgstr ""
-#: templates/account_details.jinja2:281 templates/submit_interest.jinja2:447
+#: templates/account_details.jinja2:265 templates/submit_interest.jinja2:482
msgid "Mongolia"
-msgstr "Mongolia"
+msgstr ""
-#: templates/account_details.jinja2:282 templates/submit_interest.jinja2:448
+#: templates/account_details.jinja2:266 templates/submit_interest.jinja2:483
msgid "Montenegro"
-msgstr "Montenegro"
+msgstr ""
-#: templates/account_details.jinja2:283 templates/submit_interest.jinja2:449
+#: templates/account_details.jinja2:267 templates/submit_interest.jinja2:484
msgid "Morocco"
-msgstr "Marruecos"
+msgstr ""
-#: templates/account_details.jinja2:284 templates/submit_interest.jinja2:450
+#: templates/account_details.jinja2:268 templates/submit_interest.jinja2:485
msgid "Monaco"
-msgstr "Mónaco"
+msgstr ""
-#: templates/account_details.jinja2:285 templates/submit_interest.jinja2:451
+#: templates/account_details.jinja2:269 templates/submit_interest.jinja2:486
msgid "Mozambique"
-msgstr "Mozambique"
+msgstr ""
-#: templates/account_details.jinja2:286 templates/submit_interest.jinja2:452
+#: templates/account_details.jinja2:270 templates/submit_interest.jinja2:487
msgid "Namibia"
-msgstr "Namibia"
+msgstr ""
-#: templates/account_details.jinja2:287 templates/submit_interest.jinja2:453
+#: templates/account_details.jinja2:271 templates/submit_interest.jinja2:488
msgid "Nauru"
-msgstr "Nauru"
+msgstr ""
-#: templates/account_details.jinja2:288 templates/submit_interest.jinja2:454
+#: templates/account_details.jinja2:272 templates/submit_interest.jinja2:489
msgid "Nepal"
-msgstr "Nepal"
+msgstr ""
-#: templates/account_details.jinja2:289 templates/submit_interest.jinja2:455
+#: templates/account_details.jinja2:273 templates/submit_interest.jinja2:490
+#, fuzzy
msgid "Netherlands"
-msgstr "Países Bajos"
+msgstr "Mano izquierda"
-#: templates/account_details.jinja2:290 templates/submit_interest.jinja2:456
+#: templates/account_details.jinja2:274 templates/submit_interest.jinja2:491
msgid "New Zealand"
-msgstr "Nueva Zelanda"
+msgstr ""
-#: templates/account_details.jinja2:291 templates/submit_interest.jinja2:457
+#: templates/account_details.jinja2:275 templates/submit_interest.jinja2:492
msgid "Nicaragua"
-msgstr "Nicaragua"
+msgstr ""
-#: templates/account_details.jinja2:292 templates/submit_interest.jinja2:458
+#: templates/account_details.jinja2:276 templates/submit_interest.jinja2:493
msgid "Niger"
-msgstr "Níger"
+msgstr ""
-#: templates/account_details.jinja2:293 templates/submit_interest.jinja2:459
+#: templates/account_details.jinja2:277 templates/submit_interest.jinja2:494
msgid "Nigeria"
-msgstr "Nigeria"
+msgstr ""
-#: templates/account_details.jinja2:294 templates/submit_interest.jinja2:460
+#: templates/account_details.jinja2:278 templates/submit_interest.jinja2:495
msgid "Norway"
-msgstr "Noruega"
+msgstr ""
-#: templates/account_details.jinja2:295 templates/submit_interest.jinja2:461
+#: templates/account_details.jinja2:279 templates/submit_interest.jinja2:496
+#, fuzzy
msgid "Oman"
-msgstr "Omán"
+msgstr "humana"
-#: templates/account_details.jinja2:296 templates/submit_interest.jinja2:462
+#: templates/account_details.jinja2:280 templates/submit_interest.jinja2:497
msgid "Pakistan"
-msgstr "Pakistán"
+msgstr ""
-#: templates/account_details.jinja2:297 templates/submit_interest.jinja2:463
+#: templates/account_details.jinja2:281 templates/submit_interest.jinja2:498
+#, fuzzy
msgid "Panama"
-msgstr "Panama"
+msgstr "animal"
-#: templates/account_details.jinja2:298 templates/submit_interest.jinja2:464
+#: templates/account_details.jinja2:282 templates/submit_interest.jinja2:499
msgid "Papua New Guinea"
-msgstr "Papúa Nueva Guinea"
+msgstr ""
-#: templates/account_details.jinja2:299 templates/submit_interest.jinja2:465
+#: templates/account_details.jinja2:283 templates/submit_interest.jinja2:500
msgid "Paraguay"
-msgstr "Paraguay"
+msgstr ""
-#: templates/account_details.jinja2:300 templates/submit_interest.jinja2:466
+#: templates/account_details.jinja2:284 templates/submit_interest.jinja2:501
msgid "Peru"
-msgstr "Peru"
+msgstr ""
-#: templates/account_details.jinja2:301 templates/submit_interest.jinja2:467
+#: templates/account_details.jinja2:285 templates/submit_interest.jinja2:502
msgid "Philippines"
-msgstr "Filipinas"
+msgstr ""
-#: templates/account_details.jinja2:302 templates/submit_interest.jinja2:468
+#: templates/account_details.jinja2:286 templates/submit_interest.jinja2:503
msgid "Poland"
-msgstr "Polonia"
+msgstr ""
-#: templates/account_details.jinja2:303 templates/submit_interest.jinja2:469
+#: templates/account_details.jinja2:287 templates/submit_interest.jinja2:504
msgid "Portugal"
-msgstr "Portugal"
+msgstr ""
-#: templates/account_details.jinja2:304 templates/submit_interest.jinja2:470
+#: templates/account_details.jinja2:288 templates/submit_interest.jinja2:505
msgid "Qatar"
-msgstr "Qatar"
+msgstr ""
-#: templates/account_details.jinja2:305 templates/submit_interest.jinja2:471
+#: templates/account_details.jinja2:289 templates/submit_interest.jinja2:506
+#, fuzzy
msgid "Romania"
-msgstr "Rumania"
+msgstr "animal"
-#: templates/account_details.jinja2:306 templates/submit_interest.jinja2:472
+#: templates/account_details.jinja2:290 templates/submit_interest.jinja2:507
msgid "Russia"
-msgstr "Rusia"
+msgstr ""
-#: templates/account_details.jinja2:307 templates/submit_interest.jinja2:473
+#: templates/account_details.jinja2:291 templates/submit_interest.jinja2:508
msgid "Rwanda"
-msgstr "Ruanda"
+msgstr ""
-#: templates/account_details.jinja2:308 templates/submit_interest.jinja2:474
+#: templates/account_details.jinja2:292 templates/submit_interest.jinja2:509
msgid "Samoa"
-msgstr "Samoa"
+msgstr ""
-#: templates/account_details.jinja2:309 templates/submit_interest.jinja2:475
+#: templates/account_details.jinja2:293 templates/submit_interest.jinja2:510
msgid "San Marino"
-msgstr "San Marino"
+msgstr ""
-#: templates/account_details.jinja2:310 templates/submit_interest.jinja2:476
+#: templates/account_details.jinja2:294 templates/submit_interest.jinja2:511
msgid "Sao Tome"
-msgstr "Santo Tomé y Príncipe"
+msgstr ""
-#: templates/account_details.jinja2:311 templates/submit_interest.jinja2:477
+#: templates/account_details.jinja2:295 templates/submit_interest.jinja2:512
msgid "Saudi Arabia"
-msgstr "Arabia Saudita"
+msgstr ""
-#: templates/account_details.jinja2:312 templates/submit_interest.jinja2:478
+#: templates/account_details.jinja2:296 templates/submit_interest.jinja2:513
msgid "Senegal"
-msgstr "Senegal"
+msgstr ""
-#: templates/account_details.jinja2:313 templates/submit_interest.jinja2:479
+#: templates/account_details.jinja2:297 templates/submit_interest.jinja2:514
msgid "Serbia"
-msgstr "Serbia"
+msgstr ""
-#: templates/account_details.jinja2:314 templates/submit_interest.jinja2:480
+#: templates/account_details.jinja2:298 templates/submit_interest.jinja2:515
msgid "Seychelles"
-msgstr "Seychelles"
+msgstr ""
-#: templates/account_details.jinja2:315 templates/submit_interest.jinja2:481
+#: templates/account_details.jinja2:299 templates/submit_interest.jinja2:516
msgid "Sierra Leone"
-msgstr "Sierra Leona"
+msgstr ""
-#: templates/account_details.jinja2:316 templates/submit_interest.jinja2:482
+#: templates/account_details.jinja2:300 templates/submit_interest.jinja2:517
msgid "Singapore"
-msgstr "Singapur"
+msgstr ""
-#: templates/account_details.jinja2:317 templates/submit_interest.jinja2:483
+#: templates/account_details.jinja2:301 templates/submit_interest.jinja2:518
msgid "Slovakia"
-msgstr "Eslovaquia"
+msgstr ""
-#: templates/account_details.jinja2:318 templates/submit_interest.jinja2:484
+#: templates/account_details.jinja2:302 templates/submit_interest.jinja2:519
msgid "Slovenia"
-msgstr "Eslovenia"
+msgstr ""
-#: templates/account_details.jinja2:319 templates/submit_interest.jinja2:485
+#: templates/account_details.jinja2:303 templates/submit_interest.jinja2:520
msgid "Solomon Islands"
-msgstr "Islas Salomón"
+msgstr ""
-#: templates/account_details.jinja2:320 templates/submit_interest.jinja2:486
+#: templates/account_details.jinja2:304 templates/submit_interest.jinja2:521
+#, fuzzy
msgid "Somalia"
-msgstr "Somalia"
+msgstr "Saliva"
-#: templates/account_details.jinja2:321 templates/submit_interest.jinja2:487
+#: templates/account_details.jinja2:305 templates/submit_interest.jinja2:522
msgid "South Africa"
-msgstr "Sudáfrica"
+msgstr ""
-#: templates/account_details.jinja2:322 templates/submit_interest.jinja2:488
+#: templates/account_details.jinja2:306 templates/submit_interest.jinja2:523
msgid "Sri Lanka"
-msgstr "Sri Lanka"
+msgstr ""
-#: templates/account_details.jinja2:323 templates/submit_interest.jinja2:489
+#: templates/account_details.jinja2:307 templates/submit_interest.jinja2:524
+#, fuzzy
msgid "Sudan"
-msgstr "Sudán"
+msgstr "humana"
-#: templates/account_details.jinja2:324 templates/submit_interest.jinja2:490
+#: templates/account_details.jinja2:308 templates/submit_interest.jinja2:525
msgid "Suriname"
-msgstr "Surinam"
+msgstr ""
-#: templates/account_details.jinja2:325 templates/submit_interest.jinja2:491
+#: templates/account_details.jinja2:309 templates/submit_interest.jinja2:526
msgid "Swaziland"
-msgstr "Suazilandia"
+msgstr ""
-#: templates/account_details.jinja2:326 templates/submit_interest.jinja2:492
+#: templates/account_details.jinja2:310 templates/submit_interest.jinja2:527
msgid "Sweden"
-msgstr "Suecia"
+msgstr ""
-#: templates/account_details.jinja2:327 templates/submit_interest.jinja2:493
+#: templates/account_details.jinja2:311 templates/submit_interest.jinja2:528
msgid "Switzerland"
-msgstr "Suiza"
+msgstr ""
-#: templates/account_details.jinja2:328 templates/submit_interest.jinja2:494
+#: templates/account_details.jinja2:312 templates/submit_interest.jinja2:529
msgid "Syria"
-msgstr "Siria"
+msgstr ""
-#: templates/account_details.jinja2:329 templates/submit_interest.jinja2:495
+#: templates/account_details.jinja2:313 templates/submit_interest.jinja2:530
msgid "Taiwan"
-msgstr "Taiwán"
+msgstr ""
-#: templates/account_details.jinja2:330 templates/submit_interest.jinja2:496
+#: templates/account_details.jinja2:314 templates/submit_interest.jinja2:531
msgid "Tajikistan"
-msgstr "Tayikistán"
+msgstr ""
-#: templates/account_details.jinja2:331 templates/submit_interest.jinja2:497
+#: templates/account_details.jinja2:315 templates/submit_interest.jinja2:532
msgid "Tanzania"
-msgstr "Tanzania"
+msgstr ""
-#: templates/account_details.jinja2:332 templates/submit_interest.jinja2:498
+#: templates/account_details.jinja2:316 templates/submit_interest.jinja2:533
msgid "Thailand"
-msgstr "Tailandia"
+msgstr ""
-#: templates/account_details.jinja2:333 templates/submit_interest.jinja2:499
+#: templates/account_details.jinja2:317 templates/submit_interest.jinja2:534
+#, fuzzy
msgid "Togo"
-msgstr "Togo"
+msgstr "Heces"
-#: templates/account_details.jinja2:334 templates/submit_interest.jinja2:500
+#: templates/account_details.jinja2:318 templates/submit_interest.jinja2:535
msgid "Tonga"
-msgstr "Tonga"
+msgstr ""
-#: templates/account_details.jinja2:335 templates/submit_interest.jinja2:501
+#: templates/account_details.jinja2:319 templates/submit_interest.jinja2:536
msgid "Trinidad and Tobago"
-msgstr "Trinidad y Tobago"
+msgstr ""
-#: templates/account_details.jinja2:336 templates/submit_interest.jinja2:502
+#: templates/account_details.jinja2:320 templates/submit_interest.jinja2:537
msgid "Tunisia"
-msgstr "Túnez"
+msgstr ""
-#: templates/account_details.jinja2:337 templates/submit_interest.jinja2:503
+#: templates/account_details.jinja2:321 templates/submit_interest.jinja2:538
msgid "Turkey"
-msgstr "Turquia"
+msgstr ""
-#: templates/account_details.jinja2:338 templates/submit_interest.jinja2:504
+#: templates/account_details.jinja2:322 templates/submit_interest.jinja2:539
msgid "Turkmenistan"
-msgstr "Turkmenistán"
+msgstr ""
-#: templates/account_details.jinja2:339 templates/submit_interest.jinja2:505
+#: templates/account_details.jinja2:323 templates/submit_interest.jinja2:540
msgid "Uganda"
-msgstr "Uganda"
+msgstr ""
-#: templates/account_details.jinja2:340 templates/submit_interest.jinja2:506
+#: templates/account_details.jinja2:324 templates/submit_interest.jinja2:541
msgid "Ukraine"
-msgstr "Ucrania"
+msgstr ""
-#: templates/account_details.jinja2:341 templates/submit_interest.jinja2:507
+#: templates/account_details.jinja2:325 templates/submit_interest.jinja2:542
msgid "United Arab Emirates"
-msgstr "Emiratos Árabes Unidos"
+msgstr ""
-#: templates/account_details.jinja2:342 templates/submit_interest.jinja2:508
+#: templates/account_details.jinja2:326 templates/submit_interest.jinja2:543
msgid "Uruguay"
-msgstr "Uruguay"
+msgstr ""
-#: templates/account_details.jinja2:343 templates/submit_interest.jinja2:509
+#: templates/account_details.jinja2:327 templates/submit_interest.jinja2:544
msgid "Uzbekistan"
-msgstr "Uzbekistán"
+msgstr ""
-#: templates/account_details.jinja2:344 templates/submit_interest.jinja2:510
+#: templates/account_details.jinja2:328 templates/submit_interest.jinja2:545
msgid "Vanuatu"
-msgstr "Vanuatu"
+msgstr ""
-#: templates/account_details.jinja2:345 templates/submit_interest.jinja2:511
+#: templates/account_details.jinja2:329 templates/submit_interest.jinja2:546
msgid "Venezuela"
-msgstr "Venezuela"
+msgstr ""
-#: templates/account_details.jinja2:346 templates/submit_interest.jinja2:512
+#: templates/account_details.jinja2:330 templates/submit_interest.jinja2:547
msgid "Viet nam"
-msgstr "Vietnam"
+msgstr ""
-#: templates/account_details.jinja2:347 templates/submit_interest.jinja2:513
+#: templates/account_details.jinja2:331 templates/submit_interest.jinja2:548
msgid "Yemen"
-msgstr "Yemen"
+msgstr ""
-#: templates/account_details.jinja2:348 templates/submit_interest.jinja2:514
+#: templates/account_details.jinja2:332 templates/submit_interest.jinja2:549
msgid "Zambia"
-msgstr "Zambia"
+msgstr ""
-#: templates/account_details.jinja2:349 templates/submit_interest.jinja2:515
+#: templates/account_details.jinja2:333 templates/submit_interest.jinja2:550
msgid "Zimbabwe"
-msgstr "Zimbabue"
-
-#: templates/account_details.jinja2:353
-msgid "Street Address"
-msgstr "Dirección"
+msgstr ""
-#: templates/account_details.jinja2:373
-msgid "Preferred language for future communications"
-msgstr "Idioma preferido para futuras comunicaciones"
+#: templates/account_details.jinja2:337
+msgid "Address Line 1"
+msgstr ""
-#: templates/account_details.jinja2:386
-msgid "Activation Info"
-msgstr "Información de Activación"
+#: templates/account_details.jinja2:341
+msgid "Address Line 2"
+msgstr ""
-#: templates/account_details.jinja2:390
-msgid "Kit ID"
-msgstr "Kit ID"
+#: templates/account_details.jinja2:361
+msgid "Preferred language for future communications"
+msgstr ""
-#: templates/account_details.jinja2:393
-msgid "OR"
-msgstr "O"
+#: templates/account_details.jinja2:377
+msgid ""
+"I agree to the Privacy Statement and accept the Terms and Conditions "
+msgstr ""
-#: templates/account_details.jinja2:395 templates/admin_activation_codes.jinja2:14
-msgid "Activation Code"
-msgstr "Código de Activación"
+#: templates/account_details.jinja2:384 templates/submit_interest.jinja2:600
+msgid "Next"
+msgstr ""
-#: templates/account_details.jinja2:402 templates/account_details.jinja2:404
+#: templates/account_details.jinja2:386 templates/sample.jinja2:242
msgid "Save"
-msgstr "Guardar"
+msgstr ""
-#: templates/account_details.jinja2:412
+#: templates/account_details.jinja2:395
msgid "Danger zone"
-msgstr "Zona de riesgo"
+msgstr ""
-#: templates/account_details.jinja2:416
+#: templates/account_details.jinja2:399
msgid "Delete or scrub the account."
-msgstr "Eliminar o borrar la cuenta."
+msgstr ""
-#: templates/account_details.jinja2:419
+#: templates/account_details.jinja2:402
msgid ""
-"If the account has any samples associated, the account and sources will be "
-"scrubbed, meaning all free text and identifiable information is removed."
+"If the account has any samples associated, the account and sources will "
+"be scrubbed, meaning all free text and identifiable information is "
+"removed."
msgstr ""
-"Si la cuenta tiene muestras asociadas, la cuenta y la fuente serán borradas, lo "
-"que significa que se eliminará todo el texto libre y la información "
-"identificable."
-#: templates/account_details.jinja2:422
+#: templates/account_details.jinja2:405
msgid "Otherwise, the account and any sources will be deleted"
-msgstr "De lo contrario, la cuenta y cualquier fuente serán eliminadas"
+msgstr ""
-#: templates/account_details.jinja2:425
+#: templates/account_details.jinja2:408
msgid ""
"IMPORTANT: you must manually delete the email from Authrocket and other "
"external services like MyEmma to complete the process"
msgstr ""
-"IMPORTANTE: debe eliminar manualmente el correo electrónico de Authrocket y "
-"otros servicios externos como MyEmma para completar el proceso"
-#: templates/account_details.jinja2:428
+#: templates/account_details.jinja2:411
msgid "ACCOUNT DELETION CANNOT BE UNDONE"
-msgstr "LA ELIMINACIÓN DE LA CUENTA NO SE PUEDE REVERTIR"
+msgstr ""
-#: templates/account_details.jinja2:431
+#: templates/account_details.jinja2:414
msgid "Delete Account"
-msgstr "Eliminar cuenta"
+msgstr ""
-#: templates/account_overview.jinja2:53
-msgid "View Account Details"
-msgstr "Ver Información de la Cuenta"
+#: templates/account_overview.jinja2:2 templates/new_results_page.jinja2:1318
+#: templates/sample_results.jinja2:127
+msgid "Account"
+msgstr ""
-#: templates/account_overview.jinja2:58
-msgid "Sources"
-msgstr "Fuentes"
+#: templates/account_overview.jinja2:51
+msgid "Active Profiles"
+msgstr ""
-#: templates/account_overview.jinja2:62
-msgid "You have now set up your account! Please proceed to identify your source."
+#: templates/account_overview.jinja2:59
+msgid "Go to My Profile"
msgstr ""
-"¡Usted ha establecido su cuenta! Por favor proceda a identificar su fuente."
#: templates/account_overview.jinja2:66
-msgid ""
-"Choose a source to assign samples to by clicking on a name, listed in blue "
-"below:"
+msgid "Add New Profile"
msgstr ""
-"Elija una fuente para asignar muestras haciendo clic en uno de los nombres, que "
-"se muestra en azul a continuación:"
-#: templates/account_overview.jinja2:71
-msgid "Name"
-msgstr "Nombre"
-
-#: templates/account_overview.jinja2:74
-msgid "Source type"
-msgstr "Tipo de Fuente"
-
-#: templates/account_overview.jinja2:95
-msgid "What is the Source of Your Sample?"
-msgstr "¿Cuál es la fuente de su muestra?"
+#: templates/account_overview.jinja2:67
+msgid "Select the type of profile you would like to create."
+msgstr ""
-#: templates/account_overview.jinja2:103
-msgid ""
-"Our lab needs to know what type of sample(s) you are submitting (a.k.a. the "
-"\"source\"). Add a new source and assign samples to it so we can perform the "
-"correct analysis in our laboratory."
+#: templates/account_overview.jinja2:71
+msgid "Human Profile"
msgstr ""
-"Nuestro laboratorio necesita saber qué tipo de muestra(s) está enviando "
-"(también conocida como “la fuente”). Añada una nueva fuente y asígnele muestras "
-"para que podamos realizar el análisis correcto."
-#: templates/account_overview.jinja2:108
+#: templates/account_overview.jinja2:72
msgid ""
-"If you have multiple sources, you may add one source at a time. You can return "
-"to this page after you finish registering the first one."
+"Share your diet, health, and lifestyle details to help discover more "
+"about how this affects the human microbiome."
msgstr ""
-"Si usted tiene varias fuentes, puede agregar una fuente a la vez. Usted puede "
-"regresar a esta página después de terminar de registrar la primera."
-
-#: templates/account_overview.jinja2:114
-msgid "Human Source"
-msgstr "Fuente Humana"
-
-#: templates/account_overview.jinja2:116 templates/account_overview.jinja2:118
-#: templates/account_overview.jinja2:139
-msgid "Collect sample(s) from"
-msgstr "Recoger muestra(s) de"
-
-#: templates/account_overview.jinja2:116
-msgid "yourself"
-msgstr "usted mismo"
-
-#: templates/account_overview.jinja2:116 templates/account_overview.jinja2:118
-#: templates/account_overview.jinja2:139
-msgid "(e.g. fecal, saliva, skin, etc.)"
-msgstr "(por ejemplo, heces, saliva, piel, etc.)"
-
-#: templates/account_overview.jinja2:118
-msgid "someone else"
-msgstr "alguien más"
-
-#: templates/account_overview.jinja2:121 templates/account_overview.jinja2:131
-#: templates/account_overview.jinja2:144
-msgid "Select"
-msgstr "Seleccionar"
-#: templates/account_overview.jinja2:126
-msgid "Environmental Source"
-msgstr "Fuente Ambiental"
-
-#: templates/account_overview.jinja2:128
-msgid "Collect sample(s) from a"
-msgstr "Recoger muestra(s) de una"
-
-#: templates/account_overview.jinja2:128
-msgid "surface"
-msgstr "superficie"
+#: templates/account_overview.jinja2:73
+msgid "Add Human Profile"
+msgstr ""
-#: templates/account_overview.jinja2:128
-msgid "(e.g. kitchen counter, backyard soil, food, etc.)"
-msgstr "(por ejemplo, la barra de la cocina, tierra del jardín, comida, etc.)"
+#: templates/account_overview.jinja2:81
+msgid "Pet Profile"
+msgstr ""
-#: templates/account_overview.jinja2:136
-msgid "Animal Source"
-msgstr "Fuente Animal"
+#: templates/account_overview.jinja2:82
+msgid "Share sample(s) from an animal (e.g. fecal, saliva, skin, etc.)"
+msgstr ""
-#: templates/account_overview.jinja2:139
-msgid "your pet"
-msgstr "su mascota"
+#: templates/account_overview.jinja2:83 templates/account_overview.jinja2:91
+msgid "Coming Soon"
+msgstr ""
-#: templates/account_overview.jinja2:139
-msgid "or an"
-msgstr "o un"
+#: templates/account_overview.jinja2:89
+#, fuzzy
+msgid "Environment Profile"
+msgstr "ambiental"
-#: templates/account_overview.jinja2:141
-msgid "Animal sources are currently unavailable."
-msgstr "Las fuentes animales no están disponibles."
+#: templates/account_overview.jinja2:90
+msgid "Share sample(s) from the environment (e.g. kitchen counter, food, etc.)"
+msgstr ""
#: templates/admin_activation_codes.jinja2:2
msgid "Admin Activation Codes"
-msgstr "Códigos de Activación del Administrador"
+msgstr ""
#: templates/admin_activation_codes.jinja2:6
msgid "Search by Email"
-msgstr "Buscar por Correo Electrónico"
+msgstr ""
#: templates/admin_activation_codes.jinja2:9
#: templates/admin_activation_codes.jinja2:16
#: templates/admin_barcode_search.jinja2:87
msgid "Search"
-msgstr "Buscar"
+msgstr ""
#: templates/admin_activation_codes.jinja2:13
msgid "Search by Activation Code"
-msgstr "Buscar por Código de Activación"
+msgstr ""
+
+#: templates/admin_activation_codes.jinja2:14
+msgid "Activation Code"
+msgstr ""
#: templates/admin_activation_codes.jinja2:20
msgid "Generate Activation Code"
-msgstr "Generar Código de Activación"
+msgstr ""
#: templates/admin_activation_codes.jinja2:23
#: templates/admin_activation_codes.jinja2:31
+#: templates/admin_ffq_codes.jinja2:8 templates/admin_ffq_codes.jinja2:20
msgid "Generate"
-msgstr "Generar"
+msgstr ""
#: templates/admin_activation_codes.jinja2:24
msgid "Generate + Send Email"
-msgstr "Generar + Enviar Correo Electrónico"
+msgstr ""
#: templates/admin_activation_codes.jinja2:28
msgid "Generate Activation Codes from CSV File"
-msgstr "Generar Códigos de Activación desde un Archivo CSV"
+msgstr ""
#: templates/admin_activation_codes.jinja2:29
msgid "CSV File of Emails"
-msgstr "Archivo CSV de correos electrónicos"
+msgstr ""
#: templates/admin_activation_codes.jinja2:34 templates/admin_home.jinja2:5
msgid "Search Results"
-msgstr "Buscar Resultados"
+msgstr ""
#: templates/admin_activation_codes.jinja2:43
msgid "Code"
-msgstr "Código"
+msgstr ""
#: templates/admin_activation_codes.jinja2:46
msgid "Activated"
-msgstr "Activado"
+msgstr ""
#: templates/admin_activation_codes.jinja2:67 templates/admin_home.jinja2:34
msgid "No accounts found"
-msgstr "No se encontraron cuentas"
+msgstr ""
#: templates/admin_address_verification.jinja2:2
#: templates/admin_campaign_list.jinja2:2
#: templates/admin_interested_user_edit.jinja2:2
msgid "Admin Address Verification"
-msgstr "Verificación de la dirección del administrador"
+msgstr ""
#: templates/admin_address_verification.jinja2:8
msgid "Verify CSV File of Addresses"
-msgstr "Verificar archivo CSV de direcciones"
+msgstr ""
#: templates/admin_address_verification.jinja2:12
msgid "CSV File"
-msgstr "Archivo CSV"
+msgstr ""
#: templates/admin_address_verification.jinja2:17
#: templates/admin_address_verification.jinja2:57
msgid "Verify"
-msgstr "Verificar"
+msgstr ""
#: templates/admin_address_verification.jinja2:26
msgid "Verify Single Address"
-msgstr "Verificar Dirección Única"
+msgstr ""
#: templates/admin_address_verification.jinja2:29
#: templates/admin_address_verification.jinja2:81
#: templates/admin_interested_user_edit.jinja2:122
-#: templates/submit_interest.jinja2:523 templates/update_address.jinja2:209
+#: templates/submit_interest.jinja2:558 templates/update_address.jinja2:209
msgid "Address 1"
-msgstr "Dirección 1"
+msgstr ""
#: templates/admin_address_verification.jinja2:33
#: templates/admin_address_verification.jinja2:85
#: templates/admin_interested_user_edit.jinja2:126
-#: templates/submit_interest.jinja2:527 templates/update_address.jinja2:213
+#: templates/submit_interest.jinja2:562 templates/update_address.jinja2:213
msgid "Address 2"
-msgstr "Dirección 2"
+msgstr ""
#: templates/admin_address_verification.jinja2:37
#: templates/admin_address_verification.jinja2:89
#: templates/admin_interested_user_edit.jinja2:132
-#: templates/submit_interest.jinja2:531 templates/update_address.jinja2:217
+#: templates/submit_interest.jinja2:566 templates/update_address.jinja2:217
msgid "Address 3"
-msgstr "Dirección 3"
+msgstr ""
#: templates/admin_address_verification.jinja2:49
#: templates/admin_address_verification.jinja2:101
#: templates/admin_interested_user_edit.jinja2:146
-#: templates/submit_interest.jinja2:545 templates/update_address.jinja2:231
+#: templates/submit_interest.jinja2:580 templates/update_address.jinja2:231
msgid "Postal Code"
-msgstr "Código Postal"
+msgstr ""
#: templates/admin_address_verification.jinja2:109
msgid "Latitude"
-msgstr "Latitud"
+msgstr ""
#: templates/admin_address_verification.jinja2:113
msgid "Longitude"
-msgstr "Longitud"
+msgstr ""
#: templates/admin_barcode_search.jinja2:2
msgid "ADMINISTRATOR BARCODE SEARCH"
-msgstr "Búsqueda de Código de Barras del Administrador"
+msgstr ""
#: templates/admin_barcode_search.jinja2:31
msgid "Download CSV"
-msgstr "Descargar CSV"
+msgstr ""
#: templates/admin_barcode_search.jinja2:32
msgid "Download Excel"
-msgstr "Descargar Excel"
+msgstr ""
#: templates/admin_barcode_search.jinja2:90
msgid "Search Qiita"
-msgstr "Buscar Qiita"
+msgstr ""
-#: templates/admin_barcode_search.jinja2:97 templates/sample.jinja2:162
-#: templates/source.jinja2:161
+#: templates/admin_barcode_search.jinja2:97
msgid "Barcode"
-msgstr "Código de barras"
+msgstr ""
#: templates/admin_campaign_edit.jinja2:2
msgid "Admin Campaign Edit"
-msgstr "Editar Campaña del Administrador"
+msgstr ""
#: templates/admin_campaign_edit.jinja2:16
msgid "Edit Campaign"
-msgstr "Editar Campaña"
+msgstr ""
#: templates/admin_campaign_edit.jinja2:19
msgid "Campaign ID"
-msgstr "ID de campaña"
+msgstr ""
#: templates/admin_campaign_edit.jinja2:23
msgid "Campaign Link"
-msgstr "Enlace de campaña"
+msgstr ""
-#: templates/admin_campaign_edit.jinja2:27 templates/admin_campaign_edit.jinja2:35
+#: templates/admin_campaign_edit.jinja2:27
+#: templates/admin_campaign_edit.jinja2:35
msgid "Associated Projects"
-msgstr "Proyectos Asociados"
+msgstr ""
#: templates/admin_campaign_edit.jinja2:32
msgid "Add Campaign"
-msgstr "Añadir Campaña"
+msgstr ""
#: templates/admin_campaign_edit.jinja2:46
msgid "Campaign Language"
-msgstr "Idioma de Campaña"
+msgstr ""
#: templates/admin_campaign_edit.jinja2:56
msgid "Title"
-msgstr "Título"
+msgstr ""
#: templates/admin_campaign_edit.jinja2:60
msgid "Instructions"
-msgstr "Instrucciones"
+msgstr ""
#: templates/admin_campaign_edit.jinja2:64
msgid "Alt Campaign Language"
-msgstr "Idioma Alternativo de la Campaña"
+msgstr ""
#: templates/admin_campaign_edit.jinja2:75
msgid "Title in Alt Language"
-msgstr "Título en Idioma Alternativo"
+msgstr ""
#: templates/admin_campaign_edit.jinja2:79
msgid "Instructions in Alt Language"
-msgstr "Instrucciones en Idioma Alternativo"
+msgstr ""
#: templates/admin_campaign_edit.jinja2:84
msgid "Current Header Image"
-msgstr "Imagen de Encabezado Actual"
+msgstr ""
#: templates/admin_campaign_edit.jinja2:89
msgid "Upload New Header Image"
-msgstr "Cargar Nueva Imagen de Encabezado"
+msgstr ""
-#: templates/admin_campaign_edit.jinja2:93 templates/admin_campaign_list.jinja2:17
+#: templates/admin_campaign_edit.jinja2:93
+#: templates/admin_campaign_list.jinja2:17
msgid "Permitted Countries"
-msgstr "Países Permitidos"
+msgstr ""
-#: templates/admin_campaign_edit.jinja2:104
+#: templates/admin_campaign_edit.jinja2:105
#: templates/admin_campaign_list.jinja2:20
msgid "Accepting Participants"
-msgstr "Aceptando Participantes"
+msgstr ""
-#: templates/admin_campaign_edit.jinja2:113
+#: templates/admin_campaign_edit.jinja2:114
+msgid "Send THDMI Confirmation Email"
+msgstr ""
+
+#: templates/admin_campaign_edit.jinja2:123
+msgid "Force Primary Language on Form"
+msgstr ""
+
+#: templates/admin_campaign_edit.jinja2:132
#: templates/admin_interested_user_edit.jinja2:170
-#: templates/submit_interest.jinja2:566 templates/update_address.jinja2:254
+#: templates/submit_interest.jinja2:601 templates/update_address.jinja2:254
msgid "Submit"
-msgstr "Enviar"
+msgstr ""
-#: templates/admin_campaign_list.jinja2:5 templates/sitebase.jinja2:50
+#: templates/admin_campaign_list.jinja2:5 templates/sitebase.jinja2:61
msgid "Campaigns"
-msgstr "Campañas"
+msgstr ""
#: templates/admin_campaign_list.jinja2:14
msgid "Campaign Name"
-msgstr "Nombre de Campaña"
+msgstr ""
#: templates/admin_campaign_list.jinja2:47
msgid "No campaigns found"
-msgstr "No campañas encontradas"
+msgstr ""
+
+#: templates/admin_ffq_codes.jinja2:2
+msgid "Admin FFQ Codes"
+msgstr ""
+
+#: templates/admin_ffq_codes.jinja2:6
+msgid "Generate Single Code"
+msgstr ""
+
+#: templates/admin_ffq_codes.jinja2:17
+msgid "Generate Multiple Codes and download CSV File"
+msgstr ""
+
+#: templates/admin_ffq_codes.jinja2:18
+msgid "Number of Codes"
+msgstr ""
#: templates/admin_home.jinja2:2 templates/admin_interested_users.jinja2:2
msgid "ADMINISTRATOR MODE"
-msgstr "Modo Administrador"
+msgstr ""
#: templates/admin_home.jinja2:14
msgid "Account ID"
-msgstr "ID de la Cuenta"
+msgstr ""
#: templates/admin_interested_user_edit.jinja2:30
#: templates/admin_interested_user_edit.jinja2:64
-#: templates/submit_interest.jinja2:193
+#: templates/submit_interest.jinja2:228
msgid "Please enter a valid phone number."
-msgstr "Por favor ingrese su número de teléfono."
+msgstr ""
#: templates/admin_interested_user_edit.jinja2:31
#: templates/admin_interested_user_edit.jinja2:65
-#: templates/submit_interest.jinja2:197 templates/update_address.jinja2:130
+#: templates/submit_interest.jinja2:232 templates/update_address.jinja2:130
msgid "Please enter your street address."
-msgstr "Por favor ingrese su dirección postal."
+msgstr ""
#: templates/admin_interested_user_edit.jinja2:32
#: templates/admin_interested_user_edit.jinja2:66
-#: templates/submit_interest.jinja2:198 templates/update_address.jinja2:131
+#: templates/submit_interest.jinja2:233 templates/update_address.jinja2:131
msgid "Please enter your city."
-msgstr "Por favor ingrese su ciudad."
+msgstr ""
#: templates/admin_interested_user_edit.jinja2:33
#: templates/admin_interested_user_edit.jinja2:67
-#: templates/submit_interest.jinja2:199 templates/update_address.jinja2:132
+#: templates/submit_interest.jinja2:234 templates/update_address.jinja2:132
msgid "Please select your state."
-msgstr "Por favor ingrese su estado."
+msgstr ""
#: templates/admin_interested_user_edit.jinja2:35
#: templates/admin_interested_user_edit.jinja2:69
-#: templates/submit_interest.jinja2:201 templates/update_address.jinja2:134
+#: templates/submit_interest.jinja2:236 templates/update_address.jinja2:134
msgid "Please enter your postal code."
-msgstr "Por favor ingrese su código postal."
+msgstr ""
#: templates/admin_interested_user_edit.jinja2:100
msgid "Edit Interested User"
-msgstr "Editar Usuario Interesado"
+msgstr ""
#: templates/admin_interested_user_edit.jinja2:103
msgid ""
-"CAUTION: Edits made will NOT go through address verification - proceed carefully"
+"CAUTION: Edits made will NOT go through address verification - proceed "
+"carefully"
msgstr ""
-"PRECAUCIÓN: Los cambios realizados NO pasarán por la verificación de la "
-"dirección; avanzar con cuidado"
#: templates/admin_interested_user_edit.jinja2:118
msgid "Phone"
-msgstr "Teléfono"
+msgstr ""
#: templates/admin_interested_user_edit.jinja2:152
-#: templates/submit_interest.jinja2:549 templates/update_address.jinja2:235
+#: templates/submit_interest.jinja2:584 templates/update_address.jinja2:235
msgid "Address Type"
-msgstr "Dirección de Envio"
+msgstr ""
-#: templates/admin_interested_users.jinja2:5 templates/sitebase.jinja2:48
+#: templates/admin_interested_users.jinja2:5 templates/sitebase.jinja2:59
msgid "Interested Users"
-msgstr "Usuarios Interesados"
+msgstr ""
#: templates/admin_interested_users.jinja2:45
msgid "Converted to Account"
-msgstr "Convertido a Cuenta"
+msgstr ""
#: templates/admin_interested_users.jinja2:54
msgid "No interested users found"
-msgstr "No se encontraron usuarios interesados"
+msgstr ""
#: templates/admin_system_panel.jinja2:2
msgid "ADMINISTRATOR SYSTEM PANEL"
-msgstr "PANEL DEL SISTEMA DEL ADMINISTRADOR"
+msgstr ""
-#: templates/admin_system_panel.jinja2:26 templates/admin_system_panel.jinja2:67
+#: templates/admin_system_panel.jinja2:26
+#: templates/admin_system_panel.jinja2:67
msgid "Set System Message"
-msgstr "Establecer mensaje del sistema"
+msgstr ""
#: templates/admin_system_panel.jinja2:35
msgid "System Message"
-msgstr "Mensaje del Sistema"
+msgstr ""
#: templates/admin_system_panel.jinja2:39
msgid "primary"
-msgstr "primario"
+msgstr ""
#: templates/admin_system_panel.jinja2:40
msgid "secondary"
-msgstr "secundario"
+msgstr ""
#: templates/admin_system_panel.jinja2:41
msgid "success"
-msgstr "éxitoso"
+msgstr ""
#: templates/admin_system_panel.jinja2:42
msgid "danger"
-msgstr "peligro"
+msgstr ""
#: templates/admin_system_panel.jinja2:43
msgid "warning"
-msgstr "advertencia"
+msgstr ""
#: templates/admin_system_panel.jinja2:44
msgid "info"
-msgstr "información"
+msgstr ""
#: templates/admin_system_panel.jinja2:45
msgid "light"
-msgstr "claro"
+msgstr ""
#: templates/admin_system_panel.jinja2:46
msgid "dark"
-msgstr "oscuro"
+msgstr ""
+
+#: templates/consents.jinja2:2 templates/consents.jinja2:30
+#: templates/sitebase.jinja2:183
+msgid "Consent Documents"
+msgstr ""
+
+#: templates/consents.jinja2:38
+msgid "Survey"
+msgstr ""
+
+#: templates/consents.jinja2:55
+msgid "Biospecimen"
+msgstr ""
+
+#: templates/consents.jinja2:59
+msgid "View"
+msgstr ""
#: templates/create_nonhuman_source.jinja2:2
msgid "Create Non-human Source"
-msgstr "Crear Fuente No-Humana"
+msgstr ""
#: templates/create_nonhuman_source.jinja2:8
msgid "Creating Source..."
-msgstr "Creando fuente..."
+msgstr ""
#: templates/create_nonhuman_source.jinja2:16
msgid "Environment name (e.g., microwave)"
-msgstr "Nombre del entorno (por ejemplo, microondas)"
+msgstr ""
#: templates/create_nonhuman_source.jinja2:20
msgid "Environment description (optional)"
-msgstr "Descripción del entorno (opcional)"
+msgstr ""
#: templates/create_nonhuman_source.jinja2:23
msgid "Create Source"
-msgstr "Crear una Fuente"
+msgstr ""
#: templates/email_confirmation.jinja2:2
msgid "Awaiting Email Confirmation"
-msgstr "Esperando Confirmación por Correo Electrónico"
+msgstr ""
#: templates/email_confirmation.jinja2:20
msgid "Check your email inbox"
-msgstr "Revise la bandeja de entrada de su correo electrónico"
+msgstr ""
#: templates/email_confirmation.jinja2:21
msgid ""
-"To complete your verification, click on the link in the email AuthRocket has "
-"sent to"
+"To complete your verification, click on the link in the email AuthRocket "
+"has sent to"
msgstr ""
-"Para completar su verificación, haga clic en el enlace del correo electrónico "
-"que AuthRocket ha enviado a"
#: templates/email_confirmation.jinja2:25
msgid "Waiting for you to confirm"
-msgstr "Esperando su confirmación"
+msgstr ""
#: templates/email_confirmation.jinja2:28
msgid "Please check both your spam and inbox"
-msgstr "Por favor revise sus correos no deseados y su bandeja de entrada"
+msgstr ""
#: templates/email_confirmation.jinja2:29
msgid "AuthRocket is our authentication service"
-msgstr "AuthRocket es nuestro servicio de autenticación"
+msgstr ""
#: templates/email_confirmation.jinja2:30
msgid "Email wrong or didn't receive an email?"
-msgstr "Correo electrónico incorrecto o no recibió un correo electrónico?"
+msgstr ""
#: templates/email_confirmation.jinja2:30
msgid "Go to your AuthRocket Account"
-msgstr "Vaya a su cuenta de AuthRocket"
+msgstr ""
#: templates/email_confirmation.jinja2:30
msgid "to update your email or resend a verification email"
msgstr ""
-"para actualizar su correo electrónico o reenviar un correo electrónico de "
-"verificación"
#: templates/email_confirmation.jinja2:33
msgid "You can close this browser tab!"
-msgstr "¡Puede cerrar esta pestaña del navegador!"
+msgstr ""
#: templates/email_confirmation.jinja2:33
msgid ""
-"After email verification, a new tab will automatically open, and you will "
-"proceed with filling out your account details"
+"After email verification, a new tab will automatically open, and you will"
+" proceed with filling out your account details"
msgstr ""
-"Después de la verificación del correo electrónico, se abrirá automáticamente "
-"una nueva pestaña, y usted podrá seguir ingresando la información de su cuenta"
#: templates/embedded_pdf.jinja2:2
msgid "Embedded PDF"
-msgstr "PDF incorporado"
+msgstr ""
#: templates/embedded_pdf.jinja2:25
-msgid ""
-"This report is generated by a third party without information regarding age, "
-"height or weight."
+msgid "This report is generated by a third party."
msgstr ""
-"Este reporte es generado por una tercera entidad sin información sobre edad, "
-"altura o peso."
#: templates/emperor.jinja2:2 templates/emperor.jinja2:65
-#: templates/sitebase.jinja2:45
+#: templates/sitebase.jinja2:58
msgid "Emperor Playground"
-msgstr "Emperor Playground"
+msgstr ""
#: templates/emperor.jinja2:68
msgid "PCOA URL"
-msgstr "PCOA URL"
+msgstr ""
#: templates/emperor.jinja2:73
msgid "Go!"
-msgstr "Ir!"
+msgstr ""
#: templates/error.jinja2:2
msgid "Error Page"
-msgstr "Error en la Página"
+msgstr ""
#: templates/error.jinja2:10
msgid ""
-"An error seemed to have occurred (see below). It is most likely our fault. We "
-"are actively modifying our infrastructure to support COVID-19 research, and "
-"we're still in the process of handling the different type of scenarios that can "
-"happen on a website. We apologize for any inconvenience."
+"An error seemed to have occurred (see below). It is most likely our "
+"fault. We are actively modifying our infrastructure to support COVID-19 "
+"research, and we're still in the process of handling the different type "
+"of scenarios that can happen on a website. We apologize for any "
+"inconvenience."
msgstr ""
-"Parece que se ha producido un error (véase a continuación). Lo más probable es "
-"que sea un error nuestro. Estamos modificando nuestra infraestructura para "
-"respaldar la investigación de COVID-19 y todavía estamos en el proceso de "
-"manejar los diferentes tipos de escenarios que pueden ocurrir en un sitio web. "
-"Nos disculpamos por cualquier inconveniente."
#: templates/error.jinja2:13
msgid "If you have any concerns, please email us at"
-msgstr "Si tiene alguna duda, por favor envíenos un correo electrónico a"
+msgstr ""
#: templates/error.jinja2:13
msgid "and please note the error below"
-msgstr "y por favor muéstrenos el error que le apareció"
+msgstr ""
#: templates/error.jinja2:15
msgid "Error"
-msgstr "Error"
+msgstr ""
-#: templates/home.jinja2:2 templates/sitebase.jinja2:105
-#: templates/submit_interest.jinja2:2 templates/submit_interest_confirm.jinja2:2
-#: templates/update_address.jinja2:2 templates/update_address_confirm.jinja2:2
+#: templates/home.jinja2:2 templates/submit_interest.jinja2:2
+#: templates/submit_interest_confirm.jinja2:2 templates/update_address.jinja2:2
+#: templates/update_address_confirm.jinja2:2
msgid "Home"
-msgstr "Inicio"
+msgstr ""
-#: templates/home.jinja2:34
+#: templates/home.jinja2:30
msgid "Welcome!"
-msgstr "¡Bienvenido!"
+msgstr ""
+
+#: templates/home.jinja2:35 templates/sitebase.jinja2:91
+msgid "Sign Up"
+msgstr ""
+
+#: templates/home.jinja2:40 templates/sitebase.jinja2:90
+msgid "Log In"
+msgstr ""
+
+#: templates/kits.jinja2:2 templates/kits.jinja2:177 templates/kits.jinja2:197
+#: templates/reports.jinja2:63 templates/sample.jinja2:2
+#: templates/sample.jinja2:184 templates/sitebase.jinja2:133
+#: templates/sitebase.jinja2:155 templates/sitebase.jinja2:157
+msgid "My Kits"
+msgstr ""
+
+#: templates/kits.jinja2:62 templates/kits.jinja2:214 templates/kits.jinja2:262
+msgid "KitID"
+msgstr ""
+
+#: templates/kits.jinja2:98 templates/reports.jinja2:26
+msgid "View Results"
+msgstr ""
+
+#: templates/kits.jinja2:183
+msgid ""
+"Currently, \"My Kits\" is unavailable in your country or region. We "
+"apologize for any inconvenience."
+msgstr ""
+
+#: templates/kits.jinja2:192
+msgid ""
+"Click on the following link if you would like to contribute to receive a "
+"kit"
+msgstr ""
+
+#: templates/kits.jinja2:192 templates/kits.jinja2:205
+msgid "Get a Kit"
+msgstr ""
+
+#: templates/kits.jinja2:203
+msgid "Have a KitID"
+msgstr ""
+
+#: templates/kits.jinja2:231 templates/reports.jinja2:75
+msgid "Sample Received - Results Pending"
+msgstr ""
+
+#: templates/kits.jinja2:249
+msgid "To register your kit, enter your Kit ID below"
+msgstr ""
+
+#: templates/kits.jinja2:255
+msgid "Register Kit"
+msgstr ""
+
+#: templates/kits.jinja2:265
+msgid "Which barcode(s) are you using from this kit (select all that apply)?"
+msgstr ""
-#: templates/home.jinja2:38
-msgid "SIGN UP"
-msgstr "Registrarse"
+#: templates/kits.jinja2:265
+msgid "Each collection tube you receive has a unique barcode printed on the side."
+msgstr ""
+
+#: templates/kits.jinja2:266
+msgid "1. Select the barcode(s) you are using"
+msgstr ""
+
+#: templates/kits.jinja2:267
+msgid ""
+"2. Add the date and time of sample collection and select the sample type "
+"taken."
+msgstr ""
+
+#: templates/kits.jinja2:268
+msgid "Important"
+msgstr ""
-#: templates/home.jinja2:42
-msgid "Already have an account?"
-msgstr "¿Ya tiene una cuenta?"
+#: templates/kits.jinja2:269
+msgid ""
+"The sample cannot be processed in the lab until this information is "
+"complete."
+msgstr ""
+
+#: templates/kits.jinja2:270
+msgid ""
+"Keep a record of these details. The barcode is needed to resolve any "
+"issues you may have with your sample collection."
+msgstr ""
-#: templates/home.jinja2:43
-msgid "Welcome back!"
-msgstr "¡Bienvenido de nuevo!"
+#: templates/kits.jinja2:270
+msgid "What is the barcode and why is it important?"
+msgstr ""
-#: templates/home.jinja2:43
-msgid "LOG IN"
-msgstr "Iniciar sesión"
+#: templates/kits.jinja2:275
+msgid "Confirm"
+msgstr ""
#: templates/myfoodrepo_no_slots.jinja2:2
msgid "MyFoodRepo unavailable"
-msgstr "MyFoodRepo no disponible"
+msgstr ""
#: templates/myfoodrepo_no_slots.jinja2:16
msgid "MyFoodRepo is currently unavailabile"
-msgstr "MyFoodRepo no está disponible en este momento"
+msgstr ""
#: templates/myfoodrepo_no_slots.jinja2:19
msgid ""
-"We apologize, but unfortunately MyFoodRepo is not available at this time. "
-"Please check back in a few days and try again."
+"We apologize, but unfortunately MyFoodRepo is not available at this time."
+" Please check back in a few days and try again."
msgstr ""
-"Lo sentimos, pero desafortunadamente MyFoodRepo no está disponible en este "
-"momento. Vuelva a revisar en unos días e inténtelo de nuevo."
#: templates/myfoodrepo_no_slots.jinja2:22
msgid ""
-"MyFoodRepo is human curated to ensure the highest accuracy in reported dietary "
-"detail. Because the process is not fully automated, we need to limit the number "
-"of concurrent users who take part. We apologize for the inconvenience."
+"MyFoodRepo is human curated to ensure the highest accuracy in reported "
+"dietary detail. Because the process is not fully automated, we need to "
+"limit the number of concurrent users who take part. We apologize for the "
+"inconvenience."
msgstr ""
-"MyFoodRepo es dirigido por humanos para garantizar una mayor precisión en la "
-"información dietética reportada. Debido a que el proceso no está completamente "
-"automatizado, debemos limitar la cantidad de usuarios que participan. Pedimos "
-"disculpas por las molestias."
#: templates/myfoodrepo_no_slots.jinja2:25
#: templates/post_sample_questionnaire.jinja2:30
msgid "Back to Samples"
-msgstr "Volver a las Muestras"
+msgstr ""
-#: templates/new_participant.jinja2:2 templates/new_participant.jinja2:194
+#: templates/new_participant.jinja2:2 templates/signed_consent.jinja2:2
msgid "Consent"
-msgstr "Consentimiento Informado"
+msgstr ""
-#: templates/new_participant.jinja2:119 templates/new_participant.jinja2:120
-#: templates/new_participant.jinja2:121 templates/new_participant.jinja2:122
+#: templates/new_participant.jinja2:31 templates/new_participant.jinja2:32
+#: templates/new_participant.jinja2:33 templates/new_participant.jinja2:34
msgid "Saving..."
-msgstr "Guardando..."
+msgstr ""
+
+#: templates/new_participant.jinja2:60 templates/new_participant.jinja2:84
+#: templates/new_participant.jinja2:101 templates/new_participant.jinja2:103
+#: templates/new_participant.jinja2:118 templates/new_participant.jinja2:255
+#: templates/new_participant.jinja2:355 templates/new_participant.jinja2:396
+#: templates/new_participant.jinja2:425 templates/new_participant.jinja2:468
+msgid "Please confirm that you have read this form."
+msgstr ""
+
+#: templates/new_participant.jinja2:61 templates/new_participant.jinja2:81
+#: templates/new_participant.jinja2:102 templates/new_participant.jinja2:119
+#: templates/new_participant.jinja2:266 templates/new_participant.jinja2:316
+#: templates/new_participant.jinja2:407 templates/new_participant.jinja2:479
+msgid "Please enter the participant name."
+msgstr ""
-#: templates/new_participant.jinja2:144
+#: templates/new_participant.jinja2:62 templates/new_participant.jinja2:85
+#: templates/new_participant.jinja2:104 templates/new_participant.jinja2:277
+#: templates/new_participant.jinja2:366 templates/new_participant.jinja2:436
+msgid "Please enter the parent or guardian name."
+msgstr ""
+
+#: templates/new_participant.jinja2:80 templates/new_participant.jinja2:305
+msgid "Please confirm that you will be in this study."
+msgstr ""
+
+#: templates/new_participant.jinja2:82 templates/new_participant.jinja2:327
msgid ""
-"It looks like you are creating a new source that may be similar or the same as "
-"an existing source. If this is the same person as an existing source, please "
-"consider providing new samples or survey responses under that source"
+"Please confirm that the participant is voluntarily and knowingly giving "
+"consent."
msgstr ""
-"Parece que está creando una nueva fuente que puede ser similar o igual a una "
-"fuente existente. Si esta es la misma persona que una fuente existente, "
-"considere proporcionar nuevas muestras o respuestas de encuestas bajo esa fuente"
-#: templates/new_participant.jinja2:229 templates/new_participant.jinja2:273
-#: templates/new_participant.jinja2:307 templates/new_participant.jinja2:328
-msgid "https://oag.ca.gov/sites/all/files/agweb/pdfs/research/bill_of_rights.pdf"
-msgstr "https://oag.ca.gov/sites/all/files/agweb/pdfs/research/bill_of_rights.pdf"
+#: templates/new_participant.jinja2:83 templates/new_participant.jinja2:338
+msgid "Please enter the name of the person obtaining assent."
+msgstr ""
+
+#: templates/new_participant.jinja2:143
+msgid ""
+"It looks like you are creating a new profile that may be similar or the "
+"same as an existing profile. If this is the same person as an existing "
+"profile, please consider providing new samples or survey responses under "
+"that profile."
+msgstr ""
-#: templates/new_participant.jinja2:240 templates/new_participant.jinja2:280
-#: templates/new_participant.jinja2:314 templates/new_participant.jinja2:336
+#: templates/new_participant.jinja2:162 templates/new_participant.jinja2:176
+#: templates/new_participant.jinja2:283 templates/new_participant.jinja2:372
+#: templates/new_participant.jinja2:442 templates/new_participant.jinja2:485
msgid "I Accept"
-msgstr "Acepto"
+msgstr ""
+
+#: templates/new_participant.jinja2:193
+msgid "Biospecimen Consent Form"
+msgstr ""
+
+#: templates/new_participant.jinja2:195
+msgid "Data Consent Form"
+msgstr ""
+
+#: templates/new_participant.jinja2:206
+msgid ""
+"Signature and agreement of this consent form is required to process your "
+"sample(s)."
+msgstr ""
+
+#: templates/new_participant.jinja2:212
+msgid "Select age range of participant"
+msgstr ""
+
+#: templates/new_participant.jinja2:252 templates/new_participant.jinja2:352
+#: templates/new_participant.jinja2:422 templates/new_participant.jinja2:465
+#: templates/signed_consent.jinja2:23 templates/signed_consent.jinja2:107
+#: templates/signed_consent.jinja2:163 templates/signed_consent.jinja2:200
+msgid "https://oag.ca.gov/sites/all/files/agweb/pdfs/research/bill_of_rights.pdf"
+msgstr ""
+
+#: templates/new_participant.jinja2:282 templates/new_participant.jinja2:371
+#: templates/new_participant.jinja2:441 templates/new_participant.jinja2:484
+#: templates/sample.jinja2:241
+msgid "Cancel"
+msgstr ""
+
+#: templates/new_participant.jinja2:496
+msgid "Warning"
+msgstr ""
+
+#: templates/new_participant.jinja2:502
+msgid "Return to Home Page"
+msgstr ""
+
+#: templates/new_participant.jinja2:503
+msgid "Proceed with Creating New Source"
+msgstr ""
#: templates/new_results_page.jinja2:2 templates/sample_results.jinja2:2
+#, fuzzy
msgid "Sample Results"
-msgstr "Resultados de la muestra"
+msgstr "sitio_muestra"
#: templates/new_results_page.jinja2:216
msgid "11 to 20"
-msgstr "11 a 20"
+msgstr ""
#: templates/new_results_page.jinja2:217
msgid "21 to 30"
-msgstr "21 a 30"
+msgstr ""
#: templates/new_results_page.jinja2:218
msgid "5-6 hours"
-msgstr "5-6 horas"
+msgstr ""
#: templates/new_results_page.jinja2:219
msgid "6 to 10"
-msgstr "6 a 10"
+msgstr ""
#: templates/new_results_page.jinja2:220
msgid "6-7 hours"
-msgstr "6-7 horas"
+msgstr ""
#: templates/new_results_page.jinja2:221
msgid "7-8 hours"
-msgstr "7-8 horas"
+msgstr ""
#: templates/new_results_page.jinja2:222
msgid "8 or more hours"
-msgstr "8 o más horas"
+msgstr ""
-#: templates/new_results_page.jinja2:223 templates/new_results_page.jinja2:958
+#: templates/new_results_page.jinja2:223 templates/new_results_page.jinja2:870
msgid "Daily"
-msgstr "Diario"
+msgstr ""
#: templates/new_results_page.jinja2:224
msgid "Less than 5"
-msgstr "Menos de 5"
+msgstr ""
#: templates/new_results_page.jinja2:225
msgid "Less than 5 hours"
-msgstr "Menos de 5 horas"
+msgstr ""
#: templates/new_results_page.jinja2:226
msgid "More than 30"
-msgstr "Más de 30 horas"
+msgstr ""
-#: templates/new_results_page.jinja2:227 templates/new_results_page.jinja2:954
+#: templates/new_results_page.jinja2:227 templates/new_results_page.jinja2:866
msgid "Never"
-msgstr "Nunca"
+msgstr ""
#: templates/new_results_page.jinja2:228 templates/new_results_page.jinja2:233
#: templates/new_results_page.jinja2:234 templates/new_results_page.jinja2:235
-#: templates/new_results_page.jinja2:943 templates/new_results_page.jinja2:953
+#: templates/new_results_page.jinja2:855 templates/new_results_page.jinja2:865
msgid "Not provided"
-msgstr "No provisto"
+msgstr ""
-#: templates/new_results_page.jinja2:229 templates/new_results_page.jinja2:956
+#: templates/new_results_page.jinja2:229 templates/new_results_page.jinja2:868
msgid "Occasionally (1-2 times/week)"
-msgstr "Ocasionalmente (1-2 veces/semana)"
+msgstr ""
#: templates/new_results_page.jinja2:230
msgid "Rarely (a few times/month)"
-msgstr "Raramente (algunas veces/mes)"
+msgstr ""
-#: templates/new_results_page.jinja2:231 templates/new_results_page.jinja2:955
+#: templates/new_results_page.jinja2:231 templates/new_results_page.jinja2:867
msgid "Rarely (less than once/week)"
-msgstr "Rara vez (menos de una vez/semana)"
+msgstr ""
-#: templates/new_results_page.jinja2:232 templates/new_results_page.jinja2:957
+#: templates/new_results_page.jinja2:232 templates/new_results_page.jinja2:869
msgid "Regularly (3-5 times/week)"
-msgstr "Regularmente (3-5 veces/semana)"
+msgstr ""
-#: templates/new_results_page.jinja2:426
-msgid "All of the Microsetta Initiative"
-msgstr "Toda la Iniciativa Microsetta"
+#: templates/new_results_page.jinja2:319
+msgid "Microbiomes Across the Body"
+msgstr ""
-#: templates/new_results_page.jinja2:436 templates/new_results_page.jinja2:447
-msgid "Multipopulation"
-msgstr "Multipoblación"
+#: templates/new_results_page.jinja2:322
+msgid ""
+"In this map, we've placed your sample relative to all the other samples "
+"we have in Microsetta. As you can see, there are a few different types of"
+" samples people have contributed, and the microbial configurations "
+"present can be REALLY different."
+msgstr ""
+#: templates/new_results_page.jinja2:327 templates/new_results_page.jinja2:351
#: templates/new_results_page.jinja2:458
-msgid "You and the Microbes Around You"
-msgstr "Usted y los microbios que lo rodean"
-
-#: templates/new_results_page.jinja2:521
-msgid "Publication link"
-msgstr "Enlace de la Publicación"
+msgid "Microbiomes Across the World"
+msgstr ""
-#: templates/new_results_page.jinja2:523
+#: templates/new_results_page.jinja2:330 templates/new_results_page.jinja2:354
+msgid ""
+"Researchers have noted large differences in our microbiomes depending on "
+"where we live. The reason WHY is not well understood, but we suspect "
+"factors such as diet or environmental exposures (e.g., plants, what's in "
+"your house, pollution, how often you come in contact with soil, etc) may "
+"be be major factors."
+msgstr ""
+
+#: templates/new_results_page.jinja2:330 templates/new_results_page.jinja2:354
+msgid ""
+"Researchers do not know how much these differences matter! They certainly"
+" may."
+msgstr ""
+
+#: templates/new_results_page.jinja2:335 templates/new_results_page.jinja2:359
+#: templates/new_results_page.jinja2:463
+msgid "Microbiomes Across the Lifespan"
+msgstr ""
+
+#: templates/new_results_page.jinja2:338 templates/new_results_page.jinja2:362
+msgid ""
+"One major factor associated with gut microbiomes is the age of the "
+"individual, emphasized here by life stages."
+msgstr ""
+
+#: templates/new_results_page.jinja2:338 templates/new_results_page.jinja2:362
+msgid ""
+"Interestingly, infants are relatively similar microbially regardless of "
+"where they were born. But, as individuals age, it seems like their "
+"microbiomes reflect regional or population differences."
+msgstr ""
+
+#: templates/new_results_page.jinja2:343 templates/new_results_page.jinja2:449
+msgid "Microbiomes in the Environment"
+msgstr ""
+
+#: templates/new_results_page.jinja2:346
+msgid ""
+"Microbes are EVERYWHERE though! Using these same techniques described "
+"above, we compared your microbiome to samples collected from all over the"
+" surfaces from a brand new hospital."
+msgstr ""
+
+#: templates/new_results_page.jinja2:346
+msgid ""
+"As you can see, skin samples tend to more closely resemble those from the"
+" built environment, which makes sense as skin cells are constantly "
+"shedding from you."
+msgstr ""
+
+#: templates/new_results_page.jinja2:453
+msgid "The Microsetta Initiative"
+msgstr ""
+
+#: templates/new_results_page.jinja2:480
+msgid "Publication link"
+msgstr ""
+
+#: templates/new_results_page.jinja2:482
msgid "Data access (Qiita study"
-msgstr "Acceso de datos (estudio Qiita"
+msgstr ""
-#: templates/new_results_page.jinja2:713
+#: templates/new_results_page.jinja2:625
msgid "Download the spreadsheet"
-msgstr "Descargar la hoja de cálculo"
+msgstr ""
-#: templates/new_results_page.jinja2:720
+#: templates/new_results_page.jinja2:632
msgid ""
-"The broadest classification like Bacteria, Archaea and Eukaryokes (what humans "
-"are!)"
+"The broadest classification like Bacteria, Archaea and Eukaryokes (what "
+"humans are!)"
msgstr ""
-"La clasificación más amplia como las Bacterias, Archaea y Eucariotas (¡lo que "
-"son los humanos!)"
-#: templates/new_results_page.jinja2:723
+#: templates/new_results_page.jinja2:635
msgid ""
-"Within the kingdom Eukarya, this is like the difference between humans and "
-"plants"
+"Within the kingdom Eukarya, this is like the difference between humans "
+"and plants"
msgstr ""
-"Dentro del reino Eukarya, esto es como la diferencia entre los humanos y las "
-"plantas"
-#: templates/new_results_page.jinja2:726
+#: templates/new_results_page.jinja2:638
msgid "Within the phylum Chordata, this is along the lines of humans and fish"
-msgstr "Dentro del filo Chordata, esto es similar a los humanos y los peces"
+msgstr ""
-#: templates/new_results_page.jinja2:729
+#: templates/new_results_page.jinja2:641
msgid ""
-"Within the class Mammalia, this is like the difference between whales and a dogs"
+"Within the class Mammalia, this is like the difference between whales and"
+" a dogs"
msgstr ""
-"Dentro de la clase Mammalia, esto es como la diferencia entre las ballenas y "
-"los perros"
-#: templates/new_results_page.jinja2:732
+#: templates/new_results_page.jinja2:644
msgid "With the order Carnivora are the families for dogs and cats"
-msgstr "Con la orden Carnivora están las familias de perros y gatos"
+msgstr ""
-#: templates/new_results_page.jinja2:735
+#: templates/new_results_page.jinja2:647
msgid ""
-"Within the family Canidae, you would find a genus for foxes and one for wolves"
+"Within the family Canidae, you would find a genus for foxes and one for "
+"wolves"
msgstr ""
-"Dentro de la familia Canidae, encontrará un género para zorros y otro para lobos"
-#: templates/new_results_page.jinja2:922 templates/new_results_page.jinja2:925
-#: templates/new_results_page.jinja2:931 templates/new_results_page.jinja2:939
-#: templates/new_results_page.jinja2:942 templates/new_results_page.jinja2:952
+#: templates/new_results_page.jinja2:834 templates/new_results_page.jinja2:837
+#: templates/new_results_page.jinja2:843 templates/new_results_page.jinja2:851
+#: templates/new_results_page.jinja2:854 templates/new_results_page.jinja2:864
msgid "Unspecified"
-msgstr "Indeterminado"
+msgstr ""
-#: templates/new_results_page.jinja2:932
+#: templates/new_results_page.jinja2:844
msgid "chose not to provide their age"
-msgstr "optó por no proporcionar su edad"
+msgstr ""
-#: templates/new_results_page.jinja2:934
+#: templates/new_results_page.jinja2:846
msgid "is"
-msgstr "es"
+msgstr ""
-#: templates/new_results_page.jinja2:934
+#: templates/new_results_page.jinja2:846
msgid "years old"
-msgstr "años"
+msgstr ""
-#: templates/new_results_page.jinja2:967 templates/new_results_page.jinja2:979
+#: templates/new_results_page.jinja2:879 templates/new_results_page.jinja2:891
msgid "chose not to say how many sweets they eat"
-msgstr "optó por no decir cuántos dulces comen"
+msgstr ""
-#: templates/new_results_page.jinja2:969
+#: templates/new_results_page.jinja2:881
msgid "eats sweets"
-msgstr "come dulces"
+msgstr ""
-#: templates/new_results_page.jinja2:973
+#: templates/new_results_page.jinja2:885
msgid "eats more sugary sweets than you"
-msgstr "come más dulces que usted"
+msgstr ""
-#: templates/new_results_page.jinja2:975
+#: templates/new_results_page.jinja2:887
msgid "eats fewer sugary sweets than you"
-msgstr "come menos dulces que usted"
+msgstr ""
-#: templates/new_results_page.jinja2:977
+#: templates/new_results_page.jinja2:889
msgid "eats about the same number of sugary sweets as you"
-msgstr "come el mismo número de dulces que usted"
+msgstr ""
-#: templates/new_results_page.jinja2:1217
+#: templates/new_results_page.jinja2:1129
msgid "Rank Distributions"
-msgstr "Distribucion por Rango"
+msgstr ""
-#: templates/new_results_page.jinja2:1235
+#: templates/new_results_page.jinja2:1147
+#, fuzzy
msgid "My Sample"
-msgstr "Mi Muestra"
+msgstr "sitio_muestra"
-#: templates/new_results_page.jinja2:1241
+#: templates/new_results_page.jinja2:1153
msgid "How abundant are my microbes compared everyone in Microsetta?"
msgstr ""
-"¿Qué tan abundantes son mis microbios en comparación con los demás en "
-"Microsetta?"
-#: templates/new_results_page.jinja2:1244
+#: templates/new_results_page.jinja2:1156
msgid "Common types of microbes"
-msgstr "Tipos comunes de microbios"
+msgstr ""
-#: templates/new_results_page.jinja2:1250
+#: templates/new_results_page.jinja2:1162
msgid "Least Abundant"
-msgstr "Menos Abundante"
+msgstr ""
-#: templates/new_results_page.jinja2:1250
+#: templates/new_results_page.jinja2:1162
msgid "Most Abundant"
-msgstr "Más abundante"
+msgstr ""
-#: templates/new_results_page.jinja2:1268
+#: templates/new_results_page.jinja2:1192
msgid ""
-"whole genome sequencing, a technique that produces a large number of small DNA "
-"sequences from all of the microbial genomes in your sample. With enough "
-"sequences you can even see the variation that exists between microbes of the "
-"same species."
+"whole genome sequencing, a technique that produces a large number of "
+"small DNA sequences from all of the microbial genomes in your sample. "
+"With enough sequences you can even see the variation that exists between "
+"microbes of the same species."
msgstr ""
-"secuenciación del genoma completo, una técnica que produce una gran cantidad de "
-"pequeñas secuencias de ADN a partir de todos los genomas microbianos de su "
-"muestra. Con suficientes secuencias usted puede ver la variación que existe "
-"entre microbios de una misma especie."
-#: templates/new_results_page.jinja2:1271
+#: templates/new_results_page.jinja2:1195
msgid ""
-"16S. This technique produces DNA sequences from a specific variable region "
-"(V4) within a microbial gene (the 16S small subunit ribosomal gene). DNA "
-"sequences from this region of this gene can be used like a microbial barcode, "
-"providing researchers evidence of the types of microbes that may be present in "
-"your sample."
+"16S. This technique produces DNA sequences from a specific variable "
+"region (V4) within a microbial gene (the 16S small subunit ribosomal "
+"gene). DNA sequences from this region of this gene can be used like a "
+"microbial barcode, providing researchers evidence of the types of "
+"microbes that may be present in your sample."
msgstr ""
-"16S. Esta técnica produce secuencias de ADN a partir de una región variable "
-"específica (V4) dentro de un gen microbiano (el gen ribosomal de la subunidad "
-"menor 16S). Las secuencias de ADN de la región de este gen se pueden usar como "
-"un código de barras microbiano, proporcionando a los científicos evidencia de "
-"los tipos de microbios que pueden estar presentes en su muestra."
-#: templates/new_results_page.jinja2:1396 templates/sample.jinja2:149
-#: templates/sample_results.jinja2:128
+#: templates/new_results_page.jinja2:1319 templates/sample_results.jinja2:128
+#, fuzzy
msgid "Source"
-msgstr "Fuente"
+msgstr "tipo_muestra"
-#: templates/new_results_page.jinja2:1397 templates/sample_results.jinja2:129
-#: templates/source.jinja2:171
+#: templates/new_results_page.jinja2:1320 templates/sample_results.jinja2:129
msgid "Results"
-msgstr "Resultados"
+msgstr ""
-#: templates/new_results_page.jinja2:1406 templates/new_results_page.jinja2:1420
+#: templates/new_results_page.jinja2:1329
+#: templates/new_results_page.jinja2:1343
msgid "How do you compare?"
-msgstr "¿Cómo se compara?"
+msgstr ""
-#: templates/new_results_page.jinja2:1407 templates/new_results_page.jinja2:1432
-#: templates/new_results_page.jinja2:1434 templates/new_results_page.jinja2:1465
+#: templates/new_results_page.jinja2:1330
+#: templates/new_results_page.jinja2:1355
+#: templates/new_results_page.jinja2:1357
+#: templates/new_results_page.jinja2:1388
msgid "Diversity"
-msgstr "Diversidad"
+msgstr ""
-#: templates/new_results_page.jinja2:1408 templates/new_results_page.jinja2:1440
-#: templates/new_results_page.jinja2:1442 templates/new_results_page.jinja2:1534
+#: templates/new_results_page.jinja2:1331
+#: templates/new_results_page.jinja2:1363
+#: templates/new_results_page.jinja2:1365
+#: templates/new_results_page.jinja2:1457
msgid "Similarity"
-msgstr "Semejanza"
+msgstr ""
-#: templates/new_results_page.jinja2:1409 templates/new_results_page.jinja2:1448
-#: templates/new_results_page.jinja2:1450
+#: templates/new_results_page.jinja2:1332
+#: templates/new_results_page.jinja2:1371
+#: templates/new_results_page.jinja2:1373
msgid "Your Inner Zoo"
-msgstr "Su Zoológico Interior"
+msgstr ""
-#: templates/new_results_page.jinja2:1410 templates/new_results_page.jinja2:1456
-#: templates/new_results_page.jinja2:1458 templates/new_results_page.jinja2:1763
+#: templates/new_results_page.jinja2:1333
+#: templates/new_results_page.jinja2:1379
+#: templates/new_results_page.jinja2:1381
+#: templates/new_results_page.jinja2:1670
msgid "Microbiome Map"
-msgstr "Mapa del Microbioma"
+msgstr ""
-#: templates/new_results_page.jinja2:1411 templates/new_results_page.jinja2:1714
+#: templates/new_results_page.jinja2:1334
+#: templates/new_results_page.jinja2:1640
msgid "How can I learn more?"
-msgstr "¿Cómo puedo aprender más?"
+msgstr ""
-#: templates/new_results_page.jinja2:1424
+#: templates/new_results_page.jinja2:1347
msgid ""
-"Your microbiome is a rainforest of diverse microbes dominated by microbes - "
-"some 40 trillion bacteria, weighing around 1 lb, live all over and in your "
-"body. The diversity of your microbiome, how similar it is to other peoples', "
-"and the types of bacteria living inside you have all been linked to health, "
-"disease and lifestyle traits in numerous studies."
+"Your microbiome is a rainforest of diverse microbes dominated by microbes"
+" - some 40 trillion bacteria, weighing around 1 lb, live all over and in "
+"your body. The diversity of your microbiome, how similar it is to other "
+"peoples', and the types of bacteria living inside you have all been "
+"linked to health, disease and lifestyle traits in numerous studies."
msgstr ""
-"Su microbioma es una selva tropical de diversos microbios dominados por "
-"microbios - aproximadamente 40 trillones de bacterias, que pesan alrededor de 1 "
-"libra, viven sobre y en todo su cuerpo. La diversidad de su microbioma, qué tan "
-"similar es al de otras personas y los tipos de bacterias que viven dentro de "
-"usted se han relacionado con la salud, la enfermedad y el estilo de vida en "
-"numerosos estudios."
-#: templates/new_results_page.jinja2:1428
+#: templates/new_results_page.jinja2:1351
msgid ""
-"Scientists often use many different approaches to see how your microbiome "
-"differs. We've analyzed your microbiome sample using standard microbiome "
-"research tools, and the results are broken down below in a few different "
-"categories"
+"Scientists often use many different approaches to see how your microbiome"
+" differs. We've analyzed your microbiome sample using standard microbiome"
+" research tools, and the results are broken down below in a few different"
+" categories"
msgstr ""
-"Los científicos regularmente usan diferentes criterios para ver cómo difiere su "
-"microbioma. Nosotros hemos analizado su muestra de microbioma utilizando "
-"herramientas estándar para la investigación del microbioma, y los resultados se "
-"desglosan a continuación en diferentes categorías"
-#: templates/new_results_page.jinja2:1434
+#: templates/new_results_page.jinja2:1357
msgid "How many kinds of microbes were in your sample? Check out your"
-msgstr "¿Cuántos tipos de microbios había en su muestra? Revise su"
+msgstr ""
-#: templates/new_results_page.jinja2:1442
+#: templates/new_results_page.jinja2:1365
msgid ""
-"What kinds of people have microbiomes like yours? Check out your microbiome"
+"What kinds of people have microbiomes like yours? Check out your "
+"microbiome"
msgstr ""
-"¿Qué tipo de personas tienen microbiomas como el suyo? Revise su microbioma"
-#: templates/new_results_page.jinja2:1450
+#: templates/new_results_page.jinja2:1373
msgid "What particular kinds of microbes are in your sample? Wander through"
-msgstr "¿Qué tipo de microbios particulares hay en su muestra? Explore"
+msgstr ""
-#: templates/new_results_page.jinja2:1458
+#: templates/new_results_page.jinja2:1381
msgid "Where are you on the"
-msgstr "¿Dónde está usted en el"
+msgstr ""
-#: templates/new_results_page.jinja2:1468
+#: templates/new_results_page.jinja2:1391
msgid ""
"There are anywhere from hundreds of millions to hundreds of billions of "
-"different types of bacteria living on planet earth. This dwarfs the meager 2 "
-"million different kinds of animals and plants that you can see with your eyes. "
-"The average"
-"span> American has 93 different types of microbes in a stool "
-"sample, which is lower than we find in people living a more hunter-gatherer "
-"lifestyle, like the 132 we find in samples from the Smits et al. Science 2017\" data-html=\"true"
-"\">Hadza ."
-msgstr ""
-"Hay entre cientos de millones y cientos de miles de millones de distintos tipos "
-"de bacterias que viven en el planeta tierra. Esto empequeñece a los escasos 2 "
-"millones de distintos tipos de animales y plantas que puede ver con sus ojos. "
-"El promedio de "
-"Estadounidenses tienen 93 diferentes tipos de microbios en "
-"una muestra de heces, el cual es inferior al que encontramos en personas que "
-"viven un estilo de vida más cazador-recolector, como los 132"
-"strong> que encontramos en muestras de Smits et al. Science 2017” data-html=“true”>Hadza ."
-
-#: templates/new_results_page.jinja2:1472
+"different types of bacteria living on planet earth. This dwarfs the "
+"meager 2 million different kinds of animals and plants that you can see "
+"with your eyes. The average American has FILLIN different types of microbes in a"
+" stool sample, which is lower than we find in people living a more "
+"hunter-gatherer lifestyle, like the FILLIN we find in samples from the Smits et al. Science 2017\" data-"
+"html=\"true\">Hadza ."
+msgstr ""
+
+#: templates/new_results_page.jinja2:1395
msgid "Number of different microbes found in your sample"
-msgstr "Número de microbios diferentes encontrados en su muestra"
+msgstr ""
-#: templates/new_results_page.jinja2:1479
+#: templates/new_results_page.jinja2:1402
msgid ""
-"When we calculated the diversity of groups for samples in our database, we "
-"found diversity is associated with how you live your life. Here, we summarized "
-"the average microbiome diversity for a few of the questionnaire responses, "
-"specifically people who eat more than 30 plants a week, exercise regularly, "
-"drink water regularly, or sleep more than 6 hours a night."
+"When we calculated the diversity of groups for samples in our database, "
+"we found diversity is associated with how you live your life. Here, we "
+"summarized the average microbiome diversity for a few of the "
+"questionnaire responses, specifically people who eat more than 30 plants "
+"a week, exercise regularly, drink water regularly, or sleep more than 6 "
+"hours a night."
msgstr ""
-"Cuando nosotros calculamos la diversidad de grupos para muestras en nuestra "
-"base de datos, encontramos que la diversidad está asociada con la forma en que "
-"vive su vida. Aquí, nosotros resumimos la diversidad de microbiomas promedio "
-"para algunas de las respuestas del cuestionario, específicamente las personas "
-"que consumen más de 30 plantas a la semana, hacen ejercicio con regularidad, "
-"beben agua con regularidad o duermen más de 6 horas por noche."
-#: templates/new_results_page.jinja2:1487
+#: templates/new_results_page.jinja2:1410
msgid "Eat more than 30 plants a week"
-msgstr "Comen más de 30 plantas a la semana"
+msgstr ""
-#: templates/new_results_page.jinja2:1490 templates/new_results_page.jinja2:1501
-#: templates/new_results_page.jinja2:1514 templates/new_results_page.jinja2:1525
+#: templates/new_results_page.jinja2:1413
+#: templates/new_results_page.jinja2:1424
+#: templates/new_results_page.jinja2:1437
+#: templates/new_results_page.jinja2:1448
msgid "unique microbial features"
-msgstr "características microbianas únicas"
+msgstr ""
-#: templates/new_results_page.jinja2:1498
+#: templates/new_results_page.jinja2:1421
msgid "Exercise regularly"
-msgstr "Hacen ejercicio regularmente"
+msgstr ""
-#: templates/new_results_page.jinja2:1511
+#: templates/new_results_page.jinja2:1434
msgid "Drink 1L or water regularly"
-msgstr "Beben 1L de agua o agua regularmente"
+msgstr ""
-#: templates/new_results_page.jinja2:1522
+#: templates/new_results_page.jinja2:1445
msgid "Sleep more than 6 hours per night"
-msgstr "Duermen más de 6 horas por noche"
-
-#: templates/new_results_page.jinja2:1537
-msgid ""
-"One of the powerful ways microbiome scientists analyze data is by looking at "
-"similarities among samples. To do this, we compute a a "
-"lot of ways to form a distance. One way is to base the distance off of the "
-"fraction of microbes in common in your sample with each other sample. We "
-"typically share few of the exact same microbes in common with other people "
-"though which is problematic when comparing exact microbes. To account for this, "
-"researchers often take the evolutionary relationships among microbes into "
-"account when forming these distances.\">distance from your sample to all "
-"other samples based on the microbes observed."
-msgstr ""
-"Una forma eficaz en que los científicos analizan los datos del microbioma es "
-"observando las similitudes entre las muestras. Para hacer esto, nosotros "
-"calculamos una a lot of ways to form a distance. One "
-"way is to base the distance off of the fraction of microbes in common in your "
+msgstr ""
+
+#: templates/new_results_page.jinja2:1460
+msgid ""
+"One of the powerful ways microbiome scientists analyze data is by looking"
+" at similarities among samples. To do this, we compute a a lot of ways to form a distance. One way is to "
+"base the distance off of the fraction of microbes in common in your "
"sample with each other sample. We typically share few of the exact same "
-"microbes in common with other people though which is problematic when comparing "
-"exact microbes. To account for this, researchers often take the evolutionary "
-"relationships among microbes into account when forming these "
-"distances.”>distancia de su muestra a todas las demás muestras basada en "
-"los microbios observados."
-
-#: templates/new_results_page.jinja2:1541
-msgid ""
-"Here, we your sample to all the others in our database, and examined the 100 "
-"most similar samples to yours. These people answered their questionnaires in "
-"the following way; the response is colored in light green if it matches your response and brown if your response differed."
-msgstr ""
-"Aquí, nosotros comparamos su muestra con las demás muestras en nuestra base de "
-"datos, y examinamos las 100 muestras más similares a la suya. Estas personas "
-"respondieron sus cuestionarios de la siguiente manera; la respuesta esta en "
-"color verde si coincide con su "
-"respuesta y en café si su "
-"respuesta es diferente."
-
-#: templates/new_results_page.jinja2:1550
+"microbes in common with other people though which is problematic when "
+"comparing exact microbes. To account for this, researchers often take the"
+" evolutionary relationships among microbes into account when forming "
+"these distances.\">distance from your sample to all other samples "
+"based on the microbes observed."
+msgstr ""
+
+#: templates/new_results_page.jinja2:1464
+msgid ""
+"Here, we your sample to all the others in our database, and examined the "
+"100 most similar samples to yours. These people answered their "
+"questionnaires in the following way; the response is colored in light green if it matches your"
+" response and brown "
+" if your response differed."
+msgstr ""
+
+#: templates/new_results_page.jinja2:1473
msgid "Diet"
-msgstr "Dieta"
+msgstr ""
-#: templates/new_results_page.jinja2:1560
+#: templates/new_results_page.jinja2:1483
msgid "of people with a microbiome like yours eat"
-msgstr "de las personas con un microbioma como el suyo comen"
+msgstr ""
-#: templates/new_results_page.jinja2:1562
+#: templates/new_results_page.jinja2:1485
msgid "plants per week"
-msgstr "plantas por semana"
+msgstr ""
-#: templates/new_results_page.jinja2:1571
+#: templates/new_results_page.jinja2:1494
msgid "of people with a microbiome like yours had a similar diet"
-msgstr "de las personas con un microbioma como el suyo tenían una dieta similar"
+msgstr ""
-#: templates/new_results_page.jinja2:1578
+#: templates/new_results_page.jinja2:1501
msgid "Supplements"
-msgstr "Suplementos"
+msgstr ""
-#: templates/new_results_page.jinja2:1588
+#: templates/new_results_page.jinja2:1511
msgid "of people with a microbiome like yours"
-msgstr "de las personas con un microbioma como el suyo"
+msgstr ""
-#: templates/new_results_page.jinja2:1590
+#: templates/new_results_page.jinja2:1513
msgid "take probiotics"
-msgstr "toman probióticos"
+msgstr ""
-#: templates/new_results_page.jinja2:1599
+#: templates/new_results_page.jinja2:1522
msgid "of people with a microbiome like yours take vitamins"
-msgstr "de las personas con un microbioma como el suyo toman vitaminas"
+msgstr ""
-#: templates/new_results_page.jinja2:1606
+#: templates/new_results_page.jinja2:1529
msgid "Activity"
-msgstr "Actividad"
+msgstr ""
-#: templates/new_results_page.jinja2:1616
+#: templates/new_results_page.jinja2:1539
msgid "of people with a microbiome like yours exercise"
-msgstr "de las personas con un microbioma como el suyo hacen ejercicio"
+msgstr ""
-#: templates/new_results_page.jinja2:1626
+#: templates/new_results_page.jinja2:1549
msgid "of people with a microbiome like yours get"
-msgstr "de las personas con un microbioma como el suyo toman"
+msgstr ""
-#: templates/new_results_page.jinja2:1628
+#: templates/new_results_page.jinja2:1551
msgid "of sleep at night"
-msgstr "de sueño por la noche"
+msgstr ""
-#: templates/new_results_page.jinja2:1635
+#: templates/new_results_page.jinja2:1558
msgid "Demographic"
-msgstr "Demográfico"
+msgstr ""
-#: templates/new_results_page.jinja2:1645
+#: templates/new_results_page.jinja2:1568
msgid "of people with a microbiome like yours were the same age as you"
msgstr ""
-"de las personas con un microbioma como el suyo tenían la misma edad que usted"
-#: templates/new_results_page.jinja2:1654
+#: templates/new_results_page.jinja2:1577
msgid "of people with a microbiome like yours were the same gender"
-msgstr "de las personas con un microbioma como el suyo eran del mismo sexo"
+msgstr ""
-#: templates/new_results_page.jinja2:1663
+#: templates/new_results_page.jinja2:1586
msgid "Your Inner Zoo (aka What's in your sample?)"
-msgstr "Su Zoológico Interno (¿Qué hay en su muestra?)"
+msgstr ""
-#: templates/new_results_page.jinja2:1666
+#: templates/new_results_page.jinja2:1589
msgid ""
-"Below you will find a table of all of the different microbes we found in your "
-"sample, and their proportions."
+"Below you will find a table of all of the different microbes we found in "
+"your sample, and their proportions."
msgstr ""
-"A continuación encontrará una tabla de todos los distintos microbios que "
-"encontramos en su muestra y sus proporciones."
-#: templates/new_results_page.jinja2:1670
+#: templates/new_results_page.jinja2:1593
msgid ""
-"Microbes sometimes have difficult names to pronounce. Some of the names are "
-"Latin, Greek, Norse, Chinese and more. If you'd like to know more, a "
-"pronounciation guide can be found here ."
+"Microbes sometimes have difficult names to pronounce. Some of the names "
+"are Latin, Greek, Norse, Chinese and more. If you'd like to know more, a "
+"pronounciation guide can be found here ."
msgstr ""
-"Los microbios a veces tienen nombres difíciles de pronunciar. Algunos de los "
-"nombres están en latín, griego, nórdico, chino entre otros. Si desea conocer "
-"más, puede encontrar una guía de pronunciación aquí ."
-#: templates/new_results_page.jinja2:1674
+#: templates/new_results_page.jinja2:1597
msgid ""
"Please mouse over the header to learn more about how to interpret these "
-"taxonomic ranks (e.g., Kingdom) using examples of non-microbial organisms."
+"taxonomic ranks (e.g., Kingdom) using examples of non-microbial "
+"organisms."
msgstr ""
-"Pase el cursor del mouse sobre el encabezado para obtener más información sobre "
-"cómo interpretar estos rangos taxonómicos (por ejemplo, Reino) usando ejemplos "
-"de organismos no microbianos."
-#: templates/new_results_page.jinja2:1681
+#: templates/new_results_page.jinja2:1604
#, python-format
msgid "%% of Sample"
-msgstr "%% de la muestra"
+msgstr ""
-#: templates/new_results_page.jinja2:1682 templates/sample_results.jinja2:148
+#: templates/new_results_page.jinja2:1605 templates/sample_results.jinja2:148
msgid "Kingdom"
-msgstr "Reino"
+msgstr ""
-#: templates/new_results_page.jinja2:1683 templates/sample_results.jinja2:149
+#: templates/new_results_page.jinja2:1606 templates/sample_results.jinja2:149
msgid "Phylum"
-msgstr "Filo"
+msgstr ""
-#: templates/new_results_page.jinja2:1684 templates/sample_results.jinja2:150
+#: templates/new_results_page.jinja2:1607 templates/sample_results.jinja2:150
msgid "Class"
-msgstr "Clase"
+msgstr ""
-#: templates/new_results_page.jinja2:1685 templates/sample_results.jinja2:151
+#: templates/new_results_page.jinja2:1608 templates/sample_results.jinja2:151
msgid "Order"
-msgstr "Orden"
+msgstr ""
-#: templates/new_results_page.jinja2:1686 templates/sample_results.jinja2:152
+#: templates/new_results_page.jinja2:1609 templates/sample_results.jinja2:152
msgid "Family"
-msgstr "Familia"
+msgstr ""
-#: templates/new_results_page.jinja2:1687 templates/sample_results.jinja2:153
+#: templates/new_results_page.jinja2:1610 templates/sample_results.jinja2:153
+#, fuzzy
msgid "Genus"
-msgstr "Género"
+msgstr "es_es"
+
+#: templates/new_results_page.jinja2:1618
+msgid ""
+"No evidence presented here indicates what we've observed is clinically "
+"dangerous"
+msgstr ""
-#: templates/new_results_page.jinja2:1698
+#: templates/new_results_page.jinja2:1624
msgid ""
-"In the plot below, you can see the most commonly observed microbial genera in "
-"the dataset, and distribution of ranks of those genera. For example,"
+"In the plot below, you can see the most commonly observed microbial "
+"genera in the dataset, and distribution of ranks of those genera. For "
+"example,"
msgstr ""
-"En la siguiente gráfica, usted podrá ver los géneros microbianos observados con "
-"mayor frecuencia en el conjunto de datos y el rango de distribución de esos "
-"géneros. Por ejemplo,"
-#: templates/new_results_page.jinja2:1700
+#: templates/new_results_page.jinja2:1626
msgid "typically has the highest relative abundance of samples in the dataset."
msgstr ""
-"normalmente tiene la mayor abundancia relativa de muestras en el conjunto de "
-"datos."
-
-#: templates/new_results_page.jinja2:1717
-msgid ""
-"Microbiome analysis is a burgeoning new field, and the information displayed "
-"here is only an example of what is becoming possible thanks to the data that "
-"you helped collect."
-msgstr ""
-"El análisis del microbioma es un campo nuevo, y la información que se muestra "
-"aquí es solo un ejemplo de lo que se está logrando gracias a los datos que "
-"usted ayudó a recopilar."
-
-#: templates/new_results_page.jinja2:1721
-msgid ""
-"So if you want to learn more, you can even take a look at the dataset for "
-"yourself!"
-msgstr "Si desea aprender más, ¡usted puede revisar el conjunto de datos!"
-
-#: templates/new_results_page.jinja2:1725
-msgid ""
-"For your sample, we performed a technique called amplicon sequencing where we "
-"examine pieces of DNA corresponding to a particular gene. Specifically, we "
-"sequenced the fourth variable region (V4) of the 16S rRNA small subunit "
-"ribosomal gene. DNA sequences from this region of this gene can be used like a "
-"microbial barcode, providing researchers evidence of the types of microbes that "
-"may be present in your sample."
-msgstr ""
-"Para su muestra, realizamos una técnica llamada secuenciación de amplicón en la "
-"que examinamos fragmentos de ADN correspondientes a un gen en particular. "
-"Específicamente, secuenciamos la cuarta región variable (V4) del gen ribosomal "
-"de la subunidad menor 16S rRNA. Las secuencias de ADN de la región de este gen "
-"se pueden usar como un código de barras microbiano, proporcionando a los "
-"investigadores evidencia de los tipos de microbios que pueden estar presentes "
-"en su muestra."
-
-#: templates/new_results_page.jinja2:1729
-msgid ""
-"There are many resources for microbiome information available online. If you'd "
-"like to learn more, we recommend the American Society for Microbiology , microBEnet , the Canadian Probiotics Chart , and the American Gastroenterological Association ."
-msgstr ""
-"Hay muchos recursos de información sobre el microbioma disponibles en línea. Si "
-"desea obtener más información, le recomendamos el American Society for "
-"Microbiology , microBEnet , the Canadian Probiotics Chart , and the American Gastroenterological Association ."
-
-#: templates/new_results_page.jinja2:1732
+
+#: templates/new_results_page.jinja2:1643
+msgid ""
+"Microbiome analysis is a burgeoning new field, and the information "
+"displayed here is only an example of what is becoming possible thanks to "
+"the data that you helped collect."
+msgstr ""
+
+#: templates/new_results_page.jinja2:1647
+msgid ""
+"So if you want to learn more, you can even take a look at the dataset for"
+" yourself!"
+msgstr ""
+
+#: templates/new_results_page.jinja2:1651
+msgid ""
+"For your sample, we performed a technique called amplicon sequencing "
+"where we examine pieces of DNA corresponding to a particular gene. "
+"Specifically, we sequenced the fourth variable region (V4) of the 16S "
+"rRNA small subunit ribosomal gene. DNA sequences from this region of this"
+" gene can be used like a microbial barcode, providing researchers "
+"evidence of the types of microbes that may be present in your sample."
+msgstr ""
+
+#: templates/new_results_page.jinja2:1655
+msgid ""
+"There are many resources for microbiome information available online. If "
+"you'd like to learn more, we recommend the American Society for "
+"Microbiology , microBEnet , the Canadian Probiotics Chart , "
+"and the American Gastroenterological "
+"Association ."
+msgstr ""
+
+#: templates/new_results_page.jinja2:1658
msgid "Datasets used in your results report"
-msgstr "Conjunto de datos usados en el reporte de sus resultados"
+msgstr ""
-#: templates/new_results_page.jinja2:1734
+#: templates/new_results_page.jinja2:1660
msgid ""
-"The results shown in the Microbiome Maps portion of the report relied on data "
-"from many different publically accessible microbiome datasets. These different "
-"datasets, and links to them, are listed below."
+"The results shown in the Microbiome Maps portion of the report relied on "
+"data from many different publically accessible microbiome datasets. These"
+" different datasets, and links to them, are listed below."
msgstr ""
-"Los resultados demostrados en la parte del reporte del mapa del microbioma se "
-"basaron en información de varios conjuntos de datos de microbioma con acceso "
-"público. Estos diferentes conjuntos de datos, y los enlaces a ellos, se "
-"muestran a continuación."
-#: templates/new_results_page.jinja2:1737
-msgid "The Microsetta Initiative"
-msgstr "The Microsetta Initiative"
+#: templates/new_results_page.jinja2:1673
+msgid ""
+"Microbiome maps turn the similarities and differences among microbiomes "
+"into a two-dimensional picture. Each dot is a whole microbiome, and dots "
+"close to yours are more similar microbiomes."
+msgstr ""
-#: templates/new_results_page.jinja2:1742 templates/new_results_page.jinja2:1795
-msgid "Microbiomes Across the World"
-msgstr "Microbiomas en todo el mundo"
+#: templates/new_results_page.jinja2:1677
+msgid ""
+"How are these maps "
+"produced? "
+msgstr ""
-#: templates/new_results_page.jinja2:1747 templates/new_results_page.jinja2:1819
-msgid "Microbiomes Across the Lifespan"
-msgstr "Microbiomas a lo largo de la vida"
+#: templates/nutrition.jinja2:2 templates/sitebase.jinja2:135
+#: templates/sitebase.jinja2:162 templates/sitebase.jinja2:164
+msgid "My Nutrition"
+msgstr ""
-#: templates/new_results_page.jinja2:1752 templates/new_results_page.jinja2:1842
-msgid "Microbiomes in the Environment"
-msgstr "Microbiomas en el Medio Ambiente"
-
-#: templates/new_results_page.jinja2:1766
-msgid ""
-"Microbiome maps turn the similarities and differences among microbiomes into a "
-"two-dimensional picture. Each dot is a whole microbiome, and dots close to "
-"yours are more similar microbiomes."
-msgstr ""
-"Los mapas de microbiomas convierten las similitudes y las diferencias entre los "
-"microbiomas en una imagen bidimensional. Cada punto es un microbioma completo, "
-"y los puntos cercanos al suyo son microbiomas más similares."
-
-#: templates/new_results_page.jinja2:1770
-msgid ""
-"How are "
-"these maps produced? "
-msgstr ""
-"¿Cómo se producen estos "
-"mapas? "
-
-#: templates/new_results_page.jinja2:1775
-msgid "Microbiomes Across the Body"
-msgstr "Microbiomas por todo el cuerpo"
+#: templates/nutrition.jinja2:66
+#, fuzzy
+msgid ""
+"Your registration code is not in our system or has already been used. "
+"Please try again."
+msgstr ""
+"El ID del kit proporcionado no es válido o ya ha sido utilizado; por "
+"favor vuelva a comprobar su información."
+
+#: templates/nutrition.jinja2:96 templates/nutrition.jinja2:113
+#: templates/reports.jinja2:83
+msgid "My FFQs"
+msgstr ""
-#: templates/new_results_page.jinja2:1786
+#: templates/nutrition.jinja2:102
msgid ""
-"In this map, we've placed your sample relative to all the other samples we have "
-"in Microsetta. As you can see, there are a few different types of samples "
-"people have contributed, and the microbial configurations present can be REALLY "
-"different."
+"Currently, \"My FFQs\" is unavailable in your country or region. We "
+"apologize for any inconvenience."
+msgstr ""
+
+#: templates/nutrition.jinja2:119
+msgid "Have an FFQ Code"
+msgstr ""
+
+#: templates/nutrition.jinja2:121
+msgid "Get an FFQ Code"
msgstr ""
-"En este mapa, hemos colocado su muestra en relación con todas las demás "
-"muestras que tenemos en Microsetta. Como puede ver, hay diferentes tipos de "
-"muestras que las personas han contribuido, y las configuraciones microbianas "
-"presentes pueden ser REALMENTE diferentes."
-#: templates/new_results_page.jinja2:1806
+#: templates/nutrition.jinja2:129
msgid ""
-"Researchers have noted large differences in our microbiomes depending on where "
-"we live. The reason WHY is not well understood, but we suspect factors such as "
-"diet or environmental exposures (e.g., plants, what's in your house, pollution, "
-"how often you come in contact with soil, etc) may be be major factors."
+"This Food Frequency Questionnaire (FFQ) will take approximately 30 "
+"minutes. By completing it, you'll receive the following report"
msgstr ""
-"Los investigadores han notado grandes diferencias en nuestros microbiomas según "
-"el lugar donde vivimos. No se conocen bien las razones de ello, pero "
-"sospechamos que los factores como la dieta o la exposición ambiental (por "
-"ejemplo, las plantas, lo que hay en su casa, la contaminación, la frecuencia "
-"con la que entra en contacto con el suelo, etc.) pueden ser factores "
-"importantes."
-#: templates/new_results_page.jinja2:1810
+#: templates/nutrition.jinja2:130
msgid ""
-"Researchers do not know how much these differences matter! They certainly may."
-msgstr "¡Los investigadores no saben cuánto importan estas diferencias!"
+"Personal diet and nutrition summary, listing the highest contributing "
+"food sources of nutrients you should try to limit and your top food "
+"sources with key nutrients that promote good health."
+msgstr ""
-#: templates/new_results_page.jinja2:1830
+#: templates/nutrition.jinja2:135
msgid ""
-"One major factor associated with gut microbiomes is the age of the individual, "
-"emphasized here by life stages."
+"You must press the \"Finish\" button on the final page of the FFQ to "
+"register it as completed. You can complete the FFQ in stages by clicking "
+"\"Continue FFQ\" and selecting the \"Resume\" button to return to where "
+"you left off."
msgstr ""
-"Un factor importante asociado con el microbioma intestinal es la edad del "
-"individuo, enfatizada aquí por las diferentes etapas de la vida."
-#: templates/new_results_page.jinja2:1834
+#: templates/nutrition.jinja2:146 templates/reports.jinja2:93
+msgid "Download Top Food Report"
+msgstr ""
+
+#: templates/nutrition.jinja2:149 templates/nutrition.jinja2:151
+#: templates/reports.jinja2:96 templates/reports.jinja2:98
+msgid "Continue FFQ"
+msgstr ""
+
+#: templates/nutrition.jinja2:164
+msgid "Registration Code"
+msgstr ""
+
+#: templates/nutrition.jinja2:170
+msgid "Register FFQ"
+msgstr ""
+
+#: templates/opt_out.jinja2:2 templates/opt_out.jinja2:37
+#: templates/opt_out_confirm.jinja2:2
+msgid "Opt Out"
+msgstr ""
+
+#: templates/opt_out.jinja2:28
msgid ""
-"Interestingly, infants are relatively similar microbially regardless of where "
-"they were born. But, as individuals age, it seems like their microbiomes "
-"reflect regional or population differences."
+"Sorry, we could not complete the request. Please email microsetta@ucsd.edu with the "
+"email address you signed up with so we can remove you from our list."
msgstr ""
-"Curiosamente, los bebés son relativamente similares desde el punto de vista "
-"microbiano, independientemente de dónde hayan nacido. Pero, a medida que las "
-"personas envejecen, parece que sus microbiomas reflejan diferencias regionales "
-"o de población."
-#: templates/new_results_page.jinja2:1853
+#: templates/opt_out.jinja2:36
msgid ""
-"Microbes are EVERYWHERE though! Using these same techniques described above, we "
-"compared your microbiome to samples collected from all over the surfaces from a "
-"brand new hospital."
+"We're sorry you are no longer interested in participating in The Human "
+"Diets & Microbiome Initiative (THDMI). Please click the \"opt out\" "
+"button below to confirm that you do not wish to take part."
msgstr ""
-"¡Los microbios están EN TODAS PARTES! Usando las técnicas descritas "
-"anteriormente, nosotros comparamos su microbioma con muestras recolectadas de "
-"todas las superficies de un hospital nuevo."
-#: templates/new_results_page.jinja2:1857
+#: templates/opt_out_confirm.jinja2:27
msgid ""
-"As you can see, skin samples tend to more closely resemble those from \"the "
-"built environment\", which makes sense as skin cells are constantly shedding "
-"from you."
+"Thank you for letting us know. You will no longer be part of this "
+"research study."
msgstr ""
-"Como puede ver, las muestras de la piel tienden a parecerse más a las del "
-"“entorno construido”, lo que tiene sentido ya que las células de la piel se "
-"desprenden constantemente de usted."
#: templates/post_sample_questionnaire.jinja2:2
msgid "Optional Sample Surveys"
-msgstr "Cuestionario de muestra opcional"
+msgstr ""
#: templates/post_sample_questionnaire.jinja2:16
msgid "Your diet can provide researchers valuable information"
-msgstr "Su dieta puede proporcionar valiosa información a los investigadores"
+msgstr ""
#: templates/post_sample_questionnaire.jinja2:19
msgid "Would you like to take our additional survey, the"
-msgstr "Le gustaría contestar un cuestionario adicional, el"
+msgstr ""
-#: templates/post_sample_questionnaire.jinja2:19 templates/source.jinja2:201
+#: templates/post_sample_questionnaire.jinja2:19
+#, fuzzy
msgid "Food Frequency Questionnaire"
-msgstr "Cuestionario de Frecuencia de Consumo de Alimentos"
+msgstr "Cuestionario de Frecuencia de Consumo de Alimentos Vioscreen"
#: templates/post_sample_questionnaire.jinja2:19
msgid "FFQ"
-msgstr "FFQ"
+msgstr ""
#: templates/post_sample_questionnaire.jinja2:19
msgid ""
-"By completing the questionnaire, you can enhance information about your sample, "
-"which will power more insightful research!"
+"By completing the questionnaire, you can enhance information about your "
+"sample, which will power more insightful research!"
msgstr ""
-"Al completar el cuestionario, usted podrá enriquecer la información sobre su "
-"muestra, lo que impulsará una investigación más detallada!"
#: templates/post_sample_questionnaire.jinja2:20
msgid "Note"
-msgstr "Tenga en cuenta"
+msgstr ""
#: templates/post_sample_questionnaire.jinja2:20
msgid ""
-"If you took multiple samples within a short time frame, you only need to take "
-"the FFQ for one such sample"
+"If you took multiple samples within a short time frame, you only need to "
+"take the FFQ for one such sample"
msgstr ""
-"Si tomó varias muestras en un período corto de tiempo, solo necesita tomar el "
-"FFQ para una de esas muestras"
#: templates/post_sample_questionnaire.jinja2:23
msgid "Approx time: 30 minutes"
-msgstr "Tiempo aproximado: 30 minutos"
+msgstr ""
#: templates/post_sample_questionnaire.jinja2:27
msgid "Take FFQ"
-msgstr "Tomar el FFQ"
-
-#: templates/sample.jinja2:2 templates/sample.jinja2:150
-msgid "Sample Information"
-msgstr "Información de la muestra"
-
-#: templates/sample.jinja2:27
-msgid "Please select a date within the last 10 years."
-msgstr "Seleccione una fecha dentro de los últimos 10 años."
-
-#: templates/sample.jinja2:30
-msgid "Please select a date within the next 30 days."
-msgstr "Seleccione una fecha dentro de los próximos 30 días."
+msgstr ""
-#: templates/sample.jinja2:86
-msgid "Required Format: MM/DD/YYYY"
-msgstr "Formato requerido: MM/DD/AAAA"
+#: templates/reports.jinja2:2 templates/sitebase.jinja2:137
+#: templates/sitebase.jinja2:169 templates/sitebase.jinja2:171
+msgid "My Reports"
+msgstr ""
-#: templates/sample.jinja2:158
-msgid "Sample Recorded, Editing is Locked"
-msgstr "Muestra registrada, la edición está bloqueada"
+#: templates/sample.jinja2:24
+msgid "Do you really want to remove this sample from this source?"
+msgstr ""
-#: templates/sample.jinja2:169
-msgid "Date"
-msgstr "Fecha"
+#: templates/sample.jinja2:25
+msgid "Doing so will remove any collection info saved for this sample and will"
+msgstr ""
-#: templates/sample.jinja2:178
-msgid "Time"
-msgstr "Hora"
+#: templates/sample.jinja2:26
+msgid "unlink it from all surveys."
+msgstr ""
-#: templates/sample.jinja2:192
-msgid "Guidelines for site identification"
-msgstr "Guía para la identificación del sitio"
+#: templates/sample.jinja2:85
+msgid "Required Format: MM/DD/YYYY"
+msgstr ""
-#: templates/sample.jinja2:193
-msgid "If collecting a"
-msgstr "Si recolecta una muestra de"
+#: templates/sample.jinja2:99
+msgid "Please select a date within the last 10 years."
+msgstr ""
-#: templates/sample.jinja2:193
-msgid "BLOOD"
-msgstr "SANGRE"
+#: templates/sample.jinja2:113
+msgid "Please select a date within the next 30 days."
+msgstr ""
-#: templates/sample.jinja2:193
-msgid "sample, please select Blood (skin prick)"
-msgstr "por favor seleccione Sangre (pinchazo en la piel)"
+#: templates/sample.jinja2:204
+msgid "Date of Sample Collection"
+msgstr ""
-#: templates/sample.jinja2:194
-msgid ""
-"For all swabs, please select the site as precisely as possible from the options "
-"available"
+#: templates/sample.jinja2:208
+msgid "Time of Sample Collection"
msgstr ""
-"Para todos los hisopos, por favor seleccione el sitio con la mayor precisión "
-"posible entre las opciones disponibles"
-#: templates/sample.jinja2:200
-msgid "Site sampled"
-msgstr "Sitio muestreado"
+#: templates/sample.jinja2:214
+#, fuzzy
+msgid "Sample Type"
+msgstr "sitio_muestra"
-#: templates/sample.jinja2:204
+#: templates/sample.jinja2:217
msgid "Select a sample type"
-msgstr "Seleccione un tipo de muestra"
+msgstr ""
-#: templates/sample.jinja2:220
+#: templates/sample.jinja2:229
msgid "Notes"
-msgstr "Observaciones"
+msgstr ""
-#: templates/sample.jinja2:222
+#: templates/sample.jinja2:230
msgid "(Optional) Is there else about this sample that you would like to add?"
-msgstr "(Opcional) ¿Hay algo más sobre esta muestra que quisiera añadir?"
+msgstr ""
+
+#: templates/sample.jinja2:236
+msgid "Remove"
+msgstr ""
-#: templates/sample.jinja2:225
-msgid "Update"
-msgstr "Actualizar"
+#: templates/sample.jinja2:239
+msgid ""
+"Your sample has been received by our lab and can no longer be edited. "
+"Please contact us with any "
+"questions."
+msgstr ""
#: templates/sample_results.jinja2:140
msgid "What is in your sample?"
-msgstr "¿Qué hay en su muestra?"
+msgstr ""
#: templates/sample_results.jinja2:142
msgid ""
"The table below shows the relative abundances of all of the organisms we "
-"observed in your sample. To produce this, we took the DNA sequences from your "
-"sample, and compared them against publicly available annotated reference "
-"databases. In some cases, a sequence may uniquely match a database record, in "
-"other cases a sequence may match may different records. To handle the "
-"uncertainty that can arise, we rely on a well used and publicly available "
-"microbiome software package called QIIME 2 . The exact approach taken is highlighted in the main "
-"tutorial on feature-classification "
-msgstr ""
-"La siguiente tabla muestra las abundancias relativas de todos los organismos "
-"que observamos en su muestra. Para producir esto, tomamos las secuencias de ADN "
-"de su muestra y las comparamos con bases de datos de referencia disponibles "
-"públicamente. En algunos casos, una secuencia puede coincidir únicamente con un "
-"registro de la base de datos, en otros casos, una secuencia puede coincidir con "
-"varios registros diferentes. Para manejar la incertidumbre que puede surgir, "
-"usamos un software para análisis de microbiomas muy utilizado y disponible al "
-"público llamado QIIME 2 . El "
-"método exacto adoptado se muestra en el tutorial principal sobre clasificación-especies "
+"observed in your sample. To produce this, we took the DNA sequences from "
+"your sample, and compared them against publicly available annotated "
+"reference databases. In some cases, a sequence may uniquely match a "
+"database record, in other cases a sequence may match may different "
+"records. To handle the uncertainty that can arise, we rely on a well used"
+" and publicly available microbiome software package called QIIME 2 . The exact "
+"approach taken is highlighted in the main tutorial on feature-classification "
+msgstr ""
#: templates/sample_results.jinja2:147
msgid "Relative Abundance"
-msgstr "Abundancia Relativa"
+msgstr ""
#: templates/sample_results.jinja2:161
msgid "Alpha Diversity"
-msgstr "Diversidad Alfa"
+msgstr ""
#: templates/sample_results.jinja2:163
msgid ""
-"Here, we're providing a measure of the diversity of your sample, and how it "
-"compares to the diversities of all of the same type of samples in The "
+"Here, we're providing a measure of the diversity of your sample, and how "
+"it compares to the diversities of all of the same type of samples in The "
"Microsetta Initiative. There are many ways to calculate diversity. For "
-"instance, you could compute a diversity value by counting the number of unique "
-"organisms observed (i.e., the sample \"richness\"). Or, you might be interested "
-"in weighting the calculation by the relative abundance of the organisms (i.e., "
-"the sample \"evenness\"). The metric we're computing here is called Faith's "
-"Phylogenetic Diversity (originally defined here ). Faith's "
-"Phylogenetic Diversity computes the \"richness\" of your sample as the amount "
-"of evolutionary breadth represented by your sample. The way we compute alpha "
-"diversity is also through QIIME 2 , and more information on it can be found in the alpha and beta "
-"diversity sections of the "
-"QIIME 2 tutorial"
-msgstr ""
-"Aquí, nosotros estamos proporcionamos una medida de la diversidad de su "
-"muestra, y cómo se compara con las diversidades de todos los mismos tipos de "
-"muestras en The Microsetta Initiative. Hay muchas formas de calcular la "
-"diversidad. Por ejemplo, usted podría calcular un valor de diversidad contando "
-"el número de organismos únicos observados (es decir, la “riqueza” de la "
-"muestra). O bien, podría estar interesado en ponderar el cálculo por la "
-"abundancia relativa de los organismos (es decir, la “uniformidad” de la "
-"muestra). La métrica que estamos calculando aquí se llama diversidad "
-"filogenética de Faith (definida originalmente aquí"
-"a>). La diversidad filogenética de Faith calcula la “riqueza” de su muestra "
-"como la cantidad de amplitud evolutiva representada por su muestra. La forma en "
-"que calculamos la diversidad alfa también es a través de QIIME 2 , y más información al respecto se puede "
-"encontrar en las secciones "
-"sobre la diversidad alfa y beta en el tutoríal de QIIME 2"
+"instance, you could compute a diversity value by counting the number of "
+"unique organisms observed (i.e., the sample \"richness\"). Or, you might "
+"be interested in weighting the calculation by the relative abundance of "
+"the organisms (i.e., the sample \"evenness\"). The metric we're computing"
+" here is called Faith's Phylogenetic Diversity (originally defined here ). Faith's Phylogenetic Diversity computes the"
+" \"richness\" of your sample as the amount of evolutionary breadth "
+"represented by your sample. The way we compute alpha diversity is also "
+"through QIIME 2 , and"
+" more information on it can be found in the alpha and beta diversity sections of the QIIME"
+" 2 tutorial"
+msgstr ""
#: templates/sample_results.jinja2:168
msgid "Beta Diversity"
-msgstr "Diversidad Beta"
+msgstr ""
#: templates/sample_results.jinja2:170
msgid ""
"Here we display how your sample fits in among the other samples of The "
-"Microsetta Initiative in terms of shared microbes. There are many ways to "
-"calculate beta diversity, differing in how to weight the distance between any "
-"two microbes. We take evolutionary distance into account with the metric "
-"displayed here, known as Unweighted Unifrac. You can find an overview of this "
-"metric here or better understand its derivation here . This computation "
-"is performed with QIIME 2 , "
-"and more information on it can be found in the alpha and beta diversity sections of the QIIME 2 tutorial"
-msgstr ""
-"Aquí nosotros mostramos cómo se sitúa su muestra entre las otras muestras de la "
-"Iniciativa Microsetta en términos de microbios compartidos. Hay muchas formas "
-"de calcular la diversidad beta, difieriendo en cómo medir la distancia entre "
-"dos microbios. Nosotros, tomamos en cuenta la distancia evolutiva con la "
-"métrica que se muestra aquí, conocida como Unweighted Unifrac. Usted puede "
-"encontrar la descripción de esta métrica aquí o comprender mejor su su origen aquí . Este cálculo se realiza con QIIME 2 , y más información al respecto la puede "
-"encontrar en las secciones "
-"sobre la diversidad alfa y beta en el turorial QIIME 2"
+"Microsetta Initiative in terms of shared microbes. There are many ways to"
+" calculate beta diversity, differing in how to weight the distance "
+"between any two microbes. We take evolutionary distance into account with"
+" the metric displayed here, known as Unweighted Unifrac. You can find an "
+"overview of this metric here or better understand its derivation here . This computation is performed with QIIME 2 , and more "
+"information on it can be found in the alpha and beta diversity sections of the QIIME"
+" 2 tutorial"
+msgstr ""
#: templates/secondary_surveys.jinja2:2
msgid "Secondary Surveys"
-msgstr "Cuestionarios Secundarios"
+msgstr ""
-#: templates/secondary_surveys.jinja2:12 templates/source.jinja2:258
+#: templates/secondary_surveys.jinja2:12
+#, fuzzy
msgid "Survey Title"
-msgstr "Título del Cuestionario"
+msgstr "cuestionario_plantilla_título"
-#: templates/secondary_surveys.jinja2:15 templates/source.jinja2:261
+#: templates/secondary_surveys.jinja2:15
+#, fuzzy
msgid "Survey Description"
-msgstr "Descripción del Cuestionario"
+msgstr "descripción"
+
+#: templates/signed_consent.jinja2:51 templates/signed_consent.jinja2:125
+#: templates/signed_consent.jinja2:181 templates/signed_consent.jinja2:218
+msgid "Date Signed"
+msgstr ""
#: templates/sitebase.jinja2:5
msgid "Microsetta"
-msgstr "Microsetta"
+msgstr ""
-#: templates/sitebase.jinja2:43
-msgid "Administrator Toolbar"
-msgstr "Barra de herramientas del administrador"
+#: templates/sitebase.jinja2:44
+msgid "You are deleting the profile for"
+msgstr ""
#: templates/sitebase.jinja2:44
-msgid "System Panel"
-msgstr "Panel del Sistema"
+msgid "and all surveys associated with it!"
+msgstr ""
-#: templates/sitebase.jinja2:46 templates/sitebase.jinja2:84
-msgid "Log Out"
-msgstr "Cerrar sesión"
+#: templates/sitebase.jinja2:45
+msgid ""
+"This operation cannot be undone. Are you sure you want to delete this "
+"source?"
+msgstr ""
+
+#: templates/sitebase.jinja2:56
+msgid "Administrator Toolbar"
+msgstr ""
-#: templates/sitebase.jinja2:47
-msgid "Activation Codes"
-msgstr "Códigos de Activación"
+#: templates/sitebase.jinja2:57
+msgid "System Panel"
+msgstr ""
-#: templates/sitebase.jinja2:49
+#: templates/sitebase.jinja2:60
msgid "Address Verification"
-msgstr "Verificación de la Dirección"
+msgstr ""
-#: templates/sitebase.jinja2:53
+#: templates/sitebase.jinja2:62
+msgid "FFQ Codes"
+msgstr ""
+
+#: templates/sitebase.jinja2:65
msgid "Find Account"
-msgstr "Encontrar Cuenta"
+msgstr ""
-#: templates/sitebase.jinja2:55
+#: templates/sitebase.jinja2:67
msgid "Barcode Search"
-msgstr "Búsqueda de código de barras"
-
-#: templates/sitebase.jinja2:86
-msgid "Log In"
-msgstr "Iniciar sesión"
-
-#: templates/sitebase.jinja2:87
-msgid "Sign Up"
-msgstr "Registrarse"
+msgstr ""
-#: templates/sitebase.jinja2:126
-msgid "FAQs"
-msgstr "Preguntas Frecuentes"
+#: templates/sitebase.jinja2:68 templates/sitebase.jinja2:88
+msgid "Log Out"
+msgstr ""
-#: templates/source.jinja2:2
-msgid "Account Samples"
-msgstr "Muestras de la Cuenta"
+#: templates/sitebase.jinja2:139 templates/sitebase.jinja2:148
+#: templates/sitebase.jinja2:150 templates/source.jinja2:2
+#: templates/survey.jinja2:165
+msgid "My Profile"
+msgstr ""
-#: templates/source.jinja2:84
-msgid "Do you really want to remove this sample from this source?"
-msgstr "¿Seguro que desea eliminar esta muestra de esta fuente?"
+#: templates/sitebase.jinja2:184
+msgid "Delete This Profile"
+msgstr ""
-#: templates/source.jinja2:85
-msgid "Doing so will remove any collection info saved for this sample and will"
+#: templates/sitebase.jinja2:198
+msgid "Are you sure you want to withdraw your consent and delete your profile?"
msgstr ""
-"Al hacerlo, se eliminará cualquier información guardada para esta muestra y se"
-#: templates/source.jinja2:86
-msgid "unlink it from all surveys."
-msgstr "desvinculará de todos los cuestionarios."
+#: templates/sitebase.jinja2:201
+msgid ""
+"I hereby withdraw consent for researchers to use my personal data and/or "
+"sample(s) for The Microsetta Initiative (TMI)."
+msgstr ""
-#: templates/source.jinja2:91
-msgid "You are deleting source"
-msgstr "Usted está eliminando la fuente"
+#: templates/sitebase.jinja2:202
+msgid ""
+"I understand and acknowledge that any personal data and/or sample(s) that"
+" have already been provided to TMI in accordance with the consent I "
+"provided by signing the consent form(s), will continue to be used for the"
+" research. However, no new information will be collected."
+msgstr ""
-#: templates/source.jinja2:91
-msgid "and all surveys associated with it!"
-msgstr "y todos los cuestionarios asociados a ella!"
+#: templates/sitebase.jinja2:203
+msgid ""
+"I understand that my data will only be shared after directly identifying "
+"information has been removed so that researchers cannot re-identify my "
+"personal data and/or sample(s) for future use."
+msgstr ""
-#: templates/source.jinja2:92
+#: templates/sitebase.jinja2:204
msgid ""
-"This operation cannot be undone. Are you sure you want to delete this source?"
+"By clicking withdraw, you will be ending your participation and "
+"terminating your profile. If you would like to be removed from being "
+"contacted for general program updates or information about future "
+"research studies, please refer to account deletion or contact us at "
+"microsetta@ucsd.edu."
msgstr ""
-"Esta operación no se podrá revertir. ¿Está seguro de que desea eliminar esta "
-"fuente?"
-#: templates/source.jinja2:100
-msgid "View"
-msgstr "Ver"
+#: templates/sitebase.jinja2:207 templates/source.jinja2:151
+msgid "Maybe Later"
+msgstr ""
-#: templates/source.jinja2:152
-msgid "It looks like some samples do not have collection information recorded."
+#: templates/sitebase.jinja2:208 templates/source.jinja2:152
+msgid "Take This Survey Now"
msgstr ""
-"Parece que algunas muestras no tienen registrada la información de la muestra."
-#: templates/source.jinja2:156
-msgid "Samples (click on a barcode to provide collection information)"
+#: templates/sitebase.jinja2:224
+msgid "FAQs"
msgstr ""
-"Muestras (haga clic en el código de barras para proporcionar la información de "
-"la muestra)"
-#: templates/source.jinja2:164
-msgid "Collection date"
-msgstr "Fecha de recolección"
+#: templates/source.jinja2:52
+msgid ""
+"The Microsetta Initiative aims to generate quality data that can help you"
+" better understand your microbiome, help scientists design better "
+"studies, and improve the world's understanding of the human microbiome."
+msgstr ""
-#: templates/source.jinja2:168
-msgid "Sample type"
-msgstr "Tipo de muestra"
+#: templates/source.jinja2:55
+msgid ""
+"Answering our surveys can help us do just that. To get started, build out"
+" your profile by answering the surveys below. We will alert you when new "
+"surveys become available."
+msgstr ""
-#: templates/source.jinja2:174
-msgid "Sample-specific survey"
-msgstr "Cuestionario especifico de la muestra"
+#: templates/source.jinja2:63
+msgid "Last modified"
+msgstr ""
-#: templates/source.jinja2:199
-msgid "View Top Food Report"
-msgstr "Ver Reporte de Alimentos Principales"
-
-#: templates/source.jinja2:206
-msgid "This sample has been received and cannot be removed."
-msgstr "Esta muestra ha sido recibida y no puede ser eliminada."
-
-#: templates/source.jinja2:208
-msgid "Remove"
-msgstr "Eliminar"
-
-#: templates/source.jinja2:218
-msgid "Do I need to take more than one Food Frequency Questionnaire (FFQ)"
+#: templates/source.jinja2:65 templates/source.jinja2:107
+msgid "NEW"
msgstr ""
-"¿Necesito tomar más de un Cuestionario de Frecuencia de Consumo de Alimentos "
-"(FFQ)?"
-#: templates/source.jinja2:219
-msgid ""
-"If you are taking all of your samples at the same time, you will only need to "
-"complete one. If you are collecting samples over time (e.g., once per week), "
-"then please consider taking an FFQ per time point. The FFQs provide valuable "
-"dietary research data for the project, so researchers can better understand the "
-"relationship between the food you eat and your microbes."
+#: templates/source.jinja2:67 templates/survey.jinja2:176
+msgid "minutes"
msgstr ""
-"Si está recolectando todas sus muestras al mismo tiempo, solo necesitará "
-"completarlo una sola vez. Si está recolectando sus muestras a lo largo del "
-"tiempo (por ejemplo, una vez por semana), considere tomar el FFQ en un punto "
-"medio. El FFQ proporciona valiosa información dietética al proyecto de "
-"investigación, de modo que los investigadores puedan comprender mejor la "
-"relación entre los alimentos que consume y sus microbios."
-#: templates/source.jinja2:227
+#: templates/source.jinja2:97
msgid ""
-"The kit ID used to create your account has unclaimed samples. To claim samples "
-"from this kit, please click \"List samples\". To claim samples from another kit "
-"ID, please enter it here and then click \"List Samples\""
+"Below are surveys hosted by partner organizations. You will be directed "
+"to an external site in a new browser tab to complete the survey(s) you "
+"select. Once you complete them, you may close the tab and return to this "
+"page."
msgstr ""
-"El Kit ID utilizado para crear su cuenta tiene muestras no reclamadas. Para "
-"reclamar muestras de este kit, haga clic en \"Mostrar Muestras\". Para reclamar "
-"muestras de otro Kit ID, ingrese el ID aquí y luego haga clic en \"Mostrar "
-"Muestras\":"
-
-#: templates/source.jinja2:230
-msgid "To add samples, please enter a kit ID here"
-msgstr "Para añadir muestras, ingrese el ID de su kit aquí"
-
-#: templates/source.jinja2:234
-msgid "List Samples"
-msgstr "Mostrar Muestras"
-
-#: templates/source.jinja2:239
-msgid "Select all samples that should be associated with this source"
-msgstr "Seleccione todas las muestras que deben asociarse con esta fuente"
-#: templates/source.jinja2:245
-msgid "Claim Selected Samples"
-msgstr "Reclame Muestras Seleccionadas"
-
-#: templates/source.jinja2:253
-msgid "Available optional surveys"
-msgstr "Cuestionarios opcionales disponibles"
-
-#: templates/source.jinja2:283
-msgid "Start"
-msgstr "Iniciar"
-
-#: templates/source.jinja2:295
-msgid "Completed surveys"
-msgstr "Cuestionarios completados"
+#: templates/source.jinja2:105
+#, fuzzy
+msgid "COMPLETED"
+msgstr "sitio_muestra"
-#: templates/source.jinja2:320
-msgid ""
-"Sources with one or more samples assigned cannot be deleted. All samples above "
-"must be removed prior to deleting this source."
+#: templates/source.jinja2:109
+msgid "min"
msgstr ""
-"Las fuentes con una o más muestras asignadas no se pueden eliminar. Todas las "
-"muestras anteriores deben eliminarse antes de eliminar esta fuente."
-#: templates/source.jinja2:322
+#: templates/source.jinja2:148
msgid ""
-"If you need to delete this source, click the following button. Please note, "
-"this action can NOT be reversed."
+"You will only have one opportunity to take this survey. Please make sure "
+"you have ample time before you start."
msgstr ""
-"Si necesita eliminar esta fuente, haga clic en el siguiente botón. Tenga en "
-"cuenta que esta acción NO se puede revertir."
-#: templates/source.jinja2:322
-msgid "Delete Source"
-msgstr "Eliminar Muestra"
+#: templates/submit_interest.jinja2:146 templates/submit_interest.jinja2:223
+msgid "Sorry, you must be 18 or older to participate in this study."
+msgstr ""
-#: templates/submit_interest.jinja2:127
+#: templates/submit_interest.jinja2:159
msgid "Sorry, this study is not open to residents of your country."
-msgstr "Lo sentimos, este estudio no está abierto para los residentes de su país."
+msgstr ""
-#: templates/submit_interest.jinja2:189 templates/submit_interest.jinja2:295
+#: templates/submit_interest.jinja2:222 templates/submit_interest.jinja2:330
msgid "Please select whether you are at least 18 years of age."
-msgstr "Por favor seleccione si usted tiene al menos 18 años de edad."
+msgstr ""
-#: templates/submit_interest.jinja2:190
+#: templates/submit_interest.jinja2:225
msgid "Please enter your first name."
-msgstr "Por favor ingrese su nombre."
+msgstr ""
-#: templates/submit_interest.jinja2:191
+#: templates/submit_interest.jinja2:226
msgid "Please enter your last name."
-msgstr "Por favor ingrese su apellido."
+msgstr ""
-#: templates/submit_interest.jinja2:192
+#: templates/submit_interest.jinja2:227
msgid "Please enter a valid email address."
-msgstr "Por favor ingrese su correo electrónico."
+msgstr ""
-#: templates/submit_interest.jinja2:195
+#: templates/submit_interest.jinja2:230
msgid "Please select your country."
-msgstr "Por favor seleccione su país."
+msgstr ""
-#: templates/submit_interest.jinja2:202 templates/update_address.jinja2:135
+#: templates/submit_interest.jinja2:237 templates/update_address.jinja2:135
#: templates/update_address.jinja2:250
msgid ""
-"Sorry, we were unable to verify your address. Please check your information and "
-"try again."
+"Sorry, we were unable to verify your address. Please check your "
+"information and try again."
msgstr ""
-"Lo sentimos, no pudimos verificar su dirección. Por favor verifique su "
-"información y vuelva a intentarlo."
-#: templates/submit_interest.jinja2:204 templates/submit_interest.jinja2:560
+#: templates/submit_interest.jinja2:239 templates/submit_interest.jinja2:595
msgid "Please agree to receiving communications from us."
-msgstr "Por favor acepte recibir comunicaciones de nosotros."
+msgstr ""
-#: templates/submit_interest.jinja2:265
+#: templates/submit_interest.jinja2:300
msgid ""
-"Sorry, due to widespread interest, the sign-up list for this project is full."
+"Sorry, due to widespread interest, the sign-up list for this project is "
+"full."
msgstr ""
-"Lo sentimos, debido al gran interés generalizado, la lista de inscripciones "
-"para este proyecto está llena."
-#: templates/submit_interest.jinja2:266
+#: templates/submit_interest.jinja2:301
msgid ""
-"Please visit our website to learn "
-"about other opportunities to participate in The Microsetta Initiative."
+"Please visit our website to "
+"learn about other opportunities to participate in The Microsetta "
+"Initiative."
msgstr ""
-"Por favor visite nuestro sitio web "
-"para conocer otras oportunidades para participar en The Microsetta Initiative."
-#: templates/submit_interest.jinja2:270 templates/update_address.jinja2:193
+#: templates/submit_interest.jinja2:305 templates/update_address.jinja2:193
msgid "Verifying your information, please wait just a moment."
-msgstr "Verificando su información, por favor espere un momento."
+msgstr ""
-#: templates/submit_interest.jinja2:291
+#: templates/submit_interest.jinja2:326
msgid "Are you at least 18 years of age?"
-msgstr "¿Tiene al menos 18 años de edad?"
+msgstr ""
-#: templates/submit_interest.jinja2:292 templates/submit_interest.jinja2:559
+#: templates/submit_interest.jinja2:327 templates/submit_interest.jinja2:594
msgid "Yes"
-msgstr "Si"
+msgstr ""
-#: templates/submit_interest.jinja2:294
+#: templates/submit_interest.jinja2:329
msgid "No"
-msgstr "No"
+msgstr ""
-#: templates/submit_interest.jinja2:299
+#: templates/submit_interest.jinja2:334
msgid ""
-"Please note: Specimen collection kits are associated with the email used when "
-"registering. We recommend the following:"
+"Please note: Specimen collection kits are associated with the email used "
+"when registering. We recommend the following:"
msgstr ""
-"Tenga en cuenta: los kits de recolección de muestras están asociados al correo "
-"electrónico utilizado al registrarse. Recomendamos lo siguiente:"
-#: templates/submit_interest.jinja2:300
+#: templates/submit_interest.jinja2:335
msgid "1. One email must be used per kit."
-msgstr "1. Se debe usar un correo electrónico por kit."
+msgstr ""
-#: templates/submit_interest.jinja2:301
+#: templates/submit_interest.jinja2:336
msgid ""
"2. If you plan to complete the form on behalf of another adult, use that "
"person's name and email address."
msgstr ""
-"2. Si planea completar el formulario en nombre de otra persona adulta, utilice "
-"el nombre y la dirección de correo electrónico de esa persona."
-#: templates/submit_interest.jinja2:302
+#: templates/submit_interest.jinja2:337
msgid "3. If possible, continue to use the same email throughout the study."
msgstr ""
-"3. Si es posible, continúe usando el mismo correo electrónico durante todo el "
-"estudio."
-#: templates/submit_interest.jinja2:303
+#: templates/submit_interest.jinja2:338
msgid ""
-"Once you have received the kit, please continue to use the same email address "
-"used when creating your online account."
+"Once you have received the kit, please continue to use the same email "
+"address used when creating your online account."
msgstr ""
-"Una vez que haya recibido el kit, continúe usando la misma dirección de correo "
-"electrónico usada al crear su cuenta en línea."
-#: templates/submit_interest.jinja2:313
+#: templates/submit_interest.jinja2:348
msgid "Email Address"
-msgstr "Correo electrónico"
+msgstr ""
-#: templates/submit_interest.jinja2:317 templates/update_address.jinja2:242
+#: templates/submit_interest.jinja2:352 templates/update_address.jinja2:242
msgid "Phone Number"
-msgstr "Número de teléfono"
+msgstr ""
-#: templates/submit_interest.jinja2:323 templates/submit_interest.jinja2:541
+#: templates/submit_interest.jinja2:358 templates/submit_interest.jinja2:576
#: templates/update_address.jinja2:227
msgid "SELECT"
-msgstr "SELECCIONAR"
+msgstr ""
-#: templates/submit_interest.jinja2:520
+#: templates/submit_interest.jinja2:555
msgid "Please fill in the address you would like your kit delivered to. Example:"
msgstr ""
-"Por favor, complete la dirección en la que desea que se entregue su kit. "
-"Ejemplo:"
-#: templates/submit_interest.jinja2:521
-msgid "9500 Gilman Dr. San Diego, CA 920932"
-msgstr "Plaza de España,1 28934 Mostoles 03201 ELCHE (Alicante)"
+#: templates/submit_interest.jinja2:556
+msgid "9500 Gilman Dr. San Diego, CA 92093"
+msgstr ""
-#: templates/submit_interest.jinja2:551 templates/update_address.jinja2:237
+#: templates/submit_interest.jinja2:586 templates/update_address.jinja2:237
msgid "Residential"
-msgstr "Domicilio de residencia"
+msgstr ""
-#: templates/submit_interest.jinja2:552 templates/update_address.jinja2:238
+#: templates/submit_interest.jinja2:587 templates/update_address.jinja2:238
msgid "Commercial"
-msgstr "Domicilio comercial"
+msgstr ""
-#: templates/submit_interest.jinja2:558
+#: templates/submit_interest.jinja2:593
msgid ""
-"By subscribing to this program, I agree to receive communications via the "
-"newsletter regarding the status of the program, the steps I must complete, tips "
-"and tricks for completing my participation and surveys. I agree and understand "
-"that I can unsubscribe at any time using a link in the newsletter and this will "
-"not change my consent to receive sample status updates directly from the TMI "
-"database. "
+"By subscribing to this program, I agree to receive communications via the"
+" newsletter regarding the status of the program, the steps I must "
+"complete, tips and tricks for completing my participation and surveys. I "
+"agree and understand that I can unsubscribe at any time using a link in "
+"the newsletter and this will not change my consent to receive sample "
+"status updates directly from the TMI database. "
msgstr ""
-"Al suscribirme al programa THDMI, acepto recibir comunicaciones a través del "
-"boletín informativo sobre el estado del programa, los pasos que debo completar, "
-"consejos y trucos para completar mi participación y encuestas. Acepto y "
-"entiendo que puedo cancelar mi suscripción en cualquier momento usando un "
-"enlace en el boletín y esto no cambiará mi consentimiento para recibir "
-"actualizaciones de estado de muestra directamente desde la base de datos de TMI."
-#: templates/submit_interest.jinja2:564
+#: templates/submit_interest.jinja2:599
msgid "Previous"
-msgstr "Anterior"
-
-#: templates/submit_interest.jinja2:565
-msgid "Next"
-msgstr "Siguiente"
+msgstr ""
#: templates/submit_interest_confirm.jinja2:36
msgid ""
-"Thank you for your interest! Your information has been saved, and we will "
-"contact you via email soon."
+"Thank you for your interest in our research. Your application has been "
+"received. You will receive an email shortly. Please check your junk or "
+"spam folder if the email hasn’t reached your inbox."
msgstr ""
-"¡Gracias por su interés! Su información ha sido guardada, pronto nos pondremos "
-"en contacto con usted por correo electrónico."
-
-#: templates/survey.jinja2:2 templates/survey.jinja2:128
-msgid "Participant Survey"
-msgstr "Cuestionario del Participante"
#: templates/survey.jinja2:8
msgid " selected"
-msgstr " seleccionado"
+msgstr ""
-#: templates/survey.jinja2:58
+#: templates/survey.jinja2:96
msgid "The value is not an integer"
-msgstr "El valor no es un número entero"
+msgstr ""
-#: templates/survey.jinja2:59
+#: templates/survey.jinja2:97
msgid "Invalid number"
-msgstr "Número invalido"
-
-#: templates/survey.jinja2:131
-msgid "Progress"
-msgstr "Avanzar"
-
-#: templates/survey.jinja2:138
-msgid "Previous Section"
-msgstr "Sección Previa"
-
-#: templates/survey.jinja2:139
-msgid "Next Section"
-msgstr "Sección Siguiente"
+msgstr ""
-#: templates/survey.jinja2:158
-msgid "Submit Survey"
-msgstr "Enviar Cuestionario"
+#: templates/survey.jinja2:176
+#, fuzzy
+msgid "questions"
+msgstr "descripción"
-#: templates/survey.jinja2:166
-msgid ""
-"Please note: Once you've submitted this survey, you'll be unable to edit your "
-"answers."
+#: templates/survey.jinja2:196
+msgid "You've finished building your profile!"
msgstr ""
-"Tenga en cuenta: una vez que haya enviado este cuestionario, no podrá editar "
-"sus respuestas."
-#: templates/survey.jinja2:166
-msgid ""
-"If you'd like to review or change any of your responses, please press the "
-"Cancel button. Otherwise, press OK to submit your responses."
+#: templates/survey.jinja2:245 templates/survey.jinja2:276
+#: templates/survey.jinja2:307
+msgid "Save & Go Home"
msgstr ""
-"Si desea revisar o cambiar alguna de sus respuestas, presione el botón "
-"Cancelar. De lo contrario, presione OK para enviar sus respuestas."
-#: templates/survey.jinja2:166
-msgid "This warning will only appear once."
-msgstr "Esta advertencia solo aparecerá una vez."
-
-#: templates/survey.jinja2:170
-msgid ""
-"It looks like you are trying to submit this survey without answering any "
-"questions. If you would prefer not to complete this survey, please return to "
-"the homepage."
+#: templates/survey.jinja2:254 templates/survey.jinja2:316
+msgid "Save & Next"
msgstr ""
-"Parece que está intentando enviar esta encuesta sin responder ninguna pregunta. "
-"Si prefiere no completar esta encuesta, regrese a la página de inicio."
-#: templates/survey.jinja2:193 templates/survey.jinja2:218
-msgid "Step"
-msgstr "Paso"
-
-#: templates/survey.jinja2:193 templates/survey.jinja2:218
-msgid "of"
-msgstr "de"
-
-#: templates/survey.jinja2:193 templates/survey.jinja2:218
-msgid "Complete"
-msgstr "Completado"
+#: templates/survey.jinja2:266 templates/survey.jinja2:297
+msgid "Save & Previous"
+msgstr ""
-#: templates/survey.jinja2:203
-msgid "Please correct the fields with errors."
-msgstr "Por favor corrija los campos con errores."
+#: templates/survey.jinja2:285
+msgid "Save & Finish"
+msgstr ""
#: templates/update_address.jinja2:198
msgid ""
-"Sorry, it appears you are having trouble verifying your address. Please contact "
-"our support team at microsetta@ucsd.edu and they can assist with confirming "
-"your address."
+"Sorry, it appears you are having trouble verifying your address. Please "
+"contact our support team at microsetta@ucsd.edu and they can assist with "
+"confirming your address."
msgstr ""
-"Lo sentimos, parece que está teniendo problemas para verificar su dirección. "
-"Comuníquese con nuestro equipo de soporte en microsetta@ucsd.edu ellos lo "
-"ayudarán a confirmar su dirección."
#: templates/update_address.jinja2:202
msgid "Update Your Address"
-msgstr "Actualice su Dirección"
+msgstr ""
#: templates/update_address_confirm.jinja2:25
msgid "Address Updated"
-msgstr "Dirección Actualizada"
+msgstr ""
#: templates/update_address_confirm.jinja2:28
msgid ""
-"Thank you for updating your address! Your information has been saved and you "
-"will receive an email notification once your kit ships."
+"Thank you for updating your address! Your information has been saved and "
+"you will receive an email notification once your kit ships."
msgstr ""
-"¡Gracias por actualizar su dirección! Su información se ha guardado y recibirá "
-"una notificación por correo electrónico una vez que se envíe su kit."
#: templates/update_email.jinja2:2
msgid "Email Update"
-msgstr "Notificación por Correo Electrónico"
+msgstr ""
#: templates/update_email.jinja2:12
msgid ""
-"It appears that the email we have for your account is not the same as the email "
-"you logged in with. Would you like us to update your email in our records?"
+"It appears that the email we have for your account is not the same as the"
+" email you logged in with. Would you like us to update your email in our"
+" records?"
msgstr ""
-"Parece que el correo electrónico que tenemos de su cuenta no es el mismo con el "
-"que inició sesión. ¿Quiere que actualicemos su correo electrónico en nuestro "
-"registro?"
#: templates/update_email.jinja2:18
msgid "No, skip and continue"
-msgstr "No, omitir y continuar"
+msgstr ""
#: templates/update_email.jinja2:21
msgid "Yes, update and continue"
-msgstr "Sí, actualizar y continuar"
+msgstr ""
#~ msgid "Sorry, it appears the project you were interested in joining has ended."
#~ msgstr ""
-#~ "Lo sentimos, parece que el proyecto al que le interesaba unirse ha "
+#~ "Lo sentimos, parece que el proyecto "
+#~ "al que le interesaba unirse ha "
#~ "finalizado."
#~ msgid ""
-#~ "If you are interested in other opportunities to participate in The "
-#~ "Microsetta Initiative, please visit our website."
+#~ "If you are interested in other "
+#~ "opportunities to participate in The "
+#~ "Microsetta Initiative, please visit our "
+#~ " website."
+#~ msgstr ""
+#~ "Si está interesado en otras "
+#~ "oportunidades para participar en The "
+#~ "Microsetta Initiative, por favor visite "
+#~ "nuestro sitio "
+#~ "web."
+
+#~ msgid "Unable to validate the kit name; please reload the page."
+#~ msgstr ""
+#~ "No se ha podido validar el nombre"
+#~ " del kit; por favor recargue la "
+#~ "página web."
+
+#~ msgid "Street Address"
+#~ msgstr "Dirección"
+
+#~ msgid "Activation Info"
+#~ msgstr "Información de Activación"
+
+#~ msgid "Kit ID"
+#~ msgstr "Kit ID"
+
+#~ msgid "OR"
+#~ msgstr "O"
+
+#~ msgid "View Account Details"
+#~ msgstr "Ver Información de la Cuenta"
+
+#~ msgid "Sources"
+#~ msgstr "Fuentes"
+
+#~ msgid ""
+#~ "You have now set up your account!"
+#~ " Please proceed to identify your "
+#~ "source."
+#~ msgstr ""
+#~ "¡Usted ha establecido su cuenta! Por "
+#~ "favor proceda a identificar su fuente."
+
+#~ msgid ""
+#~ "Choose a source to assign samples "
+#~ "to by clicking on a name, listed"
+#~ " in blue below:"
+#~ msgstr ""
+#~ "Elija una fuente para asignar muestras"
+#~ " haciendo clic en uno de los "
+#~ "nombres, que se muestra en azul a"
+#~ " continuación:"
+
+#~ msgid "Name"
+#~ msgstr "Nombre"
+
+#~ msgid "Source type"
+#~ msgstr "Tipo de Fuente"
+
+#~ msgid "What is the Source of Your Sample?"
+#~ msgstr "¿Cuál es la fuente de su muestra?"
+
+#~ msgid ""
+#~ "Our lab needs to know what type"
+#~ " of sample(s) you are submitting "
+#~ "(a.k.a. the \"source\"). Add a new "
+#~ "source and assign samples to it so"
+#~ " we can perform the correct analysis"
+#~ " in our laboratory."
+#~ msgstr ""
+#~ "Nuestro laboratorio necesita saber qué "
+#~ "tipo de muestra(s) está enviando "
+#~ "(también conocida como “la fuente”). "
+#~ "Añada una nueva fuente y asígnele "
+#~ "muestras para que podamos realizar el"
+#~ " análisis correcto."
+
+#~ msgid ""
+#~ "If you have multiple sources, you "
+#~ "may add one source at a time. "
+#~ "You can return to this page after"
+#~ " you finish registering the first "
+#~ "one."
+#~ msgstr ""
+#~ "Si usted tiene varias fuentes, puede "
+#~ "agregar una fuente a la vez. Usted"
+#~ " puede regresar a esta página después"
+#~ " de terminar de registrar la primera."
+
+#~ msgid "Human Source"
+#~ msgstr "Fuente Humana"
+
+#~ msgid "Collect sample(s) from"
+#~ msgstr "Recoger muestra(s) de"
+
+#~ msgid "yourself"
+#~ msgstr "usted mismo"
+
+#~ msgid "someone else"
+#~ msgstr "alguien más"
+
+#~ msgid "Select"
+#~ msgstr "Seleccionar"
+
+#~ msgid "Environmental Source"
+#~ msgstr "Fuente Ambiental"
+
+#~ msgid "Collect sample(s) from a"
+#~ msgstr "Recoger muestra(s) de una"
+
+#~ msgid "surface"
+#~ msgstr "superficie"
+
+#~ msgid "(e.g. kitchen counter, backyard soil, food, etc.)"
+#~ msgstr "(por ejemplo, la barra de la cocina, tierra del jardín, comida, etc.)"
+
+#~ msgid "Animal Source"
+#~ msgstr "Fuente Animal"
+
+#~ msgid "your pet"
+#~ msgstr "su mascota"
+
+#~ msgid "or an"
+#~ msgstr "o un"
+
+#~ msgid "Animal sources are currently unavailable."
+#~ msgstr "Las fuentes animales no están disponibles."
+
+#~ msgid "SIGN UP"
+#~ msgstr "Registrarse"
+
+#~ msgid "Already have an account?"
+#~ msgstr "¿Ya tiene una cuenta?"
+
+#~ msgid "Welcome back!"
+#~ msgstr "¡Bienvenido de nuevo!"
+
+#~ msgid "LOG IN"
+#~ msgstr "Iniciar sesión"
+
+#~ msgid ""
+#~ "It looks like you are creating a"
+#~ " new source that may be similar "
+#~ "or the same as an existing source."
+#~ " If this is the same person as"
+#~ " an existing source, please consider "
+#~ "providing new samples or survey "
+#~ "responses under that source"
+#~ msgstr ""
+#~ "Parece que está creando una nueva "
+#~ "fuente que puede ser similar o "
+#~ "igual a una fuente existente. Si "
+#~ "esta es la misma persona que una"
+#~ " fuente existente, considere proporcionar "
+#~ "nuevas muestras o respuestas de "
+#~ "encuestas bajo esa fuente"
+
+#~ msgid "All of the Microsetta Initiative"
+#~ msgstr "Toda la Iniciativa Microsetta"
+
+#~ msgid "Multipopulation"
+#~ msgstr "Multipoblación"
+
+#~ msgid "You and the Microbes Around You"
+#~ msgstr "Usted y los microbios que lo rodean"
+
+#~ msgid "Sample Information"
+#~ msgstr "Información de la muestra"
+
+#~ msgid "Sample Recorded, Editing is Locked"
+#~ msgstr "Muestra registrada, la edición está bloqueada"
+
+#~ msgid "Date"
+#~ msgstr "Fecha"
+
+#~ msgid "Time"
+#~ msgstr "Hora"
+
+#~ msgid "Guidelines for site identification"
+#~ msgstr "Guía para la identificación del sitio"
+
+#~ msgid "If collecting a"
+#~ msgstr "Si recolecta una muestra de"
+
+#~ msgid "BLOOD"
+#~ msgstr "SANGRE"
+
+#~ msgid "sample, please select Blood (skin prick)"
+#~ msgstr "por favor seleccione Sangre (pinchazo en la piel)"
+
+#~ msgid ""
+#~ "For all swabs, please select the "
+#~ "site as precisely as possible from "
+#~ "the options available"
+#~ msgstr ""
+#~ "Para todos los hisopos, por favor "
+#~ "seleccione el sitio con la mayor "
+#~ "precisión posible entre las opciones "
+#~ "disponibles"
+
+#~ msgid "Site sampled"
+#~ msgstr "Sitio muestreado"
+
+#~ msgid "Update"
+#~ msgstr "Actualizar"
+
+#~ msgid "Activation Codes"
+#~ msgstr "Códigos de Activación"
+
+#~ msgid "Account Samples"
+#~ msgstr "Muestras de la Cuenta"
+
+#~ msgid "It looks like some samples do not have collection information recorded."
+#~ msgstr ""
+#~ "Parece que algunas muestras no tienen"
+#~ " registrada la información de la "
+#~ "muestra."
+
+#~ msgid "Samples (click on a barcode to provide collection information)"
+#~ msgstr ""
+#~ "Muestras (haga clic en el código "
+#~ "de barras para proporcionar la "
+#~ "información de la muestra)"
+
+#~ msgid "Collection date"
+#~ msgstr "Fecha de recolección"
+
+#~ msgid "Sample-specific survey"
+#~ msgstr "Cuestionario especifico de la muestra"
+
+#~ msgid "View Top Food Report"
+#~ msgstr "Ver Reporte de Alimentos Principales"
+
+#~ msgid "This sample has been received and cannot be removed."
+#~ msgstr "Esta muestra ha sido recibida y no puede ser eliminada."
+
+#~ msgid "Do I need to take more than one Food Frequency Questionnaire (FFQ)"
+#~ msgstr ""
+#~ "¿Necesito tomar más de un Cuestionario"
+#~ " de Frecuencia de Consumo de "
+#~ "Alimentos (FFQ)?"
+
+#~ msgid ""
+#~ "If you are taking all of your "
+#~ "samples at the same time, you will"
+#~ " only need to complete one. If "
+#~ "you are collecting samples over time "
+#~ "(e.g., once per week), then please "
+#~ "consider taking an FFQ per time "
+#~ "point. The FFQs provide valuable dietary"
+#~ " research data for the project, so"
+#~ " researchers can better understand the "
+#~ "relationship between the food you eat"
+#~ " and your microbes."
+#~ msgstr ""
+#~ "Si está recolectando todas sus muestras"
+#~ " al mismo tiempo, solo necesitará "
+#~ "completarlo una sola vez. Si está "
+#~ "recolectando sus muestras a lo largo "
+#~ "del tiempo (por ejemplo, una vez "
+#~ "por semana), considere tomar el FFQ "
+#~ "en un punto medio. El FFQ "
+#~ "proporciona valiosa información dietética al"
+#~ " proyecto de investigación, de modo "
+#~ "que los investigadores puedan comprender "
+#~ "mejor la relación entre los alimentos"
+#~ " que consume y sus microbios."
+
+#~ msgid ""
+#~ "The kit ID used to create your "
+#~ "account has unclaimed samples. To claim"
+#~ " samples from this kit, please click"
+#~ " \"List samples\". To claim samples "
+#~ "from another kit ID, please enter "
+#~ "it here and then click \"List "
+#~ "Samples\""
+#~ msgstr ""
+#~ "El Kit ID utilizado para crear su"
+#~ " cuenta tiene muestras no reclamadas. "
+#~ "Para reclamar muestras de este kit, "
+#~ "haga clic en \"Mostrar Muestras\". Para"
+#~ " reclamar muestras de otro Kit ID,"
+#~ " ingrese el ID aquí y luego "
+#~ "haga clic en \"Mostrar Muestras\":"
+
+#~ msgid "To add samples, please enter a kit ID here"
+#~ msgstr "Para añadir muestras, ingrese el ID de su kit aquí"
+
+#~ msgid "List Samples"
+#~ msgstr "Mostrar Muestras"
+
+#~ msgid "Select all samples that should be associated with this source"
+#~ msgstr "Seleccione todas las muestras que deben asociarse con esta fuente"
+
+#~ msgid "Claim Selected Samples"
+#~ msgstr "Reclame Muestras Seleccionadas"
+
+#~ msgid "Available optional surveys"
+#~ msgstr "Cuestionarios opcionales disponibles"
+
+#~ msgid "Start"
+#~ msgstr "Iniciar"
+
+#~ msgid "Completed surveys"
+#~ msgstr "Cuestionarios completados"
+
+#~ msgid ""
+#~ "Sources with one or more samples "
+#~ "assigned cannot be deleted. All samples"
+#~ " above must be removed prior to "
+#~ "deleting this source."
+#~ msgstr ""
+#~ "Las fuentes con una o más muestras"
+#~ " asignadas no se pueden eliminar. "
+#~ "Todas las muestras anteriores deben "
+#~ "eliminarse antes de eliminar esta "
+#~ "fuente."
+
+#~ msgid ""
+#~ "If you need to delete this source,"
+#~ " click the following button. Please "
+#~ "note, this action can NOT be "
+#~ "reversed."
+#~ msgstr ""
+#~ "Si necesita eliminar esta fuente, haga"
+#~ " clic en el siguiente botón. Tenga"
+#~ " en cuenta que esta acción NO "
+#~ "se puede revertir."
+
+#~ msgid "Delete Source"
+#~ msgstr "Eliminar Muestra"
+
+#~ msgid ""
+#~ "Thank you for your interest! Your "
+#~ "information has been saved, and we "
+#~ "will contact you via email soon."
+#~ msgstr ""
+#~ "¡Gracias por su interés! Su información"
+#~ " ha sido guardada, pronto nos "
+#~ "pondremos en contacto con usted por "
+#~ "correo electrónico."
+
+#~ msgid "Participant Survey"
+#~ msgstr "Cuestionario del Participante"
+
+#~ msgid "Progress"
+#~ msgstr "Avanzar"
+
+#~ msgid "Previous Section"
+#~ msgstr "Sección Previa"
+
+#~ msgid "Next Section"
+#~ msgstr "Sección Siguiente"
+
+#~ msgid "Submit Survey"
+#~ msgstr "Enviar Cuestionario"
+
+#~ msgid ""
+#~ "Please note: Once you've submitted this"
+#~ " survey, you'll be unable to edit "
+#~ "your answers."
+#~ msgstr ""
+#~ "Tenga en cuenta: una vez que haya"
+#~ " enviado este cuestionario, no podrá "
+#~ "editar sus respuestas."
+
+#~ msgid ""
+#~ "If you'd like to review or change"
+#~ " any of your responses, please press"
+#~ " the Cancel button. Otherwise, press "
+#~ "OK to submit your responses."
+#~ msgstr ""
+#~ "Si desea revisar o cambiar alguna "
+#~ "de sus respuestas, presione el botón "
+#~ "Cancelar. De lo contrario, presione OK"
+#~ " para enviar sus respuestas."
+
+#~ msgid "This warning will only appear once."
+#~ msgstr "Esta advertencia solo aparecerá una vez."
+
+#~ msgid ""
+#~ "It looks like you are trying to"
+#~ " submit this survey without answering "
+#~ "any questions. If you would prefer "
+#~ "not to complete this survey, please "
+#~ "return to the homepage."
+#~ msgstr ""
+#~ "Parece que está intentando enviar esta"
+#~ " encuesta sin responder ninguna pregunta."
+#~ " Si prefiere no completar esta "
+#~ "encuesta, regrese a la página de "
+#~ "inicio."
+
+#~ msgid "Step"
+#~ msgstr "Paso"
+
+#~ msgid "of"
+#~ msgstr "de"
+
+#~ msgid "Please correct the fields with errors."
+#~ msgstr "Por favor corrija los campos con errores."
+
+#~ msgid "Save & Come Back Later"
+#~ msgstr ""
+
+#~ msgid "Account Details"
+#~ msgstr "Información de la cuenta"
+
+#~ msgid "Please agree to the Privacy Statement and Terms and Conditions"
+#~ msgstr ""
+
+#~ msgid "City"
+#~ msgstr "Ciudad"
+
+#~ msgid "State"
+#~ msgstr "Estado"
+
+#~ msgid "Zip Code"
+#~ msgstr "Código Postal"
+
+#~ msgid "City/Town"
+#~ msgstr "Ciudad/Pueblo"
+
+#~ msgid "County/State"
+#~ msgstr "Condado/Estado"
+
+#~ msgid "Postcode"
+#~ msgstr "Código Postal"
+
+#~ msgid "Dashboard"
+#~ msgstr ""
+
+#~ msgid "Email"
+#~ msgstr "Correo electrónico"
+
+#~ msgid "Prefer to use a different email account? You can change it "
#~ msgstr ""
-#~ "Si está interesado en otras oportunidades para participar en The Microsetta "
-#~ "Initiative, por favor visite nuestro sitio web."
+#~ "¿Prefiere usar una cuenta de correo "
+#~ "electrónico diferente? Usted puede cambiarla"
+#~ " "
+
+#~ msgid "here"
+#~ msgstr "aquí"
+
+#~ msgid "First Name"
+#~ msgstr "Primer nombre"
+
+#~ msgid "Last Name"
+#~ msgstr "Apellido"
+
+#~ msgid "Country"
+#~ msgstr "País"
+
+#~ msgid "United States"
+#~ msgstr "Estados Unidos"
+
+#~ msgid "United Kingdom"
+#~ msgstr "Reino Unido"
+
+#~ msgid "Mexico"
+#~ msgstr "México"
+
+#~ msgid "Spain"
+#~ msgstr "España"
+
+#~ msgid "Afghanistan"
+#~ msgstr "Afganistán"
+
+#~ msgid "Albania"
+#~ msgstr "Albania"
+
+#~ msgid "Algeria"
+#~ msgstr "Argelia"
+
+#~ msgid "Andorra"
+#~ msgstr "Andorra"
+
+#~ msgid "Angola"
+#~ msgstr "Angola"
+
+#~ msgid "Antarctica"
+#~ msgstr "Antártica"
+
+#~ msgid "Antigua and Barbuda"
+#~ msgstr "Antigua y Barbuda"
+
+#~ msgid "Argentina"
+#~ msgstr "Argentina"
+
+#~ msgid "Armenia"
+#~ msgstr "Armenia"
+
+#~ msgid "Australia"
+#~ msgstr "Australia"
+
+#~ msgid "Austria"
+#~ msgstr "Austria"
+
+#~ msgid "Azerbaijan"
+#~ msgstr "Azerbaiyán"
+
+#~ msgid "Bahamas"
+#~ msgstr "Bahamas"
+
+#~ msgid "Bahrain"
+#~ msgstr "Baréin"
+
+#~ msgid "Bangladesh"
+#~ msgstr "Bangladesh"
+
+#~ msgid "Barbados"
+#~ msgstr "Barbados"
+
+#~ msgid "Belarus"
+#~ msgstr "Bielorrusia"
+
+#~ msgid "Belgium"
+#~ msgstr "Bélgica"
+
+#~ msgid "Belize"
+#~ msgstr "Belice"
+
+#~ msgid "Benin"
+#~ msgstr "Benín"
+
+#~ msgid "Bermuda"
+#~ msgstr "Bermuda"
+
+#~ msgid "Bhutan"
+#~ msgstr "Bután"
+
+#~ msgid "Bolivia"
+#~ msgstr "Bolivia"
+
+#~ msgid "Bosnia and Herzegovina"
+#~ msgstr "Bosnia y Herzegovina"
+
+#~ msgid "Botswana"
+#~ msgstr "Botsuana"
+
+#~ msgid "Brazil"
+#~ msgstr "Brasil"
+
+#~ msgid "Brunei"
+#~ msgstr "Brunéi"
+
+#~ msgid "Bulgaria"
+#~ msgstr "Bulgaria"
+
+#~ msgid "Burkina Faso"
+#~ msgstr "Burkina Faso"
+
+#~ msgid "Burma"
+#~ msgstr "Birmania"
+
+#~ msgid "Burundi"
+#~ msgstr "Burundi"
+
+#~ msgid "Cambodia"
+#~ msgstr "Camboya"
+
+#~ msgid "Cameroon"
+#~ msgstr "Camerún"
+
+#~ msgid "Canada"
+#~ msgstr "Canada"
+
+#~ msgid "Cape Verde"
+#~ msgstr "Cabo Verde"
+
+#~ msgid "Central African Republic"
+#~ msgstr "República Centroafricana"
+
+#~ msgid "Chad"
+#~ msgstr "Chad"
+
+#~ msgid "Chile"
+#~ msgstr "Chile"
+
+#~ msgid "China"
+#~ msgstr "China"
+
+#~ msgid "Colombia"
+#~ msgstr "Colombia"
+
+#~ msgid "Comoros"
+#~ msgstr "Comoras"
+
+#~ msgid "Congo, Democratic Republic"
+#~ msgstr "Congo, República Democrática"
+
+#~ msgid "Congo, Republic of the"
+#~ msgstr "Congo, República del"
+
+#~ msgid "Costa Rica"
+#~ msgstr "Costa Rica"
+
+#~ msgid "Cote d'Ivoire"
+#~ msgstr "Costa de Marfil"
+
+#~ msgid "Croatia"
+#~ msgstr "Croacia"
+
+#~ msgid "Cuba"
+#~ msgstr "Cuba"
+
+#~ msgid "Cyprus"
+#~ msgstr "Chipre"
+
+#~ msgid "Czech Republic"
+#~ msgstr "República Checa"
+
+#~ msgid "Denmark"
+#~ msgstr "Dinamarca"
+
+#~ msgid "Djibouti"
+#~ msgstr "Yibuti"
+
+#~ msgid "Dominica"
+#~ msgstr "Dominicana"
+
+#~ msgid "Dominican Republic"
+#~ msgstr "República Dominicana"
+
+#~ msgid "East Timor"
+#~ msgstr "Timor Oriental"
+
+#~ msgid "Ecuador"
+#~ msgstr "Ecuador"
+
+#~ msgid "Egypt"
+#~ msgstr "Egipto"
+
+#~ msgid "El Salvador"
+#~ msgstr "El Salvador"
+
+#~ msgid "Equatorial Guinea"
+#~ msgstr "Guinea Ecuatorial"
+
+#~ msgid "Eritrea"
+#~ msgstr "Eritrea"
+
+#~ msgid "Estonia"
+#~ msgstr "Estonia"
+
+#~ msgid "Ethiopia"
+#~ msgstr "Etiopía"
+
+#~ msgid "Fiji"
+#~ msgstr "Fiyi"
+
+#~ msgid "Finland"
+#~ msgstr "Finlandia"
+
+#~ msgid "France"
+#~ msgstr "Francia"
+
+#~ msgid "Gabon"
+#~ msgstr "Gabón"
+
+#~ msgid "Gambia"
+#~ msgstr "Gambia"
+
+#~ msgid "Georgia"
+#~ msgstr "Georgia"
+
+#~ msgid "Germany"
+#~ msgstr "Alemania"
+
+#~ msgid "Ghana"
+#~ msgstr "Ghana"
+
+#~ msgid "Greece"
+#~ msgstr "Grecia"
+
+#~ msgid "Greenland"
+#~ msgstr "Groenlandia"
+
+#~ msgid "Grenada"
+#~ msgstr "Granada"
+
+#~ msgid "Guatemala"
+#~ msgstr "Guatemala"
+
+#~ msgid "Guinea"
+#~ msgstr "Guinea"
+
+#~ msgid "Guinea-Bissau"
+#~ msgstr "Guinea-Bisáu"
+
+#~ msgid "Guyana"
+#~ msgstr "Guayana"
+
+#~ msgid "Haiti"
+#~ msgstr "Haití"
+
+#~ msgid "Honduras"
+#~ msgstr "Honduras"
+
+#~ msgid "Hong Kong"
+#~ msgstr "Hong Kong"
+
+#~ msgid "Hungary"
+#~ msgstr "Hungría"
+
+#~ msgid "Iceland"
+#~ msgstr "Islandia"
+
+#~ msgid "India"
+#~ msgstr "India"
+
+#~ msgid "Indonesia"
+#~ msgstr "Indonesia"
+
+#~ msgid "Iran"
+#~ msgstr "Irán"
+
+#~ msgid "Iraq"
+#~ msgstr "Iraq"
+
+#~ msgid "Ireland"
+#~ msgstr "Irlanda"
+
+#~ msgid "Israel"
+#~ msgstr "Israel"
+
+#~ msgid "Italy"
+#~ msgstr "Italia"
+
+#~ msgid "Jamaica"
+#~ msgstr "Jamaica"
+
+#~ msgid "Japan"
+#~ msgstr "Japón"
+
+#~ msgid "Jordan"
+#~ msgstr "Jordán"
+
+#~ msgid "Kazakhstan"
+#~ msgstr "Kazajistán"
+
+#~ msgid "Kenya"
+#~ msgstr "Kenia"
+
+#~ msgid "Kiribati"
+#~ msgstr "Kiribati"
+
+#~ msgid "Korea North"
+#~ msgstr "Corea del Norte"
+
+#~ msgid "Korea South"
+#~ msgstr "Corea del Sur"
+
+#~ msgid "Kuwait"
+#~ msgstr "Kuwait"
+
+#~ msgid "Kyrgyzstan"
+#~ msgstr "Kirguistán"
+
+#~ msgid "Laos"
+#~ msgstr "Laos"
+
+#~ msgid "Latvia"
+#~ msgstr "Letonia"
+
+#~ msgid "Lebanon"
+#~ msgstr "Líbano"
+
+#~ msgid "Lesotho"
+#~ msgstr "Lesoto"
+
+#~ msgid "Liberia"
+#~ msgstr "Liberia"
+
+#~ msgid "Libya"
+#~ msgstr "Libia"
+
+#~ msgid "Liechtenstein"
+#~ msgstr "Liechtenstein"
+
+#~ msgid "Lithuania"
+#~ msgstr "Lituania"
+
+#~ msgid "Luxembourg"
+#~ msgstr "Luxemburgo"
+
+#~ msgid "Macedonia"
+#~ msgstr "Macedonia"
+
+#~ msgid "Madagascar"
+#~ msgstr "Madagascar"
+
+#~ msgid "Malawi"
+#~ msgstr "Malaui"
+
+#~ msgid "Malaysia"
+#~ msgstr "Malasia"
+
+#~ msgid "Maldives"
+#~ msgstr "Maldivas"
+
+#~ msgid "Mali"
+#~ msgstr "Malí"
+
+#~ msgid "Malta"
+#~ msgstr "Malta"
+
+#~ msgid "Marshall Islands"
+#~ msgstr "Islas Marshall"
+
+#~ msgid "Mauritania"
+#~ msgstr "Mauritania"
+
+#~ msgid "Mauritius"
+#~ msgstr "Mauritius"
+
+#~ msgid "Micronesia"
+#~ msgstr "Micronesia"
+
+#~ msgid "Moldova"
+#~ msgstr "Moldavia"
+
+#~ msgid "Mongolia"
+#~ msgstr "Mongolia"
+
+#~ msgid "Montenegro"
+#~ msgstr "Montenegro"
+
+#~ msgid "Morocco"
+#~ msgstr "Marruecos"
+
+#~ msgid "Monaco"
+#~ msgstr "Mónaco"
+
+#~ msgid "Mozambique"
+#~ msgstr "Mozambique"
+
+#~ msgid "Namibia"
+#~ msgstr "Namibia"
+
+#~ msgid "Nauru"
+#~ msgstr "Nauru"
+
+#~ msgid "Nepal"
+#~ msgstr "Nepal"
+
+#~ msgid "Netherlands"
+#~ msgstr "Países Bajos"
+
+#~ msgid "New Zealand"
+#~ msgstr "Nueva Zelanda"
+
+#~ msgid "Nicaragua"
+#~ msgstr "Nicaragua"
+
+#~ msgid "Niger"
+#~ msgstr "Níger"
+
+#~ msgid "Nigeria"
+#~ msgstr "Nigeria"
+
+#~ msgid "Norway"
+#~ msgstr "Noruega"
+
+#~ msgid "Oman"
+#~ msgstr "Omán"
+
+#~ msgid "Pakistan"
+#~ msgstr "Pakistán"
+
+#~ msgid "Panama"
+#~ msgstr "Panama"
+
+#~ msgid "Papua New Guinea"
+#~ msgstr "Papúa Nueva Guinea"
+
+#~ msgid "Paraguay"
+#~ msgstr "Paraguay"
+
+#~ msgid "Peru"
+#~ msgstr "Peru"
+
+#~ msgid "Philippines"
+#~ msgstr "Filipinas"
+
+#~ msgid "Poland"
+#~ msgstr "Polonia"
+
+#~ msgid "Portugal"
+#~ msgstr "Portugal"
+
+#~ msgid "Qatar"
+#~ msgstr "Qatar"
+
+#~ msgid "Romania"
+#~ msgstr "Rumania"
+
+#~ msgid "Russia"
+#~ msgstr "Rusia"
+
+#~ msgid "Rwanda"
+#~ msgstr "Ruanda"
+
+#~ msgid "Samoa"
+#~ msgstr "Samoa"
+
+#~ msgid "San Marino"
+#~ msgstr "San Marino"
+
+#~ msgid "Sao Tome"
+#~ msgstr "Santo Tomé y Príncipe"
+
+#~ msgid "Saudi Arabia"
+#~ msgstr "Arabia Saudita"
+
+#~ msgid "Senegal"
+#~ msgstr "Senegal"
+
+#~ msgid "Serbia"
+#~ msgstr "Serbia"
+
+#~ msgid "Seychelles"
+#~ msgstr "Seychelles"
+
+#~ msgid "Sierra Leone"
+#~ msgstr "Sierra Leona"
+
+#~ msgid "Singapore"
+#~ msgstr "Singapur"
+
+#~ msgid "Slovakia"
+#~ msgstr "Eslovaquia"
+
+#~ msgid "Slovenia"
+#~ msgstr "Eslovenia"
+
+#~ msgid "Solomon Islands"
+#~ msgstr "Islas Salomón"
+
+#~ msgid "Somalia"
+#~ msgstr "Somalia"
+
+#~ msgid "South Africa"
+#~ msgstr "Sudáfrica"
+
+#~ msgid "Sri Lanka"
+#~ msgstr "Sri Lanka"
+
+#~ msgid "Sudan"
+#~ msgstr "Sudán"
+
+#~ msgid "Suriname"
+#~ msgstr "Surinam"
+
+#~ msgid "Swaziland"
+#~ msgstr "Suazilandia"
+
+#~ msgid "Sweden"
+#~ msgstr "Suecia"
+
+#~ msgid "Switzerland"
+#~ msgstr "Suiza"
+
+#~ msgid "Syria"
+#~ msgstr "Siria"
+
+#~ msgid "Taiwan"
+#~ msgstr "Taiwán"
+
+#~ msgid "Tajikistan"
+#~ msgstr "Tayikistán"
+
+#~ msgid "Tanzania"
+#~ msgstr "Tanzania"
+
+#~ msgid "Thailand"
+#~ msgstr "Tailandia"
+
+#~ msgid "Togo"
+#~ msgstr "Togo"
+
+#~ msgid "Tonga"
+#~ msgstr "Tonga"
+
+#~ msgid "Trinidad and Tobago"
+#~ msgstr "Trinidad y Tobago"
+
+#~ msgid "Tunisia"
+#~ msgstr "Túnez"
+
+#~ msgid "Turkey"
+#~ msgstr "Turquia"
+
+#~ msgid "Turkmenistan"
+#~ msgstr "Turkmenistán"
+
+#~ msgid "Uganda"
+#~ msgstr "Uganda"
+
+#~ msgid "Ukraine"
+#~ msgstr "Ucrania"
+
+#~ msgid "United Arab Emirates"
+#~ msgstr "Emiratos Árabes Unidos"
+
+#~ msgid "Uruguay"
+#~ msgstr "Uruguay"
+
+#~ msgid "Uzbekistan"
+#~ msgstr "Uzbekistán"
+
+#~ msgid "Vanuatu"
+#~ msgstr "Vanuatu"
+
+#~ msgid "Venezuela"
+#~ msgstr "Venezuela"
+
+#~ msgid "Viet nam"
+#~ msgstr "Vietnam"
+
+#~ msgid "Yemen"
+#~ msgstr "Yemen"
+
+#~ msgid "Zambia"
+#~ msgstr "Zambia"
+
+#~ msgid "Zimbabwe"
+#~ msgstr "Zimbabue"
+
+#~ msgid "Address Line 1"
+#~ msgstr "Dirección 1"
+
+#~ msgid "Address Line 2"
+#~ msgstr "Dirección 2"
+
+#~ msgid "Preferred language for future communications"
+#~ msgstr "Idioma preferido para futuras comunicaciones"
+
+#~ msgid ""
+#~ "I agree to the Privacy Statement and accept"
+#~ " the Terms and "
+#~ "Conditions "
+#~ msgstr ""
+
+#~ msgid "Next"
+#~ msgstr "Siguiente"
+
+#~ msgid "Save"
+#~ msgstr "Guardar"
+
+#~ msgid "Danger zone"
+#~ msgstr "Zona de riesgo"
+
+#~ msgid "Delete or scrub the account."
+#~ msgstr "Eliminar o borrar la cuenta."
+
+#~ msgid ""
+#~ "If the account has any samples "
+#~ "associated, the account and sources will"
+#~ " be scrubbed, meaning all free text"
+#~ " and identifiable information is removed."
+#~ msgstr ""
+#~ "Si la cuenta tiene muestras asociadas,"
+#~ " la cuenta y la fuente serán "
+#~ "borradas, lo que significa que se "
+#~ "eliminará todo el texto libre y la"
+#~ " información identificable."
+
+#~ msgid "Otherwise, the account and any sources will be deleted"
+#~ msgstr "De lo contrario, la cuenta y cualquier fuente serán eliminadas"
+
+#~ msgid ""
+#~ "IMPORTANT: you must manually delete the"
+#~ " email from Authrocket and other "
+#~ "external services like MyEmma to "
+#~ "complete the process"
+#~ msgstr ""
+#~ "IMPORTANTE: debe eliminar manualmente el "
+#~ "correo electrónico de Authrocket y otros"
+#~ " servicios externos como MyEmma para "
+#~ "completar el proceso"
+
+#~ msgid "ACCOUNT DELETION CANNOT BE UNDONE"
+#~ msgstr "LA ELIMINACIÓN DE LA CUENTA NO SE PUEDE REVERTIR"
+
+#~ msgid "Delete Account"
+#~ msgstr "Eliminar cuenta"
+
+#~ msgid "Account"
+#~ msgstr "Cuenta"
+
+#~ msgid "Active Profiles"
+#~ msgstr ""
+
+#~ msgid "Go to My Profile"
+#~ msgstr ""
+
+#~ msgid "Add New Profile"
+#~ msgstr ""
+
+#~ msgid "Select the type of profile you would like to create."
+#~ msgstr ""
+
+#~ msgid "Human Profile"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Share your diet, health, and lifestyle"
+#~ " details to help discover more about"
+#~ " how this affects the human "
+#~ "microbiome."
+#~ msgstr ""
+
+#~ msgid "Add Human Profile"
+#~ msgstr ""
+
+#~ msgid "Pet Profile"
+#~ msgstr "No provisto"
+
+#~ msgid "Share sample(s) from an animal (e.g. fecal, saliva, skin, etc.)"
+#~ msgstr "(por ejemplo, heces, saliva, piel, etc.)"
+
+#~ msgid "Coming Soon"
+#~ msgstr "Hong Kong"
+
+#~ msgid "Environment Profile"
+#~ msgstr "ambiental"
+
+#~ msgid "Share sample(s) from the environment (e.g. kitchen counter, food, etc.)"
+#~ msgstr ""
+
+#~ msgid "Admin Activation Codes"
+#~ msgstr "Códigos de Activación del Administrador"
+
+#~ msgid "Search by Email"
+#~ msgstr "Buscar por Correo Electrónico"
+
+#~ msgid "Search"
+#~ msgstr "Buscar"
+
+#~ msgid "Search by Activation Code"
+#~ msgstr "Buscar por Código de Activación"
+
+#~ msgid "Activation Code"
+#~ msgstr "Código de Activación"
+
+#~ msgid "Generate Activation Code"
+#~ msgstr "Generar Código de Activación"
+
+#~ msgid "Generate"
+#~ msgstr "Generar"
+
+#~ msgid "Generate + Send Email"
+#~ msgstr "Generar + Enviar Correo Electrónico"
+
+#~ msgid "Generate Activation Codes from CSV File"
+#~ msgstr "Generar Códigos de Activación desde un Archivo CSV"
+
+#~ msgid "CSV File of Emails"
+#~ msgstr "Archivo CSV de correos electrónicos"
+
+#~ msgid "Search Results"
+#~ msgstr "Buscar Resultados"
+
+#~ msgid "Code"
+#~ msgstr "Código"
+
+#~ msgid "Activated"
+#~ msgstr "Activado"
+
+#~ msgid "No accounts found"
+#~ msgstr "No se encontraron cuentas"
+
+#~ msgid "Admin Address Verification"
+#~ msgstr "Verificación de la dirección del administrador"
+
+#~ msgid "Verify CSV File of Addresses"
+#~ msgstr "Verificar archivo CSV de direcciones"
+
+#~ msgid "CSV File"
+#~ msgstr "Archivo CSV"
+
+#~ msgid "Verify"
+#~ msgstr "Verificar"
+
+#~ msgid "Verify Single Address"
+#~ msgstr "Verificar Dirección Única"
+
+#~ msgid "Address 1"
+#~ msgstr "Dirección 1"
+
+#~ msgid "Address 2"
+#~ msgstr "Dirección 2"
+
+#~ msgid "Address 3"
+#~ msgstr "Dirección 3"
+
+#~ msgid "Postal Code"
+#~ msgstr "Código Postal"
+
+#~ msgid "Latitude"
+#~ msgstr "Latitud"
+
+#~ msgid "Longitude"
+#~ msgstr "Longitud"
+
+#~ msgid "ADMINISTRATOR BARCODE SEARCH"
+#~ msgstr "Búsqueda de Código de Barras del Administrador"
+
+#~ msgid "Download CSV"
+#~ msgstr "Descargar CSV"
+
+#~ msgid "Download Excel"
+#~ msgstr "Descargar Excel"
+
+#~ msgid "Search Qiita"
+#~ msgstr "Buscar Qiita"
+
+#~ msgid "Barcode"
+#~ msgstr "Código de barras"
+
+#~ msgid "Admin Campaign Edit"
+#~ msgstr "Editar Campaña del Administrador"
+
+#~ msgid "Edit Campaign"
+#~ msgstr "Editar Campaña"
+
+#~ msgid "Campaign ID"
+#~ msgstr "ID de campaña"
+
+#~ msgid "Campaign Link"
+#~ msgstr "Enlace de campaña"
+
+#~ msgid "Associated Projects"
+#~ msgstr "Proyectos Asociados"
+
+#~ msgid "Add Campaign"
+#~ msgstr "Añadir Campaña"
+
+#~ msgid "Campaign Language"
+#~ msgstr "Idioma de Campaña"
+
+#~ msgid "Title"
+#~ msgstr "Título"
+
+#~ msgid "Instructions"
+#~ msgstr "Instrucciones"
+
+#~ msgid "Alt Campaign Language"
+#~ msgstr "Idioma Alternativo de la Campaña"
+
+#~ msgid "Title in Alt Language"
+#~ msgstr "Título en Idioma Alternativo"
+
+#~ msgid "Instructions in Alt Language"
+#~ msgstr "Instrucciones en Idioma Alternativo"
+
+#~ msgid "Current Header Image"
+#~ msgstr "Imagen de Encabezado Actual"
+
+#~ msgid "Upload New Header Image"
+#~ msgstr "Cargar Nueva Imagen de Encabezado"
+
+#~ msgid "Permitted Countries"
+#~ msgstr "Países Permitidos"
+
+#~ msgid "Accepting Participants"
+#~ msgstr "Aceptando Participantes"
+
+#~ msgid "Send THDMI Confirmation Email"
+#~ msgstr ""
+
+#~ msgid "Force Primary Language on Form"
+#~ msgstr ""
+
+#~ msgid "Submit"
+#~ msgstr "Enviar"
+
+#~ msgid "Campaigns"
+#~ msgstr "Campañas"
+
+#~ msgid "Campaign Name"
+#~ msgstr "Nombre de Campaña"
+
+#~ msgid "No campaigns found"
+#~ msgstr "No campañas encontradas"
+
+#~ msgid "Admin FFQ Codes"
+#~ msgstr ""
+
+#~ msgid "Generate Single Code"
+#~ msgstr ""
+
+#~ msgid "Generate Multiple Codes and download CSV File"
+#~ msgstr ""
+
+#~ msgid "Number of Codes"
+#~ msgstr ""
+
+#~ msgid "ADMINISTRATOR MODE"
+#~ msgstr "Modo Administrador"
+
+#~ msgid "Account ID"
+#~ msgstr "ID de la Cuenta"
+
+#~ msgid "Please enter a valid phone number."
+#~ msgstr "Por favor ingrese su número de teléfono."
+
+#~ msgid "Please enter your street address."
+#~ msgstr "Por favor ingrese su dirección postal."
+
+#~ msgid "Please enter your city."
+#~ msgstr "Por favor ingrese su ciudad."
+
+#~ msgid "Please select your state."
+#~ msgstr "Por favor ingrese su estado."
+
+#~ msgid "Please enter your postal code."
+#~ msgstr "Por favor ingrese su código postal."
+
+#~ msgid "Edit Interested User"
+#~ msgstr "Editar Usuario Interesado"
+
+#~ msgid ""
+#~ "CAUTION: Edits made will NOT go "
+#~ "through address verification - proceed "
+#~ "carefully"
+#~ msgstr ""
+#~ "PRECAUCIÓN: Los cambios realizados NO "
+#~ "pasarán por la verificación de la "
+#~ "dirección; avanzar con cuidado"
+
+#~ msgid "Phone"
+#~ msgstr "Teléfono"
+
+#~ msgid "Address Type"
+#~ msgstr "Dirección de Envio"
+
+#~ msgid "Interested Users"
+#~ msgstr "Usuarios Interesados"
+
+#~ msgid "Converted to Account"
+#~ msgstr "Convertido a Cuenta"
+
+#~ msgid "No interested users found"
+#~ msgstr "No se encontraron usuarios interesados"
+
+#~ msgid "ADMINISTRATOR SYSTEM PANEL"
+#~ msgstr "PANEL DEL SISTEMA DEL ADMINISTRADOR"
+
+#~ msgid "Set System Message"
+#~ msgstr "Establecer mensaje del sistema"
+
+#~ msgid "System Message"
+#~ msgstr "Mensaje del Sistema"
+
+#~ msgid "primary"
+#~ msgstr "primario"
+
+#~ msgid "secondary"
+#~ msgstr "secundario"
+
+#~ msgid "success"
+#~ msgstr "éxitoso"
+
+#~ msgid "danger"
+#~ msgstr "peligro"
+
+#~ msgid "warning"
+#~ msgstr "advertencia"
+
+#~ msgid "info"
+#~ msgstr "información"
+
+#~ msgid "light"
+#~ msgstr "claro"
+
+#~ msgid "dark"
+#~ msgstr "oscuro"
+
+#~ msgid "Consent Documents"
+#~ msgstr ""
+
+#~ msgid "Survey"
+#~ msgstr "Turquia"
+
+#~ msgid "Biospecimen"
+#~ msgstr ""
+
+#~ msgid "View"
+#~ msgstr "Ver"
+
+#~ msgid "Create Non-human Source"
+#~ msgstr "Crear Fuente No-Humana"
+
+#~ msgid "Creating Source..."
+#~ msgstr "Creando fuente..."
+
+#~ msgid "Environment name (e.g., microwave)"
+#~ msgstr "Nombre del entorno (por ejemplo, microondas)"
+
+#~ msgid "Environment description (optional)"
+#~ msgstr "Descripción del entorno (opcional)"
+
+#~ msgid "Create Source"
+#~ msgstr "Crear una Fuente"
+
+#~ msgid "Awaiting Email Confirmation"
+#~ msgstr "Esperando Confirmación por Correo Electrónico"
+
+#~ msgid "Check your email inbox"
+#~ msgstr "Revise la bandeja de entrada de su correo electrónico"
+
+#~ msgid ""
+#~ "To complete your verification, click on"
+#~ " the link in the email AuthRocket "
+#~ "has sent to"
+#~ msgstr ""
+#~ "Para completar su verificación, haga "
+#~ "clic en el enlace del correo "
+#~ "electrónico que AuthRocket ha enviado a"
+
+#~ msgid "Waiting for you to confirm"
+#~ msgstr "Esperando su confirmación"
+
+#~ msgid "Please check both your spam and inbox"
+#~ msgstr "Por favor revise sus correos no deseados y su bandeja de entrada"
+
+#~ msgid "AuthRocket is our authentication service"
+#~ msgstr "AuthRocket es nuestro servicio de autenticación"
+
+#~ msgid "Email wrong or didn't receive an email?"
+#~ msgstr "Correo electrónico incorrecto o no recibió un correo electrónico?"
+
+#~ msgid "Go to your AuthRocket Account"
+#~ msgstr "Vaya a su cuenta de AuthRocket"
+
+#~ msgid "to update your email or resend a verification email"
+#~ msgstr ""
+#~ "para actualizar su correo electrónico o"
+#~ " reenviar un correo electrónico de "
+#~ "verificación"
+
+#~ msgid "You can close this browser tab!"
+#~ msgstr "¡Puede cerrar esta pestaña del navegador!"
+
+#~ msgid ""
+#~ "After email verification, a new tab "
+#~ "will automatically open, and you will"
+#~ " proceed with filling out your "
+#~ "account details"
+#~ msgstr ""
+#~ "Después de la verificación del correo"
+#~ " electrónico, se abrirá automáticamente una"
+#~ " nueva pestaña, y usted podrá seguir"
+#~ " ingresando la información de su "
+#~ "cuenta"
+
+#~ msgid "Embedded PDF"
+#~ msgstr "PDF incorporado"
+
+#~ msgid "This report is generated by a third party."
+#~ msgstr ""
+#~ "Este reporte es generado por una "
+#~ "tercera entidad sin información sobre "
+#~ "edad, altura o peso."
+
+#~ msgid "Emperor Playground"
+#~ msgstr "Emperor Playground"
+
+#~ msgid "PCOA URL"
+#~ msgstr "PCOA URL"
+
+#~ msgid "Go!"
+#~ msgstr "Ir!"
+
+#~ msgid "Error Page"
+#~ msgstr "Error en la Página"
+
+#~ msgid ""
+#~ "An error seemed to have occurred "
+#~ "(see below). It is most likely our"
+#~ " fault. We are actively modifying our"
+#~ " infrastructure to support COVID-19 "
+#~ "research, and we're still in the "
+#~ "process of handling the different type"
+#~ " of scenarios that can happen on "
+#~ "a website. We apologize for any "
+#~ "inconvenience."
+#~ msgstr ""
+#~ "Parece que se ha producido un "
+#~ "error (véase a continuación). Lo más "
+#~ "probable es que sea un error "
+#~ "nuestro. Estamos modificando nuestra "
+#~ "infraestructura para respaldar la "
+#~ "investigación de COVID-19 y todavía "
+#~ "estamos en el proceso de manejar "
+#~ "los diferentes tipos de escenarios que"
+#~ " pueden ocurrir en un sitio web. "
+#~ "Nos disculpamos por cualquier inconveniente."
+
+#~ msgid "If you have any concerns, please email us at"
+#~ msgstr "Si tiene alguna duda, por favor envíenos un correo electrónico a"
+
+#~ msgid "and please note the error below"
+#~ msgstr "y por favor muéstrenos el error que le apareció"
+
+#~ msgid "Error"
+#~ msgstr "Error"
+
+#~ msgid "Home"
+#~ msgstr "Inicio"
+
+#~ msgid "Welcome!"
+#~ msgstr "¡Bienvenido!"
+
+#~ msgid "Sign Up"
+#~ msgstr "Registrarse"
+
+#~ msgid "Log In"
+#~ msgstr "Iniciar sesión"
+
+#~ msgid "My Kits"
+#~ msgstr ""
+
+#~ msgid "KitID"
+#~ msgstr "Haití"
+
+#~ msgid "View Results"
+#~ msgstr "Resultados"
+
+#~ msgid ""
+#~ "Currently, \"My Kits\" is unavailable in"
+#~ " your country or region. We apologize"
+#~ " for any inconvenience."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Click on the following link if you"
+#~ " would like to contribute to receive"
+#~ " a kit"
+#~ msgstr ""
+
+#~ msgid "Get a Kit"
+#~ msgstr ""
+
+#~ msgid "Have a KitID"
+#~ msgstr ""
+
+#~ msgid "Sample Received - Results Pending"
+#~ msgstr ""
+
+#~ msgid "To register your kit, enter your Kit ID below"
+#~ msgstr ""
+
+#~ msgid "Register Kit"
+#~ msgstr ""
+
+#~ msgid "Which barcode(s) are you using from this kit (select all that apply)?"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Each collection tube you receive has "
+#~ "a unique barcode printed on the "
+#~ "side."
+#~ msgstr ""
+
+#~ msgid "1. Select the barcode(s) you are using"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "2. Add the date and time of "
+#~ "sample collection and select the sample"
+#~ " type taken."
+#~ msgstr ""
+
+#~ msgid "Important"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "The sample cannot be processed in "
+#~ "the lab until this information is "
+#~ "complete."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Keep a record of these details. "
+#~ "The barcode is needed to resolve "
+#~ "any issues you may have with your"
+#~ " sample collection."
+#~ msgstr ""
+
+#~ msgid "What is the barcode and why is it important?"
+#~ msgstr ""
+
+#~ msgid "Confirm"
+#~ msgstr ""
+
+#~ msgid "MyFoodRepo unavailable"
+#~ msgstr "MyFoodRepo no disponible"
+
+#~ msgid "MyFoodRepo is currently unavailabile"
+#~ msgstr "MyFoodRepo no está disponible en este momento"
+
+#~ msgid ""
+#~ "We apologize, but unfortunately MyFoodRepo "
+#~ "is not available at this time. "
+#~ "Please check back in a few days"
+#~ " and try again."
+#~ msgstr ""
+#~ "Lo sentimos, pero desafortunadamente "
+#~ "MyFoodRepo no está disponible en este"
+#~ " momento. Vuelva a revisar en unos"
+#~ " días e inténtelo de nuevo."
+
+#~ msgid ""
+#~ "MyFoodRepo is human curated to ensure"
+#~ " the highest accuracy in reported "
+#~ "dietary detail. Because the process is"
+#~ " not fully automated, we need to "
+#~ "limit the number of concurrent users "
+#~ "who take part. We apologize for "
+#~ "the inconvenience."
+#~ msgstr ""
+#~ "MyFoodRepo es dirigido por humanos para"
+#~ " garantizar una mayor precisión en la"
+#~ " información dietética reportada. Debido a"
+#~ " que el proceso no está completamente"
+#~ " automatizado, debemos limitar la cantidad"
+#~ " de usuarios que participan. Pedimos "
+#~ "disculpas por las molestias."
+
+#~ msgid "Back to Samples"
+#~ msgstr "Volver a las Muestras"
+
+#~ msgid "Consent"
+#~ msgstr "Consentimiento Informado"
+
+#~ msgid "Saving..."
+#~ msgstr "Guardando..."
+
+#~ msgid "Please confirm that you have read this form."
+#~ msgstr ""
+
+#~ msgid "Please enter the participant name."
+#~ msgstr "Por favor ingrese su apellido."
+
+#~ msgid "Please enter the parent or guardian name."
+#~ msgstr "Por favor ingrese su apellido."
+
+#~ msgid "Please confirm that you will be in this study."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Please confirm that the participant is"
+#~ " voluntarily and knowingly giving consent."
+#~ msgstr ""
+
+#~ msgid "Please enter the name of the person obtaining assent."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "It looks like you are creating a"
+#~ " new profile that may be similar "
+#~ "or the same as an existing "
+#~ "profile. If this is the same "
+#~ "person as an existing profile, please"
+#~ " consider providing new samples or "
+#~ "survey responses under that profile."
+#~ msgstr ""
+
+#~ msgid "I Accept"
+#~ msgstr "Acepto"
+
+#~ msgid "Biospecimen Consent Form"
+#~ msgstr ""
+
+#~ msgid "Data Consent Form"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Signature and agreement of this consent"
+#~ " form is required to process your "
+#~ "sample(s)."
+#~ msgstr ""
+
+#~ msgid "Select age range of participant"
+#~ msgstr ""
+
+#~ msgid "https://oag.ca.gov/sites/all/files/agweb/pdfs/research/bill_of_rights.pdf"
+#~ msgstr "https://oag.ca.gov/sites/all/files/agweb/pdfs/research/bill_of_rights.pdf"
+
+#~ msgid "Cancel"
+#~ msgstr "Francia"
+
+#~ msgid "Warning"
+#~ msgstr "advertencia"
+
+#~ msgid "Return to Home Page"
+#~ msgstr ""
+
+#~ msgid "Proceed with Creating New Source"
+#~ msgstr ""
+
+#~ msgid "Sample Results"
+#~ msgstr "Resultados de la muestra"
+
+#~ msgid "11 to 20"
+#~ msgstr "11 a 20"
+
+#~ msgid "21 to 30"
+#~ msgstr "21 a 30"
+
+#~ msgid "5-6 hours"
+#~ msgstr "5-6 horas"
+
+#~ msgid "6 to 10"
+#~ msgstr "6 a 10"
+
+#~ msgid "6-7 hours"
+#~ msgstr "6-7 horas"
+
+#~ msgid "7-8 hours"
+#~ msgstr "7-8 horas"
+
+#~ msgid "8 or more hours"
+#~ msgstr "8 o más horas"
+
+#~ msgid "Daily"
+#~ msgstr "Diario"
+
+#~ msgid "Less than 5"
+#~ msgstr "Menos de 5"
+
+#~ msgid "Less than 5 hours"
+#~ msgstr "Menos de 5 horas"
+
+#~ msgid "More than 30"
+#~ msgstr "Más de 30 horas"
+
+#~ msgid "Never"
+#~ msgstr "Nunca"
+
+#~ msgid "Not provided"
+#~ msgstr "No provisto"
+
+#~ msgid "Occasionally (1-2 times/week)"
+#~ msgstr "Ocasionalmente (1-2 veces/semana)"
+
+#~ msgid "Rarely (a few times/month)"
+#~ msgstr "Raramente (algunas veces/mes)"
+
+#~ msgid "Rarely (less than once/week)"
+#~ msgstr "Rara vez (menos de una vez/semana)"
+
+#~ msgid "Regularly (3-5 times/week)"
+#~ msgstr "Regularmente (3-5 veces/semana)"
+
+#~ msgid "Microbiomes Across the Body"
+#~ msgstr "Microbiomas por todo el cuerpo"
+
+#~ msgid ""
+#~ "In this map, we've placed your "
+#~ "sample relative to all the other "
+#~ "samples we have in Microsetta. As "
+#~ "you can see, there are a few "
+#~ "different types of samples people have"
+#~ " contributed, and the microbial "
+#~ "configurations present can be REALLY "
+#~ "different."
+#~ msgstr ""
+#~ "En este mapa, hemos colocado su "
+#~ "muestra en relación con todas las "
+#~ "demás muestras que tenemos en "
+#~ "Microsetta. Como puede ver, hay "
+#~ "diferentes tipos de muestras que las "
+#~ "personas han contribuido, y las "
+#~ "configuraciones microbianas presentes pueden "
+#~ "ser REALMENTE diferentes."
+
+#~ msgid "Microbiomes Across the World"
+#~ msgstr "Microbiomas en todo el mundo"
+
+#~ msgid ""
+#~ "Researchers have noted large differences "
+#~ "in our microbiomes depending on where"
+#~ " we live. The reason WHY is not"
+#~ " well understood, but we suspect "
+#~ "factors such as diet or environmental"
+#~ " exposures (e.g., plants, what's in "
+#~ "your house, pollution, how often you "
+#~ "come in contact with soil, etc) "
+#~ "may be be major factors."
+#~ msgstr ""
+#~ "Los investigadores han notado grandes "
+#~ "diferencias en nuestros microbiomas según "
+#~ "el lugar donde vivimos. No se "
+#~ "conocen bien las razones de ello, "
+#~ "pero sospechamos que los factores como"
+#~ " la dieta o la exposición ambiental"
+#~ " (por ejemplo, las plantas, lo que"
+#~ " hay en su casa, la contaminación,"
+#~ " la frecuencia con la que entra "
+#~ "en contacto con el suelo, etc.) "
+#~ "pueden ser factores importantes."
+
+#~ msgid ""
+#~ "Researchers do not know how much "
+#~ "these differences matter! They certainly "
+#~ "may."
+#~ msgstr "¡Los investigadores no saben cuánto importan estas diferencias!"
+
+#~ msgid "Microbiomes Across the Lifespan"
+#~ msgstr "Microbiomas a lo largo de la vida"
+
+#~ msgid ""
+#~ "One major factor associated with gut "
+#~ "microbiomes is the age of the "
+#~ "individual, emphasized here by life "
+#~ "stages."
+#~ msgstr ""
+#~ "Un factor importante asociado con el "
+#~ "microbioma intestinal es la edad del "
+#~ "individuo, enfatizada aquí por las "
+#~ "diferentes etapas de la vida."
+
+#~ msgid ""
+#~ "Interestingly, infants are relatively similar"
+#~ " microbially regardless of where they "
+#~ "were born. But, as individuals age, "
+#~ "it seems like their microbiomes reflect"
+#~ " regional or population differences."
+#~ msgstr ""
+#~ "Curiosamente, los bebés son relativamente "
+#~ "similares desde el punto de vista "
+#~ "microbiano, independientemente de dónde hayan"
+#~ " nacido. Pero, a medida que las "
+#~ "personas envejecen, parece que sus "
+#~ "microbiomas reflejan diferencias regionales o"
+#~ " de población."
+
+#~ msgid "Microbiomes in the Environment"
+#~ msgstr "Microbiomas en el Medio Ambiente"
+
+#~ msgid ""
+#~ "Microbes are EVERYWHERE though! Using "
+#~ "these same techniques described above, "
+#~ "we compared your microbiome to samples"
+#~ " collected from all over the surfaces"
+#~ " from a brand new hospital."
+#~ msgstr ""
+#~ "¡Los microbios están EN TODAS PARTES!"
+#~ " Usando las técnicas descritas "
+#~ "anteriormente, nosotros comparamos su "
+#~ "microbioma con muestras recolectadas de "
+#~ "todas las superficies de un hospital "
+#~ "nuevo."
+
+#~ msgid ""
+#~ "As you can see, skin samples tend"
+#~ " to more closely resemble those from"
+#~ " the built environment, which makes "
+#~ "sense as skin cells are constantly "
+#~ "shedding from you."
+#~ msgstr ""
+#~ "Como puede ver, las muestras de la"
+#~ " piel tienden a parecerse más a "
+#~ "las del “entorno construido”, lo que "
+#~ "tiene sentido ya que las células "
+#~ "de la piel se desprenden constantemente"
+#~ " de usted."
+
+#~ msgid "The Microsetta Initiative"
+#~ msgstr "The Microsetta Initiative"
+
+#~ msgid "Publication link"
+#~ msgstr "Enlace de la Publicación"
+
+#~ msgid "Data access (Qiita study"
+#~ msgstr "Acceso de datos (estudio Qiita"
+
+#~ msgid "Download the spreadsheet"
+#~ msgstr "Descargar la hoja de cálculo"
+
+#~ msgid ""
+#~ "The broadest classification like Bacteria, "
+#~ "Archaea and Eukaryokes (what humans "
+#~ "are!)"
+#~ msgstr ""
+#~ "La clasificación más amplia como las "
+#~ "Bacterias, Archaea y Eucariotas (¡lo que"
+#~ " son los humanos!)"
+
+#~ msgid ""
+#~ "Within the kingdom Eukarya, this is "
+#~ "like the difference between humans and"
+#~ " plants"
+#~ msgstr ""
+#~ "Dentro del reino Eukarya, esto es "
+#~ "como la diferencia entre los humanos "
+#~ "y las plantas"
+
+#~ msgid "Within the phylum Chordata, this is along the lines of humans and fish"
+#~ msgstr "Dentro del filo Chordata, esto es similar a los humanos y los peces"
+
+#~ msgid ""
+#~ "Within the class Mammalia, this is "
+#~ "like the difference between whales and"
+#~ " a dogs"
+#~ msgstr ""
+#~ "Dentro de la clase Mammalia, esto "
+#~ "es como la diferencia entre las "
+#~ "ballenas y los perros"
+
+#~ msgid "With the order Carnivora are the families for dogs and cats"
+#~ msgstr "Con la orden Carnivora están las familias de perros y gatos"
+
+#~ msgid ""
+#~ "Within the family Canidae, you would "
+#~ "find a genus for foxes and one "
+#~ "for wolves"
+#~ msgstr ""
+#~ "Dentro de la familia Canidae, encontrará"
+#~ " un género para zorros y otro "
+#~ "para lobos"
+
+#~ msgid "Unspecified"
+#~ msgstr "Indeterminado"
+
+#~ msgid "chose not to provide their age"
+#~ msgstr "optó por no proporcionar su edad"
+
+#~ msgid "is"
+#~ msgstr "es"
+
+#~ msgid "years old"
+#~ msgstr "años"
+
+#~ msgid "chose not to say how many sweets they eat"
+#~ msgstr "optó por no decir cuántos dulces comen"
+
+#~ msgid "eats sweets"
+#~ msgstr "come dulces"
+
+#~ msgid "eats more sugary sweets than you"
+#~ msgstr "come más dulces que usted"
+
+#~ msgid "eats fewer sugary sweets than you"
+#~ msgstr "come menos dulces que usted"
+
+#~ msgid "eats about the same number of sugary sweets as you"
+#~ msgstr "come el mismo número de dulces que usted"
+
+#~ msgid "Rank Distributions"
+#~ msgstr "Distribucion por Rango"
+
+#~ msgid "My Sample"
+#~ msgstr "Mi Muestra"
+
+#~ msgid "How abundant are my microbes compared everyone in Microsetta?"
+#~ msgstr ""
+#~ "¿Qué tan abundantes son mis microbios"
+#~ " en comparación con los demás en "
+#~ "Microsetta?"
+
+#~ msgid "Common types of microbes"
+#~ msgstr "Tipos comunes de microbios"
+
+#~ msgid "Least Abundant"
+#~ msgstr "Menos Abundante"
+
+#~ msgid "Most Abundant"
+#~ msgstr "Más abundante"
+
+#~ msgid ""
+#~ "whole genome sequencing, a technique "
+#~ "that produces a large number of "
+#~ "small DNA sequences from all of "
+#~ "the microbial genomes in your sample."
+#~ " With enough sequences you can even"
+#~ " see the variation that exists "
+#~ "between microbes of the same species."
+#~ msgstr ""
+#~ "secuenciación del genoma completo, una "
+#~ "técnica que produce una gran cantidad"
+#~ " de pequeñas secuencias de ADN a "
+#~ "partir de todos los genomas microbianos"
+#~ " de su muestra. Con suficientes "
+#~ "secuencias usted puede ver la variación"
+#~ " que existe entre microbios de una"
+#~ " misma especie."
+
+#~ msgid ""
+#~ "16S. This technique produces DNA "
+#~ "sequences from a specific variable "
+#~ "region (V4) within a microbial gene "
+#~ "(the 16S small subunit ribosomal gene)."
+#~ " DNA sequences from this region of"
+#~ " this gene can be used like a"
+#~ " microbial barcode, providing researchers "
+#~ "evidence of the types of microbes "
+#~ "that may be present in your "
+#~ "sample."
+#~ msgstr ""
+#~ "16S. Esta técnica produce secuencias de"
+#~ " ADN a partir de una región "
+#~ "variable específica (V4) dentro de un"
+#~ " gen microbiano (el gen ribosomal de"
+#~ " la subunidad menor 16S). Las "
+#~ "secuencias de ADN de la región de"
+#~ " este gen se pueden usar como "
+#~ "un código de barras microbiano, "
+#~ "proporcionando a los científicos evidencia "
+#~ "de los tipos de microbios que "
+#~ "pueden estar presentes en su muestra."
+
+#~ msgid "Source"
+#~ msgstr "Fuente"
+
+#~ msgid "Results"
+#~ msgstr "Resultados"
+
+#~ msgid "How do you compare?"
+#~ msgstr "¿Cómo se compara?"
+
+#~ msgid "Diversity"
+#~ msgstr "Diversidad"
+
+#~ msgid "Similarity"
+#~ msgstr "Semejanza"
+
+#~ msgid "Your Inner Zoo"
+#~ msgstr "Su Zoológico Interior"
+
+#~ msgid "Microbiome Map"
+#~ msgstr "Mapa del Microbioma"
+
+#~ msgid "How can I learn more?"
+#~ msgstr "¿Cómo puedo aprender más?"
+
+#~ msgid ""
+#~ "Your microbiome is a rainforest of "
+#~ "diverse microbes dominated by microbes -"
+#~ " some 40 trillion bacteria, weighing "
+#~ "around 1 lb, live all over and "
+#~ "in your body. The diversity of "
+#~ "your microbiome, how similar it is "
+#~ "to other peoples', and the types "
+#~ "of bacteria living inside you have "
+#~ "all been linked to health, disease "
+#~ "and lifestyle traits in numerous "
+#~ "studies."
+#~ msgstr ""
+#~ "Su microbioma es una selva tropical "
+#~ "de diversos microbios dominados por "
+#~ "microbios - aproximadamente 40 trillones "
+#~ "de bacterias, que pesan alrededor de "
+#~ "1 libra, viven sobre y en todo "
+#~ "su cuerpo. La diversidad de su "
+#~ "microbioma, qué tan similar es al "
+#~ "de otras personas y los tipos de"
+#~ " bacterias que viven dentro de usted"
+#~ " se han relacionado con la salud, "
+#~ "la enfermedad y el estilo de vida"
+#~ " en numerosos estudios."
+
+#~ msgid ""
+#~ "Scientists often use many different "
+#~ "approaches to see how your microbiome"
+#~ " differs. We've analyzed your microbiome"
+#~ " sample using standard microbiome research"
+#~ " tools, and the results are broken"
+#~ " down below in a few different "
+#~ "categories"
+#~ msgstr ""
+#~ "Los científicos regularmente usan diferentes"
+#~ " criterios para ver cómo difiere su"
+#~ " microbioma. Nosotros hemos analizado su"
+#~ " muestra de microbioma utilizando "
+#~ "herramientas estándar para la investigación"
+#~ " del microbioma, y los resultados se"
+#~ " desglosan a continuación en diferentes "
+#~ "categorías"
+
+#~ msgid "How many kinds of microbes were in your sample? Check out your"
+#~ msgstr "¿Cuántos tipos de microbios había en su muestra? Revise su"
+
+#~ msgid ""
+#~ "What kinds of people have microbiomes"
+#~ " like yours? Check out your "
+#~ "microbiome"
+#~ msgstr ""
+#~ "¿Qué tipo de personas tienen microbiomas"
+#~ " como el suyo? Revise su microbioma"
+
+#~ msgid "What particular kinds of microbes are in your sample? Wander through"
+#~ msgstr "¿Qué tipo de microbios particulares hay en su muestra? Explore"
+
+#~ msgid "Where are you on the"
+#~ msgstr "¿Dónde está usted en el"
+
+#~ msgid ""
+#~ "There are anywhere from hundreds of "
+#~ "millions to hundreds of billions of "
+#~ "different types of bacteria living on"
+#~ " planet earth. This dwarfs the meager"
+#~ " 2 million different kinds of animals"
+#~ " and plants that you can see "
+#~ "with your eyes. The average American has FILLIN different types of "
+#~ "microbes in a stool sample, which "
+#~ "is lower than we find in people"
+#~ " living a more hunter-gatherer "
+#~ "lifestyle, like the FILLIN we find"
+#~ " in samples from the Smits et "
+#~ "al. Science 2017\" data-"
+#~ "html=\"true\">Hadza ."
+#~ msgstr ""
+#~ "Hay entre cientos de millones y "
+#~ "cientos de miles de millones de "
+#~ "distintos tipos de bacterias que viven"
+#~ " en el planeta tierra. Esto "
+#~ "empequeñece a los escasos 2 millones "
+#~ "de distintos tipos de animales y "
+#~ "plantas que puede ver con sus "
+#~ "ojos. El promedio de "
+#~ "Estadounidenses tienen 93 "
+#~ "diferentes tipos de microbios en una "
+#~ "muestra de heces, el cual es "
+#~ "inferior al que encontramos en personas"
+#~ " que viven un estilo de vida "
+#~ "más cazador-recolector, como los "
+#~ "132 que encontramos en "
+#~ "muestras de Smits et al. Science "
+#~ "2017” data-html=“true”>Hadza ."
+
+#~ msgid "Number of different microbes found in your sample"
+#~ msgstr "Número de microbios diferentes encontrados en su muestra"
+
+#~ msgid ""
+#~ "When we calculated the diversity of "
+#~ "groups for samples in our database, "
+#~ "we found diversity is associated with"
+#~ " how you live your life. Here, "
+#~ "we summarized the average microbiome "
+#~ "diversity for a few of the "
+#~ "questionnaire responses, specifically people "
+#~ "who eat more than 30 plants a "
+#~ "week, exercise regularly, drink water "
+#~ "regularly, or sleep more than 6 "
+#~ "hours a night."
+#~ msgstr ""
+#~ "Cuando nosotros calculamos la diversidad "
+#~ "de grupos para muestras en nuestra "
+#~ "base de datos, encontramos que la "
+#~ "diversidad está asociada con la forma"
+#~ " en que vive su vida. Aquí, "
+#~ "nosotros resumimos la diversidad de "
+#~ "microbiomas promedio para algunas de las"
+#~ " respuestas del cuestionario, específicamente "
+#~ "las personas que consumen más de "
+#~ "30 plantas a la semana, hacen "
+#~ "ejercicio con regularidad, beben agua "
+#~ "con regularidad o duermen más de 6"
+#~ " horas por noche."
+
+#~ msgid "Eat more than 30 plants a week"
+#~ msgstr "Comen más de 30 plantas a la semana"
+
+#~ msgid "unique microbial features"
+#~ msgstr "características microbianas únicas"
+
+#~ msgid "Exercise regularly"
+#~ msgstr "Hacen ejercicio regularmente"
+
+#~ msgid "Drink 1L or water regularly"
+#~ msgstr "Beben 1L de agua o agua regularmente"
+
+#~ msgid "Sleep more than 6 hours per night"
+#~ msgstr "Duermen más de 6 horas por noche"
+
+#~ msgid ""
+#~ "One of the powerful ways microbiome "
+#~ "scientists analyze data is by looking"
+#~ " at similarities among samples. To do"
+#~ " this, we compute a a "
+#~ "lot of ways to form a "
+#~ "distance. One way is to base the"
+#~ " distance off of the fraction of "
+#~ "microbes in common in your sample "
+#~ "with each other sample. We typically "
+#~ "share few of the exact same "
+#~ "microbes in common with other people "
+#~ "though which is problematic when "
+#~ "comparing exact microbes. To account for"
+#~ " this, researchers often take the "
+#~ "evolutionary relationships among microbes into"
+#~ " account when forming these "
+#~ "distances.\">distance from your sample "
+#~ "to all other samples based on the"
+#~ " microbes observed."
+#~ msgstr ""
+#~ "Una forma eficaz en que los "
+#~ "científicos analizan los datos del "
+#~ "microbioma es observando las similitudes "
+#~ "entre las muestras. Para hacer esto, "
+#~ "nosotros calculamos una a "
+#~ "lot of ways to form a "
+#~ "distance. One way is to base the"
+#~ " distance off of the fraction of "
+#~ "microbes in common in your sample "
+#~ "with each other sample. We typically "
+#~ "share few of the exact same "
+#~ "microbes in common with other people "
+#~ "though which is problematic when "
+#~ "comparing exact microbes. To account for"
+#~ " this, researchers often take the "
+#~ "evolutionary relationships among microbes into"
+#~ " account when forming these "
+#~ "distances.”>distancia de su muestra a"
+#~ " todas las demás muestras basada en"
+#~ " los microbios observados."
+
+#~ msgid ""
+#~ "Here, we your sample to all the"
+#~ " others in our database, and examined"
+#~ " the 100 most similar samples to "
+#~ "yours. These people answered their "
+#~ "questionnaires in the following way; the"
+#~ " response is colored in light green "
+#~ "if it matches your response and "
+#~ "brown if your response "
+#~ "differed."
+#~ msgstr ""
+#~ "Aquí, nosotros comparamos su muestra con"
+#~ " las demás muestras en nuestra base"
+#~ " de datos, y examinamos las 100 "
+#~ "muestras más similares a la suya. "
+#~ "Estas personas respondieron sus cuestionarios"
+#~ " de la siguiente manera; la respuesta"
+#~ " esta en color verde si coincide con"
+#~ " su respuesta y en café si "
+#~ "su respuesta es diferente."
+
+#~ msgid "Diet"
+#~ msgstr "Dieta"
+
+#~ msgid "of people with a microbiome like yours eat"
+#~ msgstr "de las personas con un microbioma como el suyo comen"
+
+#~ msgid "plants per week"
+#~ msgstr "plantas por semana"
+
+#~ msgid "of people with a microbiome like yours had a similar diet"
+#~ msgstr "de las personas con un microbioma como el suyo tenían una dieta similar"
+
+#~ msgid "Supplements"
+#~ msgstr "Suplementos"
+
+#~ msgid "of people with a microbiome like yours"
+#~ msgstr "de las personas con un microbioma como el suyo"
+
+#~ msgid "take probiotics"
+#~ msgstr "toman probióticos"
+
+#~ msgid "of people with a microbiome like yours take vitamins"
+#~ msgstr "de las personas con un microbioma como el suyo toman vitaminas"
+
+#~ msgid "Activity"
+#~ msgstr "Actividad"
+
+#~ msgid "of people with a microbiome like yours exercise"
+#~ msgstr "de las personas con un microbioma como el suyo hacen ejercicio"
+
+#~ msgid "of people with a microbiome like yours get"
+#~ msgstr "de las personas con un microbioma como el suyo toman"
+
+#~ msgid "of sleep at night"
+#~ msgstr "de sueño por la noche"
+
+#~ msgid "Demographic"
+#~ msgstr "Demográfico"
+
+#~ msgid "of people with a microbiome like yours were the same age as you"
+#~ msgstr ""
+#~ "de las personas con un microbioma "
+#~ "como el suyo tenían la misma edad"
+#~ " que usted"
+
+#~ msgid "of people with a microbiome like yours were the same gender"
+#~ msgstr "de las personas con un microbioma como el suyo eran del mismo sexo"
+
+#~ msgid "Your Inner Zoo (aka What's in your sample?)"
+#~ msgstr "Su Zoológico Interno (¿Qué hay en su muestra?)"
+
+#~ msgid ""
+#~ "Below you will find a table of "
+#~ "all of the different microbes we "
+#~ "found in your sample, and their "
+#~ "proportions."
+#~ msgstr ""
+#~ "A continuación encontrará una tabla de"
+#~ " todos los distintos microbios que "
+#~ "encontramos en su muestra y sus "
+#~ "proporciones."
+
+#~ msgid ""
+#~ "Microbes sometimes have difficult names "
+#~ "to pronounce. Some of the names "
+#~ "are Latin, Greek, Norse, Chinese and "
+#~ "more. If you'd like to know more,"
+#~ " a pronounciation guide can be found"
+#~ " here ."
+#~ msgstr ""
+#~ "Los microbios a veces tienen nombres "
+#~ "difíciles de pronunciar. Algunos de los"
+#~ " nombres están en latín, griego, "
+#~ "nórdico, chino entre otros. Si desea "
+#~ "conocer más, puede encontrar una guía"
+#~ " de pronunciación aquí ."
+
+#~ msgid ""
+#~ "Please mouse over the header to "
+#~ "learn more about how to interpret "
+#~ "these taxonomic ranks (e.g., Kingdom) "
+#~ "using examples of non-microbial "
+#~ "organisms."
+#~ msgstr ""
+#~ "Pase el cursor del mouse sobre el"
+#~ " encabezado para obtener más información"
+#~ " sobre cómo interpretar estos rangos "
+#~ "taxonómicos (por ejemplo, Reino) usando "
+#~ "ejemplos de organismos no microbianos."
+
+#~ msgid "%% of Sample"
+#~ msgstr "%% de la muestra"
+
+#~ msgid "Kingdom"
+#~ msgstr "Reino"
+
+#~ msgid "Phylum"
+#~ msgstr "Filo"
+
+#~ msgid "Class"
+#~ msgstr "Clase"
+
+#~ msgid "Order"
+#~ msgstr "Orden"
+
+#~ msgid "Family"
+#~ msgstr "Familia"
+
+#~ msgid "Genus"
+#~ msgstr "Género"
+
+#~ msgid ""
+#~ "No evidence presented here indicates "
+#~ "what we've observed is clinically "
+#~ "dangerous"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "In the plot below, you can see "
+#~ "the most commonly observed microbial "
+#~ "genera in the dataset, and distribution"
+#~ " of ranks of those genera. For "
+#~ "example,"
+#~ msgstr ""
+#~ "En la siguiente gráfica, usted podrá "
+#~ "ver los géneros microbianos observados "
+#~ "con mayor frecuencia en el conjunto "
+#~ "de datos y el rango de "
+#~ "distribución de esos géneros. Por "
+#~ "ejemplo,"
+
+#~ msgid "typically has the highest relative abundance of samples in the dataset."
+#~ msgstr ""
+#~ "normalmente tiene la mayor abundancia "
+#~ "relativa de muestras en el conjunto "
+#~ "de datos."
+
+#~ msgid ""
+#~ "Microbiome analysis is a burgeoning new"
+#~ " field, and the information displayed "
+#~ "here is only an example of what"
+#~ " is becoming possible thanks to the"
+#~ " data that you helped collect."
+#~ msgstr ""
+#~ "El análisis del microbioma es un "
+#~ "campo nuevo, y la información que "
+#~ "se muestra aquí es solo un ejemplo"
+#~ " de lo que se está logrando "
+#~ "gracias a los datos que usted "
+#~ "ayudó a recopilar."
+
+#~ msgid ""
+#~ "So if you want to learn more, "
+#~ "you can even take a look at "
+#~ "the dataset for yourself!"
+#~ msgstr "Si desea aprender más, ¡usted puede revisar el conjunto de datos!"
+
+#~ msgid ""
+#~ "For your sample, we performed a "
+#~ "technique called amplicon sequencing where "
+#~ "we examine pieces of DNA corresponding"
+#~ " to a particular gene. Specifically, "
+#~ "we sequenced the fourth variable region"
+#~ " (V4) of the 16S rRNA small "
+#~ "subunit ribosomal gene. DNA sequences "
+#~ "from this region of this gene can"
+#~ " be used like a microbial barcode,"
+#~ " providing researchers evidence of the "
+#~ "types of microbes that may be "
+#~ "present in your sample."
+#~ msgstr ""
+#~ "Para su muestra, realizamos una técnica"
+#~ " llamada secuenciación de amplicón en "
+#~ "la que examinamos fragmentos de ADN "
+#~ "correspondientes a un gen en particular."
+#~ " Específicamente, secuenciamos la cuarta "
+#~ "región variable (V4) del gen ribosomal"
+#~ " de la subunidad menor 16S rRNA. "
+#~ "Las secuencias de ADN de la región"
+#~ " de este gen se pueden usar "
+#~ "como un código de barras microbiano, "
+#~ "proporcionando a los investigadores evidencia"
+#~ " de los tipos de microbios que "
+#~ "pueden estar presentes en su muestra."
+
+#~ msgid ""
+#~ "There are many resources for microbiome"
+#~ " information available online. If you'd "
+#~ "like to learn more, we recommend "
+#~ "the American Society for"
+#~ " Microbiology , microBEnet , the Canadian Probiotics "
+#~ "Chart , and the American Gastroenterological Association ."
+#~ msgstr ""
+#~ "Hay muchos recursos de información sobre"
+#~ " el microbioma disponibles en línea. "
+#~ "Si desea obtener más información, le "
+#~ "recomendamos el American Society"
+#~ " for Microbiology , microBEnet , the Canadian Probiotics "
+#~ "Chart , and the American "
+#~ "Gastroenterological Association ."
+
+#~ msgid "Datasets used in your results report"
+#~ msgstr "Conjunto de datos usados en el reporte de sus resultados"
+
+#~ msgid ""
+#~ "The results shown in the Microbiome "
+#~ "Maps portion of the report relied "
+#~ "on data from many different publically"
+#~ " accessible microbiome datasets. These "
+#~ "different datasets, and links to them,"
+#~ " are listed below."
+#~ msgstr ""
+#~ "Los resultados demostrados en la parte"
+#~ " del reporte del mapa del microbioma"
+#~ " se basaron en información de varios"
+#~ " conjuntos de datos de microbioma con"
+#~ " acceso público. Estos diferentes conjuntos"
+#~ " de datos, y los enlaces a "
+#~ "ellos, se muestran a continuación."
+
+#~ msgid ""
+#~ "Microbiome maps turn the similarities "
+#~ "and differences among microbiomes into a"
+#~ " two-dimensional picture. Each dot is"
+#~ " a whole microbiome, and dots close"
+#~ " to yours are more similar "
+#~ "microbiomes."
+#~ msgstr ""
+#~ "Los mapas de microbiomas convierten las"
+#~ " similitudes y las diferencias entre "
+#~ "los microbiomas en una imagen "
+#~ "bidimensional. Cada punto es un "
+#~ "microbioma completo, y los puntos "
+#~ "cercanos al suyo son microbiomas más "
+#~ "similares."
+
+#~ msgid ""
+#~ "How "
+#~ "are these maps produced? "
+#~ msgstr ""
+#~ "¿Cómo "
+#~ "se producen estos mapas? "
+
+#~ msgid "My Nutrition"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Your registration code is not in "
+#~ "our system or has already been "
+#~ "used. Please try again."
+#~ msgstr ""
+
+#~ msgid "My FFQs"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Currently, \"My FFQs\" is unavailable in"
+#~ " your country or region. We apologize"
+#~ " for any inconvenience."
+#~ msgstr ""
+
+#~ msgid "Have an FFQ Code"
+#~ msgstr ""
+
+#~ msgid "Get an FFQ Code"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "This Food Frequency Questionnaire (FFQ) "
+#~ "will take approximately 30 minutes. By"
+#~ " completing it, you'll receive the "
+#~ "following report"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Personal diet and nutrition summary, "
+#~ "listing the highest contributing food "
+#~ "sources of nutrients you should try "
+#~ "to limit and your top food sources"
+#~ " with key nutrients that promote good"
+#~ " health."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "You must press the \"Finish\" button "
+#~ "on the final page of the FFQ "
+#~ "to register it as completed. You "
+#~ "can complete the FFQ in stages by"
+#~ " clicking \"Continue FFQ\" and selecting"
+#~ " the \"Resume\" button to return to"
+#~ " where you left off."
+#~ msgstr ""
+
+#~ msgid "Download Top Food Report"
+#~ msgstr ""
+
+#~ msgid "Continue FFQ"
+#~ msgstr ""
+
+#~ msgid "Registration Code"
+#~ msgstr "Código de Activación"
+
+#~ msgid "Register FFQ"
+#~ msgstr ""
+
+#~ msgid "Opt Out"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Sorry, we could not complete the "
+#~ "request. Please email microsetta@ucsd.edu with"
+#~ " the email address you signed up "
+#~ "with so we can remove you from "
+#~ "our list."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "We're sorry you are no longer "
+#~ "interested in participating in The Human"
+#~ " Diets & Microbiome Initiative (THDMI). "
+#~ "Please click the \"opt out\" button "
+#~ "below to confirm that you do not"
+#~ " wish to take part."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Thank you for letting us know. You"
+#~ " will no longer be part of this"
+#~ " research study."
+#~ msgstr ""
+
+#~ msgid "Optional Sample Surveys"
+#~ msgstr "Cuestionario de muestra opcional"
+
+#~ msgid "Your diet can provide researchers valuable information"
+#~ msgstr "Su dieta puede proporcionar valiosa información a los investigadores"
+
+#~ msgid "Would you like to take our additional survey, the"
+#~ msgstr "Le gustaría contestar un cuestionario adicional, el"
+
+#~ msgid "Food Frequency Questionnaire"
+#~ msgstr "Cuestionario de Frecuencia de Consumo de Alimentos"
+
+#~ msgid "FFQ"
+#~ msgstr "FFQ"
+
+#~ msgid ""
+#~ "By completing the questionnaire, you can"
+#~ " enhance information about your sample, "
+#~ "which will power more insightful "
+#~ "research!"
+#~ msgstr ""
+#~ "Al completar el cuestionario, usted "
+#~ "podrá enriquecer la información sobre su"
+#~ " muestra, lo que impulsará una "
+#~ "investigación más detallada!"
+
+#~ msgid "Note"
+#~ msgstr "Tenga en cuenta"
+
+#~ msgid ""
+#~ "If you took multiple samples within "
+#~ "a short time frame, you only need"
+#~ " to take the FFQ for one such"
+#~ " sample"
+#~ msgstr ""
+#~ "Si tomó varias muestras en un "
+#~ "período corto de tiempo, solo necesita"
+#~ " tomar el FFQ para una de esas"
+#~ " muestras"
+
+#~ msgid "Approx time: 30 minutes"
+#~ msgstr "Tiempo aproximado: 30 minutos"
+
+#~ msgid "Take FFQ"
+#~ msgstr "Tomar el FFQ"
+
+#~ msgid "My Reports"
+#~ msgstr ""
+
+#~ msgid "Do you really want to remove this sample from this source?"
+#~ msgstr "¿Seguro que desea eliminar esta muestra de esta fuente?"
+
+#~ msgid "Doing so will remove any collection info saved for this sample and will"
+#~ msgstr ""
+#~ "Al hacerlo, se eliminará cualquier "
+#~ "información guardada para esta muestra y"
+#~ " se"
+
+#~ msgid "unlink it from all surveys."
+#~ msgstr "desvinculará de todos los cuestionarios."
+
+#~ msgid "Required Format: MM/DD/YYYY"
+#~ msgstr "Formato requerido: MM/DD/AAAA"
+
+#~ msgid "Please select a date within the last 10 years."
+#~ msgstr "Seleccione una fecha dentro de los últimos 10 años."
+
+#~ msgid "Please select a date within the next 30 days."
+#~ msgstr "Seleccione una fecha dentro de los próximos 30 días."
+
+#~ msgid "Date of Sample Collection"
+#~ msgstr ""
+
+#~ msgid "Time of Sample Collection"
+#~ msgstr ""
+
+#~ msgid "Sample Type"
+#~ msgstr "Tipo de muestra"
+
+#~ msgid "Select a sample type"
+#~ msgstr "Seleccione un tipo de muestra"
+
+#~ msgid "Notes"
+#~ msgstr "Observaciones"
+
+#~ msgid "(Optional) Is there else about this sample that you would like to add?"
+#~ msgstr "(Opcional) ¿Hay algo más sobre esta muestra que quisiera añadir?"
+
+#~ msgid "Remove"
+#~ msgstr "Eliminar"
+
+#~ msgid ""
+#~ "Your sample has been received by "
+#~ "our lab and can no longer be "
+#~ "edited. Please contact us with"
+#~ " any questions."
+#~ msgstr ""
+
+#~ msgid "What is in your sample?"
+#~ msgstr "¿Qué hay en su muestra?"
+
+#~ msgid ""
+#~ "The table below shows the relative "
+#~ "abundances of all of the organisms "
+#~ "we observed in your sample. To "
+#~ "produce this, we took the DNA "
+#~ "sequences from your sample, and compared"
+#~ " them against publicly available annotated"
+#~ " reference databases. In some cases, "
+#~ "a sequence may uniquely match a "
+#~ "database record, in other cases a "
+#~ "sequence may match may different "
+#~ "records. To handle the uncertainty that"
+#~ " can arise, we rely on a well"
+#~ " used and publicly available microbiome "
+#~ "software package called QIIME 2 ."
+#~ " The exact approach taken is "
+#~ "highlighted in the main tutorial on "
+#~ "feature-classification "
+#~ msgstr ""
+#~ "La siguiente tabla muestra las "
+#~ "abundancias relativas de todos los "
+#~ "organismos que observamos en su muestra."
+#~ " Para producir esto, tomamos las "
+#~ "secuencias de ADN de su muestra y"
+#~ " las comparamos con bases de datos"
+#~ " de referencia disponibles públicamente. En"
+#~ " algunos casos, una secuencia puede "
+#~ "coincidir únicamente con un registro de"
+#~ " la base de datos, en otros "
+#~ "casos, una secuencia puede coincidir con"
+#~ " varios registros diferentes. Para manejar"
+#~ " la incertidumbre que puede surgir, "
+#~ "usamos un software para análisis de "
+#~ "microbiomas muy utilizado y disponible "
+#~ "al público llamado QIIME 2 . "
+#~ "El método exacto adoptado se muestra "
+#~ "en el tutorial principal sobre clasificación-"
+#~ "especies "
+
+#~ msgid "Relative Abundance"
+#~ msgstr "Abundancia Relativa"
+
+#~ msgid "Alpha Diversity"
+#~ msgstr "Diversidad Alfa"
+
+#~ msgid ""
+#~ "Here, we're providing a measure of "
+#~ "the diversity of your sample, and "
+#~ "how it compares to the diversities "
+#~ "of all of the same type of "
+#~ "samples in The Microsetta Initiative. "
+#~ "There are many ways to calculate "
+#~ "diversity. For instance, you could "
+#~ "compute a diversity value by counting"
+#~ " the number of unique organisms "
+#~ "observed (i.e., the sample \"richness\"). "
+#~ "Or, you might be interested in "
+#~ "weighting the calculation by the "
+#~ "relative abundance of the organisms "
+#~ "(i.e., the sample \"evenness\"). The "
+#~ "metric we're computing here is called"
+#~ " Faith's Phylogenetic Diversity (originally "
+#~ "defined here ). Faith's Phylogenetic "
+#~ "Diversity computes the \"richness\" of "
+#~ "your sample as the amount of "
+#~ "evolutionary breadth represented by your "
+#~ "sample. The way we compute alpha "
+#~ "diversity is also through QIIME 2 ,"
+#~ " and more information on it can "
+#~ "be found in the alpha and beta "
+#~ "diversity sections of the QIIME 2"
+#~ " tutorial"
+#~ msgstr ""
+#~ "Aquí, nosotros estamos proporcionamos una "
+#~ "medida de la diversidad de su "
+#~ "muestra, y cómo se compara con las"
+#~ " diversidades de todos los mismos "
+#~ "tipos de muestras en The Microsetta "
+#~ "Initiative. Hay muchas formas de "
+#~ "calcular la diversidad. Por ejemplo, "
+#~ "usted podría calcular un valor de "
+#~ "diversidad contando el número de "
+#~ "organismos únicos observados (es decir, "
+#~ "la “riqueza” de la muestra). O "
+#~ "bien, podría estar interesado en "
+#~ "ponderar el cálculo por la abundancia"
+#~ " relativa de los organismos (es "
+#~ "decir, la “uniformidad” de la muestra)."
+#~ " La métrica que estamos calculando "
+#~ "aquí se llama diversidad filogenética de"
+#~ " Faith (definida originalmente aquí ). La diversidad "
+#~ "filogenética de Faith calcula la "
+#~ "“riqueza” de su muestra como la "
+#~ "cantidad de amplitud evolutiva representada"
+#~ " por su muestra. La forma en "
+#~ "que calculamos la diversidad alfa "
+#~ "también es a través de QIIME 2 , "
+#~ "y más información al respecto se "
+#~ "puede encontrar en las secciones sobre la diversidad"
+#~ " alfa y beta en el tutoríal de"
+#~ " QIIME 2"
+
+#~ msgid "Beta Diversity"
+#~ msgstr "Diversidad Beta"
+
+#~ msgid ""
+#~ "Here we display how your sample "
+#~ "fits in among the other samples of"
+#~ " The Microsetta Initiative in terms "
+#~ "of shared microbes. There are many "
+#~ "ways to calculate beta diversity, "
+#~ "differing in how to weight the "
+#~ "distance between any two microbes. We"
+#~ " take evolutionary distance into account"
+#~ " with the metric displayed here, "
+#~ "known as Unweighted Unifrac. You can "
+#~ "find an overview of this metric here or better understand "
+#~ "its derivation here . This computation is "
+#~ "performed with QIIME 2 , and more "
+#~ "information on it can be found in"
+#~ " the alpha and beta diversity sections of the QIIME 2"
+#~ " tutorial"
+#~ msgstr ""
+#~ "Aquí nosotros mostramos cómo se sitúa"
+#~ " su muestra entre las otras muestras"
+#~ " de la Iniciativa Microsetta en "
+#~ "términos de microbios compartidos. Hay "
+#~ "muchas formas de calcular la diversidad"
+#~ " beta, difieriendo en cómo medir la"
+#~ " distancia entre dos microbios. Nosotros,"
+#~ " tomamos en cuenta la distancia "
+#~ "evolutiva con la métrica que se "
+#~ "muestra aquí, conocida como Unweighted "
+#~ "Unifrac. Usted puede encontrar la "
+#~ "descripción de esta métrica aquí o comprender mejor su"
+#~ " su origen aquí . Este cálculo se "
+#~ "realiza con QIIME 2 , y más información"
+#~ " al respecto la puede encontrar en"
+#~ " las secciones sobre la "
+#~ "diversidad alfa y beta en el "
+#~ "turorial QIIME 2"
+
+#~ msgid "Secondary Surveys"
+#~ msgstr "Cuestionarios Secundarios"
+
+#~ msgid "Survey Title"
+#~ msgstr "Título del Cuestionario"
+
+#~ msgid "Survey Description"
+#~ msgstr "Descripción del Cuestionario"
+
+#~ msgid "Date Signed"
+#~ msgstr ""
+
+#~ msgid "Microsetta"
+#~ msgstr "Microsetta"
+
+#~ msgid "You are deleting the profile for"
+#~ msgstr "Usted está eliminando la fuente"
+
+#~ msgid "and all surveys associated with it!"
+#~ msgstr "y todos los cuestionarios asociados a ella!"
+
+#~ msgid ""
+#~ "This operation cannot be undone. Are"
+#~ " you sure you want to delete "
+#~ "this source?"
+#~ msgstr ""
+#~ "Esta operación no se podrá revertir. "
+#~ "¿Está seguro de que desea eliminar "
+#~ "esta fuente?"
+
+#~ msgid "Administrator Toolbar"
+#~ msgstr "Barra de herramientas del administrador"
+
+#~ msgid "System Panel"
+#~ msgstr "Panel del Sistema"
+
+#~ msgid "Address Verification"
+#~ msgstr "Verificación de la Dirección"
+
+#~ msgid "FFQ Codes"
+#~ msgstr ""
+
+#~ msgid "Find Account"
+#~ msgstr "Encontrar Cuenta"
+
+#~ msgid "Barcode Search"
+#~ msgstr "Búsqueda de código de barras"
+
+#~ msgid "Log Out"
+#~ msgstr "Cerrar sesión"
+
+#~ msgid "My Profile"
+#~ msgstr ""
+
+#~ msgid "Delete This Profile"
+#~ msgstr ""
+
+#~ msgid "Are you sure you want to withdraw your consent and delete your profile?"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "I hereby withdraw consent for "
+#~ "researchers to use my personal data "
+#~ "and/or sample(s) for The Microsetta "
+#~ "Initiative (TMI)."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "I understand and acknowledge that any"
+#~ " personal data and/or sample(s) that "
+#~ "have already been provided to TMI "
+#~ "in accordance with the consent I "
+#~ "provided by signing the consent form(s),"
+#~ " will continue to be used for "
+#~ "the research. However, no new "
+#~ "information will be collected."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "I understand that my data will "
+#~ "only be shared after directly "
+#~ "identifying information has been removed "
+#~ "so that researchers cannot re-identify"
+#~ " my personal data and/or sample(s) "
+#~ "for future use."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "By clicking withdraw, you will be "
+#~ "ending your participation and terminating "
+#~ "your profile. If you would like to"
+#~ " be removed from being contacted for"
+#~ " general program updates or information "
+#~ "about future research studies, please "
+#~ "refer to account deletion or contact "
+#~ "us at microsetta@ucsd.edu."
+#~ msgstr ""
+
+#~ msgid "Maybe Later"
+#~ msgstr ""
+
+#~ msgid "Take This Survey Now"
+#~ msgstr ""
+
+#~ msgid "FAQs"
+#~ msgstr "Preguntas Frecuentes"
+
+#~ msgid ""
+#~ "The Microsetta Initiative aims to "
+#~ "generate quality data that can help "
+#~ "you better understand your microbiome, "
+#~ "help scientists design better studies, "
+#~ "and improve the world's understanding of"
+#~ " the human microbiome."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Answering our surveys can help us "
+#~ "do just that. To get started, "
+#~ "build out your profile by answering "
+#~ "the surveys below. We will alert "
+#~ "you when new surveys become available."
+#~ msgstr ""
+
+#~ msgid "Last modified"
+#~ msgstr ""
+
+#~ msgid "NEW"
+#~ msgstr ""
+
+#~ msgid "minutes"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Below are surveys hosted by partner "
+#~ "organizations. You will be directed to"
+#~ " an external site in a new "
+#~ "browser tab to complete the survey(s)"
+#~ " you select. Once you complete them,"
+#~ " you may close the tab and "
+#~ "return to this page."
+#~ msgstr ""
+
+#~ msgid "COMPLETED"
+#~ msgstr "Completado"
+
+#~ msgid "min"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "You will only have one opportunity "
+#~ "to take this survey. Please make "
+#~ "sure you have ample time before "
+#~ "you start."
+#~ msgstr ""
+
+#~ msgid "Sorry, you must be 18 or older to participate in this study."
+#~ msgstr ""
+
+#~ msgid "Sorry, this study is not open to residents of your country."
+#~ msgstr ""
+#~ "Lo sentimos, este estudio no está "
+#~ "abierto para los residentes de su "
+#~ "país."
+
+#~ msgid "Please select whether you are at least 18 years of age."
+#~ msgstr "Por favor seleccione si usted tiene al menos 18 años de edad."
+
+#~ msgid "Please enter your first name."
+#~ msgstr "Por favor ingrese su nombre."
+
+#~ msgid "Please enter your last name."
+#~ msgstr "Por favor ingrese su apellido."
+
+#~ msgid "Please enter a valid email address."
+#~ msgstr "Por favor ingrese su correo electrónico."
+
+#~ msgid "Please select your country."
+#~ msgstr "Por favor seleccione su país."
+
+#~ msgid ""
+#~ "Sorry, we were unable to verify "
+#~ "your address. Please check your "
+#~ "information and try again."
+#~ msgstr ""
+#~ "Lo sentimos, no pudimos verificar su "
+#~ "dirección. Por favor verifique su "
+#~ "información y vuelva a intentarlo."
+
+#~ msgid "Please agree to receiving communications from us."
+#~ msgstr "Por favor acepte recibir comunicaciones de nosotros."
+
+#~ msgid ""
+#~ "Sorry, due to widespread interest, the"
+#~ " sign-up list for this project "
+#~ "is full."
+#~ msgstr ""
+#~ "Lo sentimos, debido al gran interés "
+#~ "generalizado, la lista de inscripciones "
+#~ "para este proyecto está llena."
+
+#~ msgid ""
+#~ "Please visit our website to learn"
+#~ " about other opportunities to participate"
+#~ " in The Microsetta Initiative."
+#~ msgstr ""
+#~ "Por favor visite nuestro sitio web para"
+#~ " conocer otras oportunidades para "
+#~ "participar en The Microsetta Initiative."
+
+#~ msgid "Verifying your information, please wait just a moment."
+#~ msgstr "Verificando su información, por favor espere un momento."
+
+#~ msgid "Are you at least 18 years of age?"
+#~ msgstr "¿Tiene al menos 18 años de edad?"
+
+#~ msgid "Yes"
+#~ msgstr "Si"
+
+#~ msgid "No"
+#~ msgstr "No"
+
+#~ msgid ""
+#~ "Please note: Specimen collection kits "
+#~ "are associated with the email used "
+#~ "when registering. We recommend the "
+#~ "following:"
+#~ msgstr ""
+#~ "Tenga en cuenta: los kits de "
+#~ "recolección de muestras están asociados "
+#~ "al correo electrónico utilizado al "
+#~ "registrarse. Recomendamos lo siguiente:"
+
+#~ msgid "1. One email must be used per kit."
+#~ msgstr "1. Se debe usar un correo electrónico por kit."
+
+#~ msgid ""
+#~ "2. If you plan to complete the "
+#~ "form on behalf of another adult, "
+#~ "use that person's name and email "
+#~ "address."
+#~ msgstr ""
+#~ "2. Si planea completar el formulario "
+#~ "en nombre de otra persona adulta, "
+#~ "utilice el nombre y la dirección "
+#~ "de correo electrónico de esa persona."
+
+#~ msgid "3. If possible, continue to use the same email throughout the study."
+#~ msgstr ""
+#~ "3. Si es posible, continúe usando "
+#~ "el mismo correo electrónico durante todo"
+#~ " el estudio."
+
+#~ msgid ""
+#~ "Once you have received the kit, "
+#~ "please continue to use the same "
+#~ "email address used when creating your"
+#~ " online account."
+#~ msgstr ""
+#~ "Una vez que haya recibido el kit,"
+#~ " continúe usando la misma dirección "
+#~ "de correo electrónico usada al crear "
+#~ "su cuenta en línea."
+
+#~ msgid "Email Address"
+#~ msgstr "Correo electrónico"
+
+#~ msgid "Phone Number"
+#~ msgstr "Número de teléfono"
+
+#~ msgid "SELECT"
+#~ msgstr "SELECCIONAR"
+
+#~ msgid ""
+#~ "Please fill in the address you "
+#~ "would like your kit delivered to. "
+#~ "Example:"
+#~ msgstr ""
+#~ "Por favor, complete la dirección en "
+#~ "la que desea que se entregue su"
+#~ " kit. Ejemplo:"
+
+#~ msgid "9500 Gilman Dr. San Diego, CA 92093"
+#~ msgstr "Plaza de España,1 28934 Mostoles 03201 ELCHE (Alicante)"
+
+#~ msgid "Residential"
+#~ msgstr "Domicilio de residencia"
+
+#~ msgid "Commercial"
+#~ msgstr "Domicilio comercial"
+
+#~ msgid ""
+#~ "By subscribing to this program, I "
+#~ "agree to receive communications via the"
+#~ " newsletter regarding the status of "
+#~ "the program, the steps I must "
+#~ "complete, tips and tricks for completing"
+#~ " my participation and surveys. I "
+#~ "agree and understand that I can "
+#~ "unsubscribe at any time using a "
+#~ "link in the newsletter and this "
+#~ "will not change my consent to "
+#~ "receive sample status updates directly "
+#~ "from the TMI database. "
+#~ msgstr ""
+#~ "Al suscribirme al programa THDMI, acepto"
+#~ " recibir comunicaciones a través del "
+#~ "boletín informativo sobre el estado del"
+#~ " programa, los pasos que debo "
+#~ "completar, consejos y trucos para "
+#~ "completar mi participación y encuestas. "
+#~ "Acepto y entiendo que puedo cancelar "
+#~ "mi suscripción en cualquier momento "
+#~ "usando un enlace en el boletín y"
+#~ " esto no cambiará mi consentimiento "
+#~ "para recibir actualizaciones de estado "
+#~ "de muestra directamente desde la base"
+#~ " de datos de TMI."
+
+#~ msgid "Previous"
+#~ msgstr "Anterior"
+
+#~ msgid ""
+#~ "Thank you for your interest in our"
+#~ " research. Your application has been "
+#~ "received. You will receive an email "
+#~ "shortly. Please check your junk or "
+#~ "spam folder if the email hasn’t "
+#~ "reached your inbox."
+#~ msgstr ""
+
+#~ msgid " selected"
+#~ msgstr " seleccionado"
+
+#~ msgid "The value is not an integer"
+#~ msgstr "El valor no es un número entero"
+
+#~ msgid "Invalid number"
+#~ msgstr "Número invalido"
+
+#~ msgid "questions"
+#~ msgstr "descripción"
+
+#~ msgid "You've finished building your profile!"
+#~ msgstr ""
+
+#~ msgid "Save & Go Home"
+#~ msgstr ""
+
+#~ msgid "Save & Next"
+#~ msgstr ""
+
+#~ msgid "Save & Previous"
+#~ msgstr "Anterior"
+
+#~ msgid "Save & Finish"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Sorry, it appears you are having "
+#~ "trouble verifying your address. Please "
+#~ "contact our support team at "
+#~ "microsetta@ucsd.edu and they can assist "
+#~ "with confirming your address."
+#~ msgstr ""
+#~ "Lo sentimos, parece que está teniendo"
+#~ " problemas para verificar su dirección. "
+#~ "Comuníquese con nuestro equipo de "
+#~ "soporte en microsetta@ucsd.edu ellos lo "
+#~ "ayudarán a confirmar su dirección."
+
+#~ msgid "Update Your Address"
+#~ msgstr "Actualice su Dirección"
+
+#~ msgid "Address Updated"
+#~ msgstr "Dirección Actualizada"
+
+#~ msgid ""
+#~ "Thank you for updating your address! "
+#~ "Your information has been saved and "
+#~ "you will receive an email notification"
+#~ " once your kit ships."
+#~ msgstr ""
+#~ "¡Gracias por actualizar su dirección! Su"
+#~ " información se ha guardado y "
+#~ "recibirá una notificación por correo "
+#~ "electrónico una vez que se envíe "
+#~ "su kit."
+
+#~ msgid "Email Update"
+#~ msgstr "Notificación por Correo Electrónico"
+
+#~ msgid ""
+#~ "It appears that the email we have"
+#~ " for your account is not the "
+#~ "same as the email you logged in"
+#~ " with. Would you like us to "
+#~ "update your email in our records?"
+#~ msgstr ""
+#~ "Parece que el correo electrónico que "
+#~ "tenemos de su cuenta no es el "
+#~ "mismo con el que inició sesión. "
+#~ "¿Quiere que actualicemos su correo "
+#~ "electrónico en nuestro registro?"
+
+#~ msgid "No, skip and continue"
+#~ msgstr "No, omitir y continuar"
+
+#~ msgid "Yes, update and continue"
+#~ msgstr "Sí, actualizar y continuar"
+
+#~ msgid "A fermented foods specific questionnaire"
+#~ msgstr "Cuestionario especifico sobre alimentos fermentados"
+
+#~ msgid "Questions on surfing behavior"
+#~ msgstr "Preguntas sobre comportamiento del surfista"
+
+#~ msgid "Questions about your interest in the microbiome"
+#~ msgstr "Preguntas sobre su interés en el microbioma"
+
+#~ msgid "Questions related to cooking oils and oxalate-rich foods"
+#~ msgstr ""
+#~ "Preguntas relacionadas con los aceites "
+#~ "de cocina y los alimentos ricos en"
+#~ " oxalatos"
+
diff --git a/microsetta_interface/translations/es_MX/LC_MESSAGES/messages.po b/microsetta_interface/translations/es_MX/LC_MESSAGES/messages.po
index c7156aab..0728de4b 100644
--- a/microsetta_interface/translations/es_MX/LC_MESSAGES/messages.po
+++ b/microsetta_interface/translations/es_MX/LC_MESSAGES/messages.po
@@ -7,3275 +7,6582 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2022-09-01 20:54-0700\n"
+"POT-Creation-Date: 2023-02-15 13:39-0800\n"
"PO-Revision-Date: 2022-09-01 21:13-0700\n"
"Last-Translator: Edgar Diaz \n"
-"Language-Team: es_MX \n"
"Language: es_MX\n"
+"Language-Team: es_MX \n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Generated-By: Babel 2.9.1\n"
-"X-Generator: Poedit 3.1.1\n"
-#: implementation.py:476
-msgid "Unable to validate the kit name; please reload the page."
+#: implementation.py:582
+#, fuzzy
+msgid "The provided Kit ID is not in our system or has already been used."
msgstr ""
-"No se ha podido validar el nombre del kit; por favor recargue la página web."
+"El ID del kit proporcionado no es válido o ya ha sido utilizado; por "
+"favor vuelva a comprobar su información."
-#: implementation.py:495
-msgid ""
-"The provided kit id is not valid or has already been used; please re-check your "
-"entry."
+#: implementation.py:1160
+msgid "SKIP"
msgstr ""
-"El ID del kit proporcionado no es válido o ya ha sido utilizado; por favor "
-"vuelva a comprobar su información."
-#: implementation.py:1232 model_i18n.py:56
+#: implementation.py:1776 model_i18n.py:58
msgid "Blood (skin prick)"
msgstr "Sangre (pinchazo en la piel)"
-#: implementation.py:1233 model_i18n.py:57
+#: implementation.py:1777 model_i18n.py:59
msgid "Saliva"
msgstr "Saliva"
-#: implementation.py:1234 model_i18n.py:69
+#: implementation.py:1778 model_i18n.py:71
msgid "Stool"
msgstr "Heces"
-#: implementation.py:1235 model_i18n.py:64
+#: implementation.py:1779 model_i18n.py:66
msgid "Mouth"
msgstr "Boca"
-#: implementation.py:1236 model_i18n.py:65
+#: implementation.py:1780 model_i18n.py:67
msgid "Nares"
msgstr "Fosas nasales"
-#: implementation.py:1237 model_i18n.py:66
+#: implementation.py:1781 model_i18n.py:68
msgid "Nasal mucus"
msgstr "Moco nasal"
-#: implementation.py:1238 model_i18n.py:67
+#: implementation.py:1782 model_i18n.py:69
msgid "Right hand"
msgstr "Mano derecha"
-#: implementation.py:1239 model_i18n.py:62
+#: implementation.py:1783 model_i18n.py:64
msgid "Left hand"
msgstr "Mano izquierda"
-#: implementation.py:1240 model_i18n.py:59
+#: implementation.py:1784 model_i18n.py:61
msgid "Forehead"
msgstr "Frente"
-#: implementation.py:1241 model_i18n.py:71
+#: implementation.py:1785 model_i18n.py:73
msgid "Torso"
msgstr "Torso"
-#: implementation.py:1242 model_i18n.py:68
+#: implementation.py:1786 model_i18n.py:70
msgid "Right leg"
msgstr "Pierna derecha"
-#: implementation.py:1243 model_i18n.py:63
+#: implementation.py:1787 model_i18n.py:65
msgid "Left leg"
msgstr "Pierna izquierda"
-#: implementation.py:1244 model_i18n.py:72
+#: implementation.py:1788 model_i18n.py:74
msgid "Vaginal mucus"
msgstr "Moco vaginal"
-#: implementation.py:1245 model_i18n.py:70
+#: implementation.py:1789 model_i18n.py:72
msgid "Tears"
msgstr "Lágrimas"
-#: implementation.py:1246 model_i18n.py:58
+#: implementation.py:1790 model_i18n.py:60
msgid "Ear wax"
msgstr "Cera de oído"
-#: implementation.py:1247 model_i18n.py:61
+#: implementation.py:1791 model_i18n.py:63
msgid "Hair"
msgstr "Cabello"
-#: implementation.py:1248 model_i18n.py:60
+#: implementation.py:1792 model_i18n.py:62
msgid "Fur"
msgstr "Piel"
-#: implementation.py:1547
+#: implementation.py:2081
msgid "Unable to validate Activation Code at this time"
msgstr "No se ha podido validar el código de activación en este momento"
-#: implementation.py:1837
+#: implementation.py:2399
msgid "Address 1, Postal Code, and Country are required"
msgstr "Dirección 1, Código Postal y País son requeridos"
-#: implementation.py:2173 implementation.py:2214
+#: implementation.py:2811 implementation.py:2923
msgid "Sorry, there was a problem saving your information."
msgstr "Lo sentimos, hubo un problema al guardar su información."
-#: model_i18n.py:21
+#: model_i18n.py:23
msgid "sample_site"
msgstr "sitio_muestra"
-#: model_i18n.py:31
+#: model_i18n.py:33
msgid "source_type"
msgstr "tipo_muestra"
-#: model_i18n.py:38
+#: model_i18n.py:40
msgid "survey_template_title"
msgstr "cuestionario_plantilla_título"
-#: model_i18n.py:40
+#: model_i18n.py:42
msgid "description"
msgstr "descripción"
-#: model_i18n.py:77
+#: model_i18n.py:79
msgid "human"
msgstr "humana"
-#: model_i18n.py:78 templates/account_overview.jinja2:139
+#: model_i18n.py:80
msgid "animal"
msgstr "animal"
-#: model_i18n.py:79
+#: model_i18n.py:81
msgid "environmental"
msgstr "ambiental"
-#: model_i18n.py:84
+#: model_i18n.py:86
msgid "Primary Questionnaire"
msgstr "Cuestionario Principal"
-#: model_i18n.py:85
+#: model_i18n.py:87
msgid "Pet Information"
msgstr "Información de la mascota"
-#: model_i18n.py:86
+#: model_i18n.py:88
msgid "Fermented Foods Questionnaire"
msgstr "Cuestionario de Alimentos Fermentados"
-#: model_i18n.py:87
+#: model_i18n.py:89
msgid "Surfer Questionnaire"
msgstr "Cuestionario del Surfista"
-#: model_i18n.py:88
+#: model_i18n.py:90
msgid "Personal Microbiome Information"
msgstr "Información Personal del Microbioma"
-#: model_i18n.py:89
+#: model_i18n.py:91
msgid "COVID-19 Questionnaire"
msgstr "Cuestionario COVID-19"
-#: model_i18n.py:90
+#: model_i18n.py:92
msgid "Vioscreen Food Frequency Questionnaire"
msgstr "Cuestionario de Frecuencia de Consumo de Alimentos Vioscreen"
-#: model_i18n.py:91
+#: model_i18n.py:93
msgid "Polyphenol Food Frequency Questionnaire"
msgstr "Cuestionario de Polifenoles Dietéticos"
-#: model_i18n.py:92
+#: model_i18n.py:94
msgid "Cooking Oils and Oxalate-rich Foods"
msgstr "Aceites de Cocina y Alimentos ricos en Oxalatos"
-#: model_i18n.py:96
-msgid "A fermented foods specific questionnaire"
-msgstr "Cuestionario especifico sobre alimentos fermentados"
-
-#: model_i18n.py:97
-msgid "Questions on surfing behavior"
-msgstr "Preguntas sobre comportamiento del surfista"
-
#: model_i18n.py:98
-msgid "Questions about your interest in the microbiome"
-msgstr "Preguntas sobre su interés en el microbioma"
-
-#: model_i18n.py:99
-msgid "Questions related to cooking oils and oxalate-rich foods"
-msgstr ""
-"Preguntas relacionadas con los aceites de cocina y los alimentos ricos en "
-"oxalatos"
-
-#: model_i18n.py:100
msgid ""
-"Polyphenols are chemical compounds naturally found in plants that have been "
-"shown to provide many beneficial properties. They are antioxidants, fighting "
-"aging and protecting your heart, but they may also provide benefits by "
-"interacting with the microbes in your gut. This survey will allow us to better "
-"quantify your consumption of polyphenols through your diet."
+"Polyphenols are chemical compounds naturally found in plants that have "
+"been shown to provide many beneficial properties. They are antioxidants, "
+"fighting aging and protecting your heart, but they may also provide "
+"benefits by interacting with the microbes in your gut. This survey will "
+"allow us to better quantify your consumption of polyphenols through your "
+"diet."
msgstr ""
-"Los polifenoles son compuestos químicos que se encuentran naturalmente en las "
-"plantas y se ha demostrado que brindan muchas propiedades beneficiosas. Son "
-"antioxidantes, combaten el envejecimiento y protegen su corazón, pero también "
-"pueden brindar beneficios al interactuar con los microbios en su intestino. "
-"Esta encuesta nos permitirá cuantificar mejor su consumo de polifenoles a "
-"través de su dieta."
-
-#: model_i18n.py:106
+"Los polifenoles son compuestos químicos que se encuentran naturalmente en"
+" las plantas y se ha demostrado que brindan muchas propiedades "
+"beneficiosas. Son antioxidantes, combaten el envejecimiento y protegen su"
+" corazón, pero también pueden brindar beneficios al interactuar con los "
+"microbios en su intestino. Esta encuesta nos permitirá cuantificar mejor "
+"su consumo de polifenoles a través de su dieta."
+
+#: model_i18n.py:104
msgid ""
"Only for participants in Spain: The Food Frequency "
-"Questionnaire (FFQ) will ask you about your usual frequency of consumption of a "
-"list of foods and beverages. The questionnaire consists of 28 questions, and "
-"will allow us to find out what your usual diet is like."
+"Questionnaire (FFQ) will ask you about your usual frequency of "
+"consumption of a list of foods and beverages. The questionnaire consists "
+"of 28 questions, and will allow us to find out what your usual diet is "
+"like."
msgstr ""
-"Solo para participantes en España El cuestionario de "
-"frecuencia de alimentos (FFQ por sus siglas en Inglés) le preguntará sobre su "
-"frecuencia habitual de consumo de una lista de alimentos y bebidas. El "
-"cuestionario consta de 28 preguntas, y nos permitirá conocer cómo es su dieta "
-"habitual."
+"Solo para participantes en España El cuestionario "
+"de frecuencia de alimentos (FFQ por sus siglas en Inglés) le preguntará "
+"sobre su frecuencia habitual de consumo de una lista de alimentos y "
+"bebidas. El cuestionario consta de 28 preguntas, y nos permitirá conocer "
+"cómo es su dieta habitual."
-#: model_i18n.py:113
+#: model_i18n.py:111
msgid "en_us"
msgstr "es_mx"
-#: templates/account_details.jinja2:2 templates/account_details.jinja2:127
-#: templates/account_details.jinja2:131 templates/account_overview.jinja2:47
-#: templates/sitebase.jinja2:80 templates/sitebase.jinja2:82
+#: templates/account_details.jinja2:2 templates/account_details.jinja2:110
+#: templates/account_details.jinja2:115 templates/sitebase.jinja2:84
+#: templates/sitebase.jinja2:86
msgid "Account Details"
-msgstr "Información de la cuenta"
+msgstr ""
+
+#: templates/account_details.jinja2:41 templates/account_details.jinja2:379
+msgid "Please agree to the Privacy Statement and Terms and Conditions"
+msgstr ""
-#: templates/account_details.jinja2:74
+#: templates/account_details.jinja2:60
#: templates/admin_address_verification.jinja2:41
#: templates/admin_address_verification.jinja2:93
#: templates/admin_interested_user_edit.jinja2:138
-#: templates/submit_interest.jinja2:535 templates/update_address.jinja2:221
+#: templates/submit_interest.jinja2:570 templates/update_address.jinja2:221
msgid "City"
-msgstr "Ciudad"
+msgstr ""
-#: templates/account_details.jinja2:75
+#: templates/account_details.jinja2:61
#: templates/admin_address_verification.jinja2:45
#: templates/admin_address_verification.jinja2:97
#: templates/admin_interested_user_edit.jinja2:142
-#: templates/submit_interest.jinja2:539 templates/update_address.jinja2:225
+#: templates/submit_interest.jinja2:574 templates/update_address.jinja2:225
msgid "State"
-msgstr "Estado"
+msgstr ""
-#: templates/account_details.jinja2:76
+#: templates/account_details.jinja2:62
msgid "Zip Code"
-msgstr "Código Postal"
+msgstr ""
-#: templates/account_details.jinja2:79
+#: templates/account_details.jinja2:65
msgid "City/Town"
-msgstr "Ciudad/Pueblo"
+msgstr ""
-#: templates/account_details.jinja2:80
+#: templates/account_details.jinja2:66
msgid "County/State"
-msgstr "Condado/Estado"
+msgstr ""
-#: templates/account_details.jinja2:81
+#: templates/account_details.jinja2:67
msgid "Postcode"
-msgstr "Código Postal"
+msgstr ""
-#: templates/account_details.jinja2:125 templates/account_overview.jinja2:2
-#: templates/account_overview.jinja2:44 templates/new_results_page.jinja2:1395
-#: templates/sample.jinja2:148 templates/sample_results.jinja2:127
-#: templates/source.jinja2:146
-msgid "Account"
-msgstr "Cuenta"
+#: templates/account_details.jinja2:109 templates/account_overview.jinja2:44
+#: templates/consents.jinja2:22 templates/kits.jinja2:168
+#: templates/new_participant.jinja2:191 templates/nutrition.jinja2:87
+#: templates/reports.jinja2:55 templates/sample.jinja2:182
+#: templates/source.jinja2:45 templates/survey.jinja2:164
+msgid "Dashboard"
+msgstr ""
-#: templates/account_details.jinja2:135 templates/admin_activation_codes.jinja2:7
+#: templates/account_details.jinja2:119
+#: templates/admin_activation_codes.jinja2:7
#: templates/admin_activation_codes.jinja2:21
#: templates/admin_activation_codes.jinja2:40 templates/admin_home.jinja2:11
#: templates/admin_interested_user_edit.jinja2:114
-#: templates/admin_interested_users.jinja2:21 templates/sitebase.jinja2:128
+#: templates/admin_interested_users.jinja2:21 templates/sitebase.jinja2:226
msgid "Email"
-msgstr "Correo electrónico"
+msgstr ""
-#: templates/account_details.jinja2:139
+#: templates/account_details.jinja2:123
msgid "Prefer to use a different email account? You can change it "
msgstr ""
-"¿Prefiere usar una cuenta de correo electrónico diferente? Usted puede "
-"cambiarla "
-#: templates/account_details.jinja2:141
+#: templates/account_details.jinja2:125
msgid "here"
-msgstr "aquí"
+msgstr ""
-#: templates/account_details.jinja2:147
+#: templates/account_details.jinja2:131
#: templates/admin_interested_user_edit.jinja2:106
-#: templates/admin_interested_users.jinja2:15 templates/submit_interest.jinja2:305
+#: templates/admin_interested_users.jinja2:15
+#: templates/submit_interest.jinja2:340
msgid "First Name"
-msgstr "Primer nombre"
+msgstr ""
-#: templates/account_details.jinja2:151
+#: templates/account_details.jinja2:135
#: templates/admin_interested_user_edit.jinja2:110
-#: templates/admin_interested_users.jinja2:18 templates/submit_interest.jinja2:309
+#: templates/admin_interested_users.jinja2:18
+#: templates/submit_interest.jinja2:344
msgid "Last Name"
-msgstr "Apellido"
+msgstr ""
-#: templates/account_details.jinja2:155
+#: templates/account_details.jinja2:139
#: templates/admin_address_verification.jinja2:53
#: templates/admin_address_verification.jinja2:105
#: templates/admin_interested_user_edit.jinja2:164
-#: templates/submit_interest.jinja2:321 templates/update_address.jinja2:246
+#: templates/submit_interest.jinja2:356 templates/update_address.jinja2:246
msgid "Country"
-msgstr "País"
+msgstr ""
-#: templates/account_details.jinja2:158 templates/admin_campaign_edit.jinja2:96
-#: templates/submit_interest.jinja2:324
+#: templates/account_details.jinja2:142 templates/admin_campaign_edit.jinja2:96
+#: templates/submit_interest.jinja2:359
msgid "United States"
-msgstr "Estados Unidos"
+msgstr ""
-#: templates/account_details.jinja2:159 templates/admin_campaign_edit.jinja2:97
-#: templates/submit_interest.jinja2:325
+#: templates/account_details.jinja2:143 templates/admin_campaign_edit.jinja2:97
+#: templates/submit_interest.jinja2:360
msgid "United Kingdom"
-msgstr "Reino Unido"
+msgstr ""
-#: templates/account_details.jinja2:160 templates/admin_campaign_edit.jinja2:98
-#: templates/submit_interest.jinja2:326
+#: templates/account_details.jinja2:144 templates/admin_campaign_edit.jinja2:98
+#: templates/submit_interest.jinja2:361
msgid "Mexico"
-msgstr "México"
+msgstr ""
-#: templates/account_details.jinja2:161 templates/admin_campaign_edit.jinja2:99
-#: templates/submit_interest.jinja2:327
+#: templates/account_details.jinja2:145 templates/admin_campaign_edit.jinja2:99
+#: templates/submit_interest.jinja2:362
msgid "Spain"
-msgstr "España"
+msgstr ""
-#: templates/account_details.jinja2:162 templates/submit_interest.jinja2:328
+#: templates/account_details.jinja2:146 templates/submit_interest.jinja2:363
msgid "Afghanistan"
-msgstr "Afganistán"
+msgstr ""
-#: templates/account_details.jinja2:163 templates/submit_interest.jinja2:329
+#: templates/account_details.jinja2:147 templates/submit_interest.jinja2:364
+#, fuzzy
msgid "Albania"
-msgstr "Albania"
+msgstr "animal"
-#: templates/account_details.jinja2:164 templates/submit_interest.jinja2:330
+#: templates/account_details.jinja2:148 templates/submit_interest.jinja2:365
+#, fuzzy
msgid "Algeria"
-msgstr "Argelia"
+msgstr "Saliva"
-#: templates/account_details.jinja2:165 templates/submit_interest.jinja2:331
+#: templates/account_details.jinja2:149 templates/submit_interest.jinja2:366
msgid "Andorra"
-msgstr "Andorra"
+msgstr ""
-#: templates/account_details.jinja2:166 templates/submit_interest.jinja2:332
+#: templates/account_details.jinja2:150 templates/submit_interest.jinja2:367
msgid "Angola"
-msgstr "Angola"
+msgstr ""
-#: templates/account_details.jinja2:167 templates/submit_interest.jinja2:333
+#: templates/account_details.jinja2:151 templates/submit_interest.jinja2:368
msgid "Antarctica"
-msgstr "Antártica"
+msgstr ""
-#: templates/account_details.jinja2:168 templates/submit_interest.jinja2:334
+#: templates/account_details.jinja2:152 templates/submit_interest.jinja2:369
msgid "Antigua and Barbuda"
-msgstr "Antigua y Barbuda"
+msgstr ""
-#: templates/account_details.jinja2:169 templates/submit_interest.jinja2:335
+#: templates/account_details.jinja2:153 templates/submit_interest.jinja2:370
msgid "Argentina"
-msgstr "Argentina"
+msgstr ""
-#: templates/account_details.jinja2:170 templates/submit_interest.jinja2:336
+#: templates/account_details.jinja2:154 templates/submit_interest.jinja2:371
+#, fuzzy
msgid "Armenia"
-msgstr "Armenia"
+msgstr "animal"
-#: templates/account_details.jinja2:171 templates/submit_interest.jinja2:337
+#: templates/account_details.jinja2:155 templates/submit_interest.jinja2:372
msgid "Australia"
-msgstr "Australia"
+msgstr ""
-#: templates/account_details.jinja2:172 templates/submit_interest.jinja2:338
+#: templates/account_details.jinja2:156 templates/submit_interest.jinja2:373
msgid "Austria"
-msgstr "Austria"
+msgstr ""
-#: templates/account_details.jinja2:173 templates/submit_interest.jinja2:339
+#: templates/account_details.jinja2:157 templates/submit_interest.jinja2:374
msgid "Azerbaijan"
-msgstr "Azerbaiyán"
+msgstr ""
-#: templates/account_details.jinja2:174 templates/submit_interest.jinja2:340
+#: templates/account_details.jinja2:158 templates/submit_interest.jinja2:375
msgid "Bahamas"
-msgstr "Bahamas"
+msgstr ""
-#: templates/account_details.jinja2:175 templates/submit_interest.jinja2:341
+#: templates/account_details.jinja2:159 templates/submit_interest.jinja2:376
msgid "Bahrain"
-msgstr "Baréin"
+msgstr ""
-#: templates/account_details.jinja2:176 templates/submit_interest.jinja2:342
+#: templates/account_details.jinja2:160 templates/submit_interest.jinja2:377
msgid "Bangladesh"
-msgstr "Bangladesh"
+msgstr ""
-#: templates/account_details.jinja2:177 templates/submit_interest.jinja2:343
+#: templates/account_details.jinja2:161 templates/submit_interest.jinja2:378
msgid "Barbados"
-msgstr "Barbados"
+msgstr ""
-#: templates/account_details.jinja2:178 templates/submit_interest.jinja2:344
+#: templates/account_details.jinja2:162 templates/submit_interest.jinja2:379
+#, fuzzy
msgid "Belarus"
-msgstr "Bielorrusia"
+msgstr "Lágrimas"
-#: templates/account_details.jinja2:179 templates/submit_interest.jinja2:345
+#: templates/account_details.jinja2:163 templates/submit_interest.jinja2:380
msgid "Belgium"
-msgstr "Bélgica"
+msgstr ""
-#: templates/account_details.jinja2:180 templates/submit_interest.jinja2:346
+#: templates/account_details.jinja2:164 templates/submit_interest.jinja2:381
msgid "Belize"
-msgstr "Belice"
+msgstr ""
-#: templates/account_details.jinja2:181 templates/submit_interest.jinja2:347
+#: templates/account_details.jinja2:165 templates/submit_interest.jinja2:382
msgid "Benin"
-msgstr "Benín"
+msgstr ""
-#: templates/account_details.jinja2:182 templates/submit_interest.jinja2:348
+#: templates/account_details.jinja2:166 templates/submit_interest.jinja2:383
msgid "Bermuda"
-msgstr "Bermuda"
+msgstr ""
-#: templates/account_details.jinja2:183 templates/submit_interest.jinja2:349
+#: templates/account_details.jinja2:167 templates/submit_interest.jinja2:384
+#, fuzzy
msgid "Bhutan"
-msgstr "Bután"
+msgstr "humana"
-#: templates/account_details.jinja2:184 templates/submit_interest.jinja2:350
+#: templates/account_details.jinja2:168 templates/submit_interest.jinja2:385
+#, fuzzy
msgid "Bolivia"
-msgstr "Bolivia"
+msgstr "Saliva"
-#: templates/account_details.jinja2:185 templates/submit_interest.jinja2:351
+#: templates/account_details.jinja2:169 templates/submit_interest.jinja2:386
msgid "Bosnia and Herzegovina"
-msgstr "Bosnia y Herzegovina"
+msgstr ""
-#: templates/account_details.jinja2:186 templates/submit_interest.jinja2:352
+#: templates/account_details.jinja2:170 templates/submit_interest.jinja2:387
msgid "Botswana"
-msgstr "Botsuana"
+msgstr ""
-#: templates/account_details.jinja2:187 templates/submit_interest.jinja2:353
+#: templates/account_details.jinja2:171 templates/submit_interest.jinja2:388
msgid "Brazil"
-msgstr "Brasil"
+msgstr ""
-#: templates/account_details.jinja2:188 templates/submit_interest.jinja2:354
+#: templates/account_details.jinja2:172 templates/submit_interest.jinja2:389
msgid "Brunei"
-msgstr "Brunéi"
+msgstr ""
-#: templates/account_details.jinja2:189 templates/submit_interest.jinja2:355
+#: templates/account_details.jinja2:173 templates/submit_interest.jinja2:390
msgid "Bulgaria"
-msgstr "Bulgaria"
+msgstr ""
-#: templates/account_details.jinja2:190 templates/submit_interest.jinja2:356
+#: templates/account_details.jinja2:174 templates/submit_interest.jinja2:391
msgid "Burkina Faso"
-msgstr "Burkina Faso"
+msgstr ""
-#: templates/account_details.jinja2:191 templates/submit_interest.jinja2:357
+#: templates/account_details.jinja2:175 templates/submit_interest.jinja2:392
+#, fuzzy
msgid "Burma"
-msgstr "Birmania"
+msgstr "humana"
-#: templates/account_details.jinja2:192 templates/submit_interest.jinja2:358
+#: templates/account_details.jinja2:176 templates/submit_interest.jinja2:393
msgid "Burundi"
-msgstr "Burundi"
+msgstr ""
-#: templates/account_details.jinja2:193 templates/submit_interest.jinja2:359
+#: templates/account_details.jinja2:177 templates/submit_interest.jinja2:394
msgid "Cambodia"
-msgstr "Camboya"
+msgstr ""
-#: templates/account_details.jinja2:194 templates/submit_interest.jinja2:360
+#: templates/account_details.jinja2:178 templates/submit_interest.jinja2:395
msgid "Cameroon"
-msgstr "Camerún"
+msgstr ""
-#: templates/account_details.jinja2:195 templates/submit_interest.jinja2:361
+#: templates/account_details.jinja2:179 templates/submit_interest.jinja2:396
msgid "Canada"
-msgstr "Canada"
+msgstr ""
-#: templates/account_details.jinja2:196 templates/submit_interest.jinja2:362
+#: templates/account_details.jinja2:180 templates/submit_interest.jinja2:397
msgid "Cape Verde"
-msgstr "Cabo Verde"
+msgstr ""
-#: templates/account_details.jinja2:197 templates/submit_interest.jinja2:363
+#: templates/account_details.jinja2:181 templates/submit_interest.jinja2:398
msgid "Central African Republic"
-msgstr "República Centroafricana"
+msgstr ""
-#: templates/account_details.jinja2:198 templates/submit_interest.jinja2:364
+#: templates/account_details.jinja2:182 templates/submit_interest.jinja2:399
msgid "Chad"
-msgstr "Chad"
+msgstr ""
-#: templates/account_details.jinja2:199 templates/submit_interest.jinja2:365
+#: templates/account_details.jinja2:183 templates/submit_interest.jinja2:400
msgid "Chile"
-msgstr "Chile"
+msgstr ""
-#: templates/account_details.jinja2:200 templates/submit_interest.jinja2:366
+#: templates/account_details.jinja2:184 templates/submit_interest.jinja2:401
msgid "China"
-msgstr "China"
+msgstr ""
-#: templates/account_details.jinja2:201 templates/submit_interest.jinja2:367
+#: templates/account_details.jinja2:185 templates/submit_interest.jinja2:402
msgid "Colombia"
-msgstr "Colombia"
+msgstr ""
-#: templates/account_details.jinja2:202 templates/submit_interest.jinja2:368
+#: templates/account_details.jinja2:186 templates/submit_interest.jinja2:403
msgid "Comoros"
-msgstr "Comoras"
+msgstr ""
-#: templates/account_details.jinja2:203 templates/submit_interest.jinja2:369
+#: templates/account_details.jinja2:187 templates/submit_interest.jinja2:404
msgid "Congo, Democratic Republic"
-msgstr "Congo, República Democrática"
+msgstr ""
-#: templates/account_details.jinja2:204 templates/submit_interest.jinja2:370
+#: templates/account_details.jinja2:188 templates/submit_interest.jinja2:405
msgid "Congo, Republic of the"
-msgstr "Congo, República del"
+msgstr ""
-#: templates/account_details.jinja2:205 templates/submit_interest.jinja2:371
+#: templates/account_details.jinja2:189 templates/submit_interest.jinja2:406
msgid "Costa Rica"
-msgstr "Costa Rica"
+msgstr ""
-#: templates/account_details.jinja2:206 templates/submit_interest.jinja2:372
+#: templates/account_details.jinja2:190 templates/submit_interest.jinja2:407
msgid "Cote d'Ivoire"
-msgstr "Costa de Marfil"
+msgstr ""
-#: templates/account_details.jinja2:207 templates/submit_interest.jinja2:373
+#: templates/account_details.jinja2:191 templates/submit_interest.jinja2:408
msgid "Croatia"
-msgstr "Croacia"
+msgstr ""
-#: templates/account_details.jinja2:208 templates/submit_interest.jinja2:374
+#: templates/account_details.jinja2:192 templates/submit_interest.jinja2:409
msgid "Cuba"
-msgstr "Cuba"
+msgstr ""
-#: templates/account_details.jinja2:209 templates/submit_interest.jinja2:375
+#: templates/account_details.jinja2:193 templates/submit_interest.jinja2:410
msgid "Cyprus"
-msgstr "Chipre"
+msgstr ""
-#: templates/account_details.jinja2:210 templates/submit_interest.jinja2:376
+#: templates/account_details.jinja2:194 templates/submit_interest.jinja2:411
msgid "Czech Republic"
-msgstr "República Checa"
+msgstr ""
-#: templates/account_details.jinja2:211 templates/submit_interest.jinja2:377
+#: templates/account_details.jinja2:195 templates/submit_interest.jinja2:412
msgid "Denmark"
-msgstr "Dinamarca"
+msgstr ""
-#: templates/account_details.jinja2:212 templates/submit_interest.jinja2:378
+#: templates/account_details.jinja2:196 templates/submit_interest.jinja2:413
msgid "Djibouti"
-msgstr "Yibuti"
+msgstr ""
-#: templates/account_details.jinja2:213 templates/submit_interest.jinja2:379
+#: templates/account_details.jinja2:197 templates/submit_interest.jinja2:414
msgid "Dominica"
-msgstr "Dominicana"
+msgstr ""
-#: templates/account_details.jinja2:214 templates/submit_interest.jinja2:380
+#: templates/account_details.jinja2:198 templates/submit_interest.jinja2:415
msgid "Dominican Republic"
-msgstr "República Dominicana"
+msgstr ""
-#: templates/account_details.jinja2:215 templates/submit_interest.jinja2:381
+#: templates/account_details.jinja2:199 templates/submit_interest.jinja2:416
msgid "East Timor"
-msgstr "Timor Oriental"
+msgstr ""
-#: templates/account_details.jinja2:216 templates/submit_interest.jinja2:382
+#: templates/account_details.jinja2:200 templates/submit_interest.jinja2:417
msgid "Ecuador"
-msgstr "Ecuador"
+msgstr ""
-#: templates/account_details.jinja2:217 templates/submit_interest.jinja2:383
+#: templates/account_details.jinja2:201 templates/submit_interest.jinja2:418
msgid "Egypt"
-msgstr "Egipto"
+msgstr ""
-#: templates/account_details.jinja2:218 templates/submit_interest.jinja2:384
+#: templates/account_details.jinja2:202 templates/submit_interest.jinja2:419
msgid "El Salvador"
-msgstr "El Salvador"
+msgstr ""
-#: templates/account_details.jinja2:219 templates/submit_interest.jinja2:385
+#: templates/account_details.jinja2:203 templates/submit_interest.jinja2:420
msgid "Equatorial Guinea"
-msgstr "Guinea Ecuatorial"
+msgstr ""
-#: templates/account_details.jinja2:220 templates/submit_interest.jinja2:386
+#: templates/account_details.jinja2:204 templates/submit_interest.jinja2:421
msgid "Eritrea"
-msgstr "Eritrea"
+msgstr ""
-#: templates/account_details.jinja2:221 templates/submit_interest.jinja2:387
+#: templates/account_details.jinja2:205 templates/submit_interest.jinja2:422
msgid "Estonia"
-msgstr "Estonia"
+msgstr ""
-#: templates/account_details.jinja2:222 templates/submit_interest.jinja2:388
+#: templates/account_details.jinja2:206 templates/submit_interest.jinja2:423
msgid "Ethiopia"
-msgstr "Etiopía"
+msgstr ""
-#: templates/account_details.jinja2:223 templates/submit_interest.jinja2:389
+#: templates/account_details.jinja2:207 templates/submit_interest.jinja2:424
msgid "Fiji"
-msgstr "Fiyi"
+msgstr ""
-#: templates/account_details.jinja2:224 templates/submit_interest.jinja2:390
+#: templates/account_details.jinja2:208 templates/submit_interest.jinja2:425
msgid "Finland"
-msgstr "Finlandia"
+msgstr ""
-#: templates/account_details.jinja2:225 templates/submit_interest.jinja2:391
+#: templates/account_details.jinja2:209 templates/submit_interest.jinja2:426
msgid "France"
-msgstr "Francia"
+msgstr ""
-#: templates/account_details.jinja2:226 templates/submit_interest.jinja2:392
+#: templates/account_details.jinja2:210 templates/submit_interest.jinja2:427
msgid "Gabon"
-msgstr "Gabón"
+msgstr ""
-#: templates/account_details.jinja2:227 templates/submit_interest.jinja2:393
+#: templates/account_details.jinja2:211 templates/submit_interest.jinja2:428
msgid "Gambia"
-msgstr "Gambia"
+msgstr ""
-#: templates/account_details.jinja2:228 templates/submit_interest.jinja2:394
+#: templates/account_details.jinja2:212 templates/submit_interest.jinja2:429
msgid "Georgia"
-msgstr "Georgia"
+msgstr ""
-#: templates/account_details.jinja2:229 templates/submit_interest.jinja2:395
+#: templates/account_details.jinja2:213 templates/submit_interest.jinja2:430
msgid "Germany"
-msgstr "Alemania"
+msgstr ""
-#: templates/account_details.jinja2:230 templates/submit_interest.jinja2:396
+#: templates/account_details.jinja2:214 templates/submit_interest.jinja2:431
+#, fuzzy
msgid "Ghana"
-msgstr "Ghana"
+msgstr "humana"
-#: templates/account_details.jinja2:231 templates/submit_interest.jinja2:397
+#: templates/account_details.jinja2:215 templates/submit_interest.jinja2:432
msgid "Greece"
-msgstr "Grecia"
+msgstr ""
-#: templates/account_details.jinja2:232 templates/submit_interest.jinja2:398
+#: templates/account_details.jinja2:216 templates/submit_interest.jinja2:433
msgid "Greenland"
-msgstr "Groenlandia"
+msgstr ""
-#: templates/account_details.jinja2:233 templates/submit_interest.jinja2:399
+#: templates/account_details.jinja2:217 templates/submit_interest.jinja2:434
msgid "Grenada"
-msgstr "Granada"
+msgstr ""
-#: templates/account_details.jinja2:234 templates/submit_interest.jinja2:400
+#: templates/account_details.jinja2:218 templates/submit_interest.jinja2:435
msgid "Guatemala"
-msgstr "Guatemala"
+msgstr ""
-#: templates/account_details.jinja2:235 templates/submit_interest.jinja2:401
+#: templates/account_details.jinja2:219 templates/submit_interest.jinja2:436
msgid "Guinea"
-msgstr "Guinea"
+msgstr ""
-#: templates/account_details.jinja2:236 templates/submit_interest.jinja2:402
+#: templates/account_details.jinja2:220 templates/submit_interest.jinja2:437
msgid "Guinea-Bissau"
-msgstr "Guinea-Bisáu"
+msgstr ""
-#: templates/account_details.jinja2:237 templates/submit_interest.jinja2:403
+#: templates/account_details.jinja2:221 templates/submit_interest.jinja2:438
msgid "Guyana"
-msgstr "Guayana"
+msgstr ""
-#: templates/account_details.jinja2:238 templates/submit_interest.jinja2:404
+#: templates/account_details.jinja2:222 templates/submit_interest.jinja2:439
msgid "Haiti"
-msgstr "Haití"
+msgstr ""
-#: templates/account_details.jinja2:239 templates/submit_interest.jinja2:405
+#: templates/account_details.jinja2:223 templates/submit_interest.jinja2:440
msgid "Honduras"
-msgstr "Honduras"
+msgstr ""
-#: templates/account_details.jinja2:240 templates/submit_interest.jinja2:406
+#: templates/account_details.jinja2:224 templates/submit_interest.jinja2:441
msgid "Hong Kong"
-msgstr "Hong Kong"
+msgstr ""
-#: templates/account_details.jinja2:241 templates/submit_interest.jinja2:407
+#: templates/account_details.jinja2:225 templates/submit_interest.jinja2:442
msgid "Hungary"
-msgstr "Hungría"
+msgstr ""
-#: templates/account_details.jinja2:242 templates/submit_interest.jinja2:408
+#: templates/account_details.jinja2:226 templates/submit_interest.jinja2:443
msgid "Iceland"
-msgstr "Islandia"
+msgstr ""
-#: templates/account_details.jinja2:243 templates/submit_interest.jinja2:409
+#: templates/account_details.jinja2:227 templates/submit_interest.jinja2:444
msgid "India"
-msgstr "India"
+msgstr ""
-#: templates/account_details.jinja2:244 templates/submit_interest.jinja2:410
+#: templates/account_details.jinja2:228 templates/submit_interest.jinja2:445
msgid "Indonesia"
-msgstr "Indonesia"
+msgstr ""
-#: templates/account_details.jinja2:245 templates/submit_interest.jinja2:411
+#: templates/account_details.jinja2:229 templates/submit_interest.jinja2:446
msgid "Iran"
-msgstr "Irán"
+msgstr ""
-#: templates/account_details.jinja2:246 templates/submit_interest.jinja2:412
+#: templates/account_details.jinja2:230 templates/submit_interest.jinja2:447
msgid "Iraq"
-msgstr "Iraq"
+msgstr ""
-#: templates/account_details.jinja2:247 templates/submit_interest.jinja2:413
+#: templates/account_details.jinja2:231 templates/submit_interest.jinja2:448
msgid "Ireland"
-msgstr "Irlanda"
+msgstr ""
-#: templates/account_details.jinja2:248 templates/submit_interest.jinja2:414
+#: templates/account_details.jinja2:232 templates/submit_interest.jinja2:449
msgid "Israel"
-msgstr "Israel"
+msgstr ""
-#: templates/account_details.jinja2:249 templates/submit_interest.jinja2:415
+#: templates/account_details.jinja2:233 templates/submit_interest.jinja2:450
msgid "Italy"
-msgstr "Italia"
+msgstr ""
-#: templates/account_details.jinja2:250 templates/submit_interest.jinja2:416
+#: templates/account_details.jinja2:234 templates/submit_interest.jinja2:451
msgid "Jamaica"
-msgstr "Jamaica"
+msgstr ""
-#: templates/account_details.jinja2:251 templates/submit_interest.jinja2:417
+#: templates/account_details.jinja2:235
+#: templates/admin_campaign_edit.jinja2:100
+#: templates/submit_interest.jinja2:452
msgid "Japan"
-msgstr "Japón"
+msgstr ""
-#: templates/account_details.jinja2:252 templates/submit_interest.jinja2:418
+#: templates/account_details.jinja2:236 templates/submit_interest.jinja2:453
msgid "Jordan"
-msgstr "Jordán"
+msgstr ""
-#: templates/account_details.jinja2:253 templates/submit_interest.jinja2:419
+#: templates/account_details.jinja2:237 templates/submit_interest.jinja2:454
msgid "Kazakhstan"
-msgstr "Kazajistán"
+msgstr ""
-#: templates/account_details.jinja2:254 templates/submit_interest.jinja2:420
+#: templates/account_details.jinja2:238 templates/submit_interest.jinja2:455
msgid "Kenya"
-msgstr "Kenia"
+msgstr ""
-#: templates/account_details.jinja2:255 templates/submit_interest.jinja2:421
+#: templates/account_details.jinja2:239 templates/submit_interest.jinja2:456
msgid "Kiribati"
-msgstr "Kiribati"
+msgstr ""
-#: templates/account_details.jinja2:256 templates/submit_interest.jinja2:422
+#: templates/account_details.jinja2:240 templates/submit_interest.jinja2:457
msgid "Korea North"
-msgstr "Corea del Norte"
+msgstr ""
-#: templates/account_details.jinja2:257 templates/submit_interest.jinja2:423
+#: templates/account_details.jinja2:241 templates/submit_interest.jinja2:458
msgid "Korea South"
-msgstr "Corea del Sur"
+msgstr ""
-#: templates/account_details.jinja2:258 templates/submit_interest.jinja2:424
+#: templates/account_details.jinja2:242 templates/submit_interest.jinja2:459
msgid "Kuwait"
-msgstr "Kuwait"
+msgstr ""
-#: templates/account_details.jinja2:259 templates/submit_interest.jinja2:425
+#: templates/account_details.jinja2:243 templates/submit_interest.jinja2:460
msgid "Kyrgyzstan"
-msgstr "Kirguistán"
+msgstr ""
-#: templates/account_details.jinja2:260 templates/submit_interest.jinja2:426
+#: templates/account_details.jinja2:244 templates/submit_interest.jinja2:461
msgid "Laos"
-msgstr "Laos"
+msgstr ""
-#: templates/account_details.jinja2:261 templates/submit_interest.jinja2:427
+#: templates/account_details.jinja2:245 templates/submit_interest.jinja2:462
msgid "Latvia"
-msgstr "Letonia"
+msgstr ""
-#: templates/account_details.jinja2:262 templates/submit_interest.jinja2:428
+#: templates/account_details.jinja2:246 templates/submit_interest.jinja2:463
msgid "Lebanon"
-msgstr "Líbano"
+msgstr ""
-#: templates/account_details.jinja2:263 templates/submit_interest.jinja2:429
+#: templates/account_details.jinja2:247 templates/submit_interest.jinja2:464
msgid "Lesotho"
-msgstr "Lesoto"
+msgstr ""
-#: templates/account_details.jinja2:264 templates/submit_interest.jinja2:430
+#: templates/account_details.jinja2:248 templates/submit_interest.jinja2:465
msgid "Liberia"
-msgstr "Liberia"
+msgstr ""
-#: templates/account_details.jinja2:265 templates/submit_interest.jinja2:431
+#: templates/account_details.jinja2:249 templates/submit_interest.jinja2:466
msgid "Libya"
-msgstr "Libia"
+msgstr ""
-#: templates/account_details.jinja2:266 templates/submit_interest.jinja2:432
+#: templates/account_details.jinja2:250 templates/submit_interest.jinja2:467
msgid "Liechtenstein"
-msgstr "Liechtenstein"
+msgstr ""
-#: templates/account_details.jinja2:267 templates/submit_interest.jinja2:433
+#: templates/account_details.jinja2:251 templates/submit_interest.jinja2:468
msgid "Lithuania"
-msgstr "Lituania"
+msgstr ""
-#: templates/account_details.jinja2:268 templates/submit_interest.jinja2:434
+#: templates/account_details.jinja2:252 templates/submit_interest.jinja2:469
msgid "Luxembourg"
-msgstr "Luxemburgo"
+msgstr ""
-#: templates/account_details.jinja2:269 templates/submit_interest.jinja2:435
+#: templates/account_details.jinja2:253 templates/submit_interest.jinja2:470
msgid "Macedonia"
-msgstr "Macedonia"
+msgstr ""
-#: templates/account_details.jinja2:270 templates/submit_interest.jinja2:436
+#: templates/account_details.jinja2:254 templates/submit_interest.jinja2:471
msgid "Madagascar"
-msgstr "Madagascar"
+msgstr ""
-#: templates/account_details.jinja2:271 templates/submit_interest.jinja2:437
+#: templates/account_details.jinja2:255 templates/submit_interest.jinja2:472
msgid "Malawi"
-msgstr "Malaui"
+msgstr ""
-#: templates/account_details.jinja2:272 templates/submit_interest.jinja2:438
+#: templates/account_details.jinja2:256 templates/submit_interest.jinja2:473
msgid "Malaysia"
-msgstr "Malasia"
+msgstr ""
-#: templates/account_details.jinja2:273 templates/submit_interest.jinja2:439
+#: templates/account_details.jinja2:257 templates/submit_interest.jinja2:474
msgid "Maldives"
-msgstr "Maldivas"
+msgstr ""
-#: templates/account_details.jinja2:274 templates/submit_interest.jinja2:440
+#: templates/account_details.jinja2:258 templates/submit_interest.jinja2:475
+#, fuzzy
msgid "Mali"
-msgstr "Malí"
+msgstr "animal"
-#: templates/account_details.jinja2:275 templates/submit_interest.jinja2:441
+#: templates/account_details.jinja2:259 templates/submit_interest.jinja2:476
msgid "Malta"
-msgstr "Malta"
+msgstr ""
-#: templates/account_details.jinja2:276 templates/submit_interest.jinja2:442
+#: templates/account_details.jinja2:260 templates/submit_interest.jinja2:477
msgid "Marshall Islands"
-msgstr "Islas Marshall"
+msgstr ""
-#: templates/account_details.jinja2:277 templates/submit_interest.jinja2:443
+#: templates/account_details.jinja2:261 templates/submit_interest.jinja2:478
msgid "Mauritania"
-msgstr "Mauritania"
+msgstr ""
-#: templates/account_details.jinja2:278 templates/submit_interest.jinja2:444
+#: templates/account_details.jinja2:262 templates/submit_interest.jinja2:479
msgid "Mauritius"
-msgstr "Mauritius"
+msgstr ""
-#: templates/account_details.jinja2:279 templates/submit_interest.jinja2:445
+#: templates/account_details.jinja2:263 templates/submit_interest.jinja2:480
msgid "Micronesia"
-msgstr "Micronesia"
+msgstr ""
-#: templates/account_details.jinja2:280 templates/submit_interest.jinja2:446
+#: templates/account_details.jinja2:264 templates/submit_interest.jinja2:481
msgid "Moldova"
-msgstr "Moldavia"
+msgstr ""
-#: templates/account_details.jinja2:281 templates/submit_interest.jinja2:447
+#: templates/account_details.jinja2:265 templates/submit_interest.jinja2:482
msgid "Mongolia"
-msgstr "Mongolia"
+msgstr ""
-#: templates/account_details.jinja2:282 templates/submit_interest.jinja2:448
+#: templates/account_details.jinja2:266 templates/submit_interest.jinja2:483
msgid "Montenegro"
-msgstr "Montenegro"
+msgstr ""
-#: templates/account_details.jinja2:283 templates/submit_interest.jinja2:449
+#: templates/account_details.jinja2:267 templates/submit_interest.jinja2:484
msgid "Morocco"
-msgstr "Marruecos"
+msgstr ""
-#: templates/account_details.jinja2:284 templates/submit_interest.jinja2:450
+#: templates/account_details.jinja2:268 templates/submit_interest.jinja2:485
msgid "Monaco"
-msgstr "Mónaco"
+msgstr ""
-#: templates/account_details.jinja2:285 templates/submit_interest.jinja2:451
+#: templates/account_details.jinja2:269 templates/submit_interest.jinja2:486
msgid "Mozambique"
-msgstr "Mozambique"
+msgstr ""
-#: templates/account_details.jinja2:286 templates/submit_interest.jinja2:452
+#: templates/account_details.jinja2:270 templates/submit_interest.jinja2:487
msgid "Namibia"
-msgstr "Namibia"
+msgstr ""
-#: templates/account_details.jinja2:287 templates/submit_interest.jinja2:453
+#: templates/account_details.jinja2:271 templates/submit_interest.jinja2:488
msgid "Nauru"
-msgstr "Nauru"
+msgstr ""
-#: templates/account_details.jinja2:288 templates/submit_interest.jinja2:454
+#: templates/account_details.jinja2:272 templates/submit_interest.jinja2:489
msgid "Nepal"
-msgstr "Nepal"
+msgstr ""
-#: templates/account_details.jinja2:289 templates/submit_interest.jinja2:455
+#: templates/account_details.jinja2:273 templates/submit_interest.jinja2:490
+#, fuzzy
msgid "Netherlands"
-msgstr "Países Bajos"
+msgstr "Mano izquierda"
-#: templates/account_details.jinja2:290 templates/submit_interest.jinja2:456
+#: templates/account_details.jinja2:274 templates/submit_interest.jinja2:491
msgid "New Zealand"
-msgstr "Nueva Zelanda"
+msgstr ""
-#: templates/account_details.jinja2:291 templates/submit_interest.jinja2:457
+#: templates/account_details.jinja2:275 templates/submit_interest.jinja2:492
msgid "Nicaragua"
-msgstr "Nicaragua"
+msgstr ""
-#: templates/account_details.jinja2:292 templates/submit_interest.jinja2:458
+#: templates/account_details.jinja2:276 templates/submit_interest.jinja2:493
msgid "Niger"
-msgstr "Níger"
+msgstr ""
-#: templates/account_details.jinja2:293 templates/submit_interest.jinja2:459
+#: templates/account_details.jinja2:277 templates/submit_interest.jinja2:494
msgid "Nigeria"
-msgstr "Nigeria"
+msgstr ""
-#: templates/account_details.jinja2:294 templates/submit_interest.jinja2:460
+#: templates/account_details.jinja2:278 templates/submit_interest.jinja2:495
msgid "Norway"
-msgstr "Noruega"
+msgstr ""
-#: templates/account_details.jinja2:295 templates/submit_interest.jinja2:461
+#: templates/account_details.jinja2:279 templates/submit_interest.jinja2:496
+#, fuzzy
msgid "Oman"
-msgstr "Omán"
+msgstr "humana"
-#: templates/account_details.jinja2:296 templates/submit_interest.jinja2:462
+#: templates/account_details.jinja2:280 templates/submit_interest.jinja2:497
msgid "Pakistan"
-msgstr "Pakistán"
+msgstr ""
-#: templates/account_details.jinja2:297 templates/submit_interest.jinja2:463
+#: templates/account_details.jinja2:281 templates/submit_interest.jinja2:498
+#, fuzzy
msgid "Panama"
-msgstr "Panama"
+msgstr "animal"
-#: templates/account_details.jinja2:298 templates/submit_interest.jinja2:464
+#: templates/account_details.jinja2:282 templates/submit_interest.jinja2:499
msgid "Papua New Guinea"
-msgstr "Papúa Nueva Guinea"
+msgstr ""
-#: templates/account_details.jinja2:299 templates/submit_interest.jinja2:465
+#: templates/account_details.jinja2:283 templates/submit_interest.jinja2:500
msgid "Paraguay"
-msgstr "Paraguay"
+msgstr ""
-#: templates/account_details.jinja2:300 templates/submit_interest.jinja2:466
+#: templates/account_details.jinja2:284 templates/submit_interest.jinja2:501
msgid "Peru"
-msgstr "Peru"
+msgstr ""
-#: templates/account_details.jinja2:301 templates/submit_interest.jinja2:467
+#: templates/account_details.jinja2:285 templates/submit_interest.jinja2:502
msgid "Philippines"
-msgstr "Filipinas"
+msgstr ""
-#: templates/account_details.jinja2:302 templates/submit_interest.jinja2:468
+#: templates/account_details.jinja2:286 templates/submit_interest.jinja2:503
msgid "Poland"
-msgstr "Polonia"
+msgstr ""
-#: templates/account_details.jinja2:303 templates/submit_interest.jinja2:469
+#: templates/account_details.jinja2:287 templates/submit_interest.jinja2:504
msgid "Portugal"
-msgstr "Portugal"
+msgstr ""
-#: templates/account_details.jinja2:304 templates/submit_interest.jinja2:470
+#: templates/account_details.jinja2:288 templates/submit_interest.jinja2:505
msgid "Qatar"
-msgstr "Qatar"
+msgstr ""
-#: templates/account_details.jinja2:305 templates/submit_interest.jinja2:471
+#: templates/account_details.jinja2:289 templates/submit_interest.jinja2:506
+#, fuzzy
msgid "Romania"
-msgstr "Rumania"
+msgstr "animal"
-#: templates/account_details.jinja2:306 templates/submit_interest.jinja2:472
+#: templates/account_details.jinja2:290 templates/submit_interest.jinja2:507
msgid "Russia"
-msgstr "Rusia"
+msgstr ""
-#: templates/account_details.jinja2:307 templates/submit_interest.jinja2:473
+#: templates/account_details.jinja2:291 templates/submit_interest.jinja2:508
msgid "Rwanda"
-msgstr "Ruanda"
+msgstr ""
-#: templates/account_details.jinja2:308 templates/submit_interest.jinja2:474
+#: templates/account_details.jinja2:292 templates/submit_interest.jinja2:509
msgid "Samoa"
-msgstr "Samoa"
+msgstr ""
-#: templates/account_details.jinja2:309 templates/submit_interest.jinja2:475
+#: templates/account_details.jinja2:293 templates/submit_interest.jinja2:510
msgid "San Marino"
-msgstr "San Marino"
+msgstr ""
-#: templates/account_details.jinja2:310 templates/submit_interest.jinja2:476
+#: templates/account_details.jinja2:294 templates/submit_interest.jinja2:511
msgid "Sao Tome"
-msgstr "Santo Tomé y Príncipe"
+msgstr ""
-#: templates/account_details.jinja2:311 templates/submit_interest.jinja2:477
+#: templates/account_details.jinja2:295 templates/submit_interest.jinja2:512
msgid "Saudi Arabia"
-msgstr "Arabia Saudita"
+msgstr ""
-#: templates/account_details.jinja2:312 templates/submit_interest.jinja2:478
+#: templates/account_details.jinja2:296 templates/submit_interest.jinja2:513
msgid "Senegal"
-msgstr "Senegal"
+msgstr ""
-#: templates/account_details.jinja2:313 templates/submit_interest.jinja2:479
+#: templates/account_details.jinja2:297 templates/submit_interest.jinja2:514
msgid "Serbia"
-msgstr "Serbia"
+msgstr ""
-#: templates/account_details.jinja2:314 templates/submit_interest.jinja2:480
+#: templates/account_details.jinja2:298 templates/submit_interest.jinja2:515
msgid "Seychelles"
-msgstr "Seychelles"
+msgstr ""
-#: templates/account_details.jinja2:315 templates/submit_interest.jinja2:481
+#: templates/account_details.jinja2:299 templates/submit_interest.jinja2:516
msgid "Sierra Leone"
-msgstr "Sierra Leona"
+msgstr ""
-#: templates/account_details.jinja2:316 templates/submit_interest.jinja2:482
+#: templates/account_details.jinja2:300 templates/submit_interest.jinja2:517
msgid "Singapore"
-msgstr "Singapur"
+msgstr ""
-#: templates/account_details.jinja2:317 templates/submit_interest.jinja2:483
+#: templates/account_details.jinja2:301 templates/submit_interest.jinja2:518
msgid "Slovakia"
-msgstr "Eslovaquia"
+msgstr ""
-#: templates/account_details.jinja2:318 templates/submit_interest.jinja2:484
+#: templates/account_details.jinja2:302 templates/submit_interest.jinja2:519
msgid "Slovenia"
-msgstr "Eslovenia"
+msgstr ""
-#: templates/account_details.jinja2:319 templates/submit_interest.jinja2:485
+#: templates/account_details.jinja2:303 templates/submit_interest.jinja2:520
msgid "Solomon Islands"
-msgstr "Islas Salomón"
+msgstr ""
-#: templates/account_details.jinja2:320 templates/submit_interest.jinja2:486
+#: templates/account_details.jinja2:304 templates/submit_interest.jinja2:521
+#, fuzzy
msgid "Somalia"
-msgstr "Somalia"
+msgstr "Saliva"
-#: templates/account_details.jinja2:321 templates/submit_interest.jinja2:487
+#: templates/account_details.jinja2:305 templates/submit_interest.jinja2:522
msgid "South Africa"
-msgstr "Sudáfrica"
+msgstr ""
-#: templates/account_details.jinja2:322 templates/submit_interest.jinja2:488
+#: templates/account_details.jinja2:306 templates/submit_interest.jinja2:523
msgid "Sri Lanka"
-msgstr "Sri Lanka"
+msgstr ""
-#: templates/account_details.jinja2:323 templates/submit_interest.jinja2:489
+#: templates/account_details.jinja2:307 templates/submit_interest.jinja2:524
+#, fuzzy
msgid "Sudan"
-msgstr "Sudán"
+msgstr "humana"
-#: templates/account_details.jinja2:324 templates/submit_interest.jinja2:490
+#: templates/account_details.jinja2:308 templates/submit_interest.jinja2:525
msgid "Suriname"
-msgstr "Surinam"
+msgstr ""
-#: templates/account_details.jinja2:325 templates/submit_interest.jinja2:491
+#: templates/account_details.jinja2:309 templates/submit_interest.jinja2:526
msgid "Swaziland"
-msgstr "Suazilandia"
+msgstr ""
-#: templates/account_details.jinja2:326 templates/submit_interest.jinja2:492
+#: templates/account_details.jinja2:310 templates/submit_interest.jinja2:527
msgid "Sweden"
-msgstr "Suecia"
+msgstr ""
-#: templates/account_details.jinja2:327 templates/submit_interest.jinja2:493
+#: templates/account_details.jinja2:311 templates/submit_interest.jinja2:528
msgid "Switzerland"
-msgstr "Suiza"
+msgstr ""
-#: templates/account_details.jinja2:328 templates/submit_interest.jinja2:494
+#: templates/account_details.jinja2:312 templates/submit_interest.jinja2:529
msgid "Syria"
-msgstr "Siria"
+msgstr ""
-#: templates/account_details.jinja2:329 templates/submit_interest.jinja2:495
+#: templates/account_details.jinja2:313 templates/submit_interest.jinja2:530
msgid "Taiwan"
-msgstr "Taiwán"
+msgstr ""
-#: templates/account_details.jinja2:330 templates/submit_interest.jinja2:496
+#: templates/account_details.jinja2:314 templates/submit_interest.jinja2:531
msgid "Tajikistan"
-msgstr "Tayikistán"
+msgstr ""
-#: templates/account_details.jinja2:331 templates/submit_interest.jinja2:497
+#: templates/account_details.jinja2:315 templates/submit_interest.jinja2:532
msgid "Tanzania"
-msgstr "Tanzania"
+msgstr ""
-#: templates/account_details.jinja2:332 templates/submit_interest.jinja2:498
+#: templates/account_details.jinja2:316 templates/submit_interest.jinja2:533
msgid "Thailand"
-msgstr "Tailandia"
+msgstr ""
-#: templates/account_details.jinja2:333 templates/submit_interest.jinja2:499
+#: templates/account_details.jinja2:317 templates/submit_interest.jinja2:534
+#, fuzzy
msgid "Togo"
-msgstr "Togo"
+msgstr "Heces"
-#: templates/account_details.jinja2:334 templates/submit_interest.jinja2:500
+#: templates/account_details.jinja2:318 templates/submit_interest.jinja2:535
msgid "Tonga"
-msgstr "Tonga"
+msgstr ""
-#: templates/account_details.jinja2:335 templates/submit_interest.jinja2:501
+#: templates/account_details.jinja2:319 templates/submit_interest.jinja2:536
msgid "Trinidad and Tobago"
-msgstr "Trinidad y Tobago"
+msgstr ""
-#: templates/account_details.jinja2:336 templates/submit_interest.jinja2:502
+#: templates/account_details.jinja2:320 templates/submit_interest.jinja2:537
msgid "Tunisia"
-msgstr "Túnez"
+msgstr ""
-#: templates/account_details.jinja2:337 templates/submit_interest.jinja2:503
+#: templates/account_details.jinja2:321 templates/submit_interest.jinja2:538
msgid "Turkey"
-msgstr "Turquia"
+msgstr ""
-#: templates/account_details.jinja2:338 templates/submit_interest.jinja2:504
+#: templates/account_details.jinja2:322 templates/submit_interest.jinja2:539
msgid "Turkmenistan"
-msgstr "Turkmenistán"
+msgstr ""
-#: templates/account_details.jinja2:339 templates/submit_interest.jinja2:505
+#: templates/account_details.jinja2:323 templates/submit_interest.jinja2:540
msgid "Uganda"
-msgstr "Uganda"
+msgstr ""
-#: templates/account_details.jinja2:340 templates/submit_interest.jinja2:506
+#: templates/account_details.jinja2:324 templates/submit_interest.jinja2:541
msgid "Ukraine"
-msgstr "Ucrania"
+msgstr ""
-#: templates/account_details.jinja2:341 templates/submit_interest.jinja2:507
+#: templates/account_details.jinja2:325 templates/submit_interest.jinja2:542
msgid "United Arab Emirates"
-msgstr "Emiratos Árabes Unidos"
+msgstr ""
-#: templates/account_details.jinja2:342 templates/submit_interest.jinja2:508
+#: templates/account_details.jinja2:326 templates/submit_interest.jinja2:543
msgid "Uruguay"
-msgstr "Uruguay"
+msgstr ""
-#: templates/account_details.jinja2:343 templates/submit_interest.jinja2:509
+#: templates/account_details.jinja2:327 templates/submit_interest.jinja2:544
msgid "Uzbekistan"
-msgstr "Uzbekistán"
+msgstr ""
-#: templates/account_details.jinja2:344 templates/submit_interest.jinja2:510
+#: templates/account_details.jinja2:328 templates/submit_interest.jinja2:545
msgid "Vanuatu"
-msgstr "Vanuatu"
+msgstr ""
-#: templates/account_details.jinja2:345 templates/submit_interest.jinja2:511
+#: templates/account_details.jinja2:329 templates/submit_interest.jinja2:546
msgid "Venezuela"
-msgstr "Venezuela"
+msgstr ""
-#: templates/account_details.jinja2:346 templates/submit_interest.jinja2:512
+#: templates/account_details.jinja2:330 templates/submit_interest.jinja2:547
msgid "Viet nam"
-msgstr "Vietnam"
+msgstr ""
-#: templates/account_details.jinja2:347 templates/submit_interest.jinja2:513
+#: templates/account_details.jinja2:331 templates/submit_interest.jinja2:548
msgid "Yemen"
-msgstr "Yemen"
+msgstr ""
-#: templates/account_details.jinja2:348 templates/submit_interest.jinja2:514
+#: templates/account_details.jinja2:332 templates/submit_interest.jinja2:549
msgid "Zambia"
-msgstr "Zambia"
+msgstr ""
-#: templates/account_details.jinja2:349 templates/submit_interest.jinja2:515
+#: templates/account_details.jinja2:333 templates/submit_interest.jinja2:550
msgid "Zimbabwe"
-msgstr "Zimbabue"
-
-#: templates/account_details.jinja2:353
-msgid "Street Address"
-msgstr "Dirección"
+msgstr ""
-#: templates/account_details.jinja2:373
-msgid "Preferred language for future communications"
-msgstr "Idioma preferido para futuras comunicaciones"
+#: templates/account_details.jinja2:337
+msgid "Address Line 1"
+msgstr ""
-#: templates/account_details.jinja2:386
-msgid "Activation Info"
-msgstr "Información de Activación"
+#: templates/account_details.jinja2:341
+msgid "Address Line 2"
+msgstr ""
-#: templates/account_details.jinja2:390
-msgid "Kit ID"
-msgstr "Kit ID"
+#: templates/account_details.jinja2:361
+msgid "Preferred language for future communications"
+msgstr ""
-#: templates/account_details.jinja2:393
-msgid "OR"
-msgstr "O"
+#: templates/account_details.jinja2:377
+msgid ""
+"I agree to the Privacy Statement and accept the Terms and Conditions "
+msgstr ""
-#: templates/account_details.jinja2:395 templates/admin_activation_codes.jinja2:14
-msgid "Activation Code"
-msgstr "Código de Activación"
+#: templates/account_details.jinja2:384 templates/submit_interest.jinja2:600
+msgid "Next"
+msgstr ""
-#: templates/account_details.jinja2:402 templates/account_details.jinja2:404
+#: templates/account_details.jinja2:386 templates/sample.jinja2:242
msgid "Save"
-msgstr "Guardar"
+msgstr ""
-#: templates/account_details.jinja2:412
+#: templates/account_details.jinja2:395
msgid "Danger zone"
-msgstr "Zona de riesgo"
+msgstr ""
-#: templates/account_details.jinja2:416
+#: templates/account_details.jinja2:399
msgid "Delete or scrub the account."
-msgstr "Eliminar o borrar la cuenta."
+msgstr ""
-#: templates/account_details.jinja2:419
+#: templates/account_details.jinja2:402
msgid ""
-"If the account has any samples associated, the account and sources will be "
-"scrubbed, meaning all free text and identifiable information is removed."
+"If the account has any samples associated, the account and sources will "
+"be scrubbed, meaning all free text and identifiable information is "
+"removed."
msgstr ""
-"Si la cuenta tiene muestras asociadas, la cuenta y la fuente serán borradas, lo "
-"que significa que se eliminará todo el texto libre y la información "
-"identificable."
-#: templates/account_details.jinja2:422
+#: templates/account_details.jinja2:405
msgid "Otherwise, the account and any sources will be deleted"
-msgstr "De lo contrario, la cuenta y cualquier fuente serán eliminadas"
+msgstr ""
-#: templates/account_details.jinja2:425
+#: templates/account_details.jinja2:408
msgid ""
"IMPORTANT: you must manually delete the email from Authrocket and other "
"external services like MyEmma to complete the process"
msgstr ""
-"IMPORTANTE: debe eliminar manualmente el correo electrónico de Authrocket y "
-"otros servicios externos como MyEmma para completar el proceso"
-#: templates/account_details.jinja2:428
+#: templates/account_details.jinja2:411
msgid "ACCOUNT DELETION CANNOT BE UNDONE"
-msgstr "LA ELIMINACIÓN DE LA CUENTA NO SE PUEDE REVERTIR"
+msgstr ""
-#: templates/account_details.jinja2:431
+#: templates/account_details.jinja2:414
msgid "Delete Account"
-msgstr "Eliminar cuenta"
+msgstr ""
-#: templates/account_overview.jinja2:53
-msgid "View Account Details"
-msgstr "Ver Información de la Cuenta"
+#: templates/account_overview.jinja2:2 templates/new_results_page.jinja2:1318
+#: templates/sample_results.jinja2:127
+msgid "Account"
+msgstr ""
-#: templates/account_overview.jinja2:58
-msgid "Sources"
-msgstr "Fuentes"
+#: templates/account_overview.jinja2:51
+msgid "Active Profiles"
+msgstr ""
-#: templates/account_overview.jinja2:62
-msgid "You have now set up your account! Please proceed to identify your source."
+#: templates/account_overview.jinja2:59
+msgid "Go to My Profile"
msgstr ""
-"¡Usted ha establecido su cuenta! Por favor proceda a identificar su fuente."
#: templates/account_overview.jinja2:66
-msgid ""
-"Choose a source to assign samples to by clicking on a name, listed in blue "
-"below:"
+msgid "Add New Profile"
msgstr ""
-"Elija una fuente para asignar muestras haciendo clic en uno de los nombres, que "
-"se muestra en azul a continuación:"
-#: templates/account_overview.jinja2:71
-msgid "Name"
-msgstr "Nombre"
-
-#: templates/account_overview.jinja2:74
-msgid "Source type"
-msgstr "Tipo de Fuente"
-
-#: templates/account_overview.jinja2:95
-msgid "What is the Source of Your Sample?"
-msgstr "¿Cuál es la fuente de su muestra?"
+#: templates/account_overview.jinja2:67
+msgid "Select the type of profile you would like to create."
+msgstr ""
-#: templates/account_overview.jinja2:103
-msgid ""
-"Our lab needs to know what type of sample(s) you are submitting (a.k.a. the "
-"\"source\"). Add a new source and assign samples to it so we can perform the "
-"correct analysis in our laboratory."
+#: templates/account_overview.jinja2:71
+msgid "Human Profile"
msgstr ""
-"Nuestro laboratorio necesita saber qué tipo de muestra(s) está enviando "
-"(también conocida como “la fuente”). Añada una nueva fuente y asígnele muestras "
-"para que podamos realizar el análisis correcto."
-#: templates/account_overview.jinja2:108
+#: templates/account_overview.jinja2:72
msgid ""
-"If you have multiple sources, you may add one source at a time. You can return "
-"to this page after you finish registering the first one."
+"Share your diet, health, and lifestyle details to help discover more "
+"about how this affects the human microbiome."
msgstr ""
-"Si usted tiene varias fuentes, puede agregar una fuente a la vez. Usted puede "
-"regresar a esta página después de terminar de registrar la primera."
-
-#: templates/account_overview.jinja2:114
-msgid "Human Source"
-msgstr "Fuente Humana"
-
-#: templates/account_overview.jinja2:116 templates/account_overview.jinja2:118
-#: templates/account_overview.jinja2:139
-msgid "Collect sample(s) from"
-msgstr "Recoger muestra(s) de"
-
-#: templates/account_overview.jinja2:116
-msgid "yourself"
-msgstr "usted mismo"
-
-#: templates/account_overview.jinja2:116 templates/account_overview.jinja2:118
-#: templates/account_overview.jinja2:139
-msgid "(e.g. fecal, saliva, skin, etc.)"
-msgstr "(por ejemplo, heces, saliva, piel, etc.)"
-
-#: templates/account_overview.jinja2:118
-msgid "someone else"
-msgstr "alguien más"
-
-#: templates/account_overview.jinja2:121 templates/account_overview.jinja2:131
-#: templates/account_overview.jinja2:144
-msgid "Select"
-msgstr "Seleccionar"
-#: templates/account_overview.jinja2:126
-msgid "Environmental Source"
-msgstr "Fuente Ambiental"
-
-#: templates/account_overview.jinja2:128
-msgid "Collect sample(s) from a"
-msgstr "Recoger muestra(s) de una"
-
-#: templates/account_overview.jinja2:128
-msgid "surface"
-msgstr "superficie"
+#: templates/account_overview.jinja2:73
+msgid "Add Human Profile"
+msgstr ""
-#: templates/account_overview.jinja2:128
-msgid "(e.g. kitchen counter, backyard soil, food, etc.)"
-msgstr "(por ejemplo, la barra de la cocina, tierra del jardín, comida, etc.)"
+#: templates/account_overview.jinja2:81
+msgid "Pet Profile"
+msgstr ""
-#: templates/account_overview.jinja2:136
-msgid "Animal Source"
-msgstr "Fuente Animal"
+#: templates/account_overview.jinja2:82
+msgid "Share sample(s) from an animal (e.g. fecal, saliva, skin, etc.)"
+msgstr ""
-#: templates/account_overview.jinja2:139
-msgid "your pet"
-msgstr "su mascota"
+#: templates/account_overview.jinja2:83 templates/account_overview.jinja2:91
+msgid "Coming Soon"
+msgstr ""
-#: templates/account_overview.jinja2:139
-msgid "or an"
-msgstr "o un"
+#: templates/account_overview.jinja2:89
+#, fuzzy
+msgid "Environment Profile"
+msgstr "ambiental"
-#: templates/account_overview.jinja2:141
-msgid "Animal sources are currently unavailable."
-msgstr "Las fuentes animales no están disponibles."
+#: templates/account_overview.jinja2:90
+msgid "Share sample(s) from the environment (e.g. kitchen counter, food, etc.)"
+msgstr ""
#: templates/admin_activation_codes.jinja2:2
msgid "Admin Activation Codes"
-msgstr "Códigos de Activación del Administrador"
+msgstr ""
#: templates/admin_activation_codes.jinja2:6
msgid "Search by Email"
-msgstr "Buscar por Correo Electrónico"
+msgstr ""
#: templates/admin_activation_codes.jinja2:9
#: templates/admin_activation_codes.jinja2:16
#: templates/admin_barcode_search.jinja2:87
msgid "Search"
-msgstr "Buscar"
+msgstr ""
#: templates/admin_activation_codes.jinja2:13
msgid "Search by Activation Code"
-msgstr "Buscar por Código de Activación"
+msgstr ""
+
+#: templates/admin_activation_codes.jinja2:14
+msgid "Activation Code"
+msgstr ""
#: templates/admin_activation_codes.jinja2:20
msgid "Generate Activation Code"
-msgstr "Generar Código de Activación"
+msgstr ""
#: templates/admin_activation_codes.jinja2:23
#: templates/admin_activation_codes.jinja2:31
+#: templates/admin_ffq_codes.jinja2:8 templates/admin_ffq_codes.jinja2:20
msgid "Generate"
-msgstr "Generar"
+msgstr ""
#: templates/admin_activation_codes.jinja2:24
msgid "Generate + Send Email"
-msgstr "Generar + Enviar Correo Electrónico"
+msgstr ""
#: templates/admin_activation_codes.jinja2:28
msgid "Generate Activation Codes from CSV File"
-msgstr "Generar Códigos de Activación desde un Archivo CSV"
+msgstr ""
#: templates/admin_activation_codes.jinja2:29
msgid "CSV File of Emails"
-msgstr "Archivo CSV de correos electrónicos"
+msgstr ""
#: templates/admin_activation_codes.jinja2:34 templates/admin_home.jinja2:5
msgid "Search Results"
-msgstr "Buscar Resultados"
+msgstr ""
#: templates/admin_activation_codes.jinja2:43
msgid "Code"
-msgstr "Código"
+msgstr ""
#: templates/admin_activation_codes.jinja2:46
msgid "Activated"
-msgstr "Activado"
+msgstr ""
#: templates/admin_activation_codes.jinja2:67 templates/admin_home.jinja2:34
msgid "No accounts found"
-msgstr "No se encontraron cuentas"
+msgstr ""
#: templates/admin_address_verification.jinja2:2
#: templates/admin_campaign_list.jinja2:2
#: templates/admin_interested_user_edit.jinja2:2
msgid "Admin Address Verification"
-msgstr "Verificación de la dirección del administrador"
+msgstr ""
#: templates/admin_address_verification.jinja2:8
msgid "Verify CSV File of Addresses"
-msgstr "Verificar archivo CSV de direcciones"
+msgstr ""
#: templates/admin_address_verification.jinja2:12
msgid "CSV File"
-msgstr "Archivo CSV"
+msgstr ""
#: templates/admin_address_verification.jinja2:17
#: templates/admin_address_verification.jinja2:57
msgid "Verify"
-msgstr "Verificar"
+msgstr ""
#: templates/admin_address_verification.jinja2:26
msgid "Verify Single Address"
-msgstr "Verificar Dirección Única"
+msgstr ""
#: templates/admin_address_verification.jinja2:29
#: templates/admin_address_verification.jinja2:81
#: templates/admin_interested_user_edit.jinja2:122
-#: templates/submit_interest.jinja2:523 templates/update_address.jinja2:209
+#: templates/submit_interest.jinja2:558 templates/update_address.jinja2:209
msgid "Address 1"
-msgstr "Dirección 1"
+msgstr ""
#: templates/admin_address_verification.jinja2:33
#: templates/admin_address_verification.jinja2:85
#: templates/admin_interested_user_edit.jinja2:126
-#: templates/submit_interest.jinja2:527 templates/update_address.jinja2:213
+#: templates/submit_interest.jinja2:562 templates/update_address.jinja2:213
msgid "Address 2"
-msgstr "Dirección 2"
+msgstr ""
#: templates/admin_address_verification.jinja2:37
#: templates/admin_address_verification.jinja2:89
#: templates/admin_interested_user_edit.jinja2:132
-#: templates/submit_interest.jinja2:531 templates/update_address.jinja2:217
+#: templates/submit_interest.jinja2:566 templates/update_address.jinja2:217
msgid "Address 3"
-msgstr "Dirección 3"
+msgstr ""
#: templates/admin_address_verification.jinja2:49
#: templates/admin_address_verification.jinja2:101
#: templates/admin_interested_user_edit.jinja2:146
-#: templates/submit_interest.jinja2:545 templates/update_address.jinja2:231
+#: templates/submit_interest.jinja2:580 templates/update_address.jinja2:231
msgid "Postal Code"
-msgstr "Código Postal"
+msgstr ""
#: templates/admin_address_verification.jinja2:109
msgid "Latitude"
-msgstr "Latitud"
+msgstr ""
#: templates/admin_address_verification.jinja2:113
msgid "Longitude"
-msgstr "Longitud"
+msgstr ""
#: templates/admin_barcode_search.jinja2:2
msgid "ADMINISTRATOR BARCODE SEARCH"
-msgstr "Búsqueda de Código de Barras del Administrador"
+msgstr ""
#: templates/admin_barcode_search.jinja2:31
msgid "Download CSV"
-msgstr "Descargar CSV"
+msgstr ""
#: templates/admin_barcode_search.jinja2:32
msgid "Download Excel"
-msgstr "Descargar Excel"
+msgstr ""
#: templates/admin_barcode_search.jinja2:90
msgid "Search Qiita"
-msgstr "Buscar Qiita"
+msgstr ""
-#: templates/admin_barcode_search.jinja2:97 templates/sample.jinja2:162
-#: templates/source.jinja2:161
+#: templates/admin_barcode_search.jinja2:97
msgid "Barcode"
-msgstr "Código de barras"
+msgstr ""
#: templates/admin_campaign_edit.jinja2:2
msgid "Admin Campaign Edit"
-msgstr "Editar Campaña del Administrador"
+msgstr ""
#: templates/admin_campaign_edit.jinja2:16
msgid "Edit Campaign"
-msgstr "Editar Campaña"
+msgstr ""
#: templates/admin_campaign_edit.jinja2:19
msgid "Campaign ID"
-msgstr "ID de campaña"
+msgstr ""
#: templates/admin_campaign_edit.jinja2:23
msgid "Campaign Link"
-msgstr "Enlace de campaña"
+msgstr ""
-#: templates/admin_campaign_edit.jinja2:27 templates/admin_campaign_edit.jinja2:35
+#: templates/admin_campaign_edit.jinja2:27
+#: templates/admin_campaign_edit.jinja2:35
msgid "Associated Projects"
-msgstr "Proyectos Asociados"
+msgstr ""
#: templates/admin_campaign_edit.jinja2:32
msgid "Add Campaign"
-msgstr "Añadir Campaña"
+msgstr ""
#: templates/admin_campaign_edit.jinja2:46
msgid "Campaign Language"
-msgstr "Idioma de Campaña"
+msgstr ""
#: templates/admin_campaign_edit.jinja2:56
msgid "Title"
-msgstr "Título"
+msgstr ""
#: templates/admin_campaign_edit.jinja2:60
msgid "Instructions"
-msgstr "Instrucciones"
+msgstr ""
#: templates/admin_campaign_edit.jinja2:64
msgid "Alt Campaign Language"
-msgstr "Idioma Alternativo de la Campaña"
+msgstr ""
#: templates/admin_campaign_edit.jinja2:75
msgid "Title in Alt Language"
-msgstr "Título en Idioma Alternativo"
+msgstr ""
#: templates/admin_campaign_edit.jinja2:79
msgid "Instructions in Alt Language"
-msgstr "Instrucciones en Idioma Alternativo"
+msgstr ""
#: templates/admin_campaign_edit.jinja2:84
msgid "Current Header Image"
-msgstr "Imagen de Encabezado Actual"
+msgstr ""
#: templates/admin_campaign_edit.jinja2:89
msgid "Upload New Header Image"
-msgstr "Cargar Nueva Imagen de Encabezado"
+msgstr ""
-#: templates/admin_campaign_edit.jinja2:93 templates/admin_campaign_list.jinja2:17
+#: templates/admin_campaign_edit.jinja2:93
+#: templates/admin_campaign_list.jinja2:17
msgid "Permitted Countries"
-msgstr "Países Permitidos"
+msgstr ""
-#: templates/admin_campaign_edit.jinja2:104
+#: templates/admin_campaign_edit.jinja2:105
#: templates/admin_campaign_list.jinja2:20
msgid "Accepting Participants"
-msgstr "Aceptando Participantes"
+msgstr ""
-#: templates/admin_campaign_edit.jinja2:113
+#: templates/admin_campaign_edit.jinja2:114
+msgid "Send THDMI Confirmation Email"
+msgstr ""
+
+#: templates/admin_campaign_edit.jinja2:123
+msgid "Force Primary Language on Form"
+msgstr ""
+
+#: templates/admin_campaign_edit.jinja2:132
#: templates/admin_interested_user_edit.jinja2:170
-#: templates/submit_interest.jinja2:566 templates/update_address.jinja2:254
+#: templates/submit_interest.jinja2:601 templates/update_address.jinja2:254
msgid "Submit"
-msgstr "Enviar"
+msgstr ""
-#: templates/admin_campaign_list.jinja2:5 templates/sitebase.jinja2:50
+#: templates/admin_campaign_list.jinja2:5 templates/sitebase.jinja2:61
msgid "Campaigns"
-msgstr "Campañas"
+msgstr ""
#: templates/admin_campaign_list.jinja2:14
msgid "Campaign Name"
-msgstr "Nombre de Campaña"
+msgstr ""
#: templates/admin_campaign_list.jinja2:47
msgid "No campaigns found"
-msgstr "No campañas encontradas"
+msgstr ""
+
+#: templates/admin_ffq_codes.jinja2:2
+msgid "Admin FFQ Codes"
+msgstr ""
+
+#: templates/admin_ffq_codes.jinja2:6
+msgid "Generate Single Code"
+msgstr ""
+
+#: templates/admin_ffq_codes.jinja2:17
+msgid "Generate Multiple Codes and download CSV File"
+msgstr ""
+
+#: templates/admin_ffq_codes.jinja2:18
+msgid "Number of Codes"
+msgstr ""
#: templates/admin_home.jinja2:2 templates/admin_interested_users.jinja2:2
msgid "ADMINISTRATOR MODE"
-msgstr "Modo Administrador"
+msgstr ""
#: templates/admin_home.jinja2:14
msgid "Account ID"
-msgstr "ID de la Cuenta"
+msgstr ""
#: templates/admin_interested_user_edit.jinja2:30
#: templates/admin_interested_user_edit.jinja2:64
-#: templates/submit_interest.jinja2:193
+#: templates/submit_interest.jinja2:228
msgid "Please enter a valid phone number."
-msgstr "Por favor ingrese su número de teléfono."
+msgstr ""
#: templates/admin_interested_user_edit.jinja2:31
#: templates/admin_interested_user_edit.jinja2:65
-#: templates/submit_interest.jinja2:197 templates/update_address.jinja2:130
+#: templates/submit_interest.jinja2:232 templates/update_address.jinja2:130
msgid "Please enter your street address."
-msgstr "Por favor ingrese su dirección postal."
+msgstr ""
#: templates/admin_interested_user_edit.jinja2:32
#: templates/admin_interested_user_edit.jinja2:66
-#: templates/submit_interest.jinja2:198 templates/update_address.jinja2:131
+#: templates/submit_interest.jinja2:233 templates/update_address.jinja2:131
msgid "Please enter your city."
-msgstr "Por favor ingrese su ciudad."
+msgstr ""
#: templates/admin_interested_user_edit.jinja2:33
#: templates/admin_interested_user_edit.jinja2:67
-#: templates/submit_interest.jinja2:199 templates/update_address.jinja2:132
+#: templates/submit_interest.jinja2:234 templates/update_address.jinja2:132
msgid "Please select your state."
-msgstr "Por favor ingrese su estado."
+msgstr ""
#: templates/admin_interested_user_edit.jinja2:35
#: templates/admin_interested_user_edit.jinja2:69
-#: templates/submit_interest.jinja2:201 templates/update_address.jinja2:134
+#: templates/submit_interest.jinja2:236 templates/update_address.jinja2:134
msgid "Please enter your postal code."
-msgstr "Por favor ingrese su código postal."
+msgstr ""
#: templates/admin_interested_user_edit.jinja2:100
msgid "Edit Interested User"
-msgstr "Editar Usuario Interesado"
+msgstr ""
#: templates/admin_interested_user_edit.jinja2:103
msgid ""
-"CAUTION: Edits made will NOT go through address verification - proceed carefully"
+"CAUTION: Edits made will NOT go through address verification - proceed "
+"carefully"
msgstr ""
-"PRECAUCIÓN: Los cambios realizados NO pasarán por la verificación de la "
-"dirección; avanzar con cuidado"
#: templates/admin_interested_user_edit.jinja2:118
msgid "Phone"
-msgstr "Teléfono"
+msgstr ""
#: templates/admin_interested_user_edit.jinja2:152
-#: templates/submit_interest.jinja2:549 templates/update_address.jinja2:235
+#: templates/submit_interest.jinja2:584 templates/update_address.jinja2:235
msgid "Address Type"
-msgstr "Dirección de Envio"
+msgstr ""
-#: templates/admin_interested_users.jinja2:5 templates/sitebase.jinja2:48
+#: templates/admin_interested_users.jinja2:5 templates/sitebase.jinja2:59
msgid "Interested Users"
-msgstr "Usuarios Interesados"
+msgstr ""
#: templates/admin_interested_users.jinja2:45
msgid "Converted to Account"
-msgstr "Convertido a Cuenta"
+msgstr ""
#: templates/admin_interested_users.jinja2:54
msgid "No interested users found"
-msgstr "No se encontraron usuarios interesados"
+msgstr ""
#: templates/admin_system_panel.jinja2:2
msgid "ADMINISTRATOR SYSTEM PANEL"
-msgstr "PANEL DEL SISTEMA DEL ADMINISTRADOR"
+msgstr ""
-#: templates/admin_system_panel.jinja2:26 templates/admin_system_panel.jinja2:67
+#: templates/admin_system_panel.jinja2:26
+#: templates/admin_system_panel.jinja2:67
msgid "Set System Message"
-msgstr "Establecer mensaje del sistema"
+msgstr ""
#: templates/admin_system_panel.jinja2:35
msgid "System Message"
-msgstr "Mensaje del Sistema"
+msgstr ""
#: templates/admin_system_panel.jinja2:39
msgid "primary"
-msgstr "primario"
+msgstr ""
#: templates/admin_system_panel.jinja2:40
msgid "secondary"
-msgstr "secundario"
+msgstr ""
#: templates/admin_system_panel.jinja2:41
msgid "success"
-msgstr "éxitoso"
+msgstr ""
#: templates/admin_system_panel.jinja2:42
msgid "danger"
-msgstr "peligro"
+msgstr ""
#: templates/admin_system_panel.jinja2:43
msgid "warning"
-msgstr "advertencia"
+msgstr ""
#: templates/admin_system_panel.jinja2:44
msgid "info"
-msgstr "información"
+msgstr ""
#: templates/admin_system_panel.jinja2:45
msgid "light"
-msgstr "claro"
+msgstr ""
#: templates/admin_system_panel.jinja2:46
msgid "dark"
-msgstr "oscuro"
+msgstr ""
+
+#: templates/consents.jinja2:2 templates/consents.jinja2:30
+#: templates/sitebase.jinja2:183
+msgid "Consent Documents"
+msgstr ""
+
+#: templates/consents.jinja2:38
+msgid "Survey"
+msgstr ""
+
+#: templates/consents.jinja2:55
+msgid "Biospecimen"
+msgstr ""
+
+#: templates/consents.jinja2:59
+msgid "View"
+msgstr ""
#: templates/create_nonhuman_source.jinja2:2
msgid "Create Non-human Source"
-msgstr "Crear Fuente No-Humana"
+msgstr ""
#: templates/create_nonhuman_source.jinja2:8
msgid "Creating Source..."
-msgstr "Creando fuente..."
+msgstr ""
#: templates/create_nonhuman_source.jinja2:16
msgid "Environment name (e.g., microwave)"
-msgstr "Nombre del entorno (por ejemplo, microondas)"
+msgstr ""
#: templates/create_nonhuman_source.jinja2:20
msgid "Environment description (optional)"
-msgstr "Descripción del entorno (opcional)"
+msgstr ""
#: templates/create_nonhuman_source.jinja2:23
msgid "Create Source"
-msgstr "Crear una Fuente"
+msgstr ""
#: templates/email_confirmation.jinja2:2
msgid "Awaiting Email Confirmation"
-msgstr "Esperando Confirmación por Correo Electrónico"
+msgstr ""
#: templates/email_confirmation.jinja2:20
msgid "Check your email inbox"
-msgstr "Revise la bandeja de entrada de su correo electrónico"
+msgstr ""
#: templates/email_confirmation.jinja2:21
msgid ""
-"To complete your verification, click on the link in the email AuthRocket has "
-"sent to"
+"To complete your verification, click on the link in the email AuthRocket "
+"has sent to"
msgstr ""
-"Para completar su verificación, haga clic en el enlace del correo electrónico "
-"que AuthRocket ha enviado a"
#: templates/email_confirmation.jinja2:25
msgid "Waiting for you to confirm"
-msgstr "Esperando su confirmación"
+msgstr ""
#: templates/email_confirmation.jinja2:28
msgid "Please check both your spam and inbox"
-msgstr "Por favor revise sus correos no deseados y su bandeja de entrada"
+msgstr ""
#: templates/email_confirmation.jinja2:29
msgid "AuthRocket is our authentication service"
-msgstr "AuthRocket es nuestro servicio de autenticación"
+msgstr ""
#: templates/email_confirmation.jinja2:30
msgid "Email wrong or didn't receive an email?"
-msgstr "Correo electrónico incorrecto o no recibió un correo electrónico?"
+msgstr ""
#: templates/email_confirmation.jinja2:30
msgid "Go to your AuthRocket Account"
-msgstr "Vaya a su cuenta de AuthRocket"
+msgstr ""
#: templates/email_confirmation.jinja2:30
msgid "to update your email or resend a verification email"
msgstr ""
-"para actualizar su correo electrónico o reenviar un correo electrónico de "
-"verificación"
#: templates/email_confirmation.jinja2:33
msgid "You can close this browser tab!"
-msgstr "¡Puede cerrar esta pestaña del navegador!"
+msgstr ""
#: templates/email_confirmation.jinja2:33
msgid ""
-"After email verification, a new tab will automatically open, and you will "
-"proceed with filling out your account details"
+"After email verification, a new tab will automatically open, and you will"
+" proceed with filling out your account details"
msgstr ""
-"Después de la verificación del correo electrónico, se abrirá automáticamente "
-"una nueva pestaña, y usted podrá seguir ingresando la información de su cuenta"
#: templates/embedded_pdf.jinja2:2
msgid "Embedded PDF"
-msgstr "PDF incorporado"
+msgstr ""
#: templates/embedded_pdf.jinja2:25
-msgid ""
-"This report is generated by a third party without information regarding age, "
-"height or weight."
+msgid "This report is generated by a third party."
msgstr ""
-"Este reporte es generado por una tercera entidad sin información sobre edad, "
-"altura o peso."
#: templates/emperor.jinja2:2 templates/emperor.jinja2:65
-#: templates/sitebase.jinja2:45
+#: templates/sitebase.jinja2:58
msgid "Emperor Playground"
-msgstr "Emperor Playground"
+msgstr ""
#: templates/emperor.jinja2:68
msgid "PCOA URL"
-msgstr "PCOA URL"
+msgstr ""
#: templates/emperor.jinja2:73
msgid "Go!"
-msgstr "Ir!"
+msgstr ""
#: templates/error.jinja2:2
msgid "Error Page"
-msgstr "Error en la Página"
+msgstr ""
#: templates/error.jinja2:10
msgid ""
-"An error seemed to have occurred (see below). It is most likely our fault. We "
-"are actively modifying our infrastructure to support COVID-19 research, and "
-"we're still in the process of handling the different type of scenarios that can "
-"happen on a website. We apologize for any inconvenience."
+"An error seemed to have occurred (see below). It is most likely our "
+"fault. We are actively modifying our infrastructure to support COVID-19 "
+"research, and we're still in the process of handling the different type "
+"of scenarios that can happen on a website. We apologize for any "
+"inconvenience."
msgstr ""
-"Parece que se ha producido un error (véase a continuación). Lo más probable es "
-"que sea un error nuestro. Estamos modificando nuestra infraestructura para "
-"respaldar la investigación de COVID-19 y todavía estamos en el proceso de "
-"manejar los diferentes tipos de escenarios que pueden ocurrir en un sitio web. "
-"Nos disculpamos por cualquier inconveniente."
#: templates/error.jinja2:13
msgid "If you have any concerns, please email us at"
-msgstr "Si tiene alguna duda, por favor envíenos un correo electrónico a"
+msgstr ""
#: templates/error.jinja2:13
msgid "and please note the error below"
-msgstr "y por favor muéstrenos el error que le apareció"
+msgstr ""
#: templates/error.jinja2:15
msgid "Error"
-msgstr "Error"
+msgstr ""
-#: templates/home.jinja2:2 templates/sitebase.jinja2:105
-#: templates/submit_interest.jinja2:2 templates/submit_interest_confirm.jinja2:2
-#: templates/update_address.jinja2:2 templates/update_address_confirm.jinja2:2
+#: templates/home.jinja2:2 templates/submit_interest.jinja2:2
+#: templates/submit_interest_confirm.jinja2:2 templates/update_address.jinja2:2
+#: templates/update_address_confirm.jinja2:2
msgid "Home"
-msgstr "Inicio"
+msgstr ""
-#: templates/home.jinja2:34
+#: templates/home.jinja2:30
msgid "Welcome!"
-msgstr "¡Bienvenido!"
+msgstr ""
-#: templates/home.jinja2:38
-msgid "SIGN UP"
+#: templates/home.jinja2:35 templates/sitebase.jinja2:91
+msgid "Sign Up"
msgstr "Registrarse"
-#: templates/home.jinja2:42
-msgid "Already have an account?"
-msgstr "¿Ya tiene una cuenta?"
+#: templates/home.jinja2:40 templates/sitebase.jinja2:90
+msgid "Log In"
+msgstr ""
+
+#: templates/kits.jinja2:2 templates/kits.jinja2:177 templates/kits.jinja2:197
+#: templates/reports.jinja2:63 templates/sample.jinja2:2
+#: templates/sample.jinja2:184 templates/sitebase.jinja2:133
+#: templates/sitebase.jinja2:155 templates/sitebase.jinja2:157
+msgid "My Kits"
+msgstr ""
+
+#: templates/kits.jinja2:62 templates/kits.jinja2:214 templates/kits.jinja2:262
+msgid "KitID"
+msgstr ""
+
+#: templates/kits.jinja2:98 templates/reports.jinja2:26
+msgid "View Results"
+msgstr ""
+
+#: templates/kits.jinja2:183
+msgid ""
+"Currently, \"My Kits\" is unavailable in your country or region. We "
+"apologize for any inconvenience."
+msgstr ""
+
+#: templates/kits.jinja2:192
+msgid ""
+"Click on the following link if you would like to contribute to receive a "
+"kit"
+msgstr ""
+
+#: templates/kits.jinja2:192 templates/kits.jinja2:205
+msgid "Get a Kit"
+msgstr ""
+
+#: templates/kits.jinja2:203
+msgid "Have a KitID"
+msgstr ""
+
+#: templates/kits.jinja2:231 templates/reports.jinja2:75
+msgid "Sample Received - Results Pending"
+msgstr ""
+
+#: templates/kits.jinja2:249
+msgid "To register your kit, enter your Kit ID below"
+msgstr ""
+
+#: templates/kits.jinja2:255
+msgid "Register Kit"
+msgstr ""
+
+#: templates/kits.jinja2:265
+msgid "Which barcode(s) are you using from this kit (select all that apply)?"
+msgstr ""
+
+#: templates/kits.jinja2:265
+msgid "Each collection tube you receive has a unique barcode printed on the side."
+msgstr ""
+
+#: templates/kits.jinja2:266
+msgid "1. Select the barcode(s) you are using"
+msgstr ""
+
+#: templates/kits.jinja2:267
+msgid ""
+"2. Add the date and time of sample collection and select the sample type "
+"taken."
+msgstr ""
+
+#: templates/kits.jinja2:268
+msgid "Important"
+msgstr ""
+
+#: templates/kits.jinja2:269
+msgid ""
+"The sample cannot be processed in the lab until this information is "
+"complete."
+msgstr ""
+
+#: templates/kits.jinja2:270
+msgid ""
+"Keep a record of these details. The barcode is needed to resolve any "
+"issues you may have with your sample collection."
+msgstr ""
-#: templates/home.jinja2:43
-msgid "Welcome back!"
-msgstr "¡Bienvenido de nuevo!"
+#: templates/kits.jinja2:270
+msgid "What is the barcode and why is it important?"
+msgstr ""
-#: templates/home.jinja2:43
-msgid "LOG IN"
-msgstr "Iniciar sesión"
+#: templates/kits.jinja2:275
+msgid "Confirm"
+msgstr ""
#: templates/myfoodrepo_no_slots.jinja2:2
msgid "MyFoodRepo unavailable"
-msgstr "MyFoodRepo no disponible"
+msgstr ""
#: templates/myfoodrepo_no_slots.jinja2:16
msgid "MyFoodRepo is currently unavailabile"
-msgstr "MyFoodRepo no está disponible en este momento"
+msgstr ""
#: templates/myfoodrepo_no_slots.jinja2:19
msgid ""
-"We apologize, but unfortunately MyFoodRepo is not available at this time. "
-"Please check back in a few days and try again."
+"We apologize, but unfortunately MyFoodRepo is not available at this time."
+" Please check back in a few days and try again."
msgstr ""
-"Lo sentimos, pero desafortunadamente MyFoodRepo no está disponible en este "
-"momento. Vuelva a revisar en unos días e inténtelo de nuevo."
#: templates/myfoodrepo_no_slots.jinja2:22
msgid ""
-"MyFoodRepo is human curated to ensure the highest accuracy in reported dietary "
-"detail. Because the process is not fully automated, we need to limit the number "
-"of concurrent users who take part. We apologize for the inconvenience."
+"MyFoodRepo is human curated to ensure the highest accuracy in reported "
+"dietary detail. Because the process is not fully automated, we need to "
+"limit the number of concurrent users who take part. We apologize for the "
+"inconvenience."
msgstr ""
-"MyFoodRepo es dirigido por humanos para garantizar una mayor precisión en la "
-"información dietética reportada. Debido a que el proceso no está completamente "
-"automatizado, debemos limitar la cantidad de usuarios que participan. Pedimos "
-"disculpas por las molestias."
#: templates/myfoodrepo_no_slots.jinja2:25
#: templates/post_sample_questionnaire.jinja2:30
msgid "Back to Samples"
-msgstr "Volver a las Muestras"
+msgstr ""
-#: templates/new_participant.jinja2:2 templates/new_participant.jinja2:194
+#: templates/new_participant.jinja2:2 templates/signed_consent.jinja2:2
msgid "Consent"
-msgstr "Consentimiento Informado"
+msgstr ""
-#: templates/new_participant.jinja2:119 templates/new_participant.jinja2:120
-#: templates/new_participant.jinja2:121 templates/new_participant.jinja2:122
+#: templates/new_participant.jinja2:31 templates/new_participant.jinja2:32
+#: templates/new_participant.jinja2:33 templates/new_participant.jinja2:34
msgid "Saving..."
-msgstr "Guardando..."
+msgstr ""
+
+#: templates/new_participant.jinja2:60 templates/new_participant.jinja2:84
+#: templates/new_participant.jinja2:101 templates/new_participant.jinja2:103
+#: templates/new_participant.jinja2:118 templates/new_participant.jinja2:255
+#: templates/new_participant.jinja2:355 templates/new_participant.jinja2:396
+#: templates/new_participant.jinja2:425 templates/new_participant.jinja2:468
+msgid "Please confirm that you have read this form."
+msgstr ""
+
+#: templates/new_participant.jinja2:61 templates/new_participant.jinja2:81
+#: templates/new_participant.jinja2:102 templates/new_participant.jinja2:119
+#: templates/new_participant.jinja2:266 templates/new_participant.jinja2:316
+#: templates/new_participant.jinja2:407 templates/new_participant.jinja2:479
+msgid "Please enter the participant name."
+msgstr ""
+
+#: templates/new_participant.jinja2:62 templates/new_participant.jinja2:85
+#: templates/new_participant.jinja2:104 templates/new_participant.jinja2:277
+#: templates/new_participant.jinja2:366 templates/new_participant.jinja2:436
+msgid "Please enter the parent or guardian name."
+msgstr ""
+
+#: templates/new_participant.jinja2:80 templates/new_participant.jinja2:305
+msgid "Please confirm that you will be in this study."
+msgstr ""
-#: templates/new_participant.jinja2:144
+#: templates/new_participant.jinja2:82 templates/new_participant.jinja2:327
msgid ""
-"It looks like you are creating a new source that may be similar or the same as "
-"an existing source. If this is the same person as an existing source, please "
-"consider providing new samples or survey responses under that source"
+"Please confirm that the participant is voluntarily and knowingly giving "
+"consent."
msgstr ""
-"Parece que está creando una nueva fuente que puede ser similar o igual a una "
-"fuente existente. Si esta es la misma persona que una fuente existente, "
-"considere proporcionar nuevas muestras o respuestas de encuestas bajo esa fuente"
-#: templates/new_participant.jinja2:229 templates/new_participant.jinja2:273
-#: templates/new_participant.jinja2:307 templates/new_participant.jinja2:328
-msgid "https://oag.ca.gov/sites/all/files/agweb/pdfs/research/bill_of_rights.pdf"
-msgstr "https://oag.ca.gov/sites/all/files/agweb/pdfs/research/bill_of_rights.pdf"
+#: templates/new_participant.jinja2:83 templates/new_participant.jinja2:338
+msgid "Please enter the name of the person obtaining assent."
+msgstr ""
+
+#: templates/new_participant.jinja2:143
+msgid ""
+"It looks like you are creating a new profile that may be similar or the "
+"same as an existing profile. If this is the same person as an existing "
+"profile, please consider providing new samples or survey responses under "
+"that profile."
+msgstr ""
-#: templates/new_participant.jinja2:240 templates/new_participant.jinja2:280
-#: templates/new_participant.jinja2:314 templates/new_participant.jinja2:336
+#: templates/new_participant.jinja2:162 templates/new_participant.jinja2:176
+#: templates/new_participant.jinja2:283 templates/new_participant.jinja2:372
+#: templates/new_participant.jinja2:442 templates/new_participant.jinja2:485
msgid "I Accept"
-msgstr "Acepto"
+msgstr ""
+
+#: templates/new_participant.jinja2:193
+msgid "Biospecimen Consent Form"
+msgstr ""
+
+#: templates/new_participant.jinja2:195
+msgid "Data Consent Form"
+msgstr ""
+
+#: templates/new_participant.jinja2:206
+msgid ""
+"Signature and agreement of this consent form is required to process your "
+"sample(s)."
+msgstr ""
+
+#: templates/new_participant.jinja2:212
+msgid "Select age range of participant"
+msgstr ""
+
+#: templates/new_participant.jinja2:252 templates/new_participant.jinja2:352
+#: templates/new_participant.jinja2:422 templates/new_participant.jinja2:465
+#: templates/signed_consent.jinja2:23 templates/signed_consent.jinja2:107
+#: templates/signed_consent.jinja2:163 templates/signed_consent.jinja2:200
+msgid "https://oag.ca.gov/sites/all/files/agweb/pdfs/research/bill_of_rights.pdf"
+msgstr ""
+
+#: templates/new_participant.jinja2:282 templates/new_participant.jinja2:371
+#: templates/new_participant.jinja2:441 templates/new_participant.jinja2:484
+#: templates/sample.jinja2:241
+msgid "Cancel"
+msgstr ""
+
+#: templates/new_participant.jinja2:496
+msgid "Warning"
+msgstr ""
+
+#: templates/new_participant.jinja2:502
+msgid "Return to Home Page"
+msgstr ""
+
+#: templates/new_participant.jinja2:503
+msgid "Proceed with Creating New Source"
+msgstr ""
#: templates/new_results_page.jinja2:2 templates/sample_results.jinja2:2
+#, fuzzy
msgid "Sample Results"
-msgstr "Resultados de la muestra"
+msgstr "sitio_muestra"
#: templates/new_results_page.jinja2:216
msgid "11 to 20"
-msgstr "11 a 20"
+msgstr ""
#: templates/new_results_page.jinja2:217
msgid "21 to 30"
-msgstr "21 a 30"
+msgstr ""
#: templates/new_results_page.jinja2:218
msgid "5-6 hours"
-msgstr "5-6 horas"
+msgstr ""
#: templates/new_results_page.jinja2:219
msgid "6 to 10"
-msgstr "6 a 10"
+msgstr ""
#: templates/new_results_page.jinja2:220
msgid "6-7 hours"
-msgstr "6-7 horas"
+msgstr ""
#: templates/new_results_page.jinja2:221
msgid "7-8 hours"
-msgstr "7-8 horas"
+msgstr ""
#: templates/new_results_page.jinja2:222
msgid "8 or more hours"
-msgstr "8 o más horas"
+msgstr ""
-#: templates/new_results_page.jinja2:223 templates/new_results_page.jinja2:958
+#: templates/new_results_page.jinja2:223 templates/new_results_page.jinja2:870
msgid "Daily"
-msgstr "Diario"
+msgstr ""
#: templates/new_results_page.jinja2:224
msgid "Less than 5"
-msgstr "Menos de 5"
+msgstr ""
#: templates/new_results_page.jinja2:225
msgid "Less than 5 hours"
-msgstr "Menos de 5 horas"
+msgstr ""
#: templates/new_results_page.jinja2:226
msgid "More than 30"
-msgstr "Más de 30 horas"
+msgstr ""
-#: templates/new_results_page.jinja2:227 templates/new_results_page.jinja2:954
+#: templates/new_results_page.jinja2:227 templates/new_results_page.jinja2:866
msgid "Never"
-msgstr "Nunca"
+msgstr ""
#: templates/new_results_page.jinja2:228 templates/new_results_page.jinja2:233
#: templates/new_results_page.jinja2:234 templates/new_results_page.jinja2:235
-#: templates/new_results_page.jinja2:943 templates/new_results_page.jinja2:953
+#: templates/new_results_page.jinja2:855 templates/new_results_page.jinja2:865
msgid "Not provided"
-msgstr "No provisto"
+msgstr ""
-#: templates/new_results_page.jinja2:229 templates/new_results_page.jinja2:956
+#: templates/new_results_page.jinja2:229 templates/new_results_page.jinja2:868
msgid "Occasionally (1-2 times/week)"
-msgstr "Ocasionalmente (1-2 veces/semana)"
+msgstr ""
#: templates/new_results_page.jinja2:230
msgid "Rarely (a few times/month)"
-msgstr "Raramente (algunas veces/mes)"
+msgstr ""
-#: templates/new_results_page.jinja2:231 templates/new_results_page.jinja2:955
+#: templates/new_results_page.jinja2:231 templates/new_results_page.jinja2:867
msgid "Rarely (less than once/week)"
-msgstr "Rara vez (menos de una vez/semana)"
+msgstr ""
-#: templates/new_results_page.jinja2:232 templates/new_results_page.jinja2:957
+#: templates/new_results_page.jinja2:232 templates/new_results_page.jinja2:869
msgid "Regularly (3-5 times/week)"
-msgstr "Regularmente (3-5 veces/semana)"
+msgstr ""
-#: templates/new_results_page.jinja2:426
-msgid "All of the Microsetta Initiative"
-msgstr "Toda la Iniciativa Microsetta"
+#: templates/new_results_page.jinja2:319
+msgid "Microbiomes Across the Body"
+msgstr ""
-#: templates/new_results_page.jinja2:436 templates/new_results_page.jinja2:447
-msgid "Multipopulation"
-msgstr "Multipoblación"
+#: templates/new_results_page.jinja2:322
+msgid ""
+"In this map, we've placed your sample relative to all the other samples "
+"we have in Microsetta. As you can see, there are a few different types of"
+" samples people have contributed, and the microbial configurations "
+"present can be REALLY different."
+msgstr ""
+#: templates/new_results_page.jinja2:327 templates/new_results_page.jinja2:351
#: templates/new_results_page.jinja2:458
-msgid "You and the Microbes Around You"
-msgstr "Usted y los microbios que lo rodean"
+msgid "Microbiomes Across the World"
+msgstr ""
-#: templates/new_results_page.jinja2:521
-msgid "Publication link"
-msgstr "Enlace de la Publicación"
+#: templates/new_results_page.jinja2:330 templates/new_results_page.jinja2:354
+msgid ""
+"Researchers have noted large differences in our microbiomes depending on "
+"where we live. The reason WHY is not well understood, but we suspect "
+"factors such as diet or environmental exposures (e.g., plants, what's in "
+"your house, pollution, how often you come in contact with soil, etc) may "
+"be be major factors."
+msgstr ""
-#: templates/new_results_page.jinja2:523
+#: templates/new_results_page.jinja2:330 templates/new_results_page.jinja2:354
+msgid ""
+"Researchers do not know how much these differences matter! They certainly"
+" may."
+msgstr ""
+
+#: templates/new_results_page.jinja2:335 templates/new_results_page.jinja2:359
+#: templates/new_results_page.jinja2:463
+msgid "Microbiomes Across the Lifespan"
+msgstr ""
+
+#: templates/new_results_page.jinja2:338 templates/new_results_page.jinja2:362
+msgid ""
+"One major factor associated with gut microbiomes is the age of the "
+"individual, emphasized here by life stages."
+msgstr ""
+
+#: templates/new_results_page.jinja2:338 templates/new_results_page.jinja2:362
+msgid ""
+"Interestingly, infants are relatively similar microbially regardless of "
+"where they were born. But, as individuals age, it seems like their "
+"microbiomes reflect regional or population differences."
+msgstr ""
+
+#: templates/new_results_page.jinja2:343 templates/new_results_page.jinja2:449
+msgid "Microbiomes in the Environment"
+msgstr ""
+
+#: templates/new_results_page.jinja2:346
+msgid ""
+"Microbes are EVERYWHERE though! Using these same techniques described "
+"above, we compared your microbiome to samples collected from all over the"
+" surfaces from a brand new hospital."
+msgstr ""
+
+#: templates/new_results_page.jinja2:346
+msgid ""
+"As you can see, skin samples tend to more closely resemble those from the"
+" built environment, which makes sense as skin cells are constantly "
+"shedding from you."
+msgstr ""
+
+#: templates/new_results_page.jinja2:453
+msgid "The Microsetta Initiative"
+msgstr ""
+
+#: templates/new_results_page.jinja2:480
+msgid "Publication link"
+msgstr ""
+
+#: templates/new_results_page.jinja2:482
msgid "Data access (Qiita study"
-msgstr "Acceso de datos (estudio Qiita"
+msgstr ""
-#: templates/new_results_page.jinja2:713
+#: templates/new_results_page.jinja2:625
msgid "Download the spreadsheet"
-msgstr "Descargar la hoja de cálculo"
+msgstr ""
-#: templates/new_results_page.jinja2:720
+#: templates/new_results_page.jinja2:632
msgid ""
-"The broadest classification like Bacteria, Archaea and Eukaryokes (what humans "
-"are!)"
+"The broadest classification like Bacteria, Archaea and Eukaryokes (what "
+"humans are!)"
msgstr ""
-"La clasificación más amplia como las Bacterias, Archaea y Eucariotas (¡lo que "
-"son los humanos!)"
-#: templates/new_results_page.jinja2:723
+#: templates/new_results_page.jinja2:635
msgid ""
-"Within the kingdom Eukarya, this is like the difference between humans and "
-"plants"
+"Within the kingdom Eukarya, this is like the difference between humans "
+"and plants"
msgstr ""
-"Dentro del reino Eukarya, esto es como la diferencia entre los humanos y las "
-"plantas"
-#: templates/new_results_page.jinja2:726
+#: templates/new_results_page.jinja2:638
msgid "Within the phylum Chordata, this is along the lines of humans and fish"
-msgstr "Dentro del filo Chordata, esto es similar a los humanos y los peces"
+msgstr ""
-#: templates/new_results_page.jinja2:729
+#: templates/new_results_page.jinja2:641
msgid ""
-"Within the class Mammalia, this is like the difference between whales and a dogs"
+"Within the class Mammalia, this is like the difference between whales and"
+" a dogs"
msgstr ""
-"Dentro de la clase Mammalia, esto es como la diferencia entre las ballenas y "
-"los perros"
-#: templates/new_results_page.jinja2:732
+#: templates/new_results_page.jinja2:644
msgid "With the order Carnivora are the families for dogs and cats"
-msgstr "Con la orden Carnivora están las familias de perros y gatos"
+msgstr ""
-#: templates/new_results_page.jinja2:735
+#: templates/new_results_page.jinja2:647
msgid ""
-"Within the family Canidae, you would find a genus for foxes and one for wolves"
+"Within the family Canidae, you would find a genus for foxes and one for "
+"wolves"
msgstr ""
-"Dentro de la familia Canidae, encontrará un género para zorros y otro para lobos"
-#: templates/new_results_page.jinja2:922 templates/new_results_page.jinja2:925
-#: templates/new_results_page.jinja2:931 templates/new_results_page.jinja2:939
-#: templates/new_results_page.jinja2:942 templates/new_results_page.jinja2:952
+#: templates/new_results_page.jinja2:834 templates/new_results_page.jinja2:837
+#: templates/new_results_page.jinja2:843 templates/new_results_page.jinja2:851
+#: templates/new_results_page.jinja2:854 templates/new_results_page.jinja2:864
msgid "Unspecified"
-msgstr "Indeterminado"
+msgstr ""
-#: templates/new_results_page.jinja2:932
+#: templates/new_results_page.jinja2:844
msgid "chose not to provide their age"
-msgstr "optó por no proporcionar su edad"
+msgstr ""
-#: templates/new_results_page.jinja2:934
+#: templates/new_results_page.jinja2:846
msgid "is"
-msgstr "es"
+msgstr ""
-#: templates/new_results_page.jinja2:934
+#: templates/new_results_page.jinja2:846
msgid "years old"
-msgstr "años"
+msgstr ""
-#: templates/new_results_page.jinja2:967 templates/new_results_page.jinja2:979
+#: templates/new_results_page.jinja2:879 templates/new_results_page.jinja2:891
msgid "chose not to say how many sweets they eat"
-msgstr "optó por no decir cuántos dulces comen"
+msgstr ""
-#: templates/new_results_page.jinja2:969
+#: templates/new_results_page.jinja2:881
msgid "eats sweets"
-msgstr "come dulces"
+msgstr ""
-#: templates/new_results_page.jinja2:973
+#: templates/new_results_page.jinja2:885
msgid "eats more sugary sweets than you"
-msgstr "come más dulces que usted"
+msgstr ""
-#: templates/new_results_page.jinja2:975
+#: templates/new_results_page.jinja2:887
msgid "eats fewer sugary sweets than you"
-msgstr "come menos dulces que usted"
+msgstr ""
-#: templates/new_results_page.jinja2:977
+#: templates/new_results_page.jinja2:889
msgid "eats about the same number of sugary sweets as you"
-msgstr "come el mismo número de dulces que usted"
+msgstr ""
-#: templates/new_results_page.jinja2:1217
+#: templates/new_results_page.jinja2:1129
msgid "Rank Distributions"
-msgstr "Distribucion por Rango"
+msgstr ""
-#: templates/new_results_page.jinja2:1235
+#: templates/new_results_page.jinja2:1147
+#, fuzzy
msgid "My Sample"
-msgstr "Mi Muestra"
+msgstr "sitio_muestra"
-#: templates/new_results_page.jinja2:1241
+#: templates/new_results_page.jinja2:1153
msgid "How abundant are my microbes compared everyone in Microsetta?"
msgstr ""
-"¿Qué tan abundantes son mis microbios en comparación con los demás en "
-"Microsetta?"
-#: templates/new_results_page.jinja2:1244
+#: templates/new_results_page.jinja2:1156
msgid "Common types of microbes"
-msgstr "Tipos comunes de microbios"
+msgstr ""
-#: templates/new_results_page.jinja2:1250
+#: templates/new_results_page.jinja2:1162
msgid "Least Abundant"
-msgstr "Menos Abundante"
+msgstr ""
-#: templates/new_results_page.jinja2:1250
+#: templates/new_results_page.jinja2:1162
msgid "Most Abundant"
-msgstr "Más abundante"
+msgstr ""
-#: templates/new_results_page.jinja2:1268
+#: templates/new_results_page.jinja2:1192
msgid ""
-"whole genome sequencing, a technique that produces a large number of small DNA "
-"sequences from all of the microbial genomes in your sample. With enough "
-"sequences you can even see the variation that exists between microbes of the "
-"same species."
+"whole genome sequencing, a technique that produces a large number of "
+"small DNA sequences from all of the microbial genomes in your sample. "
+"With enough sequences you can even see the variation that exists between "
+"microbes of the same species."
msgstr ""
-"secuenciación del genoma completo, una técnica que produce una gran cantidad de "
-"pequeñas secuencias de ADN a partir de todos los genomas microbianos de su "
-"muestra. Con suficientes secuencias usted puede ver la variación que existe "
-"entre microbios de una misma especie."
-#: templates/new_results_page.jinja2:1271
+#: templates/new_results_page.jinja2:1195
msgid ""
-"16S. This technique produces DNA sequences from a specific variable region "
-"(V4) within a microbial gene (the 16S small subunit ribosomal gene). DNA "
-"sequences from this region of this gene can be used like a microbial barcode, "
-"providing researchers evidence of the types of microbes that may be present in "
-"your sample."
+"16S. This technique produces DNA sequences from a specific variable "
+"region (V4) within a microbial gene (the 16S small subunit ribosomal "
+"gene). DNA sequences from this region of this gene can be used like a "
+"microbial barcode, providing researchers evidence of the types of "
+"microbes that may be present in your sample."
msgstr ""
-"16S. Esta técnica produce secuencias de ADN a partir de una región variable "
-"específica (V4) dentro de un gen microbiano (el gen ribosomal de la subunidad "
-"menor 16S). Las secuencias de ADN de la región de este gen se pueden usar como "
-"un código de barras microbiano, proporcionando a los científicos evidencia de "
-"los tipos de microbios que pueden estar presentes en su muestra."
-#: templates/new_results_page.jinja2:1396 templates/sample.jinja2:149
-#: templates/sample_results.jinja2:128
+#: templates/new_results_page.jinja2:1319 templates/sample_results.jinja2:128
+#, fuzzy
msgid "Source"
-msgstr "Fuente"
+msgstr "tipo_muestra"
-#: templates/new_results_page.jinja2:1397 templates/sample_results.jinja2:129
-#: templates/source.jinja2:171
+#: templates/new_results_page.jinja2:1320 templates/sample_results.jinja2:129
msgid "Results"
-msgstr "Resultados"
+msgstr ""
-#: templates/new_results_page.jinja2:1406 templates/new_results_page.jinja2:1420
+#: templates/new_results_page.jinja2:1329
+#: templates/new_results_page.jinja2:1343
msgid "How do you compare?"
-msgstr "¿Cómo se compara?"
+msgstr ""
-#: templates/new_results_page.jinja2:1407 templates/new_results_page.jinja2:1432
-#: templates/new_results_page.jinja2:1434 templates/new_results_page.jinja2:1465
+#: templates/new_results_page.jinja2:1330
+#: templates/new_results_page.jinja2:1355
+#: templates/new_results_page.jinja2:1357
+#: templates/new_results_page.jinja2:1388
msgid "Diversity"
-msgstr "Diversidad"
+msgstr ""
-#: templates/new_results_page.jinja2:1408 templates/new_results_page.jinja2:1440
-#: templates/new_results_page.jinja2:1442 templates/new_results_page.jinja2:1534
+#: templates/new_results_page.jinja2:1331
+#: templates/new_results_page.jinja2:1363
+#: templates/new_results_page.jinja2:1365
+#: templates/new_results_page.jinja2:1457
msgid "Similarity"
-msgstr "Semejanza"
+msgstr ""
-#: templates/new_results_page.jinja2:1409 templates/new_results_page.jinja2:1448
-#: templates/new_results_page.jinja2:1450
+#: templates/new_results_page.jinja2:1332
+#: templates/new_results_page.jinja2:1371
+#: templates/new_results_page.jinja2:1373
msgid "Your Inner Zoo"
-msgstr "Su Zoológico Interior"
+msgstr ""
-#: templates/new_results_page.jinja2:1410 templates/new_results_page.jinja2:1456
-#: templates/new_results_page.jinja2:1458 templates/new_results_page.jinja2:1763
+#: templates/new_results_page.jinja2:1333
+#: templates/new_results_page.jinja2:1379
+#: templates/new_results_page.jinja2:1381
+#: templates/new_results_page.jinja2:1670
msgid "Microbiome Map"
-msgstr "Mapa del Microbioma"
+msgstr ""
-#: templates/new_results_page.jinja2:1411 templates/new_results_page.jinja2:1714
+#: templates/new_results_page.jinja2:1334
+#: templates/new_results_page.jinja2:1640
msgid "How can I learn more?"
-msgstr "¿Cómo puedo aprender más?"
+msgstr ""
-#: templates/new_results_page.jinja2:1424
+#: templates/new_results_page.jinja2:1347
msgid ""
-"Your microbiome is a rainforest of diverse microbes dominated by microbes - "
-"some 40 trillion bacteria, weighing around 1 lb, live all over and in your "
-"body. The diversity of your microbiome, how similar it is to other peoples', "
-"and the types of bacteria living inside you have all been linked to health, "
-"disease and lifestyle traits in numerous studies."
+"Your microbiome is a rainforest of diverse microbes dominated by microbes"
+" - some 40 trillion bacteria, weighing around 1 lb, live all over and in "
+"your body. The diversity of your microbiome, how similar it is to other "
+"peoples', and the types of bacteria living inside you have all been "
+"linked to health, disease and lifestyle traits in numerous studies."
msgstr ""
-"Su microbioma es una selva tropical de diversos microbios dominados por "
-"microbios - aproximadamente 40 trillones de bacterias, que pesan alrededor de 1 "
-"libra, viven sobre y en todo su cuerpo. La diversidad de su microbioma, qué tan "
-"similar es al de otras personas y los tipos de bacterias que viven dentro de "
-"usted se han relacionado con la salud, la enfermedad y el estilo de vida en "
-"numerosos estudios."
-#: templates/new_results_page.jinja2:1428
+#: templates/new_results_page.jinja2:1351
msgid ""
-"Scientists often use many different approaches to see how your microbiome "
-"differs. We've analyzed your microbiome sample using standard microbiome "
-"research tools, and the results are broken down below in a few different "
-"categories"
+"Scientists often use many different approaches to see how your microbiome"
+" differs. We've analyzed your microbiome sample using standard microbiome"
+" research tools, and the results are broken down below in a few different"
+" categories"
msgstr ""
-"Los científicos regularmente usan diferentes criterios para ver cómo difiere su "
-"microbioma. Nosotros hemos analizado su muestra de microbioma utilizando "
-"herramientas estándar para la investigación del microbioma, y los resultados se "
-"desglosan a continuación en diferentes categorías"
-#: templates/new_results_page.jinja2:1434
+#: templates/new_results_page.jinja2:1357
msgid "How many kinds of microbes were in your sample? Check out your"
-msgstr "¿Cuántos tipos de microbios había en su muestra? Revise su"
+msgstr ""
-#: templates/new_results_page.jinja2:1442
+#: templates/new_results_page.jinja2:1365
msgid ""
-"What kinds of people have microbiomes like yours? Check out your microbiome"
+"What kinds of people have microbiomes like yours? Check out your "
+"microbiome"
msgstr ""
-"¿Qué tipo de personas tienen microbiomas como el suyo? Revise su microbioma"
-#: templates/new_results_page.jinja2:1450
+#: templates/new_results_page.jinja2:1373
msgid "What particular kinds of microbes are in your sample? Wander through"
-msgstr "¿Qué tipo de microbios particulares hay en su muestra? Explore"
+msgstr ""
-#: templates/new_results_page.jinja2:1458
+#: templates/new_results_page.jinja2:1381
msgid "Where are you on the"
-msgstr "¿Dónde está usted en el"
+msgstr ""
-#: templates/new_results_page.jinja2:1468
+#: templates/new_results_page.jinja2:1391
msgid ""
"There are anywhere from hundreds of millions to hundreds of billions of "
-"different types of bacteria living on planet earth. This dwarfs the meager 2 "
-"million different kinds of animals and plants that you can see with your eyes. "
-"The average"
-"span> American has 93 different types of microbes in a stool "
-"sample, which is lower than we find in people living a more hunter-gatherer "
-"lifestyle, like the 132 we find in samples from the Smits et al. Science 2017\" data-html=\"true"
-"\">Hadza ."
-msgstr ""
-"Hay entre cientos de millones y cientos de miles de millones de distintos tipos "
-"de bacterias que viven en el planeta tierra. Esto empequeñece a los escasos 2 "
-"millones de distintos tipos de animales y plantas que puede ver con sus ojos. "
-"El promedio de "
-"Estadounidenses tienen 93 diferentes tipos de microbios en "
-"una muestra de heces, el cual es inferior al que encontramos en personas que "
-"viven un estilo de vida más cazador-recolector, como los 132"
-"strong> que encontramos en muestras de Smits et al. Science 2017” data-html=“true”>Hadza ."
-
-#: templates/new_results_page.jinja2:1472
+"different types of bacteria living on planet earth. This dwarfs the "
+"meager 2 million different kinds of animals and plants that you can see "
+"with your eyes. The average American has FILLIN different types of microbes in a"
+" stool sample, which is lower than we find in people living a more "
+"hunter-gatherer lifestyle, like the FILLIN we find in samples from the Smits et al. Science 2017\" data-"
+"html=\"true\">Hadza ."
+msgstr ""
+
+#: templates/new_results_page.jinja2:1395
msgid "Number of different microbes found in your sample"
-msgstr "Número de microbios diferentes encontrados en su muestra"
+msgstr ""
-#: templates/new_results_page.jinja2:1479
+#: templates/new_results_page.jinja2:1402
msgid ""
-"When we calculated the diversity of groups for samples in our database, we "
-"found diversity is associated with how you live your life. Here, we summarized "
-"the average microbiome diversity for a few of the questionnaire responses, "
-"specifically people who eat more than 30 plants a week, exercise regularly, "
-"drink water regularly, or sleep more than 6 hours a night."
+"When we calculated the diversity of groups for samples in our database, "
+"we found diversity is associated with how you live your life. Here, we "
+"summarized the average microbiome diversity for a few of the "
+"questionnaire responses, specifically people who eat more than 30 plants "
+"a week, exercise regularly, drink water regularly, or sleep more than 6 "
+"hours a night."
msgstr ""
-"Cuando nosotros calculamos la diversidad de grupos para muestras en nuestra "
-"base de datos, encontramos que la diversidad está asociada con la forma en que "
-"vive su vida. Aquí, nosotros resumimos la diversidad de microbiomas promedio "
-"para algunas de las respuestas del cuestionario, específicamente las personas "
-"que consumen más de 30 plantas a la semana, hacen ejercicio con regularidad, "
-"beben agua con regularidad o duermen más de 6 horas por noche."
-#: templates/new_results_page.jinja2:1487
+#: templates/new_results_page.jinja2:1410
msgid "Eat more than 30 plants a week"
-msgstr "Comen más de 30 plantas a la semana"
+msgstr ""
-#: templates/new_results_page.jinja2:1490 templates/new_results_page.jinja2:1501
-#: templates/new_results_page.jinja2:1514 templates/new_results_page.jinja2:1525
+#: templates/new_results_page.jinja2:1413
+#: templates/new_results_page.jinja2:1424
+#: templates/new_results_page.jinja2:1437
+#: templates/new_results_page.jinja2:1448
msgid "unique microbial features"
-msgstr "características microbianas únicas"
+msgstr ""
-#: templates/new_results_page.jinja2:1498
+#: templates/new_results_page.jinja2:1421
msgid "Exercise regularly"
-msgstr "Hacen ejercicio regularmente"
+msgstr ""
-#: templates/new_results_page.jinja2:1511
+#: templates/new_results_page.jinja2:1434
msgid "Drink 1L or water regularly"
-msgstr "Beben 1L de agua o agua regularmente"
+msgstr ""
-#: templates/new_results_page.jinja2:1522
+#: templates/new_results_page.jinja2:1445
msgid "Sleep more than 6 hours per night"
-msgstr "Duermen más de 6 horas por noche"
-
-#: templates/new_results_page.jinja2:1537
-msgid ""
-"One of the powerful ways microbiome scientists analyze data is by looking at "
-"similarities among samples. To do this, we compute a a "
-"lot of ways to form a distance. One way is to base the distance off of the "
-"fraction of microbes in common in your sample with each other sample. We "
-"typically share few of the exact same microbes in common with other people "
-"though which is problematic when comparing exact microbes. To account for this, "
-"researchers often take the evolutionary relationships among microbes into "
-"account when forming these distances.\">distance from your sample to all "
-"other samples based on the microbes observed."
-msgstr ""
-"Una forma eficaz en que los científicos analizan los datos del microbioma es "
-"observando las similitudes entre las muestras. Para hacer esto, nosotros "
-"calculamos una a lot of ways to form a distance. One "
-"way is to base the distance off of the fraction of microbes in common in your "
+msgstr ""
+
+#: templates/new_results_page.jinja2:1460
+msgid ""
+"One of the powerful ways microbiome scientists analyze data is by looking"
+" at similarities among samples. To do this, we compute a a lot of ways to form a distance. One way is to "
+"base the distance off of the fraction of microbes in common in your "
"sample with each other sample. We typically share few of the exact same "
-"microbes in common with other people though which is problematic when comparing "
-"exact microbes. To account for this, researchers often take the evolutionary "
-"relationships among microbes into account when forming these "
-"distances.”>distancia de su muestra a todas las demás muestras basada en "
-"los microbios observados."
-
-#: templates/new_results_page.jinja2:1541
-msgid ""
-"Here, we your sample to all the others in our database, and examined the 100 "
-"most similar samples to yours. These people answered their questionnaires in "
-"the following way; the response is colored in light green if it matches your response and brown if your response differed."
-msgstr ""
-"Aquí, nosotros comparamos su muestra con las demás muestras en nuestra base de "
-"datos, y examinamos las 100 muestras más similares a la suya. Estas personas "
-"respondieron sus cuestionarios de la siguiente manera; la respuesta esta en "
-"color verde si coincide con su "
-"respuesta y en café si su "
-"respuesta es diferente."
-
-#: templates/new_results_page.jinja2:1550
+"microbes in common with other people though which is problematic when "
+"comparing exact microbes. To account for this, researchers often take the"
+" evolutionary relationships among microbes into account when forming "
+"these distances.\">distance from your sample to all other samples "
+"based on the microbes observed."
+msgstr ""
+
+#: templates/new_results_page.jinja2:1464
+msgid ""
+"Here, we your sample to all the others in our database, and examined the "
+"100 most similar samples to yours. These people answered their "
+"questionnaires in the following way; the response is colored in light green if it matches your"
+" response and brown "
+" if your response differed."
+msgstr ""
+
+#: templates/new_results_page.jinja2:1473
msgid "Diet"
-msgstr "Dieta"
+msgstr ""
-#: templates/new_results_page.jinja2:1560
+#: templates/new_results_page.jinja2:1483
msgid "of people with a microbiome like yours eat"
-msgstr "de las personas con un microbioma como el suyo comen"
+msgstr ""
-#: templates/new_results_page.jinja2:1562
+#: templates/new_results_page.jinja2:1485
msgid "plants per week"
-msgstr "plantas por semana"
+msgstr ""
-#: templates/new_results_page.jinja2:1571
+#: templates/new_results_page.jinja2:1494
msgid "of people with a microbiome like yours had a similar diet"
-msgstr "de las personas con un microbioma como el suyo tenían una dieta similar"
+msgstr ""
-#: templates/new_results_page.jinja2:1578
+#: templates/new_results_page.jinja2:1501
msgid "Supplements"
-msgstr "Suplementos"
+msgstr ""
-#: templates/new_results_page.jinja2:1588
+#: templates/new_results_page.jinja2:1511
msgid "of people with a microbiome like yours"
-msgstr "de las personas con un microbioma como el suyo"
+msgstr ""
-#: templates/new_results_page.jinja2:1590
+#: templates/new_results_page.jinja2:1513
msgid "take probiotics"
-msgstr "toman probióticos"
+msgstr ""
-#: templates/new_results_page.jinja2:1599
+#: templates/new_results_page.jinja2:1522
msgid "of people with a microbiome like yours take vitamins"
-msgstr "de las personas con un microbioma como el suyo toman vitaminas"
+msgstr ""
-#: templates/new_results_page.jinja2:1606
+#: templates/new_results_page.jinja2:1529
msgid "Activity"
-msgstr "Actividad"
+msgstr ""
-#: templates/new_results_page.jinja2:1616
+#: templates/new_results_page.jinja2:1539
msgid "of people with a microbiome like yours exercise"
-msgstr "de las personas con un microbioma como el suyo hacen ejercicio"
+msgstr ""
-#: templates/new_results_page.jinja2:1626
+#: templates/new_results_page.jinja2:1549
msgid "of people with a microbiome like yours get"
-msgstr "de las personas con un microbioma como el suyo toman"
+msgstr ""
-#: templates/new_results_page.jinja2:1628
+#: templates/new_results_page.jinja2:1551
msgid "of sleep at night"
-msgstr "de sueño por la noche"
+msgstr ""
-#: templates/new_results_page.jinja2:1635
+#: templates/new_results_page.jinja2:1558
msgid "Demographic"
-msgstr "Demográfico"
+msgstr ""
-#: templates/new_results_page.jinja2:1645
+#: templates/new_results_page.jinja2:1568
msgid "of people with a microbiome like yours were the same age as you"
msgstr ""
-"de las personas con un microbioma como el suyo tenían la misma edad que usted"
-#: templates/new_results_page.jinja2:1654
+#: templates/new_results_page.jinja2:1577
msgid "of people with a microbiome like yours were the same gender"
-msgstr "de las personas con un microbioma como el suyo eran del mismo sexo"
+msgstr ""
-#: templates/new_results_page.jinja2:1663
+#: templates/new_results_page.jinja2:1586
msgid "Your Inner Zoo (aka What's in your sample?)"
-msgstr "Su Zoológico Interno (¿Qué hay en su muestra?)"
+msgstr ""
-#: templates/new_results_page.jinja2:1666
+#: templates/new_results_page.jinja2:1589
msgid ""
-"Below you will find a table of all of the different microbes we found in your "
-"sample, and their proportions."
+"Below you will find a table of all of the different microbes we found in "
+"your sample, and their proportions."
msgstr ""
-"A continuación encontrará una tabla de todos los distintos microbios que "
-"encontramos en su muestra y sus proporciones."
-#: templates/new_results_page.jinja2:1670
+#: templates/new_results_page.jinja2:1593
msgid ""
-"Microbes sometimes have difficult names to pronounce. Some of the names are "
-"Latin, Greek, Norse, Chinese and more. If you'd like to know more, a "
-"pronounciation guide can be found here ."
+"Microbes sometimes have difficult names to pronounce. Some of the names "
+"are Latin, Greek, Norse, Chinese and more. If you'd like to know more, a "
+"pronounciation guide can be found here ."
msgstr ""
-"Los microbios a veces tienen nombres difíciles de pronunciar. Algunos de los "
-"nombres están en latín, griego, nórdico, chino entre otros. Si desea conocer "
-"más, puede encontrar una guía de pronunciación aquí ."
-#: templates/new_results_page.jinja2:1674
+#: templates/new_results_page.jinja2:1597
msgid ""
"Please mouse over the header to learn more about how to interpret these "
-"taxonomic ranks (e.g., Kingdom) using examples of non-microbial organisms."
+"taxonomic ranks (e.g., Kingdom) using examples of non-microbial "
+"organisms."
msgstr ""
-"Pase el cursor del mouse sobre el encabezado para obtener más información sobre "
-"cómo interpretar estos rangos taxonómicos (por ejemplo, Reino) usando ejemplos "
-"de organismos no microbianos."
-#: templates/new_results_page.jinja2:1681
+#: templates/new_results_page.jinja2:1604
#, python-format
msgid "%% of Sample"
-msgstr "%% de la muestra"
+msgstr ""
-#: templates/new_results_page.jinja2:1682 templates/sample_results.jinja2:148
+#: templates/new_results_page.jinja2:1605 templates/sample_results.jinja2:148
msgid "Kingdom"
-msgstr "Reino"
+msgstr ""
-#: templates/new_results_page.jinja2:1683 templates/sample_results.jinja2:149
+#: templates/new_results_page.jinja2:1606 templates/sample_results.jinja2:149
msgid "Phylum"
-msgstr "Filo"
+msgstr ""
-#: templates/new_results_page.jinja2:1684 templates/sample_results.jinja2:150
+#: templates/new_results_page.jinja2:1607 templates/sample_results.jinja2:150
msgid "Class"
-msgstr "Clase"
+msgstr ""
-#: templates/new_results_page.jinja2:1685 templates/sample_results.jinja2:151
+#: templates/new_results_page.jinja2:1608 templates/sample_results.jinja2:151
msgid "Order"
-msgstr "Orden"
+msgstr ""
-#: templates/new_results_page.jinja2:1686 templates/sample_results.jinja2:152
+#: templates/new_results_page.jinja2:1609 templates/sample_results.jinja2:152
msgid "Family"
-msgstr "Familia"
+msgstr ""
-#: templates/new_results_page.jinja2:1687 templates/sample_results.jinja2:153
+#: templates/new_results_page.jinja2:1610 templates/sample_results.jinja2:153
+#, fuzzy
msgid "Genus"
-msgstr "Género"
+msgstr "es_mx"
-#: templates/new_results_page.jinja2:1698
+#: templates/new_results_page.jinja2:1618
msgid ""
-"In the plot below, you can see the most commonly observed microbial genera in "
-"the dataset, and distribution of ranks of those genera. For example,"
+"No evidence presented here indicates what we've observed is clinically "
+"dangerous"
msgstr ""
-"En la siguiente gráfica, usted podrá ver los géneros microbianos observados con "
-"mayor frecuencia en el conjunto de datos y el rango de distribución de esos "
-"géneros. Por ejemplo,"
-#: templates/new_results_page.jinja2:1700
+#: templates/new_results_page.jinja2:1624
+msgid ""
+"In the plot below, you can see the most commonly observed microbial "
+"genera in the dataset, and distribution of ranks of those genera. For "
+"example,"
+msgstr ""
+
+#: templates/new_results_page.jinja2:1626
msgid "typically has the highest relative abundance of samples in the dataset."
msgstr ""
-"normalmente tiene la mayor abundancia relativa de muestras en el conjunto de "
-"datos."
-
-#: templates/new_results_page.jinja2:1717
-msgid ""
-"Microbiome analysis is a burgeoning new field, and the information displayed "
-"here is only an example of what is becoming possible thanks to the data that "
-"you helped collect."
-msgstr ""
-"El análisis del microbioma es un campo nuevo, y la información que se muestra "
-"aquí es solo un ejemplo de lo que se está logrando gracias a los datos que "
-"usted ayudó a recopilar."
-
-#: templates/new_results_page.jinja2:1721
-msgid ""
-"So if you want to learn more, you can even take a look at the dataset for "
-"yourself!"
-msgstr "Si desea aprender más, ¡usted puede revisar el conjunto de datos!"
-
-#: templates/new_results_page.jinja2:1725
-msgid ""
-"For your sample, we performed a technique called amplicon sequencing where we "
-"examine pieces of DNA corresponding to a particular gene. Specifically, we "
-"sequenced the fourth variable region (V4) of the 16S rRNA small subunit "
-"ribosomal gene. DNA sequences from this region of this gene can be used like a "
-"microbial barcode, providing researchers evidence of the types of microbes that "
-"may be present in your sample."
-msgstr ""
-"Para su muestra, realizamos una técnica llamada secuenciación de amplicón en la "
-"que examinamos fragmentos de ADN correspondientes a un gen en particular. "
-"Específicamente, secuenciamos la cuarta región variable (V4) del gen ribosomal "
-"de la subunidad menor 16S rRNA. Las secuencias de ADN de la región de este gen "
-"se pueden usar como un código de barras microbiano, proporcionando a los "
-"investigadores evidencia de los tipos de microbios que pueden estar presentes "
-"en su muestra."
-
-#: templates/new_results_page.jinja2:1729
-msgid ""
-"There are many resources for microbiome information available online. If you'd "
-"like to learn more, we recommend the American Society for Microbiology , microBEnet , the Canadian Probiotics Chart , and the American Gastroenterological Association ."
-msgstr ""
-"Hay muchos recursos de información sobre el microbioma disponibles en línea. Si "
-"desea obtener más información, le recomendamos el American Society for "
-"Microbiology , microBEnet , the Canadian Probiotics Chart , and the American Gastroenterological Association ."
-
-#: templates/new_results_page.jinja2:1732
+
+#: templates/new_results_page.jinja2:1643
+msgid ""
+"Microbiome analysis is a burgeoning new field, and the information "
+"displayed here is only an example of what is becoming possible thanks to "
+"the data that you helped collect."
+msgstr ""
+
+#: templates/new_results_page.jinja2:1647
+msgid ""
+"So if you want to learn more, you can even take a look at the dataset for"
+" yourself!"
+msgstr ""
+
+#: templates/new_results_page.jinja2:1651
+msgid ""
+"For your sample, we performed a technique called amplicon sequencing "
+"where we examine pieces of DNA corresponding to a particular gene. "
+"Specifically, we sequenced the fourth variable region (V4) of the 16S "
+"rRNA small subunit ribosomal gene. DNA sequences from this region of this"
+" gene can be used like a microbial barcode, providing researchers "
+"evidence of the types of microbes that may be present in your sample."
+msgstr ""
+
+#: templates/new_results_page.jinja2:1655
+msgid ""
+"There are many resources for microbiome information available online. If "
+"you'd like to learn more, we recommend the American Society for "
+"Microbiology , microBEnet , the Canadian Probiotics Chart , "
+"and the American Gastroenterological "
+"Association ."
+msgstr ""
+
+#: templates/new_results_page.jinja2:1658
msgid "Datasets used in your results report"
-msgstr "Conjunto de datos usados en el reporte de sus resultados"
+msgstr ""
-#: templates/new_results_page.jinja2:1734
+#: templates/new_results_page.jinja2:1660
msgid ""
-"The results shown in the Microbiome Maps portion of the report relied on data "
-"from many different publically accessible microbiome datasets. These different "
-"datasets, and links to them, are listed below."
+"The results shown in the Microbiome Maps portion of the report relied on "
+"data from many different publically accessible microbiome datasets. These"
+" different datasets, and links to them, are listed below."
msgstr ""
-"Los resultados demostrados en la parte del reporte del mapa del microbioma se "
-"basaron en información de varios conjuntos de datos de microbioma con acceso "
-"público. Estos diferentes conjuntos de datos, y los enlaces a ellos, se "
-"muestran a continuación."
-#: templates/new_results_page.jinja2:1737
-msgid "The Microsetta Initiative"
-msgstr "The Microsetta Initiative"
+#: templates/new_results_page.jinja2:1673
+msgid ""
+"Microbiome maps turn the similarities and differences among microbiomes "
+"into a two-dimensional picture. Each dot is a whole microbiome, and dots "
+"close to yours are more similar microbiomes."
+msgstr ""
-#: templates/new_results_page.jinja2:1742 templates/new_results_page.jinja2:1795
-msgid "Microbiomes Across the World"
-msgstr "Microbiomas en todo el mundo"
+#: templates/new_results_page.jinja2:1677
+msgid ""
+"How are these maps "
+"produced? "
+msgstr ""
-#: templates/new_results_page.jinja2:1747 templates/new_results_page.jinja2:1819
-msgid "Microbiomes Across the Lifespan"
-msgstr "Microbiomas a lo largo de la vida"
+#: templates/nutrition.jinja2:2 templates/sitebase.jinja2:135
+#: templates/sitebase.jinja2:162 templates/sitebase.jinja2:164
+msgid "My Nutrition"
+msgstr ""
-#: templates/new_results_page.jinja2:1752 templates/new_results_page.jinja2:1842
-msgid "Microbiomes in the Environment"
-msgstr "Microbiomas en el Medio Ambiente"
-
-#: templates/new_results_page.jinja2:1766
-msgid ""
-"Microbiome maps turn the similarities and differences among microbiomes into a "
-"two-dimensional picture. Each dot is a whole microbiome, and dots close to "
-"yours are more similar microbiomes."
-msgstr ""
-"Los mapas de microbiomas convierten las similitudes y las diferencias entre los "
-"microbiomas en una imagen bidimensional. Cada punto es un microbioma completo, "
-"y los puntos cercanos al suyo son microbiomas más similares."
-
-#: templates/new_results_page.jinja2:1770
-msgid ""
-"How are "
-"these maps produced? "
-msgstr ""
-"¿Cómo se producen estos "
-"mapas? "
-
-#: templates/new_results_page.jinja2:1775
-msgid "Microbiomes Across the Body"
-msgstr "Microbiomas por todo el cuerpo"
+#: templates/nutrition.jinja2:66
+#, fuzzy
+msgid ""
+"Your registration code is not in our system or has already been used. "
+"Please try again."
+msgstr ""
+"El ID del kit proporcionado no es válido o ya ha sido utilizado; por "
+"favor vuelva a comprobar su información."
+
+#: templates/nutrition.jinja2:96 templates/nutrition.jinja2:113
+#: templates/reports.jinja2:83
+msgid "My FFQs"
+msgstr ""
-#: templates/new_results_page.jinja2:1786
+#: templates/nutrition.jinja2:102
msgid ""
-"In this map, we've placed your sample relative to all the other samples we have "
-"in Microsetta. As you can see, there are a few different types of samples "
-"people have contributed, and the microbial configurations present can be REALLY "
-"different."
+"Currently, \"My FFQs\" is unavailable in your country or region. We "
+"apologize for any inconvenience."
msgstr ""
-"En este mapa, hemos colocado su muestra en relación con todas las demás "
-"muestras que tenemos en Microsetta. Como puede ver, hay diferentes tipos de "
-"muestras que las personas han contribuido, y las configuraciones microbianas "
-"presentes pueden ser REALMENTE diferentes."
-#: templates/new_results_page.jinja2:1806
+#: templates/nutrition.jinja2:119
+msgid "Have an FFQ Code"
+msgstr ""
+
+#: templates/nutrition.jinja2:121
+msgid "Get an FFQ Code"
+msgstr ""
+
+#: templates/nutrition.jinja2:129
msgid ""
-"Researchers have noted large differences in our microbiomes depending on where "
-"we live. The reason WHY is not well understood, but we suspect factors such as "
-"diet or environmental exposures (e.g., plants, what's in your house, pollution, "
-"how often you come in contact with soil, etc) may be be major factors."
+"This Food Frequency Questionnaire (FFQ) will take approximately 30 "
+"minutes. By completing it, you'll receive the following report"
msgstr ""
-"Los investigadores han notado grandes diferencias en nuestros microbiomas según "
-"el lugar donde vivimos. No se conocen bien las razones de ello, pero "
-"sospechamos que los factores como la dieta o la exposición ambiental (por "
-"ejemplo, las plantas, lo que hay en su casa, la contaminación, la frecuencia "
-"con la que entra en contacto con el suelo, etc.) pueden ser factores "
-"importantes."
-#: templates/new_results_page.jinja2:1810
+#: templates/nutrition.jinja2:130
msgid ""
-"Researchers do not know how much these differences matter! They certainly may."
-msgstr "¡Los investigadores no saben cuánto importan estas diferencias!"
+"Personal diet and nutrition summary, listing the highest contributing "
+"food sources of nutrients you should try to limit and your top food "
+"sources with key nutrients that promote good health."
+msgstr ""
-#: templates/new_results_page.jinja2:1830
+#: templates/nutrition.jinja2:135
msgid ""
-"One major factor associated with gut microbiomes is the age of the individual, "
-"emphasized here by life stages."
+"You must press the \"Finish\" button on the final page of the FFQ to "
+"register it as completed. You can complete the FFQ in stages by clicking "
+"\"Continue FFQ\" and selecting the \"Resume\" button to return to where "
+"you left off."
+msgstr ""
+
+#: templates/nutrition.jinja2:146 templates/reports.jinja2:93
+msgid "Download Top Food Report"
+msgstr ""
+
+#: templates/nutrition.jinja2:149 templates/nutrition.jinja2:151
+#: templates/reports.jinja2:96 templates/reports.jinja2:98
+msgid "Continue FFQ"
+msgstr ""
+
+#: templates/nutrition.jinja2:164
+msgid "Registration Code"
+msgstr ""
+
+#: templates/nutrition.jinja2:170
+msgid "Register FFQ"
+msgstr ""
+
+#: templates/opt_out.jinja2:2 templates/opt_out.jinja2:37
+#: templates/opt_out_confirm.jinja2:2
+msgid "Opt Out"
msgstr ""
-"Un factor importante asociado con el microbioma intestinal es la edad del "
-"individuo, enfatizada aquí por las diferentes etapas de la vida."
-#: templates/new_results_page.jinja2:1834
+#: templates/opt_out.jinja2:28
msgid ""
-"Interestingly, infants are relatively similar microbially regardless of where "
-"they were born. But, as individuals age, it seems like their microbiomes "
-"reflect regional or population differences."
+"Sorry, we could not complete the request. Please email microsetta@ucsd.edu with the "
+"email address you signed up with so we can remove you from our list."
msgstr ""
-"Curiosamente, los bebés son relativamente similares desde el punto de vista "
-"microbiano, independientemente de dónde hayan nacido. Pero, a medida que las "
-"personas envejecen, parece que sus microbiomas reflejan diferencias regionales "
-"o de población."
-#: templates/new_results_page.jinja2:1853
+#: templates/opt_out.jinja2:36
msgid ""
-"Microbes are EVERYWHERE though! Using these same techniques described above, we "
-"compared your microbiome to samples collected from all over the surfaces from a "
-"brand new hospital."
+"We're sorry you are no longer interested in participating in The Human "
+"Diets & Microbiome Initiative (THDMI). Please click the \"opt out\" "
+"button below to confirm that you do not wish to take part."
msgstr ""
-"¡Los microbios están EN TODAS PARTES! Usando las técnicas descritas "
-"anteriormente, nosotros comparamos su microbioma con muestras recolectadas de "
-"todas las superficies de un hospital nuevo."
-#: templates/new_results_page.jinja2:1857
+#: templates/opt_out_confirm.jinja2:27
msgid ""
-"As you can see, skin samples tend to more closely resemble those from \"the "
-"built environment\", which makes sense as skin cells are constantly shedding "
-"from you."
+"Thank you for letting us know. You will no longer be part of this "
+"research study."
msgstr ""
-"Como puede ver, las muestras de la piel tienden a parecerse más a las del "
-"“entorno construido”, lo que tiene sentido ya que las células de la piel se "
-"desprenden constantemente de usted."
#: templates/post_sample_questionnaire.jinja2:2
msgid "Optional Sample Surveys"
-msgstr "Cuestionario de muestra opcional"
+msgstr ""
#: templates/post_sample_questionnaire.jinja2:16
msgid "Your diet can provide researchers valuable information"
-msgstr "Su dieta puede proporcionar valiosa información a los investigadores"
+msgstr ""
#: templates/post_sample_questionnaire.jinja2:19
msgid "Would you like to take our additional survey, the"
-msgstr "Le gustaría contestar un cuestionario adicional, el"
+msgstr ""
-#: templates/post_sample_questionnaire.jinja2:19 templates/source.jinja2:201
+#: templates/post_sample_questionnaire.jinja2:19
+#, fuzzy
msgid "Food Frequency Questionnaire"
-msgstr "Cuestionario de Frecuencia de Consumo de Alimentos"
+msgstr "Cuestionario de Frecuencia de Consumo de Alimentos Vioscreen"
#: templates/post_sample_questionnaire.jinja2:19
msgid "FFQ"
-msgstr "FFQ"
+msgstr ""
#: templates/post_sample_questionnaire.jinja2:19
msgid ""
-"By completing the questionnaire, you can enhance information about your sample, "
-"which will power more insightful research!"
+"By completing the questionnaire, you can enhance information about your "
+"sample, which will power more insightful research!"
msgstr ""
-"Al completar el cuestionario, usted podrá enriquecer la información sobre su "
-"muestra, lo que impulsará una investigación más detallada!"
#: templates/post_sample_questionnaire.jinja2:20
msgid "Note"
-msgstr "Tenga en cuenta"
+msgstr ""
#: templates/post_sample_questionnaire.jinja2:20
msgid ""
-"If you took multiple samples within a short time frame, you only need to take "
-"the FFQ for one such sample"
+"If you took multiple samples within a short time frame, you only need to "
+"take the FFQ for one such sample"
msgstr ""
-"Si tomó varias muestras en un período corto de tiempo, solo necesita tomar el "
-"FFQ para una de esas muestras"
#: templates/post_sample_questionnaire.jinja2:23
msgid "Approx time: 30 minutes"
-msgstr "Tiempo aproximado: 30 minutos"
+msgstr ""
#: templates/post_sample_questionnaire.jinja2:27
msgid "Take FFQ"
-msgstr "Tomar el FFQ"
-
-#: templates/sample.jinja2:2 templates/sample.jinja2:150
-msgid "Sample Information"
-msgstr "Información de la muestra"
-
-#: templates/sample.jinja2:27
-msgid "Please select a date within the last 10 years."
-msgstr "Seleccione una fecha dentro de los últimos 10 años."
-
-#: templates/sample.jinja2:30
-msgid "Please select a date within the next 30 days."
-msgstr "Seleccione una fecha dentro de los próximos 30 días."
+msgstr ""
-#: templates/sample.jinja2:86
-msgid "Required Format: MM/DD/YYYY"
-msgstr "Formato requerido: MM/DD/AAAA"
+#: templates/reports.jinja2:2 templates/sitebase.jinja2:137
+#: templates/sitebase.jinja2:169 templates/sitebase.jinja2:171
+msgid "My Reports"
+msgstr ""
-#: templates/sample.jinja2:158
-msgid "Sample Recorded, Editing is Locked"
-msgstr "Muestra registrada, la edición está bloqueada"
+#: templates/sample.jinja2:24
+msgid "Do you really want to remove this sample from this source?"
+msgstr ""
-#: templates/sample.jinja2:169
-msgid "Date"
-msgstr "Fecha"
+#: templates/sample.jinja2:25
+msgid "Doing so will remove any collection info saved for this sample and will"
+msgstr ""
-#: templates/sample.jinja2:178
-msgid "Time"
-msgstr "Hora"
+#: templates/sample.jinja2:26
+msgid "unlink it from all surveys."
+msgstr ""
-#: templates/sample.jinja2:192
-msgid "Guidelines for site identification"
-msgstr "Guía para la identificación del sitio"
+#: templates/sample.jinja2:85
+msgid "Required Format: MM/DD/YYYY"
+msgstr ""
-#: templates/sample.jinja2:193
-msgid "If collecting a"
-msgstr "Si recolecta una muestra de"
+#: templates/sample.jinja2:99
+msgid "Please select a date within the last 10 years."
+msgstr ""
-#: templates/sample.jinja2:193
-msgid "BLOOD"
-msgstr "SANGRE"
+#: templates/sample.jinja2:113
+msgid "Please select a date within the next 30 days."
+msgstr ""
-#: templates/sample.jinja2:193
-msgid "sample, please select Blood (skin prick)"
-msgstr "por favor seleccione Sangre (pinchazo en la piel)"
+#: templates/sample.jinja2:204
+msgid "Date of Sample Collection"
+msgstr ""
-#: templates/sample.jinja2:194
-msgid ""
-"For all swabs, please select the site as precisely as possible from the options "
-"available"
+#: templates/sample.jinja2:208
+msgid "Time of Sample Collection"
msgstr ""
-"Para todos los hisopos, por favor seleccione el sitio con la mayor precisión "
-"posible entre las opciones disponibles"
-#: templates/sample.jinja2:200
-msgid "Site sampled"
-msgstr "Sitio muestreado"
+#: templates/sample.jinja2:214
+#, fuzzy
+msgid "Sample Type"
+msgstr "sitio_muestra"
-#: templates/sample.jinja2:204
+#: templates/sample.jinja2:217
msgid "Select a sample type"
-msgstr "Seleccione un tipo de muestra"
+msgstr ""
-#: templates/sample.jinja2:220
+#: templates/sample.jinja2:229
msgid "Notes"
-msgstr "Observaciones"
+msgstr ""
-#: templates/sample.jinja2:222
+#: templates/sample.jinja2:230
msgid "(Optional) Is there else about this sample that you would like to add?"
-msgstr "(Opcional) ¿Hay algo más sobre esta muestra que quisiera añadir?"
+msgstr ""
+
+#: templates/sample.jinja2:236
+msgid "Remove"
+msgstr ""
-#: templates/sample.jinja2:225
-msgid "Update"
-msgstr "Actualizar"
+#: templates/sample.jinja2:239
+msgid ""
+"Your sample has been received by our lab and can no longer be edited. "
+"Please contact us with any "
+"questions."
+msgstr ""
#: templates/sample_results.jinja2:140
msgid "What is in your sample?"
-msgstr "¿Qué hay en su muestra?"
+msgstr ""
#: templates/sample_results.jinja2:142
msgid ""
"The table below shows the relative abundances of all of the organisms we "
-"observed in your sample. To produce this, we took the DNA sequences from your "
-"sample, and compared them against publicly available annotated reference "
-"databases. In some cases, a sequence may uniquely match a database record, in "
-"other cases a sequence may match may different records. To handle the "
-"uncertainty that can arise, we rely on a well used and publicly available "
-"microbiome software package called QIIME 2 . The exact approach taken is highlighted in the main "
-"tutorial on feature-classification "
-msgstr ""
-"La siguiente tabla muestra las abundancias relativas de todos los organismos "
-"que observamos en su muestra. Para producir esto, tomamos las secuencias de ADN "
-"de su muestra y las comparamos con bases de datos de referencia disponibles "
-"públicamente. En algunos casos, una secuencia puede coincidir únicamente con un "
-"registro de la base de datos, en otros casos, una secuencia puede coincidir con "
-"varios registros diferentes. Para manejar la incertidumbre que puede surgir, "
-"usamos un software para análisis de microbiomas muy utilizado y disponible al "
-"público llamado QIIME 2 . El "
-"método exacto adoptado se muestra en el tutorial principal sobre clasificación-especies "
+"observed in your sample. To produce this, we took the DNA sequences from "
+"your sample, and compared them against publicly available annotated "
+"reference databases. In some cases, a sequence may uniquely match a "
+"database record, in other cases a sequence may match may different "
+"records. To handle the uncertainty that can arise, we rely on a well used"
+" and publicly available microbiome software package called QIIME 2 . The exact "
+"approach taken is highlighted in the main tutorial on feature-classification "
+msgstr ""
#: templates/sample_results.jinja2:147
msgid "Relative Abundance"
-msgstr "Abundancia Relativa"
+msgstr ""
#: templates/sample_results.jinja2:161
msgid "Alpha Diversity"
-msgstr "Diversidad Alfa"
+msgstr ""
#: templates/sample_results.jinja2:163
msgid ""
-"Here, we're providing a measure of the diversity of your sample, and how it "
-"compares to the diversities of all of the same type of samples in The "
+"Here, we're providing a measure of the diversity of your sample, and how "
+"it compares to the diversities of all of the same type of samples in The "
"Microsetta Initiative. There are many ways to calculate diversity. For "
-"instance, you could compute a diversity value by counting the number of unique "
-"organisms observed (i.e., the sample \"richness\"). Or, you might be interested "
-"in weighting the calculation by the relative abundance of the organisms (i.e., "
-"the sample \"evenness\"). The metric we're computing here is called Faith's "
-"Phylogenetic Diversity (originally defined here ). Faith's "
-"Phylogenetic Diversity computes the \"richness\" of your sample as the amount "
-"of evolutionary breadth represented by your sample. The way we compute alpha "
-"diversity is also through QIIME 2 , and more information on it can be found in the alpha and beta "
-"diversity sections of the "
-"QIIME 2 tutorial"
-msgstr ""
-"Aquí, nosotros estamos proporcionamos una medida de la diversidad de su "
-"muestra, y cómo se compara con las diversidades de todos los mismos tipos de "
-"muestras en The Microsetta Initiative. Hay muchas formas de calcular la "
-"diversidad. Por ejemplo, usted podría calcular un valor de diversidad contando "
-"el número de organismos únicos observados (es decir, la “riqueza” de la "
-"muestra). O bien, podría estar interesado en ponderar el cálculo por la "
-"abundancia relativa de los organismos (es decir, la “uniformidad” de la "
-"muestra). La métrica que estamos calculando aquí se llama diversidad "
-"filogenética de Faith (definida originalmente aquí"
-"a>). La diversidad filogenética de Faith calcula la “riqueza” de su muestra "
-"como la cantidad de amplitud evolutiva representada por su muestra. La forma en "
-"que calculamos la diversidad alfa también es a través de QIIME 2 , y más información al respecto se puede "
-"encontrar en las secciones "
-"sobre la diversidad alfa y beta en el tutoríal de QIIME 2"
+"instance, you could compute a diversity value by counting the number of "
+"unique organisms observed (i.e., the sample \"richness\"). Or, you might "
+"be interested in weighting the calculation by the relative abundance of "
+"the organisms (i.e., the sample \"evenness\"). The metric we're computing"
+" here is called Faith's Phylogenetic Diversity (originally defined here ). Faith's Phylogenetic Diversity computes the"
+" \"richness\" of your sample as the amount of evolutionary breadth "
+"represented by your sample. The way we compute alpha diversity is also "
+"through QIIME 2 , and"
+" more information on it can be found in the alpha and beta diversity sections of the QIIME"
+" 2 tutorial"
+msgstr ""
#: templates/sample_results.jinja2:168
msgid "Beta Diversity"
-msgstr "Diversidad Beta"
+msgstr ""
#: templates/sample_results.jinja2:170
msgid ""
"Here we display how your sample fits in among the other samples of The "
-"Microsetta Initiative in terms of shared microbes. There are many ways to "
-"calculate beta diversity, differing in how to weight the distance between any "
-"two microbes. We take evolutionary distance into account with the metric "
-"displayed here, known as Unweighted Unifrac. You can find an overview of this "
-"metric here or better understand its derivation here . This computation "
-"is performed with QIIME 2 , "
-"and more information on it can be found in the alpha and beta diversity sections of the QIIME 2 tutorial"
-msgstr ""
-"Aquí nosotros mostramos cómo se sitúa su muestra entre las otras muestras de la "
-"Iniciativa Microsetta en términos de microbios compartidos. Hay muchas formas "
-"de calcular la diversidad beta, difieriendo en cómo medir la distancia entre "
-"dos microbios. Nosotros, tomamos en cuenta la distancia evolutiva con la "
-"métrica que se muestra aquí, conocida como Unweighted Unifrac. Usted puede "
-"encontrar la descripción de esta métrica aquí o comprender mejor su su origen aquí . Este cálculo se realiza con QIIME 2 , y más información al respecto la puede "
-"encontrar en las secciones "
-"sobre la diversidad alfa y beta en el turorial QIIME 2"
+"Microsetta Initiative in terms of shared microbes. There are many ways to"
+" calculate beta diversity, differing in how to weight the distance "
+"between any two microbes. We take evolutionary distance into account with"
+" the metric displayed here, known as Unweighted Unifrac. You can find an "
+"overview of this metric here or better understand its derivation here . This computation is performed with QIIME 2 , and more "
+"information on it can be found in the alpha and beta diversity sections of the QIIME"
+" 2 tutorial"
+msgstr ""
#: templates/secondary_surveys.jinja2:2
msgid "Secondary Surveys"
-msgstr "Cuestionarios Secundarios"
+msgstr ""
-#: templates/secondary_surveys.jinja2:12 templates/source.jinja2:258
+#: templates/secondary_surveys.jinja2:12
+#, fuzzy
msgid "Survey Title"
-msgstr "Título del Cuestionario"
+msgstr "cuestionario_plantilla_título"
-#: templates/secondary_surveys.jinja2:15 templates/source.jinja2:261
+#: templates/secondary_surveys.jinja2:15
+#, fuzzy
msgid "Survey Description"
-msgstr "Descripción del Cuestionario"
+msgstr "descripción"
+
+#: templates/signed_consent.jinja2:51 templates/signed_consent.jinja2:125
+#: templates/signed_consent.jinja2:181 templates/signed_consent.jinja2:218
+msgid "Date Signed"
+msgstr ""
#: templates/sitebase.jinja2:5
msgid "Microsetta"
-msgstr "Microsetta"
+msgstr ""
-#: templates/sitebase.jinja2:43
-msgid "Administrator Toolbar"
-msgstr "Barra de herramientas del administrador"
+#: templates/sitebase.jinja2:44
+msgid "You are deleting the profile for"
+msgstr ""
#: templates/sitebase.jinja2:44
-msgid "System Panel"
-msgstr "Panel del Sistema"
+msgid "and all surveys associated with it!"
+msgstr ""
-#: templates/sitebase.jinja2:46 templates/sitebase.jinja2:84
-msgid "Log Out"
-msgstr "Cerrar sesión"
+#: templates/sitebase.jinja2:45
+msgid ""
+"This operation cannot be undone. Are you sure you want to delete this "
+"source?"
+msgstr ""
+
+#: templates/sitebase.jinja2:56
+msgid "Administrator Toolbar"
+msgstr ""
-#: templates/sitebase.jinja2:47
-msgid "Activation Codes"
-msgstr "Códigos de Activación"
+#: templates/sitebase.jinja2:57
+msgid "System Panel"
+msgstr ""
-#: templates/sitebase.jinja2:49
+#: templates/sitebase.jinja2:60
msgid "Address Verification"
-msgstr "Verificación de la Dirección"
+msgstr ""
+
+#: templates/sitebase.jinja2:62
+msgid "FFQ Codes"
+msgstr ""
-#: templates/sitebase.jinja2:53
+#: templates/sitebase.jinja2:65
msgid "Find Account"
-msgstr "Encontrar Cuenta"
+msgstr ""
-#: templates/sitebase.jinja2:55
+#: templates/sitebase.jinja2:67
msgid "Barcode Search"
-msgstr "Búsqueda de código de barras"
-
-#: templates/sitebase.jinja2:86
-msgid "Log In"
-msgstr "Iniciar sesión"
-
-#: templates/sitebase.jinja2:87
-msgid "Sign Up"
-msgstr "Registrarse"
-
-#: templates/sitebase.jinja2:126
-msgid "FAQs"
-msgstr "Preguntas Frecuentes"
-
-#: templates/source.jinja2:2
-msgid "Account Samples"
-msgstr "Muestras de la Cuenta"
-
-#: templates/source.jinja2:84
-msgid "Do you really want to remove this sample from this source?"
-msgstr "¿Seguro que desea eliminar esta muestra de esta fuente?"
+msgstr ""
-#: templates/source.jinja2:85
-msgid "Doing so will remove any collection info saved for this sample and will"
+#: templates/sitebase.jinja2:68 templates/sitebase.jinja2:88
+msgid "Log Out"
msgstr ""
-"Al hacerlo, se eliminará cualquier información guardada para esta muestra y se"
-#: templates/source.jinja2:86
-msgid "unlink it from all surveys."
-msgstr "desvinculará de todos los cuestionarios."
+#: templates/sitebase.jinja2:139 templates/sitebase.jinja2:148
+#: templates/sitebase.jinja2:150 templates/source.jinja2:2
+#: templates/survey.jinja2:165
+msgid "My Profile"
+msgstr ""
-#: templates/source.jinja2:91
-msgid "You are deleting source"
-msgstr "Usted está eliminando la fuente"
+#: templates/sitebase.jinja2:184
+msgid "Delete This Profile"
+msgstr ""
-#: templates/source.jinja2:91
-msgid "and all surveys associated with it!"
-msgstr "y todos los cuestionarios asociados a ella!"
+#: templates/sitebase.jinja2:198
+msgid "Are you sure you want to withdraw your consent and delete your profile?"
+msgstr ""
-#: templates/source.jinja2:92
+#: templates/sitebase.jinja2:201
msgid ""
-"This operation cannot be undone. Are you sure you want to delete this source?"
+"I hereby withdraw consent for researchers to use my personal data and/or "
+"sample(s) for The Microsetta Initiative (TMI)."
msgstr ""
-"Esta operación no se podrá revertir. ¿Está seguro de que desea eliminar esta "
-"fuente?"
-
-#: templates/source.jinja2:100
-msgid "View"
-msgstr "Ver"
-#: templates/source.jinja2:152
-msgid "It looks like some samples do not have collection information recorded."
+#: templates/sitebase.jinja2:202
+msgid ""
+"I understand and acknowledge that any personal data and/or sample(s) that"
+" have already been provided to TMI in accordance with the consent I "
+"provided by signing the consent form(s), will continue to be used for the"
+" research. However, no new information will be collected."
msgstr ""
-"Parece que algunas muestras no tienen registrada la información de la muestra."
-#: templates/source.jinja2:156
-msgid "Samples (click on a barcode to provide collection information)"
+#: templates/sitebase.jinja2:203
+msgid ""
+"I understand that my data will only be shared after directly identifying "
+"information has been removed so that researchers cannot re-identify my "
+"personal data and/or sample(s) for future use."
msgstr ""
-"Muestras (haga clic en el código de barras para proporcionar la información de "
-"la muestra)"
-
-#: templates/source.jinja2:164
-msgid "Collection date"
-msgstr "Fecha de recolección"
-#: templates/source.jinja2:168
-msgid "Sample type"
-msgstr "Tipo de muestra"
-
-#: templates/source.jinja2:174
-msgid "Sample-specific survey"
-msgstr "Cuestionario especifico de la muestra"
-
-#: templates/source.jinja2:199
-msgid "View Top Food Report"
-msgstr "Ver Reporte de Alimentos Principales"
+#: templates/sitebase.jinja2:204
+msgid ""
+"By clicking withdraw, you will be ending your participation and "
+"terminating your profile. If you would like to be removed from being "
+"contacted for general program updates or information about future "
+"research studies, please refer to account deletion or contact us at "
+"microsetta@ucsd.edu."
+msgstr ""
-#: templates/source.jinja2:206
-msgid "This sample has been received and cannot be removed."
-msgstr "Esta muestra ha sido recibida y no puede ser eliminada."
+#: templates/sitebase.jinja2:207 templates/source.jinja2:151
+msgid "Maybe Later"
+msgstr ""
-#: templates/source.jinja2:208
-msgid "Remove"
-msgstr "Eliminar"
+#: templates/sitebase.jinja2:208 templates/source.jinja2:152
+msgid "Take This Survey Now"
+msgstr ""
-#: templates/source.jinja2:218
-msgid "Do I need to take more than one Food Frequency Questionnaire (FFQ)"
+#: templates/sitebase.jinja2:224
+msgid "FAQs"
msgstr ""
-"¿Necesito tomar más de un Cuestionario de Frecuencia de Consumo de Alimentos "
-"(FFQ)?"
-#: templates/source.jinja2:219
+#: templates/source.jinja2:52
msgid ""
-"If you are taking all of your samples at the same time, you will only need to "
-"complete one. If you are collecting samples over time (e.g., once per week), "
-"then please consider taking an FFQ per time point. The FFQs provide valuable "
-"dietary research data for the project, so researchers can better understand the "
-"relationship between the food you eat and your microbes."
+"The Microsetta Initiative aims to generate quality data that can help you"
+" better understand your microbiome, help scientists design better "
+"studies, and improve the world's understanding of the human microbiome."
msgstr ""
-"Si está recolectando todas sus muestras al mismo tiempo, solo necesitará "
-"completarlo una sola vez. Si está recolectando sus muestras a lo largo del "
-"tiempo (por ejemplo, una vez por semana), considere tomar el FFQ en un punto "
-"medio. El FFQ proporciona valiosa información dietética al proyecto de "
-"investigación, de modo que los investigadores puedan comprender mejor la "
-"relación entre los alimentos que consume y sus microbios."
-#: templates/source.jinja2:227
+#: templates/source.jinja2:55
msgid ""
-"The kit ID used to create your account has unclaimed samples. To claim samples "
-"from this kit, please click \"List samples\". To claim samples from another kit "
-"ID, please enter it here and then click \"List Samples\""
+"Answering our surveys can help us do just that. To get started, build out"
+" your profile by answering the surveys below. We will alert you when new "
+"surveys become available."
msgstr ""
-"El Kit ID utilizado para crear su cuenta tiene muestras no reclamadas. Para "
-"reclamar muestras de este kit, haga clic en \"Mostrar Muestras\". Para reclamar "
-"muestras de otro Kit ID, ingrese el ID aquí y luego haga clic en \"Mostrar "
-"Muestras\":"
-#: templates/source.jinja2:230
-msgid "To add samples, please enter a kit ID here"
-msgstr "Para añadir muestras, ingrese el ID de su kit aquí"
-
-#: templates/source.jinja2:234
-msgid "List Samples"
-msgstr "Mostrar Muestras"
-
-#: templates/source.jinja2:239
-msgid "Select all samples that should be associated with this source"
-msgstr "Seleccione todas las muestras que deben asociarse con esta fuente"
+#: templates/source.jinja2:63
+msgid "Last modified"
+msgstr ""
-#: templates/source.jinja2:245
-msgid "Claim Selected Samples"
-msgstr "Reclame Muestras Seleccionadas"
+#: templates/source.jinja2:65 templates/source.jinja2:107
+msgid "NEW"
+msgstr ""
-#: templates/source.jinja2:253
-msgid "Available optional surveys"
-msgstr "Cuestionarios opcionales disponibles"
+#: templates/source.jinja2:67 templates/survey.jinja2:176
+msgid "minutes"
+msgstr ""
-#: templates/source.jinja2:283
-msgid "Start"
-msgstr "Iniciar"
+#: templates/source.jinja2:97
+msgid ""
+"Below are surveys hosted by partner organizations. You will be directed "
+"to an external site in a new browser tab to complete the survey(s) you "
+"select. Once you complete them, you may close the tab and return to this "
+"page."
+msgstr ""
-#: templates/source.jinja2:295
-msgid "Completed surveys"
-msgstr "Cuestionarios completados"
+#: templates/source.jinja2:105
+#, fuzzy
+msgid "COMPLETED"
+msgstr "sitio_muestra"
-#: templates/source.jinja2:320
-msgid ""
-"Sources with one or more samples assigned cannot be deleted. All samples above "
-"must be removed prior to deleting this source."
+#: templates/source.jinja2:109
+msgid "min"
msgstr ""
-"Las fuentes con una o más muestras asignadas no se pueden eliminar. Todas las "
-"muestras anteriores deben eliminarse antes de eliminar esta fuente."
-#: templates/source.jinja2:322
+#: templates/source.jinja2:148
msgid ""
-"If you need to delete this source, click the following button. Please note, "
-"this action can NOT be reversed."
+"You will only have one opportunity to take this survey. Please make sure "
+"you have ample time before you start."
msgstr ""
-"Si necesita eliminar esta fuente, haga clic en el siguiente botón. Tenga en "
-"cuenta que esta acción NO se puede revertir."
-#: templates/source.jinja2:322
-msgid "Delete Source"
-msgstr "Eliminar Muestra"
+#: templates/submit_interest.jinja2:146 templates/submit_interest.jinja2:223
+msgid "Sorry, you must be 18 or older to participate in this study."
+msgstr ""
-#: templates/submit_interest.jinja2:127
+#: templates/submit_interest.jinja2:159
msgid "Sorry, this study is not open to residents of your country."
-msgstr "Lo sentimos, este estudio no está abierto para los residentes de su país."
+msgstr ""
-#: templates/submit_interest.jinja2:189 templates/submit_interest.jinja2:295
+#: templates/submit_interest.jinja2:222 templates/submit_interest.jinja2:330
msgid "Please select whether you are at least 18 years of age."
-msgstr "Por favor seleccione si usted tiene al menos 18 años de edad."
+msgstr ""
-#: templates/submit_interest.jinja2:190
+#: templates/submit_interest.jinja2:225
msgid "Please enter your first name."
-msgstr "Por favor ingrese su nombre."
+msgstr ""
-#: templates/submit_interest.jinja2:191
+#: templates/submit_interest.jinja2:226
msgid "Please enter your last name."
-msgstr "Por favor ingrese su apellido."
+msgstr ""
-#: templates/submit_interest.jinja2:192
+#: templates/submit_interest.jinja2:227
msgid "Please enter a valid email address."
-msgstr "Por favor ingrese su correo electrónico."
+msgstr ""
-#: templates/submit_interest.jinja2:195
+#: templates/submit_interest.jinja2:230
msgid "Please select your country."
-msgstr "Por favor seleccione su país."
+msgstr ""
-#: templates/submit_interest.jinja2:202 templates/update_address.jinja2:135
+#: templates/submit_interest.jinja2:237 templates/update_address.jinja2:135
#: templates/update_address.jinja2:250
msgid ""
-"Sorry, we were unable to verify your address. Please check your information and "
-"try again."
+"Sorry, we were unable to verify your address. Please check your "
+"information and try again."
msgstr ""
-"Lo sentimos, no pudimos verificar su dirección. Por favor verifique su "
-"información y vuelva a intentarlo."
-#: templates/submit_interest.jinja2:204 templates/submit_interest.jinja2:560
+#: templates/submit_interest.jinja2:239 templates/submit_interest.jinja2:595
msgid "Please agree to receiving communications from us."
-msgstr "Por favor acepte recibir comunicaciones de nosotros."
+msgstr ""
-#: templates/submit_interest.jinja2:265
+#: templates/submit_interest.jinja2:300
msgid ""
-"Sorry, due to widespread interest, the sign-up list for this project is full."
+"Sorry, due to widespread interest, the sign-up list for this project is "
+"full."
msgstr ""
-"Lo sentimos, debido al gran interés generalizado, la lista de inscripciones "
-"para este proyecto está llena."
-#: templates/submit_interest.jinja2:266
+#: templates/submit_interest.jinja2:301
msgid ""
-"Please visit our website to learn "
-"about other opportunities to participate in The Microsetta Initiative."
+"Please visit our website to "
+"learn about other opportunities to participate in The Microsetta "
+"Initiative."
msgstr ""
-"Por favor visite nuestro sitio web "
-"para conocer otras oportunidades para participar en The Microsetta Initiative."
-#: templates/submit_interest.jinja2:270 templates/update_address.jinja2:193
+#: templates/submit_interest.jinja2:305 templates/update_address.jinja2:193
msgid "Verifying your information, please wait just a moment."
-msgstr "Verificando su información, por favor espere un momento."
+msgstr ""
-#: templates/submit_interest.jinja2:291
+#: templates/submit_interest.jinja2:326
msgid "Are you at least 18 years of age?"
-msgstr "¿Tiene al menos 18 años de edad?"
+msgstr ""
-#: templates/submit_interest.jinja2:292 templates/submit_interest.jinja2:559
+#: templates/submit_interest.jinja2:327 templates/submit_interest.jinja2:594
msgid "Yes"
-msgstr "Si"
+msgstr ""
-#: templates/submit_interest.jinja2:294
+#: templates/submit_interest.jinja2:329
msgid "No"
-msgstr "No"
+msgstr ""
-#: templates/submit_interest.jinja2:299
+#: templates/submit_interest.jinja2:334
msgid ""
-"Please note: Specimen collection kits are associated with the email used when "
-"registering. We recommend the following:"
+"Please note: Specimen collection kits are associated with the email used "
+"when registering. We recommend the following:"
msgstr ""
-"Tenga en cuenta: los kits de recolección de muestras están asociados al correo "
-"electrónico utilizado al registrarse. Recomendamos lo siguiente:"
-#: templates/submit_interest.jinja2:300
+#: templates/submit_interest.jinja2:335
msgid "1. One email must be used per kit."
-msgstr "1. Se debe usar un correo electrónico por kit."
+msgstr ""
-#: templates/submit_interest.jinja2:301
+#: templates/submit_interest.jinja2:336
msgid ""
"2. If you plan to complete the form on behalf of another adult, use that "
"person's name and email address."
msgstr ""
-"2. Si planea completar el formulario en nombre de otra persona adulta, utilice "
-"el nombre y la dirección de correo electrónico de esa persona."
-#: templates/submit_interest.jinja2:302
+#: templates/submit_interest.jinja2:337
msgid "3. If possible, continue to use the same email throughout the study."
msgstr ""
-"3. Si es posible, continúe usando el mismo correo electrónico durante todo el "
-"estudio."
-#: templates/submit_interest.jinja2:303
+#: templates/submit_interest.jinja2:338
msgid ""
-"Once you have received the kit, please continue to use the same email address "
-"used when creating your online account."
+"Once you have received the kit, please continue to use the same email "
+"address used when creating your online account."
msgstr ""
-"Una vez que haya recibido el kit, continúe usando la misma dirección de correo "
-"electrónico usada al crear su cuenta en línea."
-#: templates/submit_interest.jinja2:313
+#: templates/submit_interest.jinja2:348
msgid "Email Address"
-msgstr "Correo electrónico"
+msgstr ""
-#: templates/submit_interest.jinja2:317 templates/update_address.jinja2:242
+#: templates/submit_interest.jinja2:352 templates/update_address.jinja2:242
msgid "Phone Number"
-msgstr "Número de teléfono"
+msgstr ""
-#: templates/submit_interest.jinja2:323 templates/submit_interest.jinja2:541
+#: templates/submit_interest.jinja2:358 templates/submit_interest.jinja2:576
#: templates/update_address.jinja2:227
msgid "SELECT"
-msgstr "SELECCIONAR"
+msgstr ""
-#: templates/submit_interest.jinja2:520
+#: templates/submit_interest.jinja2:555
msgid "Please fill in the address you would like your kit delivered to. Example:"
msgstr ""
-"Por favor, complete la dirección en la que desea que se entregue su kit. "
-"Ejemplo:"
-#: templates/submit_interest.jinja2:521
-msgid "9500 Gilman Dr. San Diego, CA 920932"
-msgstr "9500 Gilman Dr. San Diego, CA 920932"
+#: templates/submit_interest.jinja2:556
+msgid "9500 Gilman Dr. San Diego, CA 92093"
+msgstr ""
-#: templates/submit_interest.jinja2:551 templates/update_address.jinja2:237
+#: templates/submit_interest.jinja2:586 templates/update_address.jinja2:237
msgid "Residential"
-msgstr "Domicilio de residencia"
+msgstr ""
-#: templates/submit_interest.jinja2:552 templates/update_address.jinja2:238
+#: templates/submit_interest.jinja2:587 templates/update_address.jinja2:238
msgid "Commercial"
-msgstr "Domicilio comercial"
+msgstr ""
-#: templates/submit_interest.jinja2:558
+#: templates/submit_interest.jinja2:593
msgid ""
-"By subscribing to this program, I agree to receive communications via the "
-"newsletter regarding the status of the program, the steps I must complete, tips "
-"and tricks for completing my participation and surveys. I agree and understand "
-"that I can unsubscribe at any time using a link in the newsletter and this will "
-"not change my consent to receive sample status updates directly from the TMI "
-"database. "
+"By subscribing to this program, I agree to receive communications via the"
+" newsletter regarding the status of the program, the steps I must "
+"complete, tips and tricks for completing my participation and surveys. I "
+"agree and understand that I can unsubscribe at any time using a link in "
+"the newsletter and this will not change my consent to receive sample "
+"status updates directly from the TMI database. "
msgstr ""
-"Al suscribirme al programa THDMI, acepto recibir comunicaciones a través del "
-"boletín informativo sobre el estado del programa, los pasos que debo completar, "
-"consejos y trucos para completar mi participación y encuestas. Acepto y "
-"entiendo que puedo cancelar mi suscripción en cualquier momento usando un "
-"enlace en el boletín y esto no cambiará mi consentimiento para recibir "
-"actualizaciones de estado de muestra directamente desde la base de datos de TMI."
-#: templates/submit_interest.jinja2:564
+#: templates/submit_interest.jinja2:599
msgid "Previous"
-msgstr "Anterior"
-
-#: templates/submit_interest.jinja2:565
-msgid "Next"
-msgstr "Siguiente"
+msgstr ""
#: templates/submit_interest_confirm.jinja2:36
msgid ""
-"Thank you for your interest! Your information has been saved, and we will "
-"contact you via email soon."
+"Thank you for your interest in our research. Your application has been "
+"received. You will receive an email shortly. Please check your junk or "
+"spam folder if the email hasn’t reached your inbox."
msgstr ""
-"¡Gracias por su interés! Su información ha sido guardada, pronto nos pondremos "
-"en contacto con usted por correo electrónico."
-
-#: templates/survey.jinja2:2 templates/survey.jinja2:128
-msgid "Participant Survey"
-msgstr "Cuestionario del Participante"
#: templates/survey.jinja2:8
msgid " selected"
-msgstr " seleccionado"
+msgstr ""
-#: templates/survey.jinja2:58
+#: templates/survey.jinja2:96
msgid "The value is not an integer"
-msgstr "El valor no es un número entero"
+msgstr ""
-#: templates/survey.jinja2:59
+#: templates/survey.jinja2:97
msgid "Invalid number"
-msgstr "Número invalido"
-
-#: templates/survey.jinja2:131
-msgid "Progress"
-msgstr "Avanzar"
-
-#: templates/survey.jinja2:138
-msgid "Previous Section"
-msgstr "Sección Previa"
-
-#: templates/survey.jinja2:139
-msgid "Next Section"
-msgstr "Sección Siguiente"
+msgstr ""
-#: templates/survey.jinja2:158
-msgid "Submit Survey"
-msgstr "Enviar Cuestionario"
+#: templates/survey.jinja2:176
+#, fuzzy
+msgid "questions"
+msgstr "descripción"
-#: templates/survey.jinja2:166
-msgid ""
-"Please note: Once you've submitted this survey, you'll be unable to edit your "
-"answers."
+#: templates/survey.jinja2:196
+msgid "You've finished building your profile!"
msgstr ""
-"Tenga en cuenta: una vez que haya enviado este cuestionario, no podrá editar "
-"sus respuestas."
-#: templates/survey.jinja2:166
-msgid ""
-"If you'd like to review or change any of your responses, please press the "
-"Cancel button. Otherwise, press OK to submit your responses."
+#: templates/survey.jinja2:245 templates/survey.jinja2:276
+#: templates/survey.jinja2:307
+msgid "Save & Go Home"
msgstr ""
-"Si desea revisar o cambiar alguna de sus respuestas, presione el botón "
-"Cancelar. De lo contrario, presione OK para enviar sus respuestas."
-#: templates/survey.jinja2:166
-msgid "This warning will only appear once."
-msgstr "Esta advertencia solo aparecerá una vez."
-
-#: templates/survey.jinja2:170
-msgid ""
-"It looks like you are trying to submit this survey without answering any "
-"questions. If you would prefer not to complete this survey, please return to "
-"the homepage."
+#: templates/survey.jinja2:254 templates/survey.jinja2:316
+msgid "Save & Next"
msgstr ""
-"Parece que está intentando enviar esta encuesta sin responder ninguna pregunta. "
-"Si prefiere no completar esta encuesta, regrese a la página de inicio."
-#: templates/survey.jinja2:193 templates/survey.jinja2:218
-msgid "Step"
-msgstr "Paso"
-
-#: templates/survey.jinja2:193 templates/survey.jinja2:218
-msgid "of"
-msgstr "de"
-
-#: templates/survey.jinja2:193 templates/survey.jinja2:218
-msgid "Complete"
-msgstr "Completado"
+#: templates/survey.jinja2:266 templates/survey.jinja2:297
+msgid "Save & Previous"
+msgstr ""
-#: templates/survey.jinja2:203
-msgid "Please correct the fields with errors."
-msgstr "Por favor corrija los campos con errores."
+#: templates/survey.jinja2:285
+msgid "Save & Finish"
+msgstr ""
#: templates/update_address.jinja2:198
msgid ""
-"Sorry, it appears you are having trouble verifying your address. Please contact "
-"our support team at microsetta@ucsd.edu and they can assist with confirming "
-"your address."
+"Sorry, it appears you are having trouble verifying your address. Please "
+"contact our support team at microsetta@ucsd.edu and they can assist with "
+"confirming your address."
msgstr ""
-"Lo sentimos, parece que está teniendo problemas para verificar su dirección. "
-"Comuníquese con nuestro equipo de soporte en microsetta@ucsd.edu ellos lo "
-"ayudarán a confirmar su dirección."
#: templates/update_address.jinja2:202
msgid "Update Your Address"
-msgstr "Actualice su Dirección"
+msgstr ""
#: templates/update_address_confirm.jinja2:25
msgid "Address Updated"
-msgstr "Dirección Actualizada"
+msgstr ""
#: templates/update_address_confirm.jinja2:28
msgid ""
-"Thank you for updating your address! Your information has been saved and you "
-"will receive an email notification once your kit ships."
+"Thank you for updating your address! Your information has been saved and "
+"you will receive an email notification once your kit ships."
msgstr ""
-"¡Gracias por actualizar su dirección! Su información se ha guardado y recibirá "
-"una notificación por correo electrónico una vez que se envíe su kit."
#: templates/update_email.jinja2:2
msgid "Email Update"
-msgstr "Notificación por Correo Electrónico"
+msgstr ""
#: templates/update_email.jinja2:12
msgid ""
-"It appears that the email we have for your account is not the same as the email "
-"you logged in with. Would you like us to update your email in our records?"
+"It appears that the email we have for your account is not the same as the"
+" email you logged in with. Would you like us to update your email in our"
+" records?"
msgstr ""
-"Parece que el correo electrónico que tenemos de su cuenta no es el mismo con el "
-"que inició sesión. ¿Quiere que actualicemos su correo electrónico en nuestro "
-"registro?"
#: templates/update_email.jinja2:18
msgid "No, skip and continue"
-msgstr "No, omitir y continuar"
+msgstr ""
#: templates/update_email.jinja2:21
msgid "Yes, update and continue"
-msgstr "Sí, actualizar y continuar"
+msgstr ""
#~ msgid "Sorry, it appears the project you were interested in joining has ended."
#~ msgstr ""
-#~ "Lo sentimos, parece que el proyecto al que le interesaba unirse ha "
+#~ "Lo sentimos, parece que el proyecto "
+#~ "al que le interesaba unirse ha "
#~ "finalizado."
#~ msgid ""
-#~ "If you are interested in other opportunities to participate in The "
-#~ "Microsetta Initiative, please visit our website."
+#~ "If you are interested in other "
+#~ "opportunities to participate in The "
+#~ "Microsetta Initiative, please visit our "
+#~ " website."
+#~ msgstr ""
+#~ "Si está interesado en otras "
+#~ "oportunidades para participar en The "
+#~ "Microsetta Initiative, por favor visite "
+#~ "nuestro sitio "
+#~ "web."
+
+#~ msgid "Unable to validate the kit name; please reload the page."
+#~ msgstr ""
+#~ "No se ha podido validar el nombre"
+#~ " del kit; por favor recargue la "
+#~ "página web."
+
+#~ msgid "Street Address"
+#~ msgstr "Dirección"
+
+#~ msgid "Activation Info"
+#~ msgstr "Información de Activación"
+
+#~ msgid "Kit ID"
+#~ msgstr "Kit ID"
+
+#~ msgid "OR"
+#~ msgstr "O"
+
+#~ msgid "View Account Details"
+#~ msgstr "Ver Información de la Cuenta"
+
+#~ msgid "Sources"
+#~ msgstr "Fuentes"
+
+#~ msgid ""
+#~ "You have now set up your account!"
+#~ " Please proceed to identify your "
+#~ "source."
+#~ msgstr ""
+#~ "¡Usted ha establecido su cuenta! Por "
+#~ "favor proceda a identificar su fuente."
+
+#~ msgid ""
+#~ "Choose a source to assign samples "
+#~ "to by clicking on a name, listed"
+#~ " in blue below:"
+#~ msgstr ""
+#~ "Elija una fuente para asignar muestras"
+#~ " haciendo clic en uno de los "
+#~ "nombres, que se muestra en azul a"
+#~ " continuación:"
+
+#~ msgid "Name"
+#~ msgstr "Nombre"
+
+#~ msgid "Source type"
+#~ msgstr "Tipo de Fuente"
+
+#~ msgid "What is the Source of Your Sample?"
+#~ msgstr "¿Cuál es la fuente de su muestra?"
+
+#~ msgid ""
+#~ "Our lab needs to know what type"
+#~ " of sample(s) you are submitting "
+#~ "(a.k.a. the \"source\"). Add a new "
+#~ "source and assign samples to it so"
+#~ " we can perform the correct analysis"
+#~ " in our laboratory."
+#~ msgstr ""
+#~ "Nuestro laboratorio necesita saber qué "
+#~ "tipo de muestra(s) está enviando "
+#~ "(también conocida como “la fuente”). "
+#~ "Añada una nueva fuente y asígnele "
+#~ "muestras para que podamos realizar el"
+#~ " análisis correcto."
+
+#~ msgid ""
+#~ "If you have multiple sources, you "
+#~ "may add one source at a time. "
+#~ "You can return to this page after"
+#~ " you finish registering the first "
+#~ "one."
+#~ msgstr ""
+#~ "Si usted tiene varias fuentes, puede "
+#~ "agregar una fuente a la vez. Usted"
+#~ " puede regresar a esta página después"
+#~ " de terminar de registrar la primera."
+
+#~ msgid "Human Source"
+#~ msgstr "Fuente Humana"
+
+#~ msgid "Collect sample(s) from"
+#~ msgstr "Recoger muestra(s) de"
+
+#~ msgid "yourself"
+#~ msgstr "usted mismo"
+
+#~ msgid "someone else"
+#~ msgstr "alguien más"
+
+#~ msgid "Select"
+#~ msgstr "Seleccionar"
+
+#~ msgid "Environmental Source"
+#~ msgstr "Fuente Ambiental"
+
+#~ msgid "Collect sample(s) from a"
+#~ msgstr "Recoger muestra(s) de una"
+
+#~ msgid "surface"
+#~ msgstr "superficie"
+
+#~ msgid "(e.g. kitchen counter, backyard soil, food, etc.)"
+#~ msgstr "(por ejemplo, la barra de la cocina, tierra del jardín, comida, etc.)"
+
+#~ msgid "Animal Source"
+#~ msgstr "Fuente Animal"
+
+#~ msgid "your pet"
+#~ msgstr "su mascota"
+
+#~ msgid "or an"
+#~ msgstr "o un"
+
+#~ msgid "Animal sources are currently unavailable."
+#~ msgstr "Las fuentes animales no están disponibles."
+
+#~ msgid "SIGN UP"
+#~ msgstr "Registrarse"
+
+#~ msgid "Already have an account?"
+#~ msgstr "¿Ya tiene una cuenta?"
+
+#~ msgid "Welcome back!"
+#~ msgstr "¡Bienvenido de nuevo!"
+
+#~ msgid "LOG IN"
+#~ msgstr "Iniciar sesión"
+
+#~ msgid ""
+#~ "It looks like you are creating a"
+#~ " new source that may be similar "
+#~ "or the same as an existing source."
+#~ " If this is the same person as"
+#~ " an existing source, please consider "
+#~ "providing new samples or survey "
+#~ "responses under that source"
+#~ msgstr ""
+#~ "Parece que está creando una nueva "
+#~ "fuente que puede ser similar o "
+#~ "igual a una fuente existente. Si "
+#~ "esta es la misma persona que una"
+#~ " fuente existente, considere proporcionar "
+#~ "nuevas muestras o respuestas de "
+#~ "encuestas bajo esa fuente"
+
+#~ msgid "All of the Microsetta Initiative"
+#~ msgstr "Toda la Iniciativa Microsetta"
+
+#~ msgid "Multipopulation"
+#~ msgstr "Multipoblación"
+
+#~ msgid "You and the Microbes Around You"
+#~ msgstr "Usted y los microbios que lo rodean"
+
+#~ msgid "Sample Information"
+#~ msgstr "Información de la muestra"
+
+#~ msgid "Sample Recorded, Editing is Locked"
+#~ msgstr "Muestra registrada, la edición está bloqueada"
+
+#~ msgid "Date"
+#~ msgstr "Fecha"
+
+#~ msgid "Time"
+#~ msgstr "Hora"
+
+#~ msgid "Guidelines for site identification"
+#~ msgstr "Guía para la identificación del sitio"
+
+#~ msgid "If collecting a"
+#~ msgstr "Si recolecta una muestra de"
+
+#~ msgid "BLOOD"
+#~ msgstr "SANGRE"
+
+#~ msgid "sample, please select Blood (skin prick)"
+#~ msgstr "por favor seleccione Sangre (pinchazo en la piel)"
+
+#~ msgid ""
+#~ "For all swabs, please select the "
+#~ "site as precisely as possible from "
+#~ "the options available"
+#~ msgstr ""
+#~ "Para todos los hisopos, por favor "
+#~ "seleccione el sitio con la mayor "
+#~ "precisión posible entre las opciones "
+#~ "disponibles"
+
+#~ msgid "Site sampled"
+#~ msgstr "Sitio muestreado"
+
+#~ msgid "Update"
+#~ msgstr "Actualizar"
+
+#~ msgid "Activation Codes"
+#~ msgstr "Códigos de Activación"
+
+#~ msgid "Account Samples"
+#~ msgstr "Muestras de la Cuenta"
+
+#~ msgid "It looks like some samples do not have collection information recorded."
+#~ msgstr ""
+#~ "Parece que algunas muestras no tienen"
+#~ " registrada la información de la "
+#~ "muestra."
+
+#~ msgid "Samples (click on a barcode to provide collection information)"
+#~ msgstr ""
+#~ "Muestras (haga clic en el código "
+#~ "de barras para proporcionar la "
+#~ "información de la muestra)"
+
+#~ msgid "Collection date"
+#~ msgstr "Fecha de recolección"
+
+#~ msgid "Sample-specific survey"
+#~ msgstr "Cuestionario especifico de la muestra"
+
+#~ msgid "View Top Food Report"
+#~ msgstr "Ver Reporte de Alimentos Principales"
+
+#~ msgid "This sample has been received and cannot be removed."
+#~ msgstr "Esta muestra ha sido recibida y no puede ser eliminada."
+
+#~ msgid "Do I need to take more than one Food Frequency Questionnaire (FFQ)"
+#~ msgstr ""
+#~ "¿Necesito tomar más de un Cuestionario"
+#~ " de Frecuencia de Consumo de "
+#~ "Alimentos (FFQ)?"
+
+#~ msgid ""
+#~ "If you are taking all of your "
+#~ "samples at the same time, you will"
+#~ " only need to complete one. If "
+#~ "you are collecting samples over time "
+#~ "(e.g., once per week), then please "
+#~ "consider taking an FFQ per time "
+#~ "point. The FFQs provide valuable dietary"
+#~ " research data for the project, so"
+#~ " researchers can better understand the "
+#~ "relationship between the food you eat"
+#~ " and your microbes."
+#~ msgstr ""
+#~ "Si está recolectando todas sus muestras"
+#~ " al mismo tiempo, solo necesitará "
+#~ "completarlo una sola vez. Si está "
+#~ "recolectando sus muestras a lo largo "
+#~ "del tiempo (por ejemplo, una vez "
+#~ "por semana), considere tomar el FFQ "
+#~ "en un punto medio. El FFQ "
+#~ "proporciona valiosa información dietética al"
+#~ " proyecto de investigación, de modo "
+#~ "que los investigadores puedan comprender "
+#~ "mejor la relación entre los alimentos"
+#~ " que consume y sus microbios."
+
+#~ msgid ""
+#~ "The kit ID used to create your "
+#~ "account has unclaimed samples. To claim"
+#~ " samples from this kit, please click"
+#~ " \"List samples\". To claim samples "
+#~ "from another kit ID, please enter "
+#~ "it here and then click \"List "
+#~ "Samples\""
+#~ msgstr ""
+#~ "El Kit ID utilizado para crear su"
+#~ " cuenta tiene muestras no reclamadas. "
+#~ "Para reclamar muestras de este kit, "
+#~ "haga clic en \"Mostrar Muestras\". Para"
+#~ " reclamar muestras de otro Kit ID,"
+#~ " ingrese el ID aquí y luego "
+#~ "haga clic en \"Mostrar Muestras\":"
+
+#~ msgid "To add samples, please enter a kit ID here"
+#~ msgstr "Para añadir muestras, ingrese el ID de su kit aquí"
+
+#~ msgid "List Samples"
+#~ msgstr "Mostrar Muestras"
+
+#~ msgid "Select all samples that should be associated with this source"
+#~ msgstr "Seleccione todas las muestras que deben asociarse con esta fuente"
+
+#~ msgid "Claim Selected Samples"
+#~ msgstr "Reclame Muestras Seleccionadas"
+
+#~ msgid "Available optional surveys"
+#~ msgstr "Cuestionarios opcionales disponibles"
+
+#~ msgid "Start"
+#~ msgstr "Iniciar"
+
+#~ msgid "Completed surveys"
+#~ msgstr "Cuestionarios completados"
+
+#~ msgid ""
+#~ "Sources with one or more samples "
+#~ "assigned cannot be deleted. All samples"
+#~ " above must be removed prior to "
+#~ "deleting this source."
+#~ msgstr ""
+#~ "Las fuentes con una o más muestras"
+#~ " asignadas no se pueden eliminar. "
+#~ "Todas las muestras anteriores deben "
+#~ "eliminarse antes de eliminar esta "
+#~ "fuente."
+
+#~ msgid ""
+#~ "If you need to delete this source,"
+#~ " click the following button. Please "
+#~ "note, this action can NOT be "
+#~ "reversed."
+#~ msgstr ""
+#~ "Si necesita eliminar esta fuente, haga"
+#~ " clic en el siguiente botón. Tenga"
+#~ " en cuenta que esta acción NO "
+#~ "se puede revertir."
+
+#~ msgid "Delete Source"
+#~ msgstr "Eliminar Muestra"
+
+#~ msgid ""
+#~ "Thank you for your interest! Your "
+#~ "information has been saved, and we "
+#~ "will contact you via email soon."
+#~ msgstr ""
+#~ "¡Gracias por su interés! Su información"
+#~ " ha sido guardada, pronto nos "
+#~ "pondremos en contacto con usted por "
+#~ "correo electrónico."
+
+#~ msgid "Participant Survey"
+#~ msgstr "Cuestionario del Participante"
+
+#~ msgid "Progress"
+#~ msgstr "Avanzar"
+
+#~ msgid "Previous Section"
+#~ msgstr "Sección Previa"
+
+#~ msgid "Next Section"
+#~ msgstr "Sección Siguiente"
+
+#~ msgid "Submit Survey"
+#~ msgstr "Enviar Cuestionario"
+
+#~ msgid ""
+#~ "Please note: Once you've submitted this"
+#~ " survey, you'll be unable to edit "
+#~ "your answers."
+#~ msgstr ""
+#~ "Tenga en cuenta: una vez que haya"
+#~ " enviado este cuestionario, no podrá "
+#~ "editar sus respuestas."
+
+#~ msgid ""
+#~ "If you'd like to review or change"
+#~ " any of your responses, please press"
+#~ " the Cancel button. Otherwise, press "
+#~ "OK to submit your responses."
+#~ msgstr ""
+#~ "Si desea revisar o cambiar alguna "
+#~ "de sus respuestas, presione el botón "
+#~ "Cancelar. De lo contrario, presione OK"
+#~ " para enviar sus respuestas."
+
+#~ msgid "This warning will only appear once."
+#~ msgstr "Esta advertencia solo aparecerá una vez."
+
+#~ msgid ""
+#~ "It looks like you are trying to"
+#~ " submit this survey without answering "
+#~ "any questions. If you would prefer "
+#~ "not to complete this survey, please "
+#~ "return to the homepage."
+#~ msgstr ""
+#~ "Parece que está intentando enviar esta"
+#~ " encuesta sin responder ninguna pregunta."
+#~ " Si prefiere no completar esta "
+#~ "encuesta, regrese a la página de "
+#~ "inicio."
+
+#~ msgid "Step"
+#~ msgstr "Paso"
+
+#~ msgid "of"
+#~ msgstr "de"
+
+#~ msgid "Please correct the fields with errors."
+#~ msgstr "Por favor corrija los campos con errores."
+
+#~ msgid "Save & Come Back Later"
+#~ msgstr ""
+
+#~ msgid "Account Details"
+#~ msgstr "Información de la cuenta"
+
+#~ msgid "Please agree to the Privacy Statement and Terms and Conditions"
+#~ msgstr ""
+
+#~ msgid "City"
+#~ msgstr "Ciudad"
+
+#~ msgid "State"
+#~ msgstr "Estado"
+
+#~ msgid "Zip Code"
+#~ msgstr "Código Postal"
+
+#~ msgid "City/Town"
+#~ msgstr "Ciudad/Pueblo"
+
+#~ msgid "County/State"
+#~ msgstr "Condado/Estado"
+
+#~ msgid "Postcode"
+#~ msgstr "Código Postal"
+
+#~ msgid "Dashboard"
+#~ msgstr ""
+
+#~ msgid "Email"
+#~ msgstr "Correo electrónico"
+
+#~ msgid "Prefer to use a different email account? You can change it "
#~ msgstr ""
-#~ "Si está interesado en otras oportunidades para participar en The Microsetta "
-#~ "Initiative, por favor visite nuestro sitio web."
+#~ "¿Prefiere usar una cuenta de correo "
+#~ "electrónico diferente? Usted puede cambiarla"
+#~ " "
+
+#~ msgid "here"
+#~ msgstr "aquí"
+
+#~ msgid "First Name"
+#~ msgstr "Primer nombre"
+
+#~ msgid "Last Name"
+#~ msgstr "Apellido"
+
+#~ msgid "Country"
+#~ msgstr "País"
+
+#~ msgid "United States"
+#~ msgstr "Estados Unidos"
+
+#~ msgid "United Kingdom"
+#~ msgstr "Reino Unido"
+
+#~ msgid "Mexico"
+#~ msgstr "México"
+
+#~ msgid "Spain"
+#~ msgstr "España"
+
+#~ msgid "Afghanistan"
+#~ msgstr "Afganistán"
+
+#~ msgid "Albania"
+#~ msgstr "Albania"
+
+#~ msgid "Algeria"
+#~ msgstr "Argelia"
+
+#~ msgid "Andorra"
+#~ msgstr "Andorra"
+
+#~ msgid "Angola"
+#~ msgstr "Angola"
+
+#~ msgid "Antarctica"
+#~ msgstr "Antártica"
+
+#~ msgid "Antigua and Barbuda"
+#~ msgstr "Antigua y Barbuda"
+
+#~ msgid "Argentina"
+#~ msgstr "Argentina"
+
+#~ msgid "Armenia"
+#~ msgstr "Armenia"
+
+#~ msgid "Australia"
+#~ msgstr "Australia"
+
+#~ msgid "Austria"
+#~ msgstr "Austria"
+
+#~ msgid "Azerbaijan"
+#~ msgstr "Azerbaiyán"
+
+#~ msgid "Bahamas"
+#~ msgstr "Bahamas"
+
+#~ msgid "Bahrain"
+#~ msgstr "Baréin"
+
+#~ msgid "Bangladesh"
+#~ msgstr "Bangladesh"
+
+#~ msgid "Barbados"
+#~ msgstr "Barbados"
+
+#~ msgid "Belarus"
+#~ msgstr "Bielorrusia"
+
+#~ msgid "Belgium"
+#~ msgstr "Bélgica"
+
+#~ msgid "Belize"
+#~ msgstr "Belice"
+
+#~ msgid "Benin"
+#~ msgstr "Benín"
+
+#~ msgid "Bermuda"
+#~ msgstr "Bermuda"
+
+#~ msgid "Bhutan"
+#~ msgstr "Bután"
+
+#~ msgid "Bolivia"
+#~ msgstr "Bolivia"
+
+#~ msgid "Bosnia and Herzegovina"
+#~ msgstr "Bosnia y Herzegovina"
+
+#~ msgid "Botswana"
+#~ msgstr "Botsuana"
+
+#~ msgid "Brazil"
+#~ msgstr "Brasil"
+
+#~ msgid "Brunei"
+#~ msgstr "Brunéi"
+
+#~ msgid "Bulgaria"
+#~ msgstr "Bulgaria"
+
+#~ msgid "Burkina Faso"
+#~ msgstr "Burkina Faso"
+
+#~ msgid "Burma"
+#~ msgstr "Birmania"
+
+#~ msgid "Burundi"
+#~ msgstr "Burundi"
+
+#~ msgid "Cambodia"
+#~ msgstr "Camboya"
+
+#~ msgid "Cameroon"
+#~ msgstr "Camerún"
+
+#~ msgid "Canada"
+#~ msgstr "Canada"
+
+#~ msgid "Cape Verde"
+#~ msgstr "Cabo Verde"
+
+#~ msgid "Central African Republic"
+#~ msgstr "República Centroafricana"
+
+#~ msgid "Chad"
+#~ msgstr "Chad"
+
+#~ msgid "Chile"
+#~ msgstr "Chile"
+
+#~ msgid "China"
+#~ msgstr "China"
+
+#~ msgid "Colombia"
+#~ msgstr "Colombia"
+
+#~ msgid "Comoros"
+#~ msgstr "Comoras"
+
+#~ msgid "Congo, Democratic Republic"
+#~ msgstr "Congo, República Democrática"
+
+#~ msgid "Congo, Republic of the"
+#~ msgstr "Congo, República del"
+
+#~ msgid "Costa Rica"
+#~ msgstr "Costa Rica"
+
+#~ msgid "Cote d'Ivoire"
+#~ msgstr "Costa de Marfil"
+
+#~ msgid "Croatia"
+#~ msgstr "Croacia"
+
+#~ msgid "Cuba"
+#~ msgstr "Cuba"
+
+#~ msgid "Cyprus"
+#~ msgstr "Chipre"
+
+#~ msgid "Czech Republic"
+#~ msgstr "República Checa"
+
+#~ msgid "Denmark"
+#~ msgstr "Dinamarca"
+
+#~ msgid "Djibouti"
+#~ msgstr "Yibuti"
+
+#~ msgid "Dominica"
+#~ msgstr "Dominicana"
+
+#~ msgid "Dominican Republic"
+#~ msgstr "República Dominicana"
+
+#~ msgid "East Timor"
+#~ msgstr "Timor Oriental"
+
+#~ msgid "Ecuador"
+#~ msgstr "Ecuador"
+
+#~ msgid "Egypt"
+#~ msgstr "Egipto"
+
+#~ msgid "El Salvador"
+#~ msgstr "El Salvador"
+
+#~ msgid "Equatorial Guinea"
+#~ msgstr "Guinea Ecuatorial"
+
+#~ msgid "Eritrea"
+#~ msgstr "Eritrea"
+
+#~ msgid "Estonia"
+#~ msgstr "Estonia"
+
+#~ msgid "Ethiopia"
+#~ msgstr "Etiopía"
+
+#~ msgid "Fiji"
+#~ msgstr "Fiyi"
+
+#~ msgid "Finland"
+#~ msgstr "Finlandia"
+
+#~ msgid "France"
+#~ msgstr "Francia"
+
+#~ msgid "Gabon"
+#~ msgstr "Gabón"
+
+#~ msgid "Gambia"
+#~ msgstr "Gambia"
+
+#~ msgid "Georgia"
+#~ msgstr "Georgia"
+
+#~ msgid "Germany"
+#~ msgstr "Alemania"
+
+#~ msgid "Ghana"
+#~ msgstr "Ghana"
+
+#~ msgid "Greece"
+#~ msgstr "Grecia"
+
+#~ msgid "Greenland"
+#~ msgstr "Groenlandia"
+
+#~ msgid "Grenada"
+#~ msgstr "Granada"
+
+#~ msgid "Guatemala"
+#~ msgstr "Guatemala"
+
+#~ msgid "Guinea"
+#~ msgstr "Guinea"
+
+#~ msgid "Guinea-Bissau"
+#~ msgstr "Guinea-Bisáu"
+
+#~ msgid "Guyana"
+#~ msgstr "Guayana"
+
+#~ msgid "Haiti"
+#~ msgstr "Haití"
+
+#~ msgid "Honduras"
+#~ msgstr "Honduras"
+
+#~ msgid "Hong Kong"
+#~ msgstr "Hong Kong"
+
+#~ msgid "Hungary"
+#~ msgstr "Hungría"
+
+#~ msgid "Iceland"
+#~ msgstr "Islandia"
+
+#~ msgid "India"
+#~ msgstr "India"
+
+#~ msgid "Indonesia"
+#~ msgstr "Indonesia"
+
+#~ msgid "Iran"
+#~ msgstr "Irán"
+
+#~ msgid "Iraq"
+#~ msgstr "Iraq"
+
+#~ msgid "Ireland"
+#~ msgstr "Irlanda"
+
+#~ msgid "Israel"
+#~ msgstr "Israel"
+
+#~ msgid "Italy"
+#~ msgstr "Italia"
+
+#~ msgid "Jamaica"
+#~ msgstr "Jamaica"
+
+#~ msgid "Japan"
+#~ msgstr "Japón"
+
+#~ msgid "Jordan"
+#~ msgstr "Jordán"
+
+#~ msgid "Kazakhstan"
+#~ msgstr "Kazajistán"
+
+#~ msgid "Kenya"
+#~ msgstr "Kenia"
+
+#~ msgid "Kiribati"
+#~ msgstr "Kiribati"
+
+#~ msgid "Korea North"
+#~ msgstr "Corea del Norte"
+
+#~ msgid "Korea South"
+#~ msgstr "Corea del Sur"
+
+#~ msgid "Kuwait"
+#~ msgstr "Kuwait"
+
+#~ msgid "Kyrgyzstan"
+#~ msgstr "Kirguistán"
+
+#~ msgid "Laos"
+#~ msgstr "Laos"
+
+#~ msgid "Latvia"
+#~ msgstr "Letonia"
+
+#~ msgid "Lebanon"
+#~ msgstr "Líbano"
+
+#~ msgid "Lesotho"
+#~ msgstr "Lesoto"
+
+#~ msgid "Liberia"
+#~ msgstr "Liberia"
+
+#~ msgid "Libya"
+#~ msgstr "Libia"
+
+#~ msgid "Liechtenstein"
+#~ msgstr "Liechtenstein"
+
+#~ msgid "Lithuania"
+#~ msgstr "Lituania"
+
+#~ msgid "Luxembourg"
+#~ msgstr "Luxemburgo"
+
+#~ msgid "Macedonia"
+#~ msgstr "Macedonia"
+
+#~ msgid "Madagascar"
+#~ msgstr "Madagascar"
+
+#~ msgid "Malawi"
+#~ msgstr "Malaui"
+
+#~ msgid "Malaysia"
+#~ msgstr "Malasia"
+
+#~ msgid "Maldives"
+#~ msgstr "Maldivas"
+
+#~ msgid "Mali"
+#~ msgstr "Malí"
+
+#~ msgid "Malta"
+#~ msgstr "Malta"
+
+#~ msgid "Marshall Islands"
+#~ msgstr "Islas Marshall"
+
+#~ msgid "Mauritania"
+#~ msgstr "Mauritania"
+
+#~ msgid "Mauritius"
+#~ msgstr "Mauritius"
+
+#~ msgid "Micronesia"
+#~ msgstr "Micronesia"
+
+#~ msgid "Moldova"
+#~ msgstr "Moldavia"
+
+#~ msgid "Mongolia"
+#~ msgstr "Mongolia"
+
+#~ msgid "Montenegro"
+#~ msgstr "Montenegro"
+
+#~ msgid "Morocco"
+#~ msgstr "Marruecos"
+
+#~ msgid "Monaco"
+#~ msgstr "Mónaco"
+
+#~ msgid "Mozambique"
+#~ msgstr "Mozambique"
+
+#~ msgid "Namibia"
+#~ msgstr "Namibia"
+
+#~ msgid "Nauru"
+#~ msgstr "Nauru"
+
+#~ msgid "Nepal"
+#~ msgstr "Nepal"
+
+#~ msgid "Netherlands"
+#~ msgstr "Países Bajos"
+
+#~ msgid "New Zealand"
+#~ msgstr "Nueva Zelanda"
+
+#~ msgid "Nicaragua"
+#~ msgstr "Nicaragua"
+
+#~ msgid "Niger"
+#~ msgstr "Níger"
+
+#~ msgid "Nigeria"
+#~ msgstr "Nigeria"
+
+#~ msgid "Norway"
+#~ msgstr "Noruega"
+
+#~ msgid "Oman"
+#~ msgstr "Omán"
+
+#~ msgid "Pakistan"
+#~ msgstr "Pakistán"
+
+#~ msgid "Panama"
+#~ msgstr "Panama"
+
+#~ msgid "Papua New Guinea"
+#~ msgstr "Papúa Nueva Guinea"
+
+#~ msgid "Paraguay"
+#~ msgstr "Paraguay"
+
+#~ msgid "Peru"
+#~ msgstr "Peru"
+
+#~ msgid "Philippines"
+#~ msgstr "Filipinas"
+
+#~ msgid "Poland"
+#~ msgstr "Polonia"
+
+#~ msgid "Portugal"
+#~ msgstr "Portugal"
+
+#~ msgid "Qatar"
+#~ msgstr "Qatar"
+
+#~ msgid "Romania"
+#~ msgstr "Rumania"
+
+#~ msgid "Russia"
+#~ msgstr "Rusia"
+
+#~ msgid "Rwanda"
+#~ msgstr "Ruanda"
+
+#~ msgid "Samoa"
+#~ msgstr "Samoa"
+
+#~ msgid "San Marino"
+#~ msgstr "San Marino"
+
+#~ msgid "Sao Tome"
+#~ msgstr "Santo Tomé y Príncipe"
+
+#~ msgid "Saudi Arabia"
+#~ msgstr "Arabia Saudita"
+
+#~ msgid "Senegal"
+#~ msgstr "Senegal"
+
+#~ msgid "Serbia"
+#~ msgstr "Serbia"
+
+#~ msgid "Seychelles"
+#~ msgstr "Seychelles"
+
+#~ msgid "Sierra Leone"
+#~ msgstr "Sierra Leona"
+
+#~ msgid "Singapore"
+#~ msgstr "Singapur"
+
+#~ msgid "Slovakia"
+#~ msgstr "Eslovaquia"
+
+#~ msgid "Slovenia"
+#~ msgstr "Eslovenia"
+
+#~ msgid "Solomon Islands"
+#~ msgstr "Islas Salomón"
+
+#~ msgid "Somalia"
+#~ msgstr "Somalia"
+
+#~ msgid "South Africa"
+#~ msgstr "Sudáfrica"
+
+#~ msgid "Sri Lanka"
+#~ msgstr "Sri Lanka"
+
+#~ msgid "Sudan"
+#~ msgstr "Sudán"
+
+#~ msgid "Suriname"
+#~ msgstr "Surinam"
+
+#~ msgid "Swaziland"
+#~ msgstr "Suazilandia"
+
+#~ msgid "Sweden"
+#~ msgstr "Suecia"
+
+#~ msgid "Switzerland"
+#~ msgstr "Suiza"
+
+#~ msgid "Syria"
+#~ msgstr "Siria"
+
+#~ msgid "Taiwan"
+#~ msgstr "Taiwán"
+
+#~ msgid "Tajikistan"
+#~ msgstr "Tayikistán"
+
+#~ msgid "Tanzania"
+#~ msgstr "Tanzania"
+
+#~ msgid "Thailand"
+#~ msgstr "Tailandia"
+
+#~ msgid "Togo"
+#~ msgstr "Togo"
+
+#~ msgid "Tonga"
+#~ msgstr "Tonga"
+
+#~ msgid "Trinidad and Tobago"
+#~ msgstr "Trinidad y Tobago"
+
+#~ msgid "Tunisia"
+#~ msgstr "Túnez"
+
+#~ msgid "Turkey"
+#~ msgstr "Turquia"
+
+#~ msgid "Turkmenistan"
+#~ msgstr "Turkmenistán"
+
+#~ msgid "Uganda"
+#~ msgstr "Uganda"
+
+#~ msgid "Ukraine"
+#~ msgstr "Ucrania"
+
+#~ msgid "United Arab Emirates"
+#~ msgstr "Emiratos Árabes Unidos"
+
+#~ msgid "Uruguay"
+#~ msgstr "Uruguay"
+
+#~ msgid "Uzbekistan"
+#~ msgstr "Uzbekistán"
+
+#~ msgid "Vanuatu"
+#~ msgstr "Vanuatu"
+
+#~ msgid "Venezuela"
+#~ msgstr "Venezuela"
+
+#~ msgid "Viet nam"
+#~ msgstr "Vietnam"
+
+#~ msgid "Yemen"
+#~ msgstr "Yemen"
+
+#~ msgid "Zambia"
+#~ msgstr "Zambia"
+
+#~ msgid "Zimbabwe"
+#~ msgstr "Zimbabue"
+
+#~ msgid "Address Line 1"
+#~ msgstr "Dirección 1"
+
+#~ msgid "Address Line 2"
+#~ msgstr "Dirección 2"
+
+#~ msgid "Preferred language for future communications"
+#~ msgstr "Idioma preferido para futuras comunicaciones"
+
+#~ msgid ""
+#~ "I agree to the Privacy Statement and accept"
+#~ " the Terms and "
+#~ "Conditions "
+#~ msgstr ""
+
+#~ msgid "Next"
+#~ msgstr "Siguiente"
+
+#~ msgid "Save"
+#~ msgstr "Guardar"
+
+#~ msgid "Danger zone"
+#~ msgstr "Zona de riesgo"
+
+#~ msgid "Delete or scrub the account."
+#~ msgstr "Eliminar o borrar la cuenta."
+
+#~ msgid ""
+#~ "If the account has any samples "
+#~ "associated, the account and sources will"
+#~ " be scrubbed, meaning all free text"
+#~ " and identifiable information is removed."
+#~ msgstr ""
+#~ "Si la cuenta tiene muestras asociadas,"
+#~ " la cuenta y la fuente serán "
+#~ "borradas, lo que significa que se "
+#~ "eliminará todo el texto libre y la"
+#~ " información identificable."
+
+#~ msgid "Otherwise, the account and any sources will be deleted"
+#~ msgstr "De lo contrario, la cuenta y cualquier fuente serán eliminadas"
+
+#~ msgid ""
+#~ "IMPORTANT: you must manually delete the"
+#~ " email from Authrocket and other "
+#~ "external services like MyEmma to "
+#~ "complete the process"
+#~ msgstr ""
+#~ "IMPORTANTE: debe eliminar manualmente el "
+#~ "correo electrónico de Authrocket y otros"
+#~ " servicios externos como MyEmma para "
+#~ "completar el proceso"
+
+#~ msgid "ACCOUNT DELETION CANNOT BE UNDONE"
+#~ msgstr "LA ELIMINACIÓN DE LA CUENTA NO SE PUEDE REVERTIR"
+
+#~ msgid "Delete Account"
+#~ msgstr "Eliminar cuenta"
+
+#~ msgid "Account"
+#~ msgstr "Cuenta"
+
+#~ msgid "Active Profiles"
+#~ msgstr ""
+
+#~ msgid "Go to My Profile"
+#~ msgstr ""
+
+#~ msgid "Add New Profile"
+#~ msgstr ""
+
+#~ msgid "Select the type of profile you would like to create."
+#~ msgstr ""
+
+#~ msgid "Human Profile"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Share your diet, health, and lifestyle"
+#~ " details to help discover more about"
+#~ " how this affects the human "
+#~ "microbiome."
+#~ msgstr ""
+
+#~ msgid "Add Human Profile"
+#~ msgstr ""
+
+#~ msgid "Pet Profile"
+#~ msgstr "No provisto"
+
+#~ msgid "Share sample(s) from an animal (e.g. fecal, saliva, skin, etc.)"
+#~ msgstr "(por ejemplo, heces, saliva, piel, etc.)"
+
+#~ msgid "Coming Soon"
+#~ msgstr "Hong Kong"
+
+#~ msgid "Environment Profile"
+#~ msgstr "ambiental"
+
+#~ msgid "Share sample(s) from the environment (e.g. kitchen counter, food, etc.)"
+#~ msgstr ""
+
+#~ msgid "Admin Activation Codes"
+#~ msgstr "Códigos de Activación del Administrador"
+
+#~ msgid "Search by Email"
+#~ msgstr "Buscar por Correo Electrónico"
+
+#~ msgid "Search"
+#~ msgstr "Buscar"
+
+#~ msgid "Search by Activation Code"
+#~ msgstr "Buscar por Código de Activación"
+
+#~ msgid "Activation Code"
+#~ msgstr "Código de Activación"
+
+#~ msgid "Generate Activation Code"
+#~ msgstr "Generar Código de Activación"
+
+#~ msgid "Generate"
+#~ msgstr "Generar"
+
+#~ msgid "Generate + Send Email"
+#~ msgstr "Generar + Enviar Correo Electrónico"
+
+#~ msgid "Generate Activation Codes from CSV File"
+#~ msgstr "Generar Códigos de Activación desde un Archivo CSV"
+
+#~ msgid "CSV File of Emails"
+#~ msgstr "Archivo CSV de correos electrónicos"
+
+#~ msgid "Search Results"
+#~ msgstr "Buscar Resultados"
+
+#~ msgid "Code"
+#~ msgstr "Código"
+
+#~ msgid "Activated"
+#~ msgstr "Activado"
+
+#~ msgid "No accounts found"
+#~ msgstr "No se encontraron cuentas"
+
+#~ msgid "Admin Address Verification"
+#~ msgstr "Verificación de la dirección del administrador"
+
+#~ msgid "Verify CSV File of Addresses"
+#~ msgstr "Verificar archivo CSV de direcciones"
+
+#~ msgid "CSV File"
+#~ msgstr "Archivo CSV"
+
+#~ msgid "Verify"
+#~ msgstr "Verificar"
+
+#~ msgid "Verify Single Address"
+#~ msgstr "Verificar Dirección Única"
+
+#~ msgid "Address 1"
+#~ msgstr "Dirección 1"
+
+#~ msgid "Address 2"
+#~ msgstr "Dirección 2"
+
+#~ msgid "Address 3"
+#~ msgstr "Dirección 3"
+
+#~ msgid "Postal Code"
+#~ msgstr "Código Postal"
+
+#~ msgid "Latitude"
+#~ msgstr "Latitud"
+
+#~ msgid "Longitude"
+#~ msgstr "Longitud"
+
+#~ msgid "ADMINISTRATOR BARCODE SEARCH"
+#~ msgstr "Búsqueda de Código de Barras del Administrador"
+
+#~ msgid "Download CSV"
+#~ msgstr "Descargar CSV"
+
+#~ msgid "Download Excel"
+#~ msgstr "Descargar Excel"
+
+#~ msgid "Search Qiita"
+#~ msgstr "Buscar Qiita"
+
+#~ msgid "Barcode"
+#~ msgstr "Código de barras"
+
+#~ msgid "Admin Campaign Edit"
+#~ msgstr "Editar Campaña del Administrador"
+
+#~ msgid "Edit Campaign"
+#~ msgstr "Editar Campaña"
+
+#~ msgid "Campaign ID"
+#~ msgstr "ID de campaña"
+
+#~ msgid "Campaign Link"
+#~ msgstr "Enlace de campaña"
+
+#~ msgid "Associated Projects"
+#~ msgstr "Proyectos Asociados"
+
+#~ msgid "Add Campaign"
+#~ msgstr "Añadir Campaña"
+
+#~ msgid "Campaign Language"
+#~ msgstr "Idioma de Campaña"
+
+#~ msgid "Title"
+#~ msgstr "Título"
+
+#~ msgid "Instructions"
+#~ msgstr "Instrucciones"
+
+#~ msgid "Alt Campaign Language"
+#~ msgstr "Idioma Alternativo de la Campaña"
+
+#~ msgid "Title in Alt Language"
+#~ msgstr "Título en Idioma Alternativo"
+
+#~ msgid "Instructions in Alt Language"
+#~ msgstr "Instrucciones en Idioma Alternativo"
+
+#~ msgid "Current Header Image"
+#~ msgstr "Imagen de Encabezado Actual"
+
+#~ msgid "Upload New Header Image"
+#~ msgstr "Cargar Nueva Imagen de Encabezado"
+
+#~ msgid "Permitted Countries"
+#~ msgstr "Países Permitidos"
+
+#~ msgid "Accepting Participants"
+#~ msgstr "Aceptando Participantes"
+
+#~ msgid "Send THDMI Confirmation Email"
+#~ msgstr ""
+
+#~ msgid "Force Primary Language on Form"
+#~ msgstr ""
+
+#~ msgid "Submit"
+#~ msgstr "Enviar"
+
+#~ msgid "Campaigns"
+#~ msgstr "Campañas"
+
+#~ msgid "Campaign Name"
+#~ msgstr "Nombre de Campaña"
+
+#~ msgid "No campaigns found"
+#~ msgstr "No campañas encontradas"
+
+#~ msgid "Admin FFQ Codes"
+#~ msgstr ""
+
+#~ msgid "Generate Single Code"
+#~ msgstr ""
+
+#~ msgid "Generate Multiple Codes and download CSV File"
+#~ msgstr ""
+
+#~ msgid "Number of Codes"
+#~ msgstr ""
+
+#~ msgid "ADMINISTRATOR MODE"
+#~ msgstr "Modo Administrador"
+
+#~ msgid "Account ID"
+#~ msgstr "ID de la Cuenta"
+
+#~ msgid "Please enter a valid phone number."
+#~ msgstr "Por favor ingrese su número de teléfono."
+
+#~ msgid "Please enter your street address."
+#~ msgstr "Por favor ingrese su dirección postal."
+
+#~ msgid "Please enter your city."
+#~ msgstr "Por favor ingrese su ciudad."
+
+#~ msgid "Please select your state."
+#~ msgstr "Por favor ingrese su estado."
+
+#~ msgid "Please enter your postal code."
+#~ msgstr "Por favor ingrese su código postal."
+
+#~ msgid "Edit Interested User"
+#~ msgstr "Editar Usuario Interesado"
+
+#~ msgid ""
+#~ "CAUTION: Edits made will NOT go "
+#~ "through address verification - proceed "
+#~ "carefully"
+#~ msgstr ""
+#~ "PRECAUCIÓN: Los cambios realizados NO "
+#~ "pasarán por la verificación de la "
+#~ "dirección; avanzar con cuidado"
+
+#~ msgid "Phone"
+#~ msgstr "Teléfono"
+
+#~ msgid "Address Type"
+#~ msgstr "Dirección de Envio"
+
+#~ msgid "Interested Users"
+#~ msgstr "Usuarios Interesados"
+
+#~ msgid "Converted to Account"
+#~ msgstr "Convertido a Cuenta"
+
+#~ msgid "No interested users found"
+#~ msgstr "No se encontraron usuarios interesados"
+
+#~ msgid "ADMINISTRATOR SYSTEM PANEL"
+#~ msgstr "PANEL DEL SISTEMA DEL ADMINISTRADOR"
+
+#~ msgid "Set System Message"
+#~ msgstr "Establecer mensaje del sistema"
+
+#~ msgid "System Message"
+#~ msgstr "Mensaje del Sistema"
+
+#~ msgid "primary"
+#~ msgstr "primario"
+
+#~ msgid "secondary"
+#~ msgstr "secundario"
+
+#~ msgid "success"
+#~ msgstr "éxitoso"
+
+#~ msgid "danger"
+#~ msgstr "peligro"
+
+#~ msgid "warning"
+#~ msgstr "advertencia"
+
+#~ msgid "info"
+#~ msgstr "información"
+
+#~ msgid "light"
+#~ msgstr "claro"
+
+#~ msgid "dark"
+#~ msgstr "oscuro"
+
+#~ msgid "Consent Documents"
+#~ msgstr ""
+
+#~ msgid "Survey"
+#~ msgstr "Turquia"
+
+#~ msgid "Biospecimen"
+#~ msgstr ""
+
+#~ msgid "View"
+#~ msgstr "Ver"
+
+#~ msgid "Create Non-human Source"
+#~ msgstr "Crear Fuente No-Humana"
+
+#~ msgid "Creating Source..."
+#~ msgstr "Creando fuente..."
+
+#~ msgid "Environment name (e.g., microwave)"
+#~ msgstr "Nombre del entorno (por ejemplo, microondas)"
+
+#~ msgid "Environment description (optional)"
+#~ msgstr "Descripción del entorno (opcional)"
+
+#~ msgid "Create Source"
+#~ msgstr "Crear una Fuente"
+
+#~ msgid "Awaiting Email Confirmation"
+#~ msgstr "Esperando Confirmación por Correo Electrónico"
+
+#~ msgid "Check your email inbox"
+#~ msgstr "Revise la bandeja de entrada de su correo electrónico"
+
+#~ msgid ""
+#~ "To complete your verification, click on"
+#~ " the link in the email AuthRocket "
+#~ "has sent to"
+#~ msgstr ""
+#~ "Para completar su verificación, haga "
+#~ "clic en el enlace del correo "
+#~ "electrónico que AuthRocket ha enviado a"
+
+#~ msgid "Waiting for you to confirm"
+#~ msgstr "Esperando su confirmación"
+
+#~ msgid "Please check both your spam and inbox"
+#~ msgstr "Por favor revise sus correos no deseados y su bandeja de entrada"
+
+#~ msgid "AuthRocket is our authentication service"
+#~ msgstr "AuthRocket es nuestro servicio de autenticación"
+
+#~ msgid "Email wrong or didn't receive an email?"
+#~ msgstr "Correo electrónico incorrecto o no recibió un correo electrónico?"
+
+#~ msgid "Go to your AuthRocket Account"
+#~ msgstr "Vaya a su cuenta de AuthRocket"
+
+#~ msgid "to update your email or resend a verification email"
+#~ msgstr ""
+#~ "para actualizar su correo electrónico o"
+#~ " reenviar un correo electrónico de "
+#~ "verificación"
+
+#~ msgid "You can close this browser tab!"
+#~ msgstr "¡Puede cerrar esta pestaña del navegador!"
+
+#~ msgid ""
+#~ "After email verification, a new tab "
+#~ "will automatically open, and you will"
+#~ " proceed with filling out your "
+#~ "account details"
+#~ msgstr ""
+#~ "Después de la verificación del correo"
+#~ " electrónico, se abrirá automáticamente una"
+#~ " nueva pestaña, y usted podrá seguir"
+#~ " ingresando la información de su "
+#~ "cuenta"
+
+#~ msgid "Embedded PDF"
+#~ msgstr "PDF incorporado"
+
+#~ msgid "This report is generated by a third party."
+#~ msgstr ""
+#~ "Este reporte es generado por una "
+#~ "tercera entidad sin información sobre "
+#~ "edad, altura o peso."
+
+#~ msgid "Emperor Playground"
+#~ msgstr "Emperor Playground"
+
+#~ msgid "PCOA URL"
+#~ msgstr "PCOA URL"
+
+#~ msgid "Go!"
+#~ msgstr "Ir!"
+
+#~ msgid "Error Page"
+#~ msgstr "Error en la Página"
+
+#~ msgid ""
+#~ "An error seemed to have occurred "
+#~ "(see below). It is most likely our"
+#~ " fault. We are actively modifying our"
+#~ " infrastructure to support COVID-19 "
+#~ "research, and we're still in the "
+#~ "process of handling the different type"
+#~ " of scenarios that can happen on "
+#~ "a website. We apologize for any "
+#~ "inconvenience."
+#~ msgstr ""
+#~ "Parece que se ha producido un "
+#~ "error (véase a continuación). Lo más "
+#~ "probable es que sea un error "
+#~ "nuestro. Estamos modificando nuestra "
+#~ "infraestructura para respaldar la "
+#~ "investigación de COVID-19 y todavía "
+#~ "estamos en el proceso de manejar "
+#~ "los diferentes tipos de escenarios que"
+#~ " pueden ocurrir en un sitio web. "
+#~ "Nos disculpamos por cualquier inconveniente."
+
+#~ msgid "If you have any concerns, please email us at"
+#~ msgstr "Si tiene alguna duda, por favor envíenos un correo electrónico a"
+
+#~ msgid "and please note the error below"
+#~ msgstr "y por favor muéstrenos el error que le apareció"
+
+#~ msgid "Error"
+#~ msgstr "Error"
+
+#~ msgid "Home"
+#~ msgstr "Inicio"
+
+#~ msgid "Welcome!"
+#~ msgstr "¡Bienvenido!"
+
+#~ msgid "Sign Up"
+#~ msgstr "Registrarse"
+
+#~ msgid "Log In"
+#~ msgstr "Iniciar sesión"
+
+#~ msgid "My Kits"
+#~ msgstr ""
+
+#~ msgid "KitID"
+#~ msgstr "Haití"
+
+#~ msgid "View Results"
+#~ msgstr "Resultados"
+
+#~ msgid ""
+#~ "Currently, \"My Kits\" is unavailable in"
+#~ " your country or region. We apologize"
+#~ " for any inconvenience."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Click on the following link if you"
+#~ " would like to contribute to receive"
+#~ " a kit"
+#~ msgstr ""
+
+#~ msgid "Get a Kit"
+#~ msgstr ""
+
+#~ msgid "Have a KitID"
+#~ msgstr ""
+
+#~ msgid "Sample Received - Results Pending"
+#~ msgstr ""
+
+#~ msgid "To register your kit, enter your Kit ID below"
+#~ msgstr ""
+
+#~ msgid "Register Kit"
+#~ msgstr ""
+
+#~ msgid "Which barcode(s) are you using from this kit (select all that apply)?"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Each collection tube you receive has "
+#~ "a unique barcode printed on the "
+#~ "side."
+#~ msgstr ""
+
+#~ msgid "1. Select the barcode(s) you are using"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "2. Add the date and time of "
+#~ "sample collection and select the sample"
+#~ " type taken."
+#~ msgstr ""
+
+#~ msgid "Important"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "The sample cannot be processed in "
+#~ "the lab until this information is "
+#~ "complete."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Keep a record of these details. "
+#~ "The barcode is needed to resolve "
+#~ "any issues you may have with your"
+#~ " sample collection."
+#~ msgstr ""
+
+#~ msgid "What is the barcode and why is it important?"
+#~ msgstr ""
+
+#~ msgid "Confirm"
+#~ msgstr ""
+
+#~ msgid "MyFoodRepo unavailable"
+#~ msgstr "MyFoodRepo no disponible"
+
+#~ msgid "MyFoodRepo is currently unavailabile"
+#~ msgstr "MyFoodRepo no está disponible en este momento"
+
+#~ msgid ""
+#~ "We apologize, but unfortunately MyFoodRepo "
+#~ "is not available at this time. "
+#~ "Please check back in a few days"
+#~ " and try again."
+#~ msgstr ""
+#~ "Lo sentimos, pero desafortunadamente "
+#~ "MyFoodRepo no está disponible en este"
+#~ " momento. Vuelva a revisar en unos"
+#~ " días e inténtelo de nuevo."
+
+#~ msgid ""
+#~ "MyFoodRepo is human curated to ensure"
+#~ " the highest accuracy in reported "
+#~ "dietary detail. Because the process is"
+#~ " not fully automated, we need to "
+#~ "limit the number of concurrent users "
+#~ "who take part. We apologize for "
+#~ "the inconvenience."
+#~ msgstr ""
+#~ "MyFoodRepo es dirigido por humanos para"
+#~ " garantizar una mayor precisión en la"
+#~ " información dietética reportada. Debido a"
+#~ " que el proceso no está completamente"
+#~ " automatizado, debemos limitar la cantidad"
+#~ " de usuarios que participan. Pedimos "
+#~ "disculpas por las molestias."
+
+#~ msgid "Back to Samples"
+#~ msgstr "Volver a las Muestras"
+
+#~ msgid "Consent"
+#~ msgstr "Consentimiento Informado"
+
+#~ msgid "Saving..."
+#~ msgstr "Guardando..."
+
+#~ msgid "Please confirm that you have read this form."
+#~ msgstr ""
+
+#~ msgid "Please enter the participant name."
+#~ msgstr "Por favor ingrese su apellido."
+
+#~ msgid "Please enter the parent or guardian name."
+#~ msgstr "Por favor ingrese su apellido."
+
+#~ msgid "Please confirm that you will be in this study."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Please confirm that the participant is"
+#~ " voluntarily and knowingly giving consent."
+#~ msgstr ""
+
+#~ msgid "Please enter the name of the person obtaining assent."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "It looks like you are creating a"
+#~ " new profile that may be similar "
+#~ "or the same as an existing "
+#~ "profile. If this is the same "
+#~ "person as an existing profile, please"
+#~ " consider providing new samples or "
+#~ "survey responses under that profile."
+#~ msgstr ""
+
+#~ msgid "I Accept"
+#~ msgstr "Acepto"
+
+#~ msgid "Biospecimen Consent Form"
+#~ msgstr ""
+
+#~ msgid "Data Consent Form"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Signature and agreement of this consent"
+#~ " form is required to process your "
+#~ "sample(s)."
+#~ msgstr ""
+
+#~ msgid "Select age range of participant"
+#~ msgstr ""
+
+#~ msgid "https://oag.ca.gov/sites/all/files/agweb/pdfs/research/bill_of_rights.pdf"
+#~ msgstr "https://oag.ca.gov/sites/all/files/agweb/pdfs/research/bill_of_rights.pdf"
+
+#~ msgid "Cancel"
+#~ msgstr "Francia"
+
+#~ msgid "Warning"
+#~ msgstr "advertencia"
+
+#~ msgid "Return to Home Page"
+#~ msgstr ""
+
+#~ msgid "Proceed with Creating New Source"
+#~ msgstr ""
+
+#~ msgid "Sample Results"
+#~ msgstr "Resultados de la muestra"
+
+#~ msgid "11 to 20"
+#~ msgstr "11 a 20"
+
+#~ msgid "21 to 30"
+#~ msgstr "21 a 30"
+
+#~ msgid "5-6 hours"
+#~ msgstr "5-6 horas"
+
+#~ msgid "6 to 10"
+#~ msgstr "6 a 10"
+
+#~ msgid "6-7 hours"
+#~ msgstr "6-7 horas"
+
+#~ msgid "7-8 hours"
+#~ msgstr "7-8 horas"
+
+#~ msgid "8 or more hours"
+#~ msgstr "8 o más horas"
+
+#~ msgid "Daily"
+#~ msgstr "Diario"
+
+#~ msgid "Less than 5"
+#~ msgstr "Menos de 5"
+
+#~ msgid "Less than 5 hours"
+#~ msgstr "Menos de 5 horas"
+
+#~ msgid "More than 30"
+#~ msgstr "Más de 30 horas"
+
+#~ msgid "Never"
+#~ msgstr "Nunca"
+
+#~ msgid "Not provided"
+#~ msgstr "No provisto"
+
+#~ msgid "Occasionally (1-2 times/week)"
+#~ msgstr "Ocasionalmente (1-2 veces/semana)"
+
+#~ msgid "Rarely (a few times/month)"
+#~ msgstr "Raramente (algunas veces/mes)"
+
+#~ msgid "Rarely (less than once/week)"
+#~ msgstr "Rara vez (menos de una vez/semana)"
+
+#~ msgid "Regularly (3-5 times/week)"
+#~ msgstr "Regularmente (3-5 veces/semana)"
+
+#~ msgid "Microbiomes Across the Body"
+#~ msgstr "Microbiomas por todo el cuerpo"
+
+#~ msgid ""
+#~ "In this map, we've placed your "
+#~ "sample relative to all the other "
+#~ "samples we have in Microsetta. As "
+#~ "you can see, there are a few "
+#~ "different types of samples people have"
+#~ " contributed, and the microbial "
+#~ "configurations present can be REALLY "
+#~ "different."
+#~ msgstr ""
+#~ "En este mapa, hemos colocado su "
+#~ "muestra en relación con todas las "
+#~ "demás muestras que tenemos en "
+#~ "Microsetta. Como puede ver, hay "
+#~ "diferentes tipos de muestras que las "
+#~ "personas han contribuido, y las "
+#~ "configuraciones microbianas presentes pueden "
+#~ "ser REALMENTE diferentes."
+
+#~ msgid "Microbiomes Across the World"
+#~ msgstr "Microbiomas en todo el mundo"
+
+#~ msgid ""
+#~ "Researchers have noted large differences "
+#~ "in our microbiomes depending on where"
+#~ " we live. The reason WHY is not"
+#~ " well understood, but we suspect "
+#~ "factors such as diet or environmental"
+#~ " exposures (e.g., plants, what's in "
+#~ "your house, pollution, how often you "
+#~ "come in contact with soil, etc) "
+#~ "may be be major factors."
+#~ msgstr ""
+#~ "Los investigadores han notado grandes "
+#~ "diferencias en nuestros microbiomas según "
+#~ "el lugar donde vivimos. No se "
+#~ "conocen bien las razones de ello, "
+#~ "pero sospechamos que los factores como"
+#~ " la dieta o la exposición ambiental"
+#~ " (por ejemplo, las plantas, lo que"
+#~ " hay en su casa, la contaminación,"
+#~ " la frecuencia con la que entra "
+#~ "en contacto con el suelo, etc.) "
+#~ "pueden ser factores importantes."
+
+#~ msgid ""
+#~ "Researchers do not know how much "
+#~ "these differences matter! They certainly "
+#~ "may."
+#~ msgstr "¡Los investigadores no saben cuánto importan estas diferencias!"
+
+#~ msgid "Microbiomes Across the Lifespan"
+#~ msgstr "Microbiomas a lo largo de la vida"
+
+#~ msgid ""
+#~ "One major factor associated with gut "
+#~ "microbiomes is the age of the "
+#~ "individual, emphasized here by life "
+#~ "stages."
+#~ msgstr ""
+#~ "Un factor importante asociado con el "
+#~ "microbioma intestinal es la edad del "
+#~ "individuo, enfatizada aquí por las "
+#~ "diferentes etapas de la vida."
+
+#~ msgid ""
+#~ "Interestingly, infants are relatively similar"
+#~ " microbially regardless of where they "
+#~ "were born. But, as individuals age, "
+#~ "it seems like their microbiomes reflect"
+#~ " regional or population differences."
+#~ msgstr ""
+#~ "Curiosamente, los bebés son relativamente "
+#~ "similares desde el punto de vista "
+#~ "microbiano, independientemente de dónde hayan"
+#~ " nacido. Pero, a medida que las "
+#~ "personas envejecen, parece que sus "
+#~ "microbiomas reflejan diferencias regionales o"
+#~ " de población."
+
+#~ msgid "Microbiomes in the Environment"
+#~ msgstr "Microbiomas en el Medio Ambiente"
+
+#~ msgid ""
+#~ "Microbes are EVERYWHERE though! Using "
+#~ "these same techniques described above, "
+#~ "we compared your microbiome to samples"
+#~ " collected from all over the surfaces"
+#~ " from a brand new hospital."
+#~ msgstr ""
+#~ "¡Los microbios están EN TODAS PARTES!"
+#~ " Usando las técnicas descritas "
+#~ "anteriormente, nosotros comparamos su "
+#~ "microbioma con muestras recolectadas de "
+#~ "todas las superficies de un hospital "
+#~ "nuevo."
+
+#~ msgid ""
+#~ "As you can see, skin samples tend"
+#~ " to more closely resemble those from"
+#~ " the built environment, which makes "
+#~ "sense as skin cells are constantly "
+#~ "shedding from you."
+#~ msgstr ""
+#~ "Como puede ver, las muestras de la"
+#~ " piel tienden a parecerse más a "
+#~ "las del “entorno construido”, lo que "
+#~ "tiene sentido ya que las células "
+#~ "de la piel se desprenden constantemente"
+#~ " de usted."
+
+#~ msgid "The Microsetta Initiative"
+#~ msgstr "The Microsetta Initiative"
+
+#~ msgid "Publication link"
+#~ msgstr "Enlace de la Publicación"
+
+#~ msgid "Data access (Qiita study"
+#~ msgstr "Acceso de datos (estudio Qiita"
+
+#~ msgid "Download the spreadsheet"
+#~ msgstr "Descargar la hoja de cálculo"
+
+#~ msgid ""
+#~ "The broadest classification like Bacteria, "
+#~ "Archaea and Eukaryokes (what humans "
+#~ "are!)"
+#~ msgstr ""
+#~ "La clasificación más amplia como las "
+#~ "Bacterias, Archaea y Eucariotas (¡lo que"
+#~ " son los humanos!)"
+
+#~ msgid ""
+#~ "Within the kingdom Eukarya, this is "
+#~ "like the difference between humans and"
+#~ " plants"
+#~ msgstr ""
+#~ "Dentro del reino Eukarya, esto es "
+#~ "como la diferencia entre los humanos "
+#~ "y las plantas"
+
+#~ msgid "Within the phylum Chordata, this is along the lines of humans and fish"
+#~ msgstr "Dentro del filo Chordata, esto es similar a los humanos y los peces"
+
+#~ msgid ""
+#~ "Within the class Mammalia, this is "
+#~ "like the difference between whales and"
+#~ " a dogs"
+#~ msgstr ""
+#~ "Dentro de la clase Mammalia, esto "
+#~ "es como la diferencia entre las "
+#~ "ballenas y los perros"
+
+#~ msgid "With the order Carnivora are the families for dogs and cats"
+#~ msgstr "Con la orden Carnivora están las familias de perros y gatos"
+
+#~ msgid ""
+#~ "Within the family Canidae, you would "
+#~ "find a genus for foxes and one "
+#~ "for wolves"
+#~ msgstr ""
+#~ "Dentro de la familia Canidae, encontrará"
+#~ " un género para zorros y otro "
+#~ "para lobos"
+
+#~ msgid "Unspecified"
+#~ msgstr "Indeterminado"
+
+#~ msgid "chose not to provide their age"
+#~ msgstr "optó por no proporcionar su edad"
+
+#~ msgid "is"
+#~ msgstr "es"
+
+#~ msgid "years old"
+#~ msgstr "años"
+
+#~ msgid "chose not to say how many sweets they eat"
+#~ msgstr "optó por no decir cuántos dulces comen"
+
+#~ msgid "eats sweets"
+#~ msgstr "come dulces"
+
+#~ msgid "eats more sugary sweets than you"
+#~ msgstr "come más dulces que usted"
+
+#~ msgid "eats fewer sugary sweets than you"
+#~ msgstr "come menos dulces que usted"
+
+#~ msgid "eats about the same number of sugary sweets as you"
+#~ msgstr "come el mismo número de dulces que usted"
+
+#~ msgid "Rank Distributions"
+#~ msgstr "Distribucion por Rango"
+
+#~ msgid "My Sample"
+#~ msgstr "Mi Muestra"
+
+#~ msgid "How abundant are my microbes compared everyone in Microsetta?"
+#~ msgstr ""
+#~ "¿Qué tan abundantes son mis microbios"
+#~ " en comparación con los demás en "
+#~ "Microsetta?"
+
+#~ msgid "Common types of microbes"
+#~ msgstr "Tipos comunes de microbios"
+
+#~ msgid "Least Abundant"
+#~ msgstr "Menos Abundante"
+
+#~ msgid "Most Abundant"
+#~ msgstr "Más abundante"
+
+#~ msgid ""
+#~ "whole genome sequencing, a technique "
+#~ "that produces a large number of "
+#~ "small DNA sequences from all of "
+#~ "the microbial genomes in your sample."
+#~ " With enough sequences you can even"
+#~ " see the variation that exists "
+#~ "between microbes of the same species."
+#~ msgstr ""
+#~ "secuenciación del genoma completo, una "
+#~ "técnica que produce una gran cantidad"
+#~ " de pequeñas secuencias de ADN a "
+#~ "partir de todos los genomas microbianos"
+#~ " de su muestra. Con suficientes "
+#~ "secuencias usted puede ver la variación"
+#~ " que existe entre microbios de una"
+#~ " misma especie."
+
+#~ msgid ""
+#~ "16S. This technique produces DNA "
+#~ "sequences from a specific variable "
+#~ "region (V4) within a microbial gene "
+#~ "(the 16S small subunit ribosomal gene)."
+#~ " DNA sequences from this region of"
+#~ " this gene can be used like a"
+#~ " microbial barcode, providing researchers "
+#~ "evidence of the types of microbes "
+#~ "that may be present in your "
+#~ "sample."
+#~ msgstr ""
+#~ "16S. Esta técnica produce secuencias de"
+#~ " ADN a partir de una región "
+#~ "variable específica (V4) dentro de un"
+#~ " gen microbiano (el gen ribosomal de"
+#~ " la subunidad menor 16S). Las "
+#~ "secuencias de ADN de la región de"
+#~ " este gen se pueden usar como "
+#~ "un código de barras microbiano, "
+#~ "proporcionando a los científicos evidencia "
+#~ "de los tipos de microbios que "
+#~ "pueden estar presentes en su muestra."
+
+#~ msgid "Source"
+#~ msgstr "Fuente"
+
+#~ msgid "Results"
+#~ msgstr "Resultados"
+
+#~ msgid "How do you compare?"
+#~ msgstr "¿Cómo se compara?"
+
+#~ msgid "Diversity"
+#~ msgstr "Diversidad"
+
+#~ msgid "Similarity"
+#~ msgstr "Semejanza"
+
+#~ msgid "Your Inner Zoo"
+#~ msgstr "Su Zoológico Interior"
+
+#~ msgid "Microbiome Map"
+#~ msgstr "Mapa del Microbioma"
+
+#~ msgid "How can I learn more?"
+#~ msgstr "¿Cómo puedo aprender más?"
+
+#~ msgid ""
+#~ "Your microbiome is a rainforest of "
+#~ "diverse microbes dominated by microbes -"
+#~ " some 40 trillion bacteria, weighing "
+#~ "around 1 lb, live all over and "
+#~ "in your body. The diversity of "
+#~ "your microbiome, how similar it is "
+#~ "to other peoples', and the types "
+#~ "of bacteria living inside you have "
+#~ "all been linked to health, disease "
+#~ "and lifestyle traits in numerous "
+#~ "studies."
+#~ msgstr ""
+#~ "Su microbioma es una selva tropical "
+#~ "de diversos microbios dominados por "
+#~ "microbios - aproximadamente 40 trillones "
+#~ "de bacterias, que pesan alrededor de "
+#~ "1 libra, viven sobre y en todo "
+#~ "su cuerpo. La diversidad de su "
+#~ "microbioma, qué tan similar es al "
+#~ "de otras personas y los tipos de"
+#~ " bacterias que viven dentro de usted"
+#~ " se han relacionado con la salud, "
+#~ "la enfermedad y el estilo de vida"
+#~ " en numerosos estudios."
+
+#~ msgid ""
+#~ "Scientists often use many different "
+#~ "approaches to see how your microbiome"
+#~ " differs. We've analyzed your microbiome"
+#~ " sample using standard microbiome research"
+#~ " tools, and the results are broken"
+#~ " down below in a few different "
+#~ "categories"
+#~ msgstr ""
+#~ "Los científicos regularmente usan diferentes"
+#~ " criterios para ver cómo difiere su"
+#~ " microbioma. Nosotros hemos analizado su"
+#~ " muestra de microbioma utilizando "
+#~ "herramientas estándar para la investigación"
+#~ " del microbioma, y los resultados se"
+#~ " desglosan a continuación en diferentes "
+#~ "categorías"
+
+#~ msgid "How many kinds of microbes were in your sample? Check out your"
+#~ msgstr "¿Cuántos tipos de microbios había en su muestra? Revise su"
+
+#~ msgid ""
+#~ "What kinds of people have microbiomes"
+#~ " like yours? Check out your "
+#~ "microbiome"
+#~ msgstr ""
+#~ "¿Qué tipo de personas tienen microbiomas"
+#~ " como el suyo? Revise su microbioma"
+
+#~ msgid "What particular kinds of microbes are in your sample? Wander through"
+#~ msgstr "¿Qué tipo de microbios particulares hay en su muestra? Explore"
+
+#~ msgid "Where are you on the"
+#~ msgstr "¿Dónde está usted en el"
+
+#~ msgid ""
+#~ "There are anywhere from hundreds of "
+#~ "millions to hundreds of billions of "
+#~ "different types of bacteria living on"
+#~ " planet earth. This dwarfs the meager"
+#~ " 2 million different kinds of animals"
+#~ " and plants that you can see "
+#~ "with your eyes. The average American has FILLIN different types of "
+#~ "microbes in a stool sample, which "
+#~ "is lower than we find in people"
+#~ " living a more hunter-gatherer "
+#~ "lifestyle, like the FILLIN we find"
+#~ " in samples from the Smits et "
+#~ "al. Science 2017\" data-"
+#~ "html=\"true\">Hadza ."
+#~ msgstr ""
+#~ "Hay entre cientos de millones y "
+#~ "cientos de miles de millones de "
+#~ "distintos tipos de bacterias que viven"
+#~ " en el planeta tierra. Esto "
+#~ "empequeñece a los escasos 2 millones "
+#~ "de distintos tipos de animales y "
+#~ "plantas que puede ver con sus "
+#~ "ojos. El promedio de "
+#~ "Estadounidenses tienen 93 "
+#~ "diferentes tipos de microbios en una "
+#~ "muestra de heces, el cual es "
+#~ "inferior al que encontramos en personas"
+#~ " que viven un estilo de vida "
+#~ "más cazador-recolector, como los "
+#~ "132 que encontramos en "
+#~ "muestras de Smits et al. Science "
+#~ "2017” data-html=“true”>Hadza ."
+
+#~ msgid "Number of different microbes found in your sample"
+#~ msgstr "Número de microbios diferentes encontrados en su muestra"
+
+#~ msgid ""
+#~ "When we calculated the diversity of "
+#~ "groups for samples in our database, "
+#~ "we found diversity is associated with"
+#~ " how you live your life. Here, "
+#~ "we summarized the average microbiome "
+#~ "diversity for a few of the "
+#~ "questionnaire responses, specifically people "
+#~ "who eat more than 30 plants a "
+#~ "week, exercise regularly, drink water "
+#~ "regularly, or sleep more than 6 "
+#~ "hours a night."
+#~ msgstr ""
+#~ "Cuando nosotros calculamos la diversidad "
+#~ "de grupos para muestras en nuestra "
+#~ "base de datos, encontramos que la "
+#~ "diversidad está asociada con la forma"
+#~ " en que vive su vida. Aquí, "
+#~ "nosotros resumimos la diversidad de "
+#~ "microbiomas promedio para algunas de las"
+#~ " respuestas del cuestionario, específicamente "
+#~ "las personas que consumen más de "
+#~ "30 plantas a la semana, hacen "
+#~ "ejercicio con regularidad, beben agua "
+#~ "con regularidad o duermen más de 6"
+#~ " horas por noche."
+
+#~ msgid "Eat more than 30 plants a week"
+#~ msgstr "Comen más de 30 plantas a la semana"
+
+#~ msgid "unique microbial features"
+#~ msgstr "características microbianas únicas"
+
+#~ msgid "Exercise regularly"
+#~ msgstr "Hacen ejercicio regularmente"
+
+#~ msgid "Drink 1L or water regularly"
+#~ msgstr "Beben 1L de agua o agua regularmente"
+
+#~ msgid "Sleep more than 6 hours per night"
+#~ msgstr "Duermen más de 6 horas por noche"
+
+#~ msgid ""
+#~ "One of the powerful ways microbiome "
+#~ "scientists analyze data is by looking"
+#~ " at similarities among samples. To do"
+#~ " this, we compute a a "
+#~ "lot of ways to form a "
+#~ "distance. One way is to base the"
+#~ " distance off of the fraction of "
+#~ "microbes in common in your sample "
+#~ "with each other sample. We typically "
+#~ "share few of the exact same "
+#~ "microbes in common with other people "
+#~ "though which is problematic when "
+#~ "comparing exact microbes. To account for"
+#~ " this, researchers often take the "
+#~ "evolutionary relationships among microbes into"
+#~ " account when forming these "
+#~ "distances.\">distance from your sample "
+#~ "to all other samples based on the"
+#~ " microbes observed."
+#~ msgstr ""
+#~ "Una forma eficaz en que los "
+#~ "científicos analizan los datos del "
+#~ "microbioma es observando las similitudes "
+#~ "entre las muestras. Para hacer esto, "
+#~ "nosotros calculamos una a "
+#~ "lot of ways to form a "
+#~ "distance. One way is to base the"
+#~ " distance off of the fraction of "
+#~ "microbes in common in your sample "
+#~ "with each other sample. We typically "
+#~ "share few of the exact same "
+#~ "microbes in common with other people "
+#~ "though which is problematic when "
+#~ "comparing exact microbes. To account for"
+#~ " this, researchers often take the "
+#~ "evolutionary relationships among microbes into"
+#~ " account when forming these "
+#~ "distances.”>distancia de su muestra a"
+#~ " todas las demás muestras basada en"
+#~ " los microbios observados."
+
+#~ msgid ""
+#~ "Here, we your sample to all the"
+#~ " others in our database, and examined"
+#~ " the 100 most similar samples to "
+#~ "yours. These people answered their "
+#~ "questionnaires in the following way; the"
+#~ " response is colored in light green "
+#~ "if it matches your response and "
+#~ "brown if your response "
+#~ "differed."
+#~ msgstr ""
+#~ "Aquí, nosotros comparamos su muestra con"
+#~ " las demás muestras en nuestra base"
+#~ " de datos, y examinamos las 100 "
+#~ "muestras más similares a la suya. "
+#~ "Estas personas respondieron sus cuestionarios"
+#~ " de la siguiente manera; la respuesta"
+#~ " esta en color verde si coincide con"
+#~ " su respuesta y en café si "
+#~ "su respuesta es diferente."
+
+#~ msgid "Diet"
+#~ msgstr "Dieta"
+
+#~ msgid "of people with a microbiome like yours eat"
+#~ msgstr "de las personas con un microbioma como el suyo comen"
+
+#~ msgid "plants per week"
+#~ msgstr "plantas por semana"
+
+#~ msgid "of people with a microbiome like yours had a similar diet"
+#~ msgstr "de las personas con un microbioma como el suyo tenían una dieta similar"
+
+#~ msgid "Supplements"
+#~ msgstr "Suplementos"
+
+#~ msgid "of people with a microbiome like yours"
+#~ msgstr "de las personas con un microbioma como el suyo"
+
+#~ msgid "take probiotics"
+#~ msgstr "toman probióticos"
+
+#~ msgid "of people with a microbiome like yours take vitamins"
+#~ msgstr "de las personas con un microbioma como el suyo toman vitaminas"
+
+#~ msgid "Activity"
+#~ msgstr "Actividad"
+
+#~ msgid "of people with a microbiome like yours exercise"
+#~ msgstr "de las personas con un microbioma como el suyo hacen ejercicio"
+
+#~ msgid "of people with a microbiome like yours get"
+#~ msgstr "de las personas con un microbioma como el suyo toman"
+
+#~ msgid "of sleep at night"
+#~ msgstr "de sueño por la noche"
+
+#~ msgid "Demographic"
+#~ msgstr "Demográfico"
+
+#~ msgid "of people with a microbiome like yours were the same age as you"
+#~ msgstr ""
+#~ "de las personas con un microbioma "
+#~ "como el suyo tenían la misma edad"
+#~ " que usted"
+
+#~ msgid "of people with a microbiome like yours were the same gender"
+#~ msgstr "de las personas con un microbioma como el suyo eran del mismo sexo"
+
+#~ msgid "Your Inner Zoo (aka What's in your sample?)"
+#~ msgstr "Su Zoológico Interno (¿Qué hay en su muestra?)"
+
+#~ msgid ""
+#~ "Below you will find a table of "
+#~ "all of the different microbes we "
+#~ "found in your sample, and their "
+#~ "proportions."
+#~ msgstr ""
+#~ "A continuación encontrará una tabla de"
+#~ " todos los distintos microbios que "
+#~ "encontramos en su muestra y sus "
+#~ "proporciones."
+
+#~ msgid ""
+#~ "Microbes sometimes have difficult names "
+#~ "to pronounce. Some of the names "
+#~ "are Latin, Greek, Norse, Chinese and "
+#~ "more. If you'd like to know more,"
+#~ " a pronounciation guide can be found"
+#~ " here ."
+#~ msgstr ""
+#~ "Los microbios a veces tienen nombres "
+#~ "difíciles de pronunciar. Algunos de los"
+#~ " nombres están en latín, griego, "
+#~ "nórdico, chino entre otros. Si desea "
+#~ "conocer más, puede encontrar una guía"
+#~ " de pronunciación aquí ."
+
+#~ msgid ""
+#~ "Please mouse over the header to "
+#~ "learn more about how to interpret "
+#~ "these taxonomic ranks (e.g., Kingdom) "
+#~ "using examples of non-microbial "
+#~ "organisms."
+#~ msgstr ""
+#~ "Pase el cursor del mouse sobre el"
+#~ " encabezado para obtener más información"
+#~ " sobre cómo interpretar estos rangos "
+#~ "taxonómicos (por ejemplo, Reino) usando "
+#~ "ejemplos de organismos no microbianos."
+
+#~ msgid "%% of Sample"
+#~ msgstr "%% de la muestra"
+
+#~ msgid "Kingdom"
+#~ msgstr "Reino"
+
+#~ msgid "Phylum"
+#~ msgstr "Filo"
+
+#~ msgid "Class"
+#~ msgstr "Clase"
+
+#~ msgid "Order"
+#~ msgstr "Orden"
+
+#~ msgid "Family"
+#~ msgstr "Familia"
+
+#~ msgid "Genus"
+#~ msgstr "Género"
+
+#~ msgid ""
+#~ "No evidence presented here indicates "
+#~ "what we've observed is clinically "
+#~ "dangerous"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "In the plot below, you can see "
+#~ "the most commonly observed microbial "
+#~ "genera in the dataset, and distribution"
+#~ " of ranks of those genera. For "
+#~ "example,"
+#~ msgstr ""
+#~ "En la siguiente gráfica, usted podrá "
+#~ "ver los géneros microbianos observados "
+#~ "con mayor frecuencia en el conjunto "
+#~ "de datos y el rango de "
+#~ "distribución de esos géneros. Por "
+#~ "ejemplo,"
+
+#~ msgid "typically has the highest relative abundance of samples in the dataset."
+#~ msgstr ""
+#~ "normalmente tiene la mayor abundancia "
+#~ "relativa de muestras en el conjunto "
+#~ "de datos."
+
+#~ msgid ""
+#~ "Microbiome analysis is a burgeoning new"
+#~ " field, and the information displayed "
+#~ "here is only an example of what"
+#~ " is becoming possible thanks to the"
+#~ " data that you helped collect."
+#~ msgstr ""
+#~ "El análisis del microbioma es un "
+#~ "campo nuevo, y la información que "
+#~ "se muestra aquí es solo un ejemplo"
+#~ " de lo que se está logrando "
+#~ "gracias a los datos que usted "
+#~ "ayudó a recopilar."
+
+#~ msgid ""
+#~ "So if you want to learn more, "
+#~ "you can even take a look at "
+#~ "the dataset for yourself!"
+#~ msgstr "Si desea aprender más, ¡usted puede revisar el conjunto de datos!"
+
+#~ msgid ""
+#~ "For your sample, we performed a "
+#~ "technique called amplicon sequencing where "
+#~ "we examine pieces of DNA corresponding"
+#~ " to a particular gene. Specifically, "
+#~ "we sequenced the fourth variable region"
+#~ " (V4) of the 16S rRNA small "
+#~ "subunit ribosomal gene. DNA sequences "
+#~ "from this region of this gene can"
+#~ " be used like a microbial barcode,"
+#~ " providing researchers evidence of the "
+#~ "types of microbes that may be "
+#~ "present in your sample."
+#~ msgstr ""
+#~ "Para su muestra, realizamos una técnica"
+#~ " llamada secuenciación de amplicón en "
+#~ "la que examinamos fragmentos de ADN "
+#~ "correspondientes a un gen en particular."
+#~ " Específicamente, secuenciamos la cuarta "
+#~ "región variable (V4) del gen ribosomal"
+#~ " de la subunidad menor 16S rRNA. "
+#~ "Las secuencias de ADN de la región"
+#~ " de este gen se pueden usar "
+#~ "como un código de barras microbiano, "
+#~ "proporcionando a los investigadores evidencia"
+#~ " de los tipos de microbios que "
+#~ "pueden estar presentes en su muestra."
+
+#~ msgid ""
+#~ "There are many resources for microbiome"
+#~ " information available online. If you'd "
+#~ "like to learn more, we recommend "
+#~ "the American Society for"
+#~ " Microbiology , microBEnet , the Canadian Probiotics "
+#~ "Chart , and the American Gastroenterological Association ."
+#~ msgstr ""
+#~ "Hay muchos recursos de información sobre"
+#~ " el microbioma disponibles en línea. "
+#~ "Si desea obtener más información, le "
+#~ "recomendamos el American Society"
+#~ " for Microbiology , microBEnet , the Canadian Probiotics "
+#~ "Chart , and the American "
+#~ "Gastroenterological Association ."
+
+#~ msgid "Datasets used in your results report"
+#~ msgstr "Conjunto de datos usados en el reporte de sus resultados"
+
+#~ msgid ""
+#~ "The results shown in the Microbiome "
+#~ "Maps portion of the report relied "
+#~ "on data from many different publically"
+#~ " accessible microbiome datasets. These "
+#~ "different datasets, and links to them,"
+#~ " are listed below."
+#~ msgstr ""
+#~ "Los resultados demostrados en la parte"
+#~ " del reporte del mapa del microbioma"
+#~ " se basaron en información de varios"
+#~ " conjuntos de datos de microbioma con"
+#~ " acceso público. Estos diferentes conjuntos"
+#~ " de datos, y los enlaces a "
+#~ "ellos, se muestran a continuación."
+
+#~ msgid ""
+#~ "Microbiome maps turn the similarities "
+#~ "and differences among microbiomes into a"
+#~ " two-dimensional picture. Each dot is"
+#~ " a whole microbiome, and dots close"
+#~ " to yours are more similar "
+#~ "microbiomes."
+#~ msgstr ""
+#~ "Los mapas de microbiomas convierten las"
+#~ " similitudes y las diferencias entre "
+#~ "los microbiomas en una imagen "
+#~ "bidimensional. Cada punto es un "
+#~ "microbioma completo, y los puntos "
+#~ "cercanos al suyo son microbiomas más "
+#~ "similares."
+
+#~ msgid ""
+#~ "How "
+#~ "are these maps produced? "
+#~ msgstr ""
+#~ "¿Cómo "
+#~ "se producen estos mapas? "
+
+#~ msgid "My Nutrition"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Your registration code is not in "
+#~ "our system or has already been "
+#~ "used. Please try again."
+#~ msgstr ""
+
+#~ msgid "My FFQs"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Currently, \"My FFQs\" is unavailable in"
+#~ " your country or region. We apologize"
+#~ " for any inconvenience."
+#~ msgstr ""
+
+#~ msgid "Have an FFQ Code"
+#~ msgstr ""
+
+#~ msgid "Get an FFQ Code"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "This Food Frequency Questionnaire (FFQ) "
+#~ "will take approximately 30 minutes. By"
+#~ " completing it, you'll receive the "
+#~ "following report"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Personal diet and nutrition summary, "
+#~ "listing the highest contributing food "
+#~ "sources of nutrients you should try "
+#~ "to limit and your top food sources"
+#~ " with key nutrients that promote good"
+#~ " health."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "You must press the \"Finish\" button "
+#~ "on the final page of the FFQ "
+#~ "to register it as completed. You "
+#~ "can complete the FFQ in stages by"
+#~ " clicking \"Continue FFQ\" and selecting"
+#~ " the \"Resume\" button to return to"
+#~ " where you left off."
+#~ msgstr ""
+
+#~ msgid "Download Top Food Report"
+#~ msgstr ""
+
+#~ msgid "Continue FFQ"
+#~ msgstr ""
+
+#~ msgid "Registration Code"
+#~ msgstr "Código de Activación"
+
+#~ msgid "Register FFQ"
+#~ msgstr ""
+
+#~ msgid "Opt Out"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Sorry, we could not complete the "
+#~ "request. Please email microsetta@ucsd.edu with"
+#~ " the email address you signed up "
+#~ "with so we can remove you from "
+#~ "our list."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "We're sorry you are no longer "
+#~ "interested in participating in The Human"
+#~ " Diets & Microbiome Initiative (THDMI). "
+#~ "Please click the \"opt out\" button "
+#~ "below to confirm that you do not"
+#~ " wish to take part."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Thank you for letting us know. You"
+#~ " will no longer be part of this"
+#~ " research study."
+#~ msgstr ""
+
+#~ msgid "Optional Sample Surveys"
+#~ msgstr "Cuestionario de muestra opcional"
+
+#~ msgid "Your diet can provide researchers valuable information"
+#~ msgstr "Su dieta puede proporcionar valiosa información a los investigadores"
+
+#~ msgid "Would you like to take our additional survey, the"
+#~ msgstr "Le gustaría contestar un cuestionario adicional, el"
+
+#~ msgid "Food Frequency Questionnaire"
+#~ msgstr "Cuestionario de Frecuencia de Consumo de Alimentos"
+
+#~ msgid "FFQ"
+#~ msgstr "FFQ"
+
+#~ msgid ""
+#~ "By completing the questionnaire, you can"
+#~ " enhance information about your sample, "
+#~ "which will power more insightful "
+#~ "research!"
+#~ msgstr ""
+#~ "Al completar el cuestionario, usted "
+#~ "podrá enriquecer la información sobre su"
+#~ " muestra, lo que impulsará una "
+#~ "investigación más detallada!"
+
+#~ msgid "Note"
+#~ msgstr "Tenga en cuenta"
+
+#~ msgid ""
+#~ "If you took multiple samples within "
+#~ "a short time frame, you only need"
+#~ " to take the FFQ for one such"
+#~ " sample"
+#~ msgstr ""
+#~ "Si tomó varias muestras en un "
+#~ "período corto de tiempo, solo necesita"
+#~ " tomar el FFQ para una de esas"
+#~ " muestras"
+
+#~ msgid "Approx time: 30 minutes"
+#~ msgstr "Tiempo aproximado: 30 minutos"
+
+#~ msgid "Take FFQ"
+#~ msgstr "Tomar el FFQ"
+
+#~ msgid "My Reports"
+#~ msgstr ""
+
+#~ msgid "Do you really want to remove this sample from this source?"
+#~ msgstr "¿Seguro que desea eliminar esta muestra de esta fuente?"
+
+#~ msgid "Doing so will remove any collection info saved for this sample and will"
+#~ msgstr ""
+#~ "Al hacerlo, se eliminará cualquier "
+#~ "información guardada para esta muestra y"
+#~ " se"
+
+#~ msgid "unlink it from all surveys."
+#~ msgstr "desvinculará de todos los cuestionarios."
+
+#~ msgid "Required Format: MM/DD/YYYY"
+#~ msgstr "Formato requerido: MM/DD/AAAA"
+
+#~ msgid "Please select a date within the last 10 years."
+#~ msgstr "Seleccione una fecha dentro de los últimos 10 años."
+
+#~ msgid "Please select a date within the next 30 days."
+#~ msgstr "Seleccione una fecha dentro de los próximos 30 días."
+
+#~ msgid "Date of Sample Collection"
+#~ msgstr ""
+
+#~ msgid "Time of Sample Collection"
+#~ msgstr ""
+
+#~ msgid "Sample Type"
+#~ msgstr "Tipo de muestra"
+
+#~ msgid "Select a sample type"
+#~ msgstr "Seleccione un tipo de muestra"
+
+#~ msgid "Notes"
+#~ msgstr "Observaciones"
+
+#~ msgid "(Optional) Is there else about this sample that you would like to add?"
+#~ msgstr "(Opcional) ¿Hay algo más sobre esta muestra que quisiera añadir?"
+
+#~ msgid "Remove"
+#~ msgstr "Eliminar"
+
+#~ msgid ""
+#~ "Your sample has been received by "
+#~ "our lab and can no longer be "
+#~ "edited. Please contact us with"
+#~ " any questions."
+#~ msgstr ""
+
+#~ msgid "What is in your sample?"
+#~ msgstr "¿Qué hay en su muestra?"
+
+#~ msgid ""
+#~ "The table below shows the relative "
+#~ "abundances of all of the organisms "
+#~ "we observed in your sample. To "
+#~ "produce this, we took the DNA "
+#~ "sequences from your sample, and compared"
+#~ " them against publicly available annotated"
+#~ " reference databases. In some cases, "
+#~ "a sequence may uniquely match a "
+#~ "database record, in other cases a "
+#~ "sequence may match may different "
+#~ "records. To handle the uncertainty that"
+#~ " can arise, we rely on a well"
+#~ " used and publicly available microbiome "
+#~ "software package called QIIME 2 ."
+#~ " The exact approach taken is "
+#~ "highlighted in the main tutorial on "
+#~ "feature-classification "
+#~ msgstr ""
+#~ "La siguiente tabla muestra las "
+#~ "abundancias relativas de todos los "
+#~ "organismos que observamos en su muestra."
+#~ " Para producir esto, tomamos las "
+#~ "secuencias de ADN de su muestra y"
+#~ " las comparamos con bases de datos"
+#~ " de referencia disponibles públicamente. En"
+#~ " algunos casos, una secuencia puede "
+#~ "coincidir únicamente con un registro de"
+#~ " la base de datos, en otros "
+#~ "casos, una secuencia puede coincidir con"
+#~ " varios registros diferentes. Para manejar"
+#~ " la incertidumbre que puede surgir, "
+#~ "usamos un software para análisis de "
+#~ "microbiomas muy utilizado y disponible "
+#~ "al público llamado QIIME 2 . "
+#~ "El método exacto adoptado se muestra "
+#~ "en el tutorial principal sobre clasificación-"
+#~ "especies "
+
+#~ msgid "Relative Abundance"
+#~ msgstr "Abundancia Relativa"
+
+#~ msgid "Alpha Diversity"
+#~ msgstr "Diversidad Alfa"
+
+#~ msgid ""
+#~ "Here, we're providing a measure of "
+#~ "the diversity of your sample, and "
+#~ "how it compares to the diversities "
+#~ "of all of the same type of "
+#~ "samples in The Microsetta Initiative. "
+#~ "There are many ways to calculate "
+#~ "diversity. For instance, you could "
+#~ "compute a diversity value by counting"
+#~ " the number of unique organisms "
+#~ "observed (i.e., the sample \"richness\"). "
+#~ "Or, you might be interested in "
+#~ "weighting the calculation by the "
+#~ "relative abundance of the organisms "
+#~ "(i.e., the sample \"evenness\"). The "
+#~ "metric we're computing here is called"
+#~ " Faith's Phylogenetic Diversity (originally "
+#~ "defined here ). Faith's Phylogenetic "
+#~ "Diversity computes the \"richness\" of "
+#~ "your sample as the amount of "
+#~ "evolutionary breadth represented by your "
+#~ "sample. The way we compute alpha "
+#~ "diversity is also through QIIME 2 ,"
+#~ " and more information on it can "
+#~ "be found in the alpha and beta "
+#~ "diversity sections of the QIIME 2"
+#~ " tutorial"
+#~ msgstr ""
+#~ "Aquí, nosotros estamos proporcionamos una "
+#~ "medida de la diversidad de su "
+#~ "muestra, y cómo se compara con las"
+#~ " diversidades de todos los mismos "
+#~ "tipos de muestras en The Microsetta "
+#~ "Initiative. Hay muchas formas de "
+#~ "calcular la diversidad. Por ejemplo, "
+#~ "usted podría calcular un valor de "
+#~ "diversidad contando el número de "
+#~ "organismos únicos observados (es decir, "
+#~ "la “riqueza” de la muestra). O "
+#~ "bien, podría estar interesado en "
+#~ "ponderar el cálculo por la abundancia"
+#~ " relativa de los organismos (es "
+#~ "decir, la “uniformidad” de la muestra)."
+#~ " La métrica que estamos calculando "
+#~ "aquí se llama diversidad filogenética de"
+#~ " Faith (definida originalmente aquí ). La diversidad "
+#~ "filogenética de Faith calcula la "
+#~ "“riqueza” de su muestra como la "
+#~ "cantidad de amplitud evolutiva representada"
+#~ " por su muestra. La forma en "
+#~ "que calculamos la diversidad alfa "
+#~ "también es a través de QIIME 2 , "
+#~ "y más información al respecto se "
+#~ "puede encontrar en las secciones sobre la diversidad"
+#~ " alfa y beta en el tutoríal de"
+#~ " QIIME 2"
+
+#~ msgid "Beta Diversity"
+#~ msgstr "Diversidad Beta"
+
+#~ msgid ""
+#~ "Here we display how your sample "
+#~ "fits in among the other samples of"
+#~ " The Microsetta Initiative in terms "
+#~ "of shared microbes. There are many "
+#~ "ways to calculate beta diversity, "
+#~ "differing in how to weight the "
+#~ "distance between any two microbes. We"
+#~ " take evolutionary distance into account"
+#~ " with the metric displayed here, "
+#~ "known as Unweighted Unifrac. You can "
+#~ "find an overview of this metric here or better understand "
+#~ "its derivation here . This computation is "
+#~ "performed with QIIME 2 , and more "
+#~ "information on it can be found in"
+#~ " the alpha and beta diversity sections of the QIIME 2"
+#~ " tutorial"
+#~ msgstr ""
+#~ "Aquí nosotros mostramos cómo se sitúa"
+#~ " su muestra entre las otras muestras"
+#~ " de la Iniciativa Microsetta en "
+#~ "términos de microbios compartidos. Hay "
+#~ "muchas formas de calcular la diversidad"
+#~ " beta, difieriendo en cómo medir la"
+#~ " distancia entre dos microbios. Nosotros,"
+#~ " tomamos en cuenta la distancia "
+#~ "evolutiva con la métrica que se "
+#~ "muestra aquí, conocida como Unweighted "
+#~ "Unifrac. Usted puede encontrar la "
+#~ "descripción de esta métrica aquí o comprender mejor su"
+#~ " su origen aquí . Este cálculo se "
+#~ "realiza con QIIME 2 , y más información"
+#~ " al respecto la puede encontrar en"
+#~ " las secciones sobre la "
+#~ "diversidad alfa y beta en el "
+#~ "turorial QIIME 2"
+
+#~ msgid "Secondary Surveys"
+#~ msgstr "Cuestionarios Secundarios"
+
+#~ msgid "Survey Title"
+#~ msgstr "Título del Cuestionario"
+
+#~ msgid "Survey Description"
+#~ msgstr "Descripción del Cuestionario"
+
+#~ msgid "Date Signed"
+#~ msgstr ""
+
+#~ msgid "Microsetta"
+#~ msgstr "Microsetta"
+
+#~ msgid "You are deleting the profile for"
+#~ msgstr "Usted está eliminando la fuente"
+
+#~ msgid "and all surveys associated with it!"
+#~ msgstr "y todos los cuestionarios asociados a ella!"
+
+#~ msgid ""
+#~ "This operation cannot be undone. Are"
+#~ " you sure you want to delete "
+#~ "this source?"
+#~ msgstr ""
+#~ "Esta operación no se podrá revertir. "
+#~ "¿Está seguro de que desea eliminar "
+#~ "esta fuente?"
+
+#~ msgid "Administrator Toolbar"
+#~ msgstr "Barra de herramientas del administrador"
+
+#~ msgid "System Panel"
+#~ msgstr "Panel del Sistema"
+
+#~ msgid "Address Verification"
+#~ msgstr "Verificación de la Dirección"
+
+#~ msgid "FFQ Codes"
+#~ msgstr ""
+
+#~ msgid "Find Account"
+#~ msgstr "Encontrar Cuenta"
+
+#~ msgid "Barcode Search"
+#~ msgstr "Búsqueda de código de barras"
+
+#~ msgid "Log Out"
+#~ msgstr "Cerrar sesión"
+
+#~ msgid "My Profile"
+#~ msgstr ""
+
+#~ msgid "Delete This Profile"
+#~ msgstr ""
+
+#~ msgid "Are you sure you want to withdraw your consent and delete your profile?"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "I hereby withdraw consent for "
+#~ "researchers to use my personal data "
+#~ "and/or sample(s) for The Microsetta "
+#~ "Initiative (TMI)."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "I understand and acknowledge that any"
+#~ " personal data and/or sample(s) that "
+#~ "have already been provided to TMI "
+#~ "in accordance with the consent I "
+#~ "provided by signing the consent form(s),"
+#~ " will continue to be used for "
+#~ "the research. However, no new "
+#~ "information will be collected."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "I understand that my data will "
+#~ "only be shared after directly "
+#~ "identifying information has been removed "
+#~ "so that researchers cannot re-identify"
+#~ " my personal data and/or sample(s) "
+#~ "for future use."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "By clicking withdraw, you will be "
+#~ "ending your participation and terminating "
+#~ "your profile. If you would like to"
+#~ " be removed from being contacted for"
+#~ " general program updates or information "
+#~ "about future research studies, please "
+#~ "refer to account deletion or contact "
+#~ "us at microsetta@ucsd.edu."
+#~ msgstr ""
+
+#~ msgid "Maybe Later"
+#~ msgstr ""
+
+#~ msgid "Take This Survey Now"
+#~ msgstr ""
+
+#~ msgid "FAQs"
+#~ msgstr "Preguntas Frecuentes"
+
+#~ msgid ""
+#~ "The Microsetta Initiative aims to "
+#~ "generate quality data that can help "
+#~ "you better understand your microbiome, "
+#~ "help scientists design better studies, "
+#~ "and improve the world's understanding of"
+#~ " the human microbiome."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Answering our surveys can help us "
+#~ "do just that. To get started, "
+#~ "build out your profile by answering "
+#~ "the surveys below. We will alert "
+#~ "you when new surveys become available."
+#~ msgstr ""
+
+#~ msgid "Last modified"
+#~ msgstr ""
+
+#~ msgid "NEW"
+#~ msgstr ""
+
+#~ msgid "minutes"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Below are surveys hosted by partner "
+#~ "organizations. You will be directed to"
+#~ " an external site in a new "
+#~ "browser tab to complete the survey(s)"
+#~ " you select. Once you complete them,"
+#~ " you may close the tab and "
+#~ "return to this page."
+#~ msgstr ""
+
+#~ msgid "COMPLETED"
+#~ msgstr "Completado"
+
+#~ msgid "min"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "You will only have one opportunity "
+#~ "to take this survey. Please make "
+#~ "sure you have ample time before "
+#~ "you start."
+#~ msgstr ""
+
+#~ msgid "Sorry, you must be 18 or older to participate in this study."
+#~ msgstr ""
+
+#~ msgid "Sorry, this study is not open to residents of your country."
+#~ msgstr ""
+#~ "Lo sentimos, este estudio no está "
+#~ "abierto para los residentes de su "
+#~ "país."
+
+#~ msgid "Please select whether you are at least 18 years of age."
+#~ msgstr "Por favor seleccione si usted tiene al menos 18 años de edad."
+
+#~ msgid "Please enter your first name."
+#~ msgstr "Por favor ingrese su nombre."
+
+#~ msgid "Please enter your last name."
+#~ msgstr "Por favor ingrese su apellido."
+
+#~ msgid "Please enter a valid email address."
+#~ msgstr "Por favor ingrese su correo electrónico."
+
+#~ msgid "Please select your country."
+#~ msgstr "Por favor seleccione su país."
+
+#~ msgid ""
+#~ "Sorry, we were unable to verify "
+#~ "your address. Please check your "
+#~ "information and try again."
+#~ msgstr ""
+#~ "Lo sentimos, no pudimos verificar su "
+#~ "dirección. Por favor verifique su "
+#~ "información y vuelva a intentarlo."
+
+#~ msgid "Please agree to receiving communications from us."
+#~ msgstr "Por favor acepte recibir comunicaciones de nosotros."
+
+#~ msgid ""
+#~ "Sorry, due to widespread interest, the"
+#~ " sign-up list for this project "
+#~ "is full."
+#~ msgstr ""
+#~ "Lo sentimos, debido al gran interés "
+#~ "generalizado, la lista de inscripciones "
+#~ "para este proyecto está llena."
+
+#~ msgid ""
+#~ "Please visit our website to learn"
+#~ " about other opportunities to participate"
+#~ " in The Microsetta Initiative."
+#~ msgstr ""
+#~ "Por favor visite nuestro sitio web para"
+#~ " conocer otras oportunidades para "
+#~ "participar en The Microsetta Initiative."
+
+#~ msgid "Verifying your information, please wait just a moment."
+#~ msgstr "Verificando su información, por favor espere un momento."
+
+#~ msgid "Are you at least 18 years of age?"
+#~ msgstr "¿Tiene al menos 18 años de edad?"
+
+#~ msgid "Yes"
+#~ msgstr "Si"
+
+#~ msgid "No"
+#~ msgstr "No"
+
+#~ msgid ""
+#~ "Please note: Specimen collection kits "
+#~ "are associated with the email used "
+#~ "when registering. We recommend the "
+#~ "following:"
+#~ msgstr ""
+#~ "Tenga en cuenta: los kits de "
+#~ "recolección de muestras están asociados "
+#~ "al correo electrónico utilizado al "
+#~ "registrarse. Recomendamos lo siguiente:"
+
+#~ msgid "1. One email must be used per kit."
+#~ msgstr "1. Se debe usar un correo electrónico por kit."
+
+#~ msgid ""
+#~ "2. If you plan to complete the "
+#~ "form on behalf of another adult, "
+#~ "use that person's name and email "
+#~ "address."
+#~ msgstr ""
+#~ "2. Si planea completar el formulario "
+#~ "en nombre de otra persona adulta, "
+#~ "utilice el nombre y la dirección "
+#~ "de correo electrónico de esa persona."
+
+#~ msgid "3. If possible, continue to use the same email throughout the study."
+#~ msgstr ""
+#~ "3. Si es posible, continúe usando "
+#~ "el mismo correo electrónico durante todo"
+#~ " el estudio."
+
+#~ msgid ""
+#~ "Once you have received the kit, "
+#~ "please continue to use the same "
+#~ "email address used when creating your"
+#~ " online account."
+#~ msgstr ""
+#~ "Una vez que haya recibido el kit,"
+#~ " continúe usando la misma dirección "
+#~ "de correo electrónico usada al crear "
+#~ "su cuenta en línea."
+
+#~ msgid "Email Address"
+#~ msgstr "Correo electrónico"
+
+#~ msgid "Phone Number"
+#~ msgstr "Número de teléfono"
+
+#~ msgid "SELECT"
+#~ msgstr "SELECCIONAR"
+
+#~ msgid ""
+#~ "Please fill in the address you "
+#~ "would like your kit delivered to. "
+#~ "Example:"
+#~ msgstr ""
+#~ "Por favor, complete la dirección en "
+#~ "la que desea que se entregue su"
+#~ " kit. Ejemplo:"
+
+#~ msgid "9500 Gilman Dr. San Diego, CA 92093"
+#~ msgstr "9500 Gilman Dr. San Diego, CA 920932"
+
+#~ msgid "Residential"
+#~ msgstr "Domicilio de residencia"
+
+#~ msgid "Commercial"
+#~ msgstr "Domicilio comercial"
+
+#~ msgid ""
+#~ "By subscribing to this program, I "
+#~ "agree to receive communications via the"
+#~ " newsletter regarding the status of "
+#~ "the program, the steps I must "
+#~ "complete, tips and tricks for completing"
+#~ " my participation and surveys. I "
+#~ "agree and understand that I can "
+#~ "unsubscribe at any time using a "
+#~ "link in the newsletter and this "
+#~ "will not change my consent to "
+#~ "receive sample status updates directly "
+#~ "from the TMI database. "
+#~ msgstr ""
+#~ "Al suscribirme al programa THDMI, acepto"
+#~ " recibir comunicaciones a través del "
+#~ "boletín informativo sobre el estado del"
+#~ " programa, los pasos que debo "
+#~ "completar, consejos y trucos para "
+#~ "completar mi participación y encuestas. "
+#~ "Acepto y entiendo que puedo cancelar "
+#~ "mi suscripción en cualquier momento "
+#~ "usando un enlace en el boletín y"
+#~ " esto no cambiará mi consentimiento "
+#~ "para recibir actualizaciones de estado "
+#~ "de muestra directamente desde la base"
+#~ " de datos de TMI."
+
+#~ msgid "Previous"
+#~ msgstr "Anterior"
+
+#~ msgid ""
+#~ "Thank you for your interest in our"
+#~ " research. Your application has been "
+#~ "received. You will receive an email "
+#~ "shortly. Please check your junk or "
+#~ "spam folder if the email hasn’t "
+#~ "reached your inbox."
+#~ msgstr ""
+
+#~ msgid " selected"
+#~ msgstr " seleccionado"
+
+#~ msgid "The value is not an integer"
+#~ msgstr "El valor no es un número entero"
+
+#~ msgid "Invalid number"
+#~ msgstr "Número invalido"
+
+#~ msgid "questions"
+#~ msgstr "descripción"
+
+#~ msgid "You've finished building your profile!"
+#~ msgstr ""
+
+#~ msgid "Save & Go Home"
+#~ msgstr ""
+
+#~ msgid "Save & Next"
+#~ msgstr ""
+
+#~ msgid "Save & Previous"
+#~ msgstr "Anterior"
+
+#~ msgid "Save & Finish"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Sorry, it appears you are having "
+#~ "trouble verifying your address. Please "
+#~ "contact our support team at "
+#~ "microsetta@ucsd.edu and they can assist "
+#~ "with confirming your address."
+#~ msgstr ""
+#~ "Lo sentimos, parece que está teniendo"
+#~ " problemas para verificar su dirección. "
+#~ "Comuníquese con nuestro equipo de "
+#~ "soporte en microsetta@ucsd.edu ellos lo "
+#~ "ayudarán a confirmar su dirección."
+
+#~ msgid "Update Your Address"
+#~ msgstr "Actualice su Dirección"
+
+#~ msgid "Address Updated"
+#~ msgstr "Dirección Actualizada"
+
+#~ msgid ""
+#~ "Thank you for updating your address! "
+#~ "Your information has been saved and "
+#~ "you will receive an email notification"
+#~ " once your kit ships."
+#~ msgstr ""
+#~ "¡Gracias por actualizar su dirección! Su"
+#~ " información se ha guardado y "
+#~ "recibirá una notificación por correo "
+#~ "electrónico una vez que se envíe "
+#~ "su kit."
+
+#~ msgid "Email Update"
+#~ msgstr "Notificación por Correo Electrónico"
+
+#~ msgid ""
+#~ "It appears that the email we have"
+#~ " for your account is not the "
+#~ "same as the email you logged in"
+#~ " with. Would you like us to "
+#~ "update your email in our records?"
+#~ msgstr ""
+#~ "Parece que el correo electrónico que "
+#~ "tenemos de su cuenta no es el "
+#~ "mismo con el que inició sesión. "
+#~ "¿Quiere que actualicemos su correo "
+#~ "electrónico en nuestro registro?"
+
+#~ msgid "No, skip and continue"
+#~ msgstr "No, omitir y continuar"
+
+#~ msgid "Yes, update and continue"
+#~ msgstr "Sí, actualizar y continuar"
+
+#~ msgid "A fermented foods specific questionnaire"
+#~ msgstr "Cuestionario especifico sobre alimentos fermentados"
+
+#~ msgid "Questions on surfing behavior"
+#~ msgstr "Preguntas sobre comportamiento del surfista"
+
+#~ msgid "Questions about your interest in the microbiome"
+#~ msgstr "Preguntas sobre su interés en el microbioma"
+
+#~ msgid "Questions related to cooking oils and oxalate-rich foods"
+#~ msgstr ""
+#~ "Preguntas relacionadas con los aceites "
+#~ "de cocina y los alimentos ricos en"
+#~ " oxalatos"
+
diff --git a/microsetta_interface/translations/ja_JP/LC_MESSAGES/messages.po b/microsetta_interface/translations/ja_JP/LC_MESSAGES/messages.po
index 9aed3d72..613db472 100644
--- a/microsetta_interface/translations/ja_JP/LC_MESSAGES/messages.po
+++ b/microsetta_interface/translations/ja_JP/LC_MESSAGES/messages.po
@@ -1,1376 +1,1383 @@
# Japanese (Japan) translations for PROJECT.
-# Copyright (C) 2022 ORGANIZATION
+# Copyright (C) 2023 ORGANIZATION
# This file is distributed under the same license as the PROJECT project.
-# FIRST AUTHOR , 2022.
+# FIRST AUTHOR , 2023.
#
+#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2022-12-13 09:24-0800\n"
-"PO-Revision-Date: 2022-12-13 09:59-0800\n"
-"Last-Translator: \n"
-"Language-Team: ja_JP \n"
+"POT-Creation-Date: 2023-02-15 13:39-0800\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME \n"
"Language: ja_JP\n"
+"Language-Team: ja_JP \n"
+"Plural-Forms: nplurals=1; plural=0\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
"Generated-By: Babel 2.9.1\n"
-"X-Generator: Poedit 3.2\n"
-#: implementation.py:477
-msgid "Unable to validate the kit name; please reload the page."
-msgstr "採便キット名を検証できません。画面を再度読み込んで下さい。"
+#: implementation.py:582
+msgid "The provided Kit ID is not in our system or has already been used."
+msgstr ""
-#: implementation.py:496
-msgid "The provided kit id is not valid or has already been used; please re-check your entry."
-msgstr "指定された採便キット ID が無効であるか、既に使用されています。入力内容を再度確認してください。"
+#: implementation.py:1160
+msgid "SKIP"
+msgstr ""
-#: implementation.py:1233 model_i18n.py:58
+#: implementation.py:1776 model_i18n.py:58
msgid "Blood (skin prick)"
-msgstr "血液(皮膚プリック)"
+msgstr ""
-#: implementation.py:1234 model_i18n.py:59
+#: implementation.py:1777 model_i18n.py:59
msgid "Saliva"
-msgstr "唾液"
+msgstr ""
-#: implementation.py:1235 model_i18n.py:71
+#: implementation.py:1778 model_i18n.py:71
msgid "Stool"
-msgstr "便"
+msgstr ""
-#: implementation.py:1236 model_i18n.py:66
+#: implementation.py:1779 model_i18n.py:66
msgid "Mouth"
-msgstr "口"
+msgstr ""
-#: implementation.py:1237 model_i18n.py:67
+#: implementation.py:1780 model_i18n.py:67
msgid "Nares"
-msgstr "鼻孔"
+msgstr ""
-#: implementation.py:1238 model_i18n.py:68
+#: implementation.py:1781 model_i18n.py:68
msgid "Nasal mucus"
-msgstr "鼻粘液"
+msgstr ""
-#: implementation.py:1239 model_i18n.py:69
+#: implementation.py:1782 model_i18n.py:69
msgid "Right hand"
-msgstr "右手"
+msgstr ""
-#: implementation.py:1240 model_i18n.py:64
+#: implementation.py:1783 model_i18n.py:64
msgid "Left hand"
-msgstr "左手"
+msgstr ""
-#: implementation.py:1241 model_i18n.py:61
+#: implementation.py:1784 model_i18n.py:61
msgid "Forehead"
-msgstr "額"
+msgstr ""
-#: implementation.py:1242 model_i18n.py:73
+#: implementation.py:1785 model_i18n.py:73
msgid "Torso"
-msgstr "上半身"
+msgstr ""
-#: implementation.py:1243 model_i18n.py:70
+#: implementation.py:1786 model_i18n.py:70
msgid "Right leg"
-msgstr "右足"
+msgstr ""
-#: implementation.py:1244 model_i18n.py:65
+#: implementation.py:1787 model_i18n.py:65
msgid "Left leg"
-msgstr "左足"
+msgstr ""
-#: implementation.py:1245 model_i18n.py:74
+#: implementation.py:1788 model_i18n.py:74
msgid "Vaginal mucus"
-msgstr "膣粘液"
+msgstr ""
-#: implementation.py:1246 model_i18n.py:72
+#: implementation.py:1789 model_i18n.py:72
msgid "Tears"
-msgstr "涙"
+msgstr ""
-#: implementation.py:1247 model_i18n.py:60
+#: implementation.py:1790 model_i18n.py:60
msgid "Ear wax"
-msgstr "耳垢"
+msgstr ""
-#: implementation.py:1248 model_i18n.py:63
+#: implementation.py:1791 model_i18n.py:63
msgid "Hair"
-msgstr "髪"
+msgstr ""
-#: implementation.py:1249 model_i18n.py:62
+#: implementation.py:1792 model_i18n.py:62
msgid "Fur"
-msgstr "毛皮"
+msgstr ""
-#: implementation.py:1560
+#: implementation.py:2081
msgid "Unable to validate Activation Code at this time"
-msgstr "認証コードを確認することができません"
+msgstr ""
-#: implementation.py:1850
+#: implementation.py:2399
msgid "Address 1, Postal Code, and Country are required"
-msgstr "住所1、郵便番号、国名が必要です"
+msgstr ""
-#: implementation.py:2211 implementation.py:2323
+#: implementation.py:2811 implementation.py:2923
msgid "Sorry, there was a problem saving your information."
-msgstr "大変申し訳ありません。情報を保存する際に問題が発生しました。"
+msgstr ""
#: model_i18n.py:23
msgid "sample_site"
-msgstr "便サンプル_サイト"
+msgstr ""
#: model_i18n.py:33
msgid "source_type"
-msgstr "由来_種類"
+msgstr ""
#: model_i18n.py:40
msgid "survey_template_title"
-msgstr "調査_書式_タイトル"
+msgstr ""
#: model_i18n.py:42
msgid "description"
-msgstr "説明"
+msgstr ""
#: model_i18n.py:79
msgid "human"
-msgstr "人間"
+msgstr ""
-#: model_i18n.py:80 templates/account_overview.jinja2:139
+#: model_i18n.py:80
msgid "animal"
-msgstr "動物"
+msgstr ""
#: model_i18n.py:81
msgid "environmental"
-msgstr "環境"
+msgstr ""
#: model_i18n.py:86
msgid "Primary Questionnaire"
-msgstr "一次調査"
+msgstr ""
#: model_i18n.py:87
msgid "Pet Information"
-msgstr "ペット情報"
+msgstr ""
#: model_i18n.py:88
msgid "Fermented Foods Questionnaire"
-msgstr "発酵食品調査票"
+msgstr ""
#: model_i18n.py:89
msgid "Surfer Questionnaire"
-msgstr "サーファー調査票"
+msgstr ""
#: model_i18n.py:90
msgid "Personal Microbiome Information"
-msgstr "本人の腸内細菌情報"
+msgstr ""
#: model_i18n.py:91
msgid "COVID-19 Questionnaire"
-msgstr "新型コロナウイルス感染症調査票"
+msgstr ""
#: model_i18n.py:92
msgid "Vioscreen Food Frequency Questionnaire"
-msgstr "ビオスクリーン食物摂取頻度調査票"
+msgstr ""
#: model_i18n.py:93
msgid "Polyphenol Food Frequency Questionnaire"
-msgstr "ポリフェノール食物摂取頻度調査票"
+msgstr ""
#: model_i18n.py:94
msgid "Cooking Oils and Oxalate-rich Foods"
-msgstr "調理用油とシュウ酸が豊富な食品"
+msgstr ""
#: model_i18n.py:98
-msgid "A fermented foods specific questionnaire"
-msgstr "発酵食品に関する質問"
-
-#: model_i18n.py:99
-msgid "Questions on surfing behavior"
-msgstr "サーフィン行動に関する質問"
-
-#: model_i18n.py:100
-msgid "Questions about your interest in the microbiome"
-msgstr "腸内細菌に関する質問"
-
-#: model_i18n.py:101
-msgid "Questions related to cooking oils and oxalate-rich foods"
-msgstr "調理用油とシュウ酸が豊富な食品に関する質問"
-
-#: model_i18n.py:102
msgid ""
-"Polyphenols are chemical compounds naturally found in plants that have been shown to provide many beneficial properties. They are antioxidants, fighting aging and "
-"protecting your heart, but they may also provide benefits by interacting with the microbes in your gut. This survey will allow us to better quantify your consumption "
-"of polyphenols through your diet."
+"Polyphenols are chemical compounds naturally found in plants that have "
+"been shown to provide many beneficial properties. They are antioxidants, "
+"fighting aging and protecting your heart, but they may also provide "
+"benefits by interacting with the microbes in your gut. This survey will "
+"allow us to better quantify your consumption of polyphenols through your "
+"diet."
msgstr ""
-"ポリフェノールは、植物に自然と由来する化学化合物で、私たちの体に多くの有益な効果をもたらすことが分かっています。抗酸化作用があるため老化防止になり、心臓機能を保護する"
-"他、腸内の微生物と相互作用することによってあらゆる効果を発揮する可能性があります。この調査により、食事によるポリフェノールの摂取量を把握することができます。"
-#: model_i18n.py:108
+#: model_i18n.py:104
msgid ""
-"Only for participants in Spain: The Food Frequency Questionnaire (FFQ) will ask you about your usual frequency of consumption of a list of foods "
-"and beverages. The questionnaire consists of 28 questions, and will allow us to find out what your usual diet is like."
+"Only for participants in Spain: The Food Frequency "
+"Questionnaire (FFQ) will ask you about your usual frequency of "
+"consumption of a list of foods and beverages. The questionnaire consists "
+"of 28 questions, and will allow us to find out what your usual diet is "
+"like."
msgstr ""
-"スペインの参加者のみ 食品摂取頻度調査票(FFQ)は、あなたの普段の食品と飲料の摂取頻度についてお聞きするものです。このアンケートは、28項目の質問から"
-"構成されており、あなたの普段の食生活がどのようなものかを知ることができます。"
-#: model_i18n.py:115
+#: model_i18n.py:111
msgid "en_us"
-msgstr "ja_jp"
+msgstr ""
-#: templates/account_details.jinja2:2 templates/account_details.jinja2:127 templates/account_details.jinja2:131 templates/account_overview.jinja2:47
-#: templates/sitebase.jinja2:80 templates/sitebase.jinja2:82
+#: templates/account_details.jinja2:2 templates/account_details.jinja2:110
+#: templates/account_details.jinja2:115 templates/sitebase.jinja2:84
+#: templates/sitebase.jinja2:86
msgid "Account Details"
-msgstr "アカウント詳細"
+msgstr ""
+
+#: templates/account_details.jinja2:41 templates/account_details.jinja2:379
+msgid "Please agree to the Privacy Statement and Terms and Conditions"
+msgstr ""
-#: templates/account_details.jinja2:74 templates/admin_address_verification.jinja2:41 templates/admin_address_verification.jinja2:93
-#: templates/admin_interested_user_edit.jinja2:138 templates/submit_interest.jinja2:570 templates/update_address.jinja2:221
+#: templates/account_details.jinja2:60
+#: templates/admin_address_verification.jinja2:41
+#: templates/admin_address_verification.jinja2:93
+#: templates/admin_interested_user_edit.jinja2:138
+#: templates/submit_interest.jinja2:570 templates/update_address.jinja2:221
msgid "City"
-msgstr "都市"
+msgstr ""
-#: templates/account_details.jinja2:75 templates/admin_address_verification.jinja2:45 templates/admin_address_verification.jinja2:97
-#: templates/admin_interested_user_edit.jinja2:142 templates/submit_interest.jinja2:574 templates/update_address.jinja2:225
+#: templates/account_details.jinja2:61
+#: templates/admin_address_verification.jinja2:45
+#: templates/admin_address_verification.jinja2:97
+#: templates/admin_interested_user_edit.jinja2:142
+#: templates/submit_interest.jinja2:574 templates/update_address.jinja2:225
msgid "State"
-msgstr "都道府県"
+msgstr ""
-#: templates/account_details.jinja2:76
+#: templates/account_details.jinja2:62
msgid "Zip Code"
-msgstr "郵便番号"
+msgstr ""
-#: templates/account_details.jinja2:79
+#: templates/account_details.jinja2:65
msgid "City/Town"
-msgstr "都市/町"
+msgstr ""
-#: templates/account_details.jinja2:80
+#: templates/account_details.jinja2:66
msgid "County/State"
-msgstr "国/都道府県"
+msgstr ""
-#: templates/account_details.jinja2:81
+#: templates/account_details.jinja2:67
msgid "Postcode"
-msgstr "郵便番号"
+msgstr ""
-#: templates/account_details.jinja2:125 templates/account_overview.jinja2:2 templates/account_overview.jinja2:44 templates/new_results_page.jinja2:1318
-#: templates/sample.jinja2:162 templates/sample_results.jinja2:127 templates/source.jinja2:146
-msgid "Account"
-msgstr "アカウント"
+#: templates/account_details.jinja2:109 templates/account_overview.jinja2:44
+#: templates/consents.jinja2:22 templates/kits.jinja2:168
+#: templates/new_participant.jinja2:191 templates/nutrition.jinja2:87
+#: templates/reports.jinja2:55 templates/sample.jinja2:182
+#: templates/source.jinja2:45 templates/survey.jinja2:164
+msgid "Dashboard"
+msgstr ""
-#: templates/account_details.jinja2:135 templates/admin_activation_codes.jinja2:7 templates/admin_activation_codes.jinja2:21 templates/admin_activation_codes.jinja2:40
-#: templates/admin_home.jinja2:11 templates/admin_interested_user_edit.jinja2:114 templates/admin_interested_users.jinja2:21 templates/sitebase.jinja2:128
+#: templates/account_details.jinja2:119
+#: templates/admin_activation_codes.jinja2:7
+#: templates/admin_activation_codes.jinja2:21
+#: templates/admin_activation_codes.jinja2:40 templates/admin_home.jinja2:11
+#: templates/admin_interested_user_edit.jinja2:114
+#: templates/admin_interested_users.jinja2:21 templates/sitebase.jinja2:226
msgid "Email"
-msgstr "Eメール"
+msgstr ""
-#: templates/account_details.jinja2:139
+#: templates/account_details.jinja2:123
msgid "Prefer to use a different email account? You can change it "
-msgstr "違うメールアカウントを使いますか?変更できます "
+msgstr ""
-#: templates/account_details.jinja2:141
+#: templates/account_details.jinja2:125
msgid "here"
-msgstr "ここで"
+msgstr ""
-#: templates/account_details.jinja2:147 templates/admin_interested_user_edit.jinja2:106 templates/admin_interested_users.jinja2:15 templates/submit_interest.jinja2:340
+#: templates/account_details.jinja2:131
+#: templates/admin_interested_user_edit.jinja2:106
+#: templates/admin_interested_users.jinja2:15
+#: templates/submit_interest.jinja2:340
msgid "First Name"
-msgstr "氏名(名)"
+msgstr ""
-#: templates/account_details.jinja2:151 templates/admin_interested_user_edit.jinja2:110 templates/admin_interested_users.jinja2:18 templates/submit_interest.jinja2:344
+#: templates/account_details.jinja2:135
+#: templates/admin_interested_user_edit.jinja2:110
+#: templates/admin_interested_users.jinja2:18
+#: templates/submit_interest.jinja2:344
msgid "Last Name"
-msgstr "氏名(姓)"
+msgstr ""
-#: templates/account_details.jinja2:155 templates/admin_address_verification.jinja2:53 templates/admin_address_verification.jinja2:105
-#: templates/admin_interested_user_edit.jinja2:164 templates/submit_interest.jinja2:356 templates/update_address.jinja2:246
+#: templates/account_details.jinja2:139
+#: templates/admin_address_verification.jinja2:53
+#: templates/admin_address_verification.jinja2:105
+#: templates/admin_interested_user_edit.jinja2:164
+#: templates/submit_interest.jinja2:356 templates/update_address.jinja2:246
msgid "Country"
-msgstr "国"
+msgstr ""
-#: templates/account_details.jinja2:158 templates/admin_campaign_edit.jinja2:96 templates/submit_interest.jinja2:359
+#: templates/account_details.jinja2:142 templates/admin_campaign_edit.jinja2:96
+#: templates/submit_interest.jinja2:359
msgid "United States"
-msgstr "アメリカ合衆国"
+msgstr ""
-#: templates/account_details.jinja2:159 templates/admin_campaign_edit.jinja2:97 templates/submit_interest.jinja2:360
+#: templates/account_details.jinja2:143 templates/admin_campaign_edit.jinja2:97
+#: templates/submit_interest.jinja2:360
msgid "United Kingdom"
-msgstr "イギリス"
+msgstr ""
-#: templates/account_details.jinja2:160 templates/admin_campaign_edit.jinja2:98 templates/submit_interest.jinja2:361
+#: templates/account_details.jinja2:144 templates/admin_campaign_edit.jinja2:98
+#: templates/submit_interest.jinja2:361
msgid "Mexico"
-msgstr "メキシコ"
+msgstr ""
-#: templates/account_details.jinja2:161 templates/admin_campaign_edit.jinja2:99 templates/submit_interest.jinja2:362
+#: templates/account_details.jinja2:145 templates/admin_campaign_edit.jinja2:99
+#: templates/submit_interest.jinja2:362
msgid "Spain"
-msgstr "スペイン"
+msgstr ""
-#: templates/account_details.jinja2:162 templates/submit_interest.jinja2:363
+#: templates/account_details.jinja2:146 templates/submit_interest.jinja2:363
msgid "Afghanistan"
-msgstr "アフガニスタン"
+msgstr ""
-#: templates/account_details.jinja2:163 templates/submit_interest.jinja2:364
+#: templates/account_details.jinja2:147 templates/submit_interest.jinja2:364
msgid "Albania"
-msgstr "アルバニア"
+msgstr ""
-#: templates/account_details.jinja2:164 templates/submit_interest.jinja2:365
+#: templates/account_details.jinja2:148 templates/submit_interest.jinja2:365
msgid "Algeria"
-msgstr "アルジェリア"
+msgstr ""
-#: templates/account_details.jinja2:165 templates/submit_interest.jinja2:366
+#: templates/account_details.jinja2:149 templates/submit_interest.jinja2:366
msgid "Andorra"
-msgstr "アンドラ"
+msgstr ""
-#: templates/account_details.jinja2:166 templates/submit_interest.jinja2:367
+#: templates/account_details.jinja2:150 templates/submit_interest.jinja2:367
msgid "Angola"
-msgstr "アンゴラ"
+msgstr ""
-#: templates/account_details.jinja2:167 templates/submit_interest.jinja2:368
+#: templates/account_details.jinja2:151 templates/submit_interest.jinja2:368
msgid "Antarctica"
-msgstr "南極"
+msgstr ""
-#: templates/account_details.jinja2:168 templates/submit_interest.jinja2:369
+#: templates/account_details.jinja2:152 templates/submit_interest.jinja2:369
msgid "Antigua and Barbuda"
-msgstr "アンティグア・バーブーダ"
+msgstr ""
-#: templates/account_details.jinja2:169 templates/submit_interest.jinja2:370
+#: templates/account_details.jinja2:153 templates/submit_interest.jinja2:370
msgid "Argentina"
-msgstr "アルゼンチン"
+msgstr ""
-#: templates/account_details.jinja2:170 templates/submit_interest.jinja2:371
+#: templates/account_details.jinja2:154 templates/submit_interest.jinja2:371
msgid "Armenia"
-msgstr "アルメニア"
+msgstr ""
-#: templates/account_details.jinja2:171 templates/submit_interest.jinja2:372
+#: templates/account_details.jinja2:155 templates/submit_interest.jinja2:372
msgid "Australia"
-msgstr "オーストラリア"
+msgstr ""
-#: templates/account_details.jinja2:172 templates/submit_interest.jinja2:373
+#: templates/account_details.jinja2:156 templates/submit_interest.jinja2:373
msgid "Austria"
-msgstr "オーストリア"
+msgstr ""
-#: templates/account_details.jinja2:173 templates/submit_interest.jinja2:374
+#: templates/account_details.jinja2:157 templates/submit_interest.jinja2:374
msgid "Azerbaijan"
-msgstr "アゼルバイジャン"
+msgstr ""
-#: templates/account_details.jinja2:174 templates/submit_interest.jinja2:375
+#: templates/account_details.jinja2:158 templates/submit_interest.jinja2:375
msgid "Bahamas"
-msgstr "バハマ"
+msgstr ""
-#: templates/account_details.jinja2:175 templates/submit_interest.jinja2:376
+#: templates/account_details.jinja2:159 templates/submit_interest.jinja2:376
msgid "Bahrain"
-msgstr "バーレーン"
+msgstr ""
-#: templates/account_details.jinja2:176 templates/submit_interest.jinja2:377
+#: templates/account_details.jinja2:160 templates/submit_interest.jinja2:377
msgid "Bangladesh"
-msgstr "バングラデシュ"
+msgstr ""
-#: templates/account_details.jinja2:177 templates/submit_interest.jinja2:378
+#: templates/account_details.jinja2:161 templates/submit_interest.jinja2:378
msgid "Barbados"
-msgstr "バルバドス"
+msgstr ""
-#: templates/account_details.jinja2:178 templates/submit_interest.jinja2:379
+#: templates/account_details.jinja2:162 templates/submit_interest.jinja2:379
msgid "Belarus"
-msgstr "ベラルーシ"
+msgstr ""
-#: templates/account_details.jinja2:179 templates/submit_interest.jinja2:380
+#: templates/account_details.jinja2:163 templates/submit_interest.jinja2:380
msgid "Belgium"
-msgstr "ベルギー"
+msgstr ""
-#: templates/account_details.jinja2:180 templates/submit_interest.jinja2:381
+#: templates/account_details.jinja2:164 templates/submit_interest.jinja2:381
msgid "Belize"
-msgstr "ベリーズ"
+msgstr ""
-#: templates/account_details.jinja2:181 templates/submit_interest.jinja2:382
+#: templates/account_details.jinja2:165 templates/submit_interest.jinja2:382
msgid "Benin"
-msgstr "ベナン"
+msgstr ""
-#: templates/account_details.jinja2:182 templates/submit_interest.jinja2:383
+#: templates/account_details.jinja2:166 templates/submit_interest.jinja2:383
msgid "Bermuda"
-msgstr "バミューダ諸島"
+msgstr ""
-#: templates/account_details.jinja2:183 templates/submit_interest.jinja2:384
+#: templates/account_details.jinja2:167 templates/submit_interest.jinja2:384
msgid "Bhutan"
-msgstr "ブータン"
+msgstr ""
-#: templates/account_details.jinja2:184 templates/submit_interest.jinja2:385
+#: templates/account_details.jinja2:168 templates/submit_interest.jinja2:385
msgid "Bolivia"
-msgstr "ボリビア"
+msgstr ""
-#: templates/account_details.jinja2:185 templates/submit_interest.jinja2:386
+#: templates/account_details.jinja2:169 templates/submit_interest.jinja2:386
msgid "Bosnia and Herzegovina"
-msgstr "ボスニア・ヘルツェゴビナ"
+msgstr ""
-#: templates/account_details.jinja2:186 templates/submit_interest.jinja2:387
+#: templates/account_details.jinja2:170 templates/submit_interest.jinja2:387
msgid "Botswana"
-msgstr "ボツワナ共和国"
+msgstr ""
-#: templates/account_details.jinja2:187 templates/submit_interest.jinja2:388
+#: templates/account_details.jinja2:171 templates/submit_interest.jinja2:388
msgid "Brazil"
-msgstr "ブラジル"
+msgstr ""
-#: templates/account_details.jinja2:188 templates/submit_interest.jinja2:389
+#: templates/account_details.jinja2:172 templates/submit_interest.jinja2:389
msgid "Brunei"
-msgstr "ブルネイ"
+msgstr ""
-#: templates/account_details.jinja2:189 templates/submit_interest.jinja2:390
+#: templates/account_details.jinja2:173 templates/submit_interest.jinja2:390
msgid "Bulgaria"
-msgstr "ブルガリア"
+msgstr ""
-#: templates/account_details.jinja2:190 templates/submit_interest.jinja2:391
+#: templates/account_details.jinja2:174 templates/submit_interest.jinja2:391
msgid "Burkina Faso"
-msgstr "ブルキナファソ"
+msgstr ""
-#: templates/account_details.jinja2:191 templates/submit_interest.jinja2:392
+#: templates/account_details.jinja2:175 templates/submit_interest.jinja2:392
msgid "Burma"
-msgstr "ブルマ"
+msgstr ""
-#: templates/account_details.jinja2:192 templates/submit_interest.jinja2:393
+#: templates/account_details.jinja2:176 templates/submit_interest.jinja2:393
msgid "Burundi"
-msgstr "ブルンジ"
+msgstr ""
-#: templates/account_details.jinja2:193 templates/submit_interest.jinja2:394
+#: templates/account_details.jinja2:177 templates/submit_interest.jinja2:394
msgid "Cambodia"
-msgstr "カンボジア"
+msgstr ""
-#: templates/account_details.jinja2:194 templates/submit_interest.jinja2:395
+#: templates/account_details.jinja2:178 templates/submit_interest.jinja2:395
msgid "Cameroon"
-msgstr "カメルーン"
+msgstr ""
-#: templates/account_details.jinja2:195 templates/submit_interest.jinja2:396
+#: templates/account_details.jinja2:179 templates/submit_interest.jinja2:396
msgid "Canada"
-msgstr "カナダ"
+msgstr ""
-#: templates/account_details.jinja2:196 templates/submit_interest.jinja2:397
+#: templates/account_details.jinja2:180 templates/submit_interest.jinja2:397
msgid "Cape Verde"
-msgstr "カーボベルデ"
+msgstr ""
-#: templates/account_details.jinja2:197 templates/submit_interest.jinja2:398
+#: templates/account_details.jinja2:181 templates/submit_interest.jinja2:398
msgid "Central African Republic"
-msgstr "中央アフリカ共和国"
+msgstr ""
-#: templates/account_details.jinja2:198 templates/submit_interest.jinja2:399
+#: templates/account_details.jinja2:182 templates/submit_interest.jinja2:399
msgid "Chad"
-msgstr "チャド"
+msgstr ""
-#: templates/account_details.jinja2:199 templates/submit_interest.jinja2:400
+#: templates/account_details.jinja2:183 templates/submit_interest.jinja2:400
msgid "Chile"
-msgstr "チリ"
+msgstr ""
-#: templates/account_details.jinja2:200 templates/submit_interest.jinja2:401
+#: templates/account_details.jinja2:184 templates/submit_interest.jinja2:401
msgid "China"
-msgstr "中華人民共和国"
+msgstr ""
-#: templates/account_details.jinja2:201 templates/submit_interest.jinja2:402
+#: templates/account_details.jinja2:185 templates/submit_interest.jinja2:402
msgid "Colombia"
-msgstr "コロンビア"
+msgstr ""
-#: templates/account_details.jinja2:202 templates/submit_interest.jinja2:403
+#: templates/account_details.jinja2:186 templates/submit_interest.jinja2:403
msgid "Comoros"
-msgstr "コモロ"
+msgstr ""
-#: templates/account_details.jinja2:203 templates/submit_interest.jinja2:404
+#: templates/account_details.jinja2:187 templates/submit_interest.jinja2:404
msgid "Congo, Democratic Republic"
-msgstr "コンゴ民主共和国"
+msgstr ""
-#: templates/account_details.jinja2:204 templates/submit_interest.jinja2:405
+#: templates/account_details.jinja2:188 templates/submit_interest.jinja2:405
msgid "Congo, Republic of the"
-msgstr "コンゴ共和国"
+msgstr ""
-#: templates/account_details.jinja2:205 templates/submit_interest.jinja2:406
+#: templates/account_details.jinja2:189 templates/submit_interest.jinja2:406
msgid "Costa Rica"
-msgstr "コスタリカ"
+msgstr ""
-#: templates/account_details.jinja2:206 templates/submit_interest.jinja2:407
+#: templates/account_details.jinja2:190 templates/submit_interest.jinja2:407
msgid "Cote d'Ivoire"
-msgstr "コートジボワール"
+msgstr ""
-#: templates/account_details.jinja2:207 templates/submit_interest.jinja2:408
+#: templates/account_details.jinja2:191 templates/submit_interest.jinja2:408
msgid "Croatia"
-msgstr "クロアチア"
+msgstr ""
-#: templates/account_details.jinja2:208 templates/submit_interest.jinja2:409
+#: templates/account_details.jinja2:192 templates/submit_interest.jinja2:409
msgid "Cuba"
-msgstr "キューバ"
+msgstr ""
-#: templates/account_details.jinja2:209 templates/submit_interest.jinja2:410
+#: templates/account_details.jinja2:193 templates/submit_interest.jinja2:410
msgid "Cyprus"
-msgstr "キプロス"
+msgstr ""
-#: templates/account_details.jinja2:210 templates/submit_interest.jinja2:411
+#: templates/account_details.jinja2:194 templates/submit_interest.jinja2:411
msgid "Czech Republic"
-msgstr "チェコ共和国"
+msgstr ""
-#: templates/account_details.jinja2:211 templates/submit_interest.jinja2:412
+#: templates/account_details.jinja2:195 templates/submit_interest.jinja2:412
msgid "Denmark"
-msgstr "デンマーク"
+msgstr ""
-#: templates/account_details.jinja2:212 templates/submit_interest.jinja2:413
+#: templates/account_details.jinja2:196 templates/submit_interest.jinja2:413
msgid "Djibouti"
-msgstr "ジブチ"
+msgstr ""
-#: templates/account_details.jinja2:213 templates/submit_interest.jinja2:414
+#: templates/account_details.jinja2:197 templates/submit_interest.jinja2:414
msgid "Dominica"
-msgstr "ドミニカ"
+msgstr ""
-#: templates/account_details.jinja2:214 templates/submit_interest.jinja2:415
+#: templates/account_details.jinja2:198 templates/submit_interest.jinja2:415
msgid "Dominican Republic"
-msgstr "ドミニカ共和国"
+msgstr ""
-#: templates/account_details.jinja2:215 templates/submit_interest.jinja2:416
+#: templates/account_details.jinja2:199 templates/submit_interest.jinja2:416
msgid "East Timor"
-msgstr "東ティモール"
+msgstr ""
-#: templates/account_details.jinja2:216 templates/submit_interest.jinja2:417
+#: templates/account_details.jinja2:200 templates/submit_interest.jinja2:417
msgid "Ecuador"
-msgstr "エクアドル"
+msgstr ""
-#: templates/account_details.jinja2:217 templates/submit_interest.jinja2:418
+#: templates/account_details.jinja2:201 templates/submit_interest.jinja2:418
msgid "Egypt"
-msgstr "エジプト"
+msgstr ""
-#: templates/account_details.jinja2:218 templates/submit_interest.jinja2:419
+#: templates/account_details.jinja2:202 templates/submit_interest.jinja2:419
msgid "El Salvador"
-msgstr "エルサルバドル"
+msgstr ""
-#: templates/account_details.jinja2:219 templates/submit_interest.jinja2:420
+#: templates/account_details.jinja2:203 templates/submit_interest.jinja2:420
msgid "Equatorial Guinea"
-msgstr "赤道ギニア"
+msgstr ""
-#: templates/account_details.jinja2:220 templates/submit_interest.jinja2:421
+#: templates/account_details.jinja2:204 templates/submit_interest.jinja2:421
msgid "Eritrea"
-msgstr "エリトリア"
+msgstr ""
-#: templates/account_details.jinja2:221 templates/submit_interest.jinja2:422
+#: templates/account_details.jinja2:205 templates/submit_interest.jinja2:422
msgid "Estonia"
-msgstr "エストニア"
+msgstr ""
-#: templates/account_details.jinja2:222 templates/submit_interest.jinja2:423
+#: templates/account_details.jinja2:206 templates/submit_interest.jinja2:423
msgid "Ethiopia"
-msgstr "エチオピア"
+msgstr ""
-#: templates/account_details.jinja2:223 templates/submit_interest.jinja2:424
+#: templates/account_details.jinja2:207 templates/submit_interest.jinja2:424
msgid "Fiji"
-msgstr "フィジー"
+msgstr ""
-#: templates/account_details.jinja2:224 templates/submit_interest.jinja2:425
+#: templates/account_details.jinja2:208 templates/submit_interest.jinja2:425
msgid "Finland"
-msgstr "フィンランド"
+msgstr ""
-#: templates/account_details.jinja2:225 templates/submit_interest.jinja2:426
+#: templates/account_details.jinja2:209 templates/submit_interest.jinja2:426
msgid "France"
-msgstr "フランス"
+msgstr ""
-#: templates/account_details.jinja2:226 templates/submit_interest.jinja2:427
+#: templates/account_details.jinja2:210 templates/submit_interest.jinja2:427
msgid "Gabon"
-msgstr "ガボン"
+msgstr ""
-#: templates/account_details.jinja2:227 templates/submit_interest.jinja2:428
+#: templates/account_details.jinja2:211 templates/submit_interest.jinja2:428
msgid "Gambia"
-msgstr "ガンビア"
+msgstr ""
-#: templates/account_details.jinja2:228 templates/submit_interest.jinja2:429
+#: templates/account_details.jinja2:212 templates/submit_interest.jinja2:429
msgid "Georgia"
-msgstr "ジョージア"
+msgstr ""
-#: templates/account_details.jinja2:229 templates/submit_interest.jinja2:430
+#: templates/account_details.jinja2:213 templates/submit_interest.jinja2:430
msgid "Germany"
-msgstr "ドイツ"
+msgstr ""
-#: templates/account_details.jinja2:230 templates/submit_interest.jinja2:431
+#: templates/account_details.jinja2:214 templates/submit_interest.jinja2:431
msgid "Ghana"
-msgstr "ガーナ"
+msgstr ""
-#: templates/account_details.jinja2:231 templates/submit_interest.jinja2:432
+#: templates/account_details.jinja2:215 templates/submit_interest.jinja2:432
msgid "Greece"
-msgstr "ギリシャ"
+msgstr ""
-#: templates/account_details.jinja2:232 templates/submit_interest.jinja2:433
+#: templates/account_details.jinja2:216 templates/submit_interest.jinja2:433
msgid "Greenland"
-msgstr "グリーンランド"
+msgstr ""
-#: templates/account_details.jinja2:233 templates/submit_interest.jinja2:434
+#: templates/account_details.jinja2:217 templates/submit_interest.jinja2:434
msgid "Grenada"
-msgstr "グレナダ"
+msgstr ""
-#: templates/account_details.jinja2:234 templates/submit_interest.jinja2:435
+#: templates/account_details.jinja2:218 templates/submit_interest.jinja2:435
msgid "Guatemala"
-msgstr "グアテマラ"
+msgstr ""
-#: templates/account_details.jinja2:235 templates/submit_interest.jinja2:436
+#: templates/account_details.jinja2:219 templates/submit_interest.jinja2:436
msgid "Guinea"
-msgstr "ギニア"
+msgstr ""
-#: templates/account_details.jinja2:236 templates/submit_interest.jinja2:437
+#: templates/account_details.jinja2:220 templates/submit_interest.jinja2:437
msgid "Guinea-Bissau"
-msgstr "ギニアビサウ"
+msgstr ""
-#: templates/account_details.jinja2:237 templates/submit_interest.jinja2:438
+#: templates/account_details.jinja2:221 templates/submit_interest.jinja2:438
msgid "Guyana"
-msgstr "ガイアナ"
+msgstr ""
-#: templates/account_details.jinja2:238 templates/submit_interest.jinja2:439
+#: templates/account_details.jinja2:222 templates/submit_interest.jinja2:439
msgid "Haiti"
-msgstr "ハイチ"
+msgstr ""
-#: templates/account_details.jinja2:239 templates/submit_interest.jinja2:440
+#: templates/account_details.jinja2:223 templates/submit_interest.jinja2:440
msgid "Honduras"
-msgstr "ホンジュラス"
+msgstr ""
-#: templates/account_details.jinja2:240 templates/submit_interest.jinja2:441
+#: templates/account_details.jinja2:224 templates/submit_interest.jinja2:441
msgid "Hong Kong"
-msgstr "香港"
+msgstr ""
-#: templates/account_details.jinja2:241 templates/submit_interest.jinja2:442
+#: templates/account_details.jinja2:225 templates/submit_interest.jinja2:442
msgid "Hungary"
-msgstr "ハンガリー"
+msgstr ""
-#: templates/account_details.jinja2:242 templates/submit_interest.jinja2:443
+#: templates/account_details.jinja2:226 templates/submit_interest.jinja2:443
msgid "Iceland"
-msgstr "アイスランド"
+msgstr ""
-#: templates/account_details.jinja2:243 templates/submit_interest.jinja2:444
+#: templates/account_details.jinja2:227 templates/submit_interest.jinja2:444
msgid "India"
-msgstr "インド"
+msgstr ""
-#: templates/account_details.jinja2:244 templates/submit_interest.jinja2:445
+#: templates/account_details.jinja2:228 templates/submit_interest.jinja2:445
msgid "Indonesia"
-msgstr "インドネシア"
+msgstr ""
-#: templates/account_details.jinja2:245 templates/submit_interest.jinja2:446
+#: templates/account_details.jinja2:229 templates/submit_interest.jinja2:446
msgid "Iran"
-msgstr "イラン"
+msgstr ""
-#: templates/account_details.jinja2:246 templates/submit_interest.jinja2:447
+#: templates/account_details.jinja2:230 templates/submit_interest.jinja2:447
msgid "Iraq"
-msgstr "イラク"
+msgstr ""
-#: templates/account_details.jinja2:247 templates/submit_interest.jinja2:448
+#: templates/account_details.jinja2:231 templates/submit_interest.jinja2:448
msgid "Ireland"
-msgstr "アイルランド"
+msgstr ""
-#: templates/account_details.jinja2:248 templates/submit_interest.jinja2:449
+#: templates/account_details.jinja2:232 templates/submit_interest.jinja2:449
msgid "Israel"
-msgstr "イスラエル"
+msgstr ""
-#: templates/account_details.jinja2:249 templates/submit_interest.jinja2:450
+#: templates/account_details.jinja2:233 templates/submit_interest.jinja2:450
msgid "Italy"
-msgstr "イタリア"
+msgstr ""
-#: templates/account_details.jinja2:250 templates/submit_interest.jinja2:451
+#: templates/account_details.jinja2:234 templates/submit_interest.jinja2:451
msgid "Jamaica"
-msgstr "ジャマイカ"
+msgstr ""
-#: templates/account_details.jinja2:251 templates/admin_campaign_edit.jinja2:100 templates/submit_interest.jinja2:452
+#: templates/account_details.jinja2:235
+#: templates/admin_campaign_edit.jinja2:100
+#: templates/submit_interest.jinja2:452
msgid "Japan"
-msgstr "日本"
+msgstr ""
-#: templates/account_details.jinja2:252 templates/submit_interest.jinja2:453
+#: templates/account_details.jinja2:236 templates/submit_interest.jinja2:453
msgid "Jordan"
-msgstr "ヨルダン"
+msgstr ""
-#: templates/account_details.jinja2:253 templates/submit_interest.jinja2:454
+#: templates/account_details.jinja2:237 templates/submit_interest.jinja2:454
msgid "Kazakhstan"
-msgstr "カザフスタン"
+msgstr ""
-#: templates/account_details.jinja2:254 templates/submit_interest.jinja2:455
+#: templates/account_details.jinja2:238 templates/submit_interest.jinja2:455
msgid "Kenya"
-msgstr "ケニヤ"
+msgstr ""
-#: templates/account_details.jinja2:255 templates/submit_interest.jinja2:456
+#: templates/account_details.jinja2:239 templates/submit_interest.jinja2:456
msgid "Kiribati"
-msgstr "キリバス"
+msgstr ""
-#: templates/account_details.jinja2:256 templates/submit_interest.jinja2:457
+#: templates/account_details.jinja2:240 templates/submit_interest.jinja2:457
msgid "Korea North"
-msgstr "北朝鮮"
+msgstr ""
-#: templates/account_details.jinja2:257 templates/submit_interest.jinja2:458
+#: templates/account_details.jinja2:241 templates/submit_interest.jinja2:458
msgid "Korea South"
-msgstr "韓国"
+msgstr ""
-#: templates/account_details.jinja2:258 templates/submit_interest.jinja2:459
+#: templates/account_details.jinja2:242 templates/submit_interest.jinja2:459
msgid "Kuwait"
-msgstr "クウェート"
+msgstr ""
-#: templates/account_details.jinja2:259 templates/submit_interest.jinja2:460
+#: templates/account_details.jinja2:243 templates/submit_interest.jinja2:460
msgid "Kyrgyzstan"
-msgstr "キルギスタン"
+msgstr ""
-#: templates/account_details.jinja2:260 templates/submit_interest.jinja2:461
+#: templates/account_details.jinja2:244 templates/submit_interest.jinja2:461
msgid "Laos"
-msgstr "ラオス"
+msgstr ""
-#: templates/account_details.jinja2:261 templates/submit_interest.jinja2:462
+#: templates/account_details.jinja2:245 templates/submit_interest.jinja2:462
msgid "Latvia"
-msgstr "ラトビア"
+msgstr ""
-#: templates/account_details.jinja2:262 templates/submit_interest.jinja2:463
+#: templates/account_details.jinja2:246 templates/submit_interest.jinja2:463
msgid "Lebanon"
-msgstr "レバノン"
+msgstr ""
-#: templates/account_details.jinja2:263 templates/submit_interest.jinja2:464
+#: templates/account_details.jinja2:247 templates/submit_interest.jinja2:464
msgid "Lesotho"
-msgstr "レソト"
+msgstr ""
-#: templates/account_details.jinja2:264 templates/submit_interest.jinja2:465
+#: templates/account_details.jinja2:248 templates/submit_interest.jinja2:465
msgid "Liberia"
-msgstr "リベリア"
+msgstr ""
-#: templates/account_details.jinja2:265 templates/submit_interest.jinja2:466
+#: templates/account_details.jinja2:249 templates/submit_interest.jinja2:466
msgid "Libya"
-msgstr "リビア"
+msgstr ""
-#: templates/account_details.jinja2:266 templates/submit_interest.jinja2:467
+#: templates/account_details.jinja2:250 templates/submit_interest.jinja2:467
msgid "Liechtenstein"
-msgstr "リヒテンシュタイン"
+msgstr ""
-#: templates/account_details.jinja2:267 templates/submit_interest.jinja2:468
+#: templates/account_details.jinja2:251 templates/submit_interest.jinja2:468
msgid "Lithuania"
-msgstr "リトアニア"
+msgstr ""
-#: templates/account_details.jinja2:268 templates/submit_interest.jinja2:469
+#: templates/account_details.jinja2:252 templates/submit_interest.jinja2:469
msgid "Luxembourg"
-msgstr "ルクセンブルク"
+msgstr ""
-#: templates/account_details.jinja2:269 templates/submit_interest.jinja2:470
+#: templates/account_details.jinja2:253 templates/submit_interest.jinja2:470
msgid "Macedonia"
-msgstr "マケドニア"
+msgstr ""
-#: templates/account_details.jinja2:270 templates/submit_interest.jinja2:471
+#: templates/account_details.jinja2:254 templates/submit_interest.jinja2:471
msgid "Madagascar"
-msgstr "マダガスカル"
+msgstr ""
-#: templates/account_details.jinja2:271 templates/submit_interest.jinja2:472
+#: templates/account_details.jinja2:255 templates/submit_interest.jinja2:472
msgid "Malawi"
-msgstr "マラウイ"
+msgstr ""
-#: templates/account_details.jinja2:272 templates/submit_interest.jinja2:473
+#: templates/account_details.jinja2:256 templates/submit_interest.jinja2:473
msgid "Malaysia"
-msgstr "マレーシア"
+msgstr ""
-#: templates/account_details.jinja2:273 templates/submit_interest.jinja2:474
+#: templates/account_details.jinja2:257 templates/submit_interest.jinja2:474
msgid "Maldives"
-msgstr "モルディブ"
+msgstr ""
-#: templates/account_details.jinja2:274 templates/submit_interest.jinja2:475
+#: templates/account_details.jinja2:258 templates/submit_interest.jinja2:475
msgid "Mali"
-msgstr "マリ"
+msgstr ""
-#: templates/account_details.jinja2:275 templates/submit_interest.jinja2:476
+#: templates/account_details.jinja2:259 templates/submit_interest.jinja2:476
msgid "Malta"
-msgstr "マルタ"
+msgstr ""
-#: templates/account_details.jinja2:276 templates/submit_interest.jinja2:477
+#: templates/account_details.jinja2:260 templates/submit_interest.jinja2:477
msgid "Marshall Islands"
-msgstr "マーシャル諸島"
+msgstr ""
-#: templates/account_details.jinja2:277 templates/submit_interest.jinja2:478
+#: templates/account_details.jinja2:261 templates/submit_interest.jinja2:478
msgid "Mauritania"
-msgstr "モーリタニア"
+msgstr ""
-#: templates/account_details.jinja2:278 templates/submit_interest.jinja2:479
+#: templates/account_details.jinja2:262 templates/submit_interest.jinja2:479
msgid "Mauritius"
-msgstr "モーリシャス"
+msgstr ""
-#: templates/account_details.jinja2:279 templates/submit_interest.jinja2:480
+#: templates/account_details.jinja2:263 templates/submit_interest.jinja2:480
msgid "Micronesia"
-msgstr "ミクロネシア"
+msgstr ""
-#: templates/account_details.jinja2:280 templates/submit_interest.jinja2:481
+#: templates/account_details.jinja2:264 templates/submit_interest.jinja2:481
msgid "Moldova"
-msgstr "モルドバ"
+msgstr ""
-#: templates/account_details.jinja2:281 templates/submit_interest.jinja2:482
+#: templates/account_details.jinja2:265 templates/submit_interest.jinja2:482
msgid "Mongolia"
-msgstr "モンゴリア"
+msgstr ""
-#: templates/account_details.jinja2:282 templates/submit_interest.jinja2:483
+#: templates/account_details.jinja2:266 templates/submit_interest.jinja2:483
msgid "Montenegro"
-msgstr "モンテネグロ"
+msgstr ""
-#: templates/account_details.jinja2:283 templates/submit_interest.jinja2:484
+#: templates/account_details.jinja2:267 templates/submit_interest.jinja2:484
msgid "Morocco"
-msgstr "モロッコ"
+msgstr ""
-#: templates/account_details.jinja2:284 templates/submit_interest.jinja2:485
+#: templates/account_details.jinja2:268 templates/submit_interest.jinja2:485
msgid "Monaco"
-msgstr "モナコ"
+msgstr ""
-#: templates/account_details.jinja2:285 templates/submit_interest.jinja2:486
+#: templates/account_details.jinja2:269 templates/submit_interest.jinja2:486
msgid "Mozambique"
-msgstr "モザンビーク"
+msgstr ""
-#: templates/account_details.jinja2:286 templates/submit_interest.jinja2:487
+#: templates/account_details.jinja2:270 templates/submit_interest.jinja2:487
msgid "Namibia"
-msgstr "ナミビア"
+msgstr ""
-#: templates/account_details.jinja2:287 templates/submit_interest.jinja2:488
+#: templates/account_details.jinja2:271 templates/submit_interest.jinja2:488
msgid "Nauru"
-msgstr "ナウル"
+msgstr ""
-#: templates/account_details.jinja2:288 templates/submit_interest.jinja2:489
+#: templates/account_details.jinja2:272 templates/submit_interest.jinja2:489
msgid "Nepal"
-msgstr "ネパール"
+msgstr ""
-#: templates/account_details.jinja2:289 templates/submit_interest.jinja2:490
+#: templates/account_details.jinja2:273 templates/submit_interest.jinja2:490
msgid "Netherlands"
-msgstr "オランダ"
+msgstr ""
-#: templates/account_details.jinja2:290 templates/submit_interest.jinja2:491
+#: templates/account_details.jinja2:274 templates/submit_interest.jinja2:491
msgid "New Zealand"
-msgstr "ニュージーランド"
+msgstr ""
-#: templates/account_details.jinja2:291 templates/submit_interest.jinja2:492
+#: templates/account_details.jinja2:275 templates/submit_interest.jinja2:492
msgid "Nicaragua"
-msgstr "ニカラグア"
+msgstr ""
-#: templates/account_details.jinja2:292 templates/submit_interest.jinja2:493
+#: templates/account_details.jinja2:276 templates/submit_interest.jinja2:493
msgid "Niger"
-msgstr "ニジェール"
+msgstr ""
-#: templates/account_details.jinja2:293 templates/submit_interest.jinja2:494
+#: templates/account_details.jinja2:277 templates/submit_interest.jinja2:494
msgid "Nigeria"
-msgstr "ナイジェリア"
+msgstr ""
-#: templates/account_details.jinja2:294 templates/submit_interest.jinja2:495
+#: templates/account_details.jinja2:278 templates/submit_interest.jinja2:495
msgid "Norway"
-msgstr "ノルウェー"
+msgstr ""
-#: templates/account_details.jinja2:295 templates/submit_interest.jinja2:496
+#: templates/account_details.jinja2:279 templates/submit_interest.jinja2:496
msgid "Oman"
-msgstr "オマーン"
+msgstr ""
-#: templates/account_details.jinja2:296 templates/submit_interest.jinja2:497
+#: templates/account_details.jinja2:280 templates/submit_interest.jinja2:497
msgid "Pakistan"
-msgstr "パキスタン"
+msgstr ""
-#: templates/account_details.jinja2:297 templates/submit_interest.jinja2:498
+#: templates/account_details.jinja2:281 templates/submit_interest.jinja2:498
msgid "Panama"
-msgstr "パナマ"
+msgstr ""
-#: templates/account_details.jinja2:298 templates/submit_interest.jinja2:499
+#: templates/account_details.jinja2:282 templates/submit_interest.jinja2:499
msgid "Papua New Guinea"
-msgstr "パプアニューギニア"
+msgstr ""
-#: templates/account_details.jinja2:299 templates/submit_interest.jinja2:500
+#: templates/account_details.jinja2:283 templates/submit_interest.jinja2:500
msgid "Paraguay"
-msgstr "パラグアイ"
+msgstr ""
-#: templates/account_details.jinja2:300 templates/submit_interest.jinja2:501
+#: templates/account_details.jinja2:284 templates/submit_interest.jinja2:501
msgid "Peru"
-msgstr "ペルー"
+msgstr ""
-#: templates/account_details.jinja2:301 templates/submit_interest.jinja2:502
+#: templates/account_details.jinja2:285 templates/submit_interest.jinja2:502
msgid "Philippines"
-msgstr "フィリピン"
+msgstr ""
-#: templates/account_details.jinja2:302 templates/submit_interest.jinja2:503
+#: templates/account_details.jinja2:286 templates/submit_interest.jinja2:503
msgid "Poland"
-msgstr "ポーランド"
+msgstr ""
-#: templates/account_details.jinja2:303 templates/submit_interest.jinja2:504
+#: templates/account_details.jinja2:287 templates/submit_interest.jinja2:504
msgid "Portugal"
-msgstr "ポルトガル"
+msgstr ""
-#: templates/account_details.jinja2:304 templates/submit_interest.jinja2:505
+#: templates/account_details.jinja2:288 templates/submit_interest.jinja2:505
msgid "Qatar"
-msgstr "カタール"
+msgstr ""
-#: templates/account_details.jinja2:305 templates/submit_interest.jinja2:506
+#: templates/account_details.jinja2:289 templates/submit_interest.jinja2:506
msgid "Romania"
-msgstr "ルーマニア"
+msgstr ""
-#: templates/account_details.jinja2:306 templates/submit_interest.jinja2:507
+#: templates/account_details.jinja2:290 templates/submit_interest.jinja2:507
msgid "Russia"
-msgstr "ロシア"
+msgstr ""
-#: templates/account_details.jinja2:307 templates/submit_interest.jinja2:508
+#: templates/account_details.jinja2:291 templates/submit_interest.jinja2:508
msgid "Rwanda"
-msgstr "ルワンダ"
+msgstr ""
-#: templates/account_details.jinja2:308 templates/submit_interest.jinja2:509
+#: templates/account_details.jinja2:292 templates/submit_interest.jinja2:509
msgid "Samoa"
-msgstr "サモア"
+msgstr ""
-#: templates/account_details.jinja2:309 templates/submit_interest.jinja2:510
+#: templates/account_details.jinja2:293 templates/submit_interest.jinja2:510
msgid "San Marino"
-msgstr "サンマリノ"
+msgstr ""
-#: templates/account_details.jinja2:310 templates/submit_interest.jinja2:511
+#: templates/account_details.jinja2:294 templates/submit_interest.jinja2:511
msgid "Sao Tome"
-msgstr "サントメ"
+msgstr ""
-#: templates/account_details.jinja2:311 templates/submit_interest.jinja2:512
+#: templates/account_details.jinja2:295 templates/submit_interest.jinja2:512
msgid "Saudi Arabia"
-msgstr "サウジアラビア"
+msgstr ""
-#: templates/account_details.jinja2:312 templates/submit_interest.jinja2:513
+#: templates/account_details.jinja2:296 templates/submit_interest.jinja2:513
msgid "Senegal"
-msgstr "セネガル"
+msgstr ""
-#: templates/account_details.jinja2:313 templates/submit_interest.jinja2:514
+#: templates/account_details.jinja2:297 templates/submit_interest.jinja2:514
msgid "Serbia"
-msgstr "サルビア"
+msgstr ""
-#: templates/account_details.jinja2:314 templates/submit_interest.jinja2:515
+#: templates/account_details.jinja2:298 templates/submit_interest.jinja2:515
msgid "Seychelles"
-msgstr "セーシェル"
+msgstr ""
-#: templates/account_details.jinja2:315 templates/submit_interest.jinja2:516
+#: templates/account_details.jinja2:299 templates/submit_interest.jinja2:516
msgid "Sierra Leone"
-msgstr "シエラレオネ"
+msgstr ""
-#: templates/account_details.jinja2:316 templates/submit_interest.jinja2:517
+#: templates/account_details.jinja2:300 templates/submit_interest.jinja2:517
msgid "Singapore"
-msgstr "シンガポール"
+msgstr ""
-#: templates/account_details.jinja2:317 templates/submit_interest.jinja2:518
+#: templates/account_details.jinja2:301 templates/submit_interest.jinja2:518
msgid "Slovakia"
-msgstr "スロバキア"
+msgstr ""
-#: templates/account_details.jinja2:318 templates/submit_interest.jinja2:519
+#: templates/account_details.jinja2:302 templates/submit_interest.jinja2:519
msgid "Slovenia"
-msgstr "スロベニア"
+msgstr ""
-#: templates/account_details.jinja2:319 templates/submit_interest.jinja2:520
+#: templates/account_details.jinja2:303 templates/submit_interest.jinja2:520
msgid "Solomon Islands"
-msgstr "ソロモン諸島"
+msgstr ""
-#: templates/account_details.jinja2:320 templates/submit_interest.jinja2:521
+#: templates/account_details.jinja2:304 templates/submit_interest.jinja2:521
msgid "Somalia"
-msgstr "ソマリア"
+msgstr ""
-#: templates/account_details.jinja2:321 templates/submit_interest.jinja2:522
+#: templates/account_details.jinja2:305 templates/submit_interest.jinja2:522
msgid "South Africa"
-msgstr "南アフリカ"
+msgstr ""
-#: templates/account_details.jinja2:322 templates/submit_interest.jinja2:523
+#: templates/account_details.jinja2:306 templates/submit_interest.jinja2:523
msgid "Sri Lanka"
-msgstr "スリランカ"
+msgstr ""
-#: templates/account_details.jinja2:323 templates/submit_interest.jinja2:524
+#: templates/account_details.jinja2:307 templates/submit_interest.jinja2:524
msgid "Sudan"
-msgstr "スーダン"
+msgstr ""
-#: templates/account_details.jinja2:324 templates/submit_interest.jinja2:525
+#: templates/account_details.jinja2:308 templates/submit_interest.jinja2:525
msgid "Suriname"
-msgstr "スリナム"
+msgstr ""
-#: templates/account_details.jinja2:325 templates/submit_interest.jinja2:526
+#: templates/account_details.jinja2:309 templates/submit_interest.jinja2:526
msgid "Swaziland"
-msgstr "スワジランド"
+msgstr ""
-#: templates/account_details.jinja2:326 templates/submit_interest.jinja2:527
+#: templates/account_details.jinja2:310 templates/submit_interest.jinja2:527
msgid "Sweden"
-msgstr "スウェーデン"
+msgstr ""
-#: templates/account_details.jinja2:327 templates/submit_interest.jinja2:528
+#: templates/account_details.jinja2:311 templates/submit_interest.jinja2:528
msgid "Switzerland"
-msgstr "スイス"
+msgstr ""
-#: templates/account_details.jinja2:328 templates/submit_interest.jinja2:529
+#: templates/account_details.jinja2:312 templates/submit_interest.jinja2:529
msgid "Syria"
-msgstr "シリア"
+msgstr ""
-#: templates/account_details.jinja2:329 templates/submit_interest.jinja2:530
+#: templates/account_details.jinja2:313 templates/submit_interest.jinja2:530
msgid "Taiwan"
-msgstr "台湾"
+msgstr ""
-#: templates/account_details.jinja2:330 templates/submit_interest.jinja2:531
+#: templates/account_details.jinja2:314 templates/submit_interest.jinja2:531
msgid "Tajikistan"
-msgstr "タジキスタン"
+msgstr ""
-#: templates/account_details.jinja2:331 templates/submit_interest.jinja2:532
+#: templates/account_details.jinja2:315 templates/submit_interest.jinja2:532
msgid "Tanzania"
-msgstr "タンザニア"
+msgstr ""
-#: templates/account_details.jinja2:332 templates/submit_interest.jinja2:533
+#: templates/account_details.jinja2:316 templates/submit_interest.jinja2:533
msgid "Thailand"
-msgstr "タイ"
+msgstr ""
-#: templates/account_details.jinja2:333 templates/submit_interest.jinja2:534
+#: templates/account_details.jinja2:317 templates/submit_interest.jinja2:534
msgid "Togo"
-msgstr "トーゴ"
+msgstr ""
-#: templates/account_details.jinja2:334 templates/submit_interest.jinja2:535
+#: templates/account_details.jinja2:318 templates/submit_interest.jinja2:535
msgid "Tonga"
-msgstr "トンガ"
+msgstr ""
-#: templates/account_details.jinja2:335 templates/submit_interest.jinja2:536
+#: templates/account_details.jinja2:319 templates/submit_interest.jinja2:536
msgid "Trinidad and Tobago"
-msgstr "トリニダード トバゴ"
+msgstr ""
-#: templates/account_details.jinja2:336 templates/submit_interest.jinja2:537
+#: templates/account_details.jinja2:320 templates/submit_interest.jinja2:537
msgid "Tunisia"
-msgstr "チュニジア"
+msgstr ""
-#: templates/account_details.jinja2:337 templates/submit_interest.jinja2:538
+#: templates/account_details.jinja2:321 templates/submit_interest.jinja2:538
msgid "Turkey"
-msgstr "トルコ"
+msgstr ""
-#: templates/account_details.jinja2:338 templates/submit_interest.jinja2:539
+#: templates/account_details.jinja2:322 templates/submit_interest.jinja2:539
msgid "Turkmenistan"
-msgstr "トルクメニスタン"
+msgstr ""
-#: templates/account_details.jinja2:339 templates/submit_interest.jinja2:540
+#: templates/account_details.jinja2:323 templates/submit_interest.jinja2:540
msgid "Uganda"
-msgstr "ウガンダ"
+msgstr ""
-#: templates/account_details.jinja2:340 templates/submit_interest.jinja2:541
+#: templates/account_details.jinja2:324 templates/submit_interest.jinja2:541
msgid "Ukraine"
-msgstr "ウクライナ"
+msgstr ""
-#: templates/account_details.jinja2:341 templates/submit_interest.jinja2:542
+#: templates/account_details.jinja2:325 templates/submit_interest.jinja2:542
msgid "United Arab Emirates"
-msgstr "アラブ首長国連邦"
+msgstr ""
-#: templates/account_details.jinja2:342 templates/submit_interest.jinja2:543
+#: templates/account_details.jinja2:326 templates/submit_interest.jinja2:543
msgid "Uruguay"
-msgstr "ウルグアイ"
+msgstr ""
-#: templates/account_details.jinja2:343 templates/submit_interest.jinja2:544
+#: templates/account_details.jinja2:327 templates/submit_interest.jinja2:544
msgid "Uzbekistan"
-msgstr "ウズベキスタン"
+msgstr ""
-#: templates/account_details.jinja2:344 templates/submit_interest.jinja2:545
+#: templates/account_details.jinja2:328 templates/submit_interest.jinja2:545
msgid "Vanuatu"
-msgstr "バヌアツ"
+msgstr ""
-#: templates/account_details.jinja2:345 templates/submit_interest.jinja2:546
+#: templates/account_details.jinja2:329 templates/submit_interest.jinja2:546
msgid "Venezuela"
-msgstr "ベネズエラ"
+msgstr ""
-#: templates/account_details.jinja2:346 templates/submit_interest.jinja2:547
+#: templates/account_details.jinja2:330 templates/submit_interest.jinja2:547
msgid "Viet nam"
-msgstr "ベトナム"
+msgstr ""
-#: templates/account_details.jinja2:347 templates/submit_interest.jinja2:548
+#: templates/account_details.jinja2:331 templates/submit_interest.jinja2:548
msgid "Yemen"
-msgstr "イエメン"
+msgstr ""
-#: templates/account_details.jinja2:348 templates/submit_interest.jinja2:549
+#: templates/account_details.jinja2:332 templates/submit_interest.jinja2:549
msgid "Zambia"
-msgstr "ザンビア"
+msgstr ""
-#: templates/account_details.jinja2:349 templates/submit_interest.jinja2:550
+#: templates/account_details.jinja2:333 templates/submit_interest.jinja2:550
msgid "Zimbabwe"
-msgstr "ジンバブエ"
-
-#: templates/account_details.jinja2:353
-msgid "Street Address"
-msgstr "住所"
+msgstr ""
-#: templates/account_details.jinja2:373
-msgid "Preferred language for future communications"
-msgstr "優先言語"
+#: templates/account_details.jinja2:337
+msgid "Address Line 1"
+msgstr ""
-#: templates/account_details.jinja2:388
-msgid "Activation Info"
-msgstr "認証情報"
+#: templates/account_details.jinja2:341
+msgid "Address Line 2"
+msgstr ""
-#: templates/account_details.jinja2:392
-msgid "Kit ID"
-msgstr "キットID"
+#: templates/account_details.jinja2:361
+msgid "Preferred language for future communications"
+msgstr ""
-#: templates/account_details.jinja2:395
-msgid "OR"
-msgstr "又は"
+#: templates/account_details.jinja2:377
+msgid ""
+"I agree to the Privacy Statement and accept the Terms and Conditions "
+msgstr ""
-#: templates/account_details.jinja2:397 templates/admin_activation_codes.jinja2:14
-msgid "Activation Code"
-msgstr "認証コード"
+#: templates/account_details.jinja2:384 templates/submit_interest.jinja2:600
+msgid "Next"
+msgstr ""
-#: templates/account_details.jinja2:404 templates/account_details.jinja2:406
+#: templates/account_details.jinja2:386 templates/sample.jinja2:242
msgid "Save"
-msgstr "保存"
+msgstr ""
-#: templates/account_details.jinja2:414
+#: templates/account_details.jinja2:395
msgid "Danger zone"
-msgstr "危険地帯"
+msgstr ""
-#: templates/account_details.jinja2:418
+#: templates/account_details.jinja2:399
msgid "Delete or scrub the account."
-msgstr "アカウントを削除する。"
+msgstr ""
-#: templates/account_details.jinja2:421
-msgid "If the account has any samples associated, the account and sources will be scrubbed, meaning all free text and identifiable information is removed."
-msgstr "アカウントに便サンプルに関連した情報が記録されている場合、アカウントとサンプルの種類は削除されます。つまり、すべての個人情報が削除されます。"
+#: templates/account_details.jinja2:402
+msgid ""
+"If the account has any samples associated, the account and sources will "
+"be scrubbed, meaning all free text and identifiable information is "
+"removed."
+msgstr ""
-#: templates/account_details.jinja2:424
+#: templates/account_details.jinja2:405
msgid "Otherwise, the account and any sources will be deleted"
-msgstr "そうでない場合、アカウントと全ての便サンプルが削除されます"
+msgstr ""
-#: templates/account_details.jinja2:427
-msgid "IMPORTANT: you must manually delete the email from Authrocket and other external services like MyEmma to complete the process"
-msgstr "重要:手順を完了するには、Authrocket や MyEmma 等他の外部サービスから届いたメールを手動で削除する必要があります"
+#: templates/account_details.jinja2:408
+msgid ""
+"IMPORTANT: you must manually delete the email from Authrocket and other "
+"external services like MyEmma to complete the process"
+msgstr ""
-#: templates/account_details.jinja2:430
+#: templates/account_details.jinja2:411
msgid "ACCOUNT DELETION CANNOT BE UNDONE"
-msgstr "アカウントを削除すると復元できません"
+msgstr ""
-#: templates/account_details.jinja2:433
+#: templates/account_details.jinja2:414
msgid "Delete Account"
-msgstr "アカウントを削除する"
+msgstr ""
-#: templates/account_overview.jinja2:53
-msgid "View Account Details"
-msgstr "アカウントの詳細を見る"
+#: templates/account_overview.jinja2:2 templates/new_results_page.jinja2:1318
+#: templates/sample_results.jinja2:127
+msgid "Account"
+msgstr ""
-#: templates/account_overview.jinja2:58
-msgid "Sources"
-msgstr "由来"
+#: templates/account_overview.jinja2:51
+msgid "Active Profiles"
+msgstr ""
-#: templates/account_overview.jinja2:62
-msgid "You have now set up your account! Please proceed to identify your source."
-msgstr "アカウントが設定されました!あなたのサンプルの種類を選択して下さい。"
+#: templates/account_overview.jinja2:59
+msgid "Go to My Profile"
+msgstr ""
#: templates/account_overview.jinja2:66
-msgid "Choose a source to assign samples to by clicking on a name, listed in blue below:"
-msgstr "下記に青色で表示されている名前をクリックして、サンプルの種類を選んで下さい:"
-
-#: templates/account_overview.jinja2:71
-msgid "Name"
-msgstr "名前"
+msgid "Add New Profile"
+msgstr ""
-#: templates/account_overview.jinja2:74
-msgid "Source type"
-msgstr "種類"
+#: templates/account_overview.jinja2:67
+msgid "Select the type of profile you would like to create."
+msgstr ""
-#: templates/account_overview.jinja2:95
-msgid "What is the Source of Your Sample?"
-msgstr "あなたのサンプルの種類はなんですか?"
+#: templates/account_overview.jinja2:71
+msgid "Human Profile"
+msgstr ""
-#: templates/account_overview.jinja2:103
+#: templates/account_overview.jinja2:72
msgid ""
-"Our lab needs to know what type of sample(s) you are submitting (a.k.a. the \"source\"). Add a new source and assign samples to it so we can perform the correct "
-"analysis in our laboratory."
-msgstr "私たちのラボは、提出されたサンプルの種類 (別称「由来」) を知る必要があります。ラボで正しい分析をするため、サンプルの種類を選択して下さい。"
-
-#: templates/account_overview.jinja2:108
-msgid "If you have multiple sources, you may add one source at a time. You can return to this page after you finish registering the first one."
-msgstr "サンプルの種類が複数ある場合は、数回に分けてサンプルの種類を選択して下さい。最初のサンプル登録が完了次第、このページに戻ります。"
-
-#: templates/account_overview.jinja2:114
-msgid "Human Source"
-msgstr "ヒト由来"
-
-#: templates/account_overview.jinja2:116 templates/account_overview.jinja2:118 templates/account_overview.jinja2:139
-msgid "Collect sample(s) from"
-msgstr "から採便する"
-
-#: templates/account_overview.jinja2:116
-msgid "yourself"
-msgstr "あなた"
-
-#: templates/account_overview.jinja2:116 templates/account_overview.jinja2:118 templates/account_overview.jinja2:139
-msgid "(e.g. fecal, saliva, skin, etc.)"
-msgstr "(例:便、唾液、皮膚等)"
-
-#: templates/account_overview.jinja2:118
-msgid "someone else"
-msgstr "他人"
-
-#: templates/account_overview.jinja2:121 templates/account_overview.jinja2:131 templates/account_overview.jinja2:144
-msgid "Select"
-msgstr "選択する"
-
-#: templates/account_overview.jinja2:126
-msgid "Environmental Source"
-msgstr "環境由来"
-
-#: templates/account_overview.jinja2:128
-msgid "Collect sample(s) from a"
-msgstr "から便サンプルを採取する"
+"Share your diet, health, and lifestyle details to help discover more "
+"about how this affects the human microbiome."
+msgstr ""
-#: templates/account_overview.jinja2:128
-msgid "surface"
-msgstr "表面"
+#: templates/account_overview.jinja2:73
+msgid "Add Human Profile"
+msgstr ""
-#: templates/account_overview.jinja2:128
-msgid "(e.g. kitchen counter, backyard soil, food, etc.)"
-msgstr "(例:台所のカウンター、裏庭の土、食材等)"
+#: templates/account_overview.jinja2:81
+msgid "Pet Profile"
+msgstr ""
-#: templates/account_overview.jinja2:136
-msgid "Animal Source"
-msgstr "動物由来"
+#: templates/account_overview.jinja2:82
+msgid "Share sample(s) from an animal (e.g. fecal, saliva, skin, etc.)"
+msgstr ""
-#: templates/account_overview.jinja2:139
-msgid "your pet"
-msgstr "あなたのペット"
+#: templates/account_overview.jinja2:83 templates/account_overview.jinja2:91
+msgid "Coming Soon"
+msgstr ""
-#: templates/account_overview.jinja2:139
-msgid "or an"
-msgstr "又は"
+#: templates/account_overview.jinja2:89
+msgid "Environment Profile"
+msgstr ""
-#: templates/account_overview.jinja2:141
-msgid "Animal sources are currently unavailable."
-msgstr "動物由来は現在選択できません。"
+#: templates/account_overview.jinja2:90
+msgid "Share sample(s) from the environment (e.g. kitchen counter, food, etc.)"
+msgstr ""
#: templates/admin_activation_codes.jinja2:2
msgid "Admin Activation Codes"
-msgstr "管理者認証コード"
+msgstr ""
#: templates/admin_activation_codes.jinja2:6
msgid "Search by Email"
-msgstr "メールで検索"
+msgstr ""
-#: templates/admin_activation_codes.jinja2:9 templates/admin_activation_codes.jinja2:16 templates/admin_barcode_search.jinja2:87
+#: templates/admin_activation_codes.jinja2:9
+#: templates/admin_activation_codes.jinja2:16
+#: templates/admin_barcode_search.jinja2:87
msgid "Search"
-msgstr "検索"
+msgstr ""
#: templates/admin_activation_codes.jinja2:13
msgid "Search by Activation Code"
-msgstr "認証コードから検索"
+msgstr ""
+
+#: templates/admin_activation_codes.jinja2:14
+msgid "Activation Code"
+msgstr ""
#: templates/admin_activation_codes.jinja2:20
msgid "Generate Activation Code"
-msgstr "認証コードを作成する"
+msgstr ""
-#: templates/admin_activation_codes.jinja2:23 templates/admin_activation_codes.jinja2:31
+#: templates/admin_activation_codes.jinja2:23
+#: templates/admin_activation_codes.jinja2:31
+#: templates/admin_ffq_codes.jinja2:8 templates/admin_ffq_codes.jinja2:20
msgid "Generate"
-msgstr "作成する"
+msgstr ""
#: templates/admin_activation_codes.jinja2:24
msgid "Generate + Send Email"
-msgstr "作成する+メールを送る"
+msgstr ""
#: templates/admin_activation_codes.jinja2:28
msgid "Generate Activation Codes from CSV File"
-msgstr "CSVファイルから認証コードを作成する"
+msgstr ""
#: templates/admin_activation_codes.jinja2:29
msgid "CSV File of Emails"
-msgstr "メールのCSVファイル"
+msgstr ""
#: templates/admin_activation_codes.jinja2:34 templates/admin_home.jinja2:5
msgid "Search Results"
-msgstr "検査結果"
+msgstr ""
#: templates/admin_activation_codes.jinja2:43
msgid "Code"
-msgstr "コード"
+msgstr ""
#: templates/admin_activation_codes.jinja2:46
msgid "Activated"
-msgstr "認証される"
+msgstr ""
#: templates/admin_activation_codes.jinja2:67 templates/admin_home.jinja2:34
msgid "No accounts found"
-msgstr "アカウントが見つかりません"
+msgstr ""
-#: templates/admin_address_verification.jinja2:2 templates/admin_campaign_list.jinja2:2 templates/admin_interested_user_edit.jinja2:2
+#: templates/admin_address_verification.jinja2:2
+#: templates/admin_campaign_list.jinja2:2
+#: templates/admin_interested_user_edit.jinja2:2
msgid "Admin Address Verification"
-msgstr "管理者住所確認"
+msgstr ""
#: templates/admin_address_verification.jinja2:8
msgid "Verify CSV File of Addresses"
-msgstr "住所の CSV ファイルを確認する"
+msgstr ""
#: templates/admin_address_verification.jinja2:12
msgid "CSV File"
-msgstr "CSVファイル"
+msgstr ""
-#: templates/admin_address_verification.jinja2:17 templates/admin_address_verification.jinja2:57
+#: templates/admin_address_verification.jinja2:17
+#: templates/admin_address_verification.jinja2:57
msgid "Verify"
-msgstr "確認する"
+msgstr ""
#: templates/admin_address_verification.jinja2:26
msgid "Verify Single Address"
-msgstr "一つの住所を確認する"
+msgstr ""
-#: templates/admin_address_verification.jinja2:29 templates/admin_address_verification.jinja2:81 templates/admin_interested_user_edit.jinja2:122
+#: templates/admin_address_verification.jinja2:29
+#: templates/admin_address_verification.jinja2:81
+#: templates/admin_interested_user_edit.jinja2:122
#: templates/submit_interest.jinja2:558 templates/update_address.jinja2:209
msgid "Address 1"
-msgstr "住所(都道府県、市区町村①)"
+msgstr ""
-#: templates/admin_address_verification.jinja2:33 templates/admin_address_verification.jinja2:85 templates/admin_interested_user_edit.jinja2:126
+#: templates/admin_address_verification.jinja2:33
+#: templates/admin_address_verification.jinja2:85
+#: templates/admin_interested_user_edit.jinja2:126
#: templates/submit_interest.jinja2:562 templates/update_address.jinja2:213
msgid "Address 2"
-msgstr "住所(市区町村②、番地)"
+msgstr ""
-#: templates/admin_address_verification.jinja2:37 templates/admin_address_verification.jinja2:89 templates/admin_interested_user_edit.jinja2:132
+#: templates/admin_address_verification.jinja2:37
+#: templates/admin_address_verification.jinja2:89
+#: templates/admin_interested_user_edit.jinja2:132
#: templates/submit_interest.jinja2:566 templates/update_address.jinja2:217
msgid "Address 3"
-msgstr "住所(建物名、部屋番号)"
+msgstr ""
-#: templates/admin_address_verification.jinja2:49 templates/admin_address_verification.jinja2:101 templates/admin_interested_user_edit.jinja2:146
+#: templates/admin_address_verification.jinja2:49
+#: templates/admin_address_verification.jinja2:101
+#: templates/admin_interested_user_edit.jinja2:146
#: templates/submit_interest.jinja2:580 templates/update_address.jinja2:231
msgid "Postal Code"
-msgstr "郵便番号"
+msgstr ""
#: templates/admin_address_verification.jinja2:109
msgid "Latitude"
-msgstr "緯度"
+msgstr ""
#: templates/admin_address_verification.jinja2:113
msgid "Longitude"
-msgstr "経度"
+msgstr ""
#: templates/admin_barcode_search.jinja2:2
msgid "ADMINISTRATOR BARCODE SEARCH"
-msgstr "管理者バーコード検索"
+msgstr ""
#: templates/admin_barcode_search.jinja2:31
msgid "Download CSV"
-msgstr "ダウンロードCSV"
+msgstr ""
#: templates/admin_barcode_search.jinja2:32
msgid "Download Excel"
-msgstr "ダウンロードExcel"
+msgstr ""
#: templates/admin_barcode_search.jinja2:90
msgid "Search Qiita"
-msgstr "Qiitaを検索"
+msgstr ""
-#: templates/admin_barcode_search.jinja2:97 templates/sample.jinja2:176 templates/source.jinja2:161
+#: templates/admin_barcode_search.jinja2:97
msgid "Barcode"
-msgstr "バーコード"
+msgstr ""
#: templates/admin_campaign_edit.jinja2:2
msgid "Admin Campaign Edit"
-msgstr "管理者キャンペーン 編集"
+msgstr ""
#: templates/admin_campaign_edit.jinja2:16
msgid "Edit Campaign"
-msgstr "キャンペーンを 編集する"
+msgstr ""
#: templates/admin_campaign_edit.jinja2:19
msgid "Campaign ID"
-msgstr "キャンペーンID"
+msgstr ""
#: templates/admin_campaign_edit.jinja2:23
msgid "Campaign Link"
-msgstr "キャンペーンリンク"
+msgstr ""
-#: templates/admin_campaign_edit.jinja2:27 templates/admin_campaign_edit.jinja2:35
+#: templates/admin_campaign_edit.jinja2:27
+#: templates/admin_campaign_edit.jinja2:35
msgid "Associated Projects"
-msgstr "関連したプロジェクト"
+msgstr ""
#: templates/admin_campaign_edit.jinja2:32
msgid "Add Campaign"
-msgstr "キャンペーンを追加する"
+msgstr ""
#: templates/admin_campaign_edit.jinja2:46
msgid "Campaign Language"
-msgstr "キャンペーン言語"
+msgstr ""
#: templates/admin_campaign_edit.jinja2:56
msgid "Title"
-msgstr "タイトル"
+msgstr ""
#: templates/admin_campaign_edit.jinja2:60
msgid "Instructions"
-msgstr "説明"
+msgstr ""
#: templates/admin_campaign_edit.jinja2:64
msgid "Alt Campaign Language"
-msgstr "代替キャンペーン言語"
+msgstr ""
#: templates/admin_campaign_edit.jinja2:75
msgid "Title in Alt Language"
-msgstr "代替言語のタイトル"
+msgstr ""
#: templates/admin_campaign_edit.jinja2:79
msgid "Instructions in Alt Language"
-msgstr "代替言語での説明"
+msgstr ""
#: templates/admin_campaign_edit.jinja2:84
msgid "Current Header Image"
-msgstr "現在のヘッダー画像"
+msgstr ""
#: templates/admin_campaign_edit.jinja2:89
msgid "Upload New Header Image"
-msgstr "新しいヘッダーの画像を更新する"
+msgstr ""
-#: templates/admin_campaign_edit.jinja2:93 templates/admin_campaign_list.jinja2:17
+#: templates/admin_campaign_edit.jinja2:93
+#: templates/admin_campaign_list.jinja2:17
msgid "Permitted Countries"
-msgstr "許可された国"
+msgstr ""
-#: templates/admin_campaign_edit.jinja2:105 templates/admin_campaign_list.jinja2:20
+#: templates/admin_campaign_edit.jinja2:105
+#: templates/admin_campaign_list.jinja2:20
msgid "Accepting Participants"
-msgstr "参加者募集中"
+msgstr ""
#: templates/admin_campaign_edit.jinja2:114
msgid "Send THDMI Confirmation Email"
@@ -1380,1454 +1387,1802 @@ msgstr ""
msgid "Force Primary Language on Form"
msgstr ""
-#: templates/admin_campaign_edit.jinja2:132 templates/admin_interested_user_edit.jinja2:170 templates/submit_interest.jinja2:601 templates/update_address.jinja2:254
+#: templates/admin_campaign_edit.jinja2:132
+#: templates/admin_interested_user_edit.jinja2:170
+#: templates/submit_interest.jinja2:601 templates/update_address.jinja2:254
msgid "Submit"
-msgstr "登録する"
+msgstr ""
-#: templates/admin_campaign_list.jinja2:5 templates/sitebase.jinja2:50
+#: templates/admin_campaign_list.jinja2:5 templates/sitebase.jinja2:61
msgid "Campaigns"
-msgstr "キャンペーン"
+msgstr ""
#: templates/admin_campaign_list.jinja2:14
msgid "Campaign Name"
-msgstr "キャンペーン名"
+msgstr ""
#: templates/admin_campaign_list.jinja2:47
msgid "No campaigns found"
-msgstr "キャンペーンが見つかりません"
+msgstr ""
+
+#: templates/admin_ffq_codes.jinja2:2
+msgid "Admin FFQ Codes"
+msgstr ""
+
+#: templates/admin_ffq_codes.jinja2:6
+msgid "Generate Single Code"
+msgstr ""
+
+#: templates/admin_ffq_codes.jinja2:17
+msgid "Generate Multiple Codes and download CSV File"
+msgstr ""
+
+#: templates/admin_ffq_codes.jinja2:18
+msgid "Number of Codes"
+msgstr ""
#: templates/admin_home.jinja2:2 templates/admin_interested_users.jinja2:2
msgid "ADMINISTRATOR MODE"
-msgstr "管理者用"
+msgstr ""
#: templates/admin_home.jinja2:14
msgid "Account ID"
-msgstr "アカウントID"
+msgstr ""
-#: templates/admin_interested_user_edit.jinja2:30 templates/admin_interested_user_edit.jinja2:64 templates/submit_interest.jinja2:228
+#: templates/admin_interested_user_edit.jinja2:30
+#: templates/admin_interested_user_edit.jinja2:64
+#: templates/submit_interest.jinja2:228
msgid "Please enter a valid phone number."
-msgstr "有効な電話番号を入力して下さい。"
+msgstr ""
-#: templates/admin_interested_user_edit.jinja2:31 templates/admin_interested_user_edit.jinja2:65 templates/submit_interest.jinja2:232 templates/update_address.jinja2:130
+#: templates/admin_interested_user_edit.jinja2:31
+#: templates/admin_interested_user_edit.jinja2:65
+#: templates/submit_interest.jinja2:232 templates/update_address.jinja2:130
msgid "Please enter your street address."
-msgstr "あなたの住所を入力して下さい。"
+msgstr ""
-#: templates/admin_interested_user_edit.jinja2:32 templates/admin_interested_user_edit.jinja2:66 templates/submit_interest.jinja2:233 templates/update_address.jinja2:131
+#: templates/admin_interested_user_edit.jinja2:32
+#: templates/admin_interested_user_edit.jinja2:66
+#: templates/submit_interest.jinja2:233 templates/update_address.jinja2:131
msgid "Please enter your city."
-msgstr "あなたの都市を入力して下さい。"
+msgstr ""
-#: templates/admin_interested_user_edit.jinja2:33 templates/admin_interested_user_edit.jinja2:67 templates/submit_interest.jinja2:234 templates/update_address.jinja2:132
+#: templates/admin_interested_user_edit.jinja2:33
+#: templates/admin_interested_user_edit.jinja2:67
+#: templates/submit_interest.jinja2:234 templates/update_address.jinja2:132
msgid "Please select your state."
-msgstr "あなたの住んでいる都道府県を選んで下さい。"
+msgstr ""
-#: templates/admin_interested_user_edit.jinja2:35 templates/admin_interested_user_edit.jinja2:69 templates/submit_interest.jinja2:236 templates/update_address.jinja2:134
+#: templates/admin_interested_user_edit.jinja2:35
+#: templates/admin_interested_user_edit.jinja2:69
+#: templates/submit_interest.jinja2:236 templates/update_address.jinja2:134
msgid "Please enter your postal code."
-msgstr "あなたの郵便番号を入力して下さい。"
+msgstr ""
#: templates/admin_interested_user_edit.jinja2:100
msgid "Edit Interested User"
-msgstr "関心のあるユーザーを編集する"
+msgstr ""
#: templates/admin_interested_user_edit.jinja2:103
-msgid "CAUTION: Edits made will NOT go through address verification - proceed carefully"
-msgstr "警告: 一度編集されたら住所確認はできません - 慎重に作業を進めてください"
+msgid ""
+"CAUTION: Edits made will NOT go through address verification - proceed "
+"carefully"
+msgstr ""
#: templates/admin_interested_user_edit.jinja2:118
msgid "Phone"
-msgstr "電話"
+msgstr ""
-#: templates/admin_interested_user_edit.jinja2:152 templates/submit_interest.jinja2:584 templates/update_address.jinja2:235
+#: templates/admin_interested_user_edit.jinja2:152
+#: templates/submit_interest.jinja2:584 templates/update_address.jinja2:235
msgid "Address Type"
-msgstr "住所タイプ"
+msgstr ""
-#: templates/admin_interested_users.jinja2:5 templates/sitebase.jinja2:48
+#: templates/admin_interested_users.jinja2:5 templates/sitebase.jinja2:59
msgid "Interested Users"
-msgstr "関心のあるユーザー"
+msgstr ""
#: templates/admin_interested_users.jinja2:45
msgid "Converted to Account"
-msgstr "アカウントに変換する"
+msgstr ""
#: templates/admin_interested_users.jinja2:54
msgid "No interested users found"
-msgstr "関心のあるユーザーは見つかりませんでした"
+msgstr ""
#: templates/admin_system_panel.jinja2:2
msgid "ADMINISTRATOR SYSTEM PANEL"
-msgstr "管理者用システムパネル"
+msgstr ""
-#: templates/admin_system_panel.jinja2:26 templates/admin_system_panel.jinja2:67
+#: templates/admin_system_panel.jinja2:26
+#: templates/admin_system_panel.jinja2:67
msgid "Set System Message"
-msgstr "システム メッセージを設定する"
+msgstr ""
#: templates/admin_system_panel.jinja2:35
msgid "System Message"
-msgstr "システムメッセージ"
+msgstr ""
#: templates/admin_system_panel.jinja2:39
msgid "primary"
-msgstr "一次の"
+msgstr ""
#: templates/admin_system_panel.jinja2:40
msgid "secondary"
-msgstr "二次の"
+msgstr ""
#: templates/admin_system_panel.jinja2:41
msgid "success"
-msgstr "成功"
+msgstr ""
#: templates/admin_system_panel.jinja2:42
msgid "danger"
-msgstr "危険"
+msgstr ""
#: templates/admin_system_panel.jinja2:43
msgid "warning"
-msgstr "警告"
+msgstr ""
#: templates/admin_system_panel.jinja2:44
msgid "info"
-msgstr "情報"
+msgstr ""
#: templates/admin_system_panel.jinja2:45
msgid "light"
-msgstr "明かり"
+msgstr ""
#: templates/admin_system_panel.jinja2:46
msgid "dark"
-msgstr "暗い"
+msgstr ""
+
+#: templates/consents.jinja2:2 templates/consents.jinja2:30
+#: templates/sitebase.jinja2:183
+msgid "Consent Documents"
+msgstr ""
+
+#: templates/consents.jinja2:38
+msgid "Survey"
+msgstr ""
+
+#: templates/consents.jinja2:55
+msgid "Biospecimen"
+msgstr ""
+
+#: templates/consents.jinja2:59
+msgid "View"
+msgstr ""
#: templates/create_nonhuman_source.jinja2:2
msgid "Create Non-human Source"
-msgstr "人由来以外を作成する"
+msgstr ""
#: templates/create_nonhuman_source.jinja2:8
msgid "Creating Source..."
-msgstr "サンプルの種類を作成する..."
+msgstr ""
#: templates/create_nonhuman_source.jinja2:16
msgid "Environment name (e.g., microwave)"
-msgstr "環境名 (例: 電子レンジ)"
+msgstr ""
#: templates/create_nonhuman_source.jinja2:20
msgid "Environment description (optional)"
-msgstr "環境の説明 (任意)"
+msgstr ""
#: templates/create_nonhuman_source.jinja2:23
msgid "Create Source"
-msgstr "サンプルの種類を作成する"
+msgstr ""
#: templates/email_confirmation.jinja2:2
msgid "Awaiting Email Confirmation"
-msgstr "メール確認待ち"
+msgstr ""
#: templates/email_confirmation.jinja2:20
msgid "Check your email inbox"
-msgstr "メールの受信箱を確認する"
+msgstr ""
#: templates/email_confirmation.jinja2:21
-msgid "To complete your verification, click on the link in the email AuthRocket has sent to"
-msgstr "AuthRocketから送信されたメールに記載されているリンクをクリックすると、認証が完了します"
+msgid ""
+"To complete your verification, click on the link in the email AuthRocket "
+"has sent to"
+msgstr ""
#: templates/email_confirmation.jinja2:25
msgid "Waiting for you to confirm"
-msgstr "ご確認お待ちしております"
+msgstr ""
#: templates/email_confirmation.jinja2:28
msgid "Please check both your spam and inbox"
-msgstr "迷惑メールと受信箱を確認してください"
+msgstr ""
#: templates/email_confirmation.jinja2:29
msgid "AuthRocket is our authentication service"
-msgstr "AuthRocket は当社の認証サービスです"
+msgstr ""
#: templates/email_confirmation.jinja2:30
msgid "Email wrong or didn't receive an email?"
-msgstr "メールが間違っているか、メールを受信していませんか?"
+msgstr ""
#: templates/email_confirmation.jinja2:30
msgid "Go to your AuthRocket Account"
-msgstr "AuthRocket アカウントに移動します"
+msgstr ""
#: templates/email_confirmation.jinja2:30
msgid "to update your email or resend a verification email"
-msgstr "メールを更新するか、確認メールを再送信する"
+msgstr ""
#: templates/email_confirmation.jinja2:33
msgid "You can close this browser tab!"
-msgstr "このブラウザ タブを閉じて下さい!"
+msgstr ""
#: templates/email_confirmation.jinja2:33
-msgid "After email verification, a new tab will automatically open, and you will proceed with filling out your account details"
-msgstr "Eメール認証後、自動的に新しいタブが開き、アカウント情報の入力に進みます"
+msgid ""
+"After email verification, a new tab will automatically open, and you will"
+" proceed with filling out your account details"
+msgstr ""
#: templates/embedded_pdf.jinja2:2
msgid "Embedded PDF"
-msgstr "挿入されたPDF"
+msgstr ""
#: templates/embedded_pdf.jinja2:25
-msgid "This report is generated by a third party without information regarding age, height or weight."
-msgstr "この報告書は、年齢、身長、体重に関連した情報は使用せず第三者によって作成されています。"
+msgid "This report is generated by a third party."
+msgstr ""
-#: templates/emperor.jinja2:2 templates/emperor.jinja2:65 templates/sitebase.jinja2:45
+#: templates/emperor.jinja2:2 templates/emperor.jinja2:65
+#: templates/sitebase.jinja2:58
msgid "Emperor Playground"
-msgstr "皇帝の遊び場"
+msgstr ""
#: templates/emperor.jinja2:68
msgid "PCOA URL"
-msgstr "PCOA URL"
+msgstr ""
#: templates/emperor.jinja2:73
msgid "Go!"
-msgstr "次へ進む!"
+msgstr ""
#: templates/error.jinja2:2
msgid "Error Page"
-msgstr "エラーページ"
+msgstr ""
#: templates/error.jinja2:10
msgid ""
-"An error seemed to have occurred (see below). It is most likely our fault. We are actively modifying our infrastructure to support COVID-19 research, and we're still "
-"in the process of handling the different type of scenarios that can happen on a website. We apologize for any inconvenience."
+"An error seemed to have occurred (see below). It is most likely our "
+"fault. We are actively modifying our infrastructure to support COVID-19 "
+"research, and we're still in the process of handling the different type "
+"of scenarios that can happen on a website. We apologize for any "
+"inconvenience."
msgstr ""
-"私たちの不具合によりエラーが発生しました(下記参照)。私たちは現在新型コロナウイルス感染症の研究をサポートするため組織内編制をしており、ウェブ上で起こりうる様々な問題に"
-"対応してます。ご不便をおかけして申し訳ありません。"
#: templates/error.jinja2:13
msgid "If you have any concerns, please email us at"
-msgstr "ご不明な点ががございましたら、こちらまでご連絡下さい"
+msgstr ""
#: templates/error.jinja2:13
msgid "and please note the error below"
-msgstr "下記のエラーを参照して下さい"
+msgstr ""
#: templates/error.jinja2:15
msgid "Error"
-msgstr "エラー"
+msgstr ""
-#: templates/home.jinja2:2 templates/sitebase.jinja2:105 templates/submit_interest.jinja2:2 templates/submit_interest_confirm.jinja2:2 templates/update_address.jinja2:2
+#: templates/home.jinja2:2 templates/submit_interest.jinja2:2
+#: templates/submit_interest_confirm.jinja2:2 templates/update_address.jinja2:2
#: templates/update_address_confirm.jinja2:2
msgid "Home"
-msgstr "家"
+msgstr ""
-#: templates/home.jinja2:34
+#: templates/home.jinja2:30
msgid "Welcome!"
-msgstr "ようこそ!"
+msgstr ""
+
+#: templates/home.jinja2:35 templates/sitebase.jinja2:91
+msgid "Sign Up"
+msgstr ""
+
+#: templates/home.jinja2:40 templates/sitebase.jinja2:90
+msgid "Log In"
+msgstr ""
+
+#: templates/kits.jinja2:2 templates/kits.jinja2:177 templates/kits.jinja2:197
+#: templates/reports.jinja2:63 templates/sample.jinja2:2
+#: templates/sample.jinja2:184 templates/sitebase.jinja2:133
+#: templates/sitebase.jinja2:155 templates/sitebase.jinja2:157
+msgid "My Kits"
+msgstr ""
+
+#: templates/kits.jinja2:62 templates/kits.jinja2:214 templates/kits.jinja2:262
+msgid "KitID"
+msgstr ""
+
+#: templates/kits.jinja2:98 templates/reports.jinja2:26
+msgid "View Results"
+msgstr ""
+
+#: templates/kits.jinja2:183
+msgid ""
+"Currently, \"My Kits\" is unavailable in your country or region. We "
+"apologize for any inconvenience."
+msgstr ""
+
+#: templates/kits.jinja2:192
+msgid ""
+"Click on the following link if you would like to contribute to receive a "
+"kit"
+msgstr ""
+
+#: templates/kits.jinja2:192 templates/kits.jinja2:205
+msgid "Get a Kit"
+msgstr ""
+
+#: templates/kits.jinja2:203
+msgid "Have a KitID"
+msgstr ""
+
+#: templates/kits.jinja2:231 templates/reports.jinja2:75
+msgid "Sample Received - Results Pending"
+msgstr ""
+
+#: templates/kits.jinja2:249
+msgid "To register your kit, enter your Kit ID below"
+msgstr ""
+
+#: templates/kits.jinja2:255
+msgid "Register Kit"
+msgstr ""
+
+#: templates/kits.jinja2:265
+msgid "Which barcode(s) are you using from this kit (select all that apply)?"
+msgstr ""
+
+#: templates/kits.jinja2:265
+msgid "Each collection tube you receive has a unique barcode printed on the side."
+msgstr ""
-#: templates/home.jinja2:38
-msgid "SIGN UP"
-msgstr "登録"
+#: templates/kits.jinja2:266
+msgid "1. Select the barcode(s) you are using"
+msgstr ""
+
+#: templates/kits.jinja2:267
+msgid ""
+"2. Add the date and time of sample collection and select the sample type "
+"taken."
+msgstr ""
+
+#: templates/kits.jinja2:268
+msgid "Important"
+msgstr ""
+
+#: templates/kits.jinja2:269
+msgid ""
+"The sample cannot be processed in the lab until this information is "
+"complete."
+msgstr ""
-#: templates/home.jinja2:42
-msgid "Already have an account?"
-msgstr "既にアカウントをお持ちですか?"
+#: templates/kits.jinja2:270
+msgid ""
+"Keep a record of these details. The barcode is needed to resolve any "
+"issues you may have with your sample collection."
+msgstr ""
-#: templates/home.jinja2:43
-msgid "Welcome back!"
-msgstr "ようこそ!"
+#: templates/kits.jinja2:270
+msgid "What is the barcode and why is it important?"
+msgstr ""
-#: templates/home.jinja2:43
-msgid "LOG IN"
-msgstr "ログイン"
+#: templates/kits.jinja2:275
+msgid "Confirm"
+msgstr ""
#: templates/myfoodrepo_no_slots.jinja2:2
msgid "MyFoodRepo unavailable"
-msgstr "MyFoodRepo利用不可"
+msgstr ""
#: templates/myfoodrepo_no_slots.jinja2:16
msgid "MyFoodRepo is currently unavailabile"
-msgstr "MyFoodRepoは現在ご利用いただけません"
+msgstr ""
#: templates/myfoodrepo_no_slots.jinja2:19
-msgid "We apologize, but unfortunately MyFoodRepo is not available at this time. Please check back in a few days and try again."
-msgstr "申し訳ございませんが、現在MyFoodRepoはご利用いただけません。数日後、再度お試しください。"
+msgid ""
+"We apologize, but unfortunately MyFoodRepo is not available at this time."
+" Please check back in a few days and try again."
+msgstr ""
#: templates/myfoodrepo_no_slots.jinja2:22
msgid ""
-"MyFoodRepo is human curated to ensure the highest accuracy in reported dietary detail. Because the process is not fully automated, we need to limit the number of "
-"concurrent users who take part. We apologize for the inconvenience."
+"MyFoodRepo is human curated to ensure the highest accuracy in reported "
+"dietary detail. Because the process is not fully automated, we need to "
+"limit the number of concurrent users who take part. We apologize for the "
+"inconvenience."
msgstr ""
-"MyFoodRepoは、提出された食事の詳細が正確であることを検証するため、適任者が監修しています。このプロセスは完全に自動化されていないため、同時にアクセスするユーザー数の制限"
-"をする必要があります。ご不便をおかけして申し訳ございません。"
-#: templates/myfoodrepo_no_slots.jinja2:25 templates/post_sample_questionnaire.jinja2:30
+#: templates/myfoodrepo_no_slots.jinja2:25
+#: templates/post_sample_questionnaire.jinja2:30
msgid "Back to Samples"
-msgstr "便サンプルに戻る"
+msgstr ""
-#: templates/new_participant.jinja2:2 templates/new_participant.jinja2:194
+#: templates/new_participant.jinja2:2 templates/signed_consent.jinja2:2
msgid "Consent"
-msgstr "同意"
+msgstr ""
-#: templates/new_participant.jinja2:119 templates/new_participant.jinja2:120 templates/new_participant.jinja2:121 templates/new_participant.jinja2:122
+#: templates/new_participant.jinja2:31 templates/new_participant.jinja2:32
+#: templates/new_participant.jinja2:33 templates/new_participant.jinja2:34
msgid "Saving..."
-msgstr "保存中..."
+msgstr ""
-#: templates/new_participant.jinja2:144
-msgid ""
-"It looks like you are creating a new source that may be similar or the same as an existing source. If this is the same person as an existing source, please consider "
-"providing new samples or survey responses under that source"
+#: templates/new_participant.jinja2:60 templates/new_participant.jinja2:84
+#: templates/new_participant.jinja2:101 templates/new_participant.jinja2:103
+#: templates/new_participant.jinja2:118 templates/new_participant.jinja2:255
+#: templates/new_participant.jinja2:355 templates/new_participant.jinja2:396
+#: templates/new_participant.jinja2:425 templates/new_participant.jinja2:468
+msgid "Please confirm that you have read this form."
msgstr ""
-"既存のサンプルと類似しているか、又は全く同じサンプルを作成している可能性があります。万が一既存のサンプルと同一人物である場合、新しい便サンプルと調査票を提供して下さい"
-#: templates/new_participant.jinja2:229 templates/new_participant.jinja2:273 templates/new_participant.jinja2:307 templates/new_participant.jinja2:328
-msgid "https://oag.ca.gov/sites/all/files/agweb/pdfs/research/bill_of_rights.pdf"
-msgstr "https://oag.ca.gov/sites/all/files/agweb/pdfs/research/bill_of_rights.pdf"
+#: templates/new_participant.jinja2:61 templates/new_participant.jinja2:81
+#: templates/new_participant.jinja2:102 templates/new_participant.jinja2:119
+#: templates/new_participant.jinja2:266 templates/new_participant.jinja2:316
+#: templates/new_participant.jinja2:407 templates/new_participant.jinja2:479
+msgid "Please enter the participant name."
+msgstr ""
-#: templates/new_participant.jinja2:240 templates/new_participant.jinja2:280 templates/new_participant.jinja2:314 templates/new_participant.jinja2:336
-msgid "I Accept"
-msgstr "承諾します"
+#: templates/new_participant.jinja2:62 templates/new_participant.jinja2:85
+#: templates/new_participant.jinja2:104 templates/new_participant.jinja2:277
+#: templates/new_participant.jinja2:366 templates/new_participant.jinja2:436
+msgid "Please enter the parent or guardian name."
+msgstr ""
-#: templates/new_results_page.jinja2:2 templates/sample_results.jinja2:2
-msgid "Sample Results"
-msgstr "便サンプルの結果"
+#: templates/new_participant.jinja2:80 templates/new_participant.jinja2:305
+msgid "Please confirm that you will be in this study."
+msgstr ""
-#: templates/new_results_page.jinja2:216
-msgid "11 to 20"
-msgstr "11から20"
+#: templates/new_participant.jinja2:82 templates/new_participant.jinja2:327
+msgid ""
+"Please confirm that the participant is voluntarily and knowingly giving "
+"consent."
+msgstr ""
-#: templates/new_results_page.jinja2:217
-msgid "21 to 30"
-msgstr "21から30"
+#: templates/new_participant.jinja2:83 templates/new_participant.jinja2:338
+msgid "Please enter the name of the person obtaining assent."
+msgstr ""
-#: templates/new_results_page.jinja2:218
-msgid "5-6 hours"
-msgstr "5-6時間"
+#: templates/new_participant.jinja2:143
+msgid ""
+"It looks like you are creating a new profile that may be similar or the "
+"same as an existing profile. If this is the same person as an existing "
+"profile, please consider providing new samples or survey responses under "
+"that profile."
+msgstr ""
-#: templates/new_results_page.jinja2:219
-msgid "6 to 10"
-msgstr "6から10"
+#: templates/new_participant.jinja2:162 templates/new_participant.jinja2:176
+#: templates/new_participant.jinja2:283 templates/new_participant.jinja2:372
+#: templates/new_participant.jinja2:442 templates/new_participant.jinja2:485
+msgid "I Accept"
+msgstr ""
-#: templates/new_results_page.jinja2:220
-msgid "6-7 hours"
-msgstr "6-7時間"
+#: templates/new_participant.jinja2:193
+msgid "Biospecimen Consent Form"
+msgstr ""
-#: templates/new_results_page.jinja2:221
-msgid "7-8 hours"
-msgstr "7-8時間"
+#: templates/new_participant.jinja2:195
+msgid "Data Consent Form"
+msgstr ""
+
+#: templates/new_participant.jinja2:206
+msgid ""
+"Signature and agreement of this consent form is required to process your "
+"sample(s)."
+msgstr ""
+
+#: templates/new_participant.jinja2:212
+msgid "Select age range of participant"
+msgstr ""
+
+#: templates/new_participant.jinja2:252 templates/new_participant.jinja2:352
+#: templates/new_participant.jinja2:422 templates/new_participant.jinja2:465
+#: templates/signed_consent.jinja2:23 templates/signed_consent.jinja2:107
+#: templates/signed_consent.jinja2:163 templates/signed_consent.jinja2:200
+msgid "https://oag.ca.gov/sites/all/files/agweb/pdfs/research/bill_of_rights.pdf"
+msgstr ""
+
+#: templates/new_participant.jinja2:282 templates/new_participant.jinja2:371
+#: templates/new_participant.jinja2:441 templates/new_participant.jinja2:484
+#: templates/sample.jinja2:241
+msgid "Cancel"
+msgstr ""
+
+#: templates/new_participant.jinja2:496
+msgid "Warning"
+msgstr ""
+
+#: templates/new_participant.jinja2:502
+msgid "Return to Home Page"
+msgstr ""
+
+#: templates/new_participant.jinja2:503
+msgid "Proceed with Creating New Source"
+msgstr ""
+
+#: templates/new_results_page.jinja2:2 templates/sample_results.jinja2:2
+msgid "Sample Results"
+msgstr ""
+
+#: templates/new_results_page.jinja2:216
+msgid "11 to 20"
+msgstr ""
+
+#: templates/new_results_page.jinja2:217
+msgid "21 to 30"
+msgstr ""
+
+#: templates/new_results_page.jinja2:218
+msgid "5-6 hours"
+msgstr ""
+
+#: templates/new_results_page.jinja2:219
+msgid "6 to 10"
+msgstr ""
+
+#: templates/new_results_page.jinja2:220
+msgid "6-7 hours"
+msgstr ""
+
+#: templates/new_results_page.jinja2:221
+msgid "7-8 hours"
+msgstr ""
#: templates/new_results_page.jinja2:222
msgid "8 or more hours"
-msgstr "8時間以上"
+msgstr ""
#: templates/new_results_page.jinja2:223 templates/new_results_page.jinja2:870
msgid "Daily"
-msgstr "毎日"
+msgstr ""
#: templates/new_results_page.jinja2:224
msgid "Less than 5"
-msgstr "5以下"
+msgstr ""
#: templates/new_results_page.jinja2:225
msgid "Less than 5 hours"
-msgstr "5時間以下"
+msgstr ""
#: templates/new_results_page.jinja2:226
msgid "More than 30"
-msgstr "30以上"
+msgstr ""
#: templates/new_results_page.jinja2:227 templates/new_results_page.jinja2:866
msgid "Never"
-msgstr "全くない"
+msgstr ""
-#: templates/new_results_page.jinja2:228 templates/new_results_page.jinja2:233 templates/new_results_page.jinja2:234 templates/new_results_page.jinja2:235
+#: templates/new_results_page.jinja2:228 templates/new_results_page.jinja2:233
+#: templates/new_results_page.jinja2:234 templates/new_results_page.jinja2:235
#: templates/new_results_page.jinja2:855 templates/new_results_page.jinja2:865
msgid "Not provided"
-msgstr "情報提供できない"
+msgstr ""
#: templates/new_results_page.jinja2:229 templates/new_results_page.jinja2:868
msgid "Occasionally (1-2 times/week)"
-msgstr "たまに(週に1-2回)"
+msgstr ""
#: templates/new_results_page.jinja2:230
msgid "Rarely (a few times/month)"
-msgstr "ほとんどない(月に数回)"
+msgstr ""
#: templates/new_results_page.jinja2:231 templates/new_results_page.jinja2:867
msgid "Rarely (less than once/week)"
-msgstr "ほとんどない(週に一回未満)"
+msgstr ""
#: templates/new_results_page.jinja2:232 templates/new_results_page.jinja2:869
msgid "Regularly (3-5 times/week)"
-msgstr "定期的に(週に3-5回)"
+msgstr ""
#: templates/new_results_page.jinja2:319
msgid "Microbiomes Across the Body"
-msgstr "体内の微生物"
+msgstr ""
#: templates/new_results_page.jinja2:322
msgid ""
-"In this map, we've placed your sample relative to all the other samples we have in Microsetta. As you can see, there are a few different types of samples people have "
-"contributed, and the microbial configurations present can be REALLY different."
+"In this map, we've placed your sample relative to all the other samples "
+"we have in Microsetta. As you can see, there are a few different types of"
+" samples people have contributed, and the microbial configurations "
+"present can be REALLY different."
msgstr ""
-"このマップ上では、マイクロゼッタが所持しる便サンプルとあなたの便サンプルを相対的に配置しています。ご覧のように、皆様からご提供いただいた便サンプルには幾つかの種類があ"
-"り、微生物構成も実に様々であることがお分かりいただけると思います。"
-#: templates/new_results_page.jinja2:327 templates/new_results_page.jinja2:351 templates/new_results_page.jinja2:458
+#: templates/new_results_page.jinja2:327 templates/new_results_page.jinja2:351
+#: templates/new_results_page.jinja2:458
msgid "Microbiomes Across the World"
-msgstr "世界中の微生物"
+msgstr ""
#: templates/new_results_page.jinja2:330 templates/new_results_page.jinja2:354
msgid ""
-"Researchers have noted large differences in our microbiomes depending on where we live. The reason WHY is not well understood, but we suspect factors such as diet or "
-"environmental exposures (e.g., plants, what's in your house, pollution, how often you come in contact with soil, etc) may be be major factors."
+"Researchers have noted large differences in our microbiomes depending on "
+"where we live. The reason WHY is not well understood, but we suspect "
+"factors such as diet or environmental exposures (e.g., plants, what's in "
+"your house, pollution, how often you come in contact with soil, etc) may "
+"be be major factors."
msgstr ""
-"研究者たちは、住んでいる場所によって、私たちの腸内細菌に大きな違いがあることに注目しています。その理由はまだよく分かっていませんが、食生活や環境因子(例:植物、家の中の"
-"微生物、汚染、土壌に触れる頻度等)が大きな要因になっているのではないかと考えられています。"
#: templates/new_results_page.jinja2:330 templates/new_results_page.jinja2:354
-msgid "Researchers do not know how much these differences matter! They certainly may."
-msgstr "研究者たちは、これらの違いがどの程度重要なものなのかをまだ把握していません。確かにそうかもしれません。"
+msgid ""
+"Researchers do not know how much these differences matter! They certainly"
+" may."
+msgstr ""
-#: templates/new_results_page.jinja2:335 templates/new_results_page.jinja2:359 templates/new_results_page.jinja2:463
+#: templates/new_results_page.jinja2:335 templates/new_results_page.jinja2:359
+#: templates/new_results_page.jinja2:463
msgid "Microbiomes Across the Lifespan"
-msgstr "生涯にわたる微生物"
+msgstr ""
#: templates/new_results_page.jinja2:338 templates/new_results_page.jinja2:362
-msgid "One major factor associated with gut microbiomes is the age of the individual, emphasized here by life stages."
-msgstr "腸内細菌に関連する大きな要因のひとつに年齢があります。ここでは、生命段階と呼ばれるものです。"
+msgid ""
+"One major factor associated with gut microbiomes is the age of the "
+"individual, emphasized here by life stages."
+msgstr ""
#: templates/new_results_page.jinja2:338 templates/new_results_page.jinja2:362
msgid ""
-"Interestingly, infants are relatively similar microbially regardless of where they were born. But, as individuals age, it seems like their microbiomes reflect regional "
-"or population differences."
+"Interestingly, infants are relatively similar microbially regardless of "
+"where they were born. But, as individuals age, it seems like their "
+"microbiomes reflect regional or population differences."
msgstr ""
-"興味深いことに、どの乳児も生まれた場所に関係なく、微生物学的に比較的類似しています。しかし、年齢が上がるにつれて、微生物は地域性や種族性に反映されるようになります。"
#: templates/new_results_page.jinja2:343 templates/new_results_page.jinja2:449
msgid "Microbiomes in the Environment"
-msgstr "環境内の微生物"
+msgstr ""
#: templates/new_results_page.jinja2:346
msgid ""
-"Microbes are EVERYWHERE though! Using these same techniques described above, we compared your microbiome to samples collected from all over the surfaces from a brand "
-"new hospital."
-msgstr "しかし、微生物はどこにでも存在します。上記と同じ手法で、私たちはあなたの腸内細菌を、新しく設立された病院の表面から摂取した微生物と比較しました。"
+"Microbes are EVERYWHERE though! Using these same techniques described "
+"above, we compared your microbiome to samples collected from all over the"
+" surfaces from a brand new hospital."
+msgstr ""
#: templates/new_results_page.jinja2:346
-msgid "As you can see, skin samples tend to more closely resemble those from the built environment, which makes sense as skin cells are constantly shedding from you."
-msgstr "ご覧のとおり、皮膚から採取したサンプルは、育った環境に生息する微生物により似ている傾向があります。これは、皮膚細胞が規則的に垢となって剥がれ落ちていくためです。"
+msgid ""
+"As you can see, skin samples tend to more closely resemble those from the"
+" built environment, which makes sense as skin cells are constantly "
+"shedding from you."
+msgstr ""
#: templates/new_results_page.jinja2:453
msgid "The Microsetta Initiative"
-msgstr "マイクロゼッタ イニシアティブ"
+msgstr ""
#: templates/new_results_page.jinja2:480
msgid "Publication link"
-msgstr "出版物リンク"
+msgstr ""
#: templates/new_results_page.jinja2:482
msgid "Data access (Qiita study"
-msgstr "データアクセス(Qiita調査)"
+msgstr ""
#: templates/new_results_page.jinja2:625
msgid "Download the spreadsheet"
-msgstr "表計算ソフトをダウンロードして下さい"
+msgstr ""
#: templates/new_results_page.jinja2:632
-msgid "The broadest classification like Bacteria, Archaea and Eukaryokes (what humans are!)"
-msgstr "細菌、古細菌、真核生物など最も多様な分類 (なんと!)"
+msgid ""
+"The broadest classification like Bacteria, Archaea and Eukaryokes (what "
+"humans are!)"
+msgstr ""
#: templates/new_results_page.jinja2:635
-msgid "Within the kingdom Eukarya, this is like the difference between humans and plants"
-msgstr "真核生物界では、これは人間と植物の違いのようなものです"
+msgid ""
+"Within the kingdom Eukarya, this is like the difference between humans "
+"and plants"
+msgstr ""
#: templates/new_results_page.jinja2:638
msgid "Within the phylum Chordata, this is along the lines of humans and fish"
-msgstr "脊索動物門の中では、これは人間と魚の進化の過程に沿っています"
+msgstr ""
#: templates/new_results_page.jinja2:641
-msgid "Within the class Mammalia, this is like the difference between whales and a dogs"
-msgstr "哺乳類綱の中では、これはクジラと犬の違いのようなものです"
+msgid ""
+"Within the class Mammalia, this is like the difference between whales and"
+" a dogs"
+msgstr ""
#: templates/new_results_page.jinja2:644
msgid "With the order Carnivora are the families for dogs and cats"
-msgstr "なので肉食動物はイヌ科とネコ科に属します"
+msgstr ""
#: templates/new_results_page.jinja2:647
-msgid "Within the family Canidae, you would find a genus for foxes and one for wolves"
-msgstr "イヌ科には、キツネ属とオオカミ属があります"
+msgid ""
+"Within the family Canidae, you would find a genus for foxes and one for "
+"wolves"
+msgstr ""
-#: templates/new_results_page.jinja2:834 templates/new_results_page.jinja2:837 templates/new_results_page.jinja2:843 templates/new_results_page.jinja2:851
+#: templates/new_results_page.jinja2:834 templates/new_results_page.jinja2:837
+#: templates/new_results_page.jinja2:843 templates/new_results_page.jinja2:851
#: templates/new_results_page.jinja2:854 templates/new_results_page.jinja2:864
msgid "Unspecified"
-msgstr "不明"
+msgstr ""
#: templates/new_results_page.jinja2:844
msgid "chose not to provide their age"
-msgstr "年齢を提供しない"
+msgstr ""
#: templates/new_results_page.jinja2:846
msgid "is"
-msgstr "は"
+msgstr ""
#: templates/new_results_page.jinja2:846
msgid "years old"
-msgstr "歳"
+msgstr ""
#: templates/new_results_page.jinja2:879 templates/new_results_page.jinja2:891
msgid "chose not to say how many sweets they eat"
-msgstr "どのくらいお菓子を摂取しているか答えない"
+msgstr ""
#: templates/new_results_page.jinja2:881
msgid "eats sweets"
-msgstr "甘い物を食べる"
+msgstr ""
#: templates/new_results_page.jinja2:885
msgid "eats more sugary sweets than you"
-msgstr "あなたより甘いお菓子を食べる"
+msgstr ""
#: templates/new_results_page.jinja2:887
msgid "eats fewer sugary sweets than you"
-msgstr "あなたより甘いお菓子を食べない"
+msgstr ""
#: templates/new_results_page.jinja2:889
msgid "eats about the same number of sugary sweets as you"
-msgstr "あなたと同じくらい甘いお菓子を食べる"
+msgstr ""
#: templates/new_results_page.jinja2:1129
msgid "Rank Distributions"
-msgstr "ランク分布"
+msgstr ""
#: templates/new_results_page.jinja2:1147
msgid "My Sample"
-msgstr "私の便サンプル"
+msgstr ""
#: templates/new_results_page.jinja2:1153
msgid "How abundant are my microbes compared everyone in Microsetta?"
-msgstr "私の微生物はマイクロゼッタの研究に参加した人々の微生物と比較して、どのくらい豊富にいるのでしょうか?"
+msgstr ""
#: templates/new_results_page.jinja2:1156
msgid "Common types of microbes"
-msgstr "一般的な微生物の種類"
+msgstr ""
#: templates/new_results_page.jinja2:1162
msgid "Least Abundant"
-msgstr "最も少ない"
+msgstr ""
#: templates/new_results_page.jinja2:1162
msgid "Most Abundant"
-msgstr "最も多い"
+msgstr ""
#: templates/new_results_page.jinja2:1192
msgid ""
-"whole genome sequencing, a technique that produces a large number of small DNA sequences from all of the microbial genomes in your sample. With enough sequences you "
-"can even see the variation that exists between microbes of the same species."
+"whole genome sequencing, a technique that produces a large number of "
+"small DNA sequences from all of the microbial genomes in your sample. "
+"With enough sequences you can even see the variation that exists between "
+"microbes of the same species."
msgstr ""
-"全ゲノム配列決定とは、サンプル内のすべての微生物ゲノムから多数の小さな DNA 配列を生成する技術です。十分な数の配列があれば、同じ微生物間に存在する変異も見ることができま"
-"す。"
#: templates/new_results_page.jinja2:1195
msgid ""
-"16S. This technique produces DNA sequences from a specific variable region (V4) within a microbial gene (the 16S small subunit ribosomal gene). DNA sequences from "
-"this region of this gene can be used like a microbial barcode, providing researchers evidence of the types of microbes that may be present in your sample."
+"16S. This technique produces DNA sequences from a specific variable "
+"region (V4) within a microbial gene (the 16S small subunit ribosomal "
+"gene). DNA sequences from this region of this gene can be used like a "
+"microbial barcode, providing researchers evidence of the types of "
+"microbes that may be present in your sample."
msgstr ""
-"16S rRNA 菌叢解析。この技術は、微生物遺伝子 (16S 小サブユニット リボソーム遺伝子) 内の可変領域 (V4) から DNA 配列を決定するものです。この遺伝子の領域からなるDNA 配列か"
-"ら、微生物をバーコードのように使用して、サンプル内に生存する微生物の種類を検証することができます。"
-#: templates/new_results_page.jinja2:1319 templates/sample.jinja2:163 templates/sample_results.jinja2:128
+#: templates/new_results_page.jinja2:1319 templates/sample_results.jinja2:128
msgid "Source"
-msgstr "由来"
+msgstr ""
-#: templates/new_results_page.jinja2:1320 templates/sample_results.jinja2:129 templates/source.jinja2:171
+#: templates/new_results_page.jinja2:1320 templates/sample_results.jinja2:129
msgid "Results"
-msgstr "結果"
+msgstr ""
-#: templates/new_results_page.jinja2:1329 templates/new_results_page.jinja2:1343
+#: templates/new_results_page.jinja2:1329
+#: templates/new_results_page.jinja2:1343
msgid "How do you compare?"
-msgstr "どのように比較しますか?"
+msgstr ""
-#: templates/new_results_page.jinja2:1330 templates/new_results_page.jinja2:1355 templates/new_results_page.jinja2:1357 templates/new_results_page.jinja2:1388
+#: templates/new_results_page.jinja2:1330
+#: templates/new_results_page.jinja2:1355
+#: templates/new_results_page.jinja2:1357
+#: templates/new_results_page.jinja2:1388
msgid "Diversity"
-msgstr "多様性"
+msgstr ""
-#: templates/new_results_page.jinja2:1331 templates/new_results_page.jinja2:1363 templates/new_results_page.jinja2:1365 templates/new_results_page.jinja2:1457
+#: templates/new_results_page.jinja2:1331
+#: templates/new_results_page.jinja2:1363
+#: templates/new_results_page.jinja2:1365
+#: templates/new_results_page.jinja2:1457
msgid "Similarity"
-msgstr "類似性"
+msgstr ""
-#: templates/new_results_page.jinja2:1332 templates/new_results_page.jinja2:1371 templates/new_results_page.jinja2:1373
+#: templates/new_results_page.jinja2:1332
+#: templates/new_results_page.jinja2:1371
+#: templates/new_results_page.jinja2:1373
msgid "Your Inner Zoo"
-msgstr "あなたの体内の動物園"
+msgstr ""
-#: templates/new_results_page.jinja2:1333 templates/new_results_page.jinja2:1379 templates/new_results_page.jinja2:1381 templates/new_results_page.jinja2:1670
+#: templates/new_results_page.jinja2:1333
+#: templates/new_results_page.jinja2:1379
+#: templates/new_results_page.jinja2:1381
+#: templates/new_results_page.jinja2:1670
msgid "Microbiome Map"
-msgstr "微生物マップ"
+msgstr ""
-#: templates/new_results_page.jinja2:1334 templates/new_results_page.jinja2:1640
+#: templates/new_results_page.jinja2:1334
+#: templates/new_results_page.jinja2:1640
msgid "How can I learn more?"
-msgstr "どうすればもっと学べますか?"
+msgstr ""
#: templates/new_results_page.jinja2:1347
msgid ""
-"Your microbiome is a rainforest of diverse microbes dominated by microbes - some 40 trillion bacteria, weighing around 1 lb, live all over and in your body. The "
-"diversity of your microbiome, how similar it is to other peoples', and the types of bacteria living inside you have all been linked to health, disease and lifestyle "
-"traits in numerous studies."
+"Your microbiome is a rainforest of diverse microbes dominated by microbes"
+" - some 40 trillion bacteria, weighing around 1 lb, live all over and in "
+"your body. The diversity of your microbiome, how similar it is to other "
+"peoples', and the types of bacteria living inside you have all been "
+"linked to health, disease and lifestyle traits in numerous studies."
msgstr ""
-"あなたは、多様な微生物の集合体です。あなたの体内には、おおよそ40兆、1ポンドの重さからなる細菌が生息しています。あなたの微生物の多様性、他の人々との類似性、体内に生息す"
-"る細菌の種類はすべて健康、病気、生活習慣に関連していることが多くの研究から報告されています。"
#: templates/new_results_page.jinja2:1351
msgid ""
-"Scientists often use many different approaches to see how your microbiome differs. We've analyzed your microbiome sample using standard microbiome research tools, and "
-"the results are broken down below in a few different categories"
+"Scientists often use many different approaches to see how your microbiome"
+" differs. We've analyzed your microbiome sample using standard microbiome"
+" research tools, and the results are broken down below in a few different"
+" categories"
msgstr ""
-"科学者は、様々な方法で腸内細菌がどのように異なるかを調べています。今回は基本的な腸内細菌研究手法を使って、あなたの便サンプルを分析しました。結果は、以下の通り幾つかの異"
-"なる項目に分類されています"
#: templates/new_results_page.jinja2:1357
msgid "How many kinds of microbes were in your sample? Check out your"
-msgstr "あなたの便サンプルには何種類の微生物が含まれていましたか?確認してみて下さい"
+msgstr ""
#: templates/new_results_page.jinja2:1365
-msgid "What kinds of people have microbiomes like yours? Check out your microbiome"
-msgstr "あなたと類似した微生物を持っているのはどのような人々ですか?あなたの腸内細菌を確認して下さい"
+msgid ""
+"What kinds of people have microbiomes like yours? Check out your "
+"microbiome"
+msgstr ""
#: templates/new_results_page.jinja2:1373
msgid "What particular kinds of microbes are in your sample? Wander through"
-msgstr "あなたの便サンプルにはどのような種類の微生物が含まれていますか?さまよう"
+msgstr ""
#: templates/new_results_page.jinja2:1381
msgid "Where are you on the"
-msgstr "あなたはどこに"
+msgstr ""
#: templates/new_results_page.jinja2:1391
msgid ""
-"There are anywhere from hundreds of millions to hundreds of billions of different types of bacteria living on planet earth. This dwarfs the meager 2 million different "
-"kinds of animals and plants that you can see with your eyes. The average American has FILLIN different types of microbes in "
-"a stool sample, which is lower than we find in people living a more hunter-gatherer lifestyle, like the FILLIN we "
-"find in samples from the Smits et al. Science 2017\" data-html=\"true\">Hadza ."
+"There are anywhere from hundreds of millions to hundreds of billions of "
+"different types of bacteria living on planet earth. This dwarfs the "
+"meager 2 million different kinds of animals and plants that you can see "
+"with your eyes. The average American has FILLIN different types of microbes in a"
+" stool sample, which is lower than we find in people living a more "
+"hunter-gatherer lifestyle, like the FILLIN we find in samples from the Smits et al. Science 2017\" data-"
+"html=\"true\">Hadza ."
msgstr ""
-"地球上には、数億から数千億の様々な種類の細菌が生息しています。私たちの肉眼で見ることができる動植物はわずか 200 万種類しかいません。平均的なアメリカ人の便サンプルには"
-"様々な種類の微生物が生息していますが、これはタンザニア中北部の先住民族(ハヅァ族)のように狩猟採集生活をしている民族よりも低い数値です。"
#: templates/new_results_page.jinja2:1395
msgid "Number of different microbes found in your sample"
-msgstr "あなたの便サンプルから見つかった様々な微生物の数"
+msgstr ""
#: templates/new_results_page.jinja2:1402
msgid ""
-"When we calculated the diversity of groups for samples in our database, we found diversity is associated with how you live your life. Here, we summarized the average "
-"microbiome diversity for a few of the questionnaire responses, specifically people who eat more than 30 plants a week, exercise regularly, drink water regularly, or "
-"sleep more than 6 hours a night."
+"When we calculated the diversity of groups for samples in our database, "
+"we found diversity is associated with how you live your life. Here, we "
+"summarized the average microbiome diversity for a few of the "
+"questionnaire responses, specifically people who eat more than 30 plants "
+"a week, exercise regularly, drink water regularly, or sleep more than 6 "
+"hours a night."
msgstr ""
-"私たちのデータベースから便サンプルの多様性を調べたところ、微生物の多様性は生活習慣に関連していることが分かりました。幾つかの調査回答を基に、腸内細菌の多様性の平均値を調"
-"べました。具体的には 週に 30 種類以上の植物を摂取している人、定期的に運動している人、定期的に水を飲んでいる人、または 6 時間以上睡眠を取っている人の腸内細菌を調べまし"
-"た。"
#: templates/new_results_page.jinja2:1410
msgid "Eat more than 30 plants a week"
-msgstr "30種類以上の植物を食べる"
+msgstr ""
-#: templates/new_results_page.jinja2:1413 templates/new_results_page.jinja2:1424 templates/new_results_page.jinja2:1437 templates/new_results_page.jinja2:1448
+#: templates/new_results_page.jinja2:1413
+#: templates/new_results_page.jinja2:1424
+#: templates/new_results_page.jinja2:1437
+#: templates/new_results_page.jinja2:1448
msgid "unique microbial features"
-msgstr "独特な微生物の特徴"
+msgstr ""
#: templates/new_results_page.jinja2:1421
msgid "Exercise regularly"
-msgstr "定期的に運動する"
+msgstr ""
#: templates/new_results_page.jinja2:1434
msgid "Drink 1L or water regularly"
-msgstr "定期的に1Lの水を飲む"
+msgstr ""
#: templates/new_results_page.jinja2:1445
msgid "Sleep more than 6 hours per night"
-msgstr "6時間以上眠る"
+msgstr ""
#: templates/new_results_page.jinja2:1460
msgid ""
-"One of the powerful ways microbiome scientists analyze data is by looking at similarities among samples. To do this, we compute a a lot of ways to form a distance. One way is to base the distance off of the fraction of microbes in "
-"common in your sample with each other sample. We typically share few of the exact same microbes in common with other people though which is problematic when comparing "
-"exact microbes. To account for this, researchers often take the evolutionary relationships among microbes into account when forming these distances.\">distance "
-"from your sample to all other samples based on the microbes observed."
+"One of the powerful ways microbiome scientists analyze data is by looking"
+" at similarities among samples. To do this, we compute a a lot of ways to form a distance. One way is to "
+"base the distance off of the fraction of microbes in common in your "
+"sample with each other sample. We typically share few of the exact same "
+"microbes in common with other people though which is problematic when "
+"comparing exact microbes. To account for this, researchers often take the"
+" evolutionary relationships among microbes into account when forming "
+"these distances.\">distance from your sample to all other samples "
+"based on the microbes observed."
msgstr ""
-"科学者がデータを分析する際、サンプル間の類似性を調べることがあります。観察された微生物に基づいて、あなたの便サンプルから他のすべてのサンプルまでの距離を計算します。"
#: templates/new_results_page.jinja2:1464
msgid ""
-"Here, we your sample to all the others in our database, and examined the 100 most similar samples to yours. These people answered their questionnaires in the following "
-"way; the response is colored in light green if it matches your response and brown if your response differed."
+"Here, we your sample to all the others in our database, and examined the "
+"100 most similar samples to yours. These people answered their "
+"questionnaires in the following way; the response is colored in light green if it matches your"
+" response and brown "
+" if your response differed."
msgstr ""
-"ここでは、あなたの便サンプルをデータベース内のすべてのサンプルと比較し、あなたの便サンプルに最も類似した 100 個のサンプルを調べました。これらの人々は、次の方法で調査票"
-"の回答をしました。あなたの回答と一致する場合、解答欄は明るい緑色で表示されています。異なる場合は、茶色で表示されています。"
#: templates/new_results_page.jinja2:1473
msgid "Diet"
-msgstr "食事"
+msgstr ""
#: templates/new_results_page.jinja2:1483
msgid "of people with a microbiome like yours eat"
-msgstr "あなたと似通った微生物を持つ人々は食事をする"
+msgstr ""
#: templates/new_results_page.jinja2:1485
msgid "plants per week"
-msgstr "1週間あたりの植物"
+msgstr ""
#: templates/new_results_page.jinja2:1494
msgid "of people with a microbiome like yours had a similar diet"
-msgstr "あなたと似通った微生物を持つ人々は同じような食事をしていた"
+msgstr ""
#: templates/new_results_page.jinja2:1501
msgid "Supplements"
-msgstr "サプリメント"
+msgstr ""
#: templates/new_results_page.jinja2:1511
msgid "of people with a microbiome like yours"
-msgstr "あなたと似通った微生物を持つ人々"
+msgstr ""
#: templates/new_results_page.jinja2:1513
msgid "take probiotics"
-msgstr "乳酸菌を取る"
+msgstr ""
#: templates/new_results_page.jinja2:1522
msgid "of people with a microbiome like yours take vitamins"
-msgstr "あなたと似通った微生物を持つ人々はサプリメント摂取している"
+msgstr ""
#: templates/new_results_page.jinja2:1529
msgid "Activity"
-msgstr "行動"
+msgstr ""
#: templates/new_results_page.jinja2:1539
msgid "of people with a microbiome like yours exercise"
-msgstr "あなたと似通った微生物を持つ人々は運動をしている"
+msgstr ""
#: templates/new_results_page.jinja2:1549
msgid "of people with a microbiome like yours get"
-msgstr "あなたと似通った微生物を持つ人々は手に入れる"
+msgstr ""
#: templates/new_results_page.jinja2:1551
msgid "of sleep at night"
-msgstr "夜の睡眠"
+msgstr ""
#: templates/new_results_page.jinja2:1558
msgid "Demographic"
-msgstr "人口統計の"
+msgstr ""
#: templates/new_results_page.jinja2:1568
msgid "of people with a microbiome like yours were the same age as you"
-msgstr "あなたと似通った微生物を持つ人々はあなたと同年齢である"
+msgstr ""
#: templates/new_results_page.jinja2:1577
msgid "of people with a microbiome like yours were the same gender"
-msgstr "あなたと似通った微生物を持つ人々は同姓である"
+msgstr ""
#: templates/new_results_page.jinja2:1586
msgid "Your Inner Zoo (aka What's in your sample?)"
-msgstr "あなたの体内の動物園(別称:あなたの便サンプル)"
+msgstr ""
#: templates/new_results_page.jinja2:1589
-msgid "Below you will find a table of all of the different microbes we found in your sample, and their proportions."
-msgstr "下記の表に、あなたの便サンプルから見つかった様々な微生物とその比率が表示されています。"
+msgid ""
+"Below you will find a table of all of the different microbes we found in "
+"your sample, and their proportions."
+msgstr ""
#: templates/new_results_page.jinja2:1593
msgid ""
-"Microbes sometimes have difficult names to pronounce. Some of the names are Latin, Greek, Norse, Chinese and more. If you'd like to know more, a pronounciation guide "
-"can be found here ."
+"Microbes sometimes have difficult names to pronounce. Some of the names "
+"are Latin, Greek, Norse, Chinese and more. If you'd like to know more, a "
+"pronounciation guide can be found here ."
msgstr ""
-"それぞれの微生物には、発音しづらい名称が付いていることがあります。名称の中には、ラテン語、ギリシャ語、北欧語、中国語などが使われています。詳しく知りたい場合は、こちらか"
-"ら発音ガイドをご覧下さい。"
#: templates/new_results_page.jinja2:1597
-msgid "Please mouse over the header to learn more about how to interpret these taxonomic ranks (e.g., Kingdom) using examples of non-microbial organisms."
-msgstr "非微生物の例を用いて、これらの分類学的階級 (例:界)の詳細 を理解するためには、ヘッダーにマウスを合わせてください。"
+msgid ""
+"Please mouse over the header to learn more about how to interpret these "
+"taxonomic ranks (e.g., Kingdom) using examples of non-microbial "
+"organisms."
+msgstr ""
#: templates/new_results_page.jinja2:1604
#, python-format
msgid "%% of Sample"
-msgstr "便サンプルの%"
+msgstr ""
#: templates/new_results_page.jinja2:1605 templates/sample_results.jinja2:148
msgid "Kingdom"
-msgstr "界"
+msgstr ""
#: templates/new_results_page.jinja2:1606 templates/sample_results.jinja2:149
msgid "Phylum"
-msgstr "門"
+msgstr ""
#: templates/new_results_page.jinja2:1607 templates/sample_results.jinja2:150
msgid "Class"
-msgstr "綱"
+msgstr ""
#: templates/new_results_page.jinja2:1608 templates/sample_results.jinja2:151
msgid "Order"
-msgstr "目"
+msgstr ""
#: templates/new_results_page.jinja2:1609 templates/sample_results.jinja2:152
msgid "Family"
-msgstr "科"
+msgstr ""
#: templates/new_results_page.jinja2:1610 templates/sample_results.jinja2:153
msgid "Genus"
-msgstr "属"
+msgstr ""
#: templates/new_results_page.jinja2:1618
-msgid "No evidence presented here indicates what we've observed is clinically dangerous"
-msgstr "これに基づく証拠がないため、私たちの観測は臨床的に危険でないことが証明されています"
+msgid ""
+"No evidence presented here indicates what we've observed is clinically "
+"dangerous"
+msgstr ""
#: templates/new_results_page.jinja2:1624
-msgid "In the plot below, you can see the most commonly observed microbial genera in the dataset, and distribution of ranks of those genera. For example,"
-msgstr "以下の構成から、最も一般的に観察される微生物の属と、それらの属の階級の分布を確認することができます。例えば、"
+msgid ""
+"In the plot below, you can see the most commonly observed microbial "
+"genera in the dataset, and distribution of ranks of those genera. For "
+"example,"
+msgstr ""
#: templates/new_results_page.jinja2:1626
msgid "typically has the highest relative abundance of samples in the dataset."
-msgstr "通常は、データ内のサンプルの相対量が最も多いです。"
+msgstr ""
#: templates/new_results_page.jinja2:1643
msgid ""
-"Microbiome analysis is a burgeoning new field, and the information displayed here is only an example of what is becoming possible thanks to the data that you helped "
-"collect."
-msgstr "腸内細菌解析は急成長している新しい分野です。ここに表示されている情報は、あなたの協力を下に収集できたデータの一例です。"
+"Microbiome analysis is a burgeoning new field, and the information "
+"displayed here is only an example of what is becoming possible thanks to "
+"the data that you helped collect."
+msgstr ""
#: templates/new_results_page.jinja2:1647
-msgid "So if you want to learn more, you can even take a look at the dataset for yourself!"
-msgstr "さらに詳しく知りたい場合は、自分でデータを確認することもできます!"
+msgid ""
+"So if you want to learn more, you can even take a look at the dataset for"
+" yourself!"
+msgstr ""
#: templates/new_results_page.jinja2:1651
msgid ""
-"For your sample, we performed a technique called amplicon sequencing where we examine pieces of DNA corresponding to a particular gene. Specifically, we sequenced the "
-"fourth variable region (V4) of the 16S rRNA small subunit ribosomal gene. DNA sequences from this region of this gene can be used like a microbial barcode, providing "
-"researchers evidence of the types of microbes that may be present in your sample."
+"For your sample, we performed a technique called amplicon sequencing "
+"where we examine pieces of DNA corresponding to a particular gene. "
+"Specifically, we sequenced the fourth variable region (V4) of the 16S "
+"rRNA small subunit ribosomal gene. DNA sequences from this region of this"
+" gene can be used like a microbial barcode, providing researchers "
+"evidence of the types of microbes that may be present in your sample."
msgstr ""
-"あなたの便サンプルは、特定の遺伝子に関するDNA の断片を調べるアンプリコン シーケンス解析と呼ばれる手法を使って解析しました。具体的には、16S rRNA 小サブユニット リボソー"
-"ム遺伝子の 4 番目の可変領域 (V4) をシーケンスしました。この遺伝子の領域からなるDNA 配列から、微生物をバーコードのように使用して、サンプル内に生存する微生物の種類を検証"
-"することができます。"
#: templates/new_results_page.jinja2:1655
msgid ""
-"There are many resources for microbiome information available online. If you'd like to learn more, we recommend the American Society for Microbiology , microBEnet , the Canadian "
-"Probiotics Chart , and the American Gastroenterological "
+"There are many resources for microbiome information available online. If "
+"you'd like to learn more, we recommend the American Society for "
+"Microbiology , microBEnet , the Canadian Probiotics Chart , "
+"and the American Gastroenterological "
"Association ."
msgstr ""
-"腸内細菌情報に関する資料はオンライン上にたくさんあります。さらに詳しく知りたい場合、下記サイトをご覧ください。\n"
-"アメリカ微生物学会、マイクローブネット、カナダ乳酸菌統計表、アメリカ消化器病学会。"
#: templates/new_results_page.jinja2:1658
msgid "Datasets used in your results report"
-msgstr "結果報告書で使用されたデータ"
+msgstr ""
#: templates/new_results_page.jinja2:1660
msgid ""
-"The results shown in the Microbiome Maps portion of the report relied on data from many different publically accessible microbiome datasets. These different datasets, "
-"and links to them, are listed below."
-msgstr "報告書の腸内細菌マップに示されている結果は、様々な腸内細菌研究データに基づいています。これらの様々なデータとリンクを以下に提示しました。"
+"The results shown in the Microbiome Maps portion of the report relied on "
+"data from many different publically accessible microbiome datasets. These"
+" different datasets, and links to them, are listed below."
+msgstr ""
#: templates/new_results_page.jinja2:1673
msgid ""
-"Microbiome maps turn the similarities and differences among microbiomes into a two-dimensional picture. Each dot is a whole microbiome, and dots close to yours are "
-"more similar microbiomes."
-msgstr "腸内細菌マップは、微生物間の類似点と相違点を 2 次元の画像に変換したものです。各点は全体の微生物を表していて、あなたに近い点はより類似した微生物を示しています。"
+"Microbiome maps turn the similarities and differences among microbiomes "
+"into a two-dimensional picture. Each dot is a whole microbiome, and dots "
+"close to yours are more similar microbiomes."
+msgstr ""
#: templates/new_results_page.jinja2:1677
msgid ""
-"How are these maps produced? "
+"How are these maps "
+"produced? "
+msgstr ""
+
+#: templates/nutrition.jinja2:2 templates/sitebase.jinja2:135
+#: templates/sitebase.jinja2:162 templates/sitebase.jinja2:164
+msgid "My Nutrition"
+msgstr ""
+
+#: templates/nutrition.jinja2:66
+msgid ""
+"Your registration code is not in our system or has already been used. "
+"Please try again."
+msgstr ""
+
+#: templates/nutrition.jinja2:96 templates/nutrition.jinja2:113
+#: templates/reports.jinja2:83
+msgid "My FFQs"
+msgstr ""
+
+#: templates/nutrition.jinja2:102
+msgid ""
+"Currently, \"My FFQs\" is unavailable in your country or region. We "
+"apologize for any inconvenience."
msgstr ""
-"これらのマップはどのように作成されますか? "
-#: templates/opt_out.jinja2:2 templates/opt_out.jinja2:37 templates/opt_out_confirm.jinja2:2
+#: templates/nutrition.jinja2:119
+msgid "Have an FFQ Code"
+msgstr ""
+
+#: templates/nutrition.jinja2:121
+msgid "Get an FFQ Code"
+msgstr ""
+
+#: templates/nutrition.jinja2:129
+msgid ""
+"This Food Frequency Questionnaire (FFQ) will take approximately 30 "
+"minutes. By completing it, you'll receive the following report"
+msgstr ""
+
+#: templates/nutrition.jinja2:130
+msgid ""
+"Personal diet and nutrition summary, listing the highest contributing "
+"food sources of nutrients you should try to limit and your top food "
+"sources with key nutrients that promote good health."
+msgstr ""
+
+#: templates/nutrition.jinja2:135
+msgid ""
+"You must press the \"Finish\" button on the final page of the FFQ to "
+"register it as completed. You can complete the FFQ in stages by clicking "
+"\"Continue FFQ\" and selecting the \"Resume\" button to return to where "
+"you left off."
+msgstr ""
+
+#: templates/nutrition.jinja2:146 templates/reports.jinja2:93
+msgid "Download Top Food Report"
+msgstr ""
+
+#: templates/nutrition.jinja2:149 templates/nutrition.jinja2:151
+#: templates/reports.jinja2:96 templates/reports.jinja2:98
+msgid "Continue FFQ"
+msgstr ""
+
+#: templates/nutrition.jinja2:164
+msgid "Registration Code"
+msgstr ""
+
+#: templates/nutrition.jinja2:170
+msgid "Register FFQ"
+msgstr ""
+
+#: templates/opt_out.jinja2:2 templates/opt_out.jinja2:37
+#: templates/opt_out_confirm.jinja2:2
msgid "Opt Out"
-msgstr "登録解除"
+msgstr ""
#: templates/opt_out.jinja2:28
msgid ""
-"Sorry, we could not complete the request. Please email microsetta@ucsd.edu with the email address you signed up with so we "
-"can remove you from our list."
-msgstr "エラーメッセージ:申し訳ありませんが、登録解除が出来ませんでした。恐れ入りますが件名に「登録解除」と記載の上、登録したEメールアドレスからmicrosetta@ucsd.edu までご連絡下さい。こちらにて解除いたします。"
+"Sorry, we could not complete the request. Please email microsetta@ucsd.edu with the "
+"email address you signed up with so we can remove you from our list."
+msgstr ""
#: templates/opt_out.jinja2:36
msgid ""
-"We're sorry you are no longer interested in participating in The Human Diets & Microbiome Initiative (THDMI). Please click the \"opt out\" button below to confirm that "
-"you do not wish to take part."
+"We're sorry you are no longer interested in participating in The Human "
+"Diets & Microbiome Initiative (THDMI). Please click the \"opt out\" "
+"button below to confirm that you do not wish to take part."
msgstr ""
-"今回はTHDMI-ジャパン プロジェクトにご参加頂けず、大変残念です。研究参加を取りやめたい場合は、以下の“登録解除”をクリックしてください。"
#: templates/opt_out_confirm.jinja2:27
-msgid "Thank you for letting us know. You will no longer be part of this research study."
-msgstr "サクセスメッセージ:ご連絡ありがとうございました。登録解除を承りました。"
+msgid ""
+"Thank you for letting us know. You will no longer be part of this "
+"research study."
+msgstr ""
#: templates/post_sample_questionnaire.jinja2:2
msgid "Optional Sample Surveys"
-msgstr "任意のサンプル調査"
+msgstr ""
#: templates/post_sample_questionnaire.jinja2:16
msgid "Your diet can provide researchers valuable information"
-msgstr "研究者はあなたの食事から貴重な情報を得ることができます"
+msgstr ""
#: templates/post_sample_questionnaire.jinja2:19
msgid "Would you like to take our additional survey, the"
-msgstr "もう一つのアンケート調査にご協力いただけますでしょうか"
+msgstr ""
-#: templates/post_sample_questionnaire.jinja2:19 templates/source.jinja2:201
+#: templates/post_sample_questionnaire.jinja2:19
msgid "Food Frequency Questionnaire"
-msgstr "食品摂取頻度調査票"
+msgstr ""
#: templates/post_sample_questionnaire.jinja2:19
msgid "FFQ"
-msgstr "食品摂取頻度調査票"
+msgstr ""
#: templates/post_sample_questionnaire.jinja2:19
-msgid "By completing the questionnaire, you can enhance information about your sample, which will power more insightful research!"
-msgstr "調査票に回答することで、便サンプルに関するより詳しい情報を得ることができ、より素晴らしい研究成果を生み出すことが出来ます!"
+msgid ""
+"By completing the questionnaire, you can enhance information about your "
+"sample, which will power more insightful research!"
+msgstr ""
#: templates/post_sample_questionnaire.jinja2:20
msgid "Note"
-msgstr "備考"
+msgstr ""
#: templates/post_sample_questionnaire.jinja2:20
-msgid "If you took multiple samples within a short time frame, you only need to take the FFQ for one such sample"
-msgstr "便サンプルを複数採取した場合、食品摂取頻度調査票を一度だけ記入して下さい"
+msgid ""
+"If you took multiple samples within a short time frame, you only need to "
+"take the FFQ for one such sample"
+msgstr ""
#: templates/post_sample_questionnaire.jinja2:23
msgid "Approx time: 30 minutes"
-msgstr "所要時間:30分"
+msgstr ""
#: templates/post_sample_questionnaire.jinja2:27
msgid "Take FFQ"
-msgstr "食品摂取頻度調査票を記入して下さい"
-
-#: templates/sample.jinja2:2 templates/sample.jinja2:164
-msgid "Sample Information"
-msgstr "サンプル情報"
-
-#: templates/sample.jinja2:70
-msgid "Required Format: MM/DD/YYYY"
-msgstr "形式: 月/日/年"
-
-#: templates/sample.jinja2:84
-msgid "Please select a date within the last 10 years."
-msgstr "過去 10 年以内の日付を選択してください。"
+msgstr ""
-#: templates/sample.jinja2:98
-msgid "Please select a date within the next 30 days."
-msgstr "今日から30 日以内の日付を選択してください。"
+#: templates/reports.jinja2:2 templates/sitebase.jinja2:137
+#: templates/sitebase.jinja2:169 templates/sitebase.jinja2:171
+msgid "My Reports"
+msgstr ""
-#: templates/sample.jinja2:172
-msgid "Sample Recorded, Editing is Locked"
-msgstr "サンプル記録済み、編集は不可"
+#: templates/sample.jinja2:24
+msgid "Do you really want to remove this sample from this source?"
+msgstr ""
-#: templates/sample.jinja2:183
-msgid "Date"
-msgstr "日にち"
+#: templates/sample.jinja2:25
+msgid "Doing so will remove any collection info saved for this sample and will"
+msgstr ""
-#: templates/sample.jinja2:192
-msgid "Time"
-msgstr "時刻"
+#: templates/sample.jinja2:26
+msgid "unlink it from all surveys."
+msgstr ""
-#: templates/sample.jinja2:206
-msgid "Guidelines for site identification"
-msgstr "部位識別の指針"
+#: templates/sample.jinja2:85
+msgid "Required Format: MM/DD/YYYY"
+msgstr ""
-#: templates/sample.jinja2:207
-msgid "If collecting a"
-msgstr "もし採取"
+#: templates/sample.jinja2:99
+msgid "Please select a date within the last 10 years."
+msgstr ""
-#: templates/sample.jinja2:207
-msgid "BLOOD"
-msgstr "血液"
+#: templates/sample.jinja2:113
+msgid "Please select a date within the next 30 days."
+msgstr ""
-#: templates/sample.jinja2:207
-msgid "sample, please select Blood (skin prick)"
-msgstr "サンプル、血液(皮膚プリック)を選択して下さい"
+#: templates/sample.jinja2:204
+msgid "Date of Sample Collection"
+msgstr ""
#: templates/sample.jinja2:208
-msgid "For all swabs, please select the site as precisely as possible from the options available"
-msgstr "綿棒について、選択肢からできる限り正確に部位を選択してください"
+msgid "Time of Sample Collection"
+msgstr ""
#: templates/sample.jinja2:214
-msgid "Site sampled"
-msgstr "採取部位"
+msgid "Sample Type"
+msgstr ""
-#: templates/sample.jinja2:218
+#: templates/sample.jinja2:217
msgid "Select a sample type"
-msgstr "サンプルの種類を選んで下さい"
+msgstr ""
-#: templates/sample.jinja2:234
+#: templates/sample.jinja2:229
msgid "Notes"
-msgstr "備考"
+msgstr ""
-#: templates/sample.jinja2:236
+#: templates/sample.jinja2:230
msgid "(Optional) Is there else about this sample that you would like to add?"
-msgstr "(任意) この便サンプルについて他に追加したいことはありますか?"
+msgstr ""
+
+#: templates/sample.jinja2:236
+msgid "Remove"
+msgstr ""
#: templates/sample.jinja2:239
-msgid "Update"
-msgstr "更新"
+msgid ""
+"Your sample has been received by our lab and can no longer be edited. "
+"Please contact us with any "
+"questions."
+msgstr ""
#: templates/sample_results.jinja2:140
msgid "What is in your sample?"
-msgstr "あなたのサンプルには何が含まれていますか?"
+msgstr ""
#: templates/sample_results.jinja2:142
msgid ""
-"The table below shows the relative abundances of all of the organisms we observed in your sample. To produce this, we took the DNA sequences from your sample, and "
-"compared them against publicly available annotated reference databases. In some cases, a sequence may uniquely match a database record, in other cases a sequence may "
-"match may different records. To handle the uncertainty that can arise, we rely on a well used and publicly available microbiome software package called QIIME 2 . The exact approach taken is highlighted in the main tutorial on feature-classification "
+"The table below shows the relative abundances of all of the organisms we "
+"observed in your sample. To produce this, we took the DNA sequences from "
+"your sample, and compared them against publicly available annotated "
+"reference databases. In some cases, a sequence may uniquely match a "
+"database record, in other cases a sequence may match may different "
+"records. To handle the uncertainty that can arise, we rely on a well used"
+" and publicly available microbiome software package called QIIME 2 . The exact "
+"approach taken is highlighted in the main tutorial on feature-classification "
msgstr ""
-"下記の表は、あなたの便サンプルから観察された全ての生物の相対的存在量を表示しています。これは、あなたの便サンプルから DNA 配列を決め、それを一般公開されている注釈付き参"
-"照用データと比較したものです。配列がデータ上の記録と一致する場合もあれば、異なる記録と一致する場合もあります。このような不具合に対応するため、私たちはQIIME2と呼ばれる腸"
-"内細菌ソフトウェアを使用しています。詳細はチュートリアルに表示されています"
#: templates/sample_results.jinja2:147
msgid "Relative Abundance"
-msgstr "相対的存在量"
+msgstr ""
#: templates/sample_results.jinja2:161
msgid "Alpha Diversity"
-msgstr "アルファ多様性"
+msgstr ""
#: templates/sample_results.jinja2:163
msgid ""
-"Here, we're providing a measure of the diversity of your sample, and how it compares to the diversities of all of the same type of samples in The Microsetta "
-"Initiative. There are many ways to calculate diversity. For instance, you could compute a diversity value by counting the number of unique organisms observed (i.e., "
-"the sample \"richness\"). Or, you might be interested in weighting the calculation by the relative abundance of the organisms (i.e., the sample \"evenness\"). The "
-"metric we're computing here is called Faith's Phylogenetic Diversity (originally defined here ). Faith's Phylogenetic Diversity computes the \"richness\" of your sample as the amount of evolutionary breadth represented by your sample. "
-"The way we compute alpha diversity is also through QIIME 2 , and more information on it can be found in the alpha "
-"and beta diversity sections of the QIIME "
-"2 tutorial"
-msgstr ""
-"ここでは、あなたの便サンプルの多様性を表示しています。また、あなたの便サンプルとマイクロゼッタ イニシアチブにあるすべての同じ種類のサンプルとの多様性を比較しています。"
-"多様性を計算する方法はたくさんあります。例えば、観察された特有な生物の数 (つまり、微生物の”豊富さ”) を数えることで、多様性の数値を計算することができます。または、生物の"
-"相対的存在量 (つまり、微生物の”均一性”) の計算を重み付けすることもできます。ここで計算している測定は、Faithの指数(元系統的多様性指数(元々ここで定義されている)と呼ばれ"
-"るものです。Faithの系統的多様性指数は、サンプルの進化の幅の量を、微生物の「豊富さ」として計算したものです。アルファ多様性の計算もQIIME2を使っています。さらに詳しく知り"
-"たい場合は、QIIME2のチュートリアル上で、アルファ多様性とベータ多様性の項目をご覧下さい"
+"Here, we're providing a measure of the diversity of your sample, and how "
+"it compares to the diversities of all of the same type of samples in The "
+"Microsetta Initiative. There are many ways to calculate diversity. For "
+"instance, you could compute a diversity value by counting the number of "
+"unique organisms observed (i.e., the sample \"richness\"). Or, you might "
+"be interested in weighting the calculation by the relative abundance of "
+"the organisms (i.e., the sample \"evenness\"). The metric we're computing"
+" here is called Faith's Phylogenetic Diversity (originally defined here ). Faith's Phylogenetic Diversity computes the"
+" \"richness\" of your sample as the amount of evolutionary breadth "
+"represented by your sample. The way we compute alpha diversity is also "
+"through QIIME 2 , and"
+" more information on it can be found in the alpha and beta diversity sections of the QIIME"
+" 2 tutorial"
+msgstr ""
#: templates/sample_results.jinja2:168
msgid "Beta Diversity"
-msgstr "ベータ多様性"
+msgstr ""
#: templates/sample_results.jinja2:170
msgid ""
-"Here we display how your sample fits in among the other samples of The Microsetta Initiative in terms of shared microbes. There are many ways to calculate beta "
-"diversity, differing in how to weight the distance between any two microbes. We take evolutionary distance into account with the metric displayed here, known as "
-"Unweighted Unifrac. You can find an overview of this metric here or better understand its "
-"derivation here . This computation is performed with QIIME 2 , and more information on it can be found in the alpha and beta diversity sections of the QIIME 2 tutorial"
+"Here we display how your sample fits in among the other samples of The "
+"Microsetta Initiative in terms of shared microbes. There are many ways to"
+" calculate beta diversity, differing in how to weight the distance "
+"between any two microbes. We take evolutionary distance into account with"
+" the metric displayed here, known as Unweighted Unifrac. You can find an "
+"overview of this metric here or better understand its derivation here . This computation is performed with QIIME 2 , and more "
+"information on it can be found in the alpha and beta diversity sections of the QIIME"
+" 2 tutorial"
msgstr ""
-"ここでは、微生物間の共通点から、あなたの便サンプルがマイクロゼッタ イニシアチブの他のサンプルとどのように適合するかを表示しています。ベータ多様性を計算する方法は幾つか"
-"あります。一つは二つの微生物間の距離を測る方法です。Unweighted Unifracと呼ばれる、距離計算法を使用して、生物進化的距離を測ります。下記のサイトからこの単位の概要、及び偏"
-"差を確認できます。この計算はQIIME2と呼ばれるソフトウェアで行われます。QIIME2のチュートリアルで、アルファ多様性とベータ多様性の情報を一覧することができます"
#: templates/secondary_surveys.jinja2:2
msgid "Secondary Surveys"
-msgstr "二次調査"
+msgstr ""
-#: templates/secondary_surveys.jinja2:12 templates/source.jinja2:258
+#: templates/secondary_surveys.jinja2:12
msgid "Survey Title"
-msgstr "調査タイトル"
+msgstr ""
-#: templates/secondary_surveys.jinja2:15 templates/source.jinja2:261
+#: templates/secondary_surveys.jinja2:15
msgid "Survey Description"
-msgstr "調査説明"
+msgstr ""
+
+#: templates/signed_consent.jinja2:51 templates/signed_consent.jinja2:125
+#: templates/signed_consent.jinja2:181 templates/signed_consent.jinja2:218
+msgid "Date Signed"
+msgstr ""
#: templates/sitebase.jinja2:5
msgid "Microsetta"
-msgstr "マイクロゼッタ"
+msgstr ""
-#: templates/sitebase.jinja2:43
-msgid "Administrator Toolbar"
-msgstr "管理者ツールバー"
+#: templates/sitebase.jinja2:44
+msgid "You are deleting the profile for"
+msgstr ""
#: templates/sitebase.jinja2:44
-msgid "System Panel"
-msgstr "システムパネル"
+msgid "and all surveys associated with it!"
+msgstr ""
-#: templates/sitebase.jinja2:46 templates/sitebase.jinja2:84
-msgid "Log Out"
-msgstr "ログアウト"
+#: templates/sitebase.jinja2:45
+msgid ""
+"This operation cannot be undone. Are you sure you want to delete this "
+"source?"
+msgstr ""
+
+#: templates/sitebase.jinja2:56
+msgid "Administrator Toolbar"
+msgstr ""
-#: templates/sitebase.jinja2:47
-msgid "Activation Codes"
-msgstr "認証コード"
+#: templates/sitebase.jinja2:57
+msgid "System Panel"
+msgstr ""
-#: templates/sitebase.jinja2:49
+#: templates/sitebase.jinja2:60
msgid "Address Verification"
-msgstr "住所確認"
+msgstr ""
+
+#: templates/sitebase.jinja2:62
+msgid "FFQ Codes"
+msgstr ""
-#: templates/sitebase.jinja2:53
+#: templates/sitebase.jinja2:65
msgid "Find Account"
-msgstr "アカウントを探す"
+msgstr ""
-#: templates/sitebase.jinja2:55
+#: templates/sitebase.jinja2:67
msgid "Barcode Search"
-msgstr "バーコード検索"
-
-#: templates/sitebase.jinja2:86
-msgid "Log In"
-msgstr "ログイン"
-
-#: templates/sitebase.jinja2:87
-msgid "Sign Up"
-msgstr "登録"
-
-#: templates/sitebase.jinja2:126
-msgid "FAQs"
-msgstr "FAQ"
-
-#: templates/source.jinja2:2
-msgid "Account Samples"
-msgstr "アカウントサンプル"
-
-#: templates/source.jinja2:84
-msgid "Do you really want to remove this sample from this source?"
-msgstr "サンプルの種類からこの便サンプルを本当に削除しますか?"
-
-#: templates/source.jinja2:85
-msgid "Doing so will remove any collection info saved for this sample and will"
-msgstr "実行すると、この便サンプル用に保存された採便情報が削除され"
-
-#: templates/source.jinja2:86
-msgid "unlink it from all surveys."
-msgstr "全ての調査を中止します。"
-
-#: templates/source.jinja2:91
-msgid "You are deleting source"
-msgstr "サンプルの種類を削除しています"
-
-#: templates/source.jinja2:91
-msgid "and all surveys associated with it!"
-msgstr "それと関連する全ての調査!"
+msgstr ""
-#: templates/source.jinja2:92
-msgid "This operation cannot be undone. Are you sure you want to delete this source?"
-msgstr "この操作を実行すると元に戻せなくなります。サンプルの種類を削除してもよろしいですか?"
+#: templates/sitebase.jinja2:68 templates/sitebase.jinja2:88
+msgid "Log Out"
+msgstr ""
-#: templates/source.jinja2:100
-msgid "View"
-msgstr "一覧"
+#: templates/sitebase.jinja2:139 templates/sitebase.jinja2:148
+#: templates/sitebase.jinja2:150 templates/source.jinja2:2
+#: templates/survey.jinja2:165
+msgid "My Profile"
+msgstr ""
-#: templates/source.jinja2:152
-msgid "It looks like some samples do not have collection information recorded."
-msgstr "一部の便サンプルの、詳細情報が記録されていません。"
+#: templates/sitebase.jinja2:184
+msgid "Delete This Profile"
+msgstr ""
-#: templates/source.jinja2:156
-msgid "Samples (click on a barcode to provide collection information)"
-msgstr "便サンプル(バーコードをクリックして採便情報を提供する)"
+#: templates/sitebase.jinja2:198
+msgid "Are you sure you want to withdraw your consent and delete your profile?"
+msgstr ""
-#: templates/source.jinja2:164
-msgid "Collection date"
-msgstr "採取日"
+#: templates/sitebase.jinja2:201
+msgid ""
+"I hereby withdraw consent for researchers to use my personal data and/or "
+"sample(s) for The Microsetta Initiative (TMI)."
+msgstr ""
-#: templates/source.jinja2:168
-msgid "Sample type"
-msgstr "便サンプル種類"
+#: templates/sitebase.jinja2:202
+msgid ""
+"I understand and acknowledge that any personal data and/or sample(s) that"
+" have already been provided to TMI in accordance with the consent I "
+"provided by signing the consent form(s), will continue to be used for the"
+" research. However, no new information will be collected."
+msgstr ""
-#: templates/source.jinja2:174
-msgid "Sample-specific survey"
-msgstr "サンプル特有の調査"
+#: templates/sitebase.jinja2:203
+msgid ""
+"I understand that my data will only be shared after directly identifying "
+"information has been removed so that researchers cannot re-identify my "
+"personal data and/or sample(s) for future use."
+msgstr ""
-#: templates/source.jinja2:199
-msgid "View Top Food Report"
-msgstr "トップフードの報告を見る"
+#: templates/sitebase.jinja2:204
+msgid ""
+"By clicking withdraw, you will be ending your participation and "
+"terminating your profile. If you would like to be removed from being "
+"contacted for general program updates or information about future "
+"research studies, please refer to account deletion or contact us at "
+"microsetta@ucsd.edu."
+msgstr ""
-#: templates/source.jinja2:206
-msgid "This sample has been received and cannot be removed."
-msgstr "この便サンプルは受領済みであり、削除できません。"
+#: templates/sitebase.jinja2:207 templates/source.jinja2:151
+msgid "Maybe Later"
+msgstr ""
-#: templates/source.jinja2:208
-msgid "Remove"
-msgstr "削除する"
+#: templates/sitebase.jinja2:208 templates/source.jinja2:152
+msgid "Take This Survey Now"
+msgstr ""
-#: templates/source.jinja2:218
-msgid "Do I need to take more than one Food Frequency Questionnaire (FFQ)"
-msgstr "複数の食品摂取頻度調査票(FFQ) を記入する必要がありますか?"
+#: templates/sitebase.jinja2:224
+msgid "FAQs"
+msgstr ""
-#: templates/source.jinja2:219
+#: templates/source.jinja2:52
msgid ""
-"If you are taking all of your samples at the same time, you will only need to complete one. If you are collecting samples over time (e.g., once per week), then please "
-"consider taking an FFQ per time point. The FFQs provide valuable dietary research data for the project, so researchers can better understand the relationship between "
-"the food you eat and your microbes."
+"The Microsetta Initiative aims to generate quality data that can help you"
+" better understand your microbiome, help scientists design better "
+"studies, and improve the world's understanding of the human microbiome."
msgstr ""
-"同時に全ての便サンプルを採取する場合は、調査票を一度だけ記入して下さい。定期的に便サンプルを採取する場合 (例: 週に 1 回)、その都度調査票を記入する必要があります。食品摂"
-"取頻度調査票は、この研究にとって貴重な食事研究データであり、食物と微生物との関係をよりよく理解するために必要なものです。"
-#: templates/source.jinja2:227
+#: templates/source.jinja2:55
msgid ""
-"The kit ID used to create your account has unclaimed samples. To claim samples from this kit, please click \"List samples\". To claim samples from another kit ID, "
-"please enter it here and then click \"List Samples\""
+"Answering our surveys can help us do just that. To get started, build out"
+" your profile by answering the surveys below. We will alert you when new "
+"surveys become available."
msgstr ""
-"アカウントの作成時に使用されたキット ID に、選択されていない便サンプルがあります。この採便キットから便サンプルを選択するには、「サンプルリスト」をクリックしてください。"
-"別のキット ID から便サンプルを選択する場合、ここに ID を入力してから、[サンプルリスト] をクリックしてください。"
-#: templates/source.jinja2:230
-msgid "To add samples, please enter a kit ID here"
-msgstr "便サンプルを追加するため、ここにキットIDを入力して下さい"
-
-#: templates/source.jinja2:234
-msgid "List Samples"
-msgstr "サンプルリスト"
-
-#: templates/source.jinja2:239
-msgid "Select all samples that should be associated with this source"
-msgstr "このサンプルの種類に関係する全ての便サンプルを選択する"
-
-#: templates/source.jinja2:245
-msgid "Claim Selected Samples"
-msgstr "選択した便サンプルを要請する"
+#: templates/source.jinja2:63
+msgid "Last modified"
+msgstr ""
-#: templates/source.jinja2:253
-msgid "Available optional surveys"
-msgstr "任意可能な調査"
+#: templates/source.jinja2:65 templates/source.jinja2:107
+msgid "NEW"
+msgstr ""
-#: templates/source.jinja2:283
-msgid "Start"
-msgstr "開始"
+#: templates/source.jinja2:67 templates/survey.jinja2:176
+msgid "minutes"
+msgstr ""
-#: templates/source.jinja2:295
-msgid "Completed surveys"
-msgstr "完了済みの調査"
+#: templates/source.jinja2:97
+msgid ""
+"Below are surveys hosted by partner organizations. You will be directed "
+"to an external site in a new browser tab to complete the survey(s) you "
+"select. Once you complete them, you may close the tab and return to this "
+"page."
+msgstr ""
-#: templates/source.jinja2:320
-msgid "Sources with one or more samples assigned cannot be deleted. All samples above must be removed prior to deleting this source."
-msgstr "便サンプルが複数指定されているサンプルの種類は削除することができません。 このサンプルの種類を削除する前に、上記のすべての便サンプルを削除して下さい。"
+#: templates/source.jinja2:105
+msgid "COMPLETED"
+msgstr ""
-#: templates/source.jinja2:322
-msgid "If you need to delete this source, click the following button. Please note, this action can NOT be reversed."
-msgstr "このサンプルの種類を削除する場合は、以下のボタンをクリックしてください。一度削除したら元に戻せませんのでご注意ください。"
+#: templates/source.jinja2:109
+msgid "min"
+msgstr ""
-#: templates/source.jinja2:322
-msgid "Delete Source"
-msgstr "サンプルの種類を削除する"
+#: templates/source.jinja2:148
+msgid ""
+"You will only have one opportunity to take this survey. Please make sure "
+"you have ample time before you start."
+msgstr ""
#: templates/submit_interest.jinja2:146 templates/submit_interest.jinja2:223
msgid "Sorry, you must be 18 or older to participate in this study."
-msgstr "大変申し訳ありませんが、この調査に参加するには 18 歳以上である必要があります。"
+msgstr ""
#: templates/submit_interest.jinja2:159
msgid "Sorry, this study is not open to residents of your country."
-msgstr "大変申し訳ありませんが、あなたの国の居住者はこの調査に参加できません。"
+msgstr ""
#: templates/submit_interest.jinja2:222 templates/submit_interest.jinja2:330
msgid "Please select whether you are at least 18 years of age."
-msgstr "18歳以上であるか選んでください。"
+msgstr ""
#: templates/submit_interest.jinja2:225
msgid "Please enter your first name."
-msgstr "名前を入力して下さい。"
+msgstr ""
#: templates/submit_interest.jinja2:226
msgid "Please enter your last name."
-msgstr "姓を入力して下さい。"
+msgstr ""
#: templates/submit_interest.jinja2:227
msgid "Please enter a valid email address."
-msgstr "メールアドレスを入力してください。"
+msgstr ""
#: templates/submit_interest.jinja2:230
msgid "Please select your country."
-msgstr "あなたの国を選択してください。"
+msgstr ""
-#: templates/submit_interest.jinja2:237 templates/update_address.jinja2:135 templates/update_address.jinja2:250
-msgid "Sorry, we were unable to verify your address. Please check your information and try again."
-msgstr "大変申し訳ありませんが、住所を確認できません。あなたの基本情報を確認してから、もう一度お試しください。"
+#: templates/submit_interest.jinja2:237 templates/update_address.jinja2:135
+#: templates/update_address.jinja2:250
+msgid ""
+"Sorry, we were unable to verify your address. Please check your "
+"information and try again."
+msgstr ""
#: templates/submit_interest.jinja2:239 templates/submit_interest.jinja2:595
msgid "Please agree to receiving communications from us."
-msgstr "THDMIジャパンプロジェクトからのメールが受信出来る環境に設定をお願いします。"
+msgstr ""
#: templates/submit_interest.jinja2:300
-msgid "Sorry, due to widespread interest, the sign-up list for this project is full."
-msgstr "大変申し訳ありませんが、この研究の登録リストは募集定員に達しました。"
+msgid ""
+"Sorry, due to widespread interest, the sign-up list for this project is "
+"full."
+msgstr ""
#: templates/submit_interest.jinja2:301
-msgid "Please visit our website to learn about other opportunities to participate in The Microsetta Initiative."
-msgstr "その他の研究参加については下記のマイクロゼッタ イニシアティブのウェブサイトをご覧ください。."
+msgid ""
+"Please visit our website to "
+"learn about other opportunities to participate in The Microsetta "
+"Initiative."
+msgstr ""
#: templates/submit_interest.jinja2:305 templates/update_address.jinja2:193
msgid "Verifying your information, please wait just a moment."
-msgstr "あなたの情報を確認中です。しばらくお待ちください。"
+msgstr ""
#: templates/submit_interest.jinja2:326
msgid "Are you at least 18 years of age?"
-msgstr "18歳以上ですか?"
+msgstr ""
#: templates/submit_interest.jinja2:327 templates/submit_interest.jinja2:594
msgid "Yes"
-msgstr "はい"
+msgstr ""
#: templates/submit_interest.jinja2:329
msgid "No"
-msgstr "いいえ"
+msgstr ""
#: templates/submit_interest.jinja2:334
-msgid "Please note: Specimen collection kits are associated with the email used when registering. We recommend the following:"
-msgstr "注意:ご登録頂いたメールアドレスにてご連絡、キットの発送を致します。下記を参考に登録をお願いします。"
+msgid ""
+"Please note: Specimen collection kits are associated with the email used "
+"when registering. We recommend the following:"
+msgstr ""
#: templates/submit_interest.jinja2:335
msgid "1. One email must be used per kit."
-msgstr "1. 1名につき1つのメールアドレスでご登録下さい。"
+msgstr ""
#: templates/submit_interest.jinja2:336
-msgid "2. If you plan to complete the form on behalf of another adult, use that person's name and email address."
-msgstr "2.参加者に代わってご登録される場合、必ず参加者本人の名前と電子メールアドレスを使用してください。"
+msgid ""
+"2. If you plan to complete the form on behalf of another adult, use that "
+"person's name and email address."
+msgstr ""
#: templates/submit_interest.jinja2:337
msgid "3. If possible, continue to use the same email throughout the study."
-msgstr "3.このプロジェクトにご参加中は登録のメールアドレスをご利用ください。"
+msgstr ""
#: templates/submit_interest.jinja2:338
-msgid "Once you have received the kit, please continue to use the same email address used when creating your online account."
-msgstr "採便キットをお受け取りになった後は、登録時に使用したメールアドレスのみご使用ください。"
+msgid ""
+"Once you have received the kit, please continue to use the same email "
+"address used when creating your online account."
+msgstr ""
#: templates/submit_interest.jinja2:348
msgid "Email Address"
-msgstr "メールアドレス"
+msgstr ""
#: templates/submit_interest.jinja2:352 templates/update_address.jinja2:242
msgid "Phone Number"
-msgstr "電話番号"
+msgstr ""
-#: templates/submit_interest.jinja2:358 templates/submit_interest.jinja2:576 templates/update_address.jinja2:227
+#: templates/submit_interest.jinja2:358 templates/submit_interest.jinja2:576
+#: templates/update_address.jinja2:227
msgid "SELECT"
-msgstr "選択"
+msgstr ""
#: templates/submit_interest.jinja2:555
msgid "Please fill in the address you would like your kit delivered to. Example:"
-msgstr "採便キットのお届け先のご住所をご記入ください。"
+msgstr ""
#: templates/submit_interest.jinja2:556
msgid "9500 Gilman Dr. San Diego, CA 92093"
-msgstr "〒152-8550 東京都目黒区大岡山2-12−1"
+msgstr ""
#: templates/submit_interest.jinja2:586 templates/update_address.jinja2:237
msgid "Residential"
-msgstr "住宅"
+msgstr ""
#: templates/submit_interest.jinja2:587 templates/update_address.jinja2:238
msgid "Commercial"
-msgstr "商業"
+msgstr ""
#: templates/submit_interest.jinja2:593
msgid ""
-"By subscribing to this program, I agree to receive communications via the newsletter regarding the status of the program, the steps I must complete, tips and tricks "
-"for completing my participation and surveys. I agree and understand that I can unsubscribe at any time using a link in the newsletter and this will not change my "
-"consent to receive sample status updates directly from the TMI database. "
-msgstr "参加登録後、参加申し込みに必要な手順、アンケート調査に関する情報等をEメールで受け取ることに同意します。"
+"By subscribing to this program, I agree to receive communications via the"
+" newsletter regarding the status of the program, the steps I must "
+"complete, tips and tricks for completing my participation and surveys. I "
+"agree and understand that I can unsubscribe at any time using a link in "
+"the newsletter and this will not change my consent to receive sample "
+"status updates directly from the TMI database. "
+msgstr ""
#: templates/submit_interest.jinja2:599
msgid "Previous"
-msgstr "前"
-
-#: templates/submit_interest.jinja2:600
-msgid "Next"
-msgstr "次"
+msgstr ""
#: templates/submit_interest_confirm.jinja2:36
msgid ""
-"Thank you for your interest in our research. Your application has been received. You will receive an email shortly. Please check your junk or spam folder if the email "
-"hasn’t reached your inbox."
+"Thank you for your interest in our research. Your application has been "
+"received. You will receive an email shortly. Please check your junk or "
+"spam folder if the email hasn’t reached your inbox."
msgstr ""
-" 私たちの研究に関心をお持ちいただき、ありがとうございます。申し込みを承りました。後ほど確認メールをお送りします。受信出来ない場合は迷惑メールフォルダを確認して下さい。"
-
-#: templates/survey.jinja2:2 templates/survey.jinja2:128
-msgid "Participant Survey"
-msgstr "調査参加"
#: templates/survey.jinja2:8
msgid " selected"
-msgstr " 選択済み"
+msgstr ""
-#: templates/survey.jinja2:58
+#: templates/survey.jinja2:96
msgid "The value is not an integer"
-msgstr "整数値ではありません"
+msgstr ""
-#: templates/survey.jinja2:59
+#: templates/survey.jinja2:97
msgid "Invalid number"
-msgstr "無効な番号"
-
-#: templates/survey.jinja2:131
-msgid "Progress"
-msgstr "進捗"
-
-#: templates/survey.jinja2:138
-msgid "Previous Section"
-msgstr "前項"
-
-#: templates/survey.jinja2:139
-msgid "Next Section"
-msgstr "次項"
-
-#: templates/survey.jinja2:158
-msgid "Submit Survey"
-msgstr "調査を送信する"
-
-#: templates/survey.jinja2:166
-msgid "Please note: Once you've submitted this survey, you'll be unable to edit your answers."
-msgstr "注意: この調査を送信後、回答は編集できません。"
-
-#: templates/survey.jinja2:166
-msgid "If you'd like to review or change any of your responses, please press the Cancel button. Otherwise, press OK to submit your responses."
-msgstr "回答を確認又は変更する場合は、キャンセルボタンを押してください。それ以外の場合は、OKをクリックして回答を送信して下さい。"
+msgstr ""
-#: templates/survey.jinja2:166
-msgid "This warning will only appear once."
-msgstr "この警告は 1一だけ表示されます。"
+#: templates/survey.jinja2:176
+msgid "questions"
+msgstr ""
-#: templates/survey.jinja2:170
-msgid ""
-"It looks like you are trying to submit this survey without answering any questions. If you would prefer not to complete this survey, please return to the homepage."
-msgstr "無記入のままこのアンケートを送信しようとしています。このアンケートに回答しない場合は、ホームページに戻ってください。"
+#: templates/survey.jinja2:196
+msgid "You've finished building your profile!"
+msgstr ""
-#: templates/survey.jinja2:193 templates/survey.jinja2:218
-msgid "Step"
-msgstr "手順"
+#: templates/survey.jinja2:245 templates/survey.jinja2:276
+#: templates/survey.jinja2:307
+msgid "Save & Go Home"
+msgstr ""
-#: templates/survey.jinja2:193 templates/survey.jinja2:218
-msgid "of"
-msgstr "の"
+#: templates/survey.jinja2:254 templates/survey.jinja2:316
+msgid "Save & Next"
+msgstr ""
-#: templates/survey.jinja2:193 templates/survey.jinja2:218
-msgid "Complete"
-msgstr "完了"
+#: templates/survey.jinja2:266 templates/survey.jinja2:297
+msgid "Save & Previous"
+msgstr ""
-#: templates/survey.jinja2:203
-msgid "Please correct the fields with errors."
-msgstr "エラー部分を修正して下さい。"
+#: templates/survey.jinja2:285
+msgid "Save & Finish"
+msgstr ""
#: templates/update_address.jinja2:198
msgid ""
-"Sorry, it appears you are having trouble verifying your address. Please contact our support team at microsetta@ucsd.edu and they can assist with confirming your "
-"address."
-msgstr "申し訳ありませんが、住所が確認できません。 住所を確認するため、microsetta@ucsd.edu に連絡してください。"
+"Sorry, it appears you are having trouble verifying your address. Please "
+"contact our support team at microsetta@ucsd.edu and they can assist with "
+"confirming your address."
+msgstr ""
#: templates/update_address.jinja2:202
msgid "Update Your Address"
-msgstr "あなたの住所を更新する"
+msgstr ""
#: templates/update_address_confirm.jinja2:25
msgid "Address Updated"
-msgstr "住所更新"
+msgstr ""
#: templates/update_address_confirm.jinja2:28
-msgid "Thank you for updating your address! Your information has been saved and you will receive an email notification once your kit ships."
-msgstr "住所を更新していただきありがとうございます。あなたの情報が保存されました。採便キット発送の通知がメールで届きます。"
+msgid ""
+"Thank you for updating your address! Your information has been saved and "
+"you will receive an email notification once your kit ships."
+msgstr ""
#: templates/update_email.jinja2:2
msgid "Email Update"
-msgstr "メールの更新"
+msgstr ""
#: templates/update_email.jinja2:12
-msgid "It appears that the email we have for your account is not the same as the email you logged in with. Would you like us to update your email in our records?"
-msgstr "あなたのアカウントに登録されているメールアドレスが、ログインされたメールアドレスと異なっています。Eメールアドレスを更新しますか?"
+msgid ""
+"It appears that the email we have for your account is not the same as the"
+" email you logged in with. Would you like us to update your email in our"
+" records?"
+msgstr ""
#: templates/update_email.jinja2:18
msgid "No, skip and continue"
-msgstr "いいえ、更新せず続行する"
+msgstr ""
#: templates/update_email.jinja2:21
msgid "Yes, update and continue"
-msgstr "はい、更新して続行する"
+msgstr ""
-#~ msgid "Thank you for your interest! Your information has been saved, and we will contact you via email soon."
-#~ msgstr "私たちの研究に関心をお持ちいただき、ありがとうございます。申し込みを承りました。まもなくメールが届きます。"
diff --git a/setup.py b/setup.py
index 3653b8c3..66539480 100644
--- a/setup.py
+++ b/setup.py
@@ -48,8 +48,8 @@
'static/vendor/jquery-ui-1.12.1/*',
'static/vendor/jquery-ui-1.12.1/images/*',
'static/vendor/popper-1.11.0/*',
- 'static/vendor/bootstrap-4.4.1-dist/js/*',
- 'static/vendor/bootstrap-4.4.1-dist/css/*',
+ 'static/vendor/bootstrap-5.0.2-dist/js/*',
+ 'static/vendor/bootstrap-5.0.2-dist/css/*',
'static/vendor/bootstrap-datetimepicker-4.14.30/*',
'static/vendor/vue-form-generator-2.3.4/*',
'static/vendor/bootstrap-3.3.7-dist/js/*',