diff --git a/components/cycle-day/cycle-day-overview.js b/components/cycle-day/cycle-day-overview.js
index f51392f940be2f28cf84fc84ab0fa743224e0723..3befceaeeb5ad283d1402920c4472b7f3941db42 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,
-  positionOrIntensity as positionLabels
+  cervixPosition 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 f5ef01392f35f0a00130bdd0105c0a07d15a16c1..6e294ef8408ca22f8b65f1bae51465033ceeda5d 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 positionOrIntensity = ['low', 'medium', 'high']
+export const cervixPosition = ['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 b7cabbbf183fcf270e2dce343765ec5ec0ea6ecc..59d9d8b5c3e2acf449d547ef545238f0e3c49603 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,
-  positionOrIntensity as positionLabels
+  cervixPosition as positionLabels
 } from '../labels/labels'
 
 export default class Cervix extends Component {