From 0ab907c7fdb8ead74a43ef8901184fdb77f799b2 Mon Sep 17 00:00:00 2001 From: Aleix Pol Date: Wed, 20 Mar 2019 11:41:44 +0100 Subject: [PATCH] orientation sensor: Add comments for translators --- orientation_sensor.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/orientation_sensor.cpp b/orientation_sensor.cpp index 457231f21a..d88d422049 100644 --- a/orientation_sensor.cpp +++ b/orientation_sensor.cpp @@ -84,11 +84,11 @@ void OrientationSensor::refresh() break; case Orientation::TopUp: case Orientation::TopDown: - text = i18n("Vertical"); + text = i18nc("Portrait oriented display", "Vertical"); break; case Orientation::LeftUp: case Orientation::RightUp: - text = i18n("Horizontal"); + text = i18nc("Landscape oriented display", "Horizontal"); break; } m_sni->setTitle(text);