diff options
| author | 2020-03-05 22:17:08 +0000 | |
|---|---|---|
| committer | 2020-03-05 22:17:08 +0000 | |
| commit | 863d40a1c1f6591ef1ee8594b12ae4b0942fe810 (patch) | |
| tree | 614c0e3bc842e1ab50413dcc18b450c96224db10 /src/main/resources/lang/en_us.json | |
| parent | Fix drop mappings not checking localVars (diff) | |
| download | enigma-863d40a1c1f6591ef1ee8594b12ae4b0942fe810.tar.gz enigma-863d40a1c1f6591ef1ee8594b12ae4b0942fe810.tar.xz enigma-863d40a1c1f6591ef1ee8594b12ae4b0942fe810.zip | |
Made Enigma gui translatable (#193)
* made enigma gui translatable
* key renamings
* missed strings
* string.format() & another missed string
* cached content (thanks @liach)
* added a dialog when changing language
* better sentence
* more %s
* liach's requests
* empty map
* the last (?) missed strings
* IT WORKS
* French translation
* Update fr_fr.json
Diffstat (limited to 'src/main/resources/lang/en_us.json')
| -rw-r--r-- | src/main/resources/lang/en_us.json | 115 |
1 files changed, 115 insertions, 0 deletions
diff --git a/src/main/resources/lang/en_us.json b/src/main/resources/lang/en_us.json new file mode 100644 index 00000000..dbf3e451 --- /dev/null +++ b/src/main/resources/lang/en_us.json | |||
| @@ -0,0 +1,115 @@ | |||
| 1 | { | ||
| 2 | "language": "English", | ||
| 3 | |||
| 4 | "mapping_format.enigma_file": "Enigma File", | ||
| 5 | "mapping_format.enigma_directory": "Enigma Directory", | ||
| 6 | "mapping_format.tiny_v2": "Tiny v2", | ||
| 7 | "mapping_format.tiny_file": "Tiny File", | ||
| 8 | "mapping_format.srg_file": "SRG File", | ||
| 9 | "mapping_format.proguard": "Proguard", | ||
| 10 | "type.methods": "Methods", | ||
| 11 | "type.fields": "Fields", | ||
| 12 | "type.parameters": "Parameters", | ||
| 13 | "type.classes": "Classes", | ||
| 14 | |||
| 15 | "menu.file": "File", | ||
| 16 | "menu.file.jar.open": "Open Jar...", | ||
| 17 | "menu.file.jar.close": "Close Jar", | ||
| 18 | "menu.file.mappings.open": "Open Mappings...", | ||
| 19 | "menu.file.mappings.save": "Save Mappings", | ||
| 20 | "menu.file.mappings.save_as": "Save Mappings As...", | ||
| 21 | "menu.file.mappings.close": "Close Mappings", | ||
| 22 | "menu.file.mappings.drop": "Drop Invalid Mappings", | ||
| 23 | "menu.file.export.source": "Export Source...", | ||
| 24 | "menu.file.export.jar": "Export Jar...", | ||
| 25 | "menu.file.stats": "Mapping Stats...", | ||
| 26 | "menu.file.stats.title": "Choose Included Members", | ||
| 27 | "menu.file.stats.generate": "Generate Stats", | ||
| 28 | "menu.file.exit": "Exit", | ||
| 29 | "menu.view": "View", | ||
| 30 | "menu.view.themes": "Themes", | ||
| 31 | "menu.view.themes.default": "Default", | ||
| 32 | "menu.view.themes.darcula": "Darcula", | ||
| 33 | "menu.view.themes.system": "System", | ||
| 34 | "menu.view.themes.none": "None (JVM Default)", | ||
| 35 | "menu.view.languages": "Languages", | ||
| 36 | "menu.view.languages.title": "Change language", | ||
| 37 | "menu.view.languages.summary": "The new language will be applied after the next restart.", | ||
| 38 | "menu.view.languages.ok": "Ok", | ||
| 39 | "menu.view.search": "Search", | ||
| 40 | "menu.help": "Help", | ||
| 41 | "menu.help.about": "About", | ||
| 42 | "menu.help.about.title": "%s - About", | ||
| 43 | "menu.help.about.ok": "Ok", | ||
| 44 | "menu.help.github": "Github Page", | ||
| 45 | |||
| 46 | "popup_menu.rename": "Rename", | ||
| 47 | "popup_menu.javadoc": "Edit Javadoc", | ||
| 48 | "popup_menu.inheritance": "Show Inheritance", | ||
| 49 | "popup_menu.implementations": "Show Implementations", | ||
| 50 | "popup_menu.calls": "Show Calls", | ||
| 51 | "popup_menu.calls.specific": "Show Calls (Specific)", | ||
| 52 | "popup_menu.declaration": "Go to Declaration", | ||
| 53 | "popup_menu.back": "Go back", | ||
| 54 | "popup_menu.forward": "Go forward", | ||
| 55 | "popup_menu.mark_deobfuscated": "Mark as deobfuscated", | ||
| 56 | "popup_menu.reset_obfuscated": "Reset to obfuscated", | ||
| 57 | |||
| 58 | "info_panel.classes.obfuscated": "Obfuscated Classes", | ||
| 59 | "info_panel.classes.deobfuscated": "De-obfuscated Classes", | ||
| 60 | "info_panel.identifier": "Identifier Info", | ||
| 61 | "info_panel.identifier.none": "No identifier selected", | ||
| 62 | "info_panel.identifier.variable": "Variable", | ||
| 63 | "info_panel.identifier.field": "Field", | ||
| 64 | "info_panel.identifier.method": "Method", | ||
| 65 | "info_panel.identifier.constructor": "Constructor", | ||
| 66 | "info_panel.identifier.class": "Class", | ||
| 67 | "info_panel.identifier.type_descriptor": "TypeDescriptor", | ||
| 68 | "info_panel.identifier.method_descriptor": "MethodDescriptor", | ||
| 69 | "info_panel.identifier.modifier": "Modifier", | ||
| 70 | "info_panel.identifier.index": "Index", | ||
| 71 | "info_panel.editor.class.decompiling": "(decompiling...)", | ||
| 72 | "info_panel.editor.class.not_found": "Unable to find class:", | ||
| 73 | "info_panel.tree.inheritance": "Inheritance", | ||
| 74 | "info_panel.tree.implementations": "Implementations", | ||
| 75 | "info_panel.tree.calls": "Call Graph", | ||
| 76 | |||
| 77 | "progress.operation": "%s - Operation in progress", | ||
| 78 | "progress.jar.indexing": "Indexing jar", | ||
| 79 | "progress.jar.indexing.entries": "Entries...", | ||
| 80 | "progress.jar.indexing.references": "Entry references...", | ||
| 81 | "progress.jar.indexing.methods": "Bridge methods...", | ||
| 82 | "progress.jar.indexing.process": "Processing...", | ||
| 83 | "progress.jar.writing": "Writing jar...", | ||
| 84 | "progress.sources.writing": "Writing sources...", | ||
| 85 | "progress.classes.deobfuscating": "Deobfuscating classes...", | ||
| 86 | "progress.classes.decompiling": "Decompiling classes...", | ||
| 87 | "progress.mappings.enigma_file.loading": "Loading mapping file", | ||
| 88 | "progress.mappings.enigma_file.done": "Done!", | ||
| 89 | "progress.mappings.enigma_file.writing": "Writing classes", | ||
| 90 | "progress.mappings.enigma_directory.loading": "Loading mapping files", | ||
| 91 | "progress.mappings.enigma_directory.writing": "Writing classes", | ||
| 92 | "progress.mappings.tiny_file.loading": "Loading mapping file", | ||
| 93 | "progress.mappings.tiny_v2.loading": "Loading mapping file", | ||
| 94 | "progress.mappings.srg_file.generating": "Generating mappings", | ||
| 95 | "progress.mappings.srg_file.writing": "Writing mappings", | ||
| 96 | "progress.stats": "Generating stats", | ||
| 97 | "progress.stats.data": "Generating data", | ||
| 98 | |||
| 99 | "javadocs.edit": "Edit Javadocs", | ||
| 100 | "javadocs.instruction": "Edit javadocs here.", | ||
| 101 | "javadocs.cancel": "Cancel", | ||
| 102 | "javadocs.save": "Save", | ||
| 103 | |||
| 104 | "prompt.close.title": "Save your changes?", | ||
| 105 | "prompt.close.summary": "Your mappings have not been saved yet. Do you want to save?", | ||
| 106 | "prompt.close.save": "Save and close", | ||
| 107 | "prompt.close.discard": "Discard changes", | ||
| 108 | "prompt.close.cancel": "Cancel", | ||
| 109 | |||
| 110 | "crash.title": "%s - Crash Report", | ||
| 111 | "crash.summary": "%s has crashed! =(", | ||
| 112 | "crash.ignore": "Ignore", | ||
| 113 | "crash.exit": "Exit", | ||
| 114 | "crash.exit.warning": "If you choose exit, you will lose any unsaved work." | ||
| 115 | } | ||