Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

messages.properties 5.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. ### AspectJ-specific messages
  2. configure.version = AspectJ Compiler 1.1beta1
  3. configure.directoryNotExist = invalid option or directory does not exist: {0}
  4. ### miscellaneous
  5. misc.usage = AspectJ Compiler 1.1beta2\n\n\
  6. Usage: <options> <source files | directories>\n\n\
  7. AspectJ-specific options:\n\
  8. -Xlint generate crosscutting-specific warnings\n\
  9. -injars <jar 1>;<jar 2>;...;<jar P>\n\
  10. -outjar <file> generate a single JAR instead of multiple .class files\n\
  11. -incremental persistant incremental compiler, requires -sourceroots\n\
  12. -sourceroots <dir> find and build all source files under <dir>;<dir 2>;...\n\
  13. -emacssym generate .ajesym symbol files for emacs support\n\n\
  14. Standard Eclipse compiler options:\n\
  15. -help display this help message\n\
  16. -version compiler version number\n\
  17. -classpath <dir 1>;<dir 2>;...;<dir P>\n\
  18. -d <dir> destination dir (if omitted no pkg structure created)\n\
  19. \t-d none no classfile is generated\n\
  20. -target <ver> classfile target setting (1.1 or 1.2, default is 1.1)\n\
  21. -1.3 set compliance level to 1.3 (default)\n\
  22. -1.4 set compliance level to 1.4\n\
  23. -source <ver> assertions toggle (1.3 or 1.4, default is 1.3 \n\t\t\tin -1.3 mode and 1.4 in -1.4 mode)\n\
  24. -nowarn no warning (equivalent to ''-warn:none'')\n\
  25. -warn: <level> set warning level (eg ''-warn:unusedLocals,deprecation'')\n\
  26. \tconstructorName warn method with constructor name\n\
  27. \tpackageDefaultMethod warn attempt to override package-default method\n\
  28. \tdeprecation warn usage of deprecated type or member\n\
  29. \tmaskedCatchBlocks warn hidden catch block\n\
  30. \tunusedLocals warn on unused local variable (never read)\n\
  31. \tunusedArguments warn on unused method argument (never read)\n\
  32. \tunusedImports warn on unused imports\n\
  33. \tsyntheticAccess warn when performing synthetic access \n\t\t\t\tfor innerclass\n\
  34. \tassertIdentifier warn occurrence of ''assert'' used as identifier\n\
  35. -deprecation equivalent to -warn:deprecation.\n\
  36. -g[:<level>] debug attributes level\n\
  37. \t-g all debug info (''-g:lines,vars,source'')\n\
  38. \t-g:none no debug info\n\
  39. \t-g:[lines,vars,source] selective debug info\n\
  40. -preserveAllLocals code gen preserve all local variables (for debug)\n\
  41. -noImportError no errors for unresolved imports\n\
  42. -encoding specify default source encoding format (custom encoding\n\t\t\tcan also be specifed on\
  43. a per file basis by suffixing\n\t\t\teach input source file/folder name with '[encoding]')\n\
  44. -log <filename> specify a log file\n\
  45. -proceedOnError keep compiling when error, dumping class files with\n\t\t\tproblem methods\n\
  46. -verbose print accessed/processed compilation units \n\
  47. -referenceInfo compute reference info\n\
  48. -progress show progress (only in -log mode)\n\
  49. -time display speed information\n\
  50. -noExit do not call System.exit(n) at end of compilation\n\t\t\t(n=0 if no error)\n\
  51. -repeat <n> repeat compilation process <n> times (perf analysis)\n
  52. ##########################################
  53. ### JavaBatchCompiler messages.
  54. ### compiler version id
  55. compiler.version = 0.265
  56. ### scanning
  57. scanning.start = Collecting source files inside {0}
  58. ### progress
  59. progress.compiling = Compiling
  60. ### compile
  61. compile.repetition = Repetition {0}/{1}
  62. compile.instantTime = Compiled {0} lines in {1} ms ({2} lines/s)
  63. compile.totalTime = Total compilation time: {0}
  64. compile.oneProblem = 1 problem
  65. compile.severalProblems = {0} problems
  66. compile.oneError = 1 error
  67. compile.severalErrors = {0} errors
  68. compile.oneWarning = 1 warning
  69. compile.severalWarnings = {0} warnings
  70. compile.oneClassFileGenerated = 1 .class file generated
  71. compile.severalClassFilesGenerated = {0} .class files generated
  72. ### configure
  73. configure.noSourceFile = no source file specified
  74. configure.duplicateLog = duplicate log specification: {0}
  75. configure.duplicateRepeat = duplicate repeat specification: {0}
  76. configure.duplicateCompliance = duplicate compliance setting specification: {0}
  77. configure.source = invalid source option, source is either ''1.3'' or ''1.4'': {0}
  78. configure.jck = invalid jck option, jck compliance level is either ''1.3'' or ''1.4'': {0}
  79. configure.duplicateOutputPath = duplicate output path specification: {0}
  80. configure.duplicateClasspath = duplicate classpath specification: {0}
  81. configure.invalidDebugOption = invalid debug option: {0}
  82. configure.duplicateWarningConfiguration = duplicate usage of warning configuration
  83. configure.invalidWarningConfiguration = invalid warning configuration: {0}
  84. configure.invalidWarning = invalid warning: {0}
  85. configure.invalidWarningOption = invalid warning option: {0}
  86. configure.targetJDK = target JDK should be comprised in between ''1.1'' and ''1.4'': {0}
  87. configure.incompatibleTargetForSource14 = ''1.4'' source mode requires ''-target 1.4'' : {0}
  88. configure.incompatibleComplianceForSource14 = ''1.4'' source mode requires ''-1.4'' compliance mode: {0}
  89. configure.incompatibleComplianceForTarget14 = ''1.4'' target mode requires ''-1.4'' compliance mode: {0}
  90. configure.repetition = repetition must be a positive integer: {0}
  91. configure.IOError = i/o error : unable to retrieve .JAVA files in directory: {0}
  92. configure.noClasspath =
  93. configure.incorrectClasspath = incorrect classpath: {0}
  94. configure.noSource = no source file specified
  95. configure.cannotOpenLog = cannot open .log file
  96. configure.unexpectedCustomEncoding = unexpected custom encoding specification: {0}[{1}]
  97. configure.unsupportedEncoding = unsupported encoding format: {0}
  98. configure.duplicateDefaultEncoding = duplicate default encoding format specification: {0}
  99. ### requestor
  100. requestor.error = ERROR
  101. requestor.warning = WARNING
  102. requestor.in = in {0}
  103. requestor.notRetrieveErrorMessage = Cannot retrieve the error message for {0}
  104. ### unit
  105. unit.more = File {0} is specified more than once
  106. unit.missing = File {0} is missing
  107. ### output
  108. output.noClassFileCreated = No .class file created for file named {0} because of an IOException.