Darathor
Citation :
Fix : Corrige dans le plugin Democracy certains appels aux fonctions de localisation qui étaient mal effectués.
Auteur : Darathor (darathor@free.fr)
Version : 1.0 (21/03/2008)
Compatibilité : Democracy 2.0.1
Dans "democracy.php" (inclusion du fichier de localisation) :
Code :
#
# Trouver
#
if (!function_exists('add_action'))
{
$ajax = true;
require_once("../../../wp-config.php");
}
#
# Ajouter après
#
load_plugin_textdomain('democracy', 'wp-content/plugins/democracy');
Dans "admin.php" (correction des appels erronés aux localisations) :
Code :
#
# Trouver
#
_e('To change this, go to the <a href="profile.php?page=role-manager/role-manager.php">Role Manager admin panel</a>. It is listed as "Democracy Admin"');
#
# Remplacer par
#
_e('To change this, go to the <a href="profile.php?page=role-manager/role-manager.php">Role Manager admin panel</a>. It is listed as "Democracy Admin"', 'democracy');
#
# Trouver
#
$total = "So far, {$total}";
#
# Remplacer par
#
$total = sprintf(__('So far, %s', 'democracy'), $total);
Dans "class.php" :
Code :
#
# Trouver
#
$output .= "\n\t\t<em class='dem-total-votes'>".__('Started: ').date(get_settings('date_format'), $this->added).'</em>';
#
# remplacer par
#
$output .= "\n\t\t<em class='dem-total-votes'>".__('Started: ', 'democracy').mysql2date(get_settings('date_format'), date('Y-m-d\TH:i:s', $this->added)).'</em>';
#
# Trouver
#
$output .= "\n\t\t<small class='dem-user-added'>".__('<sup>1</sup> = Added by a guest').'</small>';
#
# Remplacer par
#
$output .= "\n\t\t<small class='dem-user-added'>".__('<sup>1</sup> = Added by a guest', 'democracy').'</small>';
Citation :
Traduction : Traduction française du plugin.
Auteur : Mya (arkania@free.fr)
Version : 1.0 (21/03/2008)
Compatibilité Wordpress : 2.3.3
Téléchargement de la version française et du fichier .pot