Ignore:
Timestamp:
Oct 19, 2013, 1:04:11 PM (11 years ago)
Author:
mistic100
Message:

feature 2978: remove useless sprintf in the core

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/themes_installed.php

    r23259 r25005  
    122122      $tpl_theme['ACTIVABLE'] = false;
    123123
    124       $tpl_theme['ACTIVABLE_TOOLTIP'] = sprintf(
    125         l10n('Impossible to activate this theme, the parent theme is missing: %s'),
     124      $tpl_theme['ACTIVABLE_TOOLTIP'] = l10n(
     125        'Impossible to activate this theme, the parent theme is missing: %s',
    126126        $missing_parent
    127127        );
     
    137137      $tpl_theme['DELETABLE'] = false;
    138138
    139       $tpl_theme['DELETE_TOOLTIP'] = sprintf(
    140         l10n('Impossible to delete this theme. Other themes depends on it: %s'),
     139      $tpl_theme['DELETE_TOOLTIP'] = l10n(
     140        'Impossible to delete this theme. Other themes depends on it: %s',
    141141        implode(', ', $children)
    142142        );
Note: See TracChangeset for help on using the changeset viewer.