mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 13:22:55 +08:00
Change warning message about file duplication
- It was being glued in an ugly way that would have prevented sanely localising it. - Even on Linux, the filesystem (whichever one the user has chosen out of the multitude available) still needs to support hard links for them to have a chance of working.
This commit is contained in:
parent
04d4b4a6ce
commit
d4b3965967
@ -136,10 +136,9 @@ namespace osu.Game.Overlays.FirstRunSetup
|
|||||||
copyInformation.Text = "Lightweight linking of files is not supported on your operating system yet, so a copy of all files will be made during import.";
|
copyInformation.Text = "Lightweight linking of files is not supported on your operating system yet, so a copy of all files will be made during import.";
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
string mentionNtfs = RuntimeInfo.OS == RuntimeInfo.Platform.Windows ? " (and the file system is NTFS)." : ".";
|
copyInformation.Text = RuntimeInfo.OS == RuntimeInfo.Platform.Windows
|
||||||
|
? "A second copy of all files will be made during import. To avoid this, please make sure the lazer data folder is on the same drive as your previous osu! install (and the file system is NTFS)."
|
||||||
copyInformation.Text =
|
: "A second copy of all files will be made during import. To avoid this, please make sure the lazer data folder is on the same drive as your previous osu! install (and the file system supports hard links).";
|
||||||
$"A second copy of all files will be made during import. To avoid this, please make sure the lazer data folder is on the same drive as your previous osu! install{mentionNtfs}";
|
|
||||||
copyInformation.AddLink(GeneralSettingsStrings.ChangeFolderLocation, () =>
|
copyInformation.AddLink(GeneralSettingsStrings.ChangeFolderLocation, () =>
|
||||||
{
|
{
|
||||||
game?.PerformFromScreen(menu => menu.Push(new MigrationSelectScreen()));
|
game?.PerformFromScreen(menu => menu.Push(new MigrationSelectScreen()));
|
||||||
|
Loading…
Reference in New Issue
Block a user