mirror of
https://github.com/an-anime-team/sleepy-launcher.git
synced 2025-04-02 23:13:28 +03:00
feat(i18n): translated wine-downloading error toasts
This commit is contained in:
parent
84697bb917
commit
5ddbe87830
3 changed files with 8 additions and 4 deletions
|
@ -21,10 +21,12 @@ package-not-available = Package is not available: {$package}
|
||||||
wine-download-error = Failed to download wine
|
wine-download-error = Failed to download wine
|
||||||
wine-unpack-errror = Failed to unpack wine
|
wine-unpack-errror = Failed to unpack wine
|
||||||
wine-install-failed = Failed to install wine
|
wine-install-failed = Failed to install wine
|
||||||
dxvk-download-error = Failed to download dxvk
|
dxvk-download-error = Failed to download DXVK
|
||||||
dxvk-unpack-error = Failed to unpack dxvk
|
dxvk-unpack-error = Failed to unpack DXVK
|
||||||
dxvk-apply-error = Failed to apply DXVK
|
dxvk-apply-error = Failed to apply DXVK
|
||||||
|
|
||||||
|
downloaded-wine-list-failed = Failed to list downloaded wine versions
|
||||||
|
|
||||||
patch-sync-failed = Failed to sync patch folder
|
patch-sync-failed = Failed to sync patch folder
|
||||||
patch-state-check-failed = Failed to check patch folder state
|
patch-state-check-failed = Failed to check patch folder state
|
||||||
game-patching-error = Failed to patch game
|
game-patching-error = Failed to patch game
|
||||||
|
|
|
@ -25,6 +25,8 @@ dxvk-download-error = Ошибка скачивания DXVK
|
||||||
dxvk-unpack-error = Ошибка распаковки DXVK
|
dxvk-unpack-error = Ошибка распаковки DXVK
|
||||||
dxvk-apply-error = Не удалось применить DXVK
|
dxvk-apply-error = Не удалось применить DXVK
|
||||||
|
|
||||||
|
downloaded-wine-list-failed = Не удалось получить список установленных версий Wine
|
||||||
|
|
||||||
patch-sync-failed = Ошибка синхронизации папки патча
|
patch-sync-failed = Ошибка синхронизации папки патча
|
||||||
patch-state-check-failed = Ошибка проверки статуса папки патча
|
patch-state-check-failed = Ошибка проверки статуса папки патча
|
||||||
game-patching-error = Не удалось установить патч игры
|
game-patching-error = Не удалось установить патч игры
|
||||||
|
|
|
@ -845,7 +845,7 @@ impl SimpleComponent for App {
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
|
|
||||||
Err(err) => self.toast("Failed to init wine version installer", Some(&err.to_string()))
|
Err(err) => self.toast(tr("wine-install-failed"), Some(err.to_string()))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -857,7 +857,7 @@ impl SimpleComponent for App {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Err(err) => self.toast("Failed to list downloaded wine versions", Some(&err.to_string()))
|
Err(err) => self.toast(tr("downloaded-wine-list-failed"), Some(err.to_string()))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue