Changeset 15 for trunk/inc_dntp
- Timestamp:
- 08/09/05 22:30:14 (6 years ago)
- Location:
- trunk/inc_dntp
- Files:
-
- 4 modified
-
history.inc.php (modified) (1 diff)
-
language.inc.php (modified) (1 diff)
-
my.inc.php (modified) (4 diffs)
-
translate.inc.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/inc_dntp/history.inc.php
r1 r15 54 54 unset($day); unset($last_day); 55 55 56 $ smarty->assign('msgid', $msgid);57 $ smarty->assign('historic', $historic);56 $_SMARTY['msgid'] = $msgid; 57 $_SMARTY['historic'] = $historic; 58 58 ?> -
trunk/inc_dntp/language.inc.php
r1 r15 34 34 $stats['to_complet'] = $stats['nb_msgstr']*100/$stats['nb_msgid']; 35 35 36 $ smarty->assign('admin_login', $admin_login);37 $ smarty->assign('translators', $translators);38 $ smarty->assign('verificators', $verificators);39 $ smarty->assign('stats', $stats);36 $_SMARTY['admin_login'] = $admin_login; 37 $_SMARTY['translators'] = $translators; 38 $_SMARTY['verificators'] = $verificators; 39 $_SMARTY['stats'] = $stats; 40 40 41 41 -
trunk/inc_dntp/my.inc.php
r1 r15 46 46 } 47 47 unset($day); unset($last_day); 48 $ smarty->assign('waiting_entries', $waiting_entries);48 $_SMARTY['waiting_entries'] = $waiting_entries; 49 49 50 50 $nb_msgid = $db->getOne('SELECT COUNT(id) FROM dntp_msgid WHERE status=?', array('ok')); … … 56 56 $avancement[$c_lang] = array('msgid' => $nb_msgid, 'msgstr' => $nb_msgstr, 'score' => $nb_msgstr*100/$nb_msgid); 57 57 } 58 $ smarty->assign('nb_msgid', $nb_msgid);59 $ smarty->assign('avancement', $avancement);58 $_SMARTY['nb_msgid'] = $nb_msgid; 59 $_SMARTY['avancement'] = $avancement; 60 60 break; 61 61 … … 67 67 $avancement[$c_lang] = array('msgid' => $nb_msgid, 'msgstr' => $nb_msgstr, 'score' => $nb_msgstr*100/$nb_msgid); 68 68 69 $ smarty->assign('nb_msgid', $nb_msgid);70 $ smarty->assign('avancement', $avancement);69 $_SMARTY['nb_msgid'] = $nb_msgid; 70 $_SMARTY['avancement'] = $avancement; 71 71 72 72 … … 141 141 142 142 unset($day); unset($last_day); 143 $ smarty->assign('last_modifs', $last_modifs);144 $ smarty->assign('new_entries', $new_entries);143 $_SMARTY['last_modifs'] = $last_modifs; 144 $_SMARTY['new_entries'] = $new_entries; 145 145 break; 146 146 } -
trunk/inc_dntp/translate.inc.php
r1 r15 37 37 38 38 39 $ smarty->assign('msgid', $msgid);40 $ smarty->assign('msgstr', $msgstr);39 $_SMARTY['msgid'] = $msgid; 40 $_SMARTY['msgstr'] = $msgstr; 41 41 ?>
