diff --git a/peertube-plugin-video-annotation/.gitignore b/peertube-plugin-video-annotation/.gitignore
new file mode 100644
index 0000000..849ddff
--- /dev/null
+++ b/peertube-plugin-video-annotation/.gitignore
@@ -0,0 +1 @@
+dist/
diff --git a/peertube-plugin-video-annotation/assets/style.css b/peertube-plugin-video-annotation/assets/style.css
index e69de29..09f570f 100644
--- a/peertube-plugin-video-annotation/assets/style.css
+++ b/peertube-plugin-video-annotation/assets/style.css
@@ -0,0 +1,3 @@
+.vjs-overlay a {
+ color: #210cbf;
+}
diff --git a/peertube-plugin-video-annotation/client/video-edit-client-plugin.js b/peertube-plugin-video-annotation/client/video-edit-client-plugin.js
index a4a2b99..fdd524d 100644
--- a/peertube-plugin-video-annotation/client/video-edit-client-plugin.js
+++ b/peertube-plugin-video-annotation/client/video-edit-client-plugin.js
@@ -1,6 +1,6 @@
async function register ({ registerVideoField, peertubeHelpers }) {
const fieldName = 'player-annotations'
- const descriptionSource = 'See this document for annotation format'
+ const descriptionSource = 'See this document for annotation format'
const descriptionHTML = await peertubeHelpers.translate(descriptionSource)
const commonOptions = {
diff --git a/peertube-plugin-video-annotation/languages/fr.json b/peertube-plugin-video-annotation/languages/fr.json
index 76a8eb7..52630ac 100644
--- a/peertube-plugin-video-annotation/languages/fr.json
+++ b/peertube-plugin-video-annotation/languages/fr.json
@@ -1,3 +1,3 @@
{
- "Hello world": "Hello le monde"
+ "Voir this document for annotation format": "See ce document pour le format d'annotation"
}