e9b492a287
### Problem description
ImHex didn't support Hungarian :(
### Implementation description
I translated ImHex to Hungarian :)
### Translation Coverage
| Plugin | Percentage |
|---------------|------------|
| builtin | 99% |
| diffing | 100% |
| disassembler | 100% |
| hashes | 95% |
| script_loader | 100% |
| ui | 100% |
| visualizers | 100% |
| windows | 100% |
| yara_rules | 100% |
### Additional Notes
There are four Hungarian "special" characters that fall outside the
default Unicode ranges loaded by ImHex, resulting in them being replaced
with the "�" character. These letters are Ő (U+0150), ő (U+0151), Ű
(U+0170) and ű (U+0171), all included in the Latin Extended-A Unicode
block.
The easy fix for this is to include the "Unicode Latin Extended-A" range
when loading the font glyphs in
[init_tasks.cpp:189](99abc4e78a/plugins/builtin/source/content/init_tasks.cpp (L189)
).
This change would also unlock the full character range of Bosnian,
Croatian, Czech, Estonian, Latvian, Lithuanian, Maltese, Polish,
Romanian, Slovak, Slovene and Turkish. I can add the commit to this PR
if maintainers are okay with it. **EDIT:** Added a commit that loads
Latin Extended-A by default.
Also note that some words are longer than their English counterparts,
resulting in certain UI labels overflowing from their parent containers,
and being cut off. I might change some of the longer labels to be more
compact in the future, but the container size limitations will have to
be addressed eventually (e.g. with horizontal scrollbars).
---------
Co-authored-by: Nik <werwolv98@gmail.com>
23 lines
1.2 KiB
JSON
23 lines
1.2 KiB
JSON
{
|
|
"code": "hu_HU",
|
|
"language": "Hungarian",
|
|
"country": "Hungary",
|
|
"fallback": false,
|
|
"translations": {
|
|
"hex.yara.information_section.advanced_data_info": "Haladó adat információ",
|
|
"hex.yara.information_section.advanced_data_info.no_information": "Nem található további információ",
|
|
"hex.yara_rules.view.yara.error": "Yara Compiler hiba: {0}",
|
|
"hex.yara_rules.view.yara.header.matches": "Találatok",
|
|
"hex.yara_rules.view.yara.header.rules": "Szabályok",
|
|
"hex.yara_rules.view.yara.match": "Találat szabályok",
|
|
"hex.yara_rules.view.yara.matches.identifier": "Azonosító",
|
|
"hex.yara_rules.view.yara.matches.variable": "Változó",
|
|
"hex.yara_rules.view.yara.matching": "Keresés...",
|
|
"hex.yara_rules.view.yara.name": "Yara szabályok",
|
|
"hex.yara_rules.view.yara.no_rules": "Nem találhatók a YARA szabályok. Helyezd őket az ImHex 'yara' mappájába",
|
|
"hex.yara_rules.view.yara.reload": "Újratöltés",
|
|
"hex.yara_rules.view.yara.reset": "Visszaállítás",
|
|
"hex.yara_rules.view.yara.rule_added": "Yara szabály hozzáadva!",
|
|
"hex.yara_rules.view.yara.whole_data": "A teljes fájl talál!"
|
|
}
|
|
} |