diff options
author | Michael Zucci <zucchi@src.gnome.org> | 2004-04-16 17:57:07 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-04-16 17:57:07 +0800 |
commit | 5de7b60f7a19aad8186db52d82db3fe5e11e79d2 (patch) | |
tree | be23bc07c50d02be9086b746024a8790dfa9bd97 /filter | |
parent | f53eadffe11cd3bd9e05414e1484e5e648ced8b1 (diff) | |
download | gsoc2013-evolution-5de7b60f7a19aad8186db52d82db3fe5e11e79d2.tar.gz gsoc2013-evolution-5de7b60f7a19aad8186db52d82db3fe5e11e79d2.tar.zst gsoc2013-evolution-5de7b60f7a19aad8186db52d82db3fe5e11e79d2.zip |
Work in progress, HIG'ing and de-coupling of errors.
svn path=/trunk/; revision=25493
Diffstat (limited to 'filter')
-rw-r--r-- | filter/filter-errors.xml.in | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/filter/filter-errors.xml.in b/filter/filter-errors.xml.in new file mode 100644 index 0000000000..97bbd9c8fb --- /dev/null +++ b/filter/filter-errors.xml.in @@ -0,0 +1,51 @@ +<?xml version="1.0" encoding="UTF-8"?> +<error-list domain="filter"> + + <error id="no-date" type="error"> + <_primary>Missing date.</_primary> + <_secondary>You must choose a date.</_secondary> + </error> + + <error id="no-file" type="error"> + <_primary>Missing file name.</_primary> + <_secondary>You must specify a file name.</_secondary> + </error> + + <error id="bad-file" type="error"> + <_primary>File "{0}" does not exist or is not a regular file.</_primary> + <_secondary>You must specify a file name.</_secondary> + </error> + + <error id="no-folder" type="error"> + <_primary>Missing folder.</_primary> + <_secondary>You must specify a folder.</_secondary> + </error> + + <error id="bad-regexp" type="error"> + <_primary>Bad regular expression "{0}".</_primary> + <_secondary>Could not compile regular expression "{1}".</_secondary> + </error> + + <error id="no-name" type="error"> + <_primary>Missing name.</_primary> + <_secondary>You must name this filter.</_secondary> + </error> + + <error id="no-name-vfolder" type="error"> + <_primary>Missing name.</_primary> + <_secondary>You must name this vFolder.</_secondary> + </error> + + <error id="bad-name-notunique" type="error"> + <_primary>Name "{0}" already used.</_primary> + <_secondary>Please choose another name.</_secondary> + </error> + + <error id="vfolder-no-source" type="error"> + <_primary>No sources selected.</_primary> + <_secondary>You must specify at least one folder as a source. +Either by selecting the folders individually, and/or by selecting +all local folders, all remote folders, or both.</_secondary> + </error> + +</error-list>
\ No newline at end of file |