diff options
author | Not Zed <NotZed@Ximian.com> | 2004-05-12 11:33:51 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-05-12 11:33:51 +0800 |
commit | 2cf63ca4bace1165d5f0385f4d0dbcce83269775 (patch) | |
tree | 3c68cb544d8d2bc4f813324ed65a12db349cbcb3 /shell/shell-errors.xml | |
parent | c31e31f1fd019ac4297d840761026e64ea6a0adf (diff) | |
download | gsoc2013-evolution-2cf63ca4bace1165d5f0385f4d0dbcce83269775.tar.gz gsoc2013-evolution-2cf63ca4bace1165d5f0385f4d0dbcce83269775.tar.zst gsoc2013-evolution-2cf63ca4bace1165d5f0385f4d0dbcce83269775.zip |
add for translators.
2004-05-12 Not Zed <NotZed@Ximian.com>
* shell-errors.xml.h: add for translators.
2004-05-11 Not Zed <NotZed@Ximian.com>
* shell-errors.xml: Shell errors.
* e-shell.c (e_shell_attempt_upgrade): handle exceptions better.
allow the user to keep going or abort. stop as soon as something
fails. Related to #53083.
(attempt_upgrade): abort and quit if the subcall failed. it will
display an appropriate error box.
(attempt_upgrade): abort if we don't have enough space. #57290.
* Evolution-Component.idl (upgradeFromVersion): remove the return
code, use exceptions to indicate failure.
svn path=/trunk/; revision=25869
Diffstat (limited to 'shell/shell-errors.xml')
-rw-r--r-- | shell/shell-errors.xml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/shell/shell-errors.xml b/shell/shell-errors.xml new file mode 100644 index 0000000000..8d448214b9 --- /dev/null +++ b/shell/shell-errors.xml @@ -0,0 +1,23 @@ +<?xml version="1.0"?> +<error-list domain="shell"> + + <error id="upgrade-nospace" type="error"> + <primary>Insufficient disk space for upgrade.</primary> + <secondary>Upgrading your data and settings will require upto {0} of disk space, but you only have {1} available. + +You will need to make more space available in your home directory before you can continue.</secondary> + <button stock="gtk-quit" response="GTK_RESPONSE_CANCEL"/> + </error> + + <error id="upgrade-failed" type="error"> + <primary>Upgrade from previous version failed: +{0}</primary> + <secondary>{1} + +If you choose to continue, you may not have access to some of your old data. +</secondary> + <button stock="gtk-quit" response="GTK_RESPONSE_CANCEL"/> + <button stock="gtk-ok" _label="Continue" response="GTK_RESPONSE_OK"/> + </error> + +</error-list> |