summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scripts/RELEASE_HOWTO26
-rw-r--r--src/application.cpp4
-rw-r--r--src/cleardata.ui4
-rw-r--r--src/main.cpp2
-rw-r--r--src/networkaccessmanager.cpp6
-rw-r--r--src/panelhistory.cpp2
6 files changed, 17 insertions, 27 deletions
diff --git a/scripts/RELEASE_HOWTO b/scripts/RELEASE_HOWTO
index 0e545234..b9db2628 100644
--- a/scripts/RELEASE_HOWTO
+++ b/scripts/RELEASE_HOWTO
@@ -18,7 +18,12 @@ SECTION 1: Preparation
FIXME SECTION 2: Creating and Testing the Tarball
-* Run the release.rb script; OR Follow the guide lines in appendix A
+* Run the "release_script.sh"
+ VERSION=qualcosina
+ git tag -s $VERSION
+ git archive --prefix=rekonq-$VERSION/ $VERSION | bzip2 > releases/rekonq-$VERSION.tar.bz2
+ git archive --prefix=rekonq-$VERSION/ $VERSION | gzip > releases/rekonq-$VERSION.tar.gz
+
* Test the following:
$ ./configure && make
@@ -54,23 +59,8 @@ Section 4: The Release Day
--------------------------------------------------------------------------------
-
-APPENDIX A (TODO remove this)
-
-This is what the release_amarok script does:
-
-1. Checkout a fresh copy of amarok, its docs and po; cd into the root
-2. Update APP_VERSION in amarok/src/amarok.h
-3. $ `find -name .svn -exec rm {} \;`
-4. $ export WANT_AUTOMAKE=1.6
-5. $ make -f Makefile.cvs
-6. $ rm -rf autom4te.cache config.h config.log
-7. $ pushd amarok; mv README TODO INSTALL ChangeLog AUTHORS COPYING amarok.lsm ..; popd
-8. $ mv ../multimedia ../amarok-VERSION
-9. $ tar cjf ../amarok-VERSION.tar.bz2 ../amarok-VERSION
-
-
APPENDIX B (TODO create an analogue script)
-To create a changelog in html format for updating the various articles and websites, run generate_changelog.rb.
+To create a changelog in html format for updating the various articles and websites,
+run generate_changelog.rb.
It will output a file called ChangeLog.html.
diff --git a/src/application.cpp b/src/application.cpp
index 44d50a88..9263113e 100644
--- a/src/application.cpp
+++ b/src/application.cpp
@@ -250,7 +250,7 @@ void Application::loadUrl(const KUrl& url, const Rekonq::OpenType& type)
if ( !url.isValid() )
{
- KMessageBox::error(0, i18n("Malformed URL\n%1", url.url()));
+ KMessageBox::error(0, i18n("Malformed URL:\n%1", url.url()));
return;
}
@@ -289,7 +289,7 @@ void Application::loadUrl(const KUrl& url, const Rekonq::OpenType& type)
if ( !KProtocolInfo::isKnownProtocol( loadingUrl ) )
{
- KMessageBox::error(0, i18n("Protocol not supported\n%1", url.protocol()));
+ KMessageBox::error(0, i18n("Protocol not supported:\n%1", url.protocol()));
return;
}
diff --git a/src/cleardata.ui b/src/cleardata.ui
index 94a39c69..b27a8f63 100644
--- a/src/cleardata.ui
+++ b/src/cleardata.ui
@@ -24,7 +24,7 @@
<item>
<widget class="QCheckBox" name="clearHistory">
<property name="text">
- <string>history</string>
+ <string>History</string>
</property>
<property name="checked">
<bool>true</bool>
@@ -54,7 +54,7 @@
<item>
<widget class="QCheckBox" name="clearWebIcons">
<property name="text">
- <string>Website Icons</string>
+ <string>Website icons</string>
</property>
<property name="checked">
<bool>true</bool>
diff --git a/src/main.cpp b/src/main.cpp
index d6189049..0758abfa 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -87,7 +87,7 @@ int main(int argc, char **argv)
"");
about.addCredit(ki18n("Abuus"),
- ki18n("Webview mouse event support"),
+ ki18n("Webview mouse event support"),
"buusmail@gmail.com",
"");
diff --git a/src/networkaccessmanager.cpp b/src/networkaccessmanager.cpp
index a06b20aa..473fa770 100644
--- a/src/networkaccessmanager.cpp
+++ b/src/networkaccessmanager.cpp
@@ -141,8 +141,8 @@ void NetworkAccessManager::authenticationRequired(QNetworkReply *reply, QAuthent
passwordWidget.iconLabel->setText(QString());
passwordWidget.iconLabel->setPixmap(mainWindow->style()->standardIcon(QStyle::SP_MessageBoxQuestion, 0, mainWindow).pixmap(32, 32));
-
- QString introMessage = i18n("<qt>Enter username and password for %1 at %2</qt>",
+ //FIXME Replace the text below with an explanation of what exactly %1 and %2 stand for
+ QString introMessage = i18nc("%1=stuff %2=stuff2", "<qt>Enter username and password for %1 at %2</qt>",
Qt::escape(reply->url().toString()),
Qt::escape(reply->url().toString()) );
passwordWidget.introLabel->setText(introMessage);
@@ -172,7 +172,7 @@ void NetworkAccessManager::proxyAuthenticationRequired(const QNetworkProxy &prox
proxyWdg.iconLabel->setText(QString());
proxyWdg.iconLabel->setPixmap(mainWindow->style()->standardIcon(QStyle::SP_MessageBoxQuestion, 0, mainWindow).pixmap(32, 32));
-
+ //FIXME Connect to proxy %1 using what? Best solution would be adding a %2 after the "using:" part and explain %1 and %2 in an i18nc call
QString introMessage = i18n("<qt>Connect to proxy %1 using:</qt>", Qt::escape(proxy.hostName()) );
proxyWdg.introLabel->setText(introMessage);
proxyWdg.introLabel->setWordWrap(true);
diff --git a/src/panelhistory.cpp b/src/panelhistory.cpp
index f9ac9da0..d6367669 100644
--- a/src/panelhistory.cpp
+++ b/src/panelhistory.cpp
@@ -51,7 +51,7 @@ PanelHistory::PanelHistory(QWidget *parent)
// add search bar
QHBoxLayout *hBoxLayout = new QHBoxLayout;
hBoxLayout->setContentsMargins(5, 0, 0, 0);
- QLabel *searchLabel = new QLabel(i18n("Search: "));
+ QLabel *searchLabel = new QLabel(i18n("Search:"));
hBoxLayout->addWidget(searchLabel);
KLineEdit *search = new KLineEdit;
hBoxLayout->addWidget(search);