diff options
author | Juan Pablo Ugarte <juanpablougarte@gmail.com> | 2014-03-28 10:37:22 -0300 |
---|---|---|
committer | Juan Pablo Ugarte <juanpablougarte@gmail.com> | 2014-03-28 10:37:22 -0300 |
commit | 1eb74d1fb59aefab3184319bab0ce993cd26729f (patch) | |
tree | 5448e04142d36ff288885e3fdcb2bc695b9b1643 /src | |
parent | 762a73ff1ca15efb6cc17f75a6ea1debc2ab14af (diff) | |
download | glade-1eb74d1fb59aefab3184319bab0ce993cd26729f.tar.gz |
Added survey email strings, they will not be used directly in glade but
extracted and copied to https://people.gnome.org/~jpu/ to translate emails
sent to the user after the survey is completed.
Diffstat (limited to 'src')
-rw-r--r-- | src/glade-registration.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/glade-registration.c b/src/glade-registration.c index 0845a57a..ce0c94ec 100644 --- a/src/glade-registration.c +++ b/src/glade-registration.c @@ -28,6 +28,16 @@ #define CONFIG_GROUP "User & Survey" +/* translators: Email subject sent to the user after completing the survey */ +#define MAIL_SUBJECT _("Glade User Survey") +/* translators: Email body sent to the user after completing the survey */ +#define MAIL_BODY _("Thank you for taking Glade Users survey, we appreciate it!\n\nTo validate this email address open the folowing link\n\nhttps://people.gnome.org/~jpu/glade/registration.php?email=$email&validation_token=$new_validation_token\n\nIn case you want to change or update the survey, your current update token is:\n$new_token\n\nCheers\n\n The Glade team\n") + +/* translators: Email subject sent to the user after updating the survey */ +#define UPDATE_MAIL_SUBJECT _("Glade User Survey (update)") +/* translators: Email body sent to the user after updating the survey */ +#define UPDATE_MAIL_BODY _("Thank you for updating your Glade Users survey data, we appreciate it!\n\nIn case you want to change something again, your current update token is:\n$new_token\n\nCheers\n\n The Glade team\n") + struct _GladeRegistrationPrivate { GtkWidget *infobar; |