mirror of https://github.com/WerWolv/ImHex.git
fix: Added missing translations
This commit is contained in:
parent
684c339309
commit
daf007fae7
|
@ -853,6 +853,7 @@
|
|||
"hex.builtin.information_section.info_analysis.lowest_entropy": "Informationsanalyse",
|
||||
"hex.builtin.information_section.info_analysis": "Schichtverteilung",
|
||||
"hex.builtin.information_section.info_analysis.layered_distribution": "Tiefste Blockentropie",
|
||||
"hex.builtin.view.information.error_processing_section": "Auswerten von Informationssektion {0} fehlgeschlagen: '{1}'",
|
||||
"hex.builtin.information_section.magic": "Magic Informationen",
|
||||
"hex.builtin.view.information.magic_db_added": "Magic Datenbank hinzugefügt!",
|
||||
"hex.builtin.information_section.magic.mime": "MIME Typ",
|
||||
|
|
|
@ -844,6 +844,7 @@
|
|||
"hex.builtin.information_section.info_analysis": "Information analysis",
|
||||
"hex.builtin.information_section.info_analysis.layered_distribution": "Layered distribution",
|
||||
"hex.builtin.information_section.magic": "Magic information",
|
||||
"hex.builtin.view.information.error_processing_section": "Failed to process information section {0}: '{1}'",
|
||||
"hex.builtin.view.information.magic_db_added": "Magic database added!",
|
||||
"hex.builtin.information_section.magic.mime": "MIME Type",
|
||||
"hex.builtin.view.information.name": "Data Information",
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
"fallback": false,
|
||||
"language": "German",
|
||||
"translations": {
|
||||
"hex.yara.information_section.advanced_data_info": "Erweiterte Dateninformationen",
|
||||
"hex.yara_rules.view.yara.error": "Yara Kompilerfehler: {0}",
|
||||
"hex.yara_rules.view.yara.header.matches": "Treffer",
|
||||
"hex.yara_rules.view.yara.header.rules": "Regeln",
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
"country": "United States",
|
||||
"fallback": true,
|
||||
"translations": {
|
||||
"hex.yara.information_section.advanced_data_info": "Advanced Data Information",
|
||||
"hex.yara_rules.view.yara.error": "Yara Compiler error: {0}",
|
||||
"hex.yara_rules.view.yara.header.matches": "Matches",
|
||||
"hex.yara_rules.view.yara.header.rules": "Rules",
|
||||
|
|
|
@ -11,10 +11,10 @@
|
|||
|
||||
namespace hex::plugin::yara {
|
||||
|
||||
class InformationYaraRules : public ContentRegistry::DataInformation::InformationSection {
|
||||
class InformationAdvancedFileInformation : public ContentRegistry::DataInformation::InformationSection {
|
||||
public:
|
||||
InformationYaraRules() : InformationSection("hex.yara.information_section.yara_rules") { }
|
||||
~InformationYaraRules() override = default;
|
||||
InformationAdvancedFileInformation() : InformationSection("hex.yara.information_section.advanced_file_info") { }
|
||||
~InformationAdvancedFileInformation() override = default;
|
||||
|
||||
struct Category {
|
||||
struct Comperator {
|
||||
|
@ -86,7 +86,7 @@ namespace hex::plugin::yara {
|
|||
};
|
||||
|
||||
void registerDataInformationSections() {
|
||||
ContentRegistry::DataInformation::addInformationSection<InformationYaraRules>();
|
||||
ContentRegistry::DataInformation::addInformationSection<InformationAdvancedFileInformation>();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue