aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMeyti <10482278+meyt@users.noreply.github.com>2018-06-20 16:00:51 +0430
committerGitHub <noreply@github.com>2018-06-20 16:00:51 +0430
commit2fe949629fb748c816b74b4e2ae515022220e5d5 (patch)
tree9a2e22f2e0b207a0ffc2fc96daf30b3f6e0be05a
parent5ed7aa662003a2f308d60d2151de5f8a4b4e67e9 (diff)
downloadplyr-2fe949629fb748c816b74b4e2ae515022220e5d5.tar.lz
plyr-2fe949629fb748c816b74b4e2ae515022220e5d5.tar.xz
plyr-2fe949629fb748c816b74b4e2ae515022220e5d5.zip
Fix i18n defaults path
-rw-r--r--readme.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/readme.md b/readme.md
index 052638ab..f7eaacec 100644
--- a/readme.md
+++ b/readme.md
@@ -286,7 +286,7 @@ Note the single quotes encapsulating the JSON and double quotes on the object ke
| `debug` | Boolean | `false` | Display debugging information in the console |
| `controls` | Array, Function or Element | `['play-large', 'play', 'progress', 'current-time', 'mute', 'volume', 'captions', 'settings', 'pip', 'airplay', 'fullscreen']` | If a function is passed, it is assumed your method will return either an element or HTML string for the controls. Three arguments will be passed to your function; `id` (the unique id for the player), `seektime` (the seektime step in seconds), and `title` (the media title). See [controls.md](controls.md) for more info on how the html needs to be structured. |
| `settings` | Array | `['captions', 'quality', 'speed', 'loop']` | If you're using the default controls are used then you can specify which settings to show in the menu |
-| `i18n` | Object | See [defaults.js](/src/js/defaults.js) | Used for internationalization (i18n) of the text within the UI. |
+| `i18n` | Object | See [defaults.js](/src/js/config/defaults.js) | Used for internationalization (i18n) of the text within the UI. |
| `loadSprite` | Boolean | `true` | Load the SVG sprite specified as the `iconUrl` option (if a URL). If `false`, it is assumed you are handling sprite loading yourself. |
| `iconUrl` | String | `null` | Specify a URL or path to the SVG sprite. See the [SVG section](#svg) for more info. |
| `iconPrefix` | String | `plyr` | Specify the id prefix for the icons used in the default controls (e.g. "plyr-play" would be "plyr"). This is to prevent clashes if you're using your own SVG sprite but with the default controls. Most people can ignore this option. |