@spotinst/spinnaker-deck
Version:
Spinnaker-Deck service, forked with support to Spotinst
18 lines (15 loc) • 449 B
text/typescript
export class CustomLabels {
private static labels: Map<string, string> = new Map<string, string>();
/**
* Returns the overridden label, or the label if no override is registered
*/
public static get(label: string): string {
return this.labels.get(label) || label;
}
/**
* Adds a label to the registry.
*/
public static register(label: string, translation: string): void {
this.labels.set(label, translation);
}
}