diff --git a/src/styles/components/_bar.scss b/src/styles/components/_bar.scss
index 704a18b5..5c79448b 100644
--- a/src/styles/components/_bar.scss
+++ b/src/styles/components/_bar.scss
@@ -190,3 +190,26 @@
}
}
}
+
+@keyframes shakeityeah {
+ 0% { transform: translate(2px, 1px) rotate(0deg); }
+ 2% { transform: translate(-1px, -2px) rotate(-1deg); }
+ 4% { transform: translate(-3px, 0px) rotate(1deg); }
+ 8% { transform: translate(0px, 2px) rotate(0deg); }
+ 10% { transform: translate(1px, -1px) rotate(1deg); }
+ 12% { transform: translate(-1px, 2px) rotate(-1deg); }
+ 14% { transform: translate(-3px, 1px) rotate(0deg); }
+ 16% { transform: translate(2px, 1px) rotate(-1deg); }
+ 18% { transform: translate(-1px, -1px) rotate(1deg); }
+ 20% { transform: translate(2px, 2px) rotate(0deg); }
+ 22% { transform: translate(1px, -2px) rotate(-1deg); }
+ 24% { transform: translate(0px, 0px) rotate(0deg); }
+}
+
+.btn-shakeityeah {
+ animation-name: shakeityeah;
+ animation-duration: 4.0s;
+ transform-origin:50% 50%;
+ animation-iteration-count: infinite;
+ animation-timing-function: linear;
+}
\ No newline at end of file
diff --git a/static/partials/statusmessage.html b/static/partials/statusmessage.html
index bddddd86..595d4e21 100644
--- a/static/partials/statusmessage.html
+++ b/static/partials/statusmessage.html
@@ -7,6 +7,6 @@
{{_("Your are offline")}} {{_("Go online")}}
{{_("Connection interrupted")}}
{{_("An error occured")}} {{_("Retry")}}
- {{_("Incoming call")}} {{_("from")}} {{incoming|displayName}} {{_("Accept call")}} {{_("Reject")}}
+ {{_("Incoming call")}} {{_("from")}} {{incoming|displayName}} {{_("Accept call")}} {{_("Reject")}}
{{_("Waiting for camera/microphone access")}} {{_("Hangup")}}