Changeset 649


Ignore:
Timestamp:
Dec 20, 2004, 3:52:30 PM (19 years ago)
Author:
gweltas
Message:
  • Minor update of language file
  • Configuration / Default dispaly : maximum height & width
Location:
trunk
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/cat_modify.php

    r646 r649  
    143143 
    144144  'L_EDIT_CONFIRM'=>$lang['editcat_confirm'],
    145   'L_EDIT_NAME'=>$lang['description'],
     145  'L_EDIT_NAME'=>$lang['name'],
    146146  'L_STORAGE'=>$lang['storage'],
    147147  'L_REMOTE_SITE'=>$lang['remote_site'],
    148   'L_EDIT_COMMENT'=>$lang['comment'],
     148  'L_EDIT_COMMENT'=>$lang['description'],
    149149  'L_EDIT_CAT_OPTIONS'=>$lang['cat_options'],
    150150  'L_EDIT_STATUS'=>$lang['conf_access'],
  • trunk/admin/configuration.php

    r602 r649  
    249249        'L_NB_COMMENTS'=>$lang['show_nb_comments'],
    250250        'L_NB_COMMENTS_INFO'=>$lang['conf_show_nb_comments_info'],
     251        'L_MAXWIDTH'=>$lang['maxwidth'],
     252        'L_MAXHEIGHT'=>$lang['maxheight'],
    251253 
    252254        'CONF_LANG_SELECT'=>language_select($conf['default_language'], 'default_language'),
  • trunk/admin/infos_images.php

    r647 r649  
    284284      'L_THUMBNAIL'=>$lang['thumbnail'],
    285285      'L_INFOS_IMG'=>$lang['infoimage_title'],
    286       'L_INFOS_COMMENT'=>$lang['comment'],
     286      'L_INFOS_COMMENT'=>$lang['description'],
    287287      'L_INFOS_ASSOCIATE'=>$lang['infoimage_associate'],
    288288      'L_SUBMIT'=>$lang['submit'],
  • trunk/admin/picture_modify.php

    r646 r649  
    197197  'L_CREATION_DATE'=>$lang['creation_date'],
    198198  'L_KEYWORDS'=>$lang['keywords'],
    199   'L_COMMENT'=>$lang['comment'],
     199  'L_COMMENT'=>$lang['description'],
    200200  'L_CATEGORIES'=>$lang['categories'],
    201201  'L_DISSOCIATE'=>$lang['dissociate'],
  • trunk/install/config.sql

    r602 r649  
    55INSERT INTO phpwebgallery_config (param,value,comment) VALUES ('default_language','en_UK.iso-8859-1','Default gallery language');
    66INSERT INTO phpwebgallery_config (param,value,comment) VALUES ('default_template','default','Default gallery style');
     7INSERT INTO phpwebgallery_config (param,value,comment) VALUES ('default_maxwidth','','maximum width authorized for displaying images');
     8INSERT INTO phpwebgallery_config (param,value,comment) VALUES ('default_maxheight','','maximum height authorized for the displaying images');
    79INSERT INTO phpwebgallery_config (param,value,comment) VALUES ('access','free','access type to your gallery (free|restricted)');
    810INSERT INTO phpwebgallery_config (param,value,comment) VALUES ('nb_comment_page','10','number of comments to display on each page');
  • trunk/language/en_UK.iso-8859-1/common.lang.php

    r646 r649  
    4444$lang['picture'] = 'Picture';
    4545$lang['pictures'] = 'Pictures';
     46$lang['name'] = 'Name';
    4647$lang['no'] = 'No';
    4748$lang['yes'] = 'Yes';
  • trunk/language/fr_FR.iso-8859-1/common.lang.php

    r646 r649  
    4444$lang['picture'] = 'Image';
    4545$lang['pictures'] = 'Images';
     46$lang['name'] = 'Nom';
    4647$lang['no'] = 'Non';
    4748$lang['yes'] = 'Oui';
  • trunk/template/default/admin/configuration.tpl

    r602 r649  
    103103        <input type="radio" class="radio" name="show_nb_comments" value="false" {default.SHOW_COMMENTS_NO} />{L_NO}</td>
    104104  </tr>
     105  <tr>
     106    <td><strong>{default.L_MAXWIDTH}&nbsp;:</strong></td>
     107        <td><input type="text" size="4" maxlength="4" name="default_maxwidth" value="{default.MAXWIDTH}" />
     108        </td>
     109  </tr>
     110        <tr>
     111    <td><strong>{default.L_MAXHEIGHT}&nbsp;:</strong></td>
     112        <td><input type="text" size="4" maxlength="4" name="default_maxheight" value="{default.MAXHEIGHT}" />
     113        </td>
     114  </tr>
    105115<!-- END default -->
    106116<!-- BEGIN upload -->
Note: See TracChangeset for help on using the changeset viewer.