]> git.mxchange.org Git - friendica-addons.git/blob - curweather/lang/cs/strings.php
482489b1fd5d285dfeb72b0a5b364b8952e7fb8b
[friendica-addons.git] / curweather / lang / cs / strings.php
1 <?php
2
3 if(! function_exists("string_plural_select_cs")) {
4 function string_plural_select_cs($n){
5         $n = intval($n);
6         return ($n == 1 && $n % 1 == 0) ? 0 : ($n >= 2 && $n <= 4 && $n % 1 == 0) ? 1: ($n % 1 != 0 ) ? 2 : 3;;
7 }}
8 ;
9 $a->strings["Error fetching weather data.\\nError was: "] = "Chyba při získávání dat o počasí.\\nChyba:";
10 $a->strings["Current Weather"] = "Aktuální počasí";
11 $a->strings["Relative Humidity"] = "Relativní vlhkost vzduchu";
12 $a->strings["Pressure"] = "Tlak";
13 $a->strings["Wind"] = "Vítr";
14 $a->strings["Last Updated"] = "Naposledy aktualizováno";
15 $a->strings["Data by"] = "Data podle";
16 $a->strings["Show on map"] = "Ukázat na mapě";
17 $a->strings["There was a problem accessing the weather data. But have a look"] = "Při získávání dat o počasí nastala chyba. Podívejte se ale";
18 $a->strings["at OpenWeatherMap"] = "na OpenWeatherMap";
19 $a->strings["Current Weather settings updated."] = "Nastavení pro Aktuální počasí aktualizováno.";
20 $a->strings["No APPID found, please contact your admin to obtain one."] = "Žádné APPID nebylo nalezeno, prosím kontaktujte svého administrátora pro získání APPID.";
21 $a->strings["Save Settings"] = "Uložit nastavení";
22 $a->strings["Settings"] = "Nastavení";
23 $a->strings["Enter either the name of your location or the zip code."] = "Zadejte buď název místa, kde se nacházíte, nebo PSČ.";
24 $a->strings["Your Location"] = "Vaše poloha";
25 $a->strings["Identifier of your location (name or zip code), e.g. <em>Berlin,DE</em> or <em>14476,DE</em>."] = "Identifikátor vaší polohy (název nebo PSČ), např. <em>Berlin,DE</em> nebo <em>14476,DE</em>";
26 $a->strings["Units"] = "Jednotky";
27 $a->strings["select if the temperature should be displayed in &deg;C or &deg;F"] = "vyberte, jestli by se teplota měla zobrazovat v &deg;C či &deg;F";
28 $a->strings["Show weather data"] = "Ukázat data o počasí";
29 $a->strings["Curweather settings saved."] = "Nastavení Curwather uložena.";
30 $a->strings["Caching Interval"] = "Ukládám interval do mezipaměti";
31 $a->strings["For how long should the weather data be cached? Choose according your OpenWeatherMap account type."] = "Na jak dlouho by vaše data o počasí měla být uložena v mezipaměti? Vyberte podle typu vašeho účtu na OpenWeatherMap.";
32 $a->strings["no cache"] = "žádná mezipaměť";
33 $a->strings["minutes"] = "minut";
34 $a->strings["Your APPID"] = "Vaše APPID";
35 $a->strings["Your API key provided by OpenWeatherMap"] = "Váš API klíč poskytnutý OpenWetherMap";