Git commit 1b11bf5c738a00f0bf1e43f341b5b8a3b05e28c2 by Albert Astals Cid, on behalf of Boris Egorov. Committed on 09/09/2014 at 08:49. Pushed by aacid into branch 'master'.
Add Green Tea BUGS: 338581 REVIEW: 120027 M +1 -1 doc/index.docbook M +1 -0 src/toplevel.cpp http://commits.kde.org/kteatime/1b11bf5c738a00f0bf1e43f341b5b8a3b05e28c2 diff --git a/doc/index.docbook b/doc/index.docbook index da7db9d..01d74e2 100644 --- a/doc/index.docbook +++ b/doc/index.docbook @@ -83,7 +83,7 @@ <sect1 id="select-your-tea"> <title>Select Your Tea</title> -<para>Clicking on the icon with the &RMB; will bring up a menu. At the top of the menu there are three menu items. Here, you can select what kind of tea you are preparing to drink. There are: <guimenuitem>Black Tea</guimenuitem>, <guimenuitem>Earl Grey</guimenuitem>, and <guimenuitem>Fruit Tea</guimenuitem>. These teas are preconfigured with a default time. Many people have complained that the times are not correct. Please be aware that the amount of time it takes to steep a cup of tea is based on personal preference. The times chosen are approximations. If you read on, you will learn how to change or delete these predefined times and to set your own time. A quick-and-easy way to set a custom time is to choose <guimenuitem>Anonymous...</guimenuitem> from the menu.</para> +<para>Clicking on the icon with the &RMB; will bring up a menu. At the top of the menu there are three menu items. Here, you can select what kind of tea you are preparing to drink. There are: <guimenuitem>Black Tea</guimenuitem>, <guimenuitem>Earl Grey</guimenuitem>, <guimenuitem>Fruit Tea</guimenuitem>, and <guimenuitem>Green Tea</guimenuitem>. These teas are preconfigured with a default time. Many people have complained that the times are not correct. Please be aware that the amount of time it takes to steep a cup of tea is based on personal preference. The times chosen are approximations. If you read on, you will learn how to change or delete these predefined times and to set your own time. A quick-and-easy way to set a custom time is to choose <guimenuitem>Anonymous...</guimenuitem> from the menu.</para> </sect1> <sect1 id="start"> diff --git a/src/toplevel.cpp b/src/toplevel.cpp index 9c40edf..b6965e4 100644 --- a/src/toplevel.cpp +++ b/src/toplevel.cpp @@ -63,6 +63,7 @@ TopLevel::TopLevel(const KAboutData *aboutData, const QString &icon, QWidget *pa m_tealist.append( Tea(i18n( "Black Tea" ), 180 ) ); m_tealist.append( Tea(i18n( "Earl Grey" ), 300 ) ); m_tealist.append( Tea(i18n( "Fruit Tea" ), 480 ) ); + m_tealist.append( Tea(i18n( "Green Tea" ), 120 ) ); }
