Changeset 378
- Timestamp:
- 03/28/08 22:43:00 (16 years ago)
- Location:
- plugins/blocNotes
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/blocNotes/_admin.php
r377 r378 26 26 # dashboard 27 27 if (isset($__dashboard_icons) && $core->auth->check('blocNotes',$core->blog->id)) { 28 $__dashboard_icons[] = array(__(' Bloc-notes'),'plugin.php?p=blocNotes','index.php?pf=blocNotes/icon.png');28 $__dashboard_icons[] = array(__('Notebook'),'plugin.php?p=blocNotes','index.php?pf=blocNotes/icon.png'); 29 29 } 30 30 $core->addBehavior('adminDashboardIcons',array('blocNotes','adminDashboardIcons')); … … 36 36 $core->addBehavior('adminPostHeaders',array('blocNotes','adminPostHeaders')); 37 37 38 $_menu['Plugins']->addItem(__(' Bloc-notes'),38 $_menu['Plugins']->addItem(__('Notebook'), 39 39 'plugin.php?p=blocNotes', 40 40 'index.php?pf=blocNotes/icon.png', -
plugins/blocNotes/index.php
r377 r378 45 45 <html> 46 46 <head> 47 <title><?php echo __(' Bloc-notes'); ?></title>47 <title><?php echo __('Notebook'); ?></title> 48 48 <?php echo dcPage::jsPageTabs($default_tab); ?> 49 49 <style type="text/css"> … … 53 53 <body> 54 54 55 <h2><?php echo html::escapeHTML($core->blog->name).' > '.__(' Bloc-notes'); ?></h2>55 <h2><?php echo html::escapeHTML($core->blog->name).' > '.__('Notebook'); ?></h2> 56 56 57 57 <?php -
plugins/blocNotes/lib.blocNotes.php
r377 r378 26 26 public static function adminDashboardIcons(&$core, &$icons) 27 27 { 28 $icons['blocNotes'] = array(__(' Bloc-notes'),'plugin.php?p=blocNotes',28 $icons['blocNotes'] = array(__('Notebook'),'plugin.php?p=blocNotes', 29 29 'index.php?pf=blocNotes/icon.png'); 30 30 } -
plugins/blocNotes/locales/fr/main.lang.php
r377 r378 8 8 # index.php:55 9 9 # lib.blocNotes.php:28 10 $GLOBALS['__l10n'][' Bloc-notes']='Bloc-notes';10 $GLOBALS['__l10n']['Notebook']='Bloc-notes'; 11 11 12 12 # index.php:41
Note: See TracChangeset
for help on using the changeset viewer.