File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -286,18 +286,18 @@ export class Application extends AbstractComponent<
286
286
if ( ! this . internationalization . hasTranslations ( this . lang ) ) {
287
287
// Not internationalized as by definition we don't know what to include here.
288
288
this . logger . warn (
289
- `Options specified "${ this . lang } " as the language to use, but TypeDoc does not support it.` as TranslatedString ,
289
+ `Options specified "${ this . lang } " as the language to use, but TypeDoc cannot provide translations for it.` as TranslatedString ,
290
290
) ;
291
291
this . logger . info (
292
- ( "The supported languages are:\n\t" +
292
+ ( "The languages that translations are available for are:\n\t" +
293
293
this . internationalization
294
294
. getSupportedLanguages ( )
295
295
. join ( "\n\t" ) ) as TranslatedString ,
296
296
) ;
297
297
this . logger . info (
298
298
"You can define/override local locales with the `locales` option, or contribute them to TypeDoc!" as TranslatedString ,
299
299
) ;
300
- } else if ( this . lang === "jp" ) {
300
+ } else if ( this . lang === "jp" ) {
301
301
this . logger . warn (
302
302
// Only Japanese see this. Meaning: "jp" is going to be removed in the future. Please designate "ja" instead.
303
303
"「jp」は将来削除されます。代わりに「ja」を指定してください。" as TranslatedString ,
You can’t perform that action at this time.
0 commit comments