Changeset 5207 for trunk/admin


Ignore:
Timestamp:
Mar 20, 2010, 11:35:39 PM (14 years ago)
Author:
nikrou
Message:

Fix some language keys problems
Need translations !

Location:
trunk/admin
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/cat_modify.php

    r5196 r5207  
    517517    $page['infos'],
    518518    sprintf(
    519       l10n('An information email was sent to group \"%s\"'),
     519      l10n('An information email was sent to group "%s"'),
    520520      $group_name
    521521      )
  • trunk/admin/include/c13y_internal.class.php

    r5196 r5207  
    209209            create_user_infos($id);
    210210
    211             $page['infos'][] = sprintf(l10n('User \"%s\" created with \"%s\" like password'), $name, $password);
     211            $page['infos'][] = sprintf(l10n('User "%s" created with "%s" like password'), $name, $password);
    212212
    213213            $result = true;
     
    240240              $updates);
    241241
    242             $page['infos'][] = sprintf(l10n('Status of user \"%s\" updated'), get_username($id));
     242            $page['infos'][] = sprintf(l10n('Status of user "%s" updated'), get_username($id));
    243243
    244244            $result = true;
  • trunk/admin/include/functions_permalinks.php

    r5196 r5207  
    141141      or preg_match( '#^(\d)+(-.*)?$#', $permalink) )
    142142  {
    143     $page['errors'][] = l10n('The permalink name must be composed of a-z, A-Z, 0-9, \"-\", \"_\" or \"/\". It must not be numeric or start with number followed by \"-\"');
     143    $page['errors'][] = l10n('The permalink name must be composed of a-z, A-Z, 0-9, "-", "_" or "/". It must not be numeric or start with number followed by "-"');
    144144    return false;
    145145  }
  • trunk/admin/site_update.php

    r5196 r5207  
    5757  'PWG-UPDATE-1' => array(
    5858    l10n('wrong filename'),
    59     l10n('The name of directories and files must be composed of letters, numbers, \"-\", \"_\" or \".\"')
     59    l10n('The name of directories and files must be composed of letters, numbers, "-", "_" or "."')
    6060    ),
    6161  'PWG-UPDATE-2' => array(
    6262    l10n('missing thumbnail'),
    63     l10n('a picture filetype requires a thumbnail. The thumbnail must be present in the sub-directory \"thumbnail\" of the category directory. The thumbnail filename must start with the configured thumbnail prefix and the extension must be among the following list :').implode(',', $conf['picture_ext'])
     63    l10n('a picture filetype requires a thumbnail. The thumbnail must be present in the sub-directory "thumbnail" of the category directory. The thumbnail filename must start with the configured thumbnail prefix and the extension must be among the following list :').implode(',', $conf['picture_ext'])
    6464    ),
    6565  'PWG-ERROR-NO-FS' => array(
     
    7373  'PWG-ERROR-NOLISTING' => array(
    7474    l10n('listing.xml file was not found'),
    75     l10n('listing.xml file was not found on the remote site. This file is generated by choosing the \"generate listing\" command in the Site manager')
     75    l10n('listing.xml file was not found on the remote site. This file is generated by choosing the "generate listing" command in the Site manager')
    7676    )
    7777  );
  • trunk/admin/themes/default/template/permalinks.tpl

    r5123 r5207  
    6161                <td>{$permalink.last_hit}</td>
    6262                <td>{$permalink.hit}</td>
    63                 <td><a href="{$permalink.U_DELETE}" {$TAG_INPUT_ENABLED}><img src="{$ROOT_URL}{$themeconf.admin_icon_dir}/Delete.png" alt="[{'Delete'|@translate}]" class="button"></a></td>
     63                <td><a href="{$permalink.U_DELETE}" {$TAG_INPUT_ENABLED}><img src="{$ROOT_URL}{$themeconf.admin_icon_dir}/delete.png" alt="[{'Delete'|@translate}]" class="button"></a></td>
    6464        </tr>
    6565{/foreach}
  • trunk/admin/themes/default/template/rating.tpl

    r5123 r5207  
    5959    <td><b>{$rate.USER}</b></td>
    6060    <td><span class="date">{$rate.DATE}</span></td>
    61     <td><a href="{$rate.U_DELETE}" {$TAG_INPUT_ENABLED}><img src="{$themeconf.admin_icon_dir}/Delete.png" class="button" style="border:none;vertical-align:middle; margin-left:5px;" alt="[{'Delete'|@translate}]"></a></td>
     61    <td><a href="{$rate.U_DELETE}" {$TAG_INPUT_ENABLED}><img src="{$themeconf.admin_icon_dir}/delete.png" class="button" style="border:none;vertical-align:middle; margin-left:5px;" alt="[{'Delete'|@translate}]"></a></td>
    6262</tr>
    6363{/foreach} {*rates*}
Note: See TracChangeset for help on using the changeset viewer.