From 5997a378a8697190803c2cdc9d008234f538aa41 Mon Sep 17 00:00:00 2001 From: Panagiotis Papadopoulos Date: Fri, 31 Jul 2009 12:09:04 +0200 Subject: Added a dot to the tooltip message --- src/settings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/settings.cpp b/src/settings.cpp index 2610a351..fe176a27 100644 --- a/src/settings.cpp +++ b/src/settings.cpp @@ -159,7 +159,7 @@ SettingsDialog::~SettingsDialog() void SettingsDialog::setWebSettingsToolTips() { - d->webkitUi.kcfg_autoLoadImages->setToolTip(i18n("Specifies whether images are automatically loaded in web pages")); + d->webkitUi.kcfg_autoLoadImages->setToolTip(i18n("Specifies whether images are automatically loaded in web pages.")); d->webkitUi.kcfg_javascriptEnabled->setToolTip(i18n("Enables the execution of JavaScript programs.")); d->webkitUi.kcfg_javaEnabled->setToolTip(i18n("Enables support for Java applets.")); d->webkitUi.kcfg_pluginsEnabled->setToolTip(i18n("Enables support for plugins in web pages.")); -- cgit v1.2.1 From 8a93a4828646d3a8fbbb5fa4dfc4f5335aead696 Mon Sep 17 00:00:00 2001 From: Panagiotis Papadopoulos Date: Fri, 31 Jul 2009 12:09:41 +0200 Subject: "Fixed" spelling of a Name --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/main.cpp b/src/main.cpp index 98b5e5ca..53e881f5 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -90,7 +90,7 @@ int main(int argc, char **argv) "hdevalence@gmail.com", ""); - about.addCredit(ki18n("Ivan Cukic"), + about.addCredit(ki18n("Ivan Čukić"), ki18n("Patches, bugfixing"), "ivan@fomentgroup.org", ""); -- cgit v1.2.1 From 376784a956453d6ded5c2d58e729a3f44e4d7374 Mon Sep 17 00:00:00 2001 From: Panagiotis Papadopoulos Date: Fri, 31 Jul 2009 12:10:29 +0200 Subject: "Fixed" a string a little --- src/mainview.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/mainview.cpp b/src/mainview.cpp index 2382210b..22a03242 100644 --- a/src/mainview.cpp +++ b/src/mainview.cpp @@ -484,7 +484,7 @@ void MainView::slotCloseTab(int index) if (tab->isModified()) { int risp = KMessageBox::questionYesNo(this, - i18n("You have modified this page and when closing it you would lose the modification.\n" + i18n("You have modified this page and when closing it you would lose the modifications.\n" "Do you really want to close this page?\n"), i18n("Do you really want to close this page?")); if (risp == KMessageBox::No) -- cgit v1.2.1 From ea2a023be1be59e49a1bb7ffec90f5f1624faea3 Mon Sep 17 00:00:00 2001 From: Panagiotis Papadopoulos Date: Fri, 31 Jul 2009 12:11:39 +0200 Subject: Make the string KDE HIG compatible --- src/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 706a3051..bb29791c 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -324,7 +324,7 @@ void MainWindow::setupActions() connect(a, SIGNAL(triggered(bool)), m_view, SLOT(previousTab())); // clear private data action - a = new KAction(KIcon("edit-clear"), i18n("Clear private data"), this); + a = new KAction(KIcon("edit-clear"), i18n("Clear Private Data"), this); actionCollection()->addAction(QLatin1String("clear_private_data"), a); connect(a, SIGNAL(triggered(bool)), this, SLOT(clearPrivateData())); } -- cgit v1.2.1