Ignore:
Timestamp:
May 15, 2008, 12:25:36 AM (16 years ago)
Author:
rub
Message:

Change some PhpWebGallery to Piwigo.
Not all PhpWebGallery has been translated!

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/config_default.inc.php

    r2334 r2339  
    141141$conf['tn_height'] = 128;
    142142
    143 // show_version : shall the version of PhpWebGallery be displayed at the
     143// show_version : shall the version of Piwigo be displayed at the
    144144// bottom of each page ?
    145145$conf['show_version'] = true;
     
    152152//  for each link is associated a label
    153153//  $conf['links'] = array(
    154 //    'http://phpwebgallery.net' => 'PWG website',
     154//    'http://piwigo.org' => 'PWG website',
    155155//    'http://forum.phpwebgallery.net' => 'PWG forum',
    156156//    'http://phpwebgallery.net/doc' => 'PWG wiki'
     
    161161//  you can pass a array with different optional parameter values
    162162//  $conf['links'] = array(
    163 //    'http://phpwebgallery.net' => array('label' => 'PWG website', 'new_window' => false, 'eval_visible' => 'return true;'),
     163//    'http://piwigo.org' => array('label' => 'PWG website', 'new_window' => false, 'eval_visible' => 'return true;'),
    164164//    'http://forum.phpwebgallery.net' => array('label' => 'For ADMIN', 'new_window' => true, 'eval_visible' => 'return is_admin();'),
    165165//    'http://phpwebgallery.net/doc' => array('label' => 'For Guest', 'new_window' => true, 'eval_visible' => 'return is_a_guest();'),
     
    186186// Equivalence:
    187187//  $conf['links'] = array(
    188 //    'http://phpwebgallery.net' => 'PWG website',
     188//    'http://piwigo.org' => 'PWG website',
    189189//    );
    190190//  $conf['links'] = array(
    191 //    'http://phpwebgallery.net' => array('label' => 'PWG website', 'new_window' => false, 'visible' => 'return true;'),
     191//    'http://piwigo.org' => array('label' => 'PWG website', 'new_window' => false, 'visible' => 'return true;'),
    192192//    );
    193193//
     
    224224$conf['display_fromto'] = false;
    225225
    226 // allow_random_representative : do you wish PhpWebGallery to search among
     226// allow_random_representative : do you wish Piwigo to search among
    227227// categories elements a new representative at each reload ?
    228228//
     
    322322$conf['use_iptc'] = false;
    323323
    324 // use_iptc_mapping : in which IPTC fields will PhpWebGallery find image
     324// use_iptc_mapping : in which IPTC fields will Piwigo find image
    325325// information ? This setting is used during metadata synchronisation. It
    326 // associates a phpwebgallery_images column name to a IPTC key
     326// associates a piwigo_images column name to a IPTC key
    327327$conf['use_iptc_mapping'] = array(
    328328  'keywords'        => '2#025',
     
    430430
    431431// users_table: which table is the reference for users? Can be a different
    432 // table than PhpWebGallery table
     432// table than Piwigo table
    433433//
    434434// If you decide to use another table than the default one, you need to
    435435// prepare your database by deleting some datas :
    436436//
    437 // delete from phpwebgallery_user_access;
    438 // delete from phpwebgallery_user_cache;
    439 // delete from phpwebgallery_user_feed;
    440 // delete from phpwebgallery_user_group;
    441 // delete from phpwebgallery_user_infos;
    442 // delete from phpwebgallery_sessions;
    443 // delete from phpwebgallery_rate;
    444 // update phpwebgallery_images set average_rate = NULL;
    445 // delete from phpwebgallery_caddie;
    446 // delete from phpwebgallery_favorites;
     437// delete from piwigo_user_access;
     438// delete from piwigo_user_cache;
     439// delete from piwigo_user_feed;
     440// delete from piwigo_user_group;
     441// delete from piwigo_user_infos;
     442// delete from piwigo_sessions;
     443// delete from piwigo_rate;
     444// update piwigo_images set average_rate = null;
     445// delete from piwigo_caddie;
     446// delete from piwigo_favorites;
    447447//
    448448// All informations contained in these tables and column are related to
    449 // phpwebgallery_users table.
     449// piwigo_users table.
    450450$conf['users_table'] = $prefixeTable.'users';
    451451
Note: See TracChangeset for help on using the changeset viewer.