blob: 5c11133dd39cceb8ef7188cc641684fddc5d00ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
// This file is generated by kconfig_compiler_kf5 from test_translation.kcfg.
// All changes you do to this file will be lost.
#include "test_translation_kde.h"
#include <klocalizedstring.h>
using namespace TestNameSpace;
TestTranslationKde::TestTranslationKde( )
: KConfigSkeleton( QLatin1String( "test_translation_rc" ) )
{
setCurrentGroup( QLatin1String( "General" ) );
KConfigSkeleton::ItemBool *itemAutoSave;
itemAutoSave = new KConfigSkeleton::ItemBool( currentGroup(), QLatin1String( "Auto Save" ), mAutoSave, false );
itemAutoSave->setLabel( i18n("Enable automatic saving of calendar") );
itemAutoSave->setWhatsThis( i18nc("@info:whatsthis", "Enable automatic saving of calendars to have calendars saved automatically.") );
addItem( itemAutoSave, QLatin1String( "AutoSave" ) );
}
TestTranslationKde::~TestTranslationKde()
{
}
|