s/${0}/{0}/g
2004-05-27 Jeffrey Stedfast <fejj@novell.com> * mail-composer-errors.xml: s/${0}/{0}/g svn path=/trunk/; revision=26117
This commit is contained in:
committed by
Jeffrey Stedfast
parent
8d42265182
commit
cd26a513df
@ -1,3 +1,7 @@
|
||||
2004-05-27 Jeffrey Stedfast <fejj@novell.com>
|
||||
|
||||
* mail-composer-errors.xml: s/${0}/{0}/g
|
||||
|
||||
2004-05-27 Rodney Dawes <dobey@novell.com>
|
||||
|
||||
* Makefile.am (EXTRA_DIST): Add $(error_i18n)
|
||||
|
||||
@ -1,13 +1,13 @@
|
||||
<?xml version="1.0"?>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<error-list domain="mail-composer">
|
||||
|
||||
<error id="no-attach" type="error" modal="true">
|
||||
<primary>You cannot attach the file `${0}' to this message.</primary>
|
||||
<secondary>${1}</secondary>
|
||||
<primary>You cannot attach the file `{0}' to this message.</primary>
|
||||
<secondary>{1}</secondary>
|
||||
</error>
|
||||
|
||||
<error id="attach-notfile" type="warning">
|
||||
<primary>The file `${0}' is not a regular file and cannot be sent in a message.</primary>
|
||||
<primary>The file `{0}' is not a regular file and cannot be sent in a message.</primary>
|
||||
</error>
|
||||
|
||||
<error id="attach-directory">
|
||||
@ -39,12 +39,12 @@
|
||||
|
||||
<error id="no-build-message" type="error" modal="true">
|
||||
<primary>Could not create message.</primary>
|
||||
<secondary>Because "${0}", you may need to select different mail options.</secondary>
|
||||
<secondary>Because "{0}", you may need to select different mail options.</secondary>
|
||||
</error>
|
||||
|
||||
<error id="no-sig-file" type="warning" modal="true">
|
||||
<primary>Could not read signature file "{0}".</primary>
|
||||
<secondary>Because "${1}".</secondary>
|
||||
<secondary>Because "{1}".</secondary>
|
||||
</error>
|
||||
|
||||
<error id="all-accounts-deleted" type="warning" modal="true">
|
||||
|
||||
@ -1,9 +1,9 @@
|
||||
/* mail-composer:no-attach primary */
|
||||
char *s = N_("You cannot attach the file `${0}' to this message.");
|
||||
char *s = N_("You cannot attach the file `{0}' to this message.");
|
||||
/* mail-composer:no-attach secondary */
|
||||
char *s = N_("${1}");
|
||||
char *s = N_("{1}");
|
||||
/* mail-composer:attach-notfile primary */
|
||||
char *s = N_("The file `${0}' is not a regular file and cannot be sent in a message.");
|
||||
char *s = N_("The file `{0}' is not a regular file and cannot be sent in a message.");
|
||||
/* mail-composer:attach-directory primary */
|
||||
char *s = N_("Directories can not be attached to Messages.");
|
||||
/* mail-composer:attach-directory secondary */
|
||||
@ -31,11 +31,11 @@ char *s = N_("Save Message");
|
||||
/* mail-composer:no-build-message primary */
|
||||
char *s = N_("Could not create message.");
|
||||
/* mail-composer:no-build-message secondary */
|
||||
char *s = N_("Because \"${0}\", you may need to select different mail options.");
|
||||
char *s = N_("Because \"{0}\", you may need to select different mail options.");
|
||||
/* mail-composer:no-sig-file primary */
|
||||
char *s = N_("Could not read signature file \"{0}\".");
|
||||
/* mail-composer:no-sig-file secondary */
|
||||
char *s = N_("Because \"${1}\".");
|
||||
char *s = N_("Because \"{1}\".");
|
||||
/* mail-composer:all-accounts-deleted primary */
|
||||
char *s = N_("All accounts have been removed.");
|
||||
/* mail-composer:all-accounts-deleted secondary */
|
||||
|
||||
Reference in New Issue
Block a user