2004-05-12 Not Zed <NotZed@Ximian.com> * e-system-errors.xml: make the Because cases the same. * e-system-errors.xml.h: add for translators. * e-error.c (ee_load): just use _() to do i18n rather than the nasty lang stuff. (find_node): no longer needed. * Makefile.am (%.xml.h): setup the build rules for the i18n file for the errors. * e-system-errors.xml.in: Removed, renamed to .xml and removed the _ stuff. svn path=/trunk/; revision=25871
16 lines
595 B
C
16 lines
595 B
C
/* system:ask-save-file-exists-overwrite title */
|
|
char *s = N_("Overwrite file?");
|
|
/* system:ask-save-file-exists-overwrite primary */
|
|
char *s = N_("File exists \"{0}\".");
|
|
/* system:ask-save-file-exists-overwrite secondary */
|
|
char *s = N_("Do you wish to overwrite it?");
|
|
char *s = N_("_Overwrite");
|
|
/* system:no-save-file primary */
|
|
char *s = N_("Cannot save file \"{0}\".");
|
|
/* system:no-save-file secondary */
|
|
char *s = N_("Because \"{1}\".");
|
|
/* system:no-load-file primary */
|
|
char *s = N_("Cannot open file \"{0}\".");
|
|
/* system:no-load-file secondary */
|
|
char *s = N_("Because \"{1}\".");
|