Changeset 1917
- Timestamp:
- Mar 17, 2007, 12:20:57 PM (18 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/functions_mail.inc.php
r1915 r1917 370 370 while ($row = mysql_fetch_array($result)) 371 371 { 372 list($row['template'], $row['theme']) = explode('/', $row['template']); 372 $row['template_theme'] = $row['template']; 373 list($row['template'], $row['theme']) = explode('/', $row['template_theme']); 373 374 $list[] = $row; 374 375 } … … 389 390 AND group_id = '.$group_id.' 390 391 AND language = \''.$elem['language'].'\' 392 AND template = \''.$elem['template_theme'].'\' 391 393 ;'; 392 394 -
trunk/language/en_UK.iso-8859-1/admin.lang.php
r1916 r1917 584 584 $lang['Group'] = 'Group'; 585 585 $lang['[%s] Come to visit the category %s'] = '[%s] Come to visit the category %s'; 586 $lang['Hello,'] = 'Hello,'; 586 587 $lang['See you soon.'] = 'See you soon.'; 587 588 $lang['Come to discover the category:'] = 'Come to discover the category:'; -
trunk/language/fr_FR.iso-8859-1/admin.lang.php
r1916 r1917 583 583 $lang['Group'] = 'Groupe'; 584 584 $lang['[%s] Come to visit the category %s'] = '[%s] Venez visiter la catégorie %s'; 585 $lang['Hello,'] = 'Bonjour,'; 585 586 $lang['See you soon.'] = 'A bientôt.'; 586 587 $lang['Come to discover the category:'] = 'Venez découvrir la catégorie:'; -
trunk/template/yoga/mail/text/html/admin/cat_group_info.tpl
r1916 r1917 2 2 <h2>{lang:Informations}</h2> 3 3 <p>{IMG_URL}</p> 4 <p>{lang: hello}</p>4 <p>{lang:Hello,}</p> 5 5 <p>{lang:Come to discover the category:} <a href="{LINK}">{CAT_NAME}</a></p> 6 6 <p>{CPL_CONTENT}</p> -
trunk/template/yoga/mail/text/plain/admin/cat_group_info.tpl
r1916 r1917 1 {lang: hello}1 {lang:Hello,} 2 2 3 3 {lang:Come to discover the category:} {CAT_NAME}
Note: See TracChangeset
for help on using the changeset viewer.