-
Notifications
You must be signed in to change notification settings - Fork 433
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow retrieval from languageHashes using environment (#2702)
- Loading branch information
Andreas Mahnke
committed
Dec 7, 2023
1 parent
8ba14aa
commit 2e76ba3
Showing
5 changed files
with
25 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
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. | ||
*/ | ||
export interface LanguageHashesConfig extends Config { | ||
lang: string; | ||
md5: string; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters