Skip to content

Commit

Permalink
v2.14.3: fix darkskyapp#229
Browse files Browse the repository at this point in the history
  • Loading branch information
Jay LaPorte committed Aug 13, 2019
1 parent 17b52aa commit ce25cbc
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions lib/lang/cs.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ module.exports = {
"low-humidity": "nízká vlhkost",
"high-humidity": "vysoká vlhkost",
"fog": "mlhavo",
"light-clouds": "částečně zataženo",
"medium-clouds": "převážně zataženo",
"light-clouds": "částečně oblačno",
"medium-clouds": "převážně oblačno",
"heavy-clouds": "zataženo",
"today-morning": "dnes ráno",
"later-today-morning": "dnes dopoledne",
Expand Down Expand Up @@ -179,7 +179,7 @@ module.exports = {
starting = ", které začne znovu ";
else if(condition.endsWith("vlhkost"))
starting = ", která začne znovu ";
else if(condition.endsWith("zataženo") || condition.endsWith("mlhavo"))
else if(condition.endsWith("zataženo") || condition.endsWith("mlhavo") || condition.endsWith("oblačno"))
starting = "a začne znovu ";

return condition + " až do " + remove_prefix_and_use_genitive(a) + starting + b;
Expand All @@ -194,7 +194,7 @@ module.exports = {
continuing = ", které přetrvá až do ";
else if(condition.endsWith("vlhkost"))
continuing = ", která přetrvá až do ";
else if(condition.endsWith("zataženo") || condition.endsWith("mlhavo"))
else if(condition.endsWith("zataženo") || condition.endsWith("mlhavo") || condition.endsWith("oblačno"))
continuing = " a přetrvá až do ";
return "od " + remove_prefix_and_use_genitive(a) + " " + condition + continuing + remove_prefix_and_use_genitive(b);
},
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "translations",
"version": "2.14.2",
"version": "2.14.3",
"description": "translate the Dark Sky API into any language",
"author": {
"name": "The Dark Sky Company",
Expand Down
8 changes: 4 additions & 4 deletions test_cases/cs.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
"Mlhavo":
["title", "fog"],

"Převážně zataženo":
"Převážně oblačno":
["title", "medium-clouds"],

"Zataženo":
Expand All @@ -95,7 +95,7 @@
"Mrholení a silný vítr":
["title", ["and", "very-light-rain", "heavy-wind"]],

"Vysoká vlhkost a částečně zataženo":
"Vysoká vlhkost a částečně oblačno":
["title", ["and", "high-humidity", "light-clouds"]],


Expand All @@ -122,7 +122,7 @@
["minutes", 25],
["minutes", 8]]],

"Během dne převážně zataženo.":
"Během dne převážně oblačno.":
["sentence", ["for-day", "medium-clouds"]],

"Od rána slabý déšť se sněhem.":
Expand Down Expand Up @@ -154,7 +154,7 @@
"evening",
"night"]],

"Od odpoledne částečně zataženo a přetrvá až do večera.":
"Od odpoledne částečně oblačno a přetrvá až do večera.":
["sentence",
["starting-continuing-until",
"light-clouds",
Expand Down

0 comments on commit ce25cbc

Please sign in to comment.