Pour modifier le language sur (mod_hot_weather) module gratuit!
Installer les fichiers langues désirés
( Partir du dossier langue en_EN et traduire dans votre Langue )
Vous pouvez également rajouter (LABEL_CURRENT="Current")
Dans le dossier "tmpl"
default.php
Modifier
ex :
ligne 53
Remplacer
<div class="hot_weather_description">current</div>
Par
<div class="hot_weather_description"><?php echo JTEXT::_('LABEL_CURRENT');?></div>
Idem pour les autres traductions
-------------------
Pour changer la langue de OpenWeatherMap
Ligne 106 :
Remplacer :
---
('GET', 'https://api.openweathermap.org/data/2.5/weather?q=<?php echo $hot_weather_location; ?>&units=<?php echo $units; ?>&appid=<?php echo $api_key; ?>', true);
---
Par
---
('GET', 'https://api.openweathermap.org/data/2.5/weather?q=<?php echo $hot_weather_location; ?>&units=<?php echo $units; ?>&appid=<?php echo $api_key; ?>&lang=(votre-langue)', true);
---
Voir codes langues ici : https://openweathermap.org/api/one-call-api
-----
Pour un site multilingue
ex : (Français, italien, anglais)
---
('GET', 'https://api.openweathermap.org/data/2.5/weather?q=<?php echo $hot_weather_location; ?>&units=<?php echo $units; ?>&appid=<?php echo $api_key; ?>&lang=<?php $lang = JFactory::getLanguage();
if ($lang->getTag() == 'fr-FR'){
echo 'fr';
}
elseif ($lang->getTag() == 'it-IT'){
echo 'it';
}
else{
echo 'en';
} ?>', true);
---
Voila si cela peu aider ;-)
Installer les fichiers langues désirés
( Partir du dossier langue en_EN et traduire dans votre Langue )
Vous pouvez également rajouter (LABEL_CURRENT="Current")
Dans le dossier "tmpl"
default.php
Modifier
ex :
ligne 53
Remplacer
<div class="hot_weather_description">current</div>
Par
<div class="hot_weather_description"><?php echo JTEXT::_('LABEL_CURRENT');?></div>
Idem pour les autres traductions
-------------------
Pour changer la langue de OpenWeatherMap
Ligne 106 :
Remplacer :
---
('GET', 'https://api.openweathermap.org/data/2.5/weather?q=<?php echo $hot_weather_location; ?>&units=<?php echo $units; ?>&appid=<?php echo $api_key; ?>', true);
---
Par
---
('GET', 'https://api.openweathermap.org/data/2.5/weather?q=<?php echo $hot_weather_location; ?>&units=<?php echo $units; ?>&appid=<?php echo $api_key; ?>&lang=(votre-langue)', true);
---
Voir codes langues ici : https://openweathermap.org/api/one-call-api
-----
Pour un site multilingue
ex : (Français, italien, anglais)
---
('GET', 'https://api.openweathermap.org/data/2.5/weather?q=<?php echo $hot_weather_location; ?>&units=<?php echo $units; ?>&appid=<?php echo $api_key; ?>&lang=<?php $lang = JFactory::getLanguage();
if ($lang->getTag() == 'fr-FR'){
echo 'fr';
}
elseif ($lang->getTag() == 'it-IT'){
echo 'it';
}
else{
echo 'en';
} ?>', true);
---
Voila si cela peu aider ;-)