diff options
author | 2024-04-10 17:14:38 +0200 | |
---|---|---|
committer | 2024-04-26 13:44:26 -0700 | |
commit | 93bc9ce24d698d7adfe76cf67328c88996abd4eb (patch) | |
tree | 906f49f9e808dba945a63cf3c97982c795267477 /internal/locale/translations/es_ES.json | |
parent | 9233568da3248e5a0beca672057aa78059ed1fd7 (diff) | |
download | v2-93bc9ce24d698d7adfe76cf67328c88996abd4eb.tar.gz v2-93bc9ce24d698d7adfe76cf67328c88996abd4eb.tar.zst v2-93bc9ce24d698d7adfe76cf67328c88996abd4eb.zip |
add seek and speed controls to media player
When listening to podcast, it is usual to want to speed up the playback.
https://github.com/miniflux/v2/pull/2521 was addressing the need globally, this PR
allow to address it for just the current open enclosure media. (no save) Some Browser
already include this control directly, but firefox does not (directly anyway).
Also, it is often useful to be able to skip chunk of a podcast, to skip commercials
for example, or get back a bit because we couldn't hear the last part. I added rudimentary
seek controls with the usual +/-10 and 30 seconds chuck size. This is pretty handy when podcast
are very long and using the seek bar is way too tricky to just skip 30s.
As always, I'm French and could only provide English and French translation for the few
text I added in the locale/translations files. Any help is welcome.
Tested mostly on Firefox (121.0) and quickly on Vivaldi(6.5.3206.53), chrome based.
Fixes: #1845 #1846
Diffstat (limited to 'internal/locale/translations/es_ES.json')
-rw-r--r-- | internal/locale/translations/es_ES.json | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/internal/locale/translations/es_ES.json b/internal/locale/translations/es_ES.json index d4669b39..cdb4b9df 100644 --- a/internal/locale/translations/es_ES.json +++ b/internal/locale/translations/es_ES.json @@ -529,5 +529,14 @@ "error.unable_to_detect_rssbridge": "Unable to detect feed using RSS-Bridge: %v.", "error.feed_format_not_detected": "Unable to detect feed format: %v.", "form.prefs.label.media_playback_rate": "Velocidad de reproducción del audio/vídeo", - "error.settings_media_playback_rate_range": "La velocidad de reproducción está fuera de rango" + "error.settings_media_playback_rate_range": "La velocidad de reproducción está fuera de rango", + "enclosure_media_controls.seek" : "Seek:", + "enclosure_media_controls.seek.title" : "Seek %s seconds", + "enclosure_media_controls.speed" : "Speed:", + "enclosure_media_controls.speed.faster" : "Faster", + "enclosure_media_controls.speed.faster.title" : "Faster by %sx", + "enclosure_media_controls.speed.slower" : "Slower", + "enclosure_media_controls.speed.slower.title" : "Slower by %sx", + "enclosure_media_controls.speed.reset" : "Reset", + "enclosure_media_controls.speed.reset.title" : "Reset speed to 1x" } |