diff --git a/INSTALL b/INSTALL index 934f158f..2e4b1228 100644 --- a/INSTALL +++ b/INSTALL @@ -5,7 +5,7 @@ In order to compile and install Amarok on your system, type the following in the base directory of the Amarok distribution: - % ./configure --prefix=`kde-config --prefix` + % ./configure --prefix=`tde-config --prefix` % make % make install diff --git a/README b/README index 6d66e381..aa6d0cb6 100644 --- a/README +++ b/README @@ -135,7 +135,7 @@ In order to compile and install Amarok on your system, type the following in the base directory of the Amarok distribution: - % ./configure --prefix=`kde-config --prefix` + % ./configure --prefix=`tde-config --prefix` % make % make install diff --git a/acinclude.m4 b/acinclude.m4 index 08f2aa0b..af86ec06 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -5006,13 +5006,13 @@ AC_DEFUN([KDE_SET_PREFIX], KDE_SET_DEFAULT_BINDIRS if test "x$prefix" = "xNONE"; then - dnl no prefix given: look for kde-config in the PATH and deduce the prefix from it - KDE_FIND_PATH(kde-config, KDECONFIG, [$kde_default_bindirs], [KDE_MISSING_PROG_ERROR(kde-config)], [], prepend) + dnl no prefix given: look for tde-config in the PATH and deduce the prefix from it + KDE_FIND_PATH(tde-config, KDECONFIG, [$kde_default_bindirs], [KDE_MISSING_PROG_ERROR(tde-config)], [], prepend) else - dnl prefix given: look for kde-config, preferrably in prefix, otherwise in PATH + dnl prefix given: look for tde-config, preferrably in prefix, otherwise in PATH kde_save_PATH="$PATH" PATH="$exec_prefix/bin:$prefix/bin:$PATH" - KDE_FIND_PATH(kde-config, KDECONFIG, [$kde_default_bindirs], [KDE_MISSING_PROG_ERROR(kde-config)], [], prepend) + KDE_FIND_PATH(tde-config, KDECONFIG, [$kde_default_bindirs], [KDE_MISSING_PROG_ERROR(tde-config)], [], prepend) PATH="$kde_save_PATH" fi @@ -5028,7 +5028,7 @@ AC_DEFUN([KDE_SET_PREFIX], AC_MSG_CHECKING([where to install]) if test "x$prefix" = "xNONE"; then prefix=$kde_libs_prefix - AC_MSG_RESULT([$prefix (as returned by kde-config)]) + AC_MSG_RESULT([$prefix (as returned by tde-config)]) else dnl --prefix was given. Compare prefixes and warn (in configure.in.bot.end) if different given_prefix=$prefix diff --git a/amarok/src/enginecontroller.cpp b/amarok/src/enginecontroller.cpp index 200722e0..564d8a32 100644 --- a/amarok/src/enginecontroller.cpp +++ b/amarok/src/enginecontroller.cpp @@ -196,7 +196,7 @@ EngineController::loadEngine( const TQString &engineName ) "it is likely that Amarok is installed under the wrong prefix, please fix your installation using:
"
             "$ cd /path/to/amarok/source-code/
" "$ su -c \"make uninstall\"
" - "$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"
" + "$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"
" "$ kbuildsycoca
" "$ amarok
" "More information can be found in the README file. For further assistance join us at #amarok on irc.freenode.net.

" ) ); diff --git a/amarok/src/scripts/amarok-svn/amarok-svn.sh b/amarok/src/scripts/amarok-svn/amarok-svn.sh index 63f913b4..93fa873b 100755 --- a/amarok/src/scripts/amarok-svn/amarok-svn.sh +++ b/amarok/src/scripts/amarok-svn/amarok-svn.sh @@ -17,7 +17,7 @@ echo ## Define global variables LANG="C" #Make outputs in English, like the script itself. -RCFILE="amarok-svnrc" #Settings file, will end up in '`kde-config --localprefix`/share/config/'. +RCFILE="amarok-svnrc" #Settings file, will end up in '`tde-config --localprefix`/share/config/'. C_STEP="1" #The current step of the installation process S_STEPS="11" #Number of steps in the installation process TMP_FILES="" #Will be filled with URLs to temporary files @@ -166,7 +166,7 @@ done ## Check requirements CheckBinary kdialog "" --no-dialog CheckBinary svn "Version 1.1 or newer is needed." -CheckBinary kde-config "kde-config sometimes falls out of the \$PATH for some reason." +CheckBinary tde-config "tde-config sometimes falls out of the \$PATH for some reason." CheckBinary kreadconfig CheckBinary kwriteconfig @@ -192,7 +192,7 @@ fi ## Settings -if [ -s "`kde-config --localprefix`/share/config/$RCFILE" -a "$RESET_CONF" != "1" ]; then #If the settings exists and the user doesn't want to change them. +if [ -s "`tde-config --localprefix`/share/config/$RCFILE" -a "$RESET_CONF" != "1" ]; then #If the settings exists and the user doesn't want to change them. GET_LANG="`ReadConfig get_lang`" if [ -z "$GET_LANG" ]; then #Save default value if empty @@ -234,7 +234,7 @@ else WriteConfig get_lang "$GET_LANG" ## ./configure flags - Dialog --yesno "Do you want to use any extra configuration options (in addition to '--prefix=`kde-config --prefix` --enable-debug=full')?\nNo extra options is the default, and that works fine.\n(For a list of available flags, say yes and enter 'help' (CaSe insensitive) in the box, then wait for Amarok-svn to get to the configuration step (step 8).)" + Dialog --yesno "Do you want to use any extra configuration options (in addition to '--prefix=`tde-config --prefix` --enable-debug=full')?\nNo extra options is the default, and that works fine.\n(For a list of available flags, say yes and enter 'help' (CaSe insensitive) in the box, then wait for Amarok-svn to get to the configuration step (step 8).)" if [ "$?" = "0" ]; then #If the user said yes CONF_FLAGS_RAW="`Dialog --inputbox \"Specify extra configuration options to use\"`" if [ "`echo $CONF_FLAGS_RAW | tr A-Z a-z`" != "help" ]; then @@ -501,7 +501,7 @@ if [ "$CONF_HELP" = "true" ]; then echo -e "Configuration options\n" > $TMP_CONF ./configure --help >> $TMP_CONF KDTITLE=" :: Configuration options" Dialog --textbox $TMP_CONF 600 800 & #800x600 should be enough. Put it in the background (&) to make the user able to watch it while typing the selected options into the input box. - Dialog --yesno "Do you want to use any extra configuration options (in addition to '--prefix=`kde-config --prefix` --enable-debug=full')?\nNo extra options is the default, and that works fine.\n(Available options are displayed in another window right now.)" + Dialog --yesno "Do you want to use any extra configuration options (in addition to '--prefix=`tde-config --prefix` --enable-debug=full')?\nNo extra options is the default, and that works fine.\n(Available options are displayed in another window right now.)" if [ "$?" = "0" ]; then #If the user said yes CONF_FLAGS_RAW="`kdialog --title \"$KD_TITLE\" --inputbox \"Specify extra configuration options to use\"`" CONF_FLAGS="" @@ -523,7 +523,7 @@ fi echo let C_STEP=C_STEP+1 echo "# $C_STEP/$S_STEPS - Configuring. (This will also take a while.)" -./configure --prefix=`kde-config --prefix` --enable-debug=full$CONF_FLAGS +./configure --prefix=`tde-config --prefix` --enable-debug=full$CONF_FLAGS if [ "$?" != "0" ]; then #If the command didn't finish successfully Error "Configuration failed. Amarok was NOT installed/upgraded." fi diff --git a/amarok/src/scripts/amarok_live/amarok_live.py b/amarok/src/scripts/amarok_live/amarok_live.py index df856f4f..0aec5623 100755 --- a/amarok/src/scripts/amarok_live/amarok_live.py +++ b/amarok/src/scripts/amarok_live/amarok_live.py @@ -138,7 +138,7 @@ class ConfigDialog ( QDialog ): def unpack( self ): # now the fun part, we run part 1 - fd = os.popen("kde-config --prefix", "r") + fd = os.popen("tde-config --prefix", "r") tdedir = fd.readline() tdedir = tdedir.strip() scriptdir = tdedir + "/share/apps/amarok/scripts/amarok_live" @@ -371,7 +371,7 @@ class Remasterer( QApplication ): if path == "": os.system("kdialog --sorry 'You have not configured Amarok live! Please run configure.") - fd = os.popen("kde-config --prefix", "r") + fd = os.popen("tde-config --prefix", "r") tdedir = fd.readline() tdedir = tdedir.strip() scriptdir = tdedir + "/share/apps/amarok/scripts/amarok_live" diff --git a/configure.in b/configure.in index b01f7440..e2727692 100644 --- a/configure.in +++ b/configure.in @@ -1719,7 +1719,7 @@ if test -n "$kde_libs_prefix" -a -n "$given_prefix"; then # And if so, warn when they don't match if test "$kde_libs_prefix" != "$given_prefix"; then # And if kde doesn't know about the prefix yet - echo ":"`kde-config --path exe`":" | grep ":$given_prefix/bin/:" 2>&1 >/dev/null + echo ":"`tde-config --path exe`":" | grep ":$given_prefix/bin/:" 2>&1 >/dev/null if test $? -ne 0; then echo "" echo "Warning: you chose to install this package in $given_prefix," diff --git a/doc/amarok/index.docbook b/doc/amarok/index.docbook index 3d4fa9dc..45f5433e 100644 --- a/doc/amarok/index.docbook +++ b/doc/amarok/index.docbook @@ -281,7 +281,7 @@ url="http://amarok.kde.org">The &amarok; home page base directory of the Amarok distribution: -./configure --prefix=`kde-config --prefix` +./configure --prefix=`tde-config --prefix` make su -c "make install" diff --git a/doc/da/index.docbook b/doc/da/index.docbook index d248f875..d52caa33 100644 --- a/doc/da/index.docbook +++ b/doc/da/index.docbook @@ -479,7 +479,7 @@ ./configure --prefix=`kde-config --prefix`./configure --prefix=`tde-config --prefix` make ./configure --prefix=`kde-config --prefix`./configure --prefix=`tde-config --prefix` make ./configure --prefix=`kde-config --prefix`./configure --prefix=`tde-config --prefix` make ./configure --prefix=`kde-config --prefix`./configure --prefix=`tde-config --prefix` make ./configure --prefix=`kde-config --prefix`./configure --prefix=`tde-config --prefix` make ./configure --prefix=`kde-config --prefix`./configure --prefix=`tde-config --prefix` make ./configure --prefix=`kde-config --prefix`./configure --prefix=`tde-config --prefix` make ./configure --prefix=`kde-config --prefix`./configure --prefix=`tde-config --prefix` make ./configure --prefix=`kde-config --prefix`./configure --prefix=`tde-config --prefix` make %./configure --prefix=`kde-config --prefix`./configure --prefix=`tde-config --prefix` ./configure --prefix=`kde-config --prefix`./configure --prefix=`tde-config --prefix` ./configure --prefix=`kde-config --prefix`./configure --prefix=`tde-config --prefix` make $ cd /path/to/amarok/source-code/" "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarokMore information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" @@ -1021,7 +1021,7 @@ msgstr "" "tik:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$./configure --prefix=`kde-config --prefix` && su -c \"make install\"br>" +"
$./configure --prefix=`tde-config --prefix` && su -c \"make install\"br>" "$kbuildsycoca" "
$amaroK
Verdere inligting kan in die README lêer gevind word. Vir meer " "bystand kan jy m.b.v. IRC by kamer #amarok op irc.freenode.net inskakel.

" diff --git a/po/ar/amarok.po b/po/ar/amarok.po index 39cc98af..733c25a6 100644 --- a/po/ar/amarok.po +++ b/po/ar/amarok.po @@ -940,7 +940,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" diff --git a/po/az/amarok.po b/po/az/amarok.po index 8f810260..7ce27cdd 100644 --- a/po/az/amarok.po +++ b/po/az/amarok.po @@ -978,7 +978,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" diff --git a/po/be/amarok.po b/po/be/amarok.po index 9f1281e4..9862ef5e 100644 --- a/po/be/amarok.po +++ b/po/be/amarok.po @@ -925,7 +925,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" diff --git a/po/bg/amarok.po b/po/bg/amarok.po index b0e0da18..b31e39b6 100644 --- a/po/bg/amarok.po +++ b/po/bg/amarok.po @@ -1001,7 +1001,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" @@ -1012,7 +1012,7 @@ msgstr "" "представка. Моля, оправете това по следния начин: " "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
Повече информация може да бъде намерена във файла README. За " "повече помощ елате в #amarok в irc.freenode.net.

" diff --git a/po/bn/amarok.po b/po/bn/amarok.po index f6494622..feaccedc 100644 --- a/po/bn/amarok.po +++ b/po/bn/amarok.po @@ -985,7 +985,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" diff --git a/po/br/amarok.po b/po/br/amarok.po index af458cdb..1c6ec374 100644 --- a/po/br/amarok.po +++ b/po/br/amarok.po @@ -949,7 +949,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" diff --git a/po/ca/amarok.po b/po/ca/amarok.po index 2d27bfa5..5f832c81 100644 --- a/po/ca/amarok.po +++ b/po/ca/amarok.po @@ -1008,7 +1008,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" @@ -1020,7 +1020,7 @@ msgstr "" "incorrecte, arregleu la instal·lació usant: " "
$ cd /ruta/al/codi-font/amarok/ "
 "
$ su -c \"make uninstall\" " -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\" " +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\" " "
$ kbuildsycoca " "
$ amarok
Podeu trobar més informació al fitxer README. Per a més " "ajuda busqueu-nos al canal #amarok a irc.freenode.net.

" diff --git a/po/cs/amarok.po b/po/cs/amarok.po index cddc8dd7..7f6baccf 100644 --- a/po/cs/amarok.po +++ b/po/cs/amarok.po @@ -950,7 +950,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" @@ -962,7 +962,7 @@ msgstr "" "prefixem, opravte prosím instalaci s využitím:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
Více informací je možné nalézt v souboru README. Pro další " "pomoc se k nám připojte na #amarok na irc.freenode.net.

" diff --git a/po/cy/amarok.po b/po/cy/amarok.po index 376f071d..6b9ee5da 100644 --- a/po/cy/amarok.po +++ b/po/cy/amarok.po @@ -971,7 +971,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" diff --git a/po/da/amarok.po b/po/da/amarok.po index 2cf5d088..710cb35e 100644 --- a/po/da/amarok.po +++ b/po/da/amarok.po @@ -997,7 +997,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" @@ -1009,7 +1009,7 @@ msgstr "" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\" " "
$ kbuildsycoca" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"
" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\" " "Mere information kan findes i README-filen. For yderligere assistance gå " "venligst med i #amarok på irc.freenode.net." diff --git a/po/de/amarok.po b/po/de/amarok.po index 162ddc07..138e1241 100644 --- a/po/de/amarok.po +++ b/po/de/amarok.po @@ -1003,7 +1003,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" @@ -1015,7 +1015,7 @@ msgstr "" "Installation korrigiert werden:" "
$ cd /pfad/zu/Amarok/Quellcode/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ Amarok
" "
Bitte lesen Sie auch die README-Datei. Falls Sie weitere Hilfe benötigen, " diff --git a/po/el/amarok.po b/po/el/amarok.po index 9ae3a6b9..5c04ceb1 100644 --- a/po/el/amarok.po +++ b/po/el/amarok.po @@ -1007,7 +1007,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" @@ -1019,7 +1019,7 @@ msgstr "" "λάθος πρόθεμα, διορθώστε την εγκατάστασή σας με:" "
$ cd /τόπος/του/κώδικα/του/AmaroK/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
Περισσότερες πληροφορίες θα βρείτε στο αρχείο README. Για " "βοήθεια, συναντήστε μας στο #amarok στο irc.freenode.net.

" diff --git a/po/en_GB/amarok.po b/po/en_GB/amarok.po index 9bad412b..c7b2022e 100644 --- a/po/en_GB/amarok.po +++ b/po/en_GB/amarok.po @@ -1012,7 +1012,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" @@ -1024,7 +1024,7 @@ msgstr "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" diff --git a/po/eo/amarok.po b/po/eo/amarok.po index 70ad6646..1ea4c848 100644 --- a/po/eo/amarok.po +++ b/po/eo/amarok.po @@ -933,7 +933,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" diff --git a/po/es/amarok.po b/po/es/amarok.po index 301cbd56..d8ab8985 100644 --- a/po/es/amarok.po +++ b/po/es/amarok.po @@ -1006,7 +1006,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" @@ -1018,7 +1018,7 @@ msgstr "" "erróneo, por favor corrija su instalación usando: " "
$ cd /ruta/al/codigo/fuente/de/amarok/ "
 "
$ su -c \"make uninstall\" " -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\" " +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\" " "
$ kbuildsycoca " "
$amaroK
Puede encontrar mas información en el archivo README. Para más " "información contacte con nosotros en #amarok en irc.freenode.net.

" diff --git a/po/et/amarok.po b/po/et/amarok.po index f37d2ead..1a709ae4 100644 --- a/po/et/amarok.po +++ b/po/et/amarok.po @@ -989,7 +989,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" @@ -1001,7 +1001,7 @@ msgstr "" "Sellisel juhul tee seda uuesti, kasutades:" "
$ cd /amaroki/lähtekoodi/asukoht/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
Täpsemalt räägib sellest fail README. Vajadusel leiad abi ka " "meie suhtluskanalilt #amarok serveris irc.freenode.net." diff --git a/po/eu/amarok.po b/po/eu/amarok.po index cbb497ca..ae1347cb 100644 --- a/po/eu/amarok.po +++ b/po/eu/amarok.po @@ -978,7 +978,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" @@ -990,7 +990,7 @@ msgstr "" "instalatuta egotea. Egoera honetan finkatu instalazioa honakoak erabiliz:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
Xehetasun gehiago README fitxategian aurki dezakezu. Laguntza " "gehiagorako zoaz irc.freenode.net zerbitzariko #amarok kanalera.

" diff --git a/po/fa/amarok.po b/po/fa/amarok.po index e5ec21b4..507a87d4 100644 --- a/po/fa/amarok.po +++ b/po/fa/amarok.po @@ -984,7 +984,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" @@ -996,7 +996,7 @@ msgstr "" "شود، لطفاً، نصبتان را با استفاده از: " "
$ cd /path/to/amarok/source-code/"
 "
$ su -c »نصب« " -"
$ ./configure --prefix=`kde-config --prefix` && su -c »عدم نصب« " +"
$ ./configure --prefix=`tde-config --prefix` && su -c »عدم نصب« " "
$ kbuildsycoca" "
$ amarok
بررسی کنید. اطلاعات بیشتر را می‌توان در پروندۀ README یافت. " "برای همکاری بیشتر در #amarok on irc.freenode.net به ما بپیوندید.

" diff --git a/po/fi/amarok.po b/po/fi/amarok.po index f508d4c6..e24834a5 100644 --- a/po/fi/amarok.po +++ b/po/fi/amarok.po @@ -1020,7 +1020,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" @@ -1032,7 +1032,7 @@ msgstr "" "paikkaan. Korjaa asennus komennoilla:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
Lisätietoja on README-tiedostossa. Lisäapua saa IRC-kanavalla " "#amarok (irc.freenode.net).

" diff --git a/po/fr/amarok.po b/po/fr/amarok.po index f425bf84..07abc37f 100644 --- a/po/fr/amarok.po +++ b/po/fr/amarok.po @@ -1021,7 +1021,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" @@ -1034,7 +1034,7 @@ msgstr "" "suivantes : " "
$ cd /chemin vers/le dossier contenant/le code source/d'Amarok/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
Vous pouvez trouver plus d'informations dans le fichier " "« README ». Pour plus d'aide, rejoignez-nous sur #amarok sur " diff --git a/po/ga/amarok.po b/po/ga/amarok.po index d98fa738..0c2aeda7 100644 --- a/po/ga/amarok.po +++ b/po/ga/amarok.po @@ -956,7 +956,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" diff --git a/po/gl/amarok.po b/po/gl/amarok.po index f38736a3..a14a82d7 100644 --- a/po/gl/amarok.po +++ b/po/gl/amarok.po @@ -992,7 +992,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" @@ -1004,7 +1004,7 @@ msgstr "" "Repare a instalación usando " "
$ cd /rota/para/amarok/código-fonte/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
Pódese atopar máis información no ficheiro README. Para axuda " "adicional, pode recorrer á canle #amarok en irc.freenode.net.

" @@ -14159,8 +14159,8 @@ msgstr "amaroK" #~ msgid "Cannot start aRts. You must use another engine." #~ msgstr "Non se puido iniciar aRts. Deberá usar outro motor." -#~ msgid "

There was an error loading libamarokarts. First try:

killall -9 artsd && amarok
If that does not work then amaroK was probably installed with the wrong prefix; please re-configure amaroK using:
./configure --prefix=`kde-config --prefix` && su -c \"make install\"
" -#~ msgstr "

Aconteceu un erro ao carregar libamarokarts. Tente primeiro:

killall -9 artsd && amarok
Se isto non funciona, daquela posibelmente amaroK instalouse co prefixo errado; reconfigure amaroK usando:
./configure --prefix=`kde-config --prefix` && su -c \"make install\"
" +#~ msgid "

There was an error loading libamarokarts. First try:

killall -9 artsd && amarok
If that does not work then amaroK was probably installed with the wrong prefix; please re-configure amaroK using:
./configure --prefix=`tde-config --prefix` && su -c \"make install\"
" +#~ msgstr "

Aconteceu un erro ao carregar libamarokarts. Tente primeiro:

killall -9 artsd && amarok
Se isto non funciona, daquela posibelmente amaroK instalouse co prefixo errado; reconfigure amaroK usando:
./configure --prefix=`tde-config --prefix` && su -c \"make install\"
" #~ msgid "No input plugin available; check your installation." #~ msgstr "Non hai complementos disponíbeis; comprobe a instalación." diff --git a/po/he/amarok.po b/po/he/amarok.po index f3434c09..061add7f 100644 --- a/po/he/amarok.po +++ b/po/he/amarok.po @@ -972,7 +972,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" @@ -983,7 +983,7 @@ msgstr "" "תקן את ההתקנה על ידי: " "
$ cd /path/to/amarok/source-code/ "
 "
$ su -c \"make uninstall\" " -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\" " +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\" " "
$ kbuildsycoca " "
$ amarok
מידע נוסף נמצא בקובץ README. לעזרה נוספת, הצטרף אלינו בערוץ " "amarok# ב־irc.freenode.net.

" diff --git a/po/hi/amarok.po b/po/hi/amarok.po index 5ea0ef69..e3b6422e 100644 --- a/po/hi/amarok.po +++ b/po/hi/amarok.po @@ -985,7 +985,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" diff --git a/po/hu/amarok.po b/po/hu/amarok.po index 8f406589..16b1269c 100644 --- a/po/hu/amarok.po +++ b/po/hu/amarok.po @@ -982,7 +982,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" @@ -994,7 +994,7 @@ msgstr "" "Amarok - próbálja még egyszer elvégezni a telepítést így:" "
$ cd /az/amarok/forráskódja/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
További információ található a README fájlban. Szívesen adunk " "segítséget IRC-n az #amarok csatornán, az irc.freenode.net címen.

" diff --git a/po/id/amarok.po b/po/id/amarok.po index a555f465..d93a0338 100644 --- a/po/id/amarok.po +++ b/po/id/amarok.po @@ -944,7 +944,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" diff --git a/po/is/amarok.po b/po/is/amarok.po index 482cc622..a7d6d444 100644 --- a/po/is/amarok.po +++ b/po/is/amarok.po @@ -973,7 +973,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" @@ -985,7 +985,7 @@ msgstr "" "Lagaðu uppsetninguna með því að nota: " "
$ cd /slóð/að/amarok/kóðanum/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
Nánari lýsingu má finna í README skránni. Ef þú þarft meiri " "hjálp getur þú fundið okkur á #amarok á irc.freenode.net.

" diff --git a/po/it/amarok.po b/po/it/amarok.po index a41ab614..98d09de6 100644 --- a/po/it/amarok.po +++ b/po/it/amarok.po @@ -1000,7 +1000,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" @@ -1012,7 +1012,7 @@ msgstr "" "prefisso sbagliato, correggi l'installazione usando:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
Ulteriori informazioni possono essere trovate nel file " "README. Per assistenza puoi trovarci in #amarok su irc.freenode.net.

" diff --git a/po/ja/amarok.po b/po/ja/amarok.po index 830d3f4e..d52b873e 100644 --- a/po/ja/amarok.po +++ b/po/ja/amarok.po @@ -937,7 +937,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" @@ -947,7 +947,7 @@ msgstr "" "

もしこれで解決しなければ、おそらくインストール時に指定した prefix オプションが間違っています。次のようにインストールし直してください: " "

$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
詳しくは README ファイルをご覧ください。それでも解決しない場合は irc.freenode.net 上の " "#amarok へお越しください。" diff --git a/po/ka/amarok.po b/po/ka/amarok.po index 5d1e2a9f..97ef0082 100644 --- a/po/ka/amarok.po +++ b/po/ka/amarok.po @@ -967,7 +967,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" diff --git a/po/km/amarok.po b/po/km/amarok.po index a4b3be01..e8c59fd5 100644 --- a/po/km/amarok.po +++ b/po/km/amarok.po @@ -983,7 +983,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" @@ -996,7 +996,7 @@ msgstr "" "សូម​ជួសជុល​កា​រដំឡើង​របស់​អ្នក ដោយ​ប្រើ ៖" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
​ព័ត៌មាន​បន្ថែម​អាច​រក​បាន​នៅ​ក្នុង​ឯកសារ README ។ " "សម្រាប់​ជំនួយ​បន្ថែម សូម​ចូលរួម​ជា​មួយ​យើងនៅ #amarok នៅ​លើ " diff --git a/po/ko/amarok.po b/po/ko/amarok.po index 06162800..1c266ab8 100644 --- a/po/ko/amarok.po +++ b/po/ko/amarok.po @@ -971,7 +971,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" @@ -981,7 +981,7 @@ msgstr "" "

만약 이래도 안 된다면, Amarok이 잘못된 위치에 설치되었을 수도 있습니다. 다음과 같이 하여 Amarok를 재설치하십시오.

" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
더 많은 정보는 README 파일을 참조하십시오. 앞으로도 문제가 있으면 irc.freenode.net의 " "#amarok 채널에 참여하시기 바랍니다." diff --git a/po/ku/amarok.po b/po/ku/amarok.po index 40b9decf..343a641e 100644 --- a/po/ku/amarok.po +++ b/po/ku/amarok.po @@ -934,7 +934,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" diff --git a/po/lo/amarok.po b/po/lo/amarok.po index 81fef5fe..2df5ca24 100644 --- a/po/lo/amarok.po +++ b/po/lo/amarok.po @@ -978,7 +978,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" @@ -987,7 +987,7 @@ msgstr "" "바꾸십시오:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
더 많은 정보는 README 파일을 참조하십시오. 앞으로도 문제가 있으면 irc.freenode.net의 " "#amarok 채널에 참여하시기 바랍니다." @@ -13443,8 +13443,8 @@ msgstr "" #~ msgid "Cannot start aRts. You must use another engine." #~ msgstr "aRts를 시작할 수 없습니다. 다른 엔진을 사용하여야 합니다." -#~ msgid "

There was an error loading libamarokarts. First try:

killall -9 artsd && amarok
If that does not work then amaroK was probably installed with the wrong prefix; please re-configure amaroK using:
./configure --prefix=`kde-config --prefix` && su -c \"make install\"
" -#~ msgstr "

libamarokarts를 불러올 수 없습니다. 일단 시도해 보십시오:

killall -9 artsd && amarok
만약 이렇게 해도 정상적으로 작동하지 않는다면, amaroK가 잘못된 경로에 설치된 것입니다. amaroK를 재설정하십시오:
./configure --prefix=`kde-config --prefix` && su -c \"make install\"
" +#~ msgid "

There was an error loading libamarokarts. First try:

killall -9 artsd && amarok
If that does not work then amaroK was probably installed with the wrong prefix; please re-configure amaroK using:
./configure --prefix=`tde-config --prefix` && su -c \"make install\"
" +#~ msgstr "

libamarokarts를 불러올 수 없습니다. 일단 시도해 보십시오:

killall -9 artsd && amarok
만약 이렇게 해도 정상적으로 작동하지 않는다면, amaroK가 잘못된 경로에 설치된 것입니다. amaroK를 재설정하십시오:
./configure --prefix=`tde-config --prefix` && su -c \"make install\"
" #~ msgid "No input plugin available; check your installation." #~ msgstr "입력 플러그인이 존재하지 않습니다, 설치를 확인하십시오." diff --git a/po/lt/amarok.po b/po/lt/amarok.po index ae4412da..3bc9287e 100644 --- a/po/lt/amarok.po +++ b/po/lt/amarok.po @@ -995,7 +995,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" @@ -1007,7 +1007,7 @@ msgstr "" "kelias, šią problemą reikia taisyti įdiegiant AmaroK iš naujo:" "
$ cd /kelias/iki/amarok/šaltinių/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
Daugiau informacijos galite rasti README byloje. Papildomą " "pagalbą galite gauti prisijungę prie #amarok kanalo irc.freenode.net " diff --git a/po/mk/amarok.po b/po/mk/amarok.po index 85b9dad2..85ec9833 100644 --- a/po/mk/amarok.po +++ b/po/mk/amarok.po @@ -982,7 +982,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" @@ -994,7 +994,7 @@ msgstr "" "поправете ја инсталацијата употребувајќи:" "
$ cd /pateka/do/izvoren-kod/na/amarok/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
Повеќе информации можат да бидат најдени во датотеката " "README. За понатамошна помош приклучете се на #amarok на irc.freenode.net.

" diff --git a/po/ms/amarok.po b/po/ms/amarok.po index b8f7ce07..72b9a9e0 100644 --- a/po/ms/amarok.po +++ b/po/ms/amarok.po @@ -1013,7 +1013,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" diff --git a/po/nb/amarok.po b/po/nb/amarok.po index 04c2efe0..e65a3614 100644 --- a/po/nb/amarok.po +++ b/po/nb/amarok.po @@ -1000,7 +1000,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" @@ -1011,7 +1011,7 @@ msgstr "" "prefiks. Dette kan du rette ved å skrive:" "
$ cd /adresse/til/amarok-kildekoden/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
Du finner mer informasjon i fila «README». Du kan også få " "hjelp på IRC-kanalen #amarok på irc.freenode.net.

" @@ -13738,8 +13738,8 @@ msgstr "Kjør Amarok …" #~ msgid "Cannot start aRts. You must use another engine." #~ msgstr "Kunne ikke starte aRts. Du må bruke en annen lydmotor." -#~ msgid "

There was an error loading libamarokarts. First try:

killall -9 artsd && amarok
If that does not work then amaroK was probably installed with the wrong prefix; please re-configure amaroK using:
./configure --prefix=`kde-config --prefix` && su -c \"make install\"
" -#~ msgstr "

Det oppsto en feil ved lasting av libamarokarts. Prøv først:

killall -9 artsd && amarok
Hvis dette ikke hjelper, er det mulig at amaroK er installert under feil prefiks. Dette kan du rette ved å skrive:
./configure --prefix=`kde-config --prefix` && su -c \"make install\"
" +#~ msgid "

There was an error loading libamarokarts. First try:

killall -9 artsd && amarok
If that does not work then amaroK was probably installed with the wrong prefix; please re-configure amaroK using:
./configure --prefix=`tde-config --prefix` && su -c \"make install\"
" +#~ msgstr "

Det oppsto en feil ved lasting av libamarokarts. Prøv først:

killall -9 artsd && amarok
Hvis dette ikke hjelper, er det mulig at amaroK er installert under feil prefiks. Dette kan du rette ved å skrive:
./configure --prefix=`tde-config --prefix` && su -c \"make install\"
" #~ msgid "No input plugin available; check your installation." #~ msgstr "Ingen programtillegg er tilgjengelige. Se til at alt er rett installert." diff --git a/po/nds/amarok.po b/po/nds/amarok.po index 05977c61..800e266b 100644 --- a/po/nds/amarok.po +++ b/po/nds/amarok.po @@ -996,7 +996,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" @@ -1007,7 +1007,7 @@ msgstr "" "installeert wöör. Richt Dien Installatschoon mit:" "
$ cd /Padd/na/amarok/Bornkode/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
Mehr Informaschonen staht binnen de Datei \"README\". Bruukst " "Du mehr Ünnerstütten, draap uns binnen #amarok op irc.freenode.net.

" diff --git a/po/ne/amarok.po b/po/ne/amarok.po index 6ce3b058..30b27ce2 100644 --- a/po/ne/amarok.po +++ b/po/ne/amarok.po @@ -1007,7 +1007,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" @@ -1018,7 +1018,7 @@ msgstr "" "

यदि यसले मद्दत गरेन भने, अमारोक गलत उपसर्गमा स्थापना भएको हुनुपर्दछ, कृपया:" "

$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
प्रयोग गरेर तपाईँको स्थापना निश्चित गर्नुहोस् । धेरै " "सूचनाहरू README फाइलमा फेला पार्न सकिन्छ । अगाडि सहयोगका लागि हामीसँग " diff --git a/po/nl/amarok.po b/po/nl/amarok.po index d7d06550..6ed637a3 100644 --- a/po/nl/amarok.po +++ b/po/nl/amarok.po @@ -1007,7 +1007,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" @@ -1019,7 +1019,7 @@ msgstr "" "onjuiste prefix. Repareer uw installatie met behulp van de volgende commando's: " "
$ cd /pad/naar/amarok/broncode/ "
 "
$ su -c \"make uninstall\" " -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\" " +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\" " "
$ kbuildsycoca " "
$ amarok
Meer informatie vindt u in het bestand README. Voor verdere " "assistentie, word lid van het IRC-kanaal #amarok op irc.freenode.net.

" diff --git a/po/nn/amarok.po b/po/nn/amarok.po index b064341a..a443dbaf 100644 --- a/po/nn/amarok.po +++ b/po/nn/amarok.po @@ -990,7 +990,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" @@ -1001,7 +1001,7 @@ msgstr "" "prefiks. Dette kan du retta ved å skriva:" "
$ cd /adresse/til/amarok-kjeldekoden/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
Du finn meir informasjon i fila «README». Du kan òg få hjelp " "på IRC-kanalen #amarok på irc.freenode.net.

" diff --git a/po/pa/amarok.po b/po/pa/amarok.po index 5b101087..d425f511 100644 --- a/po/pa/amarok.po +++ b/po/pa/amarok.po @@ -948,7 +948,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" @@ -960,7 +960,7 @@ msgstr "" "ਕਰਕੇ ਹੇਠ ਦਿੱਤੇ ਦੀ ਵਰਤੋਂ ਕਰਕੇ ਆਪਣੀ ਇੰਸਟਾਲੇਸ਼ਨ ਠੀਕ ਕਰੋ:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
ਹੋਰ ਜਾਣਕਾਰੀ ਨੂੰ README ਫਾਇਲ ਵਿੱਚ ਵੇਖਿਆ ਜਾ ਸਕਦਾ ਹੈ। ਹੋਰ ਵਧੇਰੇ " "ਜਾਣਕਾਰੀ ਲਈ irc.freenode.net ਉੱਤੇ #amarok ਨੂੰ ਵੇਖੋ।

" diff --git a/po/pl/amarok.po b/po/pl/amarok.po index 74972e24..109eedd2 100644 --- a/po/pl/amarok.po +++ b/po/pl/amarok.po @@ -1016,7 +1016,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" @@ -1028,7 +1028,7 @@ msgstr "" "prefiksem instalacji. Proszę poprawić swoją instalację używając:" "
$ cd /ścieżka/do/kodu_źródłowego/amaroka/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
Więcej informacji można uzyskać w pliku README. W celu " "uzyskania dalszej pomocy odwiedź kanał #amarok na serwerze irc.freenode.net.

" diff --git a/po/pt/amarok.po b/po/pt/amarok.po index c4c27610..bd3d313c 100644 --- a/po/pt/amarok.po +++ b/po/pt/amarok.po @@ -1052,7 +1052,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" @@ -1062,7 +1062,7 @@ msgstr "" "corrija a sua instalação utilizando:" "
$ cd /local/do/codigo-fonte/amarok"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
Pode encontrar mais informações no ficheiro README. Para mais " "ajuda junte-se a nós em #amarok no irc.freenode.net.

" diff --git a/po/pt_BR/amarok.po b/po/pt_BR/amarok.po index 1885f53c..1e40ea38 100644 --- a/po/pt_BR/amarok.po +++ b/po/pt_BR/amarok.po @@ -1015,7 +1015,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" @@ -1027,7 +1027,7 @@ msgstr "" "errado; por favor arrume a instalação dele usando:" "
$ cd /caminho/do/código-fonte/do/amarok/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\" " +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\" " "
$ kbuildsycoca" "
$ amarok
Mais informações podem ser encontradas no arquivo README. " "Para tirar outras dúvidas, dê um pulo no canal #amarok em irc.freenode.net.

" diff --git a/po/ro/amarok.po b/po/ro/amarok.po index fc69c43c..a76b860a 100644 --- a/po/ro/amarok.po +++ b/po/ro/amarok.po @@ -988,7 +988,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" diff --git a/po/ru/amarok.po b/po/ru/amarok.po index d5525c9e..409a5f6c 100644 --- a/po/ru/amarok.po +++ b/po/ru/amarok.po @@ -983,7 +983,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" @@ -993,7 +993,7 @@ msgstr "" "Перекомпилируйте программу так:" "
cd /path/to/amarok/source-code/"
 "
su -c \"make uninstall\"" -"
./configure --prefix=`kde-config --prefix` && su -c \"make install\" " +"
./configure --prefix=`tde-config --prefix` && su -c \"make install\" " "
$ kbuildsycoca" "
$ amarok
Для подробностей обратитесь к файлу README, либо попросите " "помощь у участников канала #amarok на irc.freenode.net." diff --git a/po/rw/amarok.po b/po/rw/amarok.po index 9651f473..2e599036 100644 --- a/po/rw/amarok.po +++ b/po/rw/amarok.po @@ -1018,7 +1018,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" @@ -14591,7 +14591,7 @@ msgstr "Ikibambara" #~ msgstr "Ikosa Rikomeye Cyane!" #, fuzzy -#~ msgid "

There was an error loading libamarokarts. First try:

killall -9 artsd && amarok
If that does not work then amaroK was probably installed with the wrong prefix; please re-configure amaroK using:
./configure --prefix=`kde-config --prefix` && su -c \"make install\"
" +#~ msgid "

There was an error loading libamarokarts. First try:

killall -9 artsd && amarok
If that does not work then amaroK was probably installed with the wrong prefix; please re-configure amaroK using:
./configure --prefix=`tde-config --prefix` && su -c \"make install\"
" #~ msgstr "

Ikosa Ifungura . Kugerageza : < Byahawe imiterere mbere > - 9 & & < /Byahawe imiterere mbere > OYA Akazi Hanyuma yakorewe iyinjizaporogaramu Na: i Imbanziriza ; - Kugena Imiterere ikoresha : < Byahawe imiterere mbere > . /Kugena Imiterere - - Imbanziriza = ` kde - - - Imbanziriza ` & & - C \" Ubwoko Kwinjiza porogaramu \" < /Byahawe imiterere mbere > " #, fuzzy diff --git a/po/se/amarok.po b/po/se/amarok.po index b4243256..3c419a74 100644 --- a/po/se/amarok.po +++ b/po/se/amarok.po @@ -962,7 +962,7 @@ msgid "" "prefix, please fix your installation using:" "

$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" @@ -973,7 +973,7 @@ msgstr "" "sáhtát divvut dán láhkái: " "
 $ cd /amarok/gáldokoda/čujuhus/"
 "
$ su -c \"make uninstall\" " -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\" " +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\" " "
$ kbuildsycoca " "
$ amarok
Gávnnat eanet dieđuid «README»-fiillas. Sáhtát maid oažžut " "veahki IRC-kanálas #amarok irc.freenode.net:as

" diff --git a/po/sk/amarok.po b/po/sk/amarok.po index 5ad79f3d..9e66aece 100644 --- a/po/sk/amarok.po +++ b/po/sk/amarok.po @@ -1010,7 +1010,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" @@ -1022,7 +1022,7 @@ msgstr "" "nesprávnym prefixom, opravte prosím inštaláciu pomocou:" "
$ cd /cesta/ku/zdrojovym/suborom/amaroku/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
Viac informácii je možné nájsť v súbore README. Pre ďalšiu " "pomoc sa k nám pripojte na #amarok na irc.freenode.net.

" diff --git a/po/sl/amarok.po b/po/sl/amarok.po index bbea0628..33933f05 100644 --- a/po/sl/amarok.po +++ b/po/sl/amarok.po @@ -1007,7 +1007,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" @@ -1019,7 +1019,7 @@ msgstr "" "parametrom. Namestitev popravite z uporabo naslednjih ukazov: " "
$ cd /pot/do/izvorne-kode/amaroka/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
Več informacij najdete v datoteki README. Za dodatno pomoč se " "nam pridužite na kanalu #amarok na strežniku irc.freenode.net.

" diff --git a/po/sq/amarok.po b/po/sq/amarok.po index 6f2a22c5..781927ea 100644 --- a/po/sq/amarok.po +++ b/po/sq/amarok.po @@ -960,7 +960,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" diff --git a/po/sr/amarok.po b/po/sr/amarok.po index 4227fcd7..951c1fad 100644 --- a/po/sr/amarok.po +++ b/po/sr/amarok.po @@ -1005,7 +1005,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" @@ -1017,7 +1017,7 @@ msgstr "" "префиксом; средите инсталацију користећи:" "
$ cd /putanja/do/amarokovog/izvornog-koda/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
Више информација можете наћи у фајлу README. За даљу помоћ " "придружите нам се на #amarok на irc.freenode.net .

" diff --git a/po/sr@Latn/amarok.po b/po/sr@Latn/amarok.po index 2ccea487..e360bba7 100644 --- a/po/sr@Latn/amarok.po +++ b/po/sr@Latn/amarok.po @@ -1005,7 +1005,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" @@ -1017,7 +1017,7 @@ msgstr "" "prefiksom; sredite instalaciju koristeći:" "
$ cd /putanja/do/amarokovog/izvornog-koda/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
Više informacija možete naći u fajlu README. Za dalju pomoć " "pridružite nam se na #amarok na irc.freenode.net .

" diff --git a/po/ss/amarok.po b/po/ss/amarok.po index a09d65a0..52f0ede2 100644 --- a/po/ss/amarok.po +++ b/po/ss/amarok.po @@ -979,7 +979,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" @@ -991,7 +991,7 @@ msgstr "" "prefiksom; sredite instalaciju koristeći:" "
$ cd /putanja/do/amarokovog/izvornog-koda/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
Više informacija možete naći u fajlu README. Za dalju pomoć " "pridružite nam se na #amarok na irc.freenode.net -u.

" @@ -13768,8 +13768,8 @@ msgstr "" #~ msgid "Cannot start aRts. You must use another engine." #~ msgstr "Ne mogu da pokrenem aRts. Morate koristiti drugi motor." -#~ msgid "

There was an error loading libamarokarts. First try:

killall -9 artsd && amarok
If that does not work then amaroK was probably installed with the wrong prefix; please re-configure amaroK using:
./configure --prefix=`kde-config --prefix` && su -c \"make install\"
" -#~ msgstr "

Desila se greška pri učitavanju libamarokarts-a. Prvo probajte:

killall -9 artsd && amarok
Ako to ne uspe onda je amaroK verovatno instaliran sa pogrešnim prefiksom; ponovo podesite amaroK koristeći:
./configure --prefix=`kde-config --prefix` && su -c \"make install\"
" +#~ msgid "

There was an error loading libamarokarts. First try:

killall -9 artsd && amarok
If that does not work then amaroK was probably installed with the wrong prefix; please re-configure amaroK using:
./configure --prefix=`tde-config --prefix` && su -c \"make install\"
" +#~ msgstr "

Desila se greška pri učitavanju libamarokarts-a. Prvo probajte:

killall -9 artsd && amarok
Ako to ne uspe onda je amaroK verovatno instaliran sa pogrešnim prefiksom; ponovo podesite amaroK koristeći:
./configure --prefix=`tde-config --prefix` && su -c \"make install\"
" #~ msgid "No input plugin available; check your installation." #~ msgstr "Nijedan ulazni priključak nije dostupan; proverite instalaciju." diff --git a/po/sv/amarok.po b/po/sv/amarok.po index 1ab72f74..b9686204 100644 --- a/po/sv/amarok.po +++ b/po/sv/amarok.po @@ -998,7 +998,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" @@ -1010,7 +1010,7 @@ msgstr "" "prefix. Korrigera installationen med:" "
$ cd /sökväg/till/amaroks/källkod"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$amarok
Mer information finns i filen README. För ytterligare hjälp " "kontakta oss gärna via #amarok på irc.freenode.net.

" diff --git a/po/ta/amarok.po b/po/ta/amarok.po index 9021bc39..d10e3019 100644 --- a/po/ta/amarok.po +++ b/po/ta/amarok.po @@ -1006,14 +1006,14 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" msgstr "" "

amaroK ஒலி எஞ்சின் சொருகுப்பொருள்களை கண்டுப்பிடிக்க முடியவில்லை; உங்கள் " "amaroK நிறுவல் உடைந்திருக்கலாம். மூலத்தில் இருந்து நிறுவி இருந்தால் amaroK " -"கேடியி கீழ் நிறுவப்படவில்லை. ./configure --prefix=`kde-config --prefix` ஐ " +"கேடியி கீழ் நிறுவப்படவில்லை. ./configure --prefix=`tde-config --prefix` ஐ " "பயன்படுத்தி README கோப்பு விவரித்துள்ளது போல் amaroKஐ திரும்ப அமைக்கவும். " "மேலும் உதவிக்கு எங்களுடன் #amarok on irc.freenode.net என்ற முகவரியில் தொடர்பு " "கொள்ளவும்." @@ -14028,8 +14028,8 @@ msgstr "அமார்க்கு" #~ msgid "Fatal Error" #~ msgstr "உயிர்நாடிப் பிழை" -#~ msgid "

There was an error loading libamarokarts. First try:

killall -9 artsd && amarok
If that does not work then amaroK was probably installed with the wrong prefix; please re-configure amaroK using:
./configure --prefix=`kde-config --prefix` && su -c \"make install\"
" -#~ msgstr "

லிபாமராகார்ட்ஸ் ஏற்றும்போது போது பிழை. முதல் முயற்ச்சி:

killall -9 artsd && ஆமராக்
அது வேலை புரியாமல் போனால் ஆமராக் பொதுவாக தவறான முன்னொட்டுடன் நிறுவப்பட்டிருக்கலாம; தயவு செய்து அமராக்கை மறு உள்ளமைப்பு செய்யவும்:
./configure --prefix=`kde-config --prefix` && su -c \"make install\"
" +#~ msgid "

There was an error loading libamarokarts. First try:

killall -9 artsd && amarok
If that does not work then amaroK was probably installed with the wrong prefix; please re-configure amaroK using:
./configure --prefix=`tde-config --prefix` && su -c \"make install\"
" +#~ msgstr "

லிபாமராகார்ட்ஸ் ஏற்றும்போது போது பிழை. முதல் முயற்ச்சி:

killall -9 artsd && ஆமராக்
அது வேலை புரியாமல் போனால் ஆமராக் பொதுவாக தவறான முன்னொட்டுடன் நிறுவப்பட்டிருக்கலாம; தயவு செய்து அமராக்கை மறு உள்ளமைப்பு செய்யவும்:
./configure --prefix=`tde-config --prefix` && su -c \"make install\"
" #, fuzzy #~ msgid "amaroK Error" diff --git a/po/tg/amarok.po b/po/tg/amarok.po index 7b97bd95..60d03add 100644 --- a/po/tg/amarok.po +++ b/po/tg/amarok.po @@ -1003,7 +1003,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" @@ -14072,8 +14072,8 @@ msgstr "amaroK" #~ msgid "Fatal Error" #~ msgstr "Хатогии фалокатовар" -#~ msgid "

There was an error loading libamarokarts. First try:

killall -9 artsd && amarok
If that does not work then amaroK was probably installed with the wrong prefix; please re-configure amaroK using:
./configure --prefix=`kde-config --prefix` && su -c \"make install\"
" -#~ msgstr "

Хатогӣ дар пурборкунии libamarokarts. Аввал кӯшиш кунед:

killall -9 artsd && amarok
ва агар ин кор накунад, яъне amaroK дар каталоги нодуруст танзим шудааст; танзим кунед:
./configure --prefix=`kde-config --prefix` && su -c \"make install\"
" +#~ msgid "

There was an error loading libamarokarts. First try:

killall -9 artsd && amarok
If that does not work then amaroK was probably installed with the wrong prefix; please re-configure amaroK using:
./configure --prefix=`tde-config --prefix` && su -c \"make install\"
" +#~ msgstr "

Хатогӣ дар пурборкунии libamarokarts. Аввал кӯшиш кунед:

killall -9 artsd && amarok
ва агар ин кор накунад, яъне amaroK дар каталоги нодуруст танзим шудааст; танзим кунед:
./configure --prefix=`tde-config --prefix` && su -c \"make install\"
" #~ msgid "amaroK Error" #~ msgstr "amaroK хатогӣ дорад" diff --git a/po/th/amarok.po b/po/th/amarok.po index 955a364b..14127a2d 100644 --- a/po/th/amarok.po +++ b/po/th/amarok.po @@ -976,7 +976,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" @@ -988,7 +988,7 @@ msgstr "" "กรุณาแก้การติดตั้งของคุณโดยใช้: " "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
สำหรับข้อมูลเพิ่มเติม คุณสามารถหาอ่านได้ในแฟ้ม README " "หากต้องการความช่วยเหลือมากกว่านี้ เชิญเข้าร่วมคุยกับเราได้ที่ห้อง #amarok ใน " diff --git a/po/tr/amarok.po b/po/tr/amarok.po index 2f384b4c..0d6ce933 100644 --- a/po/tr/amarok.po +++ b/po/tr/amarok.po @@ -947,7 +947,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" @@ -959,7 +959,7 @@ msgstr "" "yüklenmiştir, lütfen kurulumunuzu aşağıdakileri yaparak düzeltiniz:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
Daha fazla bilgi README dosyasından bulunabilir. Daha fazla " "yardım için irc.freenode.net'te #amarok'a gelin ve bize katılın.

" diff --git a/po/uk/amarok.po b/po/uk/amarok.po index ed2c1ac8..db2b9bf7 100644 --- a/po/uk/amarok.po +++ b/po/uk/amarok.po @@ -1004,7 +1004,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" @@ -1016,7 +1016,7 @@ msgstr "" "префіксом. Будь ласка, полагодьте вашу інсталяцію таким чином:" "
$ cd /шлях/до/сирців/amarok/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
Більше інформації можна знайти у файлі README або у каналі " "#amarok на irc.freenode.net.

" diff --git a/po/uz/amarok.po b/po/uz/amarok.po index 2cd1ec36..4a5f90aa 100644 --- a/po/uz/amarok.po +++ b/po/uz/amarok.po @@ -935,7 +935,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" diff --git a/po/uz@cyrillic/amarok.po b/po/uz@cyrillic/amarok.po index 538ef41c..c9a0c65f 100644 --- a/po/uz@cyrillic/amarok.po +++ b/po/uz@cyrillic/amarok.po @@ -935,7 +935,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" diff --git a/po/zh_CN/amarok.po b/po/zh_CN/amarok.po index 2816046f..e25c2659 100644 --- a/po/zh_CN/amarok.po +++ b/po/zh_CN/amarok.po @@ -924,7 +924,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" @@ -933,7 +933,7 @@ msgstr "" "

如果这样还不行的话,很可能 Amarok 安装的前缀有错,请使用下列方法修正您的安装:" "

$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
更多信息可在 README 文件中找到。有关更进一步的协助,请加入 irc.freenode.net 上的 " "#amarok。" diff --git a/po/zh_TW/amarok.po b/po/zh_TW/amarok.po index 472ef072..547ea572 100644 --- a/po/zh_TW/amarok.po +++ b/po/zh_TW/amarok.po @@ -950,7 +950,7 @@ msgid "" "prefix, please fix your installation using:" "
$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
More information can be found in the README file. For further " "assistance join us at #amarok on irc.freenode.net.

" @@ -959,7 +959,7 @@ msgstr "" "

如果沒有幫助,很有可能是安裝 AmaroK 時使用了錯誤的 prefix。您可以嘗試這樣做:" "

$ cd /path/to/amarok/source-code/"
 "
$ su -c \"make uninstall\"" -"
$ ./configure --prefix=`kde-config --prefix` && su -c \"make install\"" +"
$ ./configure --prefix=`tde-config --prefix` && su -c \"make install\"" "
$ kbuildsycoca" "
$ amarok
您也能在 README 中找到更多資訊。若需要更深入的幫助,請加入我們位於 irc.freenode.net 的 IRC " "頻道 #amarok。

"