Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Bulgarian Language Pack #356

Open
wants to merge 10 commits into
base: dev-1.0.0
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 3 additions & 15 deletions compiled/flipclock.css
Original file line number Diff line number Diff line change
Expand Up @@ -173,9 +173,9 @@
.flip-clock-wrapper .flip { box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7); }

.flip-clock-wrapper ul.play li.flip-clock-active {
-webkit-animation: asd 0.5s 0.5s linear both;
-moz-animation: asd 0.5s 0.5s linear both;
animation: asd 0.5s 0.5s linear both;
-webkit-animation: asd 0.01s 0.49s linear both;
-moz-animation: asd 0.01s 0.49s linear both;
animation: asd 0.01s 0.49s linear both;
z-index: 5; }

.flip-clock-divider {
Expand Down Expand Up @@ -221,39 +221,27 @@
0% {
z-index: 2; }

20% {
z-index: 4; }

100% {
z-index: 4; } }

@-moz-keyframes asd {
0% {
z-index: 2; }

20% {
z-index: 4; }

100% {
z-index: 4; } }

@-o-keyframes asd {
0% {
z-index: 2; }

20% {
z-index: 4; }

100% {
z-index: 4; } }

@keyframes asd {
0% {
z-index: 2; }

20% {
z-index: 4; }

100% {
z-index: 4; } }

Expand Down
18 changes: 3 additions & 15 deletions src/flipclock/css/flipclock.css
Original file line number Diff line number Diff line change
Expand Up @@ -173,9 +173,9 @@
.flip-clock-wrapper .flip { box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7); }

.flip-clock-wrapper ul.play li.flip-clock-active {
-webkit-animation: asd 0.5s 0.5s linear both;
-moz-animation: asd 0.5s 0.5s linear both;
animation: asd 0.5s 0.5s linear both;
-webkit-animation: asd 0.01s 0.49s linear both;
-moz-animation: asd 0.01s 0.49s linear both;
animation: asd 0.01s 0.49s linear both;
z-index: 5; }

.flip-clock-divider {
Expand Down Expand Up @@ -221,39 +221,27 @@
0% {
z-index: 2; }

20% {
z-index: 4; }

100% {
z-index: 4; } }

@-moz-keyframes asd {
0% {
z-index: 2; }

20% {
z-index: 4; }

100% {
z-index: 4; } }

@-o-keyframes asd {
0% {
z-index: 2; }

20% {
z-index: 4; }

100% {
z-index: 4; } }

@keyframes asd {
0% {
z-index: 2; }

20% {
z-index: 4; }

100% {
z-index: 4; } }

Expand Down
5 changes: 1 addition & 4 deletions src/flipclock/css/flipclock.scss
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@
}

.flip-clock-wrapper ul.play li.flip-clock-active {
@include animation(asd .5s .5s linear both);
@include animation(asd .01s .49s linear both);
z-index: 2;
}

Expand Down Expand Up @@ -214,9 +214,6 @@
0% {
z-index:2;
}
20% {
z-index:4;
}
100% {
z-index:4;
}
Expand Down
27 changes: 27 additions & 0 deletions src/flipclock/js/lang/pl-pl
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
(function($) {

/**
* FlipClock Poland Language Pack
*
* This class will used to translate tokens into the Poland language.
*
*/

FlipClock.Lang.Polish = {

'years' : 'Lat',
'months' : 'Miesięcy',
'days' : 'Dni',
'hours' : 'Godziny',
'minutes' : 'Minuty',
'seconds' : 'Sekundy'

};

/* Create various aliases for convenience */

FlipClock.Lang['pl'] = FlipClock.Lang.Polish;
FlipClock.Lang['pl-pl'] = FlipClock.Lang.Polish;
FlipClock.Lang['polish'] = FlipClock.Lang.Polish;

}(jQuery));
27 changes: 27 additions & 0 deletions src/flipclock/js/lang/ro-ro.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
(function($) {

/**
* FlipClock Romanian Language Pack
*
* This class will used to translate tokens into the Romanian language.
*
*/

FlipClock.Lang.Romanian = {

'years' : 'ani',
'months' : 'luni',
'days' : 'zile',
'hours' : 'ore',
'minutes' : 'minute',
'seconds' : 'secunde'

};

/* Create various aliases for convenience */

FlipClock.Lang['ro'] = FlipClock.Lang.Romanian;
FlipClock.Lang['ro-ro'] = FlipClock.Lang.Romanian;
FlipClock.Lang['romanian'] = FlipClock.Lang.Romanian;

}(jQuery));