Messages_en_US.properties 6.7 KB
Newer Older
D
Donlon 已提交
1 2
language.name=English

S
Skylot 已提交
3 4
menu.file=File
menu.view=View
5 6
menu.recent_projects=Recent projects
menu.no_recent_projects=No recent projects
S
Skylot 已提交
7
menu.preferences=Preferences
S
Skylot 已提交
8 9
menu.sync=Sync with editor
menu.flatten=Show flatten packages
J
Jan S 已提交
10
menu.heapUsageBar=Show memory usage bar
S
Skylot 已提交
11
menu.navigation=Navigation
12 13
menu.text_search=Text search
menu.class_search=Class search
S
Skylot 已提交
14
menu.tools=Tools
D
Donlon 已提交
15
menu.deobfuscation=Deobfuscation
S
Skylot 已提交
16
menu.log=Log Viewer
S
Skylot 已提交
17 18
menu.help=Help
menu.about=About
S
Skylot 已提交
19
menu.update_label=New version %s available!
S
Skylot 已提交
20

D
Donlon 已提交
21
file.open_action=Open file...
S
Skylot 已提交
22
file.open_title=Open file
23 24 25
file.new_project=New project
file.save_project=Save project
file.save_project_as=Save project as...
26
file.save_all=Save all
S
Skylot 已提交
27
file.export_gradle=Save as gradle project
28 29
file.save_all_msg=Select directory for save decompiled sources
file.exit=Exit
S
Skylot 已提交
30

31 32
tree.sources_title=Source code
tree.resources_title=Resources
33
tree.loading=Loading...
S
Skylot 已提交
34

35 36 37 38
progress.load=Loading
progress.decompile=Decompiling
progress.index=Indexing

39 40
error_dialog.title=Error

S
Skylot 已提交
41 42 43 44 45 46 47
search.previous=Previous
search.next=Next
search.mark_all=Mark All
search.regex=Regex
search.match_case=Match Case
search.whole_word=Whole word
search.find=Find
S
Skylot 已提交
48

49
tabs.copy_class_name=Copy Name
S
Skylot 已提交
50 51 52
tabs.close=Close
tabs.closeOthers=Close Others
tabs.closeAll=Close All
53 54
tabs.code=Code
tabs.smali=Smali
55 56 57

nav.back=Back
nav.forward=Forward
S
Skylot 已提交
58

59
message.indexingClassesSkipped=<html>Jadx is running low on memory. Therefore %d classes were not indexed.<br>If you want all classes to be indexed restart Jadx with increased maximum heap size.</html>
J
Jan S 已提交
60 61 62

heapUsage.text=JADX memory usage: %.2f GB of %.2f GB

S
Skylot 已提交
63 64
search_dialog.open=Open
search_dialog.cancel=Cancel
D
Donlon 已提交
65 66
search_dialog.open_by_name=Search for text:
search_dialog.search_in=Search definitions of:
S
Skylot 已提交
67 68 69 70
search_dialog.class=Class
search_dialog.method=Method
search_dialog.field=Field
search_dialog.code=Code
D
Donlon 已提交
71
search_dialog.options=Search options:
72
search_dialog.ignorecase=Case insensitive
J
Jan Peter Stotz 已提交
73 74
search_dialog.next_page=Show next page
search_dialog.prev_page=Show previous page
D
Donlon 已提交
75 76 77
search_dialog.info_label=Showing results %1$d to %2$d of %3$d
search_dialog.col_node=Node
search_dialog.col_code=Code
S
Skylot 已提交
78

79 80 81
usage_dialog.title=Usage search
usage_dialog.label=Usage for:

D
Donlon 已提交
82 83 84 85 86
log_viewer.title=Log Viewer
log_viewer.log_level=Log level:

about_dialog.title=About JADX

