diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2013-03-02 23:30:32 -0600 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2013-03-02 23:30:32 -0600 |
commit | 975f3a15b414d023169167cc22ab03e659fbed38 (patch) | |
tree | 6499f3a6fe15fc2782b7d0940e9c3b3a873481c5 | |
parent | 0032b853a65c3b109049d8e321e1129643c036e1 (diff) | |
download | amarok-975f3a15b414d023169167cc22ab03e659fbed38.tar.gz amarok-975f3a15b414d023169167cc22ab03e659fbed38.zip |
Fix stale web URLs. This partially resolves bug report 1263.
-rw-r--r-- | amarok/src/Options1.ui | 2 | ||||
-rw-r--r-- | amarok/src/firstrunwizard.ui | 4 | ||||
-rw-r--r-- | amarok/src/playerwindow.cpp | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/amarok/src/Options1.ui b/amarok/src/Options1.ui index dbee4891..ca3f8597 100644 --- a/amarok/src/Options1.ui +++ b/amarok/src/Options1.ui @@ -392,7 +392,7 @@ <cstring>moodbarHelpLabel</cstring> </property> <property name="text"> - <string>You need the <a href='http://amarok.kde.org/wiki/Moodbar'>moodbar package</a> installed to enable the moodbar feature.</string> + <string>You need the moodbar package installed from your distro repositories to enable the moodbar feature.</string> </property> </widget> <widget class="TQFrame"> diff --git a/amarok/src/firstrunwizard.ui b/amarok/src/firstrunwizard.ui index d5885635..4ba58908 100644 --- a/amarok/src/firstrunwizard.ui +++ b/amarok/src/firstrunwizard.ui @@ -162,8 +162,8 @@ <string>Amarok uses a database to store information about your music. If you are not sure which to use, press Next. <p><b>MySQL</b> or <b>Postgresql</b> are faster than <b>sqlite</b>, but require additional setup.</p> <ul> -<li><a href="http://amarok.kde.org/wiki/MySQL_HowTo">Instructions for configuring MySQL</a>.</li> -<li><a href="http://amarok.kde.org/wiki/Postgresql_HowTo">Instructions for configuring Postgresql</a>.</li> +<li><a href="http://amarok.kde.org/wiki/Amarok_1.4/User_Guides/MySQL_HowTo">Instructions for configuring MySQL</a>.</li> +<li><a href="http://amarok.kde.org/wiki/Amarok_1.4/User_Guides/PostgreSQL_HowTo">Instructions for configuring Postgresql</a>.</li> </ul></string> </property> </widget> diff --git a/amarok/src/playerwindow.cpp b/amarok/src/playerwindow.cpp index 37d917ae..0998311c 100644 --- a/amarok/src/playerwindow.cpp +++ b/amarok/src/playerwindow.cpp @@ -251,7 +251,7 @@ void PlayerWidget::setScroll( const TQStringList &list ) } //FIXME empty TQString would crash due to NULL Pixmaps - if( text.isEmpty() ) text = i18n( "Please report this message to amarok@kde.org, thanks!" ); + if( text.isEmpty() ) text = i18n( "Please report this message to trinity-devel@lists.pearsoncomputing.net, thanks!" ); TQFont font( m_pScrollFrame->font() ); TQFontMetrics fm( font ); |