Files
imhex/plugins/diffing/romfs/lang/en_US.json
Zackary Newman 3c167c3306 feat: Add keyboard shortcuts to jump to the prev/next differences in diff view (#2445)
Adds keyboard shortcuts (currently `n` and `N`) in the diffing plugin
view to jump to the next/prev difference in the list.

IMPORTANT NOTE: Depends on changes made in a library submodule. [This
PR](https://github.com/WerWolv/libwolv/pull/34) must be accepted first.

---------

Co-authored-by: Nik <werwolv98@gmail.com>
2025-09-21 10:39:37 +02:00

24 lines
1.6 KiB
JSON

{
"hex.diffing.algorithm.simple.name": "Simple byte-by-byte algorithm",
"hex.diffing.algorithm.simple.description": "Naïve O(N) byte-by-byte comparison.\nCan only identify byte modifications and insertions / deletions at the end of the data",
"hex.diffing.algorithm.myers.name": "Myers's bit-vector algorithm",
"hex.diffing.algorithm.myers.description": "Smart O(N*M) diffing algorithm. Can identify modifications, insertions and deletions anywhere in the data",
"hex.diffing.algorithm.myers.settings.window_size": "Window size",
"hex.diffing.view.diff.name": "Diffing",
"hex.diffing.view.diff.added": "Added",
"hex.diffing.view.diff.modified": "Modified",
"hex.diffing.view.diff.provider_a": "Data Source A",
"hex.diffing.view.diff.provider_b": "Data Source B",
"hex.diffing.view.diff.changes": "Changes",
"hex.diffing.view.diff.removed": "Removed",
"hex.diffing.view.diff.algorithm": "Diffing Algorithm",
"hex.diffing.view.diff.settings": "No settings available",
"hex.diffing.view.diff.settings.no_settings": "No settings available",
"hex.diffing.view.diff.task.diffing": "Diffing data...",
"hex.diffing.view.diff.menu.file.jumping": "Jump Between Differences",
"hex.diffing.view.diff.menu.file.jumping.prev_diff": "Jump to Previous Difference",
"hex.diffing.view.diff.menu.file.jumping.next_diff": "Jump to Next Difference",
"hex.diffing.view.diff.jumping.beginning_reached": "No more differences till the beginning of the file",
"hex.diffing.view.diff.jumping.end_reached": "No more differences till the end of the file"
}