@playkit-js/transcript 3.4.2-canary.3-1a1b1ea → 3.4.2-canary.4-77e14dc

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@playkit-js/transcript",
3
- "version": "3.4.2-canary.3-1a1b1ea",
3
+ "version": "3.4.2-canary.4-77e14dc",
4
4
  "main": "dist/playkit-transcript.js",
5
5
  "license": "AGPL-3.0",
6
6
  "private": false,
@@ -5,16 +5,16 @@ const {withText, Text} = KalturaPlayer.ui.preacti18n;
5
5
  const translates = ({activeSearchIndex, totalSearchResults}: SearchProps) => ({
6
6
  searchLabel: <Text id="transcript.search">Search in Transcript</Text>,
7
7
  clearSearchLabel: <Text id="transcript.clear_search">Clear search</Text>,
8
- nextMatchLabel: <Text id="transcript.next_search_match">Next</Text>,
9
- prevMatchLabel: <Text id="transcript.prev_search_match">Previous</Text>,
8
+ nextMatchLabel: <Text id="transcript.next_search_match">Next search result</Text>,
9
+ prevMatchLabel: <Text id="transcript.prev_search_match">Previous search result</Text>,
10
10
  searchResultsLabel: (
11
11
  <Text
12
- id="transcript.prev_search_match"
12
+ id="transcript.search_results"
13
13
  fields={{
14
14
  current: totalSearchResults > 0 ? activeSearchIndex : 0,
15
15
  total: totalSearchResults
16
16
  }}>
17
- {`Result ${totalSearchResults > 0 ? activeSearchIndex : 0} of ${totalSearchResults}`}
17
+ {`Search result ${totalSearchResults > 0 ? activeSearchIndex : 0} out of ${totalSearchResults}`}
18
18
  </Text>
19
19
  )
20
20
  });
@@ -8,9 +8,9 @@
8
8
  "download_transcript": "Download current transcript",
9
9
  "search": "Search in Transcript",
10
10
  "clear_search": "Clear search",
11
- "next_search_match": "Next",
12
- "prev_search_match": "Previous",
13
- "search_results": "Result {{current}} of {{total}}",
11
+ "next_search_match": "Next search result",
12
+ "prev_search_match": "Previous search result",
13
+ "search_results": "Search result {{current}} out of {{total}}",
14
14
  "auto_scroll": "Resume AutoScroll",
15
15
  "whoops": "Whoops!",
16
16
  "load_failed": "Failed to load transcript",