mirror of https://github.com/WerWolv/ImHex.git
ui: Fixed duplicate store localization ids
This commit is contained in:
parent
c605986e8a
commit
6ee8c37cf5
|
@ -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" },
|
||||
|
|
|
@ -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" },
|
||||
|
|
|
@ -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" },
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue