diff --git a/osu.Game/Localisation/CommonStrings.cs b/osu.Game/Localisation/CommonStrings.cs
index 243a100029..26e344ec71 100644
--- a/osu.Game/Localisation/CommonStrings.cs
+++ b/osu.Game/Localisation/CommonStrings.cs
@@ -39,11 +39,21 @@ namespace osu.Game.Localisation
///
public static LocalisableString Default => new TranslatableString(getKey(@"default"), @"Default");
+ ///
+ /// "Rename"
+ ///
+ public static LocalisableString Rename => new TranslatableString(getKey(@"rename"), @"Rename");
+
///
/// "Export"
///
public static LocalisableString Export => new TranslatableString(getKey(@"export"), @"Export");
+ ///
+ /// "Delete"
+ ///
+ public static LocalisableString Delete => new TranslatableString(getKey(@"delete"), @"Delete");
+
///
/// "Width"
///
diff --git a/osu.Game/Overlays/Settings/Sections/SkinSection.cs b/osu.Game/Overlays/Settings/Sections/SkinSection.cs
index a89d5e2f4a..1f220138de 100644
--- a/osu.Game/Overlays/Settings/Sections/SkinSection.cs
+++ b/osu.Game/Overlays/Settings/Sections/SkinSection.cs
@@ -165,7 +165,7 @@ namespace osu.Game.Overlays.Settings.Sections
[BackgroundDependencyLoader]
private void load()
{
- Text = "Rename";
+ Text = CommonStrings.Rename;
Action = this.ShowPopover;
}
@@ -193,7 +193,7 @@ namespace osu.Game.Overlays.Settings.Sections
[BackgroundDependencyLoader]
private void load()
{
- Text = "Export";
+ Text = CommonStrings.Export;
Action = export;
}
@@ -231,7 +231,7 @@ namespace osu.Game.Overlays.Settings.Sections
[BackgroundDependencyLoader]
private void load()
{
- Text = "Delete";
+ Text = CommonStrings.Delete;
Action = delete;
}