Dotclear

Changeset 2152


Ignore:
Timestamp:
04/01/10 00:04:32 (14 years ago)
Author:
JcDenis
Message:

enhancePostContent 0.8.1:

  • Fixed some l10n
  • Added option for default list order
Location:
plugins/enhancePostContent
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • plugins/enhancePostContent/_define.php

    r2148 r2152  
    1717     /* Description*/         "Add features to words in post content", 
    1818     /* Author */             "JC Denis", 
    19      /* Version */            '0.8', 
     19     /* Version */            '0.8.1', 
    2020     /* Permissions */        'content' 
    2121); 
  • plugins/enhancePostContent/_install.php

    r2148 r2152  
    5555 
    5656     $s->put('enhancePostContent_active',false,'boolean','Enable enhancePostContent',false,true); 
     57     $s->put('enhancePostContent_list_sortby','epc_key','string','Admin records list field order',false,true); 
     58     $s->put('enhancePostContent_list_order','desc','string','Admin records list order',false,true); 
     59     $s->put('enhancePostContent_list_nb',20,'integer','Admin records list nb per page',false,true); 
    5760     $s->put('enhancePostContent_allowedtplvalues',serialize(libEPC::defaultAllowedTplValues()),'string','List of allowed template values',false,true); 
    5861     $s->put('enhancePostContent_allowedpubpages',serialize(libEPC::defaultAllowedPubPages()),'string','List of allowed template pages',false,true); 
  • plugins/enhancePostContent/index.php

    r2148 r2152  
    1818 
    1919$active = (boolean) $s->enhancePostContent_active; 
     20$list_sortby = (string) $s->enhancePostContent_list_sortby; 
     21$list_order = (string) $s->enhancePostContent_list_order; 
     22$list_nb = (integer) $s->enhancePostContent_list_nb; 
    2023$_filters = libEPC::blogFilters(); 
    2124$allowedtplvalues = libEPC::blogAllowedTplValues(); 
     
    3740} 
    3841 
     42$sortby_combo = array( 
     43     __('Date') => 'epc_upddt', 
     44     __('Key') => 'epc_key', 
     45     __('Value') => 'epc_value', 
     46     __('ID') => 'epc_id' 
     47); 
     48 
     49$order_combo = array( 
     50     __('Descending') => 'desc', 
     51     __('Ascending') => 'asc' 
     52); 
     53 
    3954$records = new epcRecords($core); 
    4055 
     
    5166     { 
    5267          $active = !empty($_POST['active']); 
     68          $list_sortby = in_array($_POST['list_sortby'],$sortby_combo) ? $_POST['list_sortby'] : 'epc_id'; 
     69          $list_order = in_array($_POST['list_order'],$order_combo) ? $_POST['list_order'] : 'desc'; 
     70          $list_nb = isset($_POST['list_nb']) && $_POST['list_nb'] > 0 ? $_POST['list_nb'] : 20; 
    5371 
    5472          $s->setNamespace('enhancePostContent'); 
    5573          $s->put('enhancePostContent_active',$active); 
     74          $s->put('enhancePostContent_list_sortby',$list_sortby); 
     75          $s->put('enhancePostContent_list_order',$list_order); 
     76          $s->put('enhancePostContent_list_nb',$list_nb); 
    5677 
    5778          if ($core->auth->check('admin',$core->blog->id)) 
     
    173194dcPage::jsPageTabs($default_tab); 
    174195 
    175  
    176196# --BEHAVIOR-- enhancePostContentAdminHeader 
    177197$core->callBehavior('enhancePostContentAdminHeader',$core); 
    178  
    179198 
    180199echo ' 
     
    183202__('Enhance post content').'</h2>'; 
    184203 
     204# Filters menu 
    185205echo '<p>'; 
    186  
    187 # Filters menu 
    188206foreach($filters_id as $id => $name) 
    189207{ 
     
    191209} 
    192210echo '</p><hr />'; 
    193  
    194211 
    195212# Filter content 
     
    227244      
    228245     echo ' 
    229      <h2>'.__('Parts to be filtered').'</h2>'; 
     246     <h2>'.__('Contents to be filtered').'</h2>'; 
    230247 
    231248     foreach($allowedtplvalues as $k => $v) 
     
    285302     if ($filter['has_list']) 
    286303     { 
    287       
    288           $sortby_combo = array( 
    289                __('Date') => 'epc_upddt', 
    290                __('Key') => 'epc_key', 
    291                __('Value') => 'epc_value', 
    292                __('ID') => 'epc_id' 
    293           ); 
    294  
    295           $order_combo = array( 
    296                __('Descending') => 'desc', 
    297                __('Ascending') => 'asc' 
    298           ); 
    299  
    300304          $params = array(); 
    301305          $params['epc_filter'] = $name; 
    302306 
    303           $sortby = !empty($_GET['sortby']) ?     $_GET['sortby'] : 'epc_key'; 
    304           $order = !empty($_GET['order']) ?       $_GET['order'] : 'desc'; 
     307          $sortby = !empty($_GET['sortby']) ? $_GET['sortby'] : $list_sortby; 
     308          $order = !empty($_GET['order']) ? $_GET['order'] : $list_order; 
    305309          $page = !empty($_GET['page']) ? (integer) $_GET['page'] : 1; 
    306           $nb_per_page =  30; 
    307310 
    308311          if (!empty($_GET['nb']) && (integer) $_GET['nb'] > 0) { 
    309                if ($nb_per_page != $_GET['nb']) { 
    310                     $show_filters = true; 
    311                } 
    312                $nb_per_page = (integer) $_GET['nb']; 
    313           } 
    314  
    315           $params['limit'] = array((($page-1)*$nb_per_page),$nb_per_page); 
     312               $list_nb = (integer) $_GET['nb']; 
     313          } 
     314 
     315          $params['limit'] = array((($page-1)*$list_nb),$list_nb); 
    316316 
    317317          if ($sortby !== '' && in_array($sortby,$sortby_combo)) { 
    318318               if ($order !== '' && in_array($order,$order_combo)) { 
    319319                    $params['order'] = $sortby.' '.$order; 
    320                } 
    321                 
    322                if ($sortby != 'epc_key' || $order != 'desc') { 
    323                     $show_filters = true; 
    324320               } 
    325321          } 
     
    333329          } 
    334330 
    335           $pager = new pager($page,$counter->f(0),$nb_per_page,10); 
     331          $pager = new pager($page,$counter->f(0),$list_nb,10); 
    336332          $pager->html_prev = __('&#171;prev.'); 
    337333          $pager->html_next = __('next&#187;'); 
     
    341337          '&amp;part='.$default_part. 
    342338          '&amp;tab=record'. 
    343           '&amp;nb='.$nb_per_page. 
     339          '&amp;nb='.$list_nb. 
    344340          '&amp;sortby=%s'. 
    345341          '&amp;order='.($order == 'desc' ? 'asc' : 'desc'). 
     
    443439     form::checkbox(array('active'),'1',$active).' '. 
    444440     __('Enable extension').'</label></p> 
    445      <p class="form-note">'.__('This also actives widget').'</p>'; 
     441     <p class="form-note">'.__('This also actives widget').'</p> 
     442     <h2>'.__('Records lists').'</h2> 
     443     <p class="form-note">'.__('This is the default order of records lists.').'</p> 
     444     <p class="field"><label>'.__('Order by:'). 
     445     form::combo('list_sortby',$sortby_combo,$list_sortby).'</label> </p> 
     446     <p class="field"><label>'.__('Sort:'). 
     447     form::combo('list_order',$order_combo,$list_order).'</label></p> 
     448     <p class="field"><label>'.__('Records per page:'). 
     449     form::field('list_nb',3,3,$list_nb).'</label></p>'; 
    446450 
    447451     if ($core->auth->check('admin',$core->blog->id)) 
  • plugins/enhancePostContent/locales/fr/main.lang.php

    r2148 r2152  
    11<?php 
    22// Language: français  
    3 // Module: enhancePostContent - 0.8 
    4 // Date: 2010-03-31 00:47:07  
     3// Module: enhancePostContent - 0.8.1 
     4// Date: 2010-03-31 21:59:45  
    55// Translated with dcTranslater - 1.3  
    66 
    77#_admin.php:19 
    88#_widgets.php:23 
    9 #index.php:170 
    10 #index.php:183 
     9#index.php:191 
     10#index.php:202 
    1111$GLOBALS['__l10n']['Enhance post content'] = 'Amélioration du contenu'; 
    1212 
     
    8484 
    8585#inc/lib.epc.php:212 
    86 $GLOBALS['__l10n']['Link some words. First term of the list is the term to link and second term the link.'] = 'Ajouter des liens. Le premier terme de la liste est le texte à lier et le seconde terme et l\'adresse de lien.'; 
     86$GLOBALS['__l10n']['Link some words. First term of the list is the term to link and second term the link.'] = 'Ajouter des liens. Le premier terme de la liste est le texte à lier et le seconde terme est l\'adresse de lien.'; 
    8787 
    8888#inc/lib.epc.php:231 
     
    9898$GLOBALS['__l10n']['View this user\'s twitter page'] = 'Voir la page Twitter de cet utilisateur'; 
    9999 
    100 #index.php:208 
    101 #index.php:478 
     100#index.php:44 
     101#index.php:364 
     102$GLOBALS['__l10n']['Key'] = 'Clé'; 
     103 
     104#index.php:225 
     105#index.php:482 
    102106$GLOBALS['__l10n']['Settings'] = 'Paramètres'; 
    103107 
    104 #index.php:218 
     108#index.php:235 
    105109$GLOBALS['__l10n']['Pages to be filtered'] = 'Pages à filtrer'; 
    106110 
    107 #index.php:229 
    108 $GLOBALS['__l10n']['Parts to be filtered'] = 'Parties à filtrer'; 
    109  
    110 #index.php:243 
     111#index.php:246 
     112$GLOBALS['__l10n']['Contents to be filtered'] = 'Contenus à filtrer'; 
     113 
     114#index.php:260 
    111115$GLOBALS['__l10n']['Filtering'] = 'Filtrage'; 
    112116 
    113 #index.php:246 
     117#index.php:263 
    114118$GLOBALS['__l10n']['Case insensitive'] = 'Insensible à la casse'; 
    115119 
    116 #index.php:249 
     120#index.php:266 
    117121$GLOBALS['__l10n']['Also use the plural'] = 'Utiliser également le pluriel'; 
    118122 
    119 #index.php:250 
     123#index.php:267 
    120124$GLOBALS['__l10n']['Limit the number of replacement to:'] = 'Limiter le nombre de remplacement à :'; 
    121125 
    122 #index.php:253 
     126#index.php:270 
    123127$GLOBALS['__l10n']['Leave it blank or set it to 0 for no limit'] = 'Laisser vide ou mettre à 0 pour aucune limite'; 
    124128 
    125 #index.php:260 
     129#index.php:277 
    126130$GLOBALS['__l10n']['Class "%s":'] = 'Class CSS "%s" :'; 
    127131 
    128 #index.php:265 
     132#index.php:282 
    129133$GLOBALS['__l10n']['The inserted HTML tag looks like: %s'] = 'Le code HTML de la balise est le suivant: %s'; 
    130134 
    131 #index.php:266 
     135#index.php:283 
    132136$GLOBALS['__l10n']['Ignore HTML tags:'] = 'Ignorer les balises HTML :'; 
    133137 
    134 #index.php:269 
     138#index.php:286 
    135139$GLOBALS['__l10n']['This is the list of HTML tags where content will be ignored.'] = 'Ceci est la liste des balises HTML dont le contenu sera ignoré.'; 
    136140 
    137 #index.php:270 
     141#index.php:287 
    138142$GLOBALS['__l10n']['Tag "%s" always be ignored.'] = 'Les balises "%s" seront toujours ignorées.'; 
    139143 
    140 #index.php:290 
    141 #index.php:368 
    142 $GLOBALS['__l10n']['Key'] = 'Clé'; 
    143  
    144 #index.php:350 
     144#index.php:346 
    145145$GLOBALS['__l10n']['Records'] = 'Enregistrements'; 
    146146 
    147 #index.php:353 
     147#index.php:349 
    148148$GLOBALS['__l10n']['Record successfully added'] = 'Enregistrement ajouté avec succès'; 
    149149 
     150#index.php:352 
     151$GLOBALS['__l10n']['Records successfully updated'] = 'Enregistrements mis à jour avec succès'; 
     152 
    150153#index.php:356 
    151 $GLOBALS['__l10n']['Records successfully updated'] = 'Enregistrements mis à jour avec succès'; 
    152  
    153 #index.php:360 
    154154$GLOBALS['__l10n']['No record'] = 'Pas d\'enregistrement'; 
    155155 
    156 #index.php:392 
    157 $GLOBALS['__l10n']['In order to remove a record, leave empty its key or value.'] = 'Pour retirer un enregistrement, laiser vide sa clé ou sa valeur.'; 
    158  
    159 #index.php:411 
     156#index.php:388 
     157$GLOBALS['__l10n']['In order to remove a record, leave empty its key or value.'] = 'Pour retirer un enregistrement, laisser vide sa clé ou sa valeur.'; 
     158 
     159#index.php:407 
    160160$GLOBALS['__l10n']['New record'] = 'Nouvel enregistrement'; 
    161161 
    162 #index.php:413 
     162#index.php:409 
    163163$GLOBALS['__l10n']['Key:'] = 'Clé :'; 
    164164 
    165 #index.php:416 
     165#index.php:412 
    166166$GLOBALS['__l10n']['Value:'] = 'Valeur :'; 
    167167 
     168#index.php:430 
     169$GLOBALS['__l10n']['Settings of enhancePostContent'] = 'Paramètres de enhancePostContent'; 
     170 
    168171#index.php:434 
    169 $GLOBALS['__l10n']['Settings of enhancePostContent'] = 'Paramètres de enhancePostContent'; 
    170  
    171 #index.php:438 
    172172$GLOBALS['__l10n']['Configuration successfully saved'] = 'Configuration sauvegardée avec succès'; 
    173173 
    174 #index.php:444 
     174#index.php:440 
    175175$GLOBALS['__l10n']['Enable extension'] = 'Activer l\'extension'; 
    176176 
    177 #index.php:445 
     177#index.php:441 
    178178$GLOBALS['__l10n']['This also actives widget'] = 'Ceci active également le widget'; 
    179179 
    180 #index.php:451 
    181 $GLOBALS['__l10n']['This is a special feature to edit list of allowed template values and public pages where this plugin works.'] = 'Ceci est une option sépciale pour modifier les listes des balises de template et des pages publiques ou le plugin sera actif.'; 
    182  
    183 #index.php:452 
     180#index.php:442 
     181$GLOBALS['__l10n']['Records lists'] = 'Listes des enregistrements'; 
     182 
     183#index.php:443 
     184$GLOBALS['__l10n']['This is the default order of records lists.'] = 'Ceci est l\'ordre de trie par défaut des listes d\'enregistrements.'; 
     185 
     186#index.php:448 
     187$GLOBALS['__l10n']['Records per page:'] = 'Enregistrements par page :'; 
     188 
     189#index.php:455 
     190$GLOBALS['__l10n']['This is a special feature to edit list of allowed template values and public pages where this plugin works.'] = 'Ceci est une option spéciale pour modifier les listes des balises de template et des pages publiques ou le plugin sera actif.'; 
     191 
     192#index.php:456 
    184193$GLOBALS['__l10n']['Allowed DC template values:'] = 'Autoriser les balises de template :'; 
    185194 
    186 #index.php:455 
     195#index.php:459 
    187196$GLOBALS['__l10n']['Use "readable_name1:template_value1;readable_name2:template_value2;" like "entry content:EntryContent;entry excerpt:EntryExcerpt;".'] = 'Utiliser "titre1:valeur_de_template1;titre2:valeur_de_template2;" exemple "entry content:EntreyContent;entry excerpt:EntreyExcerpt;".'; 
    188197 
    189 #index.php:456 
     198#index.php:460 
    190199$GLOBALS['__l10n']['Allowed public pages:'] = 'Autoriser les pages publiques :'; 
    191200 
    192 #index.php:459 
     201#index.php:463 
    193202$GLOBALS['__l10n']['Use "readable_name1:template_page1;readable_name2:template_page2;" like "post page:post.html;home page:home.html;".'] = 'Utiliser "titre1:page_de_template1;titre2:page_de_template2;" comme "post page:post.html;home page:home.html;".'; 
    194203 
  • plugins/enhancePostContent/locales/fr/main.po

    r2148 r2152  
    11# Language: français 
    2 # Module: enhancePostContent - 0.8 
    3 # Date: 2010-03-31 00:47:07 
     2# Module: enhancePostContent - 0.8.1 
     3# Date: 2010-03-31 21:59:45 
    44# Translated with translater 1.3 
    55 
     
    77msgstr "" 
    88"Content-Type: text/plain; charset=UTF-8\n" 
    9 "Project-Id-Version: enhancePostContent 0.8\n" 
     9"Project-Id-Version: enhancePostContent 0.8.1\n" 
    1010"POT-Creation-Date: \n" 
    11 "PO-Revision-Date: 2010-03-31T00:47:07+00:00\n" 
     11"PO-Revision-Date: 2010-03-31T21:59:45+00:00\n" 
    1212"Last-Translator: JC Denis\n" 
    1313"Language-Team: \n" 
     
    1717#: _admin.php:19 
    1818#: _widgets.php:23 
    19 #: index.php:170 
    20 #: index.php:183 
     19#: index.php:191 
     20#: index.php:202 
    2121msgid "Enhance post content" 
    2222msgstr "Amélioration du contenu" 
     
    120120#: inc/lib.epc.php:212 
    121121msgid "Link some words. First term of the list is the term to link and second term the link." 
    122 msgstr "Ajouter des liens. Le premier terme de la liste est le texte à lier et le seconde terme et l'adresse de lien." 
     122msgstr "Ajouter des liens. Le premier terme de la liste est le texte à lier et le seconde terme est l'adresse de lien." 
    123123 
    124124#: inc/lib.epc.php:231 
     
    138138msgstr "Voir la page Twitter de cet utilisateur" 
    139139 
    140 #: index.php:208 
    141 #: index.php:478 
     140#: index.php:44 
     141#: index.php:364 
     142msgid "Key" 
     143msgstr "Clé" 
     144 
     145#: index.php:225 
     146#: index.php:482 
    142147msgid "Settings" 
    143148msgstr "Paramètres" 
    144149 
    145 #: index.php:218 
     150#: index.php:235 
    146151msgid "Pages to be filtered" 
    147152msgstr "Pages à filtrer" 
    148153 
    149 #: index.php:229 
    150 msgid "Parts to be filtered" 
    151 msgstr "Parties à filtrer" 
    152  
    153 #: index.php:243 
     154#: index.php:246 
     155msgid "Contents to be filtered" 
     156msgstr "Contenus à filtrer" 
     157 
     158#: index.php:260 
    154159msgid "Filtering" 
    155160msgstr "Filtrage" 
    156161 
    157 #: index.php:246 
     162#: index.php:263 
    158163msgid "Case insensitive" 
    159164msgstr "Insensible à la casse" 
    160165 
    161 #: index.php:249 
     166#: index.php:266 
    162167msgid "Also use the plural" 
    163168msgstr "Utiliser également le pluriel" 
    164169 
    165 #: index.php:250 
     170#: index.php:267 
    166171msgid "Limit the number of replacement to:" 
    167172msgstr "Limiter le nombre de remplacement à :" 
    168173 
    169 #: index.php:253 
     174#: index.php:270 
    170175msgid "Leave it blank or set it to 0 for no limit" 
    171176msgstr "Laisser vide ou mettre à 0 pour aucune limite" 
    172177 
    173 #: index.php:260 
     178#: index.php:277 
    174179msgid "Class \"%s\":" 
    175180msgstr "Class CSS \"%s\" :" 
    176181 
    177 #: index.php:265 
     182#: index.php:282 
    178183msgid "The inserted HTML tag looks like: %s" 
    179184msgstr "Le code HTML de la balise est le suivant: %s" 
    180185 
    181 #: index.php:266 
     186#: index.php:283 
    182187msgid "Ignore HTML tags:" 
    183188msgstr "Ignorer les balises HTML :" 
    184189 
    185 #: index.php:269 
     190#: index.php:286 
    186191msgid "This is the list of HTML tags where content will be ignored." 
    187192msgstr "Ceci est la liste des balises HTML dont le contenu sera ignoré." 
    188193 
    189 #: index.php:270 
     194#: index.php:287 
    190195msgid "Tag \"%s\" always be ignored." 
    191196msgstr "Les balises \"%s\" seront toujours ignorées." 
    192197 
    193 #: index.php:290 
    194 #: index.php:368 
    195 msgid "Key" 
    196 msgstr "Clé" 
    197  
    198 #: index.php:350 
     198#: index.php:346 
    199199msgid "Records" 
    200200msgstr "Enregistrements" 
    201201 
    202 #: index.php:353 
     202#: index.php:349 
    203203msgid "Record successfully added" 
    204204msgstr "Enregistrement ajouté avec succès" 
    205205 
    206 #: index.php:356 
     206#: index.php:352 
    207207msgid "Records successfully updated" 
    208208msgstr "Enregistrements mis à jour avec succès" 
    209209 
    210 #: index.php:360 
     210#: index.php:356 
    211211msgid "No record" 
    212212msgstr "Pas d'enregistrement" 
    213213 
    214 #: index.php:392 
     214#: index.php:388 
    215215msgid "In order to remove a record, leave empty its key or value." 
    216 msgstr "Pour retirer un enregistrement, laiser vide sa clé ou sa valeur." 
    217  
    218 #: index.php:411 
     216msgstr "Pour retirer un enregistrement, laisser vide sa clé ou sa valeur." 
     217 
     218#: index.php:407 
    219219msgid "New record" 
    220220msgstr "Nouvel enregistrement" 
    221221 
    222 #: index.php:413 
     222#: index.php:409 
    223223msgid "Key:" 
    224224msgstr "Clé :" 
    225225 
    226 #: index.php:416 
     226#: index.php:412 
    227227msgid "Value:" 
    228228msgstr "Valeur :" 
    229229 
    230 #: index.php:434 
     230#: index.php:430 
    231231msgid "Settings of enhancePostContent" 
    232232msgstr "Paramètres de enhancePostContent" 
    233233 
    234 #: index.php:438 
     234#: index.php:434 
    235235msgid "Configuration successfully saved" 
    236236msgstr "Configuration sauvegardée avec succès" 
    237237 
    238 #: index.php:444 
     238#: index.php:440 
    239239msgid "Enable extension" 
    240240msgstr "Activer l'extension" 
    241241 
    242 #: index.php:445 
     242#: index.php:441 
    243243msgid "This also actives widget" 
    244244msgstr "Ceci active également le widget" 
    245245 
    246 #: index.php:451 
     246#: index.php:442 
     247msgid "Records lists" 
     248msgstr "Listes des enregistrements" 
     249 
     250#: index.php:443 
     251msgid "This is the default order of records lists." 
     252msgstr "Ceci est l'ordre de trie par défaut des listes d'enregistrements." 
     253 
     254#: index.php:448 
     255msgid "Records per page:" 
     256msgstr "Enregistrements par page :" 
     257 
     258#: index.php:455 
    247259msgid "This is a special feature to edit list of allowed template values and public pages where this plugin works." 
    248 msgstr "Ceci est une option sépciale pour modifier les listes des balises de template et des pages publiques ou le plugin sera actif." 
    249  
    250 #: index.php:452 
     260msgstr "Ceci est une option sciale pour modifier les listes des balises de template et des pages publiques ou le plugin sera actif." 
     261 
     262#: index.php:456 
    251263msgid "Allowed DC template values:" 
    252264msgstr "Autoriser les balises de template :" 
    253265 
    254 #: index.php:455 
     266#: index.php:459 
    255267msgid "Use \"readable_name1:template_value1;readable_name2:template_value2;\" like \"entry content:EntryContent;entry excerpt:EntryExcerpt;\"." 
    256268msgstr "Utiliser \"titre1:valeur_de_template1;titre2:valeur_de_template2;\" exemple \"entry content:EntreyContent;entry excerpt:EntreyExcerpt;\"." 
    257269 
    258 #: index.php:456 
     270#: index.php:460 
    259271msgid "Allowed public pages:" 
    260272msgstr "Autoriser les pages publiques :" 
    261273 
    262 #: index.php:459 
     274#: index.php:463 
    263275msgid "Use \"readable_name1:template_page1;readable_name2:template_page2;\" like \"post page:post.html;home page:home.html;\"." 
    264276msgstr "Utiliser \"titre1:page_de_template1;titre2:page_de_template2;\" comme \"post page:post.html;home page:home.html;\"." 
  • plugins/enhancePostContent/release.txt

    r2148 r2152  
    11x.x xxxxxxxx 
    22 * Not added priority on filters 
     3 
     40.8.1 20100331 
     5 * Fixed some l10n 
     6 * Added option for default list order 
    37 
    480.8 20100331 
Note: See TracChangeset for help on using the changeset viewer.

Sites map