@@ -12,10 +12,10 @@ export interface TestLocaleFileOptions {
12
12
prohibitedText : Array < RegExp >
13
13
}
14
14
15
- export function testLocaleFile ( options : TestLocaleFileOptions ) {
15
+ export function testLocaleFile ( options : TestLocaleFileOptions ) : Array < string > {
16
16
let localeMap : Record < string , string >
17
17
try {
18
- localeMap = JSON . parse ( options . fileContent )
18
+ localeMap = JSON . parse ( options . fileContent ) as Record < string , string >
19
19
} catch {
20
20
return [ 'File content could not be parsed as locale JSON' ]
21
21
}
@@ -28,20 +28,20 @@ export function testLocaleFile(options: TestLocaleFileOptions) {
28
28
29
29
for ( const key in localeMap ) {
30
30
if ( options . namespace === options . defaultNamespace ) {
31
- errors . push ( colors . cyan ( `"${ key } "` ) + ` is missing an explicit namespace` )
31
+ errors . push ( colors . cyan ( `"${ key } "` ) + ' is missing an explicit namespace' )
32
32
}
33
33
34
34
if ( options . namespace . endsWith ( '_old' ) ) {
35
- errors . push ( colors . cyan ( `"${ key } "` ) + ` is tagged as removed from source code` )
35
+ errors . push ( colors . cyan ( `"${ key } "` ) + ' is tagged as removed from source code' )
36
36
}
37
37
38
38
if ( localeMap [ key ] === '' ) {
39
- errors . push ( colors . cyan ( `"${ key } "` ) + ` does not have a translation` )
39
+ errors . push ( colors . cyan ( `"${ key } "` ) + ' does not have a translation' )
40
40
}
41
41
42
42
const maybeSameWord = key . length < 24 && ! key . includes ( ' ' )
43
43
if ( options . locale !== options . defaultLocale && localeMap [ key ] === key && ! maybeSameWord ) {
44
- errors . push ( colors . cyan ( `"${ key } "` ) + ` has a translation equal to the source language` )
44
+ errors . push ( colors . cyan ( `"${ key } "` ) + ' has a translation equal to the source language' )
45
45
}
46
46
47
47
// We expect the count and name of the component markers to be exactly the same,
@@ -54,7 +54,7 @@ export function testLocaleFile(options: TestLocaleFileOptions) {
54
54
JSON . stringify ( sort ( componentMarkersTranslation ) )
55
55
) {
56
56
const message = [
57
- colors . cyan ( `"${ key } "` ) + ` has mismatching component markers in the translation` ,
57
+ colors . cyan ( `"${ key } "` ) + ' has mismatching component markers in the translation' ,
58
58
colors . green ( 'Expected: ' ) + JSON . stringify ( sort ( componentMarkersKey ) ) ,
59
59
colors . red ( 'Received: ' ) + JSON . stringify ( sort ( componentMarkersTranslation ) ) ,
60
60
] . join ( '\n' )
@@ -65,7 +65,7 @@ export function testLocaleFile(options: TestLocaleFileOptions) {
65
65
// Check that opened component markers are closed in the correct order.
66
66
if ( ! validComponentMarkerStructure ( componentMarkersTranslation ) ) {
67
67
const message = [
68
- colors . cyan ( `"${ key } "` ) + ` has invalid component marker structure in the translation` ,
68
+ colors . cyan ( `"${ key } "` ) + ' has invalid component marker structure in the translation' ,
69
69
colors . red ( 'Received: ' ) + JSON . stringify ( componentMarkersTranslation ) ,
70
70
] . join ( '\n' )
71
71
@@ -82,7 +82,7 @@ export function testLocaleFile(options: TestLocaleFileOptions) {
82
82
83
83
if ( hasUnknownMarker ) {
84
84
const message = [
85
- colors . cyan ( `"${ key } "` ) + ` has mismatching interpolation markers in the translation` ,
85
+ colors . cyan ( `"${ key } "` ) + ' has mismatching interpolation markers in the translation' ,
86
86
colors . green ( 'Expected: ' ) + JSON . stringify ( sort ( interpolationMarkersKey ) ) ,
87
87
colors . red ( 'Received: ' ) + JSON . stringify ( sort ( interpolationMarkersTranslation ) ) ,
88
88
] . join ( '\n' )
@@ -97,7 +97,7 @@ export function testLocaleFile(options: TestLocaleFileOptions) {
97
97
const translationMatch = localeMap [ key ] . match ( prohibitedTextRegex )
98
98
if ( translationMatch ) {
99
99
const message = [
100
- colors . cyan ( `"${ key } "` ) + ` has prohibited text in the translation` ,
100
+ colors . cyan ( `"${ key } "` ) + ' has prohibited text in the translation' ,
101
101
colors . red ( 'Prohibited: ' ) + colorByMatch ( 'red' , localeMap [ key ] , translationMatch ) ,
102
102
] . join ( '\n' )
103
103
@@ -109,19 +109,19 @@ export function testLocaleFile(options: TestLocaleFileOptions) {
109
109
return errors
110
110
}
111
111
112
- function parseComponentMarkers ( string : string ) {
112
+ function parseComponentMarkers ( string : string ) : Array < string > {
113
113
return Array . from ( string . matchAll ( / < .* ?> / g) ) . map ( ( x ) => x [ 0 ] )
114
114
}
115
115
116
- function parseInterpolationMarkers ( string : string ) {
116
+ function parseInterpolationMarkers ( string : string ) : Array < string > {
117
117
return Array . from ( string . matchAll ( / \{ \{ .* ?\} \} / g) ) . map ( ( x ) => x [ 0 ] )
118
118
}
119
119
120
120
function sort < T > ( array : Array < T > ) : Array < T > {
121
121
return [ ...array ] . sort ( )
122
122
}
123
123
124
- function validComponentMarkerStructure ( componentMarkers : Array < string > ) {
124
+ function validComponentMarkerStructure ( componentMarkers : Array < string > ) : boolean {
125
125
// Filter out self-closing tags since they don't require any structure
126
126
componentMarkers = componentMarkers . filter ( ( x ) => ! x . match ( / < .* \/ > / ) )
127
127
@@ -146,7 +146,7 @@ function validComponentMarkerStructure(componentMarkers: Array<string>) {
146
146
return true
147
147
}
148
148
149
- function colorByMatch ( color : ColorsOption , string : string , match : RegExpMatchArray ) {
149
+ function colorByMatch ( color : ColorsOption , string : string , match : RegExpMatchArray ) : string {
150
150
const startIndex = match . index || 0
151
151
const endIndex = startIndex + match [ 0 ] . length
152
152
0 commit comments