Branch evolution to experimental

git-svn-id: file:///svn/pkg-evolution/experimental/evolution@1843 ed03ce00-e4f4-0310-9448-ee38221cb277
This commit is contained in:
Josselin Mouette
2011-03-19 16:19:48 +00:00
22 changed files with 1050 additions and 72 deletions

48
debian/changelog vendored
View File

@ -1,4 +1,4 @@
evolution (2.32.1-1) UNRELEASED; urgency=low
evolution (2.32.2-1) unstable; urgency=low
* New upstream release.
- categories are now editable. closes: #591950
@ -21,8 +21,52 @@ evolution (2.32.1-1) UNRELEASED; urgency=low
* debian/evolution-mail.desktop dropped, stick with upstream.
* debian/evolution-plugins-experimental.install:
- add contact-maps and dbx-import plugins.
* debian/watch:
- remove call to uupdate.
- use .tar.bz2 since we have 3.0 source format.
-- Yves-Alexis Perez <corsac@debian.org> Mon, 18 Oct 2010 17:58:29 +0200
-- Yves-Alexis Perez <corsac@debian.org> Sat, 12 Feb 2011 23:21:33 +0100
evolution (2.30.3-5) unstable; urgency=low
* debian/po:
- de.po manually unfuzzified. (really) closes: #600526
- ru.po as well.
-- Yves-Alexis Perez <corsac@debian.org> Wed, 17 Nov 2010 22:35:01 +0100
evolution (2.30.3-4) unstable; urgency=low
* debian/po:
- update ru.po, thanks to Yuri Kozlov. closes: #602754
- update de.po, thanks to Helge Kreutzmann. closes: #600526
-- Yves-Alexis Perez <corsac@debian.org> Sat, 13 Nov 2010 09:53:07 +0100
evolution (2.30.3-3) unstable; urgency=low
* Update debconf script to ask about aborting the upgrade or proceeding by
killing processes.
* debian/patches:
- 05_fix-inline-gpg added, fix inline GPG not always recognized, backport
patch from 2.32 branch. (GNOME #630295, git 36abdbd). closes: #599403
- 06_fix-empty-quote-html-reply added, fix empty quote when replying to
HTML messages. (GNOME #629046, git 19fb229). closes: #596156
* debian/po:
- add da.po, thanks to Joe Hansen. closes: #599452, #600369, #600531
- update sv.po, thanks to Martin Bagge. closes: #600352, #600663
- update ru.po, thanks to Yuri Kozlov. closes: #600353, #600612
- update it.po, thanks to Ludovico Salemi,Luca Monducci. closes: #601083
- update cs.po, thanks to Martin Šín. closes: #600393, #600565
- add sk.po, thanks to Slavko. closes: #600372
- update pt.po, thanks to Américo Monteiro. closes: #600368
- update fr.po, thanks to Christian Perrier. closes: #600615
- add zh_CN.po, thanks to Ji ZhengYu. closes: #600689
- update es.po, thanks to Omar Campagne. closes: #600801
- update fi.po, thanks to Esko Arajärvi. closes: #601086
-- Yves-Alexis Perez <corsac@debian.org> Mon, 25 Oct 2010 21:57:30 +0200
evolution (2.30.3-2) unstable; urgency=low

22
debian/control vendored
View File

@ -29,25 +29,25 @@ Build-Depends: debhelper (>= 7.2.3~),
gtk-doc-tools (>= 0.6),
libatk1.0-dev,
libldap2-dev,
libgtkhtml3.14-dev (>= 3.32.1),
libgtkhtml-editor-3.14-dev (>= 3.32.1),
libgtkhtml3.14-dev (>= 3.32.2),
libgtkhtml-editor-3.14-dev (>= 3.32.2),
libkrb5-dev,
libnss3-dev,
psmisc,
libglib2.0-dev (>= 2.25.12),
evolution-data-server-dev (>= 2.32.1),
evolution-data-server-dev (>= 2.32.2),
evolution-data-server-dev (<< 2.33),
libgtk2.0-dev (>= 2.20.0),
libxml2-dev,
libgconf2-dev,
libcamel1.2-dev (>= 2.32.1),
libedataserver1.2-dev (>= 2.32.1),
libegroupwise1.2-dev (>= 2.32.1),
libedataserverui1.2-dev (>= 2.32.1),
libebackend1.2-dev (>= 2.32.1),
libcamel1.2-dev (>= 2.32.2),
libedataserver1.2-dev (>= 2.32.2),
libegroupwise1.2-dev (>= 2.32.2),
libedataserverui1.2-dev (>= 2.32.2),
libebackend1.2-dev (>= 2.32.2),
libgdata-dev,
libecal1.2-dev (>= 2.32.1),
libebook1.2-dev (>= 2.32.1),
libecal1.2-dev (>= 2.32.2),
libebook1.2-dev (>= 2.32.2),
libgnome2-dev,
libdbus-glib-1-dev,
libnm-glib-dev [!kfreebsd-i386 !kfreebsd-amd64 !hurd-i386],
@ -79,7 +79,7 @@ Architecture: any
Depends: ${shlibs:Depends},
${misc:Depends},
evolution-common (= ${source:Version}),
evolution-data-server (>= 2.32.1),
evolution-data-server (>= 2.32.2),
evolution-data-server (<< 2.33),
gnome-icon-theme (>= 2.30.2.1),
dbus

View File

@ -2,6 +2,7 @@
set -e
. /usr/share/debconf/confmodule
EVO_PROCESS='evolution|/usr/lib/evolution/.*/evolution-exchange-storage|/usr/lib/evolution/evolution-data-server-.*'
error_msg() {
db_title Upgrading evolution
@ -10,15 +11,42 @@ error_msg() {
db_go
}
end_msg() {
db_title Evolution processes still present
db_input high evolution/kill_processes || true
db_fset evolution/kill_processes seen false
db_go
}
upgrade_check() {
seen=0
while pgrep -fx 'evolution|/usr/lib/evolution/.*/evolution-exchange-storage|/usr/lib/evolution/evolution-data-server-.*' > /dev/null; do
error_msg
while pgrep -fx ${EVO_PROCESS} > /dev/null; do
seen=$(($seen + 1))
if [ $seen -lt 4 ];
then
error_msg
fi
if [ $seen = 3 ]; then
end_msg
db_get evolution/kill_processes
if [ "$RET" = "Abort" ];
then
db_stop
echo "Evolution is still running, aborting..."
exit 1
else
# proceed with the upgrade, try to kill any remaining evolution process
# before
echo "Evolution is still running but proceeding with the upgrade..."
pkill -fx ${EVO_PROCESS} > /dev/null
fi
fi
if [ $seen = 4 ]; then
# means we choose to proceed and tried to kill evo process but failed for
# some reason. Try harder, then continue anyway
db_stop
echo "Evolution is still running, aborting..."
exit 1
pkill -9 -fx ${EVO_PROCESS} > /dev/null
return
fi
done

View File

@ -8,3 +8,16 @@ _Description: Running instances of Evolution detected
.
You need to shut down all running instances of Evolution using the
"evolution --force-shutdown" command before the upgrade can proceed.
.
If this command isn't sufficient, you might want to quit all desktop
environments before upgrading.
Template: evolution/kill_processes
Type: select
__Choices: Abort, Kill processes and proceed
_Description: Action for remaining Evolution processes:
Evolution processes are still present on this system, preventing a safe
upgrade.
.
You can either abort the upgrade to work on the situation, or have the
processes killed automatically, with a possible impact on running sessions.

0
debian/patches/.gitignore vendored Normal file
View File

57
debian/po/cs.po vendored
View File

@ -5,12 +5,13 @@
#
msgid ""
msgstr ""
"Project-Id-Version: evolution 2.6.2-2\n"
"Project-Id-Version: evolution 2.30.3-3\n"
"Report-Msgid-Bugs-To: evolution@packages.debian.org\n"
"POT-Creation-Date: 2010-01-02 22:50+0100\n"
"PO-Revision-Date: 2009-06-07 10:33+0200\n"
"POT-Creation-Date: 2010-10-25 21:54+0200\n"
"PO-Revision-Date: 2010-10-18 10:12+0200\n"
"Last-Translator: Martin Sin <martin.sin@zshk.cz>\n"
"Language-Team: Czech <debian-l10n-czech@lists.debian.org>\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -43,3 +44,53 @@ msgid ""
msgstr ""
"Před aktualizací programu Evolution je třeba ukončit všechny spuštěné "
"instance programu pomocí příkazu \"evolution --force-shutdown\"."
#. Type: error
#. Description
#: ../evolution.templates:1001
msgid ""
"If this command isn't sufficient, you might want to quit all desktop "
"environments before upgrading."
msgstr ""
"Někdy nemusí tento příkaz uspět a tak bude třeba nutné se navíc odhlásit z "
"desktopového prostředí ještě před vlastní aktualizací."
#. Type: select
#. Choices
#: ../evolution.templates:2001
msgid "Abort"
msgstr "Zrušit"
#. Type: select
#. Choices
#: ../evolution.templates:2001
msgid "Kill processes and proceed"
msgstr "Ukončit proces a pokračovat"
#. Type: select
#. Description
#: ../evolution.templates:2002
msgid "Action for remaining Evolution processes:"
msgstr "Akce s procesem Evolution:"
#. Type: select
#. Description
#: ../evolution.templates:2002
msgid ""
"Evolution processes are still present on this system, preventing a safe "
"upgrade."
msgstr ""
"Procesy Evolution jsou dále spuštěny a brání jeho bezpečné aktualizaci."
#. Type: select
#. Description
#: ../evolution.templates:2002
msgid ""
"You can either abort the upgrade to work on the situation, or have the "
"processes killed automatically, with a possible impact on running sessions."
msgstr ""
"Aktualizaci můžete buď zrušit a vyřešit situaci ručně, nebo ukončit proces "
"automaticky, což ale může mít vliv na běžící sezení."
#~ msgid "Evolution processes still present on the system."
#~ msgstr "Procesy Evolution jsou nadále spuštěny."

97
debian/po/da.po vendored Normal file
View File

@ -0,0 +1,97 @@
# Danish translation evolution.
# Copyright (C) 2010 evolution & Joe Hansen.
# This file is distributed under the same license as the evolution package.
# Joe Hansen <joedalton2@yahoo.dk>, 2010.
#
msgid ""
msgstr ""
"Project-Id-Version: evolution\n"
"Report-Msgid-Bugs-To: evolution@packages.debian.org\n"
"POT-Creation-Date: 2010-10-17 22:28+0200\n"
"PO-Revision-Date: 2010-10-17 23:30+01:00\n"
"Last-Translator: Joe Hansen <joedalton2@yahoo.dk>\n"
"Language-Team: Danish <debian-l10n-danish@lists.debian.org> \n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. Type: error
#. Description
#: ../evolution.templates:1001
msgid "Running instances of Evolution detected"
msgstr "Kørende instanser af Evolution detekteret"
#. Type: error
#. Description
#: ../evolution.templates:1001
msgid ""
"You are currently upgrading Evolution to a version with an incompatible "
"index format. However, it has been detected that Evolution is currently "
"running. Upgrading it before shutting it down could lead to crashes or to "
"serious data loss in some cases."
msgstr ""
"Du opgraderer aktuelt Evolution til en version med et inkompatibelt "
"indeksformat. Det er dog blevet detekteret, at Evolution aktuelt kører. "
"Opgradering før denne lukkes ned kan i nogle tilfælde medføre nedbrug eller "
"til alvorlige tab af data."
#. Type: error
#. Description
#: ../evolution.templates:1001
msgid ""
"You need to shut down all running instances of Evolution using the "
"\"evolution --force-shutdown\" command before the upgrade can proceed."
msgstr ""
"Du skal lukke alle kørende instanser af Evolution med brug af kommandoen "
"»evolution --force-shutdown«, før opgraderingen kan fortsætte."
#. Type: error
#. Description
#: ../evolution.templates:1001
msgid ""
"If this command isn't sufficient, you might want to quit all desktop "
"environments before upgrading."
msgstr ""
"Hvis denne kommando ikke er tilstrækkelig, skal du måske forlade alle "
"skrivebordsmiljøer før opgraderingen."
#. Type: select
#. Choices
#: ../evolution.templates:2001
msgid "Abort"
msgstr "Afbryd"
#. Type: select
#. Choices
#: ../evolution.templates:2001
msgid "Kill processes and proceed"
msgstr "Dræb processer og fortsæt"
#. Type: select
#. Description
#: ../evolution.templates:2002
msgid "Action for remaining Evolution processes:"
msgstr "Handling for tilbageværende Evolutionprocesser:"
#. Type: select
#. Description
#: ../evolution.templates:2002
msgid ""
"Evolution processes are still present on this system, preventing a safe "
"upgrade."
msgstr ""
"Evolutionprocesser er stadig til stede på dette system, hvilket forhindrer "
"en sikker opgradering."
#. Type: select
#. Description
#: ../evolution.templates:2002
msgid ""
"You can either abort the upgrade to work on the situation, or have the "
"processes killed automatically, with a possible impact on running sessions."
msgstr ""
"Du kan enten beslutte at afbryde opgraderingen for at løse situationen eller "
"lade opgraderingen dræbe processerne og fortsætte med opgraderingen."

58
debian/po/de.po vendored
View File

@ -1,15 +1,16 @@
# Translation of evolution debconf templates to German
# Copyright (C) Helge Kreutzmann <debian@helgefjell.de>, 2009.
# Copyright (C) Helge Kreutzmann <debian@helgefjell.de>, 2009, 2010.
# This file is distributed under the same license as the evolution package.
#
msgid ""
msgstr ""
"Project-Id-Version: evolution 2.26.3-2\n"
"Project-Id-Version: evolution 2.30.3-3\n"
"Report-Msgid-Bugs-To: evolution@packages.debian.org\n"
"POT-Creation-Date: 2009-07-13 08:03+0200\n"
"PO-Revision-Date: 2009-08-26 18:23+0200\n"
"POT-Creation-Date: 2010-10-17 22:28+0200\n"
"PO-Revision-Date: 2010-10-18 15:30+0200\n"
"Last-Translator: Helge Kreutzmann <debian@helgefjell.de>\n"
"Language-Team: de <debian-l10n-german@lists.debian.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -44,3 +45,52 @@ msgstr ""
"Sie müssen alle laufenden Instanzen von Evolution mittels des Befehls "
"»evolution --force-shutdown« beenden, bevor das Upgrade durchgeführt werden "
"kann."
#. Type: error
#. Description
#: ../evolution.templates:1001
msgid ""
"If this command isn't sufficient, you might want to quit all desktop "
"environments before upgrading."
msgstr ""
"Falls dieser Befehl nicht ausreicht, könnte es sinnvoll sein, dass Sie alle "
"Desktop-Umgebungen vor dem Upgrade beenden."
#. Type: select
#. Choices
#: ../evolution.templates:2001
msgid "Abort"
msgstr "Abbruch"
#. Type: select
#. Choices
#: ../evolution.templates:2001
msgid "Kill processes and proceed"
msgstr "Prozesse töten und fortfahren"
#. Type: select
#. Description
#: ../evolution.templates:2002
msgid "Action for remaining Evolution processes:"
msgstr "Aktion für verbleibende Evolution-Prozesse:"
#. Type: select
#. Description
#: ../evolution.templates:2002
msgid ""
"Evolution processes are still present on this system, preventing a safe "
"upgrade."
msgstr ""
"Im System gibt es noch Prozesse von Evolution, wodurch ein sicheres Upgrade "
"verhindert wird."
#. Type: select
#. Description
#: ../evolution.templates:2002
msgid ""
"You can either abort the upgrade to work on the situation, or have the "
"processes killed automatically, with a possible impact on running sessions."
msgstr ""
"Sie können entweder das Upgrade abbrechen, um an der Situation zu arbeiten, "
"oder die Prozesse automatisch töten lassen, wobei das möglicherweise "
"Auswirkungen auf die laufende Sitzung hat."

65
debian/po/es.po vendored
View File

@ -1,10 +1,12 @@
# Evolution po-debconf translation to Spanish.
# Copyright (C) 2009 Software in the Public Interest.
# Copyright (C) 2009 - 2010 Software in the Public Interest.
# This file is distributed under the same license as the Evolution package.
#
# Changes:
# - Initial translation
# Fernando González de Requena <fgrequena@gmail.com>, 2009.
# - Updates
# Omar Campagne <ocampagne@gmail.com>, 2010
#
#
# Traductores, si no conoce el formato PO, merece la pena leer la
@ -33,10 +35,11 @@ msgid ""
msgstr ""
"Project-Id-Version: Evolution 2.26.1.1-1\n"
"Report-Msgid-Bugs-To: evolution@packages.debian.org\n"
"POT-Creation-Date: 2010-01-02 22:50+0100\n"
"PO-Revision-Date: 2009-05-04 17:45+0200\n"
"Last-Translator: Fernando González de Requena <fgrequena@gmail.com>\n"
"POT-Creation-Date: 2010-10-17 22:28+0200\n"
"PO-Revision-Date: 2010-10-17 23:01+0200\n"
"Last-Translator: Omar Campagne <ocampagne@gmail.com>\n"
"Language-Team: Spanish <debian-l10n-spanish@lists.debian.org>\n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -47,7 +50,7 @@ msgstr ""
#. Description
#: ../evolution.templates:1001
msgid "Running instances of Evolution detected"
msgstr "Se ha detectado instancias de Evolution en ejecución"
msgstr "Se han detectado instancias de Evolution en ejecución"
#. Type: error
#. Description
@ -72,3 +75,55 @@ msgid ""
msgstr ""
"Debe cerrar todas las instancias en ejecución de Evolution utilizando la "
"orden «evolution --force-shutdown» antes de proceder con la actualización."
#. Type: error
#. Description
#: ../evolution.templates:1001
msgid ""
"If this command isn't sufficient, you might want to quit all desktop "
"environments before upgrading."
msgstr ""
"Si esta orden no es suficiente, puede que quiera abandonar cualquier entorno "
"de escritorio antes de actualizar."
#. Type: select
#. Choices
#: ../evolution.templates:2001
msgid "Abort"
msgstr "Cancelar"
#. Type: select
#. Choices
#: ../evolution.templates:2001
msgid "Kill processes and proceed"
msgstr "Cancelar los procesos y continuar"
#. Type: select
#. Description
#: ../evolution.templates:2002
msgid "Action for remaining Evolution processes:"
msgstr "Acción para los procesos restantes de Evolution:"
#. Type: select
#. Description
#: ../evolution.templates:2002
msgid ""
"Evolution processes are still present on this system, preventing a safe "
"upgrade."
msgstr ""
"Se ha detectado la presencia de procesos de Evolution en el sistema, "
"evitando una actualización segura."
#. Type: select
#. Description
#: ../evolution.templates:2002
msgid ""
"You can either abort the upgrade to work on the situation, or have the "
"processes killed automatically, with a possible impact on running sessions."
msgstr ""
"Puede decidir cancelar la actualización para salir de esta situación, o "
"que se cancelen los procesos automáticamente, con un posible impacto en "
"la sesión actual."
#~ msgid "Evolution processes still present on the system."
#~ msgstr "Aún quedan procesos de Evolution presentes en el sistema."

60
debian/po/fi.po vendored
View File

@ -1,20 +1,20 @@
# Copyright (C) 2009
# This file is distributed under the same license as the evolution package.
#
# Esko Arajärvi <edu@iki.fi>, 2009.
# Esko Arajärvi <edu@iki.fi>, 2009, 2010.
msgid ""
msgstr ""
"Project-Id-Version: evolution\n"
"Report-Msgid-Bugs-To: evolution@packages.debian.org\n"
"POT-Creation-Date: 2010-01-02 22:50+0100\n"
"PO-Revision-Date: 2009-06-25 21:28+0300\n"
"POT-Creation-Date: 2010-10-17 22:28+0200\n"
"PO-Revision-Date: 2010-10-23 12:59+0300\n"
"Last-Translator: Esko Arajärvi <edu@iki.fi>\n"
"Language-Team: Finnish <debian-l10n-finnish@lists.debian.org>\n"
"Language-Team: debian-10n-finnish@lists.debian.org\n"
"Language: fi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Lokalize 0.3\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Virtaal 0.6.1\n"
#. Type: error
#. Description
@ -45,3 +45,51 @@ msgid ""
msgstr ""
"Kaikki ajossa olevat Evolutionin instanssit pitää sammuttaa komennon "
"”evolution --force-shutdown” avulla ennen kuin päivitystä voidaan jatkaa."
#. Type: error
#. Description
#: ../evolution.templates:1001
msgid ""
"If this command isn't sufficient, you might want to quit all desktop "
"environments before upgrading."
msgstr ""
"Jos tämä komento ei riitä, saatat haluta sulkea kaikki työpöytäymäristöt "
"ennen päivitystä."
#. Type: select
#. Choices
#: ../evolution.templates:2001
msgid "Abort"
msgstr "Keskeytä"
#. Type: select
#. Choices
#: ../evolution.templates:2001
msgid "Kill processes and proceed"
msgstr "Tapa prosessit ja jatka"
#. Type: select
#. Description
#: ../evolution.templates:2002
msgid "Action for remaining Evolution processes:"
msgstr "Toimintatapa aktiivisten Evolution-prosessien kanssa:"
#. Type: select
#. Description
#: ../evolution.templates:2002
msgid ""
"Evolution processes are still present on this system, preventing a safe "
"upgrade."
msgstr ""
"Järjestelmässä on edelleen Evolution-prosesseja, jotka estävät turvallisen "
"päivityksen."
#. Type: select
#. Description
#: ../evolution.templates:2002
msgid ""
"You can either abort the upgrade to work on the situation, or have the "
"processes killed automatically, with a possible impact on running sessions."
msgstr ""
"Voit joko keskeyttää päivityksen korjataksesi tilanteen tai tappaa prosessit "
"automaattisesti. Jälkimmäinen saattaa vaikuttaa nykyisiin istuntoihin."

66
debian/po/fr.po vendored
View File

@ -4,21 +4,25 @@
#
# Translators:
#
# Yoann Ciabaud <y.ciabaud@gmail.com>, 2009
#
# Yoann Ciabaud <y.ciabaud@gmail.com>, 2009.
# Christian Perrier <bubulle@debian.org>, 2010.
msgid ""
msgstr ""
"Project-Id-Version: Evolution\n"
"Report-Msgid-Bugs-To: evolution@packages.debian.org\n"
"POT-Creation-Date: 2010-01-02 22:50+0100\n"
"PO-Revision-Date: 2009-04-07 08:02+0100\n"
"Last-Translator: Yoann Ciabaud <y.ciabaud@gmail.com>\n"
"POT-Creation-Date: 2010-10-17 22:28+0200\n"
"PO-Revision-Date: 2010-10-18 08:20+0200\n"
"Last-Translator: Christian Perrier <bubulle@debian.org>\n"
"Language-Team: French <debian-l10n-french@lists.debian.org>\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-Language: French\n"
"X-Poedit-Country: FRANCE\n"
"X-Generator: Lokalize 1.0\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. Type: error
#. Description
@ -50,3 +54,55 @@ msgid ""
msgstr ""
"Vous devez arrêter toutes les instances actuelles d'Evolution avec la "
"commande « evolution --force-shutdown » avant d'effectuer la mise à jour."
#. Type: error
#. Description
#: ../evolution.templates:1001
msgid ""
"If this command isn't sufficient, you might want to quit all desktop "
"environments before upgrading."
msgstr ""
"Si cette commande ne suffit pas, il peut être nécessaire de fermer tous les "
"environnements graphique de bureau avant d'effectuer la mise à jour."
#. Type: select
#. Choices
#: ../evolution.templates:2001
msgid "Abort"
msgstr "Abandonner"
#. Type: select
#. Choices
#: ../evolution.templates:2001
msgid "Kill processes and proceed"
msgstr "Tuer les processus et continuer"
#. Type: select
#. Description
#: ../evolution.templates:2002
msgid "Action for remaining Evolution processes:"
msgstr "Action à effectuer pour les processus restants d'Evolution :"
#. Type: select
#. Description
#: ../evolution.templates:2002
msgid ""
"Evolution processes are still present on this system, preventing a safe "
"upgrade."
msgstr ""
"Des processus d'Evolution sont toujours actifs sur ce système, ce qui "
"empêche d'effectuer une mise à jour sûre."
#. Type: select
#. Description
#: ../evolution.templates:2002
msgid ""
"You can either abort the upgrade to work on the situation, or have the "
"processes killed automatically, with a possible impact on running sessions."
msgstr ""
"Vous pouvez soit décider d'abandonner la mise à jour pour résoudre ce "
"problème, soit laisser les processus être terminés automatiquement, ce qui "
"peut avoir un impact sur les sessions actuellement ouvertes."
#~ msgid "Evolution processes still present on the system."
#~ msgstr "Processus d'Evolution encore en cours d'exécution"

65
debian/po/it.po vendored
View File

@ -1,16 +1,17 @@
# Italian translation of the evolution debconf templates
# This file is distributed under the same license as the evolution package
# Copyright (C) 2009 Free Software Foundation, Inc.
# Luca Monducci <luca.mo@tiscali.it>, 2009.
# Luca Monducci <luca.mo@tiscali.it>, 2009, 2010.
#
msgid ""
msgstr ""
"Project-Id-Version: evolution 2.26.1.1\n"
"Project-Id-Version: evolution 2.30.3\n"
"Report-Msgid-Bugs-To: evolution@packages.debian.org\n"
"POT-Creation-Date: 2010-01-02 22:50+0100\n"
"PO-Revision-Date: 2009-05-19 21:29+0200\n"
"POT-Creation-Date: 2010-10-17 22:28+0200\n"
"PO-Revision-Date: 2010-10-19 08:39+0200\n"
"Last-Translator: Luca Monducci <luca.mo@tiscali.it>\n"
"Language-Team: Italian <debian-l10n-italian@lists.debian.org>\n"
"Language: it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -32,8 +33,8 @@ msgid ""
msgstr ""
"È in corso l'aggiornamento di Evolution a una versione con un formato degli "
"indici non compatibile con l'attuale. Sono state rilevate delle istanze "
"attive di Evolution, il loro aggiornamento senza chiuderle potrebbe causare "
"dei crash oppure, in qualche caso, anche la perdita di dati."
"attive di Evolution, se non vengono chiuse l'aggiornamento potrebbe causare "
"dei crash e, in qualche caso, anche la perdita di dati."
#. Type: error
#. Description
@ -44,3 +45,55 @@ msgid ""
msgstr ""
"È necessario chiudere tutte le istanze di Evolution attive usando il comando "
"\"evolution --force-shutdown\" prima di procedere con l'aggiornamento."
#. Type: error
#. Description
#: ../evolution.templates:1001
msgid ""
"If this command isn't sufficient, you might want to quit all desktop "
"environments before upgrading."
msgstr ""
"Se questo comando non fosse sufficiente, provare a chiudere tutti gli "
"ambienti desktop prima dell'aggiornamento."
#. Type: select
#. Choices
#: ../evolution.templates:2001
msgid "Abort"
msgstr "Interrompi"
#. Type: select
#. Choices
#: ../evolution.templates:2001
msgid "Kill processes and proceed"
msgstr "Chiudi i processi e continua"
#. Type: select
#. Description
#: ../evolution.templates:2002
msgid "Action for remaining Evolution processes:"
msgstr "Cosa fare con i processi di Evolution rimasti:"
#. Type: select
#. Description
#: ../evolution.templates:2002
msgid ""
"Evolution processes are still present on this system, preventing a safe "
"upgrade."
msgstr ""
"Su questo sistema sono ancora presenti dei processi di Evolution che "
"impediscono un aggiornamento sicuro."
#. Type: select
#. Description
#: ../evolution.templates:2002
msgid ""
"You can either abort the upgrade to work on the situation, or have the "
"processes killed automatically, with a possible impact on running sessions."
msgstr ""
"È possibile interrompere l'aggiornamento oppure risolvere la situazione "
"lasciando che il programma d'aggiornamento chiuda i processi e poi "
"continui con l'aggiornamento."
#~ msgid "Evolution processes still present on the system."
#~ msgstr "I processi di Evolution sono presenti anche nel sistema"

45
debian/po/ja.po vendored
View File

@ -6,10 +6,11 @@ msgid ""
msgstr ""
"Project-Id-Version: evolution 2.26.1.1-2\n"
"Report-Msgid-Bugs-To: evolution@packages.debian.org\n"
"POT-Creation-Date: 2010-01-02 22:50+0100\n"
"POT-Creation-Date: 2010-10-17 22:28+0200\n"
"PO-Revision-Date: 2009-05-09 19:26+0900\n"
"Last-Translator: Hideki Yamane (Debian-JP) <henrich@debian.or.jp>\n"
"Language-Team: Japanese <debian-japanese@lists.debian.org>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -43,3 +44,45 @@ msgid ""
msgstr ""
"アップグレードを続行する前に \"evolution --force-shutdown\" コマンドを使って"
"動作している Evolution のインスタンスを全てシャットダウンする必要があります。"
#. Type: error
#. Description
#: ../evolution.templates:1001
msgid ""
"If this command isn't sufficient, you might want to quit all desktop "
"environments before upgrading."
msgstr ""
#. Type: select
#. Choices
#: ../evolution.templates:2001
msgid "Abort"
msgstr ""
#. Type: select
#. Choices
#: ../evolution.templates:2001
msgid "Kill processes and proceed"
msgstr ""
#. Type: select
#. Description
#: ../evolution.templates:2002
msgid "Action for remaining Evolution processes:"
msgstr ""
#. Type: select
#. Description
#: ../evolution.templates:2002
msgid ""
"Evolution processes are still present on this system, preventing a safe "
"upgrade."
msgstr ""
#. Type: select
#. Description
#: ../evolution.templates:2002
msgid ""
"You can either abort the upgrade to work on the situation, or have the "
"processes killed automatically, with a possible impact on running sessions."
msgstr ""

64
debian/po/pt.po vendored
View File

@ -2,19 +2,21 @@
# Copyright (C) 2009 the evolution's copyright holder
# This file is distributed under the same license as the evolution package.
#
# Américo Monteiro <a_monteiro@netcabo.pt>, 2009.
# Américo Monteiro <a_monteiro@netcabo.pt>, 2009, 2010.
msgid ""
msgstr ""
"Project-Id-Version: evolution 2.24.5-3\n"
"Project-Id-Version: evolution 2.30.3-3\n"
"Report-Msgid-Bugs-To: evolution@packages.debian.org\n"
"POT-Creation-Date: 2010-01-02 22:50+0100\n"
"PO-Revision-Date: 2009-04-08 21:48+0100\n"
"POT-Creation-Date: 2010-10-25 21:54+0200\n"
"PO-Revision-Date: 2010-10-17 22:24+0100\n"
"Last-Translator: Américo Monteiro <a_monteiro@netcabo.pt>\n"
"Language-Team: Portuguese <traduz@debianpt.org>\n"
"Language: pt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.11.4\n"
"X-Generator: Lokalize 1.0\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. Type: error
#. Description
@ -46,3 +48,55 @@ msgstr ""
"Você precisa de terminar todas as instâncias do Evolution em funcionamento "
"usando o comando \"evolution --force-shutdown\" antes que a actualização "
"possa prosseguir."
#. Type: error
#. Description
#: ../evolution.templates:1001
msgid ""
"If this command isn't sufficient, you might want to quit all desktop "
"environments before upgrading."
msgstr ""
"Se este comando não for suficiente, deverá ser melhor abandonar todos os "
"ambientes de trabalho antes de actualizar."
#. Type: select
#. Choices
#: ../evolution.templates:2001
msgid "Abort"
msgstr "Abortar"
#. Type: select
#. Choices
#: ../evolution.templates:2001
msgid "Kill processes and proceed"
msgstr "Matar todos os processos e prosseguir"
#. Type: select
#. Description
#: ../evolution.templates:2002
msgid "Action for remaining Evolution processes:"
msgstr "Acção para os processos do Evolution restantes:"
#. Type: select
#. Description
#: ../evolution.templates:2002
msgid ""
"Evolution processes are still present on this system, preventing a safe "
"upgrade."
msgstr ""
"Ainda há processos do Evolution presentes no sistema, prevenindo uma "
"actualização segura."
#. Type: select
#. Description
#: ../evolution.templates:2002
msgid ""
"You can either abort the upgrade to work on the situation, or have the "
"processes killed automatically, with a possible impact on running sessions."
msgstr ""
"Você pode ou abortar a actualização para trabalhar na situação, ou matar os "
"processos automaticamente, com um possível impacto para as sessões em "
"execução."
#~ msgid "Evolution processes still present on the system."
#~ msgstr "Processos do Evolution ainda presentes no sistema."

47
debian/po/pt_BR.po vendored
View File

@ -7,11 +7,12 @@ msgid ""
msgstr ""
"Project-Id-Version: evolution 2.28.1-1\n"
"Report-Msgid-Bugs-To: evolution@packages.debian.org\n"
"POT-Creation-Date: 2010-01-02 22:46+0100\n"
"POT-Creation-Date: 2010-10-17 22:28+0200\n"
"PO-Revision-Date: 2009-12-15 10:00-0200\n"
"Last-Translator: Fábio Antonio Ferreira <fantonios@gmail.com>\n"
"Language-Team: Brazilian Portuguese <debian-l10n-portuguese@list.debian."
"Language-Team: Brazilian Portuguese <debian-l10n-portuguese@lists.debian."
"org>\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -46,3 +47,45 @@ msgid ""
msgstr ""
"Você precisa desligar todas as instâncias do Evolution em execução usando o "
"comando \"evolution --force-shutdown\" antes da atualização poder prosseguir."
#. Type: error
#. Description
#: ../evolution.templates:1001
msgid ""
"If this command isn't sufficient, you might want to quit all desktop "
"environments before upgrading."
msgstr ""
#. Type: select
#. Choices
#: ../evolution.templates:2001
msgid "Abort"
msgstr ""
#. Type: select
#. Choices
#: ../evolution.templates:2001
msgid "Kill processes and proceed"
msgstr ""
#. Type: select
#. Description
#: ../evolution.templates:2002
msgid "Action for remaining Evolution processes:"
msgstr ""
#. Type: select
#. Description
#: ../evolution.templates:2002
msgid ""
"Evolution processes are still present on this system, preventing a safe "
"upgrade."
msgstr ""
#. Type: select
#. Description
#: ../evolution.templates:2002
msgid ""
"You can either abort the upgrade to work on the situation, or have the "
"processes killed automatically, with a possible impact on running sessions."
msgstr ""

73
debian/po/ru.po vendored
View File

@ -1,22 +1,23 @@
# translation of ru.po to Russian
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# This file is distributed under the same license as the evolution package.
#
# Yuri Kozlov <yuray@komyakino.ru>, 2009.
# Yuri Kozlov <yuray@komyakino.ru>, 2009, 2010.
msgid ""
msgstr ""
"Project-Id-Version: evolution 2.26.1.1-2\n"
"Project-Id-Version: evolution 2.30.3-3\n"
"Report-Msgid-Bugs-To: evolution@packages.debian.org\n"
"POT-Creation-Date: 2010-01-02 22:50+0100\n"
"PO-Revision-Date: 2009-05-10 10:38+0400\n"
"POT-Creation-Date: 2010-10-25 21:54+0200\n"
"PO-Revision-Date: 2010-11-07 23:22+0300\n"
"Last-Translator: Yuri Kozlov <yuray@komyakino.ru>\n"
"Language-Team: Russian <debian-l10n-russian@lists.debian.org>\n"
"Language: ru\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.11.4\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Lokalize 1.0\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#. Type: error
#. Description
@ -46,5 +47,57 @@ msgid ""
"\"evolution --force-shutdown\" command before the upgrade can proceed."
msgstr ""
"Перед тем как процесс обновления сможет продолжиться вам нужно остановить "
"все запущенные экземпляры Evolution выполнив команду \"evolution --force-"
"shutdown\"."
"все запущенные экземпляры Evolution с помощью команды «evolution --force-"
"shutdown»."
#. Type: error
#. Description
#: ../evolution.templates:1001
msgid ""
"If this command isn't sufficient, you might want to quit all desktop "
"environments before upgrading."
msgstr ""
"Если этой команды окажется недостаточно, то перед обновлением, возможно, "
"придётся завершить работу всего окружения рабочего стола."
#. Type: select
#. Choices
#: ../evolution.templates:2001
msgid "Abort"
msgstr "Прервать"
#. Type: select
#. Choices
#: ../evolution.templates:2001
msgid "Kill processes and proceed"
msgstr "Завершить процессы и продолжить"
#. Type: select
#. Description
#: ../evolution.templates:2002
msgid "Action for remaining Evolution processes:"
msgstr "Действие над оставшимися процессами Evolution:"
#. Type: select
#. Description
#: ../evolution.templates:2002
msgid ""
"Evolution processes are still present on this system, preventing a safe "
"upgrade."
msgstr ""
"В системе всё ещё запущены процессы Evolution, из-за этого нельзя выполнить "
"безопасное обновление."
#. Type: select
#. Description
#: ../evolution.templates:2002
msgid ""
"You can either abort the upgrade to work on the situation, or have the "
"processes killed automatically, with a possible impact on running sessions."
msgstr ""
"Вы можете прервать процесс обновления для разрешения ситуации или позволить "
"программе обновления автоматически завершить эти процессы, что, возможно, "
"повлияет на запущенные сеансы."
#~ msgid "Evolution processes still present on the system."
#~ msgstr "В системе всё ещё запущены процессы Evolution."

101
debian/po/sk.po vendored Normal file
View File

@ -0,0 +1,101 @@
# Slovak translations for PACKAGE package
# Slovenské preklady pre balík PACKAGE.
# Copyright (C) 2010 THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# Slavko <linux@slavino.sk>, 2010.
#
msgid ""
msgstr ""
"Project-Id-Version: evolution 2.30.3\n"
"Report-Msgid-Bugs-To: evolution@packages.debian.org\n"
"POT-Creation-Date: 2010-10-25 21:54+0200\n"
"PO-Revision-Date: 2010-10-18 17:03+0200\n"
"Last-Translator: Slavko <linux@slavino.sk>\n"
"Language-Team: Slovak <nomail>\n"
"Language: sk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#. Type: error
#. Description
#: ../evolution.templates:1001
msgid "Running instances of Evolution detected"
msgstr "Zistená spustená iná inštancia Evolution"
#. Type: error
#. Description
#: ../evolution.templates:1001
msgid ""
"You are currently upgrading Evolution to a version with an incompatible "
"index format. However, it has been detected that Evolution is currently "
"running. Upgrading it before shutting it down could lead to crashes or to "
"serious data loss in some cases."
msgstr ""
"Momentálne aktualizujete Evolution na verziu s nekompatibilným formátom "
"indexu, ale bolo zistené, že Evolution je spustené. Jeho aktualizácia pri "
"spustenej inštancii môže mať za následok pád aplikácie alebo, v niektorých "
"prípadoch, vážnu stratu dát."
#. Type: error
#. Description
#: ../evolution.templates:1001
msgid ""
"You need to shut down all running instances of Evolution using the "
"\"evolution --force-shutdown\" command before the upgrade can proceed."
msgstr ""
"Pred vykonaním aktualizácie musíte vypnúť všetky bežiace inštancie Evolution "
"pomocou príkazu \"evolution --force-shutdown\"."
#. Type: error
#. Description
#: ../evolution.templates:1001
msgid ""
"If this command isn't sufficient, you might want to quit all desktop "
"environments before upgrading."
msgstr ""
"Ak tento príkaz nie je postačujúci, môžete pred aktualizáciou opustiť všetky "
"prostredia plochy."
#. Type: select
#. Choices
#: ../evolution.templates:2001
msgid "Abort"
msgstr "Zrušiť"
#. Type: select
#. Choices
#: ../evolution.templates:2001
msgid "Kill processes and proceed"
msgstr "Zabiť procesy a pokračovať"
#. Type: select
#. Description
#: ../evolution.templates:2002
msgid "Action for remaining Evolution processes:"
msgstr "Akcia s pretrvávajúcimi procesmi Evolution:"
#. Type: select
#. Description
#: ../evolution.templates:2002
msgid ""
"Evolution processes are still present on this system, preventing a safe "
"upgrade."
msgstr ""
"Procesy Evolution stále v tomto systéme existujú, čo bráni bezpečnej "
"aktualizácii."
#. Type: select
#. Description
#: ../evolution.templates:2002
msgid ""
"You can either abort the upgrade to work on the situation, or have the "
"processes killed automatically, with a possible impact on running sessions."
msgstr ""
"Môžete sa rozhodnúť zrušiť aktualizáciu (na vyriešenie situácie) alebo "
"nechať automaticky zabiť všetky procesy, s rizikom dopadeu na bežiace "
"relácie."
#~ msgid "Evolution processes still present on the system."
#~ msgstr "V systéme stále existujú procesy Evolution."

66
debian/po/sv.po vendored
View File

@ -1,21 +1,23 @@
# translation of evolution.po to swedish
# Martin Bagge <brother@bsnet.se>, 2009.
# Translation of evolution debconf template to Swedish
# Copyright (C) 2009 Martin Bagge <brother@bsnet.se>
# Copyright (C) 2009, 2010 Martin Bagge <brother@bsnet.se>
# This file is distributed under the same license as the evolution package.
#
# Martin Bagge <brother@bsnet.se>, 2010
msgid ""
msgstr ""
"Project-Id-Version: evolution\n"
"Report-Msgid-Bugs-To: evolution@packages.debian.org\n"
"POT-Creation-Date: 2010-01-02 22:50+0100\n"
"PO-Revision-Date: 2009-04-07 19:38+0100\n"
"POT-Creation-Date: 2010-10-17 22:28+0200\n"
"PO-Revision-Date: 2010-10-19 00:47+0100\n"
"Last-Translator: Martin Bagge <brother@bsnet.se>\n"
"Language-Team: swedish <debian-l10n-swedish@lists.debian.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.11.4\n"
"X-Poedit-Language: swedish\n"
"X-Poedit-Language: Swedish\n"
"X-Poedit-Country: Sweden\n"
#. Type: error
#. Description
@ -46,3 +48,55 @@ msgid ""
msgstr ""
"Du måste stänga ned alla instanser av Evolution som körs, använd \"evolution "
"--force-shutdown\" innan du fortsätter med uppgraderingen."
#. Type: error
#. Description
#: ../evolution.templates:1001
msgid ""
"If this command isn't sufficient, you might want to quit all desktop "
"environments before upgrading."
msgstr ""
"Om detta kommando inte räcker kan det innebära att alla inloggade "
"skrivbordsmiljöer måste stängas ned före uppgradering."
#. Type: select
#. Choices
#: ../evolution.templates:2001
msgid "Abort"
msgstr "Avbryt"
#. Type: select
#. Choices
#: ../evolution.templates:2001
msgid "Kill processes and proceed"
msgstr "Döda processer och fortsätt"
#. Type: select
#. Description
#: ../evolution.templates:2002
msgid "Action for remaining Evolution processes:"
msgstr "Åtgärd för återstående Evolution-processer:"
#. Type: select
#. Description
#: ../evolution.templates:2002
msgid ""
"Evolution processes are still present on this system, preventing a safe "
"upgrade."
msgstr ""
"Det finns fortfarande körande Evolutionprocesser på systemet, det medför att "
"den säker uppgradering inte kan genomföras."
#. Type: select
#. Description
#: ../evolution.templates:2002
msgid ""
"You can either abort the upgrade to work on the situation, or have the "
"processes killed automatically, with a possible impact on running sessions."
msgstr ""
"Antingen kan du avbryta uppgraderingen för att lösa situationen eller låta "
"döda processerna automatiskt, vilket kan leda till problem för de körande "
"processerna."
#~ msgid "Evolution processes still present on the system."
#~ msgstr "Evolutionprocesser körs på systemet"

View File

@ -8,10 +8,11 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: evolution@packages.debian.org\n"
"POT-Creation-Date: 2010-01-02 22:50+0100\n"
"POT-Creation-Date: 2010-10-25 21:54+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
@ -39,3 +40,45 @@ msgid ""
"You need to shut down all running instances of Evolution using the "
"\"evolution --force-shutdown\" command before the upgrade can proceed."
msgstr ""
#. Type: error
#. Description
#: ../evolution.templates:1001
msgid ""
"If this command isn't sufficient, you might want to quit all desktop "
"environments before upgrading."
msgstr ""
#. Type: select
#. Choices
#: ../evolution.templates:2001
msgid "Abort"
msgstr ""
#. Type: select
#. Choices
#: ../evolution.templates:2001
msgid "Kill processes and proceed"
msgstr ""
#. Type: select
#. Description
#: ../evolution.templates:2002
msgid "Action for remaining Evolution processes:"
msgstr ""
#. Type: select
#. Description
#: ../evolution.templates:2002
msgid ""
"Evolution processes are still present on this system, preventing a safe "
"upgrade."
msgstr ""
#. Type: select
#. Description
#: ../evolution.templates:2002
msgid ""
"You can either abort the upgrade to work on the situation, or have the "
"processes killed automatically, with a possible impact on running sessions."
msgstr ""

91
debian/po/zh_CN.po vendored Normal file
View File

@ -0,0 +1,91 @@
# Chinese translations for evolution package
# evolution 软件包的简体中文翻译.
# Copyright (C) 2010 THE evolution'S COPYRIGHT HOLDER
# This file is distributed under the same license as the evolution package.
# Ji ZhengYu <zhengyuji@gmail.com>, 2010.
#
msgid ""
msgstr ""
"Project-Id-Version: evolution\n"
"Report-Msgid-Bugs-To: evolution@packages.debian.org\n"
"POT-Creation-Date: 2010-10-25 21:54+0200\n"
"PO-Revision-Date: 2010-10-19 16:45+0000\n"
"Last-Translator: Ji ZhengYu <zhengyuji@gmail.com>\n"
"Language-Team: Chinese (simplified) <i18n-zh@googlegroups.com>\n"
"Language: zh_CN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. Type: error
#. Description
#: ../evolution.templates:1001
msgid "Running instances of Evolution detected"
msgstr "正在运行检测到的 Evolution 程序"
#. Type: error
#. Description
#: ../evolution.templates:1001
msgid ""
"You are currently upgrading Evolution to a version with an incompatible "
"index format. However, it has been detected that Evolution is currently "
"running. Upgrading it before shutting it down could lead to crashes or to "
"serious data loss in some cases."
msgstr ""
"您当前正在将 Evolution 升级为一个索引格式不兼容的版本。而且,还探测到 "
"Evolution 目前正在运行。若未退出程序就升级,在某些情况下有可能导致程序崩溃或"
"是严重的数据丢失。"
#. Type: error
#. Description
#: ../evolution.templates:1001
msgid ""
"You need to shut down all running instances of Evolution using the "
"\"evolution --force-shutdown\" command before the upgrade can proceed."
msgstr ""
"在开始升级前,您需要使用 \"evolution --force-shutdown\" 命令来关闭所有正在运"
"行的 Evolution 程序。"
#. Type: error
#. Description
#: ../evolution.templates:1001
msgid ""
"If this command isn't sufficient, you might want to quit all desktop "
"environments before upgrading."
msgstr "若此命令效果不明显,您可能需要在升级前退出所有桌面环境。"
#. Type: select
#. Choices
#: ../evolution.templates:2001
msgid "Abort"
msgstr "退出"
#. Type: select
#. Choices
#: ../evolution.templates:2001
msgid "Kill processes and proceed"
msgstr "关闭进程再继续"
#. Type: select
#. Description
#: ../evolution.templates:2002
msgid "Action for remaining Evolution processes:"
msgstr "所遗 Evolution 进程的处理方式:"
#. Type: select
#. Description
#: ../evolution.templates:2002
msgid ""
"Evolution processes are still present on this system, preventing a safe "
"upgrade."
msgstr "Evolution 进程仍在此系统中运行,这阻碍了顺利升级。"
#. Type: select
#. Description
#: ../evolution.templates:2002
msgid ""
"You can either abort the upgrade to work on the situation, or have the "
"processes killed automatically, with a possible impact on running sessions."
msgstr ""
"您可以选择退出升级进程,然后继续工作。或是用可行的方法自动关闭正在运行的会"
"话。"

1
debian/rules vendored
View File

@ -23,6 +23,7 @@ CFLAGS=$(shell dpkg-buildflags --get CFLAGS)
CFLAGS += $(HARDENING_CFLAGS)
LDFLAGS+=-Wl,-z,defs -Wl,-O1 -Wl,--as-needed $(HARDENING_LDFLAGS)
export CFLAGS LDFLAGS
DEB_CONFIGURE_EXTRA_FLAGS += \
--with-openldap \

2
debian/watch vendored
View File

@ -1,2 +1,2 @@
version=3
http://ftp.gnome.org/pub/GNOME/sources/evolution/([\d\.]+[02468])/evolution-([\d\.]+)\.tar\.gz debian uupdate
http://ftp.gnome.org/pub/GNOME/sources/evolution/([\d\.]+[02468])/evolution-([\d\.]+)\.tar\.bz2