diff options
author | Arun Persaud <arun@nubati.net> | 2013-01-14 18:35:59 -0800 |
---|---|---|
committer | Arun Persaud <arun@nubati.net> | 2013-01-14 18:35:59 -0800 |
commit | d170223b2c1d92771a6bb6dcd2eac07bb2ad777c (patch) | |
tree | 2eb3dbed7a3aefb97a81b48123a880314f299949 /digest.php | |
parent | 0336b5b95349ba50004217c385a5f15a5421fece (diff) | |
download | e-DoKo-d170223b2c1d92771a6bb6dcd2eac07bb2ad777c.tar.gz e-DoKo-d170223b2c1d92771a6bb6dcd2eac07bb2ad777c.tar.bz2 e-DoKo-d170223b2c1d92771a6bb6dcd2eac07bb2ad777c.zip |
BUGIFX: added some set_language functions, fixed some strings for translation, fixed typo
Diffstat (limited to 'digest.php')
-rw-r--r-- | digest.php | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -116,14 +116,14 @@ foreach($users as $uid) // add header, footer, sent out $name = DB_get_name('userid',$uid); - $header = "Hello $name\n\nHere is a digest of the latest emails:\n\n"; + $header = _("Hello")." $name\n\n"._("Here is a digest of the latest emails:")."\n\n"; - $footer = "\nHave a nice day\n". - " your E-Doko digester\n\n". + $footer = "\n"._('Have a nice day')."\n". + " ".('your E-Doko digester')."\n\n". "-- \n". - "You can change your mail delivery mode in the preference menu.\n". - 'web: http://doko.nubati.net '. - "help, bugs, etc.: $WIKI"; + _('You can change your mail delivery mode in the preference menu.')."\n". + _('web').': http://doko.nubati.net '. + _('help, bugs, etc.').": $WIKI"; $subject = "$EmailName Digest"; |