1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 04:52:57 +08:00

Mark exporter extensions as untranslatable

This commit is contained in:
Bartłomiej Dach 2023-05-06 19:42:28 +02:00
parent 3f63fd7f4d
commit 510484011c
No known key found for this signature in database
3 changed files with 3 additions and 3 deletions

View File

@ -13,6 +13,6 @@ namespace osu.Game.Database
{
}
protected override string FileExtension => ".osz";
protected override string FileExtension => @".osz";
}
}

View File

@ -26,7 +26,7 @@ namespace osu.Game.Database
return filename;
}
protected override string FileExtension => ".osr";
protected override string FileExtension => @".osr";
public override void ExportToStream(ScoreInfo model, Stream outputStream, ProgressNotification? notification, CancellationToken cancellationToken = default)
{

View File

@ -13,6 +13,6 @@ namespace osu.Game.Database
{
}
protected override string FileExtension => ".osk";
protected override string FileExtension => @".osk";
}
}