1
0
mirror of synced 2025-02-17 18:59:21 +01:00

fix: add _lang suffix to "Load into memory" localization string (#1267)

This commit is contained in:
iTrooz 2023-08-28 02:21:41 +02:00 committed by GitHub
parent 550392c8d6
commit 10ad239fb9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -228,7 +228,7 @@ namespace hex::plugin::builtin {
return {
{ "hex.builtin.provider.file.menu.open_folder"_lang, [this] { fs::openFolderWithSelectionExternal(this->m_path); } },
{ "hex.builtin.provider.file.menu.open_file"_lang, [this] { fs::openFileExternal(this->m_path); } },
{ "hex.builtin.provider.file.menu.into_memory", [this] { this->convertToMemoryFile(); } }
{ "hex.builtin.provider.file.menu.into_memory"_lang, [this] { this->convertToMemoryFile(); } }
};
}