diff --git a/components/cycle-day/cycle-day-overview.js b/components/cycle-day/cycle-day-overview.js
index f9edf06b606a8aa61116e80320b9acae70d73d5f..5218864b5ecae7d202f49ade79fb0c0ede0296cd 100644
--- a/components/cycle-day/cycle-day-overview.js
+++ b/components/cycle-day/cycle-day-overview.js
@@ -12,7 +12,7 @@ import {
   mucusNFP as computeSensiplanMucusLabels,
   cervixOpening as openingLabels,
   cervixFirmness as firmnessLabels,
-  cervixPosition as positionLabels
+  positionOrIntensity as positionLabels
 } from './labels/labels'
 import cycleDayModule from '../../lib/cycle'
 import { bleedingDaysSortedByDate } from '../../db'
diff --git a/components/cycle-day/labels/labels.js b/components/cycle-day/labels/labels.js
index 6e294ef8408ca22f8b65f1bae51465033ceeda5d..f5ef01392f35f0a00130bdd0105c0a07d15a16c1 100644
--- a/components/cycle-day/labels/labels.js
+++ b/components/cycle-day/labels/labels.js
@@ -4,11 +4,11 @@ export const mucusTexture = ['nothing', 'creamy', 'egg white']
 export const mucusNFP = ['t', 'Ø', 'f', 'S', '+S']
 export const cervixOpening = ['closed', 'medium', 'open']
 export const cervixFirmness = ['hard', 'soft']
-export const cervixPosition = ['low', 'medium', 'high']
+export const positionOrIntensity = ['low', 'medium', 'high']
 
 export const fertilityStatus = {
   fertile: 'fertile',
   infertile: 'infertile',
   fertileUntilEvening: 'Fertile phase ends in the evening',
   unknown: 'We cannot show any cycle information because no menses has been entered'
-}
\ No newline at end of file
+}
diff --git a/components/cycle-day/symptoms/cervix.js b/components/cycle-day/symptoms/cervix.js
index 59d9d8b5c3e2acf449d547ef545238f0e3c49603..b7cabbbf183fcf270e2dce343765ec5ec0ea6ecc 100644
--- a/components/cycle-day/symptoms/cervix.js
+++ b/components/cycle-day/symptoms/cervix.js
@@ -10,7 +10,7 @@ import { saveSymptom } from '../../../db'
 import {
   cervixOpening as openingLabels,
   cervixFirmness as firmnessLabels,
-  cervixPosition as positionLabels
+  positionOrIntensity as positionLabels
 } from '../labels/labels'
 
 export default class Cervix extends Component {