From 7cbc43616efcc15c4ad60e37be76336404a1c449 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Wed, 19 Feb 2020 17:21:12 +0100 Subject: [PATCH] [netinstall] Some more "standard" alternative labels - Hide the labels from the compiler to avoid warnings - Add some more labels proposed by ArcoLinux --- src/modules/netinstall/NetInstallViewStep.cpp | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/modules/netinstall/NetInstallViewStep.cpp b/src/modules/netinstall/NetInstallViewStep.cpp index 8de3fd74f..cb79982f9 100644 --- a/src/modules/netinstall/NetInstallViewStep.cpp +++ b/src/modules/netinstall/NetInstallViewStep.cpp @@ -56,16 +56,23 @@ NetInstallViewStep::prettyName() const { return m_sidebarLabel ? m_sidebarLabel->get() : tr( "Package selection" ); +#if defined(TABLE_OF_TRANSLATIONS) + NOTREACHED // This is a table of "standard" labels for this module. If you use them // in the label: sidebar: section of the config file, the existing // translations can be used. - NOTREACHED tr( "Package selection" ); tr( "Office software" ); tr( "Office package" ); tr( "Browser software" ); tr( "Browser package" ); tr( "Web browser" ); + tr( "Kernel" ); + tr( "Services" ); + tr( "Login" ); + tr( "Desktop" ); + tr( "Applications" ); +#endif }