rev 16914 - in trunk/packages/kdelibs/debian: . po
Modestas Vainius
modax at alioth.debian.org
Sat Feb 13 15:23:13 UTC 2010
Author: modax
Date: 2010-02-13 15:23:04 +0000 (Sat, 13 Feb 2010)
New Revision: 16914
Added:
trunk/packages/kdelibs/debian/README.Debian
trunk/packages/kdelibs/debian/libkdecore5.preinst
trunk/packages/kdelibs/debian/libkdecore5.templates
Removed:
trunk/packages/kdelibs/debian/README.Debian
trunk/packages/kdelibs/debian/kdelibs5.preinst
trunk/packages/kdelibs/debian/kdelibs5.templates
Modified:
trunk/packages/kdelibs/debian/changelog
trunk/packages/kdelibs/debian/control
trunk/packages/kdelibs/debian/po/cs.po
trunk/packages/kdelibs/debian/po/de.po
trunk/packages/kdelibs/debian/po/es.po
trunk/packages/kdelibs/debian/po/eu.po
trunk/packages/kdelibs/debian/po/fi.po
trunk/packages/kdelibs/debian/po/fr.po
trunk/packages/kdelibs/debian/po/gl.po
trunk/packages/kdelibs/debian/po/it.po
trunk/packages/kdelibs/debian/po/ja.po
trunk/packages/kdelibs/debian/po/nb.po
trunk/packages/kdelibs/debian/po/pt.po
trunk/packages/kdelibs/debian/po/ru.po
trunk/packages/kdelibs/debian/po/sv.po
trunk/packages/kdelibs/debian/po/templates.pot
Log:
Move "unsafe upgrade from KDE << 4.2.2" templates and handling to the
libkdecore5 package since kdelibs5 is no longer the first package to
be upgraded.
NOTE: untested.
Added: trunk/packages/kdelibs/debian/README.Debian
===================================================================
--- trunk/packages/kdelibs/debian/README.Debian (rev 0)
+++ trunk/packages/kdelibs/debian/README.Debian 2010-02-13 15:23:04 UTC (rev 16914)
@@ -0,0 +1,23 @@
+Upgrading from Debian Lenny to Debian Squeeze
+---------------------------------------------
+
+KDE 4 applications on Debian Lenny use ~/.kde4 directory to store user settings
+and data. However, this has changed in Debian Squeeze. Once kdelibs5 package is
+upgraded (or multiple new lib* packages repace it), all newly started KDE 4
+applications will switch to using ~/.kde directory for this purpose.
+
+In order to avoid data loss, you should make sure there are no KDE 4
+applications running when upgrading. It is also recommended to terminate all
+running KDE sessions first.
+
+You may use Kaboom, the Debian KDE Settings Migration Wizard, to migrate your
+old KDE 4 settings to a new location. The wizard also features backing up of
+exising KDE settings to protect your data if something goes wrong with upgrade.
+Please refer to http://pkg-kde.alioth.debian.org/kaboom.html for more
+information.
+
+Kaboom will start automatically when you start a KDE 4 session for the first
+time after upgrade from KDE 3.5 desktop shipped with Debian Lenny. However, if
+you only use individual KDE 4 applications, you will need to run Kaboom
+manually. Executable is named 'kaboom' and it is included in the kaboom
+package.
Modified: trunk/packages/kdelibs/debian/changelog
===================================================================
--- trunk/packages/kdelibs/debian/changelog 2010-02-13 14:42:47 UTC (rev 16913)
+++ trunk/packages/kdelibs/debian/changelog 2010-02-13 15:23:04 UTC (rev 16914)
@@ -2,9 +2,6 @@
* New upstream release. The „Kalastria Highborn“ release.
- * TODO: Move kdelibs5 templates to another package that previously existed
- (kdelibs5-data?).
-
[ Modestas Vainius ]
* Change my email address to modax at debian.org in Uploaders field.
* Fix Vcs-Browser URL.
@@ -37,6 +34,9 @@
* Do not set RPATH to /usr/lib by default (patch
09_disable_usr_lib_install_rpath.diff). Disallowed on Debian.
* Fix version in kdelibs5-data.NEWS (thanks to lintian).
+ * Move "unsafe upgrade from KDE << 4.2.2" templates and handling to the
+ libkdecore5 package since kdelibs5 is no longer the first package to
+ be upgraded.
[ Kai Wasserbäch ]
* debian/patches:
Modified: trunk/packages/kdelibs/debian/control
===================================================================
--- trunk/packages/kdelibs/debian/control 2010-02-13 14:42:47 UTC (rev 16913)
+++ trunk/packages/kdelibs/debian/control 2010-02-13 15:23:04 UTC (rev 16914)
@@ -23,6 +23,7 @@
Package: libkdecore5
Architecture: any
+Pre-Depends: debconf | debconf-2.0
Depends: ${shlibs:Depends}, ${misc:Depends}
Replaces: kdelibs5 (<< 4:4.4.0), kdelibs5-data (<< 4:4.4.0)
Description: the KDE Platform Core Library
@@ -470,7 +471,6 @@
Package: kdelibs5
Architecture: any
-Pre-Depends: debconf | debconf-2.0
Depends: ${misc:Depends}, ${kde43Libraries}, kdoctools (= ${binary:Version}),
kdelibs5-plugins (= ${binary:Version}), kdelibs-bin (= ${binary:Version})
Description: transitional package for the KDE Development Platform libraries
Copied: trunk/packages/kdelibs/debian/libkdecore5.preinst (from rev 16912, trunk/packages/kdelibs/debian/kdelibs5.preinst)
===================================================================
--- trunk/packages/kdelibs/debian/libkdecore5.preinst (rev 0)
+++ trunk/packages/kdelibs/debian/libkdecore5.preinst 2010-02-13 15:23:04 UTC (rev 16914)
@@ -0,0 +1,82 @@
+#!/bin/sh
+
+. /usr/share/debconf/confmodule
+
+set -e
+
+lib_users() {
+ local lib max
+ local i pid user cmd
+
+ lib=`readlink -f $1`
+ max=$2
+ i=0
+
+ test -d /proc || return 2
+ for pid in `ls -1 /proc | grep '^[[:digit:]]\+$' | sort -n`; do
+ if [ -r /proc/$pid/maps ]; then
+ if grep -F -q "$lib" /proc/$pid/maps; then
+ if [ "$i" -ge "$max" ]; then
+ echo "..."
+ break
+ fi
+ user=`ps -o user= -p $pid`
+ cmd=`ps -o comm= -p $pid`
+
+ # Exclude kdm_greet(root)
+ if [ "$user" = "root" ] && [ "$cmd" = "kdm_greet" ]; then
+ continue
+ fi
+
+ echo -n "${pid}/$cmd($user) "
+ i=$(($i+1))
+ fi
+ fi
+ done
+ if [ "$i" -gt 0 ]; then
+ return 0
+ else
+ return 1
+ fi
+}
+
+oldver="$2"
+kde4apps=""
+
+# Check if upgrading from << kdelibs5 4:4.2.2-1
+kdelibs5_ver=`dpkg-query -f='${Version}\n' -W kdelibs5 2>/dev/null`
+if [ "$1" = "install" -a -n "$kdelibs5_ver" -a -e '/usr/lib/libkdecore.so.5' ] &&
+ dpkg --compare-versions "$kdelibs5_ver" lt "4:4.2.2-1"; then
+
+ # Are there any KDE 4 applications running?
+ kde4apps=`lib_users '/usr/lib/libkdecore.so.5' 6` || { kde4apps="" }
+ if [ -n "$kde4apps" ]; then
+ # Ask whether to stop upgrading
+ db_settitle libkdecore5/upgrade_kdehome_running_title
+ db_fset libkdecore5/upgrade_kdehome_running seen false
+ db_reset libkdecore5/upgrade_kdehome_running
+ db_subst libkdecore5/upgrade_kdehome_running apps "$kde4apps"
+ if ! db_input high libkdecore5/upgrade_kdehome_running; then
+ # If the question was skipped, continue upgrading...
+ kde4apps=""
+ fi
+ else
+ # Just display a note about configuration change
+ db_settitle libkdecore5/upgrade_kdehome_info_title
+ db_fset libkdecore5/upgrade_kdehome_info seen false
+ db_input medium libkdecore5/upgrade_kdehome_info || true
+ fi
+
+ # If either note was displayed successfully...
+ db_go || true
+ if [ -n "$kde4apps" ]; then
+ db_get libkdecore5/upgrade_kdehome_running
+ if [ "$RET" = "true" ]; then
+ db_stop
+ exit 1
+ fi
+ fi
+ db_stop
+fi
+
+#DEBHELPER#
Copied: trunk/packages/kdelibs/debian/libkdecore5.templates (from rev 16912, trunk/packages/kdelibs/debian/kdelibs5.templates)
===================================================================
--- trunk/packages/kdelibs/debian/libkdecore5.templates (rev 0)
+++ trunk/packages/kdelibs/debian/libkdecore5.templates 2010-02-13 15:23:04 UTC (rev 16914)
@@ -0,0 +1,45 @@
+# These templates have been reviewed by the debian-l10n-english
+# team
+#
+# If modifications/additions/rewording are needed, please ask
+# debian-l10n-english at lists.debian.org for advice.
+#
+# Even minor modifications require translation updates and such
+# changes should be coordinated with translators and reviewers.
+
+Template: libkdecore5/upgrade_kdehome_running_title
+Type: title
+_Description: Upgrading kdelibs5 while KDE 4 is running
+
+Template: libkdecore5/upgrade_kdehome_running
+Type: boolean
+Default: true
+_Description: Stop unsafe KDE 4 upgrade?
+ You are about to upgrade to the new version of the kdelibs5 package, which
+ introduces a major configuration change - details are given in
+ /usr/share/doc/libkdecore5/README.Debian (in short: user settings are moved
+ from ~/.kde4 to ~/.kde). However, some KDE 4 applications are currently
+ running: ${apps}
+ .
+ It is recommended to abort the upgrade of kdelibs5, terminate all KDE
+ applications and KDE sessions, and try upgrading again.
+ .
+ If you choose to continue the upgrade, you should make sure that no new
+ KDE 4 applications are started before KDE 4 settings and data are migrated.
+ A clean termination of the old KDE 4 session might not be safe.
+
+Template: libkdecore5/upgrade_kdehome_info_title
+Type: title
+_Description: Upgrading kdelibs5
+
+Template: libkdecore5/upgrade_kdehome_info
+Type: note
+_Description: New user settings directory (KDEHOME) for KDE 4 applications
+ Once this package is upgraded, KDE 4 applications will use ~/.kde as the default
+ directory to store user settings and data in (also known as KDEHOME). Currently,
+ KDE 4 applications use ~/.kde4. KDE 3 applications have always used (and will
+ continue to use) ~/.kde.
+ .
+ When the upgrade is complete, it is safe to log in to KDE as usual; or, if you
+ are only using individual KDE 4 applications, you may use the Kaboom wizard (in
+ the package kaboom) to migrate user data before starting a KDE 4 application.
Modified: trunk/packages/kdelibs/debian/po/cs.po
===================================================================
--- trunk/packages/kdelibs/debian/po/cs.po 2010-02-13 14:42:47 UTC (rev 16913)
+++ trunk/packages/kdelibs/debian/po/cs.po 2010-02-13 15:23:04 UTC (rev 16914)
@@ -18,34 +18,34 @@
#. Type: title
#. Description
-#: ../kdelibs5.templates:2001
+#: ../libkdecore5.templates:2001
msgid "Upgrading kdelibs5 while KDE 4 is running"
msgstr "Upgrade kdelibs5 p??i b??hu KDE 4"
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid "Stop unsafe KDE 4 upgrade?"
msgstr "Zastavit nebezpe??n?? upgrade KDE 4?"
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid ""
"You are about to upgrade to the new version of the kdelibs5 package, which "
"introduces a major configuration change - details are given in /usr/share/"
-"doc/kdelibs5/README.Debian (in short: user settings are moved from ~/.kde4 "
+"doc/libkdecore5/README.Debian (in short: user settings are moved from ~/.kde4 "
"to ~/.kde). However, some KDE 4 applications are currently running: ${apps}"
msgstr ""
"Chyst??te se upgradovat na novou verzi kdelibs5, kter?? p??in?????? z??"
"sadn?? zm??ny v konfiguraci - detaily je mo??n?? naj??t v /usr/share/doc/"
-"kdelibs5/README.Debian (ve zkratce: u??ivatelsk?? nastaven?? byla p??esunuta "
+"libkdecore5/README.Debian (ve zkratce: u??ivatelsk?? nastaven?? byla p??esunuta "
"z ~/.kde4 do ~/.kde). Zm??ny prov??d??n?? b??hem upgradu mohou kolidovat s "
"aktu??ln?? b??????c??mi aplikacemi bal????ku KDE 4: ${apps}"
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid ""
"It is recommended to abort the upgrade of kdelibs5, terminate all KDE "
"applications and KDE sessions, and try upgrading again."
@@ -55,7 +55,7 @@
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid ""
"If you choose to continue the upgrade, you should make sure that no new KDE "
"4 applications are started before KDE 4 settings and data are migrated. A "
@@ -67,20 +67,20 @@
#. Type: title
#. Description
-#: ../kdelibs5.templates:4001
+#: ../libkdecore5.templates:4001
msgid "Upgrading kdelibs5"
msgstr "Prob??h?? upgrade kdelibs5"
#. Type: note
#. Description
-#: ../kdelibs5.templates:5001
+#: ../libkdecore5.templates:5001
msgid "New user settings directory (KDEHOME) for KDE 4 applications"
msgstr ""
"Nov?? adres???? u??ivatelsk??ch nastaven?? (KDEHOME) pro KDE 4 aplikace"
#. Type: note
#. Description
-#: ../kdelibs5.templates:5001
+#: ../libkdecore5.templates:5001
msgid ""
"Once this package is upgraded, KDE 4 applications will use ~/.kde as the "
"default directory to store user settings and data in (also known as "
@@ -94,7 +94,7 @@
#. Type: note
#. Description
-#: ../kdelibs5.templates:5001
+#: ../libkdecore5.templates:5001
msgid ""
"When the upgrade is complete, it is safe to log in to KDE as usual; or, if "
"you are only using individual KDE 4 applications, you may use the Kaboom "
Modified: trunk/packages/kdelibs/debian/po/de.po
===================================================================
--- trunk/packages/kdelibs/debian/po/de.po 2010-02-13 14:42:47 UTC (rev 16913)
+++ trunk/packages/kdelibs/debian/po/de.po 2010-02-13 15:23:04 UTC (rev 16914)
@@ -31,33 +31,33 @@
#. Type: title
#. Description
-#: ../kdelibs5.templates:2001
+#: ../libkdecore5.templates:2001
msgid "Upgrading kdelibs5 while KDE 4 is running"
msgstr "Aktualisiere kdelibs5 während KDE 4 läuft"
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid "Stop unsafe KDE 4 upgrade?"
msgstr "Beende unsichere KDE 4 Aktualisierung?"
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid ""
"You are about to upgrade to the new version of the kdelibs5 package, which "
"introduces a major configuration change - details are given in /usr/share/"
-"doc/kdelibs5/README.Debian (in short: user settings are moved from ~/.kde4 "
+"doc/libkdecore5/README.Debian (in short: user settings are moved from ~/.kde4 "
"to ~/.kde). However, some KDE 4 applications are currently running: ${apps}"
msgstr ""
"Sie sind im Begriff zu einer neuen Version vom Paket kdelibs5 zu aktualisieren, welche"
" maßgebliche Änderungen in der Konfiguration einführt. Details stehen in /usr/share/"
-"doc/kdelibs5/README.Debian (in Kürze: Benutzereinstellungen werden von ~/.kde4 "
+"doc/libkdecore5/README.Debian (in Kürze: Benutzereinstellungen werden von ~/.kde4 "
"zu ~/.kde verschoben). Allerdings laufen einige KDE 4 Anwendungen momentan: ${apps}"
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid ""
"It is recommended to abort the upgrade of kdelibs5, terminate all KDE "
"applications and KDE sessions, and try upgrading again."
@@ -67,7 +67,7 @@
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid ""
"If you choose to continue the upgrade, you should make sure that no new KDE "
"4 applications are started before KDE 4 settings and data are migrated. A "
@@ -80,19 +80,19 @@
#. Type: title
#. Description
-#: ../kdelibs5.templates:4001
+#: ../libkdecore5.templates:4001
msgid "Upgrading kdelibs5"
msgstr "Aktualisiere kdelibs5"
#. Type: note
#. Description
-#: ../kdelibs5.templates:5001
+#: ../libkdecore5.templates:5001
msgid "New user settings directory (KDEHOME) for KDE 4 applications"
msgstr "Neues Verzeichnis für Benutzereinstellungen (KDEHOME) für KDE 4 Anwendungen"
#. Type: note
#. Description
-#: ../kdelibs5.templates:5001
+#: ../libkdecore5.templates:5001
msgid ""
"Once this package is upgraded, KDE 4 applications will use ~/.kde as the "
"default directory to store user settings and data in (also known as "
@@ -106,7 +106,7 @@
#. Type: note
#. Description
-#: ../kdelibs5.templates:5001
+#: ../libkdecore5.templates:5001
msgid ""
"When the upgrade is complete, it is safe to log in to KDE as usual; or, if "
"you are only using individual KDE 4 applications, you may use the Kaboom "
Modified: trunk/packages/kdelibs/debian/po/es.po
===================================================================
--- trunk/packages/kdelibs/debian/po/es.po 2010-02-13 14:42:47 UTC (rev 16913)
+++ trunk/packages/kdelibs/debian/po/es.po 2010-02-13 15:23:04 UTC (rev 16914)
@@ -38,34 +38,34 @@
#. Type: title
#. Description
-#: ../kdelibs5.templates:2001
+#: ../libkdecore5.templates:2001
msgid "Upgrading kdelibs5 while KDE 4 is running"
msgstr "Actualizando kdelibs5 mientras KDE 4 se está ejecutando"
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid "Stop unsafe KDE 4 upgrade?"
msgstr "¿Desea parar la actualización insegura de KDE 4?"
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid ""
"You are about to upgrade to the new version of the kdelibs5 package, which "
"introduces a major configuration change - details are given in /usr/share/"
-"doc/kdelibs5/README.Debian (in short: user settings are moved from ~/.kde4 "
+"doc/libkdecore5/README.Debian (in short: user settings are moved from ~/.kde4 "
"to ~/.kde). However, some KDE 4 applications are currently running: ${apps}"
msgstr ""
"Está a punto de actualizar a una nueva versión del paquete kdelibs5, que "
"introduce un gran cambio en la configuración, los detalles se proporcionan "
-"en el archivo «/usr/share/doc/kdelibs5/README.Debian» (de forma breve, la "
+"en el archivo «/usr/share/doc/libkdecore5/README.Debian» (de forma breve, la "
"configuración se mueve de «~/.kde4» a «~/.kde»). Sin embargo, algunas "
"aplicaciones de KDE 4 todavía se están ejecutando: ${apps}"
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid ""
"It is recommended to abort the upgrade of kdelibs5, terminate all KDE "
"applications and KDE sessions, and try upgrading again."
@@ -75,7 +75,7 @@
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid ""
"If you choose to continue the upgrade, you should make sure that no new KDE "
"4 applications are started before KDE 4 settings and data are migrated. A "
@@ -88,13 +88,13 @@
#. Type: title
#. Description
-#: ../kdelibs5.templates:4001
+#: ../libkdecore5.templates:4001
msgid "Upgrading kdelibs5"
msgstr "Actualizando kdelibs5"
#. Type: note
#. Description
-#: ../kdelibs5.templates:5001
+#: ../libkdecore5.templates:5001
msgid "New user settings directory (KDEHOME) for KDE 4 applications"
msgstr ""
"Nuevo directorio de la configuración de usuario (KDEHOME) para las "
@@ -102,7 +102,7 @@
#. Type: note
#. Description
-#: ../kdelibs5.templates:5001
+#: ../libkdecore5.templates:5001
msgid ""
"Once this package is upgraded, KDE 4 applications will use ~/.kde as the "
"default directory to store user settings and data in (also known as "
@@ -117,7 +117,7 @@
#. Type: note
#. Description
-#: ../kdelibs5.templates:5001
+#: ../libkdecore5.templates:5001
msgid ""
"When the upgrade is complete, it is safe to log in to KDE as usual; or, if "
"you are only using individual KDE 4 applications, you may use the Kaboom "
Modified: trunk/packages/kdelibs/debian/po/eu.po
===================================================================
--- trunk/packages/kdelibs/debian/po/eu.po 2010-02-13 14:42:47 UTC (rev 16913)
+++ trunk/packages/kdelibs/debian/po/eu.po 2010-02-13 15:23:04 UTC (rev 16914)
@@ -20,34 +20,34 @@
#. Type: title
#. Description
-#: ../kdelibs5.templates:2001
+#: ../libkdecore5.templates:2001
msgid "Upgrading kdelibs5 while KDE 4 is running"
msgstr "Kdelibs5 bertsio-berritzen KDE 4 exekutatzen ari dela"
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid "Stop unsafe KDE 4 upgrade?"
msgstr "Gelditu segurua ez den KDE 4 bertsio-berritzea?"
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid ""
"You are about to upgrade to the new version of the kdelibs5 package, which "
"introduces a major configuration change - details are given in /usr/share/"
-"doc/kdelibs5/README.Debian (in short: user settings are moved from ~/.kde4 "
+"doc/libkdecore5/README.Debian (in short: user settings are moved from ~/.kde4 "
"to ~/.kde). However, some KDE 4 applications are currently running: ${apps}"
msgstr ""
"Kdelibs5 paketearen bertsio berrira bertsio-berritzera zoaz, bertsio honetan "
-"konfigurazioko aldaketa handiak daude - xehetasunak /usr/share/doc/kdelibs5/"
+"konfigurazioko aldaketa handiak daude - xehetasunak /usr/share/doc/libkdecore5/"
"README.Debian fitxategian daude (laburki: erabiltzailearen ezarpenak ~/.kde4-"
"tik ~/.kde-ra eraman dira). Hala ere, KDE 4ko aplikazio batzuk exekutatzen "
"ari dira: ${apps}"
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid ""
"It is recommended to abort the upgrade of kdelibs5, terminate all KDE "
"applications and KDE sessions, and try upgrading again."
@@ -57,7 +57,7 @@
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid ""
"If you choose to continue the upgrade, you should make sure that no new KDE "
"4 applications are started before KDE 4 settings and data are migrated. A "
@@ -70,20 +70,20 @@
#. Type: title
#. Description
-#: ../kdelibs5.templates:4001
+#: ../libkdecore5.templates:4001
msgid "Upgrading kdelibs5"
msgstr "kdelibs5 bertsio-berritzen"
#. Type: note
#. Description
-#: ../kdelibs5.templates:5001
+#: ../libkdecore5.templates:5001
msgid "New user settings directory (KDEHOME) for KDE 4 applications"
msgstr ""
"Erabiltzailearen ezarpenen direktorio berria (KDEHOME) KDE 4 aplikazioentzat"
#. Type: note
#. Description
-#: ../kdelibs5.templates:5001
+#: ../libkdecore5.templates:5001
msgid ""
"Once this package is upgraded, KDE 4 applications will use ~/.kde as the "
"default directory to store user settings and data in (also known as "
@@ -98,7 +98,7 @@
#. Type: note
#. Description
-#: ../kdelibs5.templates:5001
+#: ../libkdecore5.templates:5001
msgid ""
"When the upgrade is complete, it is safe to log in to KDE as usual; or, if "
"you are only using individual KDE 4 applications, you may use the Kaboom "
Modified: trunk/packages/kdelibs/debian/po/fi.po
===================================================================
--- trunk/packages/kdelibs/debian/po/fi.po 2010-02-13 14:42:47 UTC (rev 16913)
+++ trunk/packages/kdelibs/debian/po/fi.po 2010-02-13 15:23:04 UTC (rev 16914)
@@ -18,34 +18,34 @@
#. Type: title
#. Description
-#: ../kdelibs5.templates:2001
+#: ../libkdecore5.templates:2001
msgid "Upgrading kdelibs5 while KDE 4 is running"
msgstr "Paketin kdelibs5 päivitys, kun KDE 4 on käynnissä"
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid "Stop unsafe KDE 4 upgrade?"
msgstr "Keskeytetäänkö KDE 4:n turvaton päivitys?"
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid ""
"You are about to upgrade to the new version of the kdelibs5 package, which "
"introduces a major configuration change - details are given in /usr/share/"
-"doc/kdelibs5/README.Debian (in short: user settings are moved from ~/.kde4 "
+"doc/libkdecore5/README.Debian (in short: user settings are moved from ~/.kde4 "
"to ~/.kde). However, some KDE 4 applications are currently running: ${apps}"
msgstr ""
"Olet päivittämässä pakettia kdelibs5 uuteen versioon, jossa asetukset ovat "
"muuttuneet suuresti. Yksityiskohdat löytyvät tiedostosta /usr/share/doc/"
-"kdelibs5/README.Debian (lyhyesti: käyttäjäasetukset ovat siirtyneet "
+"libkdecore5/README.Debian (lyhyesti: käyttäjäasetukset ovat siirtyneet "
"hakemistosta ~/.kde4 hakemistoon ~/.kde). Joitain KDE 4 -ohjelmia on "
"kuitenkin käynnissä: ${apps}"
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid ""
"It is recommended to abort the upgrade of kdelibs5, terminate all KDE "
"applications and KDE sessions, and try upgrading again."
@@ -55,7 +55,7 @@
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid ""
"If you choose to continue the upgrade, you should make sure that no new KDE "
"4 applications are started before KDE 4 settings and data are migrated. A "
@@ -67,19 +67,19 @@
#. Type: title
#. Description
-#: ../kdelibs5.templates:4001
+#: ../libkdecore5.templates:4001
msgid "Upgrading kdelibs5"
msgstr "Päivitetään pakettia kdelibs5"
#. Type: note
#. Description
-#: ../kdelibs5.templates:5001
+#: ../libkdecore5.templates:5001
msgid "New user settings directory (KDEHOME) for KDE 4 applications"
msgstr "KDE 4 -ohjelmien uusi käyttäjätietohakemisto (KDEHOME)"
#. Type: note
#. Description
-#: ../kdelibs5.templates:5001
+#: ../libkdecore5.templates:5001
msgid ""
"Once this package is upgraded, KDE 4 applications will use ~/.kde as the "
"default directory to store user settings and data in (also known as "
@@ -94,7 +94,7 @@
#. Type: note
#. Description
-#: ../kdelibs5.templates:5001
+#: ../libkdecore5.templates:5001
msgid ""
"When the upgrade is complete, it is safe to log in to KDE as usual; or, if "
"you are only using individual KDE 4 applications, you may use the Kaboom "
Modified: trunk/packages/kdelibs/debian/po/fr.po
===================================================================
--- trunk/packages/kdelibs/debian/po/fr.po 2010-02-13 14:42:47 UTC (rev 16913)
+++ trunk/packages/kdelibs/debian/po/fr.po 2010-02-13 15:23:04 UTC (rev 16914)
@@ -20,34 +20,34 @@
#. Type: title
#. Description
-#: ../kdelibs5.templates:2001
+#: ../libkdecore5.templates:2001
msgid "Upgrading kdelibs5 while KDE 4 is running"
msgstr "Mise à jour de kdelibs5 avec KDE 4 actif"
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid "Stop unsafe KDE 4 upgrade?"
msgstr "Faut-il interrompre la mise à jour de KDE 4 ?"
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid ""
"You are about to upgrade to the new version of the kdelibs5 package, which "
"introduces a major configuration change - details are given in /usr/share/"
-"doc/kdelibs5/README.Debian (in short: user settings are moved from ~/.kde4 "
+"doc/libkdecore5/README.Debian (in short: user settings are moved from ~/.kde4 "
"to ~/.kde). However, some KDE 4 applications are currently running: ${apps}"
msgstr ""
"Le paquet kdelib5 va être mis à jour, avec pour conséquence un changement "
"important de configuration dont les détails sont donnés dans le fichier /usr/"
-"share/doc/kdelibs5/README.Debian : en résumé, les paramètres utilisateurs "
+"share/doc/libkdecore5/README.Debian : en résumé, les paramètres utilisateurs "
"sont déplacés depuis le répertoire ~/.kde4 vers le répertoire ~/.kde. "
"Cependant, des applications KDE 4 sont actuellement utilisées : ${apps}."
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid ""
"It is recommended to abort the upgrade of kdelibs5, terminate all KDE "
"applications and KDE sessions, and try upgrading again."
@@ -57,7 +57,7 @@
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid ""
"If you choose to continue the upgrade, you should make sure that no new KDE "
"4 applications are started before KDE 4 settings and data are migrated. A "
@@ -70,19 +70,19 @@
#. Type: title
#. Description
-#: ../kdelibs5.templates:4001
+#: ../libkdecore5.templates:4001
msgid "Upgrading kdelibs5"
msgstr "Mise à jour de kdelibs5"
#. Type: note
#. Description
-#: ../kdelibs5.templates:5001
+#: ../libkdecore5.templates:5001
msgid "New user settings directory (KDEHOME) for KDE 4 applications"
msgstr "Nouveau répertoire pour les réglages des applications KDE 4 (KDEHOME)"
#. Type: note
#. Description
-#: ../kdelibs5.templates:5001
+#: ../libkdecore5.templates:5001
msgid ""
"Once this package is upgraded, KDE 4 applications will use ~/.kde as the "
"default directory to store user settings and data in (also known as "
@@ -97,7 +97,7 @@
#. Type: note
#. Description
-#: ../kdelibs5.templates:5001
+#: ../libkdecore5.templates:5001
msgid ""
"When the upgrade is complete, it is safe to log in to KDE as usual; or, if "
"you are only using individual KDE 4 applications, you may use the Kaboom "
Modified: trunk/packages/kdelibs/debian/po/gl.po
===================================================================
--- trunk/packages/kdelibs/debian/po/gl.po 2010-02-13 14:42:47 UTC (rev 16913)
+++ trunk/packages/kdelibs/debian/po/gl.po 2010-02-13 15:23:04 UTC (rev 16914)
@@ -18,34 +18,34 @@
#. Type: title
#. Description
-#: ../kdelibs5.templates:2001
+#: ../libkdecore5.templates:2001
msgid "Upgrading kdelibs5 while KDE 4 is running"
msgstr "Estase a actualizar kdelibs5 mentres se executa KDE 4"
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid "Stop unsafe KDE 4 upgrade?"
msgstr "Desexe deter a actualizaci贸n insegura de KDE 4?"
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid ""
"You are about to upgrade to the new version of the kdelibs5 package, which "
"introduces a major configuration change - details are given in /usr/share/"
-"doc/kdelibs5/README.Debian (in short: user settings are moved from ~/.kde4 "
+"doc/libkdecore5/README.Debian (in short: user settings are moved from ~/.kde4 "
"to ~/.kde). However, some KDE 4 applications are currently running: ${apps}"
msgstr ""
"Est谩 a piques de anovar para a nova versi贸n do paquete kdelibs5, que trae "
"unha modificaci贸n importante da configuraci贸n, da que se dan m谩is "
-"detalles en /usr/share/doc/kdelibs5/README.Debian (en resumo: m贸vese a "
+"detalles en /usr/share/doc/libkdecore5/README.Debian (en resumo: m贸vese a "
"configuraci贸n do usuario de ~/.kde4 para ~/.kde). Por茅n, estanse a "
"executar alg煤ns programas de KDE 4: ${apps}"
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid ""
"It is recommended to abort the upgrade of kdelibs5, terminate all KDE "
"applications and KDE sessions, and try upgrading again."
@@ -55,7 +55,7 @@
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid ""
"If you choose to continue the upgrade, you should make sure that no new KDE "
"4 applications are started before KDE 4 settings and data are migrated. A "
@@ -67,13 +67,13 @@
#. Type: title
#. Description
-#: ../kdelibs5.templates:4001
+#: ../libkdecore5.templates:4001
msgid "Upgrading kdelibs5"
msgstr "A anovar kdelibs5"
#. Type: note
#. Description
-#: ../kdelibs5.templates:5001
+#: ../libkdecore5.templates:5001
msgid "New user settings directory (KDEHOME) for KDE 4 applications"
msgstr ""
"O novo directorio da configuraci贸n do usuario (KDEHOME) dos programas de "
@@ -81,7 +81,7 @@
#. Type: note
#. Description
-#: ../kdelibs5.templates:5001
+#: ../libkdecore5.templates:5001
msgid ""
"Once this package is upgraded, KDE 4 applications will use ~/.kde as the "
"default directory to store user settings and data in (also known as "
@@ -96,7 +96,7 @@
#. Type: note
#. Description
-#: ../kdelibs5.templates:5001
+#: ../libkdecore5.templates:5001
msgid ""
"When the upgrade is complete, it is safe to log in to KDE as usual; or, if "
"you are only using individual KDE 4 applications, you may use the Kaboom "
Modified: trunk/packages/kdelibs/debian/po/it.po
===================================================================
--- trunk/packages/kdelibs/debian/po/it.po 2010-02-13 14:42:47 UTC (rev 16913)
+++ trunk/packages/kdelibs/debian/po/it.po 2010-02-13 15:23:04 UTC (rev 16914)
@@ -17,34 +17,34 @@
#. Type: title
#. Description
-#: ../kdelibs5.templates:2001
+#: ../libkdecore5.templates:2001
msgid "Upgrading kdelibs5 while KDE 4 is running"
msgstr "Aggiornamento di kdelibs5 mentre KDE 4 è in esecuzione"
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid "Stop unsafe KDE 4 upgrade?"
msgstr "Arrestare l'aggiornamento non sicuro di KDE 4?"
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid ""
"You are about to upgrade to the new version of the kdelibs5 package, which "
"introduces a major configuration change - details are given in /usr/share/"
-"doc/kdelibs5/README.Debian (in short: user settings are moved from ~/.kde4 "
+"doc/libkdecore5/README.Debian (in short: user settings are moved from ~/.kde4 "
"to ~/.kde). However, some KDE 4 applications are currently running: ${apps}"
msgstr ""
"Si sta per aggiornare alla nuova versione di kdelibs5, la quale introduce "
"una modifica importante nella configurazione (per maggiori dettagli si veda «/"
-"usr/share/doc/kdelibs5/README.Debian); in breve, le impostazioni utente "
+"usr/share/doc/libkdecore5/README.Debian); in breve, le impostazioni utente "
"vengono spostate da «~/.kde4» a «~/.kde». Però alcune applicazioni KDE 4 sono "
"attualmente in esecuzione: ${apps}"
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid ""
"It is recommended to abort the upgrade of kdelibs5, terminate all KDE "
"applications and KDE sessions, and try upgrading again."
@@ -55,7 +55,7 @@
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid ""
"If you choose to continue the upgrade, you should make sure that no new KDE "
"4 applications are started before KDE 4 settings and data are migrated. A "
@@ -68,20 +68,20 @@
#. Type: title
#. Description
-#: ../kdelibs5.templates:4001
+#: ../libkdecore5.templates:4001
msgid "Upgrading kdelibs5"
msgstr "Aggiornamento di kdelibs5"
#. Type: note
#. Description
-#: ../kdelibs5.templates:5001
+#: ../libkdecore5.templates:5001
msgid "New user settings directory (KDEHOME) for KDE 4 applications"
msgstr ""
"Nuova directory delle impostazioni utente (KDEHOME) per le applicazioni KDE 4"
#. Type: note
#. Description
-#: ../kdelibs5.templates:5001
+#: ../libkdecore5.templates:5001
msgid ""
"Once this package is upgraded, KDE 4 applications will use ~/.kde as the "
"default directory to store user settings and data in (also known as "
@@ -96,7 +96,7 @@
#. Type: note
#. Description
-#: ../kdelibs5.templates:5001
+#: ../libkdecore5.templates:5001
msgid ""
"When the upgrade is complete, it is safe to log in to KDE as usual; or, if "
"you are only using individual KDE 4 applications, you may use the Kaboom "
Modified: trunk/packages/kdelibs/debian/po/ja.po
===================================================================
--- trunk/packages/kdelibs/debian/po/ja.po 2010-02-13 14:42:47 UTC (rev 16913)
+++ trunk/packages/kdelibs/debian/po/ja.po 2010-02-13 15:23:04 UTC (rev 16914)
@@ -16,34 +16,34 @@
#. Type: title
#. Description
-#: ../kdelibs5.templates:2001
+#: ../libkdecore5.templates:2001
msgid "Upgrading kdelibs5 while KDE 4 is running"
msgstr "KDE4 動作中に kdelibs5 をアップグレード"
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid "Stop unsafe KDE 4 upgrade?"
msgstr "安全ではない KDE 4 のアップグレードを停止しますか?"
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid ""
"You are about to upgrade to the new version of the kdelibs5 package, which "
"introduces a major configuration change - details are given in /usr/share/"
-"doc/kdelibs5/README.Debian (in short: user settings are moved from ~/.kde4 "
+"doc/libkdecore5/README.Debian (in short: user settings are moved from ~/.kde4 "
"to ~/.kde). However, some KDE 4 applications are currently running: ${apps}"
msgstr ""
"kdelibs5 パッケージの新しいバージョンにアップグレードしようとしているようで"
"す。これは設定に大きな変更があります - 詳細については /usr/share/doc/"
-"kdelibs5/README.Debian を参照ください (端的に言うと、ユーザ設定が ~/.kde4 か"
+"libkdecore5/README.Debian を参照ください (端的に言うと、ユーザ設定が ~/.kde4 か"
"ら /.kde に移動されます)。しかし、現在 KDE 4 アプリケーションが幾つか動作して"
"います: ${apps}"
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid ""
"It is recommended to abort the upgrade of kdelibs5, terminate all KDE "
"applications and KDE sessions, and try upgrading again."
@@ -53,7 +53,7 @@
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid ""
"If you choose to continue the upgrade, you should make sure that no new KDE "
"4 applications are started before KDE 4 settings and data are migrated. A "
@@ -65,19 +65,19 @@
#. Type: title
#. Description
-#: ../kdelibs5.templates:4001
+#: ../libkdecore5.templates:4001
msgid "Upgrading kdelibs5"
msgstr "kdelibs5 のアップグレードについて"
#. Type: note
#. Description
-#: ../kdelibs5.templates:5001
+#: ../libkdecore5.templates:5001
msgid "New user settings directory (KDEHOME) for KDE 4 applications"
msgstr "KDE 4 アプリケーション用の新しいユーザ設定ディレクトリ (KDEHOME)"
#. Type: note
#. Description
-#: ../kdelibs5.templates:5001
+#: ../libkdecore5.templates:5001
msgid ""
"Once this package is upgraded, KDE 4 applications will use ~/.kde as the "
"default directory to store user settings and data in (also known as "
@@ -92,7 +92,7 @@
#. Type: note
#. Description
-#: ../kdelibs5.templates:5001
+#: ../libkdecore5.templates:5001
msgid ""
"When the upgrade is complete, it is safe to log in to KDE as usual; or, if "
"you are only using individual KDE 4 applications, you may use the Kaboom "
Modified: trunk/packages/kdelibs/debian/po/nb.po
===================================================================
--- trunk/packages/kdelibs/debian/po/nb.po 2010-02-13 14:42:47 UTC (rev 16913)
+++ trunk/packages/kdelibs/debian/po/nb.po 2010-02-13 15:23:04 UTC (rev 16914)
@@ -18,33 +18,33 @@
#. Type: title
#. Description
-#: ../kdelibs5.templates:2001
+#: ../libkdecore5.templates:2001
msgid "Upgrading kdelibs5 while KDE 4 is running"
msgstr "Oppgraderer kdelibs5 mens KDE 4 kjører"
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid "Stop unsafe KDE 4 upgrade?"
msgstr "Skal utrygg oppgradering fra KDE 4 stoppes?"
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid ""
"You are about to upgrade to the new version of the kdelibs5 package, which "
"introduces a major configuration change - details are given in /usr/share/"
-"doc/kdelibs5/README.Debian (in short: user settings are moved from ~/.kde4 "
+"doc/libkdecore5/README.Debian (in short: user settings are moved from ~/.kde4 "
"to ~/.kde). However, some KDE 4 applications are currently running: ${apps}"
msgstr ""
"Du er i ferd med å oppgradere til den nye versjonen av kdelibs5-pakka, som "
"innfører en større oppsettsendring – detaljer finnes i /usr/share/doc/"
-"kdelibs5/ README.Debian (kort sagt: brukerinnstillinger flyttes fra ~/,kde4 "
+"libkdecore5/ README.Debian (kort sagt: brukerinnstillinger flyttes fra ~/,kde4 "
"til ~/.kde). Men noen KDE 4-programmer kjører nå: ${apps}"
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid ""
"It is recommended to abort the upgrade of kdelibs5, terminate all KDE "
"applications and KDE sessions, and try upgrading again."
@@ -54,7 +54,7 @@
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid ""
"If you choose to continue the upgrade, you should make sure that no new KDE "
"4 applications are started before KDE 4 settings and data are migrated. A "
@@ -66,19 +66,19 @@
#. Type: title
#. Description
-#: ../kdelibs5.templates:4001
+#: ../libkdecore5.templates:4001
msgid "Upgrading kdelibs5"
msgstr "Oppgraderer kdelibs5"
#. Type: note
#. Description
-#: ../kdelibs5.templates:5001
+#: ../libkdecore5.templates:5001
msgid "New user settings directory (KDEHOME) for KDE 4 applications"
msgstr "Ny mappe (KDEHOME) for brukerinnstillinger for KDE 4-programmer"
#. Type: note
#. Description
-#: ../kdelibs5.templates:5001
+#: ../libkdecore5.templates:5001
msgid ""
"Once this package is upgraded, KDE 4 applications will use ~/.kde as the "
"default directory to store user settings and data in (also known as "
@@ -92,7 +92,7 @@
#. Type: note
#. Description
-#: ../kdelibs5.templates:5001
+#: ../libkdecore5.templates:5001
msgid ""
"When the upgrade is complete, it is safe to log in to KDE as usual; or, if "
"you are only using individual KDE 4 applications, you may use the Kaboom "
Modified: trunk/packages/kdelibs/debian/po/pt.po
===================================================================
--- trunk/packages/kdelibs/debian/po/pt.po 2010-02-13 14:42:47 UTC (rev 16913)
+++ trunk/packages/kdelibs/debian/po/pt.po 2010-02-13 15:23:04 UTC (rev 16914)
@@ -17,34 +17,34 @@
#. Type: title
#. Description
-#: ../kdelibs5.templates:2001
+#: ../libkdecore5.templates:2001
msgid "Upgrading kdelibs5 while KDE 4 is running"
msgstr "A actualizar kdelibs5 enquanto o KDE 4 está a ser executado"
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid "Stop unsafe KDE 4 upgrade?"
msgstr "Parar com actualização insegura do KDE4?"
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid ""
"You are about to upgrade to the new version of the kdelibs5 package, which "
"introduces a major configuration change - details are given in /usr/share/"
-"doc/kdelibs5/README.Debian (in short: user settings are moved from ~/.kde4 "
+"doc/libkdecore5/README.Debian (in short: user settings are moved from ~/.kde4 "
"to ~/.kde). However, some KDE 4 applications are currently running: ${apps}"
msgstr ""
"Está prestes a actualizar para a nova versão do pacote kdelibs5, que "
"introduz uma alteração importante de configuração - os detalhes estão em /"
-"usr/share/doc/kdelibs5/README.Debian (em resumo: as configurações do "
+"usr/share/doc/libkdecore5/README.Debian (em resumo: as configurações do "
"utilizador são movidas de ~/.kde4 para ~/.kde). No entanto, algumas "
"aplicações do KDE 4 estão actualmente a ser executadas: ${apps}"
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid ""
"It is recommended to abort the upgrade of kdelibs5, terminate all KDE "
"applications and KDE sessions, and try upgrading again."
@@ -54,7 +54,7 @@
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid ""
"If you choose to continue the upgrade, you should make sure that no new KDE "
"4 applications are started before KDE 4 settings and data are migrated. A "
@@ -67,19 +67,19 @@
#. Type: title
#. Description
-#: ../kdelibs5.templates:4001
+#: ../libkdecore5.templates:4001
msgid "Upgrading kdelibs5"
msgstr "A actualizar kdelibs5"
#. Type: note
#. Description
-#: ../kdelibs5.templates:5001
+#: ../libkdecore5.templates:5001
msgid "New user settings directory (KDEHOME) for KDE 4 applications"
msgstr "Novo directório de configurações (KDEHOME) para aplicações KDE 4"
#. Type: note
#. Description
-#: ../kdelibs5.templates:5001
+#: ../libkdecore5.templates:5001
msgid ""
"Once this package is upgraded, KDE 4 applications will use ~/.kde as the "
"default directory to store user settings and data in (also known as "
@@ -94,7 +94,7 @@
#. Type: note
#. Description
-#: ../kdelibs5.templates:5001
+#: ../libkdecore5.templates:5001
msgid ""
"When the upgrade is complete, it is safe to log in to KDE as usual; or, if "
"you are only using individual KDE 4 applications, you may use the Kaboom "
Modified: trunk/packages/kdelibs/debian/po/ru.po
===================================================================
--- trunk/packages/kdelibs/debian/po/ru.po 2010-02-13 14:42:47 UTC (rev 16913)
+++ trunk/packages/kdelibs/debian/po/ru.po 2010-02-13 15:23:04 UTC (rev 16914)
@@ -20,33 +20,33 @@
#. Type: title
#. Description
-#: ../kdelibs5.templates:2001
+#: ../libkdecore5.templates:2001
msgid "Upgrading kdelibs5 while KDE 4 is running"
msgstr "Обновление kdelibs5 при работающем KDE 4"
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid "Stop unsafe KDE 4 upgrade?"
msgstr "Остановить небезопасное обновление KDE 4?"
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid ""
"You are about to upgrade to the new version of the kdelibs5 package, which "
"introduces a major configuration change - details are given in /usr/share/"
-"doc/kdelibs5/README.Debian (in short: user settings are moved from ~/.kde4 "
+"doc/libkdecore5/README.Debian (in short: user settings are moved from ~/.kde4 "
"to ~/.kde). However, some KDE 4 applications are currently running: ${apps}"
msgstr ""
"Вы собираетесь выполнить обновление пакета kdelibs5, которое вносит большие "
-"изменения настроек -- подробней см. в /usr/share/doc/kdelibs5/README.Debian "
+"изменения настроек -- подробней см. в /usr/share/doc/libkdecore5/README.Debian "
"(Коротко: пользовательские настройки переносятся из ~/.kde4 в ~/.kde). "
"Однако в данный момент работает несколько приложений KDE 4: ${apps}"
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid ""
"It is recommended to abort the upgrade of kdelibs5, terminate all KDE "
"applications and KDE sessions, and try upgrading again."
@@ -56,7 +56,7 @@
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid ""
"If you choose to continue the upgrade, you should make sure that no new KDE "
"4 applications are started before KDE 4 settings and data are migrated. A "
@@ -68,19 +68,19 @@
#. Type: title
#. Description
-#: ../kdelibs5.templates:4001
+#: ../libkdecore5.templates:4001
msgid "Upgrading kdelibs5"
msgstr "Обновление kdelibs5"
#. Type: note
#. Description
-#: ../kdelibs5.templates:5001
+#: ../libkdecore5.templates:5001
msgid "New user settings directory (KDEHOME) for KDE 4 applications"
msgstr "Новый каталог пользовательских настроек (KDEHOME) для приложений KDE 4"
#. Type: note
#. Description
-#: ../kdelibs5.templates:5001
+#: ../libkdecore5.templates:5001
msgid ""
"Once this package is upgraded, KDE 4 applications will use ~/.kde as the "
"default directory to store user settings and data in (also known as "
@@ -95,7 +95,7 @@
#. Type: note
#. Description
-#: ../kdelibs5.templates:5001
+#: ../libkdecore5.templates:5001
msgid ""
"When the upgrade is complete, it is safe to log in to KDE as usual; or, if "
"you are only using individual KDE 4 applications, you may use the Kaboom "
Modified: trunk/packages/kdelibs/debian/po/sv.po
===================================================================
--- trunk/packages/kdelibs/debian/po/sv.po 2010-02-13 14:42:47 UTC (rev 16913)
+++ trunk/packages/kdelibs/debian/po/sv.po 2010-02-13 15:23:04 UTC (rev 16914)
@@ -19,34 +19,34 @@
#. Type: title
#. Description
-#: ../kdelibs5.templates:2001
+#: ../libkdecore5.templates:2001
msgid "Upgrading kdelibs5 while KDE 4 is running"
msgstr "Uppgradering av kdelibs5 medan KDE 4 körs"
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid "Stop unsafe KDE 4 upgrade?"
msgstr "Avbryt osäker KDE 4-uppgradering?"
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid ""
"You are about to upgrade to the new version of the kdelibs5 package, which "
"introduces a major configuration change - details are given in /usr/share/"
-"doc/kdelibs5/README.Debian (in short: user settings are moved from ~/.kde4 "
+"doc/libkdecore5/README.Debian (in short: user settings are moved from ~/.kde4 "
"to ~/.kde). However, some KDE 4 applications are currently running: ${apps}"
msgstr ""
"Du är på väg att uppgradera till den nya versionen av paketet kdelibs5, som "
"introducerar en stor ändring av konfigurationen - detaljer finns i /usr/"
-"share/doc/kdelibs5/README.Debian (i korthet: användarinställningar flyttas "
+"share/doc/libkdecore5/README.Debian (i korthet: användarinställningar flyttas "
"från ~/.kde4 till ~/.kde). Några KDE 4-applikationer körs dock fortfarande: "
"${apps}"
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid ""
"It is recommended to abort the upgrade of kdelibs5, terminate all KDE "
"applications and KDE sessions, and try upgrading again."
@@ -57,7 +57,7 @@
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid ""
"If you choose to continue the upgrade, you should make sure that no new KDE "
"4 applications are started before KDE 4 settings and data are migrated. A "
@@ -69,19 +69,19 @@
#. Type: title
#. Description
-#: ../kdelibs5.templates:4001
+#: ../libkdecore5.templates:4001
msgid "Upgrading kdelibs5"
msgstr "Uppgraderar kdelibs5"
#. Type: note
#. Description
-#: ../kdelibs5.templates:5001
+#: ../libkdecore5.templates:5001
msgid "New user settings directory (KDEHOME) for KDE 4 applications"
msgstr "Ny användarinställningskatalog (KDEHOME) för KDE 4-applikationer"
#. Type: note
#. Description
-#: ../kdelibs5.templates:5001
+#: ../libkdecore5.templates:5001
msgid ""
"Once this package is upgraded, KDE 4 applications will use ~/.kde as the "
"default directory to store user settings and data in (also known as "
@@ -96,7 +96,7 @@
#. Type: note
#. Description
-#: ../kdelibs5.templates:5001
+#: ../libkdecore5.templates:5001
msgid ""
"When the upgrade is complete, it is safe to log in to KDE as usual; or, if "
"you are only using individual KDE 4 applications, you may use the Kaboom "
Modified: trunk/packages/kdelibs/debian/po/templates.pot
===================================================================
--- trunk/packages/kdelibs/debian/po/templates.pot 2010-02-13 14:42:47 UTC (rev 16913)
+++ trunk/packages/kdelibs/debian/po/templates.pot 2010-02-13 15:23:04 UTC (rev 16914)
@@ -18,29 +18,29 @@
#. Type: title
#. Description
-#: ../kdelibs5.templates:2001
+#: ../libkdecore5.templates:2001
msgid "Upgrading kdelibs5 while KDE 4 is running"
msgstr ""
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid "Stop unsafe KDE 4 upgrade?"
msgstr ""
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid ""
"You are about to upgrade to the new version of the kdelibs5 package, which "
"introduces a major configuration change - details are given in /usr/share/"
-"doc/kdelibs5/README.Debian (in short: user settings are moved from ~/.kde4 "
+"doc/libkdecore5/README.Debian (in short: user settings are moved from ~/.kde4 "
"to ~/.kde). However, some KDE 4 applications are currently running: ${apps}"
msgstr ""
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid ""
"It is recommended to abort the upgrade of kdelibs5, terminate all KDE "
"applications and KDE sessions, and try upgrading again."
@@ -48,7 +48,7 @@
#. Type: boolean
#. Description
-#: ../kdelibs5.templates:3001
+#: ../libkdecore5.templates:3001
msgid ""
"If you choose to continue the upgrade, you should make sure that no new KDE "
"4 applications are started before KDE 4 settings and data are migrated. A "
@@ -57,19 +57,19 @@
#. Type: title
#. Description
-#: ../kdelibs5.templates:4001
+#: ../libkdecore5.templates:4001
msgid "Upgrading kdelibs5"
msgstr ""
#. Type: note
#. Description
-#: ../kdelibs5.templates:5001
+#: ../libkdecore5.templates:5001
msgid "New user settings directory (KDEHOME) for KDE 4 applications"
msgstr ""
#. Type: note
#. Description
-#: ../kdelibs5.templates:5001
+#: ../libkdecore5.templates:5001
msgid ""
"Once this package is upgraded, KDE 4 applications will use ~/.kde as the "
"default directory to store user settings and data in (also known as "
@@ -79,7 +79,7 @@
#. Type: note
#. Description
-#: ../kdelibs5.templates:5001
+#: ../libkdecore5.templates:5001
msgid ""
"When the upgrade is complete, it is safe to log in to KDE as usual; or, if "
"you are only using individual KDE 4 applications, you may use the Kaboom "
More information about the pkg-kde-commits
mailing list