diff options
author | Not Zed <NotZed@Ximian.com> | 2004-12-22 15:40:57 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-12-22 15:40:57 +0800 |
commit | 27cf683b42c01bb4b6cdf56bb1d2bd2d8d14131b (patch) | |
tree | 7eb4c57a484297d824837e2a33b6e2b2e586d128 | |
parent | da10c48009573371ec19e12da0ffe95344bd02a0 (diff) | |
download | gsoc2013-evolution-27cf683b42c01bb4b6cdf56bb1d2bd2d8d14131b.tar.gz gsoc2013-evolution-27cf683b42c01bb4b6cdf56bb1d2bd2d8d14131b.tar.zst gsoc2013-evolution-27cf683b42c01bb4b6cdf56bb1d2bd2d8d14131b.zip |
add translation stuff.
2004-12-17 Not Zed <NotZed@Ximian.com>
* devel-docs/misc/errors.txt (BUILT_SOURCES): add translation stuff.
svn path=/trunk/; revision=28181
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | devel-docs/misc/errors.txt | 5 |
2 files changed, 13 insertions, 1 deletions
@@ -1,3 +1,12 @@ +2004-12-17 Not Zed <NotZed@Ximian.com> + + * devel-docs/misc/errors.txt (BUILT_SOURCES): add translation stuff. + +2004-12-16 Not Zed <NotZed@Ximian.com> + + * Makefile.am, configure.in: added evolution-plugin.pc, pkg-config + file required for plugin development. + 2004-12-20 JP Rosevear <jpr@novell.com> * configure.in: bump version, requires diff --git a/devel-docs/misc/errors.txt b/devel-docs/misc/errors.txt index 8a2206158e..df622b6967 100644 --- a/devel-docs/misc/errors.txt +++ b/devel-docs/misc/errors.txt @@ -131,7 +131,7 @@ Error template format The XML file is in the following format. <?xml version="1.0"?> -<error-list domain="ERRORDOMAIN"> +<error-list domain="ERRORDOMAIN" translation-domain="translation domain" translation-localedir="localedir"> <error id="error-id" type="info|warning|question|error"? response="default_response"? modal="true"? > <title>Window Title</title>? <primary>Primary error text.</primary>? @@ -140,6 +140,9 @@ The XML file is in the following format. </error> </error-list> +translation-domain and translation-localedir are used to specify a custom +translation domain for this error file, and where to find it. + response_id is a standard GTK_RESPONSE_* GtkDialog response enumeration. |