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.lowest_entropy": "Informationsanalyse",
|
||||||
"hex.builtin.information_section.info_analysis": "Schichtverteilung",
|
"hex.builtin.information_section.info_analysis": "Schichtverteilung",
|
||||||
"hex.builtin.information_section.info_analysis.layered_distribution": "Tiefste Blockentropie",
|
"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.information_section.magic": "Magic Informationen",
|
||||||
"hex.builtin.view.information.magic_db_added": "Magic Datenbank hinzugefügt!",
|
"hex.builtin.view.information.magic_db_added": "Magic Datenbank hinzugefügt!",
|
||||||
"hex.builtin.information_section.magic.mime": "MIME Typ",
|
"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": "Information analysis",
|
||||||
"hex.builtin.information_section.info_analysis.layered_distribution": "Layered distribution",
|
"hex.builtin.information_section.info_analysis.layered_distribution": "Layered distribution",
|
||||||
"hex.builtin.information_section.magic": "Magic information",
|
"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.view.information.magic_db_added": "Magic database added!",
|
||||||
"hex.builtin.information_section.magic.mime": "MIME Type",
|
"hex.builtin.information_section.magic.mime": "MIME Type",
|
||||||
"hex.builtin.view.information.name": "Data Information",
|
"hex.builtin.view.information.name": "Data Information",
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
"fallback": false,
|
"fallback": false,
|
||||||
"language": "German",
|
"language": "German",
|
||||||
"translations": {
|
"translations": {
|
||||||
|
"hex.yara.information_section.advanced_data_info": "Erweiterte Dateninformationen",
|
||||||
"hex.yara_rules.view.yara.error": "Yara Kompilerfehler: {0}",
|
"hex.yara_rules.view.yara.error": "Yara Kompilerfehler: {0}",
|
||||||
"hex.yara_rules.view.yara.header.matches": "Treffer",
|
"hex.yara_rules.view.yara.header.matches": "Treffer",
|
||||||
"hex.yara_rules.view.yara.header.rules": "Regeln",
|
"hex.yara_rules.view.yara.header.rules": "Regeln",
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
"country": "United States",
|
"country": "United States",
|
||||||
"fallback": true,
|
"fallback": true,
|
||||||
"translations": {
|
"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.error": "Yara Compiler error: {0}",
|
||||||
"hex.yara_rules.view.yara.header.matches": "Matches",
|
"hex.yara_rules.view.yara.header.matches": "Matches",
|
||||||
"hex.yara_rules.view.yara.header.rules": "Rules",
|
"hex.yara_rules.view.yara.header.rules": "Rules",
|
||||||
|
|
|
@ -11,10 +11,10 @@
|
||||||
|
|
||||||
namespace hex::plugin::yara {
|
namespace hex::plugin::yara {
|
||||||
|
|
||||||
class InformationYaraRules : public ContentRegistry::DataInformation::InformationSection {
|
class InformationAdvancedFileInformation : public ContentRegistry::DataInformation::InformationSection {
|
||||||
public:
|
public:
|
||||||
InformationYaraRules() : InformationSection("hex.yara.information_section.yara_rules") { }
|
InformationAdvancedFileInformation() : InformationSection("hex.yara.information_section.advanced_file_info") { }
|
||||||
~InformationYaraRules() override = default;
|
~InformationAdvancedFileInformation() override = default;
|
||||||
|
|
||||||
struct Category {
|
struct Category {
|
||||||
struct Comperator {
|
struct Comperator {
|
||||||
|
@ -86,7 +86,7 @@ namespace hex::plugin::yara {
|
||||||
};
|
};
|
||||||
|
|
||||||
void registerDataInformationSections() {
|
void registerDataInformationSections() {
|
||||||
ContentRegistry::DataInformation::addInformationSection<InformationYaraRules>();
|
ContentRegistry::DataInformation::addInformationSection<InformationAdvancedFileInformation>();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue