diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/settings/settings_general.ui | 13 | ||||
| -rw-r--r-- | src/webview.cpp | 2 | 
2 files changed, 9 insertions, 6 deletions
| diff --git a/src/settings/settings_general.ui b/src/settings/settings_general.ui index 17ac0d0f..a4503d4a 100644 --- a/src/settings/settings_general.ui +++ b/src/settings/settings_general.ui @@ -244,22 +244,22 @@          </property>          <item>           <property name="text"> -          <string>favorites</string> +          <string>Favorites</string>           </property>          </item>          <item>           <property name="text"> -          <string>closed tabs</string> +          <string>Closed Tabs</string>           </property>          </item>          <item>           <property name="text"> -          <string>history</string> +          <string>Bookmarks</string>           </property>          </item>          <item>           <property name="text"> -          <string>bookmarks</string> +          <string>History</string>           </property>          </item>         </widget> @@ -276,12 +276,15 @@        <item>         <widget class="QCheckBox" name="kcfg_kgetDownload">          <property name="text"> -         <string>Download with KGet</string> +         <string>Use KGet for downloading files</string>          </property>         </widget>        </item>        <item>         <widget class="QCheckBox" name="kcfg_kgetList"> +        <property name="whatsThis"> +         <string>If enabled, rekonq will display an additional context menu entry, which, when selected, lists all available links of the current website in KGet.</string> +        </property>	          <property name="text">           <string>List links with KGet</string>          </property> diff --git a/src/webview.cpp b/src/webview.cpp index 3936ed3c..232a2633 100644 --- a/src/webview.cpp +++ b/src/webview.cpp @@ -278,7 +278,7 @@ void WebView::contextMenuEvent(QContextMenuEvent *event)              if (ReKonfig::kgetList())              { -                a = new KAction(KIcon("kget"), i18n("List all links"), this); +                a = new KAction(KIcon("kget"), i18n("List All Links"), this);                  connect(a, SIGNAL(triggered(bool)), page(), SLOT(downloadAllContentsWithKGet()));                  menu.addAction(a);              } | 
