From 53cb27ebc8957f19faae827e04c25484ca249482 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Mon, 21 Sep 2020 22:32:04 +0200 Subject: [PATCH] [calamares] Provide i18n context for "Key" --- src/calamares/VariantModel.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/calamares/VariantModel.cpp b/src/calamares/VariantModel.cpp index 8b0378f03..c29c27fcf 100644 --- a/src/calamares/VariantModel.cpp +++ b/src/calamares/VariantModel.cpp @@ -229,11 +229,11 @@ VariantModel::headerData( int section, Qt::Orientation orientation, int role ) c { if ( section == 0 ) { - return tr( "Key" ); + return tr( "Key", "Column header for key/value" ); } else if ( section == 1 ) { - return tr( "Value" ); + return tr( "Value", "Column header for key/value" ); } else {