Two use cases:
- When defining translation strings within enums
export enum GPSFieldType {
LOCATION = 'LV.GPS_INFO.LOCATION',
MANUAL_DEPTH = 'LV.GPS_INFO.MANUAL_DEPTH',
...
...
...
}
which we use to more easily access specific translations.
2. When defining translation strings within objects
options: [
{
title: 'LV.SYSTEM_MAPPING.INTERNAL_GPS',
value: NeedQPSQualityKey.InternalGPS,
},
]
In both cases translations are marked as zombies
Two use cases:
which we use to more easily access specific translations.
2. When defining translation strings within objects
In both cases translations are marked as zombies