S
Skylot 已提交
87 88
preferences.title=Preferences
preferences.deobfuscation=Deobfuscation
89 90
preferences.editor=Editor
preferences.decompile=Decompilation
91
preferences.project=Project
S
Skylot 已提交
92
preferences.other=Other
D
Donlon 已提交
93
preferences.language=Language
S
Skylot 已提交
94
preferences.check_for_updates=Check for updates on startup
95
preferences.fallback=Fallback mode (simple dump)
S
Skylot 已提交
96
preferences.showInconsistentCode=Show inconsistent code
97
preferences.escapeUnicode=Escape unicode
98
preferences.replaceConsts=Replace constants
99
preferences.respectBytecodeAccessModifiers=Respect bytecode access modifiers
100
preferences.useImports=Use import statements
101
preferences.inlineAnonymous=Inline anonymous classes
102
preferences.fsCaseSensitive=File system is case sensitive
S
Skylot 已提交
103
preferences.skipResourcesDecode=Don't decode resources
104
preferences.autoSave=Auto save
S
Skylot 已提交
105
preferences.threads=Processing threads count
J
Jan S 已提交
106 107 108 109
preferences.excludedPackages=Excluded packages
preferences.excludedPackages.tooltip=List of space separated package names that will not be decompiled or indexed (saves RAM)
preferences.excludedPackages.button=Edit
preferences.excludedPackages.editDialog=<html>List of space separated package names that will not be decompiled or indexed (saves RAM)<br>e.g. <code>android.support</code></html>
S
Skylot 已提交
110 111
preferences.cfg=Generate methods CFG graphs (in 'dot' format)
preferences.raw_cfg=Generate RAW CFG graphs
S
Skylot 已提交
112
preferences.font=Editor font
113
preferences.theme=Editor theme
S
Skylot 已提交
114
preferences.start_jobs=Auto start background decompilation
115
preferences.select_font=Change
S
Skylot 已提交
116 117 118 119
preferences.deobfuscation_on=Enable deobfuscation
preferences.deobfuscation_force=Force rewrite deobfuscation map file
preferences.deobfuscation_min_len=Minimum name length
preferences.deobfuscation_max_len=Maximum name length
120
preferences.deobfuscation_source_alias=Use source file name as class name alias
121
preferences.deobfuscation_kotlin_metadata=Parse Kotlin metadata for class and package names
S
Skylot 已提交
122 123
preferences.save=Save
preferences.cancel=Cancel
124 125 126
preferences.reset=Reset
preferences.reset_message=Reset settings to default values?
preferences.reset_title=Reset settings
127 128 129 130
preferences.rename=Rename
preferences.rename_case=System case sensitivity
preferences.rename_valid=To be valid identifier
preferences.rename_printable=To be printable
S
Skylot 已提交
131

S
Skylot 已提交
132
msg.open_file=Please open file
D
Donlon 已提交
133 134 135 136
msg.saving_sources=Saving sources...
msg.language_changed_title=Language changed
msg.language_changed=New language will be displayed the next time application starts.
msg.index_not_initialized=Index not initialized, search will be disabled!
137 138
msg.project_error_title=Error
msg.project_error=Project could not be loaded
139 140
msg.rename_disabled_title=Rename disabled
msg.rename_disabled=Some of rename settings are disabled, please take this into consideration
141 142
msg.rename_disabled_force_rewrite_enabled=Please disable "Force rewrite deobfuscation map file" option to rename.
msg.rename_disabled_deobfuscation_disabled=Please enable deobfuscation to rename.
143
msg.cmd_select_class_error=Failed to select the class\n%s\nThe class does not exist.
S
Skylot 已提交
144

145 146 147 148 149 150 151
popup.undo=Undo
popup.redo=Redo
popup.cut=Cut
popup.copy=Copy
popup.paste=Paste
popup.delete=Delete
popup.select_all=Select All
152
popup.find_usage=Find Usage
153
popup.go_to_declaration=Go to declaration
154
popup.exclude=Exclude
155
popup.rename=Rename
156

157 158 159
confirm.save_as_title=Confirm Save as
confirm.save_as_message=%s already exists.\nDo you want to replace it?
confirm.not_saved_title=Save project
160
confirm.not_saved_message=Save the current project before proceeding?
161

A
asviridenko 已提交
162
certificate.cert_type=Type
D
Donlon 已提交
163
certificate.serialSigVer=Version
A
asviridenko 已提交
164
certificate.serialNumber=Serial number
D
Donlon 已提交
165
certificate.cert_subject=Subject
A
asviridenko 已提交
166 167
certificate.serialValidFrom=Valid from
certificate.serialValidUntil=Valid until
D
Donlon 已提交
168 169 170
certificate.serialPubKeyType=Public key type
certificate.serialPubKeyExponent=Exponent
certificate.serialPubKeyModulus=Modulus
171
certificate.serialPubKeyModulusSize=Modulus size (bits)
A
asviridenko 已提交
172 173 174 175 176 177
certificate.serialSigType=Signature type
certificate.serialSigOID=Signature OID
certificate.serialMD5=MD5 Fingerprint
certificate.serialSHA1=SHA-1 Fingerprint
certificate.serialSHA256=SHA-256 Fingerprint
certificate.serialPubKeyY=Y
178 179 180

apkSignature.signer=Signer
apkSignature.verificationSuccess=Signature verification succeeded
181
apkSignature.verificationFailed=Signature verification failed
182 183 184 185 186
apkSignature.signatureSuccess=Valid APK signature v%d found
apkSignature.signatureFailed=Invalid APK signature v%d found
apkSignature.errors=Errors
apkSignature.warnings=Warnings
apkSignature.exception=APK verification failed
187
apkSignature.unprotectedEntry=Files that are not protected by signature. Unauthorized modifications to this JAR entry will not be detected.