guiresources.properties

来自「proguard 一个java的混淆器」· PROPERTIES 代码 · 共 504 行 · 第 1/2 页

PROPERTIES
504
字号
# ProGuard -- shrinking, optimization, and obfuscation of Java class files.# Copyright (c) 2002-2007 Eric Lafortune (eric@graphics.cornell.edu)## Tab names.#proGuardTab     = ProGuardinputOutputTab  = Input/OutputshrinkingTab    = ShrinkingobfuscationTab  = ObfuscationoptimizationTab = OptimizationinformationTab  = InformationprocessTab      = ProcessreTraceTab      = ReTrace## Splash text.#developed       = Developed by Eric Lafortuneshrinking       = Shrinkingoptimization    = Optimizationobfuscation     = Obfuscationpreverification = Preverification## Panel titles.#welcome                       = Welcome to ProGuard, version 4.0.1options                       = OptionskeepAdditional                = Keep additional classes and class memberskeepNamesAdditional           = Keep additional class names and class member namesassumeNoSideEffectsAdditional = Assume no side effects for additional methodswhyAreYouKeeping              = Why are you keepingpreverificationAndTargeting   = Preverification and targetingconsistencyAndCorrectness     = Consistency and correctnessprocessingConsole             = Processing consolereTraceSettings               = ReTrace settingsdeobfuscatedStackTrace        = De-obfuscated stack tracekeepAdditionalTip = \  If required, keep additional classes, fields, and methods as entry points.keepNamesAdditionalTip = \  If required, keep the names of additional classes, fields, and methods.assumeNoSideEffectsAdditionalTip = \  <html>Optionally specify additional methods that don't have any side effects.<br>\  <i>Only add entries if you know what you're doing!</i></html>whyAreYouKeepingTip = \  Ask ProGuard why it is keeping certain classes, fields, or methods.## Info texts.#proGuardInfo = \  ProGuard is a free class file shrinker, optimizer, obfuscator, and preverifier.\  \n\n\  With this GUI, you can create, load, modify, and save ProGuard configurations. \  \n\  You can then process your code right away, or you can run ProGuard from the \  command line using your saved configuration. \  \n\n\  With the ReTrace part of this GUI you can de-obfuscate your stack traces.\  \n\n\  ProGuard and ReTrace are written and maintained by Eric Lafortune.\  \n\n\  Distributed under the GNU General Public License.\  \n\  Copyright (c) 2002-2007.processingInfo = \  You can now start processing your code, \  or you can run ProGuard from the command line using your saved configuration.reTraceInfo = \  If you had ProGuard write out a mapping file, \  you can de-obfuscate your obfuscated stack traces with ReTrace!\  \n\n\  You can load an obfuscated stack trace from a file, \  or you can paste it straight into the text area above.## Titles and labels corresponding to common ProGuard options.#programJars = Program jars, wars, ears, zips, and directorieslibraryJars = Library jars, wars, ears, zips, and directoriesshrink                           = ShrinkprintUsage                       = Print usageoptimize                         = OptimizeallowAccessModification          = Allow access modificationoptimizationPasses               = Optimization passesobfuscate                        = ObfuscateprintMapping                     = Print mappingapplyMapping                     = Apply mappingobfuscationDictionary            = Obfuscation dictionaryoverloadAggressively             = Overload aggressivelyuseUniqueClassMemberNames        = Use unique class member namesflattenPackageHierarchy          = Flatten package hierarchyrepackageClasses                 = Repackage classesuseMixedCaseClassNames           = Use mixed-case class nameskeepAttributes                   = Keep attributesrenameSourceFileAttribute        = Rename SourceFile attributeadaptResourceFileNames           = Adapt resource file namesadaptResourceFileContents        = Adapt resource file contentspreverify                        = PreverifymicroEdition                     = Micro Editionverbose                          = Verbosenote                             = Note special or unusual inputwarn                             = Warn about possibly erronous inputignoreWarnings                   = Ignore warnings about possibly erronous inputskipNonPublicLibraryClasses      = Skip non-public library classesskipNonPublicLibraryClassMembers = Skip non-public library class membersforceProcessing                  = Force processingtarget                           = Targettargets                          = 1.0,1.1,1.2,1.3,1.4,1.5,1.6printSeeds                       = Print seedsprintConfiguration               = Print configurationdump                             = Print class filesmappingFile                      = Mapping fileobfuscatedStackTrace             = Obfuscated stack traceprogramJarsTip = \  <html>The input jars (wars, ears, zips, directories), followed by<br>\  their corresponding output jars (wars, ears, zips, directories).</html>libraryJarsTip = \  <html>The library jars (wars, ears, zips, directories), on which the program jars depend.<br>\  The library jars are required for processing, but they are not copied to the output.</html>shrinkTip = \  Remove unused classes, fields, and methods from the output.printUsageTip = \  Print out the list of unused classes, fields, and methods.optimizeTip = \  Optimize the bytecode of the processed classes.allowAccessModificationTip = \  Allow the optimization step to modify the access modifiers of classes, fields, and methods.optimizationPassesTip = \  The number of optimization passes to be performed.obfuscateTip = \  Obfuscate the names of the processed classes, fields, and methods.printMappingTip = \  Print out the obfuscation mapping of original names to obfuscated names.applyMappingTip = \  Apply the given mapping of original names to obfuscated names.obfuscationDictionaryTip = \  Use the words in the given file for obfuscating field names and method names.overloadAggressivelyTip = \  <html>Allow fields and methods to get the same obfuscated names, even if only their types or<br>\  return types differ. This is not allowed in the Java language, but it is allowed in bytecode.</html>useUniqueClassMemberNamesTip = \  <html>Make sure fields and methods get the same obfuscation mapping across classes, even<br>\  if they are unrelated. This is advisable if the output is to be obfuscated incrementally.</html>flattenPackageHierarchyTip = \  Move all packages that are renamed into the given parent package.repackageClassesTip = \  Move all classes that are renamed into the given package.packageTip = \  The package name (optionally nothing, for the root package).useMixedCaseClassNamesTip = \  <html>Generate mixed-case obfucated class names. This will complicate unpacking<br>\  the resulting jars on case-insensitive file systems, should that be necessary.</html>keepAttributesTip = \  Keep the specified optional class file attributes.attributesTip = \  <html>A comma-separated list of class file attributes.\  <ul>\  <li>"Exceptions,Innerclasses, Signature" are necessary if the output is to be used as a library.\  <li>"Deprecated" is optional if the output is to be used as a library.\  <li>"LocalVariable*Table" can be useful for debugging.\  <li>"Sourcefile,LineNumberTable" are necessary for generating stack traces.\  <li>"*Annotations*" is necessary for preserving annotations.\  </ul>\  The wildcard <code>*</code> and the negator <code>!</code> are allowed.</html>renameSourceFileAttributeTip = \  <html>Put the given string in the "SourceFile" attribute of the processed class files.<br>\  It will appear as the file name of the classes in stack traces.</html>sourceFileAttributeTip = \  The replacement "SourceFile" string.adaptResourceFileNamesTip = \  <html>Rename the specified resource files, based on the<br>\  obfuscated names of the corresponding class files.</html>adaptResourceFileContentsTip = \  <html>Adapt the contents of the given resource files, based<br>\  on the obfuscated names of the processed classes.</html>fileNameFilterTip = \  <html>A filter on file names,<br>\  e.g. <code>mydirectory1/**,mydirectory2/**</code><br>\  Possible wildcards:\  <ul>\  <li><code>?</code> for any single character, except the directory separator.\  <li><code>*</code> for any number of any characters, except the directory separator.\  <li><code>**</code> for any number of any characters.\  </ul></html>preverifyTip = \  Preverify the processed classes, for Java Micro Edition or for Java 6.microEditionTip = \  Target Java Micro Edition.verboseTip = \  Print out verbose messages while processing.noteTip = \  Print out notes about special or unusual input.warnTip = \  <html>Print out warnings about possibly erronous input.<br>\  <i>Only unset this option if you know what you're doing!</i></html>ignoreWarningsTip = \  <html>Ignore any warnings about possibly erronous input.<br>\  <i>Only set this option if you know what you're doing!</i></html>skipNonPublicLibraryClassesTip = \  <html>Skip reading non-public library classes, for efficiency.<br>\  You may have to unset this option if ProGuard complains about missing classes.</html>skipNonPublicLibraryClassMembersTip = \  <html>Skip reading non-public library fields and methods, for efficiency.<br>\  You may have to unset this option if ProGuard complains about missing class members.</html>forceProcessingTip = \  Always process the input, even if the output seems up to date.targetTip = \  Target the specified version of Java.printSeedsTip = \  Print out the list of kept classes, fields, and methods.printConfigurationTip = \  Print out the configuration.dumpTip = \  Print out the internal structure of the processed class files.mappingFileTip = \  The file containing the mapping of original names to obfuscated names.obfuscatedStackTraceTip = \  A stack trace produced by previously obfuscated code.## Titles and labels corresponding to ProGuard keep options.#keepTitle = Keepkeep                   = Keep classes and class memberskeepClassMembers       = Keep class members onlykeepClassesWithMembers = Keep classes and class members, if members are presentallowTitle = AllowallowShrinking    = Allow shrinkingallowOptimization = Allow optimizationallowObfuscation  = Allow obfuscation

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?