Index: user_status.module =================================================================== RCS file: /cvs/drupal/contributions/modules/user_status/user_status.module,v retrieving revision 1.9.2.3 diff -u -r1.9.2.3 user_status.module --- user_status.module 30 Mar 2007 20:09:50 -0000 1.9.2.3 +++ user_status.module 3 Jul 2007 23:26:06 -0000 @@ -60,7 +60,7 @@ * @return string */ function user_status_activated_subject() { - return '%username account approved'; + return t('%username account approved'); } /** @@ -69,7 +69,7 @@ * @return string */ function user_status_activated_body() { - return "Hello %username,\n\nYour account at %site has been activated.\n\nYou may now log in by clicking on this link or copying and pasting it in your browser:\n\n%login_url\n\nThis is a one-time login, so it can be used only once.\n\nAfter logging in, you will be redirected to %edit_uri so you can change your password.\n\nOnce you have set your own password, you will be able to log in to %login_uri in the future using the following username:\n\nusername: %username\n"; + return t("Hello %username,\n\nYour account at %site has been activated.\n\nYou may now log in by clicking on this link or copying and pasting it in your browser:\n\n%login_url\n\nThis is a one-time login, so it can be used only once.\n\nAfter logging in, you will be redirected to %edit_uri so you can change your password.\n\nOnce you have set your own password, you will be able to log in to %login_uri in the future using the following username:\n\nusername: %username\n"); } /** @@ -78,7 +78,7 @@ * @return string */ function user_status_blocked_subject() { - return '%username account blocked'; + return t('%username account blocked'); } /** @@ -87,7 +87,7 @@ * @return string */ function user_status_blocked_body() { - return "Hello %username,\n\nYour account on %site has been blocked."; + return t("Hello %username,\n\nYour account on %site has been blocked."); } /** @@ -96,7 +96,7 @@ * @return string */ function user_status_deleted_subject() { - return '%username account deleted'; + return t('%username account deleted'); } /** @@ -105,7 +105,7 @@ * @return string */ function user_status_deleted_body() { - return "Hello %username,\n\nYour account on %site has been deleted."; + return t("Hello %username,\n\nYour account on %site has been deleted."); } /**