Remove idle labels
This commit is contained in:
+46
-40
@@ -4,70 +4,71 @@ export const intensity = ['low', 'medium', 'high']
|
|||||||
export const bleeding = {
|
export const bleeding = {
|
||||||
labels: ['spotting', 'light', 'medium', 'heavy'],
|
labels: ['spotting', 'light', 'medium', 'heavy'],
|
||||||
heaviness: {
|
heaviness: {
|
||||||
header: "Heaviness",
|
header: 'Heaviness',
|
||||||
explainer: "How heavy is the bleeding?",
|
explainer: 'How heavy is the bleeding?',
|
||||||
},
|
},
|
||||||
exclude: {
|
exclude: {
|
||||||
header: "Exclude",
|
header: 'Exclude',
|
||||||
explainer: "You can exclude this value if it's not menstrual bleeding"
|
explainer: "You can exclude this value if it's not menstrual bleeding",
|
||||||
}
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
export const cervix = {
|
export const cervix = {
|
||||||
subcategories: {
|
subcategories: {
|
||||||
opening: 'opening',
|
opening: 'opening',
|
||||||
firmness: 'firmness',
|
firmness: 'firmness',
|
||||||
position: 'position'
|
position: 'position',
|
||||||
},
|
},
|
||||||
opening: {
|
opening: {
|
||||||
categories: ['closed', 'medium', 'open'],
|
categories: ['closed', 'medium', 'open'],
|
||||||
explainer: 'Is your cervix open or closed?'
|
explainer: 'Is your cervix open or closed?',
|
||||||
},
|
},
|
||||||
firmness: {
|
firmness: {
|
||||||
categories: ['hard', 'soft'],
|
categories: ['hard', 'soft'],
|
||||||
explainer: "When it's hard, it might feel like the tip of your nose"
|
explainer: "When it's hard, it might feel like the tip of your nose",
|
||||||
},
|
},
|
||||||
position: {
|
position: {
|
||||||
categories: ['low', 'medium', 'high'],
|
categories: ['low', 'medium', 'high'],
|
||||||
explainer: 'How high up in the vagina is the cervix?'
|
explainer: 'How high up in the vagina is the cervix?',
|
||||||
},
|
},
|
||||||
excludeExplainer: "You can exclude this value if you don't want to use it for fertility detection.",
|
excludeExplainer:
|
||||||
actionHint: 'Choose values for at least "Opening" and "Firmness" to save.'
|
"You can exclude this value if you don't want to use it for fertility detection.",
|
||||||
}
|
}
|
||||||
|
|
||||||
export const mucus = {
|
export const mucus = {
|
||||||
subcategories: {
|
subcategories: {
|
||||||
feeling: 'feeling',
|
feeling: 'feeling',
|
||||||
texture: 'texture'
|
texture: 'texture',
|
||||||
},
|
},
|
||||||
feeling: {
|
feeling: {
|
||||||
categories: ['dry', 'nothing', 'wet', 'slippery'],
|
categories: ['dry', 'nothing', 'wet', 'slippery'],
|
||||||
explainer: 'What does your vaginal entrance feel like?'
|
explainer: 'What does your vaginal entrance feel like?',
|
||||||
},
|
},
|
||||||
texture: {
|
texture: {
|
||||||
categories: ['nothing', 'creamy', 'egg white'],
|
categories: ['nothing', 'creamy', 'egg white'],
|
||||||
explainer: "Looking at and touching your cervical mucus, which describes it best?"
|
explainer:
|
||||||
|
'Looking at and touching your cervical mucus, which describes it best?',
|
||||||
},
|
},
|
||||||
excludeExplainer: "You can exclude this value if you don't want to use it for fertility detection",
|
excludeExplainer:
|
||||||
actionHint: 'Choose values for both "Feeling" and "Texture" to save.'
|
"You can exclude this value if you don't want to use it for fertility detection",
|
||||||
}
|
}
|
||||||
|
|
||||||
export const desire = {
|
export const desire = {
|
||||||
header: 'Intensity',
|
header: 'Intensity',
|
||||||
explainer: 'How would you rate your sexual desire?'
|
explainer: 'How would you rate your sexual desire?',
|
||||||
}
|
}
|
||||||
|
|
||||||
export const sex = {
|
export const sex = {
|
||||||
categories:{
|
categories: {
|
||||||
solo: 'solo',
|
solo: 'solo',
|
||||||
partner: 'partner',
|
partner: 'partner',
|
||||||
},
|
},
|
||||||
header: "Activity",
|
header: 'Activity',
|
||||||
explainer: 'Were you sexually active today?',
|
explainer: 'Were you sexually active today?',
|
||||||
}
|
}
|
||||||
|
|
||||||
export const contraceptives = {
|
export const contraceptives = {
|
||||||
categories:{
|
categories: {
|
||||||
condom: 'condom',
|
condom: 'condom',
|
||||||
pill: 'pill',
|
pill: 'pill',
|
||||||
iud: 'iud',
|
iud: 'iud',
|
||||||
@@ -78,8 +79,8 @@ export const contraceptives = {
|
|||||||
none: 'none',
|
none: 'none',
|
||||||
other: 'other',
|
other: 'other',
|
||||||
},
|
},
|
||||||
header: "Contraceptives",
|
header: 'Contraceptives',
|
||||||
explainer: 'Did you use contraceptives?'
|
explainer: 'Did you use contraceptives?',
|
||||||
}
|
}
|
||||||
|
|
||||||
export const pain = {
|
export const pain = {
|
||||||
@@ -91,9 +92,9 @@ export const pain = {
|
|||||||
nausea: 'nausea',
|
nausea: 'nausea',
|
||||||
tenderBreasts: 'tender breasts',
|
tenderBreasts: 'tender breasts',
|
||||||
migraine: 'migraine',
|
migraine: 'migraine',
|
||||||
other: 'other'
|
other: 'other',
|
||||||
},
|
},
|
||||||
explainer: 'How did your body feel today?'
|
explainer: 'How did your body feel today?',
|
||||||
}
|
}
|
||||||
|
|
||||||
export const mood = {
|
export const mood = {
|
||||||
@@ -107,34 +108,39 @@ export const mood = {
|
|||||||
energetic: 'energetic',
|
energetic: 'energetic',
|
||||||
fatigue: 'fatigue',
|
fatigue: 'fatigue',
|
||||||
angry: 'angry',
|
angry: 'angry',
|
||||||
other: 'other'
|
other: 'other',
|
||||||
},
|
},
|
||||||
explainer: 'How did you feel today?'
|
explainer: 'How did you feel today?',
|
||||||
}
|
}
|
||||||
|
|
||||||
export const temperature = {
|
export const temperature = {
|
||||||
outOfRangeWarning: 'This temperature value is out of the current range for the temperature chart. You can change the range in the settings.',
|
outOfRangeWarning:
|
||||||
outOfAbsoluteRangeWarning: 'This temperature value is too high or low to be shown on the temperature chart.',
|
'This temperature value is out of the current range for the temperature chart. You can change the range in the settings.',
|
||||||
|
outOfAbsoluteRangeWarning:
|
||||||
|
'This temperature value is too high or low to be shown on the temperature chart.',
|
||||||
temperature: {
|
temperature: {
|
||||||
header: "Temperature",
|
header: 'Temperature',
|
||||||
explainer: 'Take your temperature right after waking up, before getting out of bed'
|
explainer:
|
||||||
|
'Take your temperature right after waking up, before getting out of bed',
|
||||||
},
|
},
|
||||||
time: "Time",
|
time: 'Time',
|
||||||
note: {
|
note: {
|
||||||
header: "Note",
|
header: 'Note',
|
||||||
explainer: 'Is there anything that could have influenced this value, such as bad sleep or alcohol consumption?'
|
explainer:
|
||||||
|
'Is there anything that could have influenced this value, such as bad sleep or alcohol consumption?',
|
||||||
},
|
},
|
||||||
exclude: {
|
exclude: {
|
||||||
header: "Exclude",
|
header: 'Exclude',
|
||||||
explainer: "You can exclude this value if you don't want to use it for fertility detection"
|
explainer:
|
||||||
}
|
"You can exclude this value if you don't want to use it for fertility detection",
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
export const noteExplainer = "Anything you want to add for the day?"
|
export const noteExplainer = 'Anything you want to add for the day?'
|
||||||
|
|
||||||
export const general = {
|
export const general = {
|
||||||
cycleDayNumber: "Cycle day ",
|
cycleDayNumber: 'Cycle day ',
|
||||||
today: "Today"
|
today: 'Today',
|
||||||
}
|
}
|
||||||
|
|
||||||
export const sharedDialogs = {
|
export const sharedDialogs = {
|
||||||
@@ -144,5 +150,5 @@ export const sharedDialogs = {
|
|||||||
reallyDeleteData: 'Yes, I am sure',
|
reallyDeleteData: 'Yes, I am sure',
|
||||||
save: 'Save',
|
save: 'Save',
|
||||||
delete: 'Delete',
|
delete: 'Delete',
|
||||||
disabledInfo: 'There is some data missing'
|
disabledInfo: 'There is some data missing',
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user