]> git.mxchange.org Git - friendica-addons.git/blob - strings.php
be5c1ba5ec8fb1ea0a106470f076e67f05c4cd59
[friendica-addons.git] / strings.php
1 <?php
2
3 if(! function_exists("string_plural_select_fr")) {
4 function string_plural_select_fr($n){
5         $n = intval($n);
6         if (($n == 0 || $n == 1)) { return 0; } else if ($n != 0 && $n % 1000000 == 0) { return 1; } else  { return 2; }
7 }}
8 $a->strings['Error fetching weather data. Error was: '] = 'Erreur de récupération des données météo. L\'erreur était :';
9 $a->strings['Current Weather'] = 'Météo actuelle';
10 $a->strings['Relative Humidity'] = 'Humidité relative';
11 $a->strings['Pressure'] = 'Pression';
12 $a->strings['Wind'] = 'Vent';
13 $a->strings['Last Updated'] = 'Dernière mise-à-jour';
14 $a->strings['Data by'] = 'Données de';
15 $a->strings['Show on map'] = 'Montrer sur la carte';
16 $a->strings['There was a problem accessing the weather data. But have a look'] = 'Une erreur est survenue lors de l\'accès aux données météo. Vous pouvez quand même jeter un oeil';
17 $a->strings['at OpenWeatherMap'] = 'à OpenWeatherMap';
18 $a->strings['No APPID found, please contact your admin to obtain one.'] = 'Pas d\'APPID trouvé, merci de contacter votre administrateur pour en obtenir un.';
19 $a->strings['Enter either the name of your location or the zip code.'] = 'Entrez le nom de votre emplacement ou votre code postal.';
20 $a->strings['Your Location'] = 'Votre position';
21 $a->strings['Identifier of your location (name or zip code), e.g. <em>Berlin,DE</em> or <em>14476,DE</em>.'] = 'Identifiant de votre emplacement (nom ou code postal), par exemple <em>Paris 08, Fr</em> ou <em>75008, FR</em>.';
22 $a->strings['Units'] = 'Unités';
23 $a->strings['select if the temperature should be displayed in &deg;C or &deg;F'] = 'Sélectionner si la température devrait être affichée en °C ou en °F';
24 $a->strings['Show weather data'] = 'Montrer les données météos';
25 $a->strings['Current Weather Settings'] = 'Paramètres de Météo';
26 $a->strings['Save Settings'] = 'Sauvegarder les paramètres';
27 $a->strings['Caching Interval'] = 'Intervalle de mise en cache.';
28 $a->strings['For how long should the weather data be cached? Choose according your OpenWeatherMap account type.'] = 'Pendant combien de temps les données météo doivent-elles être mises en cache? Choisissez en fonction du type de compte OpenWeatherMap.';
29 $a->strings['no cache'] = 'pas de cache';
30 $a->strings['minutes'] = 'minutes';
31 $a->strings['Your APPID'] = 'Votre APPID';
32 $a->strings['Your API key provided by OpenWeatherMap'] = 'Votre clé pour l\'API de OpenWeatherMap';