getAlbumTypeDesc static method
Returns the translation key for the album release type description per app flavour.
Implementation
static String getAlbumTypeDesc() {
switch (AppConfig.instance.appInUse) {
case AppInUse.e: return 'albumTypeDescE';
case AppInUse.c: return 'albumTypeDescC';
default: return 'albumTypeDescG';
}
}