Skip to content

Commit 7f1284c

Browse files
committed
fix ordering of DIAG_* translations
1 parent 03a6197 commit 7f1284c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

locale/en-us/script.lua

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -130,20 +130,20 @@ DIAG_MISSING_LOCAL_EXPORT_DOC_COMMENT =
130130
'Missing comment for exported local function `{}`.'
131131
DIAG_MISSING_LOCAL_EXPORT_DOC_PARAM =
132132
'Missing @param annotation for parameter `{}` in exported local function `{}`.'
133-
DIAG_MISSING_EXPORTED_METHOD_DOC_RETURN =
134-
'Missing @return annotation at index `{}` in exported method `{}`.'
133+
DIAG_MISSING_LOCAL_EXPORT_DOC_RETURN =
134+
'Missing @return annotation at index `{}` in exported local function `{}`.'
135135
DIAG_MISSING_EXPORTED_METHOD_DOC_COMMENT =
136136
'Missing comment for exported method `{}`.'
137137
DIAG_MISSING_EXPORTED_METHOD_DOC_PARAM =
138138
'Missing @param annotation for parameter `{}` in exported method `{}`.'
139-
DIAG_MISSING_EXPORTED_FIELD_DOC_RETURN =
140-
'Missing @return annotation at index `{}` in exported field `{}`.'
139+
DIAG_MISSING_EXPORTED_METHOD_DOC_RETURN =
140+
'Missing @return annotation at index `{}` in exported method `{}`.'
141141
DIAG_MISSING_EXPORTED_FIELD_DOC_COMMENT =
142142
'Missing comment for exported field `{}`.'
143143
DIAG_MISSING_EXPORTED_FIELD_DOC_PARAM =
144144
'Missing @param annotation for parameter `{}` in exported field `{}`.'
145-
DIAG_MISSING_LOCAL_EXPORT_DOC_RETURN =
146-
'Missing @return annotation at index `{}` in exported local function `{}`.'
145+
DIAG_MISSING_EXPORTED_FIELD_DOC_RETURN =
146+
'Missing @return annotation at index `{}` in exported field `{}`.'
147147
DIAG_INCOMPLETE_SIGNATURE_DOC_PARAM =
148148
'Incomplete signature. Missing @param annotation for parameter `{}`.'
149149
DIAG_INCOMPLETE_SIGNATURE_DOC_RETURN =

0 commit comments

Comments
 (0)