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 = feature1,feature2
|
||||||
enable =
|
enable =
|
||||||
|
|
||||||
|
internationalization = true
|
||||||
|
|
||||||
# feature1 = true
|
# feature1 = true
|
||||||
# feature2 = false
|
# feature2 = false
|
||||||
|
|
||||||
|
@ -270,8 +270,8 @@ var (
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
Name: "internationalization",
|
Name: "internationalization",
|
||||||
Description: "Enables work-in-progress internationalization",
|
Description: "Enables internationalization",
|
||||||
State: FeatureStateAlpha,
|
State: FeatureStateStable,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
Name: "topnav",
|
Name: "topnav",
|
||||||
|
@ -196,7 +196,7 @@ const (
|
|||||||
FlagDataConnectionsConsole = "dataConnectionsConsole"
|
FlagDataConnectionsConsole = "dataConnectionsConsole"
|
||||||
|
|
||||||
// FlagInternationalization
|
// FlagInternationalization
|
||||||
// Enables work-in-progress internationalization
|
// Enables internationalization
|
||||||
FlagInternationalization = "internationalization"
|
FlagInternationalization = "internationalization"
|
||||||
|
|
||||||
// FlagTopnav
|
// FlagTopnav
|
||||||
|
@ -187,7 +187,7 @@ export class SharedPreferences extends PureComponent<Props, State> {
|
|||||||
<span className={styles.labelText}>
|
<span className={styles.labelText}>
|
||||||
<Trans i18nKey="shared-preferences.fields.locale-label">Language</Trans>
|
<Trans i18nKey="shared-preferences.fields.locale-label">Language</Trans>
|
||||||
</span>
|
</span>
|
||||||
<FeatureBadge featureState={FeatureState.alpha} />
|
<FeatureBadge featureState={FeatureState.beta} />
|
||||||
</Label>
|
</Label>
|
||||||
}
|
}
|
||||||
data-testid="User preferences language drop down"
|
data-testid="User preferences language drop down"
|
||||||
|
Loading…
Reference in New Issue
Block a user