Continue Frontend localization (#9909)
Translation more content on the frontend
This commit is contained in:
@ -7,8 +7,18 @@ type FeatureFlagMetadata = {
|
||||
};
|
||||
|
||||
export type PublicFeatureFlag = {
|
||||
key: Extract<FeatureFlagKey, never>;
|
||||
key: Extract<FeatureFlagKey, FeatureFlagKey.IsLocalizationEnabled>;
|
||||
metadata: FeatureFlagMetadata;
|
||||
};
|
||||
|
||||
export const PUBLIC_FEATURE_FLAGS: PublicFeatureFlag[] = [];
|
||||
export const PUBLIC_FEATURE_FLAGS: PublicFeatureFlag[] = [
|
||||
{
|
||||
key: FeatureFlagKey.IsLocalizationEnabled,
|
||||
metadata: {
|
||||
label: 'Localization',
|
||||
description:
|
||||
"Our community is working on translating the app. Enable this flag and go to Settings > Experience to change your account's language.",
|
||||
imagePath: '',
|
||||
},
|
||||
},
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user