1
0
mirror of synced 2024-11-12 02:00:52 +01:00

fix: Correct more language strings

This commit is contained in:
WerWolv 2024-07-27 16:54:05 +02:00
parent 3cde4472c8
commit c3ddd68866
2 changed files with 3 additions and 1 deletions

View File

@ -58,6 +58,8 @@
"hex.builtin.achievement.misc.analyze_file.desc": "Analyze the bytes of your data by using the 'Analyze' option in the Data Information view.",
"hex.builtin.achievement.misc.download_from_store.name": "There's an app for that",
"hex.builtin.achievement.misc.download_from_store.desc": "Download any item from the Content Store",
"hex.builtin.background_service.network_interface": "Network Interface",
"hex.builtin.background_service.auto_backup": "Auto Backup",
"hex.builtin.command.calc.desc": "Calculator",
"hex.builtin.command.convert.desc": "Unit conversion",
"hex.builtin.command.convert.hexadecimal": "hexadecimal",

View File

@ -654,7 +654,7 @@ namespace hex::plugin::builtin {
return;
fs::openFileBrowser(fs::DialogMode::Save, {}, [provider](const auto &path) {
PopupBlockingTask::open(TaskManager::createTask("Saving..."_lang, TaskManager::NoProgress, [=](Task &){
PopupBlockingTask::open(TaskManager::createTask("hex.builtin.task.saving_data"_lang, TaskManager::NoProgress, [=](Task &){
provider->saveAs(path);
}));
});