mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Internationalization: Enable internationalization by default (#59204)
* Enable internationalization feature flag by default * Change i18n feature to beta * Set i18n feature flag to stable * update features
This commit is contained in:
parent
6d94fa6aa5
commit
ba0ac08465
@ -1272,6 +1272,8 @@ license_path =
|
||||
# enable = feature1,feature2
|
||||
enable =
|
||||
|
||||
internationalization = true
|
||||
|
||||
# feature1 = true
|
||||
# feature2 = false
|
||||
|
||||
|
@ -270,8 +270,8 @@ var (
|
||||
},
|
||||
{
|
||||
Name: "internationalization",
|
||||
Description: "Enables work-in-progress internationalization",
|
||||
State: FeatureStateAlpha,
|
||||
Description: "Enables internationalization",
|
||||
State: FeatureStateStable,
|
||||
},
|
||||
{
|
||||
Name: "topnav",
|
||||
|
@ -196,7 +196,7 @@ const (
|
||||
FlagDataConnectionsConsole = "dataConnectionsConsole"
|
||||
|
||||
// FlagInternationalization
|
||||
// Enables work-in-progress internationalization
|
||||
// Enables internationalization
|
||||
FlagInternationalization = "internationalization"
|
||||
|
||||
// FlagTopnav
|
||||
|
@ -187,7 +187,7 @@ export class SharedPreferences extends PureComponent<Props, State> {
|
||||
<span className={styles.labelText}>
|
||||
<Trans i18nKey="shared-preferences.fields.locale-label">Language</Trans>
|
||||
</span>
|
||||
<FeatureBadge featureState={FeatureState.alpha} />
|
||||
<FeatureBadge featureState={FeatureState.beta} />
|
||||
</Label>
|
||||
}
|
||||
data-testid="User preferences language drop down"
|
||||
|
Loading…
Reference in New Issue
Block a user