Files
dspace-angular/src/config/lang-config.interface.ts
2019-01-16 20:01:14 +01:00

13 lines
510 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 LangConfig extends Config {
code: string;
label: string;
active: boolean;
}