videojs_ruby_rails 6.2.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (66) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +4 -0
  3. data/Gemfile +14 -0
  4. data/Rakefile +98 -0
  5. data/lib/videojs_ruby_rails/engine.rb +6 -0
  6. data/lib/videojs_ruby_rails/railtie.rb +9 -0
  7. data/lib/videojs_ruby_rails/tags/caption.rb +45 -0
  8. data/lib/videojs_ruby_rails/tags/source.rb +36 -0
  9. data/lib/videojs_ruby_rails/tags/tag.rb +9 -0
  10. data/lib/videojs_ruby_rails/tags/video.rb +42 -0
  11. data/lib/videojs_ruby_rails/tags.rb +9 -0
  12. data/lib/videojs_ruby_rails/version.rb +3 -0
  13. data/lib/videojs_ruby_rails/view_helpers.rb +7 -0
  14. data/lib/videojs_ruby_rails.rb +3 -0
  15. data/readme.md +115 -0
  16. data/vendor/assets/flash/video-js.swf +0 -0
  17. data/vendor/assets/fonts/VideoJS.eot +0 -0
  18. data/vendor/assets/fonts/VideoJS.svg +102 -0
  19. data/vendor/assets/fonts/VideoJS.ttf +0 -0
  20. data/vendor/assets/fonts/VideoJS.woff +0 -0
  21. data/vendor/assets/fonts/vjs.eot +0 -0
  22. data/vendor/assets/fonts/vjs.svg +28 -0
  23. data/vendor/assets/fonts/vjs.ttf +0 -0
  24. data/vendor/assets/fonts/vjs.woff +0 -0
  25. data/vendor/assets/javascripts/video-js.swf +0 -0
  26. data/vendor/assets/javascripts/video.js.erb +13 -0
  27. data/vendor/assets/javascripts/video.min.js +6 -0
  28. data/vendor/assets/javascripts/videojs-contrib-hls.min.js +7 -0
  29. data/vendor/assets/lang/ar.js +34 -0
  30. data/vendor/assets/lang/ba.js +26 -0
  31. data/vendor/assets/lang/bg.js +26 -0
  32. data/vendor/assets/lang/ca.js +26 -0
  33. data/vendor/assets/lang/cs.js +26 -0
  34. data/vendor/assets/lang/da.js +26 -0
  35. data/vendor/assets/lang/de.js +84 -0
  36. data/vendor/assets/lang/el.js +40 -0
  37. data/vendor/assets/lang/en.js +84 -0
  38. data/vendor/assets/lang/es.js +27 -0
  39. data/vendor/assets/lang/fa.js +26 -0
  40. data/vendor/assets/lang/fi.js +26 -0
  41. data/vendor/assets/lang/fr.js +84 -0
  42. data/vendor/assets/lang/gl.js +27 -0
  43. data/vendor/assets/lang/hr.js +26 -0
  44. data/vendor/assets/lang/hu.js +26 -0
  45. data/vendor/assets/lang/it.js +26 -0
  46. data/vendor/assets/lang/ja.js +26 -0
  47. data/vendor/assets/lang/ko.js +26 -0
  48. data/vendor/assets/lang/nb.js +26 -0
  49. data/vendor/assets/lang/nl.js +37 -0
  50. data/vendor/assets/lang/nn.js +26 -0
  51. data/vendor/assets/lang/pl.js +34 -0
  52. data/vendor/assets/lang/pt-BR.js +26 -0
  53. data/vendor/assets/lang/pt-PT.js +41 -0
  54. data/vendor/assets/lang/ru.js +40 -0
  55. data/vendor/assets/lang/sk.js +84 -0
  56. data/vendor/assets/lang/sr.js +26 -0
  57. data/vendor/assets/lang/sv.js +26 -0
  58. data/vendor/assets/lang/tr.js +76 -0
  59. data/vendor/assets/lang/uk.js +40 -0
  60. data/vendor/assets/lang/vi.js +41 -0
  61. data/vendor/assets/lang/zh-CN.js +40 -0
  62. data/vendor/assets/lang/zh-TW.js +40 -0
  63. data/vendor/assets/stylesheets/video-js.css +1401 -0
  64. data/vendor/assets/stylesheets/video-js.css.erb +1401 -0
  65. data/videojs_ruby_rails.gemspec +20 -0
  66. metadata +107 -0
@@ -0,0 +1,26 @@
1
+ videojs.addLanguage("hu",{
2
+ "Play": "Lejátszás",
3
+ "Pause": "Szünet",
4
+ "Current Time": "Aktuális időpont",
5
+ "Duration Time": "Hossz",
6
+ "Remaining Time": "Hátralévő idő",
7
+ "Stream Type": "Adatfolyam típusa",
8
+ "LIVE": "ÉLŐ",
9
+ "Loaded": "Betöltve",
10
+ "Progress": "Állapot",
11
+ "Fullscreen": "Teljes képernyő",
12
+ "Non-Fullscreen": "Normál méret",
13
+ "Mute": "Némítás",
14
+ "Unmute": "Némítás kikapcsolva",
15
+ "Playback Rate": "Lejátszási sebesség",
16
+ "Subtitles": "Feliratok",
17
+ "subtitles off": "Feliratok kikapcsolva",
18
+ "Captions": "Magyarázó szöveg",
19
+ "captions off": "Magyarázó szöveg kikapcsolva",
20
+ "Chapters": "Fejezetek",
21
+ "You aborted the media playback": "Leállította a lejátszást",
22
+ "A network error caused the media download to fail part-way.": "Hálózati hiba miatt a videó részlegesen töltődött le.",
23
+ "The media could not be loaded, either because the server or network failed or because the format is not supported.": "A videó nem tölthető be hálózati vagy kiszolgálói hiba miatt, vagy a formátuma nem támogatott.",
24
+ "The media playback was aborted due to a corruption problem or because the media used features your browser did not support.": "A lejátszás adatsérülés miatt leállt, vagy a videó egyes tulajdonságait a böngészője nem támogatja.",
25
+ "No compatible source was found for this media.": "Nincs kompatibilis forrás ehhez a videóhoz."
26
+ });
@@ -0,0 +1,26 @@
1
+ videojs.addLanguage("it",{
2
+ "Play": "Play",
3
+ "Pause": "Pausa",
4
+ "Current Time": "Orario attuale",
5
+ "Duration Time": "Durata",
6
+ "Remaining Time": "Tempo rimanente",
7
+ "Stream Type": "Tipo del Streaming",
8
+ "LIVE": "LIVE",
9
+ "Loaded": "Caricato",
10
+ "Progress": "Stato",
11
+ "Fullscreen": "Schermo intero",
12
+ "Non-Fullscreen": "Chiudi schermo intero",
13
+ "Mute": "Muto",
14
+ "Unmute": "Audio",
15
+ "Playback Rate": "Tasso di riproduzione",
16
+ "Subtitles": "Sottotitoli",
17
+ "subtitles off": "Senza sottotitoli",
18
+ "Captions": "Sottotitoli non udenti",
19
+ "captions off": "Senza sottotitoli non udenti",
20
+ "Chapters": "Capitolo",
21
+ "You aborted the media playback": "La riproduzione del filmato è stata interrotta.",
22
+ "A network error caused the media download to fail part-way.": "Il download del filmato è stato interrotto a causa di un problema rete.",
23
+ "The media could not be loaded, either because the server or network failed or because the format is not supported.": "Il filmato non può essere caricato a causa di un errore nel server o nella rete o perché il formato non viene supportato.",
24
+ "The media playback was aborted due to a corruption problem or because the media used features your browser did not support.": "La riproduzione del filmato è stata interrotta a causa di un file danneggiato o per l’utilizzo di impostazioni non supportate dal browser.",
25
+ "No compatible source was found for this media.": "Non ci sono fonti compatibili per questo filmato."
26
+ });
@@ -0,0 +1,26 @@
1
+ videojs.addLanguage("ja",{
2
+ "Play": "再生",
3
+ "Pause": "一時停止",
4
+ "Current Time": "現在の時間",
5
+ "Duration Time": "長さ",
6
+ "Remaining Time": "残りの時間",
7
+ "Stream Type": "ストリームの種類",
8
+ "LIVE": "ライブ",
9
+ "Loaded": "ロード済み",
10
+ "Progress": "進行状況",
11
+ "Fullscreen": "フルスクリーン",
12
+ "Non-Fullscreen": "フルスクリーン以外",
13
+ "Mute": "ミュート",
14
+ "Unmute": "ミュート解除",
15
+ "Playback Rate": "再生レート",
16
+ "Subtitles": "サブタイトル",
17
+ "subtitles off": "サブタイトル オフ",
18
+ "Captions": "キャプション",
19
+ "captions off": "キャプション オフ",
20
+ "Chapters": "チャプター",
21
+ "You aborted the media playback": "動画再生を中止しました",
22
+ "A network error caused the media download to fail part-way.": "ネットワーク エラーにより動画のダウンロードが途中で失敗しました",
23
+ "The media could not be loaded, either because the server or network failed or because the format is not supported.": "サーバーまたはネットワークのエラー、またはフォーマットがサポートされていないため、動画をロードできませんでした",
24
+ "The media playback was aborted due to a corruption problem or because the media used features your browser did not support.": "破損の問題、またはお使いのブラウザがサポートしていない機能が動画に使用されていたため、動画の再生が中止されました",
25
+ "No compatible source was found for this media.": "この動画に対して互換性のあるソースが見つかりませんでした"
26
+ });
@@ -0,0 +1,26 @@
1
+ videojs.addLanguage("ko",{
2
+ "Play": "재생",
3
+ "Pause": "일시중지",
4
+ "Current Time": "현재 시간",
5
+ "Duration Time": "지정 기간",
6
+ "Remaining Time": "남은 시간",
7
+ "Stream Type": "스트리밍 유형",
8
+ "LIVE": "라이브",
9
+ "Loaded": "로드됨",
10
+ "Progress": "진행",
11
+ "Fullscreen": "전체 화면",
12
+ "Non-Fullscreen": "전체 화면 해제",
13
+ "Mute": "음소거",
14
+ "Unmute": "음소거 해제",
15
+ "Playback Rate": "재생 비율",
16
+ "Subtitles": "서브타이틀",
17
+ "subtitles off": "서브타이틀 끄기",
18
+ "Captions": "자막",
19
+ "captions off": "자막 끄기",
20
+ "Chapters": "챕터",
21
+ "You aborted the media playback": "비디오 재생을 취소했습니다.",
22
+ "A network error caused the media download to fail part-way.": "네트워크 오류로 인하여 비디오 일부를 다운로드하지 못 했습니다.",
23
+ "The media could not be loaded, either because the server or network failed or because the format is not supported.": "비디오를 로드할 수 없습니다. 서버 혹은 네트워크 오류 때문이거나 지원되지 않는 형식 때문일 수 있습니다.",
24
+ "The media playback was aborted due to a corruption problem or because the media used features your browser did not support.": "비디오 재생이 취소됐습니다. 비디오가 손상되었거나 비디오가 사용하는 기능을 브라우저에서 지원하지 않는 것 같습니다.",
25
+ "No compatible source was found for this media.": "비디오에 호환되지 않는 소스가 있습니다."
26
+ });
@@ -0,0 +1,26 @@
1
+ videojs.addLanguage("nb",{
2
+ "Play": "Spill",
3
+ "Pause": "Pause",
4
+ "Current Time": "Aktuell tid",
5
+ "Duration Time": "Varighet",
6
+ "Remaining Time": "Gjenstående tid",
7
+ "Stream Type": "Type strøm",
8
+ "LIVE": "DIREKTE",
9
+ "Loaded": "Lastet inn",
10
+ "Progress": "Status",
11
+ "Fullscreen": "Fullskjerm",
12
+ "Non-Fullscreen": "Lukk fullskjerm",
13
+ "Mute": "Lyd av",
14
+ "Unmute": "Lyd på",
15
+ "Playback Rate": "Avspillingsrate",
16
+ "Subtitles": "Undertekst på",
17
+ "subtitles off": "Undertekst av",
18
+ "Captions": "Undertekst for hørselshemmede på",
19
+ "captions off": "Undertekst for hørselshemmede av",
20
+ "Chapters": "Kapitler",
21
+ "You aborted the media playback": "Du avbrøt avspillingen.",
22
+ "A network error caused the media download to fail part-way.": "En nettverksfeil avbrøt nedlasting av videoen.",
23
+ "The media could not be loaded, either because the server or network failed or because the format is not supported.": "Videoen kunne ikke lastes ned, på grunn av nettverksfeil eller serverfeil, eller fordi formatet ikke er støttet.",
24
+ "The media playback was aborted due to a corruption problem or because the media used features your browser did not support.": "Videoavspillingen ble avbrudt på grunn av ødelagte data eller fordi videoen ville gjøre noe som nettleseren din ikke har støtte for.",
25
+ "No compatible source was found for this media.": "Fant ikke en kompatibel kilde for dette mediainnholdet."
26
+ });
@@ -0,0 +1,37 @@
1
+ videojs.addLanguage("nl",{
2
+ "Play": "Afspelen",
3
+ "Pause": "Pauze",
4
+ "Current Time": "Huidige tijd",
5
+ "Duration Time": "Looptijd",
6
+ "Remaining Time": "Resterende tijd",
7
+ "Stream Type": "Streamtype",
8
+ "LIVE": "LIVE",
9
+ "Loaded": "Geladen",
10
+ "Progress": "Status",
11
+ "Fullscreen": "Volledig scherm",
12
+ "Non-Fullscreen": "Geen volledig scherm",
13
+ "Mute": "Geluid uit",
14
+ "Unmute": "Geluid aan",
15
+ "Playback Rate": "Weergavesnelheid",
16
+ "Subtitles": "Ondertiteling",
17
+ "subtitles off": "ondertiteling uit",
18
+ "Captions": "Bijschriften",
19
+ "captions off": "bijschriften uit",
20
+ "Chapters": "Hoofdstukken",
21
+ "Descriptions": "Beschrijvingen",
22
+ "descriptions off": "beschrijvingen off",
23
+ "You aborted the media playback": "U hebt de mediaweergave afgebroken.",
24
+ "A network error caused the media download to fail part-way.": "De mediadownload is mislukt door een netwerkfout.",
25
+ "The media could not be loaded, either because the server or network failed or because the format is not supported.": "De media kon niet worden geladen, vanwege een server- of netwerkfout of doordat het formaat niet wordt ondersteund.",
26
+ "The media playback was aborted due to a corruption problem or because the media used features your browser did not support.": "De mediaweergave is afgebroken vanwege beschadigde data of het mediabestand gebruikt functies die niet door uw browser worden ondersteund.",
27
+ "No compatible source was found for this media.": "Voor deze media is geen ondersteunde bron gevonden.",
28
+ "Play Video": "Video Afspelen",
29
+ "Close": "Sluiten",
30
+ "Modal Window": "Modal Venster",
31
+ "This is a modal window": "Dit is een modaal venster",
32
+ "This modal can be closed by pressing the Escape key or activating the close button.": "Dit modaal venster kan gesloten worden door op Escape te drukken of de 'sluiten' knop te activeren.",
33
+ ", opens captions settings dialog": ", opent bijschriften instellingen venster",
34
+ ", opens subtitles settings dialog": ", opent ondertiteling instellingen venster",
35
+ ", opens descriptions settings dialog": ", opent beschrijvingen instellingen venster",
36
+ ", selected": ", selected"
37
+ });
@@ -0,0 +1,26 @@
1
+ videojs.addLanguage("nn",{
2
+ "Play": "Spel",
3
+ "Pause": "Pause",
4
+ "Current Time": "Aktuell tid",
5
+ "Duration Time": "Varigheit",
6
+ "Remaining Time": "Tid attende",
7
+ "Stream Type": "Type straum",
8
+ "LIVE": "DIREKTE",
9
+ "Loaded": "Lasta inn",
10
+ "Progress": "Status",
11
+ "Fullscreen": "Fullskjerm",
12
+ "Non-Fullscreen": "Stenga fullskjerm",
13
+ "Mute": "Ljod av",
14
+ "Unmute": "Ljod på",
15
+ "Playback Rate": "Avspelingsrate",
16
+ "Subtitles": "Teksting på",
17
+ "subtitles off": "Teksting av",
18
+ "Captions": "Teksting for høyrselshemma på",
19
+ "captions off": "Teksting for høyrselshemma av",
20
+ "Chapters": "Kapitel",
21
+ "You aborted the media playback": "Du avbraut avspelinga.",
22
+ "A network error caused the media download to fail part-way.": "Ein nettverksfeil avbraut nedlasting av videoen.",
23
+ "The media could not be loaded, either because the server or network failed or because the format is not supported.": "Videoen kunne ikkje lastas ned, på grunn av ein nettverksfeil eller serverfeil, eller av di formatet ikkje er stoda.",
24
+ "The media playback was aborted due to a corruption problem or because the media used features your browser did not support.": "Videoavspelinga blei broten på grunn av øydelagde data eller av di videoen ville gjera noe som nettlesaren din ikkje stodar.",
25
+ "No compatible source was found for this media.": "Fant ikke en kompatibel kilde for dette mediainnholdet."
26
+ });
@@ -0,0 +1,34 @@
1
+ videojs.addLanguage("pl",{
2
+ "Play": "Odtwarzaj",
3
+ "Pause": "Pauza",
4
+ "Current Time": "Aktualny czas",
5
+ "Duration Time": "Czas trwania",
6
+ "Remaining Time": "Pozostały czas",
7
+ "Stream Type": "Typ strumienia",
8
+ "LIVE": "NA ŻYWO",
9
+ "Loaded": "Załadowany",
10
+ "Progress": "Status",
11
+ "Fullscreen": "Pełny ekran",
12
+ "Non-Fullscreen": "Pełny ekran niedostępny",
13
+ "Mute": "Wyłącz dźwięk",
14
+ "Unmute": "Włącz dźwięk",
15
+ "Playback Rate": "Szybkość odtwarzania",
16
+ "Subtitles": "Napisy",
17
+ "subtitles off": "Napisy wyłączone",
18
+ "Captions": "Transkrypcja",
19
+ "captions off": "Transkrypcja wyłączona",
20
+ "Chapters": "Rozdziały",
21
+ "You aborted the media playback": "Odtwarzanie zostało przerwane",
22
+ "A network error caused the media download to fail part-way.": "Problemy z siecią spowodowały błąd przy pobieraniu materiału wideo.",
23
+ "The media could not be loaded, either because the server or network failed or because the format is not supported.": "Materiał wideo nie może być załadowany, ponieważ wystąpił problem z siecią lub format nie jest obsługiwany",
24
+ "The media playback was aborted due to a corruption problem or because the media used features your browser did not support.": "Odtwarzanie materiału wideo zostało przerwane z powodu uszkodzonego pliku wideo lub z powodu błędu funkcji, które nie są wspierane przez przeglądarkę.",
25
+ "No compatible source was found for this media.": "Dla tego materiału wideo nie znaleziono kompatybilnego źródła.",
26
+ "Play video": "Odtwarzaj wideo",
27
+ "Close": "Zamknij",
28
+ "Modal Window": "Okno Modala",
29
+ "This is a modal window": "To jest okno modala",
30
+ "This modal can be closed by pressing the Escape key or activating the close button.": "Ten modal możesz zamknąć naciskając przycisk Escape albo wybierając przycisk Zamknij.",
31
+ ", opens captions settings dialog": ", otwiera okno dialogowe ustawień transkrypcji",
32
+ ", opens subtitles settings dialog": ", otwiera okno dialogowe napisów",
33
+ ", selected": ", zaznaczone"
34
+ });
@@ -0,0 +1,26 @@
1
+ videojs.addLanguage("pt-BR",{
2
+ "Play": "Tocar",
3
+ "Pause": "Pausar",
4
+ "Current Time": "Tempo",
5
+ "Duration Time": "Duração",
6
+ "Remaining Time": "Tempo Restante",
7
+ "Stream Type": "Tipo de Stream",
8
+ "LIVE": "AO VIVO",
9
+ "Loaded": "Carregado",
10
+ "Progress": "Progresso",
11
+ "Fullscreen": "Tela Cheia",
12
+ "Non-Fullscreen": "Tela Normal",
13
+ "Mute": "Mudo",
14
+ "Unmute": "Habilitar Som",
15
+ "Playback Rate": "Velocidade",
16
+ "Subtitles": "Legendas",
17
+ "subtitles off": "Sem Legendas",
18
+ "Captions": "Anotações",
19
+ "captions off": "Sem Anotações",
20
+ "Chapters": "Capítulos",
21
+ "You aborted the media playback": "Você parou a execução do vídeo.",
22
+ "A network error caused the media download to fail part-way.": "Um erro na rede fez o vídeo parar parcialmente.",
23
+ "The media could not be loaded, either because the server or network failed or because the format is not supported.": "O vídeo não pode ser carregado, ou porque houve um problema com sua rede ou pelo formato do vídeo não ser suportado.",
24
+ "The media playback was aborted due to a corruption problem or because the media used features your browser did not support.": "A execução foi interrompida por um problema com o vídeo ou por seu navegador não dar suporte ao seu formato.",
25
+ "No compatible source was found for this media.": "Não foi encontrada fonte de vídeo compatível."
26
+ });
@@ -0,0 +1,41 @@
1
+ videojs.addLanguage("pt-PT",{
2
+ "Play": "Reproduzir",
3
+ "Pause": "Parar",
4
+ "Replay": "Reiniciar",
5
+ "Current Time": "Tempo Atual",
6
+ "Duration Time": "Duração",
7
+ "Remaining Time": "Tempo Restante",
8
+ "Stream Type": "Tipo de Stream",
9
+ "LIVE": "EM DIRETO",
10
+ "Loaded": "Carregado",
11
+ "Progress": "Progresso",
12
+ "Fullscreen": "Ecrã inteiro",
13
+ "Non-Fullscreen": "Ecrã normal",
14
+ "Mute": "Desativar som",
15
+ "Unmute": "Ativar som",
16
+ "Playback Rate": "Velocidade de reprodução",
17
+ "Subtitles": "Legendas",
18
+ "subtitles off": "desativar legendas",
19
+ "Captions": "Anotações",
20
+ "captions off": "desativar anotações",
21
+ "Chapters": "Capítulos",
22
+ "Close Modal Dialog": "Fechar Janela Modal",
23
+ "Descriptions": "Descrições",
24
+ "descriptions off": "desativar descrições",
25
+ "Audio Track": "Faixa Áudio",
26
+ "You aborted the media playback": "Parou a reprodução do vídeo.",
27
+ "A network error caused the media download to fail part-way.": "Um erro na rede fez o vídeo falhar parcialmente.",
28
+ "The media could not be loaded, either because the server or network failed or because the format is not supported.": "O vídeo não pode ser carregado, ou porque houve um problema na rede ou no servidor, ou porque formato do vídeo não é compatível.",
29
+ "The media playback was aborted due to a corruption problem or because the media used features your browser did not support.": "A reprodução foi interrompida por um problema com o vídeo ou porque o formato não é compatível com o seu navegador.",
30
+ "No compatible source was found for this media.": "Não foi encontrada uma fonte de vídeo compatível.",
31
+ "The media is encrypted and we do not have the keys to decrypt it.": "O vídeo está encriptado e não há uma chave para o desencriptar.",
32
+ "Play Video": "Reproduzir Vídeo",
33
+ "Close": "Fechar",
34
+ "Modal Window": "Janela Modal",
35
+ "This is a modal window": "Isto é uma janela modal",
36
+ "This modal can be closed by pressing the Escape key or activating the close button.": "Esta modal pode ser fechada pressionando a tecla ESC ou ativando o botão de fechar.",
37
+ ", opens captions settings dialog": ", abre janela com definições de legendas",
38
+ ", opens subtitles settings dialog": ", abre janela com definições de legendas",
39
+ ", opens descriptions settings dialog": ", abre janela com definições de descrições",
40
+ ", selected": ", seleccionado"
41
+ });
@@ -0,0 +1,40 @@
1
+ videojs.addLanguage("ru",{
2
+ "Play": "Воспроизвести",
3
+ "Pause": "Приостановить",
4
+ "Current Time": "Текущее время",
5
+ "Duration Time": "Продолжительность",
6
+ "Remaining Time": "Оставшееся время",
7
+ "Stream Type": "Тип потока",
8
+ "LIVE": "ОНЛАЙН",
9
+ "Loaded": "Загрузка",
10
+ "Progress": "Прогресс",
11
+ "Fullscreen": "Полноэкранный режим",
12
+ "Non-Fullscreen": "Неполноэкранный режим",
13
+ "Mute": "Без звука",
14
+ "Unmute": "Со звуком",
15
+ "Playback Rate": "Скорость воспроизведения",
16
+ "Subtitles": "Субтитры",
17
+ "subtitles off": "Субтитры выкл.",
18
+ "Captions": "Подписи",
19
+ "captions off": "Подписи выкл.",
20
+ "Chapters": "Главы",
21
+ "Close Modal Dialog": "Закрыть модальное окно",
22
+ "Descriptions": "Описания",
23
+ "descriptions off": "описания выкл.",
24
+ "Audio Track": "Звуковая дорожка",
25
+ "You aborted the media playback": "Вы прервали воспроизведение видео",
26
+ "A network error caused the media download to fail part-way.": "Ошибка сети вызвала сбой во время загрузки видео.",
27
+ "The media could not be loaded, either because the server or network failed or because the format is not supported.": "Невозможно загрузить видео из-за сетевого или серверного сбоя либо формат не поддерживается.",
28
+ "The media playback was aborted due to a corruption problem or because the media used features your browser did not support.": "Воспроизведение видео было приостановлено из-за повреждения либо в связи с тем, что видео использует функции, неподдерживаемые вашим браузером.",
29
+ "No compatible source was found for this media.": "Совместимые источники для этого видео отсутствуют.",
30
+ "The media is encrypted and we do not have the keys to decrypt it.": "Видео в зашифрованном виде, и у нас нет ключей для расшифровки.",
31
+ "Play Video": "Воспроизвести видео",
32
+ "Close": "Закрыть",
33
+ "Modal Window": "Модальное окно",
34
+ "This is a modal window": "Это модальное окно.",
35
+ "This modal can be closed by pressing the Escape key or activating the close button.": "Модальное окно можно закрыть нажав Esc или кнопку закрытия окна.",
36
+ ", opens captions settings dialog": ", откроется диалог настройки подписей",
37
+ ", opens subtitles settings dialog": ", откроется диалог настройки субтитров",
38
+ ", opens descriptions settings dialog": ", откроется диалог настройки описаний",
39
+ ", selected": ", выбрано"
40
+ });
@@ -0,0 +1,84 @@
1
+ videojs.addLanguage("sk",{
2
+ "Audio Player": "Zvukový prehrávač",
3
+ "Video Player": "Video prehrávač",
4
+ "Play": "Prehrať",
5
+ "Pause": "Pozastaviť",
6
+ "Replay": "Prehrať znova",
7
+ "Current Time": "Aktuálny čas",
8
+ "Duration Time": "Čas trvania",
9
+ "Remaining Time": "Zostávajúci čas",
10
+ "Stream Type": "Typ stopy",
11
+ "LIVE": "NAŽIVO",
12
+ "Loaded": "Načítané",
13
+ "Progress": "Priebeh",
14
+ "Progress Bar": "Ukazovateľ priebehu",
15
+ "progress bar timing: currentTime={1} duration={2}": "časovanie ukazovateľa priebehu: currentTime={1} duration={2}",
16
+ "Fullscreen": "Režim celej obrazovky",
17
+ "Non-Fullscreen": "Režim normálnej obrazovky",
18
+ "Mute": "Stlmiť",
19
+ "Unmute": "Zrušiť stlmenie",
20
+ "Playback Rate": "Rýchlosť prehrávania",
21
+ "Subtitles": "Titulky",
22
+ "subtitles off": "titulky vypnuté",
23
+ "Captions": "Popisky",
24
+ "captions off": "popisky vypnuté",
25
+ "Chapters": "Kapitoly",
26
+ "Descriptions": "Opisy",
27
+ "descriptions off": "opisy vypnuté",
28
+ "Audio Track": "Zvuková stopa",
29
+ "Volume Level": "Úroveň hlasitosti",
30
+ "You aborted the media playback": "Prerušili ste prehrávanie",
31
+ "A network error caused the media download to fail part-way.": "Sťahovanie súboru bolo zrušené pre chybu na sieti.",
32
+ "The media could not be loaded, either because the server or network failed or because the format is not supported.": "Súbor sa nepodarilo načítať pre chybu servera, sieťového pripojenia, alebo je formát súboru nepodporovaný.",
33
+ "The media playback was aborted due to a corruption problem or because the media used features your browser did not support.": "Prehrávanie súboru bolo prerušené pre poškodené dáta, alebo súbor používa vlastnosti, ktoré váš prehliadač nepodporuje.",
34
+ "No compatible source was found for this media.": "Nebol nájdený žiaden kompatibilný zdroj pre tento súbor.",
35
+ "The media is encrypted and we do not have the keys to decrypt it.": "Súbor je zašifrovaný a nie je k dispozícii kľúč na rozšifrovanie.",
36
+ "Play Video": "Prehrať video",
37
+ "Close": "Zatvoriť",
38
+ "Close Modal Dialog": "Zatvoriť modálne okno",
39
+ "Modal Window": "Modálne okno",
40
+ "This is a modal window": "Toto je modálne okno",
41
+ "This modal can be closed by pressing the Escape key or activating the close button.": "Toto modálne okno je možné zatvoriť stlačením klávesy Escape, alebo aktivovaním tlačidla na zatvorenie.",
42
+ ", opens captions settings dialog": ", otvorí okno nastavení popiskov",
43
+ ", opens subtitles settings dialog": ", otvorí okno nastavení titulkov",
44
+ ", opens descriptions settings dialog": ", otvorí okno nastavení opisov",
45
+ ", selected": ", označené",
46
+ "captions settings": "nastavenia popiskov",
47
+ "subtitles settings": "nastavenia titulkov",
48
+ "descriptions settings": "nastavenia opisov",
49
+ "Text": "Text",
50
+ "White": "Biela",
51
+ "Black": "Čierna",
52
+ "Red": "Červená",
53
+ "Green": "Zelená",
54
+ "Blue": "Modrá",
55
+ "Yellow": "Žltá",
56
+ "Magenta": "Ružová",
57
+ "Cyan": "Tyrkysová",
58
+ "Background": "Pozadie",
59
+ "Window": "Okno",
60
+ "Transparent": "Priesvitné",
61
+ "Semi-Transparent": "Polopriesvitné",
62
+ "Opaque": "Plné",
63
+ "Font Size": "Veľkosť písma",
64
+ "Text Edge Style": "Typ okrajov písma",
65
+ "None": "Žiadne",
66
+ "Raised": "Zvýšené",
67
+ "Depressed": "Znížené",
68
+ "Uniform": "Pravidelné",
69
+ "Dropshadow": "S tieňom",
70
+ "Font Family": "Typ písma",
71
+ "Proportional Sans-Serif": "Proporčné bezpätkové",
72
+ "Monospace Sans-Serif": "Pravidelné, bezpätkové",
73
+ "Proportional Serif": "Proporčné pätkové",
74
+ "Monospace Serif": "Pravidelné pätkové",
75
+ "Casual": "Bežné",
76
+ "Script": "Písané",
77
+ "Small Caps": "Malé kapitálky",
78
+ "Reset": "Resetovať",
79
+ "restore all settings to the default values": "všetky nastavenia na základné hodnoty",
80
+ "Done": "Hotovo",
81
+ "Caption Settings Dialog": "Okno nastavení popiskov",
82
+ "Beginning of dialog window. Escape will cancel and close the window.": "Začiatok okna. Klávesa Escape zruší a zavrie okno.",
83
+ "End of dialog window.": "Koniec okna."
84
+ });
@@ -0,0 +1,26 @@
1
+ videojs.addLanguage("sr",{
2
+ "Play": "Pusti",
3
+ "Pause": "Pauza",
4
+ "Current Time": "Trenutno vrijeme",
5
+ "Duration Time": "Vrijeme trajanja",
6
+ "Remaining Time": "Preostalo vrijeme",
7
+ "Stream Type": "Način strimovanja",
8
+ "LIVE": "UŽIVO",
9
+ "Loaded": "Učitan",
10
+ "Progress": "Progres",
11
+ "Fullscreen": "Puni ekran",
12
+ "Non-Fullscreen": "Mali ekran",
13
+ "Mute": "Prigušen",
14
+ "Unmute": "Ne-prigušen",
15
+ "Playback Rate": "Stopa reprodukcije",
16
+ "Subtitles": "Podnaslov",
17
+ "subtitles off": "Podnaslov deaktiviran",
18
+ "Captions": "Titlovi",
19
+ "captions off": "Titlovi deaktivirani",
20
+ "Chapters": "Poglavlja",
21
+ "You aborted the media playback": "Isključili ste reprodukciju videa.",
22
+ "A network error caused the media download to fail part-way.": "Video se prestao preuzimati zbog greške na mreži.",
23
+ "The media could not be loaded, either because the server or network failed or because the format is not supported.": "Video se ne može reproducirati zbog servera, greške u mreži ili je format ne podržan.",
24
+ "The media playback was aborted due to a corruption problem or because the media used features your browser did not support.": "Reprodukcija videa je zaustavljenja zbog greške u formatu ili zbog verzije vašeg pretraživača.",
25
+ "No compatible source was found for this media.": "Nije nađen nijedan kompatibilan izvor ovog videa."
26
+ });
@@ -0,0 +1,26 @@
1
+ videojs.addLanguage("sv",{
2
+ "Play": "Spela",
3
+ "Pause": "Pausa",
4
+ "Current Time": "Aktuell tid",
5
+ "Duration Time": "Total tid",
6
+ "Remaining Time": "Återstående tid",
7
+ "Stream Type": "Strömningstyp",
8
+ "LIVE": "LIVE",
9
+ "Loaded": "Laddad",
10
+ "Progress": "Förlopp",
11
+ "Fullscreen": "Fullskärm",
12
+ "Non-Fullscreen": "Ej fullskärm",
13
+ "Mute": "Ljud av",
14
+ "Unmute": "Ljud på",
15
+ "Playback Rate": "Uppspelningshastighet",
16
+ "Subtitles": "Text på",
17
+ "subtitles off": "Text av",
18
+ "Captions": "Text på",
19
+ "captions off": "Text av",
20
+ "Chapters": "Kapitel",
21
+ "You aborted the media playback": "Du har avbrutit videouppspelningen.",
22
+ "A network error caused the media download to fail part-way.": "Ett nätverksfel gjorde att nedladdningen av videon avbröts.",
23
+ "The media could not be loaded, either because the server or network failed or because the format is not supported.": "Det gick inte att ladda videon, antingen på grund av ett server- eller nätverksfel, eller för att formatet inte stöds.",
24
+ "The media playback was aborted due to a corruption problem or because the media used features your browser did not support.": "Uppspelningen avbröts på grund av att videon är skadad, eller också för att videon använder funktioner som din webbläsare inte stöder.",
25
+ "No compatible source was found for this media.": "Det gick inte att hitta någon kompatibel källa för den här videon."
26
+ });
@@ -0,0 +1,76 @@
1
+ videojs.addLanguage("tr",{
2
+ "Play": "Oynat",
3
+ "Pause": "Duraklat",
4
+ "Replay": "Yeniden Oynat",
5
+ "Current Time": "Süre",
6
+ "Duration Time": "Toplam Süre",
7
+ "Remaining Time": "Kalan Süre",
8
+ "Stream Type": "Yayın Tipi",
9
+ "LIVE": "CANLI",
10
+ "Loaded": "Yüklendi",
11
+ "Progress": "Yükleniyor",
12
+ "Fullscreen": "Tam Ekran",
13
+ "Non-Fullscreen": "Küçük Ekran",
14
+ "Mute": "Ses Kapa",
15
+ "Unmute": "Ses Aç",
16
+ "Playback Rate": "Oynatma Hızı",
17
+ "Subtitles": "Altyazı",
18
+ "subtitles off": "Altyazı Kapalı",
19
+ "Captions": "Altyazı",
20
+ "captions off": "Altyazı Kapalı",
21
+ "Chapters": "Bölümler",
22
+ "Close Modal Dialog": "Dialogu Kapat",
23
+ "Descriptions": "Açıklamalar",
24
+ "descriptions off": "Açıklamalar kapalı",
25
+ "Audio Track": "Ses Dosyası",
26
+ "You aborted the media playback": "Video oynatmayı iptal ettiniz",
27
+ "A network error caused the media download to fail part-way.": "Video indirilirken bağlantı sorunu oluştu.",
28
+ "The media could not be loaded, either because the server or network failed or because the format is not supported.": "Video oynatılamadı, ağ ya da sunucu hatası veya belirtilen format desteklenmiyor.",
29
+ "The media playback was aborted due to a corruption problem or because the media used features your browser did not support.": "Tarayıcınız desteklemediği için videoda hata oluştu.",
30
+ "No compatible source was found for this media.": "Video için kaynak bulunamadı.",
31
+ "The media is encrypted and we do not have the keys to decrypt it.": "Video, şifrelenmiş bir kaynaktan geliyor ve oynatmak için gerekli anahtar bulunamadı.",
32
+ "Play Video": "Videoyu Oynat",
33
+ "Close": "Kapat",
34
+ "Modal Window": "Modal Penceresi",
35
+ "This is a modal window": "Bu bir modal penceresidir",
36
+ "This modal can be closed by pressing the Escape key or activating the close button.": "Bu modal ESC tuşuna basarak ya da kapata tıklanarak kapatılabilir.",
37
+ ", opens captions settings dialog": ", altyazı ayarları menüsünü açar",
38
+ ", opens subtitles settings dialog": ", altyazı ayarları menüsünü açar",
39
+ ", opens descriptions settings dialog": ", açıklama ayarları menüsünü açar",
40
+ ", selected": ", seçildi",
41
+ "captions settings": "altyazı ayarları",
42
+ "subtitles settings": "altyazı ayarları",
43
+ "descriptions settings": "açıklama ayarları",
44
+ "Text": "Yazı",
45
+ "White": "Beyaz",
46
+ "Black": "Siyah",
47
+ "Red": "Kırmızı",
48
+ "Green": "Yeşil",
49
+ "Blue": "Mavi",
50
+ "Yellow": "Sarı",
51
+ "Magenta": "Macenta",
52
+ "Cyan": "Açık Mavi (Camgöbeği)",
53
+ "Background": "Arka plan",
54
+ "Window": "Pencere",
55
+ "Transparent": "Saydam",
56
+ "Semi-Transparent": "Yarı-Saydam",
57
+ "Opaque": "Mat",
58
+ "Font Size": "Yazı Boyutu",
59
+ "Text Edge Style": "Yazı Kenarlıkları",
60
+ "None": "Hiçbiri",
61
+ "Raised": "Kabartılmış",
62
+ "Depressed": "Yassı",
63
+ "Uniform": "Düz",
64
+ "Dropshadow": "Gölgeli",
65
+ "Font Family": "Yazı Tipi",
66
+ "Proportional Sans-Serif": "Orantılı Sans-Serif",
67
+ "Monospace Sans-Serif": "Eşaralıklı Sans-Serif",
68
+ "Proportional Serif": "Orantılı Serif",
69
+ "Monospace Serif": "Eşaralıklı Serif",
70
+ "Casual": "Gündelik",
71
+ "Script": "El Yazısı",
72
+ "Small Caps": "Küçük Boyutlu Büyük Harfli",
73
+ "Done": "Tamam",
74
+ "Caption Settings Dialog": "Altyazı Ayarları Menüsü",
75
+ "Beginning of dialog window. Escape will cancel and close the window.": "Diyalog penceresinin başlangıcı. ESC tuşu işlemi iptal edip pencereyi kapatacaktır."
76
+ });
@@ -0,0 +1,40 @@
1
+ videojs.addLanguage("uk",{
2
+ "Play": "Відтворити",
3
+ "Pause": "Призупинити",
4
+ "Current Time": "Поточний час",
5
+ "Duration Time": "Тривалість",
6
+ "Remaining Time": "Час, що залишився",
7
+ "Stream Type": "Тип потоку",
8
+ "LIVE": "НАЖИВО",
9
+ "Loaded": "Завантаження",
10
+ "Progress": "Прогрес",
11
+ "Fullscreen": "Повноекранний режим",
12
+ "Non-Fullscreen": "Неповноекранний режим",
13
+ "Mute": "Без звуку",
14
+ "Unmute": "Зі звуком",
15
+ "Playback Rate": "Швидкість відтворення",
16
+ "Subtitles": "Субтитри",
17
+ "subtitles off": "Без субтитрів",
18
+ "Captions": "Підписи",
19
+ "captions off": "Без підписів",
20
+ "Chapters": "Розділи",
21
+ "Close Modal Dialog": "Закрити модальний діалог",
22
+ "Descriptions": "Описи",
23
+ "descriptions off": "Без описів",
24
+ "Audio Track": "Аудіодоріжка",
25
+ "You aborted the media playback": "Ви припинили відтворення відео",
26
+ "A network error caused the media download to fail part-way.": "Помилка мережі викликала збій під час завантаження відео.",
27
+ "The media could not be loaded, either because the server or network failed or because the format is not supported.": "Неможливо завантажити відео через мережевий чи серверний збій або формат не підтримується.",
28
+ "The media playback was aborted due to a corruption problem or because the media used features your browser did not support.": "Відтворення відео було припинено через пошкодження або у зв'язку з тим, що відео використовує функції, які не підтримуються вашим браузером.",
29
+ "No compatible source was found for this media.": "Сумісні джерела для цього відео відсутні.",
30
+ "The media is encrypted and we do not have the keys to decrypt it.": "Відео в зашифрованому вигляді, і ми не маємо ключі для розшифровки.",
31
+ "Play Video": "Відтворити відео",
32
+ "Close": "Закрити",
33
+ "Modal Window": "Модальне вікно",
34
+ "This is a modal window": "Це модальне вікно.",
35
+ "This modal can be closed by pressing the Escape key or activating the close button.": "Модальне вікно можна закрити, натиснувши клавішу Esc або кнопку закриття вікна.",
36
+ ", opens captions settings dialog": ", відкриється діалогове вікно налаштування підписів",
37
+ ", opens subtitles settings dialog": ", відкриється діалогове вікно налаштування субтитрів",
38
+ ", opens descriptions settings dialog": ", відкриється діалогове вікно налаштування описів",
39
+ ", selected": ", обраний"
40
+ });