config.yml

#########################
# MineZip Configuration #
#########################
# 
# Do not edit any comments, do not remove
# the number sign, only edit the text 
# behind the colons (if there's text).
# 
# Use colorcode in chat with &[0-f]
# (e.g. &0, &3, &9, &a, &b, &f)
#  
# Create line breaks with %n. Note: behind each line break,
# you have to 'reinitialize' the color.
# 

messages:
  
  # The user does not have permission to use any /zip commands
  nopermission: '&fUnknown command. Type "help" for help.'
  
  # /zip check - will check, if a file is available or not.
  # checkfalse means it didn't find the file, checktrue means yes.
  # %file% - filename, %path% - exact path and filename.
  checktrue: '&a%file% &2is available.'
  checkfalse: '&c%file% &4could not be found.%n&4(Path: %path%)'
  
  # /zip zip - will zip a folder, directory or file
  # %errormessage% - show localized error message (only for 'ziperror'), %file% - filename
  zipstarting: '&2Compressing &a%file%&2.'
  ziperror: '&4Error: %errormessage%.%n&4Check console for further information.'
  zipdone: '&aDone.'
  
  # /zip unzip - will extract a zip file
  # %errormessage% - show localized error message (only for 'unziperror'), %file% - filename
  unzipstarting: '&2Unzipping &a%file%&2.'
  unziperror: '&4Error: %errormessage%.%n&4Check console for further information.'
  unzipdone: '&aDone.'

  # /zip delete - delete zip file.
  # %file% - filename
  deletezipnotfound: '&c%file% &4could not be found.%n&4Cancelling the process.'
  deletezipstarting: '&4Deleting &c%file%&4.'
  deletezipsuccessfull: '&c%file% &4has been deleted.'
  deletezipfailed: '&c%file% &4could not be deleted.'
  
  # /zip rename - rename a file
  # %oldfile% - original file name, %newfile% - new file name
  renamefilenotfound: '&c%oldfile% &4has not been found.'
  renamefilenotoverwritable: '&4The name &c%newfile% &4has already been taken.'
  renamefilesuccessfull: '&2Renamed &a%oldfile% &2into &a%newfile%&2.'
  renamefilefailed: '&c%oldfile% &4could not be named into &c%newfile%&4.'
  # Note: The %file% in renamefilesuccessfull will be replaced by "old name to new name"



preferences:
  
  # When zipping a folder, do you want to see the list of every single file and folder that has been compressed?
  # Either true, false or console, if you only want to see the list on the console
  showallcompressions: console

  # When unzipping a file, do you want to see the list of every single file that has been extracted?
  # Either true, false or console, if you only want to see the list on the console
  showallextractions: console

  # When using the /list command, how do you want the files to be sorted?
  # true - sort alphabetically, false - sort it grouped (meaning first the files, then zip files, then folders)
  sortlistalphabetically: false

  # Do you want to include the '/zip delete' command? For safety purposes, you can only delete .zip files.
  deletecommandavailable: false

  # Do you want the plugin to create a folder for unzipped files?
  # e.g. the whole server folder gets compressed, when extracting it again "true" would create a folder with all the data in it
  createfolderonextraction: true
  
  # Do you want the plugin to search for updates?
  checkforupdates: true