diff options
| author | 2021-06-15 23:30:03 +0200 | |
|---|---|---|
| committer | 2021-06-15 22:30:03 +0100 | |
| commit | 1ec1ece9efbcc668b9c79de58d79b3176da1b7ca (patch) | |
| tree | 5d34cf25763bde51b40461d5822ff99f33a2867b /enigma/src/main/resources | |
| parent | Fix some exceptions getting silently discarded (e.g. see #398) (diff) | |
| download | enigma-fork-1ec1ece9efbcc668b9c79de58d79b3176da1b7ca.tar.gz enigma-fork-1ec1ece9efbcc668b9c79de58d79b3176da1b7ca.tar.xz enigma-fork-1ec1ece9efbcc668b9c79de58d79b3176da1b7ca.zip | |
Structure panel options (#400)
* 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
Diffstat (limited to 'enigma/src/main/resources')
| -rw-r--r-- | enigma/src/main/resources/lang/en_us.json | 14 | ||||
| -rw-r--r-- | enigma/src/main/resources/lang/fr_fr.json | 14 | ||||
| -rw-r--r-- | enigma/src/main/resources/lang/ja_jp.json | 1 |
3 files changed, 26 insertions, 3 deletions
diff --git a/enigma/src/main/resources/lang/en_us.json b/enigma/src/main/resources/lang/en_us.json index 57b2ca8..35a4d93 100644 --- a/enigma/src/main/resources/lang/en_us.json +++ b/enigma/src/main/resources/lang/en_us.json | |||
| @@ -106,13 +106,25 @@ | |||
| 106 | "info_panel.editor.class.decompiling": "(decompiling...)", | 106 | "info_panel.editor.class.decompiling": "(decompiling...)", |
| 107 | "info_panel.editor.class.not_found": "Unable to find class:", | 107 | "info_panel.editor.class.not_found": "Unable to find class:", |
| 108 | "info_panel.tree.structure": "Structure", | 108 | "info_panel.tree.structure": "Structure", |
| 109 | "info_panel.tree.structure.hide_deobfuscated": "Hide deobfuscated members", | ||
| 110 | "info_panel.tree.inheritance": "Inheritance", | 109 | "info_panel.tree.inheritance": "Inheritance", |
| 111 | "info_panel.tree.implementations": "Implementations", | 110 | "info_panel.tree.implementations": "Implementations", |
| 112 | "info_panel.tree.calls": "Call Graph", | 111 | "info_panel.tree.calls": "Call Graph", |
| 113 | 112 | ||
| 114 | "popup.copied": "Copied!", | 113 | "popup.copied": "Copied!", |
| 115 | 114 | ||
| 115 | "structure.options.obfuscation": "Obfuscation Visibility", | ||
| 116 | "structure.options.obfuscation.all": "All", | ||
| 117 | "structure.options.obfuscation.obfuscated": "Only obfuscated", | ||
| 118 | "structure.options.obfuscation.deobfuscated": "Only deobfuscated", | ||
| 119 | "structure.options.documentation": "Documentation Visibility", | ||
| 120 | "structure.options.documentation.all": "All", | ||
| 121 | "structure.options.documentation.documented": "Only documented", | ||
| 122 | "structure.options.documentation.non_documented": "Only non documented", | ||
| 123 | "structure.options.sorting": "Sorting Order", | ||
| 124 | "structure.options.sorting.default": "Default", | ||
| 125 | "structure.options.sorting.a_z": "A to Z", | ||
| 126 | "structure.options.sorting.z_a": "Z to A", | ||
| 127 | |||
| 116 | "log_panel.messages": "Messages", | 128 | "log_panel.messages": "Messages", |
| 117 | "log_panel.users": "Users", | 129 | "log_panel.users": "Users", |
| 118 | 130 | ||
diff --git a/enigma/src/main/resources/lang/fr_fr.json b/enigma/src/main/resources/lang/fr_fr.json index 5c46c87..ea1a20f 100644 --- a/enigma/src/main/resources/lang/fr_fr.json +++ b/enigma/src/main/resources/lang/fr_fr.json | |||
| @@ -106,13 +106,25 @@ | |||
| 106 | "info_panel.editor.class.decompiling": "(décompilation...)", | 106 | "info_panel.editor.class.decompiling": "(décompilation...)", |
| 107 | "info_panel.editor.class.not_found": "Impossible de trouver la classe :", | 107 | "info_panel.editor.class.not_found": "Impossible de trouver la classe :", |
| 108 | "info_panel.tree.structure": "Structure", | 108 | "info_panel.tree.structure": "Structure", |
| 109 | "info_panel.tree.structure.hide_deobfuscated": "Masquer les membres déobfusqués", | ||
| 110 | "info_panel.tree.inheritance": "Héritage", | 109 | "info_panel.tree.inheritance": "Héritage", |
| 111 | "info_panel.tree.implementations": "Implémentations", | 110 | "info_panel.tree.implementations": "Implémentations", |
| 112 | "info_panel.tree.calls": "Graphique des appels", | 111 | "info_panel.tree.calls": "Graphique des appels", |
| 113 | 112 | ||
| 114 | "popup.copied": "Copié !", | 113 | "popup.copied": "Copié !", |
| 115 | 114 | ||
| 115 | "structure.options.obfuscation": "Visibilité de l'obfuscation", | ||
| 116 | "structure.options.obfuscation.all": "Tous", | ||
| 117 | "structure.options.obfuscation.obfuscated": "Seulement obfusqués", | ||
| 118 | "structure.options.obfuscation.deobfuscated": "Seulement déobfusqués", | ||
| 119 | "structure.options.documentation": "Visibilité de la documentation", | ||
| 120 | "structure.options.documentation.all": "Tous", | ||
| 121 | "structure.options.documentation.documented": "Seulement documentés", | ||
| 122 | "structure.options.documentation.non_documented": "Seulement non documentés", | ||
| 123 | "structure.options.sorting": "Ordre de tri", | ||
| 124 | "structure.options.sorting.default": "Par défaut", | ||
| 125 | "structure.options.sorting.a_z": "A à Z", | ||
| 126 | "structure.options.sorting.z_a": "Z à A", | ||
| 127 | |||
| 116 | "log_panel.messages": "Messages", | 128 | "log_panel.messages": "Messages", |
| 117 | "log_panel.users": "Utilisateurs", | 129 | "log_panel.users": "Utilisateurs", |
| 118 | 130 | ||
diff --git a/enigma/src/main/resources/lang/ja_jp.json b/enigma/src/main/resources/lang/ja_jp.json index 0ff162a..9399e17 100644 --- a/enigma/src/main/resources/lang/ja_jp.json +++ b/enigma/src/main/resources/lang/ja_jp.json | |||
| @@ -102,7 +102,6 @@ | |||
| 102 | "info_panel.editor.class.decompiling": "(デコンパイル中...)", | 102 | "info_panel.editor.class.decompiling": "(デコンパイル中...)", |
| 103 | "info_panel.editor.class.not_found": "クラスが見つけられません:", | 103 | "info_panel.editor.class.not_found": "クラスが見つけられません:", |
| 104 | "info_panel.tree.structure": "構造", | 104 | "info_panel.tree.structure": "構造", |
| 105 | "info_panel.tree.structure.hide_deobfuscated": "難読化解除されたメンバを隠す", | ||
| 106 | "info_panel.tree.inheritance": "継承", | 105 | "info_panel.tree.inheritance": "継承", |
| 107 | "info_panel.tree.implementations": "実装", | 106 | "info_panel.tree.implementations": "実装", |
| 108 | "info_panel.tree.calls": "呼び出し関係", | 107 | "info_panel.tree.calls": "呼び出し関係", |