mirror of
https://github.com/ppy/osu.git
synced 2025-01-12 18:23:04 +08:00
Adjust localisations slightly
This commit is contained in:
parent
d11e56b8bb
commit
20359c90bc
@ -35,14 +35,14 @@ namespace osu.Game.Localisation
|
|||||||
public static LocalisableString SetPreviewPointToCurrent => new TranslatableString(getKey(@"set_preview_point_to_current"), @"Set preview point to current time");
|
public static LocalisableString SetPreviewPointToCurrent => new TranslatableString(getKey(@"set_preview_point_to_current"), @"Set preview point to current time");
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// "Legacy format (.osz)"
|
/// "For editing (.olz)"
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public static LocalisableString ExportLegacyFormat => new TranslatableString(getKey(@"export_legacy_format"), @"Legacy format (.osz)");
|
public static LocalisableString ExportForEditing => new TranslatableString(getKey(@"export_for_editing"), @"For editing (.olz)");
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// "New format (.olz)"
|
/// "For compatibility (.osz)"
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public static LocalisableString ExportNewFormat => new TranslatableString(getKey(@"export_new_format"), @"New format (.olz)");
|
public static LocalisableString ExportForCompatibility => new TranslatableString(getKey(@"export_for_compatibility"), @"For compatibility (.osz)");
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// "Create new difficulty"
|
/// "Create new difficulty"
|
||||||
|
@ -998,7 +998,7 @@ namespace osu.Game.Screens.Edit
|
|||||||
private List<MenuItem> createFileMenuItems() => new List<MenuItem>
|
private List<MenuItem> createFileMenuItems() => new List<MenuItem>
|
||||||
{
|
{
|
||||||
new EditorMenuItem(WebCommonStrings.ButtonsSave, MenuItemType.Standard, () => Save()),
|
new EditorMenuItem(WebCommonStrings.ButtonsSave, MenuItemType.Standard, () => Save()),
|
||||||
createExportPackageMenu(),
|
createExportMenu(),
|
||||||
new EditorMenuItemSpacer(),
|
new EditorMenuItemSpacer(),
|
||||||
createDifficultyCreationMenu(),
|
createDifficultyCreationMenu(),
|
||||||
createDifficultySwitchMenu(),
|
createDifficultySwitchMenu(),
|
||||||
@ -1008,12 +1008,12 @@ namespace osu.Game.Screens.Edit
|
|||||||
new EditorMenuItem(CommonStrings.Exit, MenuItemType.Standard, this.Exit)
|
new EditorMenuItem(CommonStrings.Exit, MenuItemType.Standard, this.Exit)
|
||||||
};
|
};
|
||||||
|
|
||||||
private EditorMenuItem createExportPackageMenu()
|
private EditorMenuItem createExportMenu()
|
||||||
{
|
{
|
||||||
var exportItems = new List<MenuItem>
|
var exportItems = new List<MenuItem>
|
||||||
{
|
{
|
||||||
new EditorMenuItem(EditorStrings.ExportNewFormat, MenuItemType.Standard, exportBeatmap) { Action = { Disabled = !RuntimeInfo.IsDesktop } },
|
new EditorMenuItem(EditorStrings.ExportForEditing, MenuItemType.Standard, exportBeatmap) { Action = { Disabled = !RuntimeInfo.IsDesktop } },
|
||||||
new EditorMenuItem(EditorStrings.ExportLegacyFormat, MenuItemType.Standard, exportLegacyBeatmap) { Action = { Disabled = !RuntimeInfo.IsDesktop } },
|
new EditorMenuItem(EditorStrings.ExportForCompatibility, MenuItemType.Standard, exportLegacyBeatmap) { Action = { Disabled = !RuntimeInfo.IsDesktop } },
|
||||||
};
|
};
|
||||||
|
|
||||||
return new EditorMenuItem(CommonStrings.Export) { Items = exportItems };
|
return new EditorMenuItem(CommonStrings.Export) { Items = exportItems };
|
||||||
|
Loading…
Reference in New Issue
Block a user