From 84bbc1c86330005bdc675d8849a536ff65837d9b Mon Sep 17 00:00:00 2001 From: Andreas Mahnke Date: Fri, 8 Dec 2023 14:38:33 +0100 Subject: [PATCH] Adjusted comment --- src/config/languageHashes-config.interface.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/config/languageHashes-config.interface.ts b/src/config/languageHashes-config.interface.ts index 71c23bae542..372b1b87925 100644 --- a/src/config/languageHashes-config.interface.ts +++ b/src/config/languageHashes-config.interface.ts @@ -1,9 +1,8 @@ import { Config } from './config.interface'; /** - * An interface to represent a language in the configuration. A LangConfig has a code which should be the official - * language code for the language (e.g. ‘fr’), a label which should be the name of the language in that language - * (e.g. ‘Français’), and a boolean to determine whether or not it should be listed in the language select. + * An interface to represent a languageHash in the configuration. A LanguageHashConfig has a lang attribute which should be the official + * language code for the language (e.g. ‘fr’) and a md5 string representing the checksum of the language asset file. */ export interface LanguageHashesConfig extends Config { lang: string;