ui: Fixed duplicate store localization ids

This commit is contained in:
WerWolv 2021-09-09 02:03:39 +02:00
parent c605986e8a
commit 6ee8c37cf5
4 changed files with 8 additions and 8 deletions

View File

@ -300,8 +300,8 @@ namespace hex::plugin::builtin {
{ "hex.view.store.name", "Content Store" },
{ "hex.view.store.desc", "Downloade extra Content von ImHex' online Datenbank" },
{ "hex.view.store.reload", "Neu laden" },
{ "hex.view.store.name", "Name" },
{ "hex.view.store.description", "Beschreibung" },
{ "hex.view.store.table.name", "Name" },
{ "hex.view.store.table.description", "Beschreibung" },
{ "hex.view.store.download", "Download" },
{ "hex.view.store.update", "Update" },
{ "hex.view.store.remove", "Entfernen" },

View File

@ -300,8 +300,8 @@ namespace hex::plugin::builtin {
{ "hex.view.store.name", "Content Store" },
{ "hex.view.store.desc", "Download new content from ImHex' online database" },
{ "hex.view.store.reload", "Reload" },
{ "hex.view.store.name", "Name" },
{ "hex.view.store.description", "Description" },
{ "hex.view.store.table.name", "Name" },
{ "hex.view.store.table.description", "Description" },
{ "hex.view.store.download", "Download" },
{ "hex.view.store.update", "Update" },
{ "hex.view.store.remove", "Remove" },

View File

@ -299,8 +299,8 @@ namespace hex::plugin::builtin {
//{ "hex.view.store.name", "Content Store" },
// { "hex.view.store.desc", "Download new content from ImHex' online database" },
// { "hex.view.store.reload", "Reload" },
// { "hex.view.store.name", "Name" },
// { "hex.view.store.description", "Description" },
// { "hex.view.store.table.name", "Name" },
// { "hex.view.store.table.description", "Description" },
// { "hex.view.store.download", "Download" },
// { "hex.view.store.update", "Update" },
// { "hex.view.store.remove", "Remove" },

View File

@ -38,8 +38,8 @@ namespace hex {
if (ImGui::BeginTabItem(title)) {
if (ImGui::BeginTable("##pattern_language", 3, ImGuiTableFlags_ScrollY | ImGuiTableFlags_Borders | ImGuiTableFlags_SizingStretchSame | ImGuiTableFlags_RowBg)) {
ImGui::TableSetupScrollFreeze(0, 1);
ImGui::TableSetupColumn("hex.view.store.name"_lang, ImGuiTableColumnFlags_WidthFixed);
ImGui::TableSetupColumn("hex.view.store.description"_lang, ImGuiTableColumnFlags_None);
ImGui::TableSetupColumn("hex.view.store.table.name"_lang, ImGuiTableColumnFlags_WidthFixed);
ImGui::TableSetupColumn("hex.view.store.table.description"_lang, ImGuiTableColumnFlags_None);
ImGui::TableSetupColumn("", ImGuiTableColumnFlags_WidthFixed);
ImGui::TableHeadersRow();