SVN commit 863213 by vkrause: Make sure everyone understands that this is a development tool and not our idea of a nice user interface for a PIM application. M +1 -1 akonadiconsole.desktop M +8 -0 mainwindow.cpp --- trunk/KDE/kdepim/akonadi/clients/akonadiconsole/akonadiconsole.desktop #863212:863213 @@ -59,4 +59,4 @@ Comment[zh_CN]=用于管理和调试 Akonadi 的控制台 Comment[zh_TW]=Akonadi 管理與除錯主控台 Terminal=false -Categories=Qt;KDE; +Categories=Qt;KDE;Development; --- trunk/KDE/kdepim/akonadi/clients/akonadiconsole/mainwindow.cpp #863212:863213 @@ -30,6 +30,7 @@ #include #include #include +#include #include #include @@ -44,6 +45,13 @@ setupGUI( Keys /*| ToolBar | StatusBar*/ | Save | Create, "akonadiconsoleui.rc" ); KPIM::UiStateSaver::restoreState( this, KConfigGroup( KGlobal::config(), "UiState" ) ); + + KMessageBox::information( this, i18n("

Akonadi Console is purely a development tool. " + "It allows you to view and change internal data structures of Akonadi. " + "You should only change data in here if you know what you are doing, otherwise " + "you risk damaging or losing your personal information management data.
" + "Use at your own risk!

"), + QString(), "UseAtYourOwnRiskWarning" ); } bool MainWindow::queryExit()