summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2009-03-25 01:11:46 +0100
committerAndrea Diamantini <adjam7@gmail.com>2009-03-25 01:11:46 +0100
commit562c5b1284a13e1ceeff7da4d2198b995c96968b (patch)
treea706cf42f6535f9fb8ab1f6df0e25ac02f1e6f23
parentHuge update. Fixed quite all of the settings troubles.. (diff)
downloadrekonq-562c5b1284a13e1ceeff7da4d2198b995c96968b.tar.xz
updated TODO, fixed History menu shortcut, updated Message.sh
-rw-r--r--TODO3
-rwxr-xr-x[-rw-r--r--]src/Messages.sh6
-rw-r--r--src/mainwindow.cpp2
3 files changed, 6 insertions, 5 deletions
diff --git a/TODO b/TODO
index 6b920316..f14bb05c 100644
--- a/TODO
+++ b/TODO
@@ -1,5 +1,5 @@
To 0.0.5
-- definitely fix fonts!
+DONE definitely fix fonts!
- fix crash on example sites..
DONE tabbar: fixed dimension
DONE tabbar: hide if just one
@@ -11,6 +11,7 @@ DONE Added Google Suggestions
- loading right sites as "external browser"
- provide translations
DONE notfound.html shown if rekonq doesn't load connection
+- disable BACK button when history is NULL
To 0.0.4
- improve DOCUMENTATION
diff --git a/src/Messages.sh b/src/Messages.sh
index 7edde0a1..76d48b4b 100644..100755
--- a/src/Messages.sh
+++ b/src/Messages.sh
@@ -1,4 +1,4 @@
#! /usr/bin/env bash
-$EXTRACTRC `find . -name \*.rc` >> rc.cpp
-$XGETTEXT *.cpp -o $podir/rekonq.pot
-rm -f *.cpp \ No newline at end of file
+$EXTRACTRC `find . -name \*.ui -o -name \*.rc -o -name \*.kcfg` >> rc.cpp
+$XGETTEXT `find . -name \*.cpp` -o $podir/rekonq.pot
+
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index e286cc36..4abfcd15 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -290,7 +290,7 @@ void MainWindow::setupHistoryMenu()
HistoryMenu *historyMenu = new HistoryMenu(this);
connect(historyMenu, SIGNAL(openUrl(const KUrl&)), m_view, SLOT(loadUrlInCurrentTab(const KUrl&)));
connect(historyMenu, SIGNAL(hovered(const QString&)), this, SLOT(slotUpdateStatusbar(const QString&)));
- historyMenu->setTitle( i18n("Hi&story") );
+ historyMenu->setTitle( i18n("&History") );
menuBar()->insertMenu( actionCollection()->action("bookmarks"), historyMenu);
QList<QAction*> historyActions;