summaryrefslogtreecommitdiff
path: root/enigma/src/main/resources/lang (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove legacy mapping handling (#560)Gravatar modmuss2025-09-131-1/+0
| | | | | | | * Remove legacy mapping handling * Minor cleanup * More cleanup
* Update to Mapping-IO 0.7 (#550)Gravatar Julian Burner2025-01-131-0/+1
|
* Update to Mapping-IO 0.6 (#547)Gravatar NebelNidas2024-08-271-3/+11
| | | | | | | * Update to Mapping-IO 0.6 * Make `legacy` suffix translatable * Only respect `use_mappingio=false` when Enigma has an alternative reader/writer
* Add file extensions to open and save dialogs (#532)Gravatar Juuz2024-04-061-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | * Add file extensions to Save As dialog * Include leading dots in file extensions for simplicity * Add file extensions to open mappings dialogs * Remove unused tinyMappingsFileChooser * Use the same file chooser for all mapping IO * Fix NPE by using Enigma directories as the default mapping format Fixes #533. * Fix code style * Allow .mappings extension for single Enigma files * gradlew.bat --------- Co-authored-by: NebelNidas <nebelnidas@gmail.com>
* Add progress listener to Mapping-IO conversion; deduplicate lang filesGravatar NebelNidas2023-10-094-36/+20
|
* Search dialog improvements (#529)Gravatar YanisBft2023-09-251-0/+1
| | | | | | | | | * Improve search dialogs * fix checkstyle * change search class keystroke * better dialog title & don't calculate score if not needed
* Add `Original name` field to identifier panel (#472)Gravatar Julian Burner2023-09-251-0/+1
| | | | | | | | | * Add `original name` field to identifier panel * Fix identifier panel entry order for methods --------- Co-authored-by: ByMartrixx <bymartrixx@gmail.com>
* Allow shadowing fields (#475)Gravatar Julian Burner2023-04-281-0/+2
| | | | | | | | | | | * Fix Enigma not allowing to shadow static fields * Fix mapping uniqueness verification * Allow shadowing any field * Fix a message Co-authored-by: ByMartrixx <bymartrixx@gmail.com>
* Allow pasting directly on renamable tokens (#478)Gravatar Julian Burner2022-12-071-0/+1
| | | Co-authored-by: ByMartrixx <bymartrixx@gmail.com>
* Allow filtering of packages in Mapping Stats window (#481)Gravatar Julian Burner2022-12-071-0/+2
| | | Co-authored-by: Eli Orona <eliorona@live.com>
* Add Recaf format support (#451)Gravatar Toshimichi09152022-06-124-0/+4
| | | | | | | * Add Recaf format support * Update language files Co-authored-by: 2xsaiko <me@dblsaiko.net>
* Update ja_jp.json (#450)Gravatar Toshimichi09152022-06-121-25/+48
|
* feat(i18n): update Chinese(Simplified) translation (#441)Gravatar xtexChooser2022-02-051-28/+28
| | | | | * Update zh_cn.json * Update zh_cn.json
* Add --single-class-tree argument that puts all classes into deobf panel & ↵Gravatar Daniel Chýlek2021-07-081-0/+1
| | | | | | | | | | | hides obf panel (#406) * Add --single-class-tree argument that puts all classes into deobf panel & hides obf panel Parchment uses a jar with already remapped classes, but Enigma puts them into panel with obf classes which sorts classes by length. This option puts all classes into the deobf panel, and completely hides the obf panel. * Address comments * Comment begone
* Expand All & Collapse All in deobf panel (#412)Gravatar YanisBft2021-06-292-3/+7
| | | | | * Expand All & Collapse All in deobf panel * fixed smth that was bothering me
* Structure panel options (#400)Gravatar YanisBft2021-06-153-3/+26
| | | | | | | | | | | | | | | * Structure panel options * changes * always show inner classes in the tree * workaround for toString() and similar * show constructor methods depending on the class obfuscation * use ListCellRenderer instead of toString * list cell renderer
* Update translationsGravatar Yanis482021-04-074-6/+9
|
* New ways to searchGravatar Yanis482021-04-071-1/+4
|
* Copy method/field descriptor on clickGravatar Yanis482021-04-022-0/+6
|
* Merge pull request #361 from modmuss50/recordsGravatar 2xsaiko2021-03-251-0/+1
|\ | | | | Record support
| * WIP full record supportGravatar modmuss502021-03-191-0/+1
| |
* | Migrate to FlatLafGravatar Juuxel2021-03-151-0/+1
|/ | | | | | | | | | Fixes #355. - Replaces the Darcula look and feel with FlatLaf Darcula, which does not have the same rendering bugs with CJK characters (at least on Windows 10). - Replaces Metal with FlatLaf Light as the default look and feel. Metal is provided as a new, separate theme option.
* Revert translation for "menu.file.exit"Gravatar Toshimichi09152021-02-231-1/+1
|
* Use proper words in ja_jp.jsonGravatar Toshimichi09152021-02-231-4/+4
|
* Add ja_jp.jsonGravatar Toshimichi09152021-02-231-0/+201
|
* Structure panel!Gravatar Yanis482020-12-142-0/+4
|
* Improvements to deobf panel popup menuGravatar Yanis482020-10-312-2/+4
|
* Add "include synthetic parameters" to mapping stats & save options (#309)Gravatar YanisBft2020-10-272-4/+17
| | | | | | | | | * Add "include synthetic members" to mapping stats & save options * bump version * include synthetic parameters * capitalization
* Add popup menu to deobf panel to quickly rename a package/classGravatar Yanis482020-10-112-0/+2
|
* Configuration stuff (#301)Gravatar 2xsaiko2020-08-044-25/+37
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Begin writing new config system * Make config work * Save window size and position * Add editor font chooser * Use *.ini for windows and mac instead of *rc * Allow for changing language without having to restart the program * Save selected directory in file dialogs * Make dialog visible after moving it to the correct position * Don't change theme on the fly since it's broken * Remove unused gui parameter * Use xdg-open to open URLs on Linux since Desktop.browse doesn't work, at least not on my PC * Fix default proposed highlight color * Multi font selection dialog thingy * Remember network options * Make font selection dialog actually work * Collapse general actions ("OK", "Cancel", ..) into one translation * Localize font dialog * Use enum name when saving colors for consistency with currently selected theme * Save size of split panes * Import old config * Add test & fix some parts of the config serializer * TranslationChangeListener/TranslationUtil -> LanguageChangeListener/LanguageUtil
* Revamp About dialogGravatar 2xsaiko2020-07-232-0/+4
|
* Add menu entry to reload jar & mappings from disk (#263)Gravatar 2xsaiko2020-07-061-0/+2
| | | | | | | | | | * Add button to reload jar & mappings from disk * Disable menu entry when currently loading * Add menu entry that reloads mappings only * Remove duplicate user query code
* Improve stats gen to show percentages (#272)Gravatar modmuss502020-07-062-2/+5
| | | | | | | | | * Improve stats gen to show percentages * Improve stats dialog * Update stats dialog title and button text Co-authored-by: 2xsaiko <git@dblsaiko.net>
* Top-level package option when generating stats (#264)Gravatar Yanis482020-06-082-7/+33
| | | | | * Top-level package option when generating stats * forgot to rename this
* Add remap crash handlerGravatar 2xsaiko2020-06-072-0/+2
|
* Remove duplicate lang entryGravatar 2xsaiko2020-06-031-1/+0
|
* Improve CreateServerDialogGravatar 2xsaiko2020-06-031-8/+6
|
* Extend validation systemGravatar 2xsaiko2020-06-031-0/+1
|
* Improve connect dialogGravatar 2xsaiko2020-06-031-4/+6
|
* Editor tabs (#238)Gravatar 2xsaiko2020-06-032-3/+50
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Split into modules * Add validation utils from patch-1 branch * Tabs, iteration 1 * Delete RefreshMode * Load initial code asynchronously * Formatting * Don't do anything when close() gets called multiple times * Add scroll pane to editor * Fix getActiveEditor() * Rename components to more descriptive editorScrollPanes * Move ClassHandle and related types out of gui package * Fix tab title bar and other files not updating when changing mappings * Fix compilation errors * Start adding renaming functionality to new panel * Scale validation error marker * Make most user input validation use ValidationContext * Fix line numbers not displaying * Move CodeReader.navigateToToken into PanelEditor * Add close button on tabs * Remove TODO, it's fast enough * Remove JS script action for 2 seconds faster startup * Add comment on why the action is removed * ClassHandle/ClassHandleProvider documentation * Fix language file formatting * Bulk tab closing operations * Fix crash when renaming class and not connected to server * Fix caret jumping to the end of the file when opening * Increase identifier panel size * Make popup menu text translatable * Fix formatting * Fix compilation issues * CovertTextField -> ConvertingTextField * Retain formatting using spaces * Add de_de.json * Better decompilation error handling * Fix some caret related NPEs * Localization * Close editor on classhandle delete & fix onInvalidate not running on the Swing thread * Fix crash when trying to close a tab from onDeleted class handle listener Co-authored-by: Runemoro <runemoro1@gmail.com>
* Split GUI code to separate module (#242)Gravatar Runemoro2020-06-033-0/+446
* Split into modules * Post merge compile fixes Co-authored-by: modmuss50 <modmuss50@gmail.com>