diff options
author | nikrou <nikrou@piwigo.org> | 2010-03-23 22:06:13 +0000 |
---|---|---|
committer | nikrou <nikrou@piwigo.org> | 2010-03-23 22:06:13 +0000 |
commit | c045205e53fe371cef24440aacf8defa621fa941 (patch) | |
tree | d576f6d745727836e998c0976295ebea42de1eaf /themes/default/template | |
parent | feb0d27a510c4d70885624715e6f906dcb1725f7 (diff) |
Fix problem with white space in language keys
git-svn-id: http://piwigo.org/svn/trunk@5297 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | themes/default/template/mail/text/html/notification_by_mail.tpl | 6 | ||||
-rw-r--r-- | themes/default/template/mail/text/plain/notification_by_mail.tpl | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/themes/default/template/mail/text/html/notification_by_mail.tpl b/themes/default/template/mail/text/html/notification_by_mail.tpl index b8ccd8fc7..0c159dd6b 100644 --- a/themes/default/template/mail/text/html/notification_by_mail.tpl +++ b/themes/default/template/mail/text/html/notification_by_mail.tpl @@ -15,10 +15,10 @@ <p>{'You have unsubscribed from receiving notifications by mail.'|@translate}</p> {/if} {if isset($content_new_elements_single)} -<p>{'New elements were added '|@translate} {'on'|@translate} {$content_new_elements_single.DATE_SINGLE}.</p> +<p>{'New elements were added'|@translate} {'on'|@translate} {$content_new_elements_single.DATE_SINGLE}.</p> {/if} {if isset($content_new_elements_between)} -<p>{'New elements were added '|@translate} {'between'|@translate} {$content_new_elements_between.DATE_BETWEEN_1} {'and'|@translate} {$content_new_elements_between.DATE_BETWEEN_2}.</p> +<p>{'New elements were added'|@translate} {'between'|@translate} {$content_new_elements_between.DATE_BETWEEN_1} {'and'|@translate} {$content_new_elements_between.DATE_BETWEEN_2}.</p> {/if} {if not empty($global_new_lines)} @@ -41,7 +41,7 @@ <p> <br><hr> {'To unsubscribe'|@translate}{', click on'|@translate} <a href="{$UNSUBSCRIBE_LINK}">{$UNSUBSCRIBE_LINK}</a><br> -{'To subscribe '|@translate}{', click on'|@translate} <a href="{$SUBSCRIBE_LINK}">{$SUBSCRIBE_LINK}</a><br> +{'To subscribe'|@translate}{', click on'|@translate} <a href="{$SUBSCRIBE_LINK}">{$SUBSCRIBE_LINK}</a><br> {'If you encounter problems or have any question, please send a message to'|@translate} <a href="mailto:{$CONTACT_EMAIL}?subject={'[NBM] Problems or questions'|@translate}">{$CONTACT_EMAIL}</a><br> <hr><br> </p> diff --git a/themes/default/template/mail/text/plain/notification_by_mail.tpl b/themes/default/template/mail/text/plain/notification_by_mail.tpl index a428dce05..f7bafc692 100644 --- a/themes/default/template/mail/text/plain/notification_by_mail.tpl +++ b/themes/default/template/mail/text/plain/notification_by_mail.tpl @@ -13,10 +13,10 @@ {'You have unsubscribed from receiving notifications by mail.'|@translate} {/if} {if isset($content_new_elements_single)} -{'New elements were added '|@translate} {'on'|@translate} {$content_new_elements_single.DATE_SINGLE}. +{'New elements were added'|@translate} {'on'|@translate} {$content_new_elements_single.DATE_SINGLE}. {/if} {if isset($content_new_elements_between)} -{'New elements were added '|@translate} {'between'|@translate} {$content_new_elements_between.DATE_BETWEEN_1} {'and'|@translate} {$content_new_elements_between.DATE_BETWEEN_2}. +{'New elements were added'|@translate} {'between'|@translate} {$content_new_elements_between.DATE_BETWEEN_1} {'and'|@translate} {$content_new_elements_between.DATE_BETWEEN_2}. {/if} {if not empty($global_new_lines)} {foreach from=$global_new_lines item=line} |