Ignore:
Timestamp:
Mar 3, 2010, 12:18:21 PM (14 years ago)
Author:
nikrou
Message:

Feature 1451 : fix mispelling and missing translations

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/group_list.php

    r5021 r5036  
    7373  array_push(
    7474    $page['infos'],
    75     sprintf(l10n('group \"%s\" deleted'), $groupname)
     75    sprintf(l10n('group "%s" deleted'), $groupname)
    7676    );
    7777}
     
    8585  if (empty($_POST['groupname']))
    8686  {
    87     array_push($page['errors'], l10n('The name of a group must not contain \" or \' or be empty.'));
     87    array_push($page['errors'], l10n('The name of a group must not contain " or \' or be empty.'));
    8888  }
    8989  if (count($page['errors']) == 0)
     
    114114    array_push(
    115115      $page['infos'],
    116       sprintf(l10n('group \"%s\" added'), $_POST['groupname'])
     116      sprintf(l10n('group "%s" added'), $_POST['groupname'])
    117117      );
    118118  }
     
    142142  array_push(
    143143    $page['infos'],
    144     sprintf(l10n('group \"%s\" updated'), $groupname)
     144    sprintf(l10n('group "%s" updated'), $groupname)
    145145    );
    146146}
Note: See TracChangeset for help on using the changeset viewer.