File tree Expand file tree Collapse file tree 3 files changed +15
-15
lines changed Expand file tree Collapse file tree 3 files changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,15 @@ filepaths.forEach((filepath) => {
21
21
}
22
22
23
23
const target = require ( filepath ) ;
24
+
25
+ // Special case for English, the assumption being that since the keys are English only
26
+ // a few strings need to be altered for regional differences, e.g. en-GB.
27
+ if ( filename . startsWith ( 'en-' ) ) {
28
+ console . log ( `${ filename } English - should be manually checked.` ) ;
29
+ tableData . push ( [ `${ filename } (has ${ Object . keys ( target ) . length } )` , 'Needs manual checking. Can safely use most default strings.' ] ) ;
30
+ return ;
31
+ }
32
+
24
33
const missing = [ ] ;
25
34
26
35
for ( const string in source ) {
Original file line number Diff line number Diff line change @@ -367,6 +367,7 @@ This default value is hardcoded as a default to the localize method in the SeekB
367
367
| | Opacity |
368
368
| | Text Background |
369
369
| | Caption Area Background |
370
+ | en-GB.json (has 1) | Needs manual checking. Can safely use most default strings.
370
371
| es.json (Complete) | |
371
372
| et.json (missing 5) | No content |
372
373
| | Color |
@@ -775,21 +776,7 @@ This default value is hardcoded as a default to the localize method in the SeekB
775
776
| | Opacity |
776
777
| | Text Background |
777
778
| | Caption Area Background |
778
- | tr.json (missing 18) | Audio Player |
779
- | | Video Player |
780
- | | Seek to live, currently behind live |
781
- | | Seek to live, currently playing live |
782
- | | Progress Bar |
783
- | | progress bar timing: currentTime={1} duration={2} |
784
- | | Volume Level |
785
- | | Reset |
786
- | | restore all settings to the default values |
787
- | | End of dialog window. |
788
- | | {1} is loading. |
789
- | | Exit Picture-in-Picture |
790
- | | Picture-in-Picture |
791
- | | No content |
792
- | | Color |
779
+ | tr.json (missing 4) | Color |
793
780
| | Opacity |
794
781
| | Text Background |
795
782
| | Caption Area Background |
Original file line number Diff line number Diff line change
1
+ {
2
+ "Color" : " Colour"
3
+ }
4
+
You can’t perform that action at this time.
0 commit comments