diff --git a/.github/workflows/dev-builds.yml b/.github/workflows/dev-builds.yml new file mode 100644 index 00000000..ea28821b --- /dev/null +++ b/.github/workflows/dev-builds.yml @@ -0,0 +1,84 @@ +# This workflow will build a Java project with Gradle +# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle + +name: Development Builds + +on: + push: + branches-ignore: + - translations + +jobs: + build-java16: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Set up JDK 16 + uses: actions/setup-java@v2 + with: + java-version: '16' + distribution: 'adopt' + - name: Grant execute permission for gradlew + run: chmod +x gradlew + - name: Tests with Gradle + run: ./gradlew test + - name: Build with Gradle + run: ./gradlew shadowJar + - name: Publish Unit Test Results + uses: EnricoMi/publish-unit-test-result-action@v1 + if: always() + with: + files: build/test-results/**/*.xml + + build-java11: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Set up JDK 11 + uses: actions/setup-java@v2 + with: + java-version: '11' + distribution: 'adopt' + - name: Grant execute permission for gradlew + run: chmod +x gradlew + - name: Tests with Gradle + run: ./gradlew test + - name: Build with Gradle + run: ./gradlew shadowJar + - name: Publish Unit Test Results + uses: EnricoMi/publish-unit-test-result-action@v1 + if: always() + with: + files: build/test-results/**/*.xml + + build-java8: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Set up JDK 8 + uses: actions/setup-java@v2 + with: + java-version: '8' + distribution: 'adopt' + - name: Grant execute permission for gradlew + run: chmod +x gradlew + - name: Tests with Gradle + run: ./gradlew test + - name: Build with Gradle + run: ./gradlew shadowJar + - name: Publish Unit Test Results + uses: EnricoMi/publish-unit-test-result-action@v1 + if: always() + with: + files: build/test-results/**/*.xml + - name: Upload Artifact + uses: actions/upload-artifact@v2.2.2 + with: + name: Builds + path: build/libs/*.jar diff --git a/.github/workflows/stable-build.yml b/.github/workflows/stable-build.yml new file mode 100644 index 00000000..82b5dfe7 --- /dev/null +++ b/.github/workflows/stable-build.yml @@ -0,0 +1,43 @@ +# This workflow will build a Java project with Gradle +# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle + +name: Stable Builds + +on: + push: + branches: [ production ] + workflow_dispatch: + +jobs: + + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Set up JDK 8 + uses: actions/setup-java@v2 + with: + java-version: '8' + distribution: 'adopt' + - name: Grant execute permission for gradlew + run: chmod +x gradlew + - name: Tests with Gradle + run: ./gradlew test + env: + STABLE_BUILD: 0 + - name: Build with Gradle + run: ./gradlew shadowJar + env: + STABLE_BUILD: 0 + - name: Publish Unit Test Results + uses: EnricoMi/publish-unit-test-result-action@v1 + if: always() + with: + files: build/test-results/**/*.xml + - name: Upload Artifact + uses: actions/upload-artifact@v2.2.2 + with: + name: Builds + path: build/libs/*.jar diff --git a/.github/workflows/unofficial-builds.yml b/.github/workflows/unofficial-builds.yml new file mode 100644 index 00000000..49698520 --- /dev/null +++ b/.github/workflows/unofficial-builds.yml @@ -0,0 +1,81 @@ +# This workflow will build a Java project with Gradle +# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle + +name: Unofficial Builds + +on: pull_request + +jobs: + build-java16: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Set up JDK 16 + uses: actions/setup-java@v2 + with: + java-version: '16' + distribution: 'adopt' + - name: Grant execute permission for gradlew + run: chmod +x gradlew + - name: Tests with Gradle + run: ./gradlew test + - name: Build with Gradle + run: ./gradlew shadowJar + - name: Publish Unit Test Results + uses: EnricoMi/publish-unit-test-result-action@v1 + if: always() + with: + files: build/test-results/**/*.xml + + build-java11: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Set up JDK 11 + uses: actions/setup-java@v2 + with: + java-version: '11' + distribution: 'adopt' + - name: Grant execute permission for gradlew + run: chmod +x gradlew + - name: Tests with Gradle + run: ./gradlew test + - name: Build with Gradle + run: ./gradlew shadowJar + - name: Publish Unit Test Results + uses: EnricoMi/publish-unit-test-result-action@v1 + if: always() + with: + files: build/test-results/**/*.xml + + build-java8: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Set up JDK 8 + uses: actions/setup-java@v2 + with: + java-version: '8' + distribution: 'adopt' + - name: Grant execute permission for gradlew + run: chmod +x gradlew + - name: Tests with Gradle + run: ./gradlew test + - name: Build with Gradle + run: ./gradlew shadowJar + - name: Publish Unit Test Results + uses: EnricoMi/publish-unit-test-result-action@v1 + if: always() + with: + files: build/test-results/**/*.xml + - name: Upload Artifact + uses: actions/upload-artifact@v2.2.2 + with: + name: Builds + path: build/libs/*.jar diff --git a/.gitignore b/.gitignore index 1b6985c0..5eabcffb 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,134 @@ -# Ignore Gradle project-specific cache directory +# This is just filled with random stuff... just ignore lol + +# User-specific stuff +.idea/ +.vscode/ +.metadata/ +.settings/ +bin/ +.classpath +.factorypath +.project +build/ + +*.iml +*.ipr +*.iws + +# IntelliJ +out/ +# mpeltonen/sbt-idea plugin +.idea_modules/ + +# JIRA plugin +atlassian-ide-plugin.xml + +# Compiled class file +*.class + +# Log file +*.log + +# BlueJ files +*.ctxt + +# Package Files # +*.jar +*.war +*.nar +*.ear +*.zip +*.tar.gz +*.rar + +# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml +hs_err_pid* + +*~ + +# temporary files which can be created if a process still has a handle open of a deleted file +.fuse_hidden* + +# KDE directory preferences +.directory + +# Linux trash folder which might appear on any partition or disk +.Trash-* + +# .nfs files are created when an open file is removed but is still being accessed +.nfs* + +# General +.DS_Store +.AppleDouble +.LSOverride + +# Icon must end with two \r +Icon + +# Thumbnails +._* + +# Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns +.com.apple.timemachine.donotpresent + +# Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk + +# Windows thumbnail cache files +Thumbs.db +Thumbs.db:encryptable +ehthumbs.db +ehthumbs_vista.db + +# Dump file +*.stackdump + +# Folder config file +[Dd]esktop.ini + +# Recycle Bin used on file shares +$RECYCLE.BIN/ + +# Windows Installer files +*.cab +*.msi +*.msix +*.msm +*.msp + +# Windows shortcuts +*.lnk + .gradle +build/ + +# Ignore Gradle GUI config +gradle-app.setting + +# Cache of project +.gradletasknamecache + +**/build/ + +# Common working directory +run/ -# Ignore Gradle build output directory -build +# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored) +!gradle-wrapper.jar +password.txt +!lib/** +.dev +**.class +.gradle/ +bin/** \ No newline at end of file diff --git a/bin/main/com/gmail/picono435/picojobs/PicoJobsPlugin$1.class b/bin/main/com/gmail/picono435/picojobs/PicoJobsPlugin$1.class deleted file mode 100644 index edf17ff7..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/PicoJobsPlugin$1.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/PicoJobsPlugin$2.class b/bin/main/com/gmail/picono435/picojobs/PicoJobsPlugin$2.class deleted file mode 100644 index 68aa57dc..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/PicoJobsPlugin$2.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/PicoJobsPlugin$3.class b/bin/main/com/gmail/picono435/picojobs/PicoJobsPlugin$3.class deleted file mode 100644 index 919df41f..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/PicoJobsPlugin$3.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/PicoJobsPlugin$4.class b/bin/main/com/gmail/picono435/picojobs/PicoJobsPlugin$4.class deleted file mode 100644 index 59d4910c..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/PicoJobsPlugin$4.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/PicoJobsPlugin$5.class b/bin/main/com/gmail/picono435/picojobs/PicoJobsPlugin$5.class deleted file mode 100644 index ce3c6e04..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/PicoJobsPlugin$5.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/PicoJobsPlugin.class b/bin/main/com/gmail/picono435/picojobs/PicoJobsPlugin.class deleted file mode 100644 index d0f8e72b..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/PicoJobsPlugin.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/api/EconomyImplementation.class b/bin/main/com/gmail/picono435/picojobs/api/EconomyImplementation.class deleted file mode 100644 index afc02bb3..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/api/EconomyImplementation.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/api/Job$1.class b/bin/main/com/gmail/picono435/picojobs/api/Job$1.class deleted file mode 100644 index e949437f..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/api/Job$1.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/api/Job.class b/bin/main/com/gmail/picono435/picojobs/api/Job.class deleted file mode 100644 index 876308d8..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/api/Job.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/api/JobPlayer.class b/bin/main/com/gmail/picono435/picojobs/api/JobPlayer.class deleted file mode 100644 index efc48705..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/api/JobPlayer.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/api/PicoJobsAPI.class b/bin/main/com/gmail/picono435/picojobs/api/PicoJobsAPI.class deleted file mode 100644 index f0bbb9c6..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/api/PicoJobsAPI.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/api/StorageMethod.class b/bin/main/com/gmail/picono435/picojobs/api/StorageMethod.class deleted file mode 100644 index 59debff8..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/api/StorageMethod.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/api/Type.class b/bin/main/com/gmail/picono435/picojobs/api/Type.class deleted file mode 100644 index dc811c97..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/api/Type.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/api/events/PlayerEnterJobEvent.class b/bin/main/com/gmail/picono435/picojobs/api/events/PlayerEnterJobEvent.class deleted file mode 100644 index 001b0d8b..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/api/events/PlayerEnterJobEvent.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/api/events/PlayerFinishWorkEvent.class b/bin/main/com/gmail/picono435/picojobs/api/events/PlayerFinishWorkEvent.class deleted file mode 100644 index e7b99769..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/api/events/PlayerFinishWorkEvent.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/api/events/PlayerLeaveJobEvent.class b/bin/main/com/gmail/picono435/picojobs/api/events/PlayerLeaveJobEvent.class deleted file mode 100644 index 05eb5305..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/api/events/PlayerLeaveJobEvent.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/api/events/PlayerStartWorkEvent.class b/bin/main/com/gmail/picono435/picojobs/api/events/PlayerStartWorkEvent.class deleted file mode 100644 index 4fe8a332..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/api/events/PlayerStartWorkEvent.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/api/events/PlayerWithdrawEvent.class b/bin/main/com/gmail/picono435/picojobs/api/events/PlayerWithdrawEvent.class deleted file mode 100644 index cc641833..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/api/events/PlayerWithdrawEvent.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/api/managers/JobsManager.class b/bin/main/com/gmail/picono435/picojobs/api/managers/JobsManager.class deleted file mode 100644 index 6eedf4ed..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/api/managers/JobsManager.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/api/managers/LanguageManager.class b/bin/main/com/gmail/picono435/picojobs/api/managers/LanguageManager.class deleted file mode 100644 index 20a352b3..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/api/managers/LanguageManager.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/api/managers/PlayersManager.class b/bin/main/com/gmail/picono435/picojobs/api/managers/PlayersManager.class deleted file mode 100644 index 51aea1f4..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/api/managers/PlayersManager.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/api/managers/SettingsManager.class b/bin/main/com/gmail/picono435/picojobs/api/managers/SettingsManager.class deleted file mode 100644 index 156cf915..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/api/managers/SettingsManager.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/commands/JobsAdminCommand.class b/bin/main/com/gmail/picono435/picojobs/commands/JobsAdminCommand.class deleted file mode 100644 index 97a60c75..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/commands/JobsAdminCommand.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/commands/JobsCommand.class b/bin/main/com/gmail/picono435/picojobs/commands/JobsCommand.class deleted file mode 100644 index 18a55055..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/commands/JobsCommand.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/hooks/PlaceholderAPIHook.class b/bin/main/com/gmail/picono435/picojobs/hooks/PlaceholderAPIHook.class deleted file mode 100644 index 4e967541..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/hooks/PlaceholderAPIHook.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/hooks/PlayerPointsHook.class b/bin/main/com/gmail/picono435/picojobs/hooks/PlayerPointsHook.class deleted file mode 100644 index 2296bc1a..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/hooks/PlayerPointsHook.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/hooks/VaultHook.class b/bin/main/com/gmail/picono435/picojobs/hooks/VaultHook.class deleted file mode 100644 index eda38df3..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/hooks/VaultHook.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/hooks/economy/ExpImplementation.class b/bin/main/com/gmail/picono435/picojobs/hooks/economy/ExpImplementation.class deleted file mode 100644 index 0b6c0a42..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/hooks/economy/ExpImplementation.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/hooks/economy/PointsImplementation.class b/bin/main/com/gmail/picono435/picojobs/hooks/economy/PointsImplementation.class deleted file mode 100644 index 8748023c..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/hooks/economy/PointsImplementation.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/hooks/economy/TokenManagerImplementation.class b/bin/main/com/gmail/picono435/picojobs/hooks/economy/TokenManagerImplementation.class deleted file mode 100644 index 42355f84..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/hooks/economy/TokenManagerImplementation.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/hooks/economy/VaultImplementation.class b/bin/main/com/gmail/picono435/picojobs/hooks/economy/VaultImplementation.class deleted file mode 100644 index e309f58a..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/hooks/economy/VaultImplementation.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/hooks/expansions/JobPlayerExpansion.class b/bin/main/com/gmail/picono435/picojobs/hooks/expansions/JobPlayerExpansion.class deleted file mode 100644 index 6934e09e..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/hooks/expansions/JobPlayerExpansion.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/listeners/AliasesListeners.class b/bin/main/com/gmail/picono435/picojobs/listeners/AliasesListeners.class deleted file mode 100644 index e796abbd..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/listeners/AliasesListeners.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/listeners/ClickInventoryListener.class b/bin/main/com/gmail/picono435/picojobs/listeners/ClickInventoryListener.class deleted file mode 100644 index 151f57a1..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/listeners/ClickInventoryListener.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/listeners/CreatePlayerListener$1.class b/bin/main/com/gmail/picono435/picojobs/listeners/CreatePlayerListener$1.class deleted file mode 100644 index 9128e857..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/listeners/CreatePlayerListener$1.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/listeners/CreatePlayerListener.class b/bin/main/com/gmail/picono435/picojobs/listeners/CreatePlayerListener.class deleted file mode 100644 index 4c847acd..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/listeners/CreatePlayerListener.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/listeners/ExecuteCommandListener.class b/bin/main/com/gmail/picono435/picojobs/listeners/ExecuteCommandListener.class deleted file mode 100644 index b625cf30..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/listeners/ExecuteCommandListener.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/listeners/jobs/BreakListener.class b/bin/main/com/gmail/picono435/picojobs/listeners/jobs/BreakListener.class deleted file mode 100644 index 364407d7..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/listeners/jobs/BreakListener.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/listeners/jobs/CraftListener.class b/bin/main/com/gmail/picono435/picojobs/listeners/jobs/CraftListener.class deleted file mode 100644 index f689fade..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/listeners/jobs/CraftListener.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/listeners/jobs/EatListener.class b/bin/main/com/gmail/picono435/picojobs/listeners/jobs/EatListener.class deleted file mode 100644 index e7089814..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/listeners/jobs/EatListener.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/listeners/jobs/EnchantListener.class b/bin/main/com/gmail/picono435/picojobs/listeners/jobs/EnchantListener.class deleted file mode 100644 index 5718fcac..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/listeners/jobs/EnchantListener.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/listeners/jobs/FillListener.class b/bin/main/com/gmail/picono435/picojobs/listeners/jobs/FillListener.class deleted file mode 100644 index bd8ea9a5..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/listeners/jobs/FillListener.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/listeners/jobs/FisherListener.class b/bin/main/com/gmail/picono435/picojobs/listeners/jobs/FisherListener.class deleted file mode 100644 index 98297deb..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/listeners/jobs/FisherListener.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/listeners/jobs/KillEntityListener.class b/bin/main/com/gmail/picono435/picojobs/listeners/jobs/KillEntityListener.class deleted file mode 100644 index b17749c6..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/listeners/jobs/KillEntityListener.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/listeners/jobs/KillerListener.class b/bin/main/com/gmail/picono435/picojobs/listeners/jobs/KillerListener.class deleted file mode 100644 index 3d32c9e8..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/listeners/jobs/KillerListener.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/listeners/jobs/MilkListener.class b/bin/main/com/gmail/picono435/picojobs/listeners/jobs/MilkListener.class deleted file mode 100644 index 24c9e190..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/listeners/jobs/MilkListener.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/listeners/jobs/PlaceListener.class b/bin/main/com/gmail/picono435/picojobs/listeners/jobs/PlaceListener.class deleted file mode 100644 index ddea336c..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/listeners/jobs/PlaceListener.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/listeners/jobs/RepairListener.class b/bin/main/com/gmail/picono435/picojobs/listeners/jobs/RepairListener.class deleted file mode 100644 index 4198d78d..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/listeners/jobs/RepairListener.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/listeners/jobs/ShearListener.class b/bin/main/com/gmail/picono435/picojobs/listeners/jobs/ShearListener.class deleted file mode 100644 index 2a8948df..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/listeners/jobs/ShearListener.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/listeners/jobs/SmeltListener.class b/bin/main/com/gmail/picono435/picojobs/listeners/jobs/SmeltListener.class deleted file mode 100644 index ed13b781..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/listeners/jobs/SmeltListener.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/listeners/jobs/TameListener.class b/bin/main/com/gmail/picono435/picojobs/listeners/jobs/TameListener.class deleted file mode 100644 index efb00ccd..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/listeners/jobs/TameListener.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/menu/ActionEnum.class b/bin/main/com/gmail/picono435/picojobs/menu/ActionEnum.class deleted file mode 100644 index bd93a19c..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/menu/ActionEnum.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/menu/ActionMenu.class b/bin/main/com/gmail/picono435/picojobs/menu/ActionMenu.class deleted file mode 100644 index 961246e9..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/menu/ActionMenu.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/menu/JobsMenu.class b/bin/main/com/gmail/picono435/picojobs/menu/JobsMenu.class deleted file mode 100644 index 9b794e2b..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/menu/JobsMenu.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/storage/StorageFactory.class b/bin/main/com/gmail/picono435/picojobs/storage/StorageFactory.class deleted file mode 100644 index 5f6fd79c..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/storage/StorageFactory.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/storage/StorageManager.class b/bin/main/com/gmail/picono435/picojobs/storage/StorageManager.class deleted file mode 100644 index a6e4e523..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/storage/StorageManager.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/storage/cache/CacheManager.class b/bin/main/com/gmail/picono435/picojobs/storage/cache/CacheManager.class deleted file mode 100644 index 146fb53d..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/storage/cache/CacheManager.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/storage/file/ConfigurationStorageFactory.class b/bin/main/com/gmail/picono435/picojobs/storage/file/ConfigurationStorageFactory.class deleted file mode 100644 index 6da7ea46..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/storage/file/ConfigurationStorageFactory.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/storage/file/HoconStorage.class b/bin/main/com/gmail/picono435/picojobs/storage/file/HoconStorage.class deleted file mode 100644 index 1294cb66..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/storage/file/HoconStorage.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/storage/file/JsonStorage.class b/bin/main/com/gmail/picono435/picojobs/storage/file/JsonStorage.class deleted file mode 100644 index 5a8ef822..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/storage/file/JsonStorage.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/storage/file/YamlStorage.class b/bin/main/com/gmail/picono435/picojobs/storage/file/YamlStorage.class deleted file mode 100644 index db281cb3..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/storage/file/YamlStorage.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/storage/mongodb/MongoStorage.class b/bin/main/com/gmail/picono435/picojobs/storage/mongodb/MongoStorage.class deleted file mode 100644 index 705e6148..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/storage/mongodb/MongoStorage.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/storage/sql/HikariStorageFactory.class b/bin/main/com/gmail/picono435/picojobs/storage/sql/HikariStorageFactory.class deleted file mode 100644 index 99b7da92..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/storage/sql/HikariStorageFactory.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/storage/sql/MariaDbStorage.class b/bin/main/com/gmail/picono435/picojobs/storage/sql/MariaDbStorage.class deleted file mode 100644 index 45eead73..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/storage/sql/MariaDbStorage.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/storage/sql/MySqlStorage.class b/bin/main/com/gmail/picono435/picojobs/storage/sql/MySqlStorage.class deleted file mode 100644 index 6112cae9..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/storage/sql/MySqlStorage.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/storage/sql/PostgreStorage.class b/bin/main/com/gmail/picono435/picojobs/storage/sql/PostgreStorage.class deleted file mode 100644 index 7063d8c0..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/storage/sql/PostgreStorage.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/storage/sql/file/FlatfileStorageFactory.class b/bin/main/com/gmail/picono435/picojobs/storage/sql/file/FlatfileStorageFactory.class deleted file mode 100644 index bcdb3718..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/storage/sql/file/FlatfileStorageFactory.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/storage/sql/file/H2Storage.class b/bin/main/com/gmail/picono435/picojobs/storage/sql/file/H2Storage.class deleted file mode 100644 index 91589b26..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/storage/sql/file/H2Storage.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/storage/sql/file/SqliteStorage.class b/bin/main/com/gmail/picono435/picojobs/storage/sql/file/SqliteStorage.class deleted file mode 100644 index 8861e785..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/storage/sql/file/SqliteStorage.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/utils/DocConverter.class b/bin/main/com/gmail/picono435/picojobs/utils/DocConverter.class deleted file mode 100644 index 59503a79..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/utils/DocConverter.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/utils/FileCreator.class b/bin/main/com/gmail/picono435/picojobs/utils/FileCreator.class deleted file mode 100644 index d88afcee..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/utils/FileCreator.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/utils/ItemBuilder.class b/bin/main/com/gmail/picono435/picojobs/utils/ItemBuilder.class deleted file mode 100644 index 19546f4b..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/utils/ItemBuilder.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/utils/OtherUtils.class b/bin/main/com/gmail/picono435/picojobs/utils/OtherUtils.class deleted file mode 100644 index 13add81f..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/utils/OtherUtils.class and /dev/null differ diff --git a/bin/main/com/gmail/picono435/picojobs/utils/TimeFormatter.class b/bin/main/com/gmail/picono435/picojobs/utils/TimeFormatter.class deleted file mode 100644 index bb1b7e4a..00000000 Binary files a/bin/main/com/gmail/picono435/picojobs/utils/TimeFormatter.class and /dev/null differ diff --git a/bin/main/config.yml b/bin/main/config.yml deleted file mode 100644 index e565a628..00000000 --- a/bin/main/config.yml +++ /dev/null @@ -1,91 +0,0 @@ -# IMPORTANT # -# Our plugin uses PlaceholderAPI to make placeholders, it's not required but if you want to use it you need to add it -# A detailed wiki of our plugin can be found here: https://github.com/Picono435/wiki -# All the configurations are commented, but if you still need help check the wiki or send a message in our discord -# -# Remember that some configurations may be found in another files inside the settings folder. -# Here you will only find basic configurations -# IMPORTANT # - -# DO NOT CHANGE THIS -config-version: ${project.version} - -################################################################################# -# # -# Important configurations # -# # -################################################################################# -# In this category there is a lot of important configurations that should be read and changed with your necessities -# Put here the language that you want to use! -# A list of all the possible languages can be found here: https://github.com/Picono435/PicoJobs/tree/master/src/main/resources/langs -# The translations can be INCORRECT or INCOMPLETE because they are made by the community, but you can always change them. -lang: "en-GB" -# Here you can put the name of your server, this message will appier in the start of all messages. To disable just put nothing. -prefix: "&6[PicoJobs] " -# Here you can enable/disable the auto update -auto-update: true - -################################################################################# -# # -# Storage configurations # -# # -################################################################################# -# In this configuration you can select the storage method that you want to use and config it. -storage: - # Here is a list of storage methods that you can choose: - # - # | Remote databases - require connection information to be configured below - # |=> MySQL - # |=> MariaDB (recommended) - # |=> PostgreSQL - # |=> MongoDB - # - # | Flatfile/local database - don't require any extra configuration - # |=> H2 (recommended) - # |=> SQL - # - # | Readable & editable text files - don't require any extra configuration - # |=> YAML (recommended) - # |=> JSON - # |=> HOCON - storage-method: h2 - # Remote SQL databases (MySQL, MariaDB, PostgreSQL) configuration - remote-sql: - host: localhost - port: 3306 - database: mydb - username: root - password: "" - tablename: "jobplayers" - # Remote MongoDB database configuration - mongodb: - # Here you need to put the MongoDB Connection URI - # For more information check https://docs.mongodb.com/manual/reference/connection-string/ - URI: "mongodb+srv://:@mydatabases-host.mongodb.net/" - database: "mcserver" - collection: "jobplayers" - -################################################################################# -# # -# Basic configurations # -# # -################################################################################# -# In this category you can change the basic configurations of the plugin -# Do you want to use the NPC system Tutorial here: https://github.com/Picono435/wiki/npcs ** PREMIUM ONLY** -use-citizens: false -# What should happen when execute /jobs command? -# 1 = Ignore and send a message (This feature its not really useful yet, but it will be soon ;)) -# 2 = Execute basic commands, enter a job, get salary etc... etc... -# 3 = Open Jobs Menu -jobs-action: 3 -# What should be the salary cooldown in real life minutes 20 minutes = 1 minecraft day [DEFAULT: 600m=10h=30md] -salary-cooldown: 600 - -################################################################################# -# # -# Commands allow # -# # -################################################################################# -# In this category you can select all the commands that can only be used after a specific level (amount of works done) -commands: - /examplecommand: 5 \ No newline at end of file diff --git a/bin/main/langs/af-ZA.yml b/bin/main/langs/af-ZA.yml deleted file mode 100644 index c15aa8e3..00000000 --- a/bin/main/langs/af-ZA.yml +++ /dev/null @@ -1,129 +0,0 @@ ---- -#This file is a language file, here you can change all the messages for this language -#Placeholders only work with PlaceholderAPI, for more information see the comment down here. -#NOTE: -#In order to use any placeholder [ex: %jobplayer_job%, %player_name%] you will need to install the -#plugin PlaceholderAPI (https://www.spigotmc.org/resources/placeholderapi.6245/) -################################################################################# -## -#General messages # -## -################################################################################# -#In this category you can change the general messages of the plugin -no-permission: "&cHey! You do not have permission to execute that command." -ignore-action: "&cHey! Don't be lazy and go speak with the NPC." -choosed-job: "&aCongratulations! You choosed the job %jobplayer_job%&a." -accepted-work: "&aYou accepted the work of %jobplayer_work%." -no-salary: "&cYou do not have enough salary to get! Please go work ;(" -got-salary: "&aGreat Work! You just got your %jobplayer_salary% salary!" -finished-work: "&aCongratulations! You just finished your work. Use /jobs to get more information about it." -need-level: "&cHey! You need to do %a% works to execute that action." -no-args: "&cHey! Please use a valid syntax." -my-salary: "&aYou have %jobplayer_salary%$ of salary." -unknow-job: "&cThat job was not found, please use the TAB COMPLETE for get a list of jobs." -#In this message you can use the placeholders: %cooldown_mtime% -> Minecraft Time // %cooldown_time% -> Real Life Time -salary-cooldown: "&cYou need to wait more %cooldown_mtime% before get your salary again." -work-status: "&aHere is what you need to do: %jobplayer_work%" -admin-commands: |- - &6Full list of commands: - &e/jobsadmin help &6- &eSee this messages - &e/jobsadmin info &6- &eGets the information about a player - &e/jobsadmin reload &6- &eReload all the possible configurations. - &e/jobsadmin update &6- &eInstalls a update of the plugin - &e/jobsadmin about &6- &eGets informations about the server and the plugin - &e/jobsadmin set &6- &eSets the salary/method of a player - &e/jobsadmin editor &6- &eCreates a web editor session - &e/jobsadmin applyedits &6- &eApply the edits of a web editor session -member-commands: |- - &6Full list of commands: - &e/jobs help &6- &eSee this messages - &e/jobs choose &6- &eChooses your job - &e/jobs work &6- &eSee the status/Accept of your work - &e/jobs salary &6- &eCheck your salary - &e/jobs withdraw &6- &eWithdraw your salary - &e/jobs leave &6- &eLeaves the job -info-command: |- - &6Status of the player %player_name% - &eSalary: %jobplayer_salary% - &eIs Working: %jobplayer_working% - &eWork: %jobplayer_work% - &eJob: %jobplayer_job% -reload-command: "&aConfigurations, Jobs & Language were reloaded succefully." -player-not-found: "&cThat player is not online, please put a valid player." -unknow-error: "&cAn unknow error occuried, please check the console for more information." -left-job: "&cYou are not unemployed! We recommend you choose a new job or you will lose a lot of money." -already-updated: "&cThe plugin is already in the lastest version, for more information check our WIKI." -update-started: "&aThe update of the plugin PicoJobs started, please wait..." -updated-sucefully: "&aThe plugin was updated sucefully, please restart the server to finish the update." -sucefully: "&aThe action was made sucefully." -invalid-arg: "&aThe argument sent is invalid. Please check the mispell." -################################################################################# -## -#Format messages # -## -################################################################################# -#In this category you can change the formats of placeholders and other things -#All these messages work with Player Placeholders ;) (PlaceholderAPI Required) -#Change how the works should be displayed. (DEFAULT, to a specific job go into settings/jobs.yml) -break-work: "break %a% blocks" -kill-work: "kill %a% people" -fishing-work: "fish %a% fishes" -place-work: "place %a% blocks" -craft-work: "craft %a% items" -tame-work: "tame %a% animals" -shear-work: "shear %a% sheeps" -fill-work: "fill %a% buckets" -smelt-work: "smelt %a% items" -eat-work: "eat %a% items" -enchanting-work: "enchant %a% items" -repair-work: "repair %a% items" -milk-work: "take %a% milks from cows" -kill_entity-work: "kill %a% entities" -#When something is not find what should it appear -none-format: "None" -################################################################################# -## -#Command translations # -## -################################################################################# -#In this category you can add aliases for all the commands of the plugin -aliases: - jobs: - - "jobs" - - "job" - jobsadmin: - - "jobsadmin" - - "jobadmin" - choose: "choose" - work: "work" - salary: "salary" - withdraw: "withdraw" - leave: "leave" - help: "help" - info: "info" - reload: "reload" - update: "update" - about: "about" - set: "set" - method: "method" - job: "job" - editor: "editor" - applyedits: "applyedits" -################################################################################# -## -#Time translations # -## -################################################################################# -#In this category you can change all the time translations -seconds: "seconds" -second: "second" -minutes: "minutes" -minute: "minute" -hours: "hours" -hour: "hour" -days: "days" -day: "day" -months: "months" -month: "month" -years: "years" -year: "year" diff --git a/bin/main/langs/ar-SA.yml b/bin/main/langs/ar-SA.yml deleted file mode 100644 index 971f0ff2..00000000 --- a/bin/main/langs/ar-SA.yml +++ /dev/null @@ -1,129 +0,0 @@ ---- -#This file is a language file, here you can change all the messages for this language -#Placeholders only work with PlaceholderAPI, for more information see the comment down here. -#NOTE: -#In order to use any placeholder [ex: %jobplayer_job%, %player_name%] you will need to install the -#plugin PlaceholderAPI (https://www.spigotmc.org/resources/placeholderapi.6245/) -################################################################################# -## -#General messages # -## -################################################################################# -#In this category you can change the general messages of the plugin -no-permission: "&cHey! ليس لديك الإذن لتنفيذ هذا الأمر." -ignore-action: "&cمرحبًا! لا تكسروا وتذهبوا للتحدث مع NPC." -choosed-job: "تهانينا! لقد اخترت الوظيفة %jobplayer_job%&a." -accepted-work: "&aلقد قبلت عمل %jobplayer_work%." -no-salary: "&cليس لديك ما يكفي من الراتب! الرجاء الذهاب إلى العمل ;(" -got-salary: "&aعمل رائع! لقد حصلت للتو على مرتباتك %jobplayer_salary%!" -finished-work: "تهانينا! لقد انتهيت لتوك من عملك. استخدم /وظائف للحصول على مزيد من المعلومات عنها." -need-level: "&cHey! تحتاج إلى القيام بـ %a% يعمل لتنفيذ هذا الإجراء." -no-args: "&cHey! الرجاء استخدام بناء بناء صحيح." -my-salary: "&aلديك %jobplayer_salary%دولار من الراتب." -unknow-job: "&cلم يتم العثور على الوظيفة ، يرجى استخدام TB COMPLETE للحصول على قائمة بالوظائف." -#In this message you can use the placeholders: %cooldown_mtime% -> Minecraft Time // %cooldown_time% -> Real Life Time -salary-cooldown: "&cتحتاج إلى الانتظار أكثر من %cooldown_mtime% قبل الحصول على راتبك مرة أخرى." -work-status: "&aهنا ما عليك القيام به: %jobplayer_work%" -admin-commands: |- - &6Full list of commands: - &e/jobsadmin help &6- &eSee this messages - &e/jobsadmin info &6- &eGets the information about a player - &e/jobsadmin reload &6- &eReload all the possible configurations. - &e/jobsadmin update &6- &eInstalls a update of the plugin - &e/jobsadmin about &6- &eGets informations about the server and the plugin - &e/jobsadmin set &6- &eSets the salary/method of a player - &e/jobsadmin editor &6- &eCreates a web editor session - &e/jobsadmin applyedits &6- &eApply the edits of a web editor session -member-commands: |- - &6 قائمة الأوامر الكاملة: - &e/jobhelp &6- &eعرض هذه الرسائل - &e/jobs اختر &6- &eChooses your job - &e/job work&6- &eمشاهدة حالة/قبول عملك - &e/وظائف مرتباتك &6- &eالتحقق من راتبك - &e/jobs سحبت &6- &eWowP مرتباتك - &e/jobs leave &6- &eLeaves of the work -info-command: |- - &6 حالة اللاعب %player_name% - &eSalary: %jobplayer_salary% - &eيجري العمل: %jobplayer_working% - &eWork: %jobplayer_work% - &eJob: %jobplayer_job% -reload-command: "تم بنجاح إعادة تحميل &aConfigurations, Jobs & Language." -player-not-found: "&cهذا اللاعب غير متصل، الرجاء وضع لاعب صالح." -unknow-error: "&cحدث خطأ غير معروف، الرجاء التحقق من وحدة التحكم للحصول على مزيد من المعلومات." -left-job: "&cأنت لست عاطلاً! ننصحك باختيار وظيفة جديدة أو ستفقد الكثير من المال." -already-updated: "&cالبرنامج المساعد موجود بالفعل في الإصدار الأخير، للمزيد من المعلومات تحقق من WIKI لدينا." -update-started: "&aبدأ تحديث البرنامج المساعد PicoJobs، الرجاء الانتظار..." -updated-sucefully: "&aتم تحديث الملحق بشكل دقيق، الرجاء إعادة تشغيل الخادم لإنهاء التحديث." -sucefully: "&aتم اتخاذ الإجراء بشكل مناسب." -invalid-arg: "&aالوسيطة المرسلة غير صالحة. الرجاء التحقق من الخطأ." -################################################################################# -## -#Format messages # -## -################################################################################# -#In this category you can change the formats of placeholders and other things -#All these messages work with Player Placeholders ;) (PlaceholderAPI Required) -#Change how the works should be displayed. (DEFAULT, to a specific job go into settings/jobs.yml) -break-work: "قطع %a% كتل" -kill-work: "قتل %a% من الناس" -fishing-work: "السمك %a% من الأسماك" -place-work: "وضع %a% كتل" -craft-work: "صنع %a% عنصر" -tame-work: "ترويض %a% حيوانات" -shear-work: "الغطاء النخفي %a٪" -fill-work: "تعبئة %a٪ من الدلاء" -smelt-work: "صهر %a% عنصر" -eat-work: "أكل %a٪ من العناصر" -enchanting-work: "عنصر مشعل %a%" -repair-work: "إصلاح %a% عنصر" -milk-work: "أخذ %a% من الحليب من الأبقار" -kill_entity-work: "اقتل %aمن الكيانات" -#When something is not find what should it appear -none-format: "لا" -################################################################################# -## -#Command translations # -## -################################################################################# -#In this category you can add aliases for all the commands of the plugin -aliases: - jobs: - - "الوظائف" - - "العمل" - jobsadmin: - - "jobsadmin" - - "jobadmin" - choose: "اختر" - work: "العمل" - salary: "الراتب" - withdraw: "سحب" - leave: "المغادرة" - help: "المساعدة" - info: "معلومات" - reload: "reload" - update: "تحديث" - about: "حول" - set: "تعيين" - method: "طريقة" - job: "العمل" - editor: "editor" - applyedits: "applyedits" -################################################################################# -## -#Time translations # -## -################################################################################# -#In this category you can change all the time translations -seconds: "ثواني" -second: "ثانية" -minutes: "دقائق" -minute: "دقيقة" -hours: "ساعات" -hour: "ساعة" -days: "أيام" -day: "يوم" -months: "أشهر" -month: "شهر" -years: "سنوات" -year: "سنة" diff --git a/bin/main/langs/ca-ES.yml b/bin/main/langs/ca-ES.yml deleted file mode 100644 index c15aa8e3..00000000 --- a/bin/main/langs/ca-ES.yml +++ /dev/null @@ -1,129 +0,0 @@ ---- -#This file is a language file, here you can change all the messages for this language -#Placeholders only work with PlaceholderAPI, for more information see the comment down here. -#NOTE: -#In order to use any placeholder [ex: %jobplayer_job%, %player_name%] you will need to install the -#plugin PlaceholderAPI (https://www.spigotmc.org/resources/placeholderapi.6245/) -################################################################################# -## -#General messages # -## -################################################################################# -#In this category you can change the general messages of the plugin -no-permission: "&cHey! You do not have permission to execute that command." -ignore-action: "&cHey! Don't be lazy and go speak with the NPC." -choosed-job: "&aCongratulations! You choosed the job %jobplayer_job%&a." -accepted-work: "&aYou accepted the work of %jobplayer_work%." -no-salary: "&cYou do not have enough salary to get! Please go work ;(" -got-salary: "&aGreat Work! You just got your %jobplayer_salary% salary!" -finished-work: "&aCongratulations! You just finished your work. Use /jobs to get more information about it." -need-level: "&cHey! You need to do %a% works to execute that action." -no-args: "&cHey! Please use a valid syntax." -my-salary: "&aYou have %jobplayer_salary%$ of salary." -unknow-job: "&cThat job was not found, please use the TAB COMPLETE for get a list of jobs." -#In this message you can use the placeholders: %cooldown_mtime% -> Minecraft Time // %cooldown_time% -> Real Life Time -salary-cooldown: "&cYou need to wait more %cooldown_mtime% before get your salary again." -work-status: "&aHere is what you need to do: %jobplayer_work%" -admin-commands: |- - &6Full list of commands: - &e/jobsadmin help &6- &eSee this messages - &e/jobsadmin info &6- &eGets the information about a player - &e/jobsadmin reload &6- &eReload all the possible configurations. - &e/jobsadmin update &6- &eInstalls a update of the plugin - &e/jobsadmin about &6- &eGets informations about the server and the plugin - &e/jobsadmin set &6- &eSets the salary/method of a player - &e/jobsadmin editor &6- &eCreates a web editor session - &e/jobsadmin applyedits &6- &eApply the edits of a web editor session -member-commands: |- - &6Full list of commands: - &e/jobs help &6- &eSee this messages - &e/jobs choose &6- &eChooses your job - &e/jobs work &6- &eSee the status/Accept of your work - &e/jobs salary &6- &eCheck your salary - &e/jobs withdraw &6- &eWithdraw your salary - &e/jobs leave &6- &eLeaves the job -info-command: |- - &6Status of the player %player_name% - &eSalary: %jobplayer_salary% - &eIs Working: %jobplayer_working% - &eWork: %jobplayer_work% - &eJob: %jobplayer_job% -reload-command: "&aConfigurations, Jobs & Language were reloaded succefully." -player-not-found: "&cThat player is not online, please put a valid player." -unknow-error: "&cAn unknow error occuried, please check the console for more information." -left-job: "&cYou are not unemployed! We recommend you choose a new job or you will lose a lot of money." -already-updated: "&cThe plugin is already in the lastest version, for more information check our WIKI." -update-started: "&aThe update of the plugin PicoJobs started, please wait..." -updated-sucefully: "&aThe plugin was updated sucefully, please restart the server to finish the update." -sucefully: "&aThe action was made sucefully." -invalid-arg: "&aThe argument sent is invalid. Please check the mispell." -################################################################################# -## -#Format messages # -## -################################################################################# -#In this category you can change the formats of placeholders and other things -#All these messages work with Player Placeholders ;) (PlaceholderAPI Required) -#Change how the works should be displayed. (DEFAULT, to a specific job go into settings/jobs.yml) -break-work: "break %a% blocks" -kill-work: "kill %a% people" -fishing-work: "fish %a% fishes" -place-work: "place %a% blocks" -craft-work: "craft %a% items" -tame-work: "tame %a% animals" -shear-work: "shear %a% sheeps" -fill-work: "fill %a% buckets" -smelt-work: "smelt %a% items" -eat-work: "eat %a% items" -enchanting-work: "enchant %a% items" -repair-work: "repair %a% items" -milk-work: "take %a% milks from cows" -kill_entity-work: "kill %a% entities" -#When something is not find what should it appear -none-format: "None" -################################################################################# -## -#Command translations # -## -################################################################################# -#In this category you can add aliases for all the commands of the plugin -aliases: - jobs: - - "jobs" - - "job" - jobsadmin: - - "jobsadmin" - - "jobadmin" - choose: "choose" - work: "work" - salary: "salary" - withdraw: "withdraw" - leave: "leave" - help: "help" - info: "info" - reload: "reload" - update: "update" - about: "about" - set: "set" - method: "method" - job: "job" - editor: "editor" - applyedits: "applyedits" -################################################################################# -## -#Time translations # -## -################################################################################# -#In this category you can change all the time translations -seconds: "seconds" -second: "second" -minutes: "minutes" -minute: "minute" -hours: "hours" -hour: "hour" -days: "days" -day: "day" -months: "months" -month: "month" -years: "years" -year: "year" diff --git a/bin/main/langs/cs-CZ.yml b/bin/main/langs/cs-CZ.yml deleted file mode 100644 index b4fb2d2c..00000000 --- a/bin/main/langs/cs-CZ.yml +++ /dev/null @@ -1,129 +0,0 @@ ---- -#This file is a language file, here you can change all the messages for this language -#Placeholders only work with PlaceholderAPI, for more information see the comment down here. -#NOTE: -#In order to use any placeholder [ex: %jobplayer_job%, %player_name%] you will need to install the -#plugin PlaceholderAPI (https://www.spigotmc.org/resources/placeholderapi.6245/) -################################################################################# -## -#General messages # -## -################################################################################# -#In this category you can change the general messages of the plugin -no-permission: "&cHej! Nemáte oprávnění k provedení tohoto příkazu." -ignore-action: "&cHej! Nebuďte líní a nemluvte s NPC." -choosed-job: "&aGratulujeme! Vybrali jste pracovní pozici %jobplayer_job%&a." -accepted-work: "&aPřijali jste práci %jobplayer_work%." -no-salary: "&cNemáš dostatek platu, abys mohl získat! Prosím, jdi do práce ;(" -got-salary: "&aSkvělá práce! Právě jste dostali svůj %jobplayer_salary% plat!" -finished-work: "&aGratulujeme! Právě jste dokončili svou práci. Použij /jobs pro získání více informací o tom." -need-level: "&cHej! Pro provedení této akce musíš udělat %a% práce." -no-args: "&cHej! Použijte platnou syntaxi." -my-salary: "&aMáte mzdu ve výši %jobplayer_salary%$." -unknow-job: "&cTato práce nebyla nalezena, prosím použijte TAB COMPLETE pro získání seznamu pracovních míst." -#In this message you can use the placeholders: %cooldown_mtime% -> Minecraft Time // %cooldown_time% -> Real Life Time -salary-cooldown: "&cMusíš počkat více %cooldown_mtime% než budeš dostávat plat." -work-status: "&aZde je to, co potřebujete udělat: %jobplayer_work%" -admin-commands: |- - &6Plný seznam příkazů: - &e/jobsadmin help &6- &eViz tyto zprávy - &e/jobsadmin info &6- &eGens informace o hráči - &e/jobsadmin znovu načte &6- &eReload všechny možné konfigurace. - &e/jobsadmin aktualizuje &6- &eInstalls aktualizaci pluginu - &e/jobsadmin o &6- &eGety informace o serveru a pluginu - &e/jobsadmin nastaveno &6- &eNastaví salary/metodu hráče - &e/jobsadmin editor &6- &eVytvoří relaci webového editoru - &e/jobsadmin applyedits &6- &eApply the edits web editor session -member-commands: |- - &6Plný seznam příkazů: - &e/job help &6- &eSee this - &e/job choose &6- &eChooses your job - &6- &e/job work &eSee the status/Accept of your work - &e/job platy &6- &eCheck your paid - &e/job withdraw&6- &eWithdraw your pay - &eWithdraw your pay from &6- &eLeaves the job -info-command: |- - &6Stav hráče %player_name% - &eSalary: %jobplayer_salary% - &eIs Working: %jobplayer_working% - &eWork: %jobplayer_work% - &eJob: %jobplayer_job% -reload-command: "&aKonfigurace, Úlohy a jazyk byly znovu načteny." -player-not-found: "&cTento hráč není online, prosím vložte platného hráče." -unknow-error: "&cVyskytla se neznámá chyba, zkontrolujte prosím konzoli pro více informací." -left-job: "&cNejste nezaměstnaný! Doporučujeme si vybrat novou práci, nebo přijdete o mnoho peněz." -already-updated: "&cPlugin je již v poslední verzi, pro více informací se podívejte na naši WIKI." -update-started: "&aAktualizace pluginu PicoJobs začala, prosím čekejte..." -updated-sucefully: "&aDoplněk byl bezpečně aktualizován, prosím restartujte server pro dokončení aktualizace." -sucefully: "&aAkce byla určitě provedena." -invalid-arg: "&aOdeslaný argument je neplatný. Zkontrolujte prosím chybné hlášení." -################################################################################# -## -#Format messages # -## -################################################################################# -#In this category you can change the formats of placeholders and other things -#All these messages work with Player Placeholders ;) (PlaceholderAPI Required) -#Change how the works should be displayed. (DEFAULT, to a specific job go into settings/jobs.yml) -break-work: "přerušit %a% bloků" -kill-work: "zabít %a% lidí" -fishing-work: "ryba %a% ryb" -place-work: "umístit %a% bloků" -craft-work: "vyrobit %a% položek" -tame-work: "ochočit %a% zvířat" -shear-work: "ostříhat %a% ovcí" -fill-work: "vyplnit %a% kbelíků" -smelt-work: "tavit %a% položek" -eat-work: "jíst %a% položek" -enchanting-work: "okouzlující %a% položek" -repair-work: "opravit %a% položek" -milk-work: "odebrat %a% mléka od krav" -kill_entity-work: "zabij %a% entit" -#When something is not find what should it appear -none-format: "Nic" -################################################################################# -## -#Command translations # -## -################################################################################# -#In this category you can add aliases for all the commands of the plugin -aliases: - jobs: - - "pracovní pozice" - - "práce" - jobsadmin: - - "jobsadmin" - - "jobadmin" - choose: "vybrat" - work: "práce" - salary: "Mzdy" - withdraw: "odebrat" - leave: "opustit" - help: "Nápověda" - info: "informace" - reload: "reload" - update: "aktualizovat" - about: "asi" - set: "nastavit" - method: "metoda" - job: "práce" - editor: "editor" - applyedits: "použitelné úpravy" -################################################################################# -## -#Time translations # -## -################################################################################# -#In this category you can change all the time translations -seconds: "sekundy" -second: "sekunda" -minutes: "minuty" -minute: "minuta" -hours: "hodiny" -hour: "hodina" -days: "dny" -day: "den" -months: "měsíce" -month: "měsíc" -years: "roků" -year: "Rok" diff --git a/bin/main/langs/da-DK.yml b/bin/main/langs/da-DK.yml deleted file mode 100644 index 49383c0a..00000000 --- a/bin/main/langs/da-DK.yml +++ /dev/null @@ -1,129 +0,0 @@ ---- -#This file is a language file, here you can change all the messages for this language -#Placeholders only work with PlaceholderAPI, for more information see the comment down here. -#NOTE: -#In order to use any placeholder [ex: %jobplayer_job%, %player_name%] you will need to install the -#plugin PlaceholderAPI (https://www.spigotmc.org/resources/placeholderapi.6245/) -################################################################################# -## -#General messages # -## -################################################################################# -#In this category you can change the general messages of the plugin -no-permission: "&cHey! You do not have permission to execute that command." -ignore-action: "&cHey! Don't be lazy and go speak with the NPC." -choosed-job: "&aCongratulations! You choosed the job %jobplayer_job%&a." -accepted-work: "&aYou accepted the work of %jobplayer_work%." -no-salary: "&cYou do not have enough salary to get! Please go work ;(" -got-salary: "&aGreat Work! You just got your %jobplayer_salary% salary!" -finished-work: "&aCongratulations! You just finished your work. Use /jobs to get more information about it." -need-level: "&cHey! Du skal gøre %a% værker for at udføre denne handling." -no-args: "&cHey! Brug venligst en gyldig syntaks." -my-salary: "&aDu har %jobplayer_salary%$ løn." -unknow-job: "&cDette job blev ikke fundet, benyt TAB KOMPLET for at få en liste over job." -#In this message you can use the placeholders: %cooldown_mtime% -> Minecraft Time // %cooldown_time% -> Real Life Time -salary-cooldown: "&cDu skal vente mere %cooldown_mtime% for at få din løn igen." -work-status: "&aHer er hvad du skal gøre: %jobplayer_work%" -admin-commands: |- - &6Fuld liste over kommandoer: - &e/jobsadmin help &6- &eSe disse beskeder - &e/jobsadmin info &6- &eHenter oplysningerne om en spiller - &e/jobsadmin genindlæs &6- &eReload alle mulige konfigurationer. - &e/jobsadmin opdatering &6- &eInstallerer en opdatering af plugin - &e/jobsadmin om &6- &eGets information om serveren og plugin'et - &e/jobsadmin sæt &6- &eIndstiller en spillers løn/metode - &e/jobsadmin editor &6- &eLaver en web editor session - &e/jobsadmin applyedits &6- &eAnvend redigeringer af en web editor session -member-commands: |- - &6Fuld liste over kommandoer: - &e/jobs help &6- &eSe disse meddelelser - &e/jobs choose &6- &eChooses your job - &e/jobs work &6- &eSe status/Accepter dit arbejde - &e/jobs salary &6- &eCheck your salary - &e/jobs withdraw &6- &eWithdraw your salary - &e/jobs leave &6- &eBlade jobbet tilbage -info-command: |- - &6Spillerens status %player_name% - &eLøn: %jobplayer_salary% - &eArbejder: %jobplayer_working% - &eArbejde: %jobplayer_work% - &eJob: %jobplayer_job% -reload-command: "&aConfigurations, Jobs & Sprog blev genindlæst med succes." -player-not-found: "&cDen spiller er ikke online, angiv venligst en gyldig spiller." -unknow-error: "&cDer opstod en unknow fejl, tjek venligst konsollen for mere information." -left-job: "&cDu er ikke arbejdsløst! Vi anbefaler, at du vælger et nyt job, eller at du mister en masse penge." -already-updated: "&cDette plugin er allerede i den seneste version, for mere information tjek vores WIKI." -update-started: "&aOpdateringen af plugin PicoJobs startede, vent venligst..." -updated-sucefully: "&aPlugin blev opdateret sucefuld, genstart venligst serveren for at afslutte opdateringen." -sucefully: "&aHandlingen blev foretaget sucefuldt." -invalid-arg: "&aThe argument sent is invalid. Please check the mispell. (Automatic Copy)" -################################################################################# -## -#Format messages # -## -################################################################################# -#In this category you can change the formats of placeholders and other things -#All these messages work with Player Placeholders ;) (PlaceholderAPI Required) -#Change how the works should be displayed. (DEFAULT, to a specific job go into settings/jobs.yml) -break-work: "bryde %a% blokke" -kill-work: "dræbe %a% personer" -fishing-work: "fisk %a% fisk" -place-work: "placer %a% blokke" -craft-work: "håndværk %a% varer" -tame-work: "tæm %a% dyr" -shear-work: "gær %a% får" -fill-work: "fyld %a% spande" -smelt-work: "smelt %a% varer" -eat-work: "spis %a% varer" -enchanting-work: "fortrylle %a% elementer" -repair-work: "reparere %a% varer" -milk-work: "tager %a% mælk fra køer" -kill_entity-work: "dræbe %a% enheder" -#When something is not find what should it appear -none-format: "None" -################################################################################# -## -#Command translations # -## -################################################################################# -#In this category you can add aliases for all the commands of the plugin -aliases: - jobs: - - "job" - - "job" - jobsadmin: - - "jobsadmin" - - "jobadmin" - choose: "vælg" - work: "arbejde" - salary: "løn" - withdraw: "udbetal" - leave: "orlov" - help: "hjælp" - info: "info" - reload: "reload" - update: "opdatér" - about: "om" - set: "sæt" - method: "metode" - job: "job" - editor: "editor" - applyedits: "applyedits" -################################################################################# -## -#Time translations # -## -################################################################################# -#In this category you can change all the time translations -seconds: "sekunder" -second: "sekund" -minutes: "minutter" -minute: "minut" -hours: "timer" -hour: "time" -days: "dage" -day: "dag" -months: "måneder" -month: "måned" -years: "år" -year: "år" diff --git a/bin/main/langs/de-DE.yml b/bin/main/langs/de-DE.yml deleted file mode 100644 index 4117edca..00000000 --- a/bin/main/langs/de-DE.yml +++ /dev/null @@ -1,129 +0,0 @@ ---- -#This file is a language file, here you can change all the messages for this language -#Placeholders only work with PlaceholderAPI, for more information see the comment down here. -#NOTE: -#In order to use any placeholder [ex: %jobplayer_job%, %player_name%] you will need to install the -#plugin PlaceholderAPI (https://www.spigotmc.org/resources/placeholderapi.6245/) -################################################################################# -## -#General messages # -## -################################################################################# -#In this category you can change the general messages of the plugin -no-permission: "&cHey! Du hast keine Berechtigung, diesen Befehl auszuführen." -ignore-action: "&cHey! Sei nicht faul und sprich mit dem NPC." -choosed-job: "&aHerzlichen Glückwunsch! Du hast den Job %jobplayer_job%&a gewählt." -accepted-work: "&aDu hast die Arbeit von %jobplayer_work% akzeptiert." -no-salary: "&cDu hast nicht genug Gehalt, um es zu erhalten! Bitte gehe zur Arbeit ;(" -got-salary: "&aGute Arbeit! Du hast dein %jobplayer_salary% Gehalt erhalten!" -finished-work: "&aHerzlichen Glückwunsch! Du hast deine Arbeit beendet. Benutze /jobs um mehr Informationen darüber zu erhalten." -need-level: "&cHey! Du musst %a% tun, um diese Aktion auszuführen." -no-args: "&cHey! Bitte verwende eine gültige Syntax." -my-salary: "&aDu hast %jobplayer_salary%$ Gehalt." -unknow-job: "&cDieser Job wurde nicht gefunden, bitte benutzen Sie das TAB COMPLETE um eine Liste der Jobs zu erhalten." -#In this message you can use the placeholders: %cooldown_mtime% -> Minecraft Time // %cooldown_time% -> Real Life Time -salary-cooldown: "&cDu musst mehr %cooldown_mtime% warten, um dein Gehalt wieder zu erhalten." -work-status: "&aHier ist das, was Sie tun müssen: %jobplayer_work%" -admin-commands: |- - &6Vollständige Liste der Befehle: - &e/jobsadmin help &6- &eSiehe diese Meldungen - &e/jobsadmin info &6- &eLiest die Informationen über einen Spieler - &e/jobsadmin reload &6- &eLaden Sie alle möglichen Konfigurationen neu. - &e/jobsadmin update &6- &eInstalliert ein Update des Plugins - &e/jobsadmin about &6- &eGibt Informationen über den Server und das Plugin - &e/jobsadmin set &6- &eSetzt das Gehalt/die Methode eines Spielers - &e/jobsadmin editor &6- &eErzeugt eine Web-Editor-Sitzung - &e/jobsadmin applyedits &6- &eWendet die Bearbeitungen einer Webeditor-Sitzung an -member-commands: |- - &6Liste der Befehle: - &e/jobs help &6- &eSehen Sie diese Nachrichten - &e/jobs wählen &6- &eChooses your job - &e/jobs work &6- &eSiehe den Status/Akzeptieren Ihrer Arbeit - &e/jobs Gehalt &6- &ePrüfen Sie Ihr Gehalt - &e/jobs Abzug &6- &eRückzug Ihres Gehalts - &e/jobs leave &6- &eVerlässt den Job -info-command: |- - &6Status des Spielers %player_name% - &eSalary: %jobplayer_salary% - &eIst Arbeit: %jobplayer_working% - &eArbeit: %jobplayer_work% - &eJob: %jobplayer_job% -reload-command: "&aKonfigurationen, Jobs & Sprache wurden erfolgreich neu geladen." -player-not-found: "&cDieser Spieler ist nicht online, bitte gib einen gültigen Spieler ein." -unknow-error: "&cEin unbekannter Fehler ist aufgetreten, bitte überprüfen Sie die Konsole für weitere Informationen." -left-job: "&cDu bist nicht arbeitslos! Wir empfehlen dir, einen neuen Job zu wählen oder viel Geld zu verlieren." -already-updated: "&cDas Plugin ist bereits in der aktuellsten Version, für weitere Informationen schauen Sie sich unser WIKI an." -update-started: "&aDie Aktualisierung des Plugins PicoJobs wurde gestartet, bitte warten..." -updated-sucefully: "&aDas Plugin wurde erfolgreich aktualisiert, bitte starten Sie den Server neu, um die Aktualisierung abzuschließen." -sucefully: "&aDie Aktion wurde erfolgreich durchgeführt." -invalid-arg: "&aDas gesendete Argument ist ungültig. Bitte überprüfen Sie die Mispell." -################################################################################# -## -#Format messages # -## -################################################################################# -#In this category you can change the formats of placeholders and other things -#All these messages work with Player Placeholders ;) (PlaceholderAPI Required) -#Change how the works should be displayed. (DEFAULT, to a specific job go into settings/jobs.yml) -break-work: "%a% Blöcke brechen\n\n-> Pausenarbeit\n################################################################################\n#\nNachrichten formatieren #\n#\n################################################################################\nIn dieser Kategorie können Sie die Formate von Platzhaltern und andere Dinge ändern\nAlle diese Meldungen funktionieren mit Player-Platzhaltern;) (PlaceholderAPI erforderlich)\nÄndern Sie, wie die Arbeiten angezeigt werden sollen. (Default, für einen bestimmten Job gehen Sie in settings/jobs. yml)" -kill-work: "töte %a% Menschen" -fishing-work: "fische %a% Fische" -place-work: "stelle %a% Blöcke" -craft-work: "Stelle %a% Items her" -tame-work: "zähme %a% Tiere" -shear-work: "schere %a% Schafe" -fill-work: "%a% Eimer füllen" -smelt-work: "%a% Elemente schmelzen" -eat-work: "%a% items essen" -enchanting-work: "verzaubern %a% Elemente" -repair-work: "repariere %a% Items" -milk-work: "nehme %a% Milch von Kühen" -kill_entity-work: "töte %a% Entitäten" -#When something is not find what should it appear -none-format: "Keine" -################################################################################# -## -#Command translations # -## -################################################################################# -#In this category you can add aliases for all the commands of the plugin -aliases: - jobs: - - "jobs" - - "job" - jobsadmin: - - "jobsadmin" - - "jobadmin" - choose: "wählen" - work: "arbeiten" - salary: "gehalt" - withdraw: "abheben" - leave: "verlassen" - help: "helfen" - info: "info" - reload: "reload" - update: "aktualisieren" - about: "über" - set: "setzen" - method: "Methode" - job: "job" - editor: "editieren" - applyedits: "beworben" -################################################################################# -## -#Time translations # -## -################################################################################# -#In this category you can change all the time translations -seconds: "Sekunden" -second: "sekunde" -minutes: "minuten" -minute: "minute" -hours: "std" -hour: "std" -days: "tage" -day: "tag" -months: "monate" -month: "monat" -years: "jahre" -year: "jahr" diff --git a/bin/main/langs/el-GR.yml b/bin/main/langs/el-GR.yml deleted file mode 100644 index 214873f3..00000000 --- a/bin/main/langs/el-GR.yml +++ /dev/null @@ -1,129 +0,0 @@ ---- -#This file is a language file, here you can change all the messages for this language -#Placeholders only work with PlaceholderAPI, for more information see the comment down here. -#NOTE: -#In order to use any placeholder [ex: %jobplayer_job%, %player_name%] you will need to install the -#plugin PlaceholderAPI (https://www.spigotmc.org/resources/placeholderapi.6245/) -################################################################################# -## -#General messages # -## -################################################################################# -#In this category you can change the general messages of the plugin -no-permission: "&cHey! You do not have permission to execute that command." -ignore-action: "&cHey! Don't be lazy and go speak with the NPC." -choosed-job: "&aCongratulations! You choosed the job %jobplayer_job%&a." -accepted-work: "&aYou accepted the work of %jobplayer_work%." -no-salary: "&cYou do not have enough salary to get! Please go work ;(" -got-salary: "&aGreat Work! You just got your %jobplayer_salary% salary!" -finished-work: "&aCongratulations! You just finished your work. Use /jobs to get more information about it." -need-level: "&cHey! You need to do %a% works to execute that action." -no-args: "&cHey! Please use a valid syntax." -my-salary: "&aYou have %jobplayer_salary%$ of salary." -unknow-job: "&cThat job was not found, please use the TAB COMPLETE for get a list of jobs." -#In this message you can use the placeholders: %cooldown_mtime% -> Minecraft Time // %cooldown_time% -> Real Life Time -salary-cooldown: "&cYou need to wait more %cooldown_mtime% before get your salary again." -work-status: "&aHere is what you need to do: %jobplayer_work%" -admin-commands: |- - &6Πλήρης λίστα εντολών: - &e/jobsadmin βοήθεια &6- Δείτε αυτά τα μηνύματα - &/jobsadmin πληροφορίες &6- &eΛαμβάνει τις πληροφορίες σχετικά με έναν παίκτη - &e/jobsadmin reload &6- &eReload όλες τις πιθανές ρυθμίσεις. - &&jobsadmin ενημέρωση &6- &eInstalls a update of the plugin - &/jobsadmin about &6- &eGets informations about the server and the plugin - &e/jobsadmin set &6- &eSets the salary/method of a player - &e/jobsadmin editor &6- &eCreates a web editor session - &e/jobsadmin applyedits &6- &eApply the edits of a web editor session -member-commands: |- - &6Full list of commands: - &e/jobs help &6- &eSee this messages - &e/jobs choose &6- &eChooses your job - &e/jobs work &6- &eSee the status/Accept of your work - &e/jobs salary &6- &eCheck your salary - &e/jobs withdraw &6- &eWithdraw your salary - &e/jobs leave &6- &eLeaves the job -info-command: |- - &6Status of the player %player_name% - &eSalary: %jobplayer_salary% - &eIs Working: %jobplayer_working% - &eWork: %jobplayer_work% - &eJob: %jobplayer_job% -reload-command: "&aConfigurations, Jobs & Language were reloaded succefully." -player-not-found: "&cThat player is not online, please put a valid player." -unknow-error: "&cAn unknow error occuried, please check the console for more information." -left-job: "&cYou are not unemployed! We recommend you choose a new job or you will lose a lot of money." -already-updated: "&cThe plugin is already in the lastest version, for more information check our WIKI." -update-started: "&aThe update of the plugin PicoJobs started, please wait..." -updated-sucefully: "&aThe plugin was updated sucefully, please restart the server to finish the update." -sucefully: "&aThe action was made sucefully." -invalid-arg: "&aThe argument sent is invalid. Please check the mispell." -################################################################################# -## -#Format messages # -## -################################################################################# -#In this category you can change the formats of placeholders and other things -#All these messages work with Player Placeholders ;) (PlaceholderAPI Required) -#Change how the works should be displayed. (DEFAULT, to a specific job go into settings/jobs.yml) -break-work: "break %a% blocks" -kill-work: "kill %a% people" -fishing-work: "fish %a% fishes" -place-work: "place %a% blocks" -craft-work: "craft %a% items" -tame-work: "tame %a% ζώα" -shear-work: "διάτμηση %a% πρόβατα" -fill-work: "γεμίστε κάδους %a%" -smelt-work: "smelt %a% items" -eat-work: "eat %a% items" -enchanting-work: "enchant %a% items" -repair-work: "repair %a% items" -milk-work: "take %a% milks from cows" -kill_entity-work: "kill %a% entities" -#When something is not find what should it appear -none-format: "None" -################################################################################# -## -#Command translations # -## -################################################################################# -#In this category you can add aliases for all the commands of the plugin -aliases: - jobs: - - "θέσεις εργασίας" - - "job" - jobsadmin: - - "jobsadmin" - - "jobadmin" - choose: "choose" - work: "work" - salary: "salary" - withdraw: "withdraw" - leave: "leave" - help: "help" - info: "info" - reload: "reload" - update: "update" - about: "about" - set: "set" - method: "method" - job: "job" - editor: "επεξεργαστής" - applyedits: "εφαρμοζόμενα" -################################################################################# -## -#Time translations # -## -################################################################################# -#In this category you can change all the time translations -seconds: "seconds" -second: "second" -minutes: "minutes" -minute: "minute" -hours: "hours" -hour: "hour" -days: "days" -day: "day" -months: "months" -month: "month" -years: "years" -year: "year" diff --git a/bin/main/langs/en-GB.yml b/bin/main/langs/en-GB.yml deleted file mode 100644 index 08bb087d..00000000 --- a/bin/main/langs/en-GB.yml +++ /dev/null @@ -1,130 +0,0 @@ -# This file is a language file, here you can change all the messages for this language -# Placeholders only work with PlaceholderAPI, for more information see the comment down here. -# -# NOTE: -# In order to use any placeholder [ex: %jobplayer_job%, %player_name%] you will need to install the -# plugin PlaceholderAPI (https://www.spigotmc.org/resources/placeholderapi.6245/) -# -################################################################################# -# # -# General messages # -# # -################################################################################# -# In this category you can change the general messages of the plugin -no-permission: "&cHey! You do not have permission to execute that command." -ignore-action: "&cHey! Don't be lazy and go speak with the NPC." -choosed-job: "&aCongratulations! You choosed the job %jobplayer_job%&a." -accepted-work: "&aYou accepted the work of %jobplayer_work%." -no-salary: "&cYou do not have enough salary to get! Please go work ;(" -got-salary: "&aGreat Work! You just got your %jobplayer_salary% salary!" -finished-work: "&aCongratulations! You just finished your work. Use /jobs to get more information about it." -need-level: "&cHey! You need to do %a% works to execute that action." -no-args: "&cHey! Please use a valid syntax." -my-salary: "&aYou have %jobplayer_salary%$ of salary." -unknow-job: "&cThat job was not found, please use the TAB COMPLETE for get a list of jobs." -# In this message you can use the placeholders: %cooldown_mtime% -> Minecraft Time // %cooldown_time% -> Real Life Time -salary-cooldown: "&cYou need to wait more %cooldown_mtime% before get your salary again." -work-status: "&aHere is what you need to do: %jobplayer_work%" -admin-commands: |- - &6Full list of commands: - &e/jobsadmin help &6- &eSee this messages - &e/jobsadmin info &6- &eGets the information about a player - &e/jobsadmin reload &6- &eReload all the possible configurations. - &e/jobsadmin update &6- &eInstalls a update of the plugin - &e/jobsadmin about &6- &eGets informations about the server and the plugin - &e/jobsadmin set &6- &eSets the salary/method of a player - &e/jobsadmin editor &6- &eCreates a web editor session - &e/jobsadmin applyedits &6- &eApply the edits of a web editor session -member-commands: |- - &6Full list of commands: - &e/jobs help &6- &eSee this messages - &e/jobs choose &6- &eChooses your job - &e/jobs work &6- &eSee the status/Accept of your work - &e/jobs salary &6- &eCheck your salary - &e/jobs withdraw &6- &eWithdraw your salary - &e/jobs leave &6- &eLeaves the job -info-command: |- - &6Status of the player %player_name% - &eSalary: %jobplayer_salary% - &eIs Working: %jobplayer_working% - &eWork: %jobplayer_work% - &eJob: %jobplayer_job% -reload-command: "&aConfigurations, Jobs & Language were reloaded succefully." -player-not-found: "&cThat player is not online, please put a valid player." -unknow-error: "&cAn unknow error occuried, please check the console for more information." -left-job: "&cYou are not unemployed! We recommend you choose a new job or you will lose a lot of money." -already-updated: "&cThe plugin is already in the lastest version, for more information check our WIKI." -update-started: "&aThe update of the plugin PicoJobs started, please wait..." -updated-sucefully: "&aThe plugin was updated sucefully, please restart the server to finish the update." -sucefully: "&aThe action was made sucefully." -invalid-arg: "&aThe argument sent is invalid. Please check the mispell." - -################################################################################# -# # -# Format messages # -# # -################################################################################# -# In this category you can change the formats of placeholders and other things -# All these messages work with Player Placeholders ;) (PlaceholderAPI Required) -# Change how the works should be displayed. (DEFAULT, to a specific job go into settings/jobs.yml) -break-work: "break %a% blocks" -kill-work: "kill %a% people" -fishing-work: "fish %a% fishes" -place-work: "place %a% blocks" -craft-work: "craft %a% items" -tame-work: "tame %a% animals" -shear-work: "shear %a% sheeps" -fill-work: "fill %a% buckets" -smelt-work: "smelt %a% items" -eat-work: "eat %a% items" -enchanting-work: "enchant %a% items" -repair-work: "repair %a% items" -milk-work: "take %a% milks from cows" -kill_entity-work: "kill %a% entities" -# When something is not find what should it appear -none-format: "None" - -################################################################################# -# # -# Command translations # -# # -################################################################################# -# In this category you can add aliases for all the commands of the plugin -aliases: - jobs: ["jobs", "job"] - jobsadmin: ["jobsadmin", "jobadmin"] - choose: "choose" - work: "work" - salary: "salary" - withdraw: "withdraw" - leave: "leave" - help: "help" - info: "info" - reload: "reload" - update: "update" - about: "about" - set: "set" - salary: "salary" - method: "method" - job: "job" - editor: "editor" - applyedits: "applyedits" - -################################################################################# -# # -# Time translations # -# # -################################################################################# -# In this category you can change all the time translations -seconds: "seconds" -second: "second" -minutes: "minutes" -minute: "minute" -hours: "hours" -hour: "hour" -days: "days" -day: "day" -months: "months" -month: "month" -years: "years" -year: "year" diff --git a/bin/main/langs/en-US.yml b/bin/main/langs/en-US.yml deleted file mode 100644 index c15aa8e3..00000000 --- a/bin/main/langs/en-US.yml +++ /dev/null @@ -1,129 +0,0 @@ ---- -#This file is a language file, here you can change all the messages for this language -#Placeholders only work with PlaceholderAPI, for more information see the comment down here. -#NOTE: -#In order to use any placeholder [ex: %jobplayer_job%, %player_name%] you will need to install the -#plugin PlaceholderAPI (https://www.spigotmc.org/resources/placeholderapi.6245/) -################################################################################# -## -#General messages # -## -################################################################################# -#In this category you can change the general messages of the plugin -no-permission: "&cHey! You do not have permission to execute that command." -ignore-action: "&cHey! Don't be lazy and go speak with the NPC." -choosed-job: "&aCongratulations! You choosed the job %jobplayer_job%&a." -accepted-work: "&aYou accepted the work of %jobplayer_work%." -no-salary: "&cYou do not have enough salary to get! Please go work ;(" -got-salary: "&aGreat Work! You just got your %jobplayer_salary% salary!" -finished-work: "&aCongratulations! You just finished your work. Use /jobs to get more information about it." -need-level: "&cHey! You need to do %a% works to execute that action." -no-args: "&cHey! Please use a valid syntax." -my-salary: "&aYou have %jobplayer_salary%$ of salary." -unknow-job: "&cThat job was not found, please use the TAB COMPLETE for get a list of jobs." -#In this message you can use the placeholders: %cooldown_mtime% -> Minecraft Time // %cooldown_time% -> Real Life Time -salary-cooldown: "&cYou need to wait more %cooldown_mtime% before get your salary again." -work-status: "&aHere is what you need to do: %jobplayer_work%" -admin-commands: |- - &6Full list of commands: - &e/jobsadmin help &6- &eSee this messages - &e/jobsadmin info &6- &eGets the information about a player - &e/jobsadmin reload &6- &eReload all the possible configurations. - &e/jobsadmin update &6- &eInstalls a update of the plugin - &e/jobsadmin about &6- &eGets informations about the server and the plugin - &e/jobsadmin set &6- &eSets the salary/method of a player - &e/jobsadmin editor &6- &eCreates a web editor session - &e/jobsadmin applyedits &6- &eApply the edits of a web editor session -member-commands: |- - &6Full list of commands: - &e/jobs help &6- &eSee this messages - &e/jobs choose &6- &eChooses your job - &e/jobs work &6- &eSee the status/Accept of your work - &e/jobs salary &6- &eCheck your salary - &e/jobs withdraw &6- &eWithdraw your salary - &e/jobs leave &6- &eLeaves the job -info-command: |- - &6Status of the player %player_name% - &eSalary: %jobplayer_salary% - &eIs Working: %jobplayer_working% - &eWork: %jobplayer_work% - &eJob: %jobplayer_job% -reload-command: "&aConfigurations, Jobs & Language were reloaded succefully." -player-not-found: "&cThat player is not online, please put a valid player." -unknow-error: "&cAn unknow error occuried, please check the console for more information." -left-job: "&cYou are not unemployed! We recommend you choose a new job or you will lose a lot of money." -already-updated: "&cThe plugin is already in the lastest version, for more information check our WIKI." -update-started: "&aThe update of the plugin PicoJobs started, please wait..." -updated-sucefully: "&aThe plugin was updated sucefully, please restart the server to finish the update." -sucefully: "&aThe action was made sucefully." -invalid-arg: "&aThe argument sent is invalid. Please check the mispell." -################################################################################# -## -#Format messages # -## -################################################################################# -#In this category you can change the formats of placeholders and other things -#All these messages work with Player Placeholders ;) (PlaceholderAPI Required) -#Change how the works should be displayed. (DEFAULT, to a specific job go into settings/jobs.yml) -break-work: "break %a% blocks" -kill-work: "kill %a% people" -fishing-work: "fish %a% fishes" -place-work: "place %a% blocks" -craft-work: "craft %a% items" -tame-work: "tame %a% animals" -shear-work: "shear %a% sheeps" -fill-work: "fill %a% buckets" -smelt-work: "smelt %a% items" -eat-work: "eat %a% items" -enchanting-work: "enchant %a% items" -repair-work: "repair %a% items" -milk-work: "take %a% milks from cows" -kill_entity-work: "kill %a% entities" -#When something is not find what should it appear -none-format: "None" -################################################################################# -## -#Command translations # -## -################################################################################# -#In this category you can add aliases for all the commands of the plugin -aliases: - jobs: - - "jobs" - - "job" - jobsadmin: - - "jobsadmin" - - "jobadmin" - choose: "choose" - work: "work" - salary: "salary" - withdraw: "withdraw" - leave: "leave" - help: "help" - info: "info" - reload: "reload" - update: "update" - about: "about" - set: "set" - method: "method" - job: "job" - editor: "editor" - applyedits: "applyedits" -################################################################################# -## -#Time translations # -## -################################################################################# -#In this category you can change all the time translations -seconds: "seconds" -second: "second" -minutes: "minutes" -minute: "minute" -hours: "hours" -hour: "hour" -days: "days" -day: "day" -months: "months" -month: "month" -years: "years" -year: "year" diff --git a/bin/main/langs/es-ES.yml b/bin/main/langs/es-ES.yml deleted file mode 100644 index 8d01d80f..00000000 --- a/bin/main/langs/es-ES.yml +++ /dev/null @@ -1,129 +0,0 @@ ---- -#This file is a language file, here you can change all the messages for this language -#Placeholders only work with PlaceholderAPI, for more information see the comment down here. -#NOTE: -#In order to use any placeholder [ex: %jobplayer_job%, %player_name%] you will need to install the -#plugin PlaceholderAPI (https://www.spigotmc.org/resources/placeholderapi.6245/) -################################################################################# -## -#General messages # -## -################################################################################# -#In this category you can change the general messages of the plugin -no-permission: "&c¡Oye! No tienes permiso para ejecutar ese comando." -ignore-action: "&cHey! No te quedes perezoso e ir a hablar con el NPC." -choosed-job: "&a¡Enhorabuena! Has elegido el trabajo %jobplayer_job%&a." -accepted-work: "&aHas aceptado el trabajo de %jobplayer_work%." -no-salary: "&cNo tienes el salario suficiente para obtener! Por favor ve a trabajar ;(" -got-salary: "&a¡Buen trabajo! ¡Acabas de obtener tu salario de %jobplayer_salary%!" -finished-work: "&a¡Enhorabuena! Acabas de terminar tu trabajo. Usa /jobs para obtener más información al respecto." -need-level: "&cHey! Necesitas hacer %a% trabajos para ejecutar esa acción." -no-args: "&cHey! Por favor usa una sintaxis válida." -my-salary: "&aTienes %jobplayer_salary%$ de salario." -unknow-job: "&cEse trabajo no se ha encontrado, por favor usa la TAB COMPLETE para obtener una lista de trabajos." -#In this message you can use the placeholders: %cooldown_mtime% -> Minecraft Time // %cooldown_time% -> Real Life Time -salary-cooldown: "&cNecesitas esperar más %cooldown_mtime% antes de obtener tu sueldo de nuevo." -work-status: "&aEsto es lo que necesitas hacer: %jobplayer_work%" -admin-commands: |- - &6Lista completa de comandos: - &e/jobsadmin help &6- &eVer estos mensajes - &e/jobsadmin info &6- &eObtiene la información sobre un jugador - &e/jobsadmin recargar &6- &eRecargar todas las configuraciones posibles. - &e/jobsadmin update &6- &eInstala una actualización del plugin - &e/jobsadmin acerca de &6- &eObtiene información sobre el servidor y el plugin - &e/jobsadmin set &6- &eEstablece el salario/método de un jugador - &e/jobsadmin editor &6- &eCrea una sesión de editor web - &e/jobsadmin aplicaciones &6- &eAplica las ediciones de una sesión de editor web -member-commands: |- - &6Lista completa de comandos: - &e/jobs help &6- &eVer estos mensajes - &e/jobs choose &6- &eElegir tu trabajo - &e/jobs work &6- &eVer el status/Acepto de tu trabajo - &e/jobs salary &6- &eCheck tu sueldo - &e/jobs withdraw &6- &eWithdraw tu salario - &e/jobs leave &6- &eLeave el trabajo -info-command: |- - &6Estado del jugador %player_name% - &eSalario: %jobplayer_salary% - &eFuncionando: %jobplayer_working% - &eTrabajo: %jobplayer_work% - &eJob: %jobplayer_job% -reload-command: "&aConfiguraciones, Trabajos e Idioma fueron recargados con éxito." -player-not-found: "&cEse jugador no esta conectado, por favor pon un jugador válido." -unknow-error: "&cSe ha producido un error desconocido, por favor revisa la consola para mas información." -left-job: "&cNo estás desempleado! Te recomendamos que elijas un nuevo trabajo o perderás mucho dinero." -already-updated: "&cEl plugin ya está en la ultima versión, para más información, consulta nuestra WIKI." -update-started: "&aLa actualización del plugin PicoJobs ha comenzado, por favor espere..." -updated-sucefully: "&aEl plugin ha sido actualizado con éxito, por favor reinicie el servidor para finalizar la actualización." -sucefully: "&aLa acción se realizó con éxito." -invalid-arg: "&aEl argumento enviado no es válido. Por favor, comprueba el error." -################################################################################# -## -#Format messages # -## -################################################################################# -#In this category you can change the formats of placeholders and other things -#All these messages work with Player Placeholders ;) (PlaceholderAPI Required) -#Change how the works should be displayed. (DEFAULT, to a specific job go into settings/jobs.yml) -break-work: "romper %a% bloques" -kill-work: "mata a %a% personas" -fishing-work: "peces %a% peces" -place-work: "Coloca %a% bloques" -craft-work: "fabricar %a% objetos" -tame-work: "domo %a% animales" -shear-work: "cortar %a% ovejas" -fill-work: "llena %a% cubos" -smelt-work: "fundir %a% artículos" -eat-work: "comer %a% artículos" -enchanting-work: "encantar %a% artículos" -repair-work: "reparar %a% artículos" -milk-work: "toma %a% de leche de vacas" -kill_entity-work: "matar %a% entidades" -#When something is not find what should it appear -none-format: "Ninguna" -################################################################################# -## -#Command translations # -## -################################################################################# -#In this category you can add aliases for all the commands of the plugin -aliases: - jobs: - - "trabajos" - - "trabajo" - jobsadmin: - - "jobsadmin" - - "jobadmin" - choose: "elegir" - work: "trabajo" - salary: "salario" - withdraw: "retirar" - leave: "salir" - help: "ayuda" - info: "info" - reload: "reload" - update: "actualizar" - about: "sobre" - set: "poner" - method: "método" - job: "trabajo" - editor: "editor" - applyedits: "aplicaciones" -################################################################################# -## -#Time translations # -## -################################################################################# -#In this category you can change all the time translations -seconds: "segundos" -second: "segundo" -minutes: "minutos" -minute: "minuto" -hours: "horas" -hour: "hora" -days: "días" -day: "día" -months: "meses" -month: "mes" -years: "años" -year: "año" diff --git a/bin/main/langs/fi-FI.yml b/bin/main/langs/fi-FI.yml deleted file mode 100644 index deabddd9..00000000 --- a/bin/main/langs/fi-FI.yml +++ /dev/null @@ -1,129 +0,0 @@ ---- -#This file is a language file, here you can change all the messages for this language -#Placeholders only work with PlaceholderAPI, for more information see the comment down here. -#NOTE: -#In order to use any placeholder [ex: %jobplayer_job%, %player_name%] you will need to install the -#plugin PlaceholderAPI (https://www.spigotmc.org/resources/placeholderapi.6245/) -################################################################################# -## -#General messages # -## -################################################################################# -#In this category you can change the general messages of the plugin -no-permission: "&cHey! You do not have permission to execute that command." -ignore-action: "&cHey! Don't be lazy and go speak with the NPC." -choosed-job: "&aCongratulations! You choosed the job %jobplayer_job%&a." -accepted-work: "&aYou accepted the work of %jobplayer_work%." -no-salary: "&cYou do not have enough salary to get! Please go work ;(" -got-salary: "&aGreat Work! You just got your %jobplayer_salary% salary!" -finished-work: "&aCongratulations! You just finished your work. Use /jobs to get more information about it." -need-level: "&cHey! Sinun täytyy tehdä %a% toimii suorittaaksesi tämän toiminnon." -no-args: "&cHei! Käytä kelvollista syntaksia." -my-salary: "&aSinulla on %jobplayer_salary%$ palkasta." -unknow-job: "&cTätä tehtävää ei löytynyt, ole hyvä ja käytä TAB COMPLETE -ohjelmaa saadaksesi luettelon työpaikoista." -#In this message you can use the placeholders: %cooldown_mtime% -> Minecraft Time // %cooldown_time% -> Real Life Time -salary-cooldown: "&cSinun täytyy odottaa enemmän %cooldown_mtime% ennen kuin saat palkkasi uudelleen." -work-status: "&aTässä on mitä sinun tarvitsee tehdä: %jobplayer_work%" -admin-commands: |- - &6Full list of commands: - &e/jobsadmin help &6- &eSee this messages - &e/jobsadmin info &6- &eGets the information about a player - &e/jobsadmin reload &6- &eReload all the possible configurations. - &e/jobsadmin update &6- &eInstalls a update of the plugin - &e/jobsadmin about &6- &eGets informations about the server and the plugin - &e/jobsadmin set &6- &eSets the salary/method of a player - &e/jobsadmin editor &6- &eCreates a web editor session - &e/jobsadmin applyedits &6- &eApply the edits of a web editor session -member-commands: |- - &6Täysi lista komennoista: - &e/jobs help &6- &eSee this messages - &e/jobs choose &6- &eValitsee työpaikkasi - &e/jobs work &6- &eSee the status/Accept of your work - &e/jobs palkka &6- &eTarkista palkkasi - &e/jobs withdraw &6- &eWithdraw your salary - &e/jobs leave &6- &eLeaves the job -info-command: |- - &6Pelaajan %player_name% - &ePalkka: %jobplayer_salary% - &eIs Working: %jobplayer_working% - &eWork: %jobplayer_work% - &eJob: %jobplayer_job% -reload-command: "&aConfigurations, Jobs & Language uudelleenladattiin onnistuneesti." -player-not-found: "&cTämä pelaaja ei ole paikalla, laita kelvollinen pelaaja." -unknow-error: "&cTapahtui tuntematon virhe, ole hyvä ja tarkista konsoli saadaksesi lisätietoja." -left-job: "&cEt ole työttömänä! Suosittelemme, että valitset uuden työpaikan tai menetät paljon rahaa." -already-updated: "&cLiitännäinen on jo viimeisimmässä versiossa, ja lisää tietoa saat meidän WIKI." -update-started: "&aLiitännäisen PicoJobs päivitys alkoi, odota hetki..." -updated-sucefully: "&aLiitännäinen päivitettiin onnistuneesti, ole hyvä ja käynnistä palvelin uudelleen lopettaaksesi päivityksen." -sucefully: "&aToiminto tehtiin erinomaisesti." -invalid-arg: "&aLähetetty argumentti on virheellinen. Tarkista virhe." -################################################################################# -## -#Format messages # -## -################################################################################# -#In this category you can change the formats of placeholders and other things -#All these messages work with Player Placeholders ;) (PlaceholderAPI Required) -#Change how the works should be displayed. (DEFAULT, to a specific job go into settings/jobs.yml) -break-work: "tauko %a% lohkoa" -kill-work: "tappaa %a% ihmistä" -fishing-work: "kala %a% kaloja" -place-work: "aseta %a% lohkoja" -craft-work: "laukaise %a% kohteita" -tame-work: "kesytä %a% eläimiä" -shear-work: "leikkaus %a% lampaita" -fill-work: "täytä %a% kauhoja" -smelt-work: "sulata %a% kohteita" -eat-work: "syödä %a% esineitä" -enchanting-work: "enchant %a% kohteita" -repair-work: "korjaa %a% kohteita" -milk-work: "ottaa %a% maitoa lehmistä" -kill_entity-work: "tappaa %a% entiteetit" -#When something is not find what should it appear -none-format: "None" -################################################################################# -## -#Command translations # -## -################################################################################# -#In this category you can add aliases for all the commands of the plugin -aliases: - jobs: - - "jobs" - - "työ" - jobsadmin: - - "jobsadmin" - - "jobadmin" - choose: "valitse" - work: "työ" - salary: "palkka" - withdraw: "peruuta" - leave: "poistua" - help: "ohje" - info: "tiedot" - reload: "reload" - update: "päivitä" - about: "noin" - set: "aseta" - method: "menetelmä" - job: "työ" - editor: "editor" - applyedits: "applyedits" -################################################################################# -## -#Time translations # -## -################################################################################# -#In this category you can change all the time translations -seconds: "sekuntia" -second: "sekunti" -minutes: "minuuttia" -minute: "minuutti" -hours: "tuntia" -hour: "tunti" -days: "päivää" -day: "päivä" -months: "kuukautta" -month: "kuukausi" -years: "vuotta" -year: "vuosi" diff --git a/bin/main/langs/fr-FR.yml b/bin/main/langs/fr-FR.yml deleted file mode 100644 index c01bfabc..00000000 --- a/bin/main/langs/fr-FR.yml +++ /dev/null @@ -1,129 +0,0 @@ ---- -#This file is a language file, here you can change all the messages for this language -#Placeholders only work with PlaceholderAPI, for more information see the comment down here. -#NOTE: -#In order to use any placeholder [ex: %jobplayer_job%, %player_name%] you will need to install the -#plugin PlaceholderAPI (https://www.spigotmc.org/resources/placeholderapi.6245/) -################################################################################# -## -#General messages # -## -################################################################################# -#In this category you can change the general messages of the plugin -no-permission: "&cHé ! Vous n'avez pas la permission d'exécuter cette commande." -ignore-action: "&cHé ! Ne soyez pas paresseux et allez parler avec le PNJ." -choosed-job: "&aFélicitations ! Vous avez choisi le job %jobplayer_job%&a." -accepted-work: "&aVous avez accepté le travail de %jobplayer_work%." -no-salary: "&cVous n'avez pas assez de salaire pour obtenir ! Veuillez aller au travail ;(" -got-salary: "&aBeau travail! Vous venez de recevoir votre salaire de %jobplayer_salary%!" -finished-work: "&aFélicitations ! Vous venez de terminer votre travail. Utilisez /jobs pour obtenir plus d'informations à ce sujet." -need-level: "&cHé ! Vous devez faire %a% de travaux pour exécuter cette action." -no-args: "&cHé ! Veuillez utiliser une syntaxe valide." -my-salary: "&aVous avez %jobplayer_salary%$ de salaire." -unknow-job: "&cCette tâche n'a pas été trouvée, veuillez utiliser la TAB COMPLETE pour obtenir une liste de tâches." -#In this message you can use the placeholders: %cooldown_mtime% -> Minecraft Time // %cooldown_time% -> Real Life Time -salary-cooldown: "&cVous devez attendre plus de %cooldown_mtime% avant d'obtenir à nouveau votre salaire." -work-status: "&aVoici ce que vous devez faire : %jobplayer_work%" -admin-commands: |- - &6Liste complète des commandes : - &e/jobsadmin help &6- &eVoir ces messages - &e/jobsadmin info &6- &eRenvoie les informations sur un joueur - &e/jobsadmin reload &6- &eRecharger toutes les configurations possibles. - &e/jobsadmin update &6- &eInstalle une mise à jour du plugin - &e/jobsadmin à propos de &6- &eRenvoie des informations sur le serveur et le plugin - &e/jobsadmin set &6- &eDéfinit le salaire/méthode d'un joueur - &e/jobsadmin éditeur &6- &eCrée une session d'édition web - &e/jobsadmin applyedits &6- &eAppliquer les modifications d'une session d'éditeur web -member-commands: |- - &6Liste complète des commandes: - &e/jobs help &6- &eVoir ces messages - &e/jobs choose &6- &eChoix de votre emploi - &e/jobs work &6- &eVoir le statut/Accept de votre travail - &e/jobs salary &6- &eVérifiez votre salaire - &e/jobs withdraw &6- &eRetirer votre salaire - &e/jobs leave &6- &eQuitter &eQuitter l'emploi -info-command: |- - &6Statut du joueur %player_name% - &eSalaire : %jobplayer_salary% - &eTravaille : %jobplayer_working% - &eTravail : %jobplayer_work% - &eTâche : %jobplayer_job% -reload-command: "&aConfigurations, Jobs & Langues ont été rechargés avec succès." -player-not-found: "&cCe joueur n'est pas en ligne, veuillez mettre un joueur valide." -unknow-error: "&cUne erreur inconnue s'est produite, veuillez consulter la console pour plus d'informations." -left-job: "&cVous n'êtes pas au chômage ! Nous vous recommandons de choisir un nouvel emploi ou vous perdrez beaucoup d'argent." -already-updated: "&cLe plugin est déjà dans la dernière version, pour plus d'informations, consultez notre WIKI." -update-started: "&aLa mise à jour du plugin PicoJobs a commencé, veuillez patienter..." -updated-sucefully: "&aLe plugin a été mis à jour avec succès, veuillez redémarrer le serveur pour terminer la mise à jour." -sucefully: "&aL'action a été faite avec succès." -invalid-arg: "&aL'argument envoyé n'est pas valide. Veuillez vérifier la erreur." -################################################################################# -## -#Format messages # -## -################################################################################# -#In this category you can change the formats of placeholders and other things -#All these messages work with Player Placeholders ;) (PlaceholderAPI Required) -#Change how the works should be displayed. (DEFAULT, to a specific job go into settings/jobs.yml) -break-work: "casser %a% blocs" -kill-work: "tuer %a% de personnes" -fishing-work: "Poissons %a% de poissons" -place-work: "placer %a% de blocs" -craft-work: "fabriquer %a% objets" -tame-work: "apprivoisé %a% animaux" -shear-work: "cisailler %a% moutons" -fill-work: "remplir %a% seaux" -smelt-work: "fondre %a% éléments" -eat-work: "manger %a% des objets" -enchanting-work: "enchanter %a% objets" -repair-work: "réparer %a% des objets" -milk-work: "consommer %a% de lait de vaches" -kill_entity-work: "tuer %a% d'entités" -#When something is not find what should it appear -none-format: "Aucun" -################################################################################# -## -#Command translations # -## -################################################################################# -#In this category you can add aliases for all the commands of the plugin -aliases: - jobs: - - "emplois" - - "emploi" - jobsadmin: - - "jobsadmin" - - "jobadmin" - choose: "choisir" - work: "travail" - salary: "salaire" - withdraw: "Retirer" - leave: "quitter" - help: "Aide" - info: "Infos" - reload: "reload" - update: "Mettre à jour" - about: "à propos de" - set: "définir" - method: "Méthode" - job: "emploi" - editor: "éditeur" - applyedits: "appliquer les modifications" -################################################################################# -## -#Time translations # -## -################################################################################# -#In this category you can change all the time translations -seconds: "secondes" -second: "seconde" -minutes: "minutes" -minute: "minute" -hours: "heures" -hour: "heure" -days: "Jours" -day: "jour" -months: "mois" -month: "mois" -years: "Années" -year: "Année" diff --git a/bin/main/langs/he-IL.yml b/bin/main/langs/he-IL.yml deleted file mode 100644 index c15aa8e3..00000000 --- a/bin/main/langs/he-IL.yml +++ /dev/null @@ -1,129 +0,0 @@ ---- -#This file is a language file, here you can change all the messages for this language -#Placeholders only work with PlaceholderAPI, for more information see the comment down here. -#NOTE: -#In order to use any placeholder [ex: %jobplayer_job%, %player_name%] you will need to install the -#plugin PlaceholderAPI (https://www.spigotmc.org/resources/placeholderapi.6245/) -################################################################################# -## -#General messages # -## -################################################################################# -#In this category you can change the general messages of the plugin -no-permission: "&cHey! You do not have permission to execute that command." -ignore-action: "&cHey! Don't be lazy and go speak with the NPC." -choosed-job: "&aCongratulations! You choosed the job %jobplayer_job%&a." -accepted-work: "&aYou accepted the work of %jobplayer_work%." -no-salary: "&cYou do not have enough salary to get! Please go work ;(" -got-salary: "&aGreat Work! You just got your %jobplayer_salary% salary!" -finished-work: "&aCongratulations! You just finished your work. Use /jobs to get more information about it." -need-level: "&cHey! You need to do %a% works to execute that action." -no-args: "&cHey! Please use a valid syntax." -my-salary: "&aYou have %jobplayer_salary%$ of salary." -unknow-job: "&cThat job was not found, please use the TAB COMPLETE for get a list of jobs." -#In this message you can use the placeholders: %cooldown_mtime% -> Minecraft Time // %cooldown_time% -> Real Life Time -salary-cooldown: "&cYou need to wait more %cooldown_mtime% before get your salary again." -work-status: "&aHere is what you need to do: %jobplayer_work%" -admin-commands: |- - &6Full list of commands: - &e/jobsadmin help &6- &eSee this messages - &e/jobsadmin info &6- &eGets the information about a player - &e/jobsadmin reload &6- &eReload all the possible configurations. - &e/jobsadmin update &6- &eInstalls a update of the plugin - &e/jobsadmin about &6- &eGets informations about the server and the plugin - &e/jobsadmin set &6- &eSets the salary/method of a player - &e/jobsadmin editor &6- &eCreates a web editor session - &e/jobsadmin applyedits &6- &eApply the edits of a web editor session -member-commands: |- - &6Full list of commands: - &e/jobs help &6- &eSee this messages - &e/jobs choose &6- &eChooses your job - &e/jobs work &6- &eSee the status/Accept of your work - &e/jobs salary &6- &eCheck your salary - &e/jobs withdraw &6- &eWithdraw your salary - &e/jobs leave &6- &eLeaves the job -info-command: |- - &6Status of the player %player_name% - &eSalary: %jobplayer_salary% - &eIs Working: %jobplayer_working% - &eWork: %jobplayer_work% - &eJob: %jobplayer_job% -reload-command: "&aConfigurations, Jobs & Language were reloaded succefully." -player-not-found: "&cThat player is not online, please put a valid player." -unknow-error: "&cAn unknow error occuried, please check the console for more information." -left-job: "&cYou are not unemployed! We recommend you choose a new job or you will lose a lot of money." -already-updated: "&cThe plugin is already in the lastest version, for more information check our WIKI." -update-started: "&aThe update of the plugin PicoJobs started, please wait..." -updated-sucefully: "&aThe plugin was updated sucefully, please restart the server to finish the update." -sucefully: "&aThe action was made sucefully." -invalid-arg: "&aThe argument sent is invalid. Please check the mispell." -################################################################################# -## -#Format messages # -## -################################################################################# -#In this category you can change the formats of placeholders and other things -#All these messages work with Player Placeholders ;) (PlaceholderAPI Required) -#Change how the works should be displayed. (DEFAULT, to a specific job go into settings/jobs.yml) -break-work: "break %a% blocks" -kill-work: "kill %a% people" -fishing-work: "fish %a% fishes" -place-work: "place %a% blocks" -craft-work: "craft %a% items" -tame-work: "tame %a% animals" -shear-work: "shear %a% sheeps" -fill-work: "fill %a% buckets" -smelt-work: "smelt %a% items" -eat-work: "eat %a% items" -enchanting-work: "enchant %a% items" -repair-work: "repair %a% items" -milk-work: "take %a% milks from cows" -kill_entity-work: "kill %a% entities" -#When something is not find what should it appear -none-format: "None" -################################################################################# -## -#Command translations # -## -################################################################################# -#In this category you can add aliases for all the commands of the plugin -aliases: - jobs: - - "jobs" - - "job" - jobsadmin: - - "jobsadmin" - - "jobadmin" - choose: "choose" - work: "work" - salary: "salary" - withdraw: "withdraw" - leave: "leave" - help: "help" - info: "info" - reload: "reload" - update: "update" - about: "about" - set: "set" - method: "method" - job: "job" - editor: "editor" - applyedits: "applyedits" -################################################################################# -## -#Time translations # -## -################################################################################# -#In this category you can change all the time translations -seconds: "seconds" -second: "second" -minutes: "minutes" -minute: "minute" -hours: "hours" -hour: "hour" -days: "days" -day: "day" -months: "months" -month: "month" -years: "years" -year: "year" diff --git a/bin/main/langs/hu-HU.yml b/bin/main/langs/hu-HU.yml deleted file mode 100644 index c15aa8e3..00000000 --- a/bin/main/langs/hu-HU.yml +++ /dev/null @@ -1,129 +0,0 @@ ---- -#This file is a language file, here you can change all the messages for this language -#Placeholders only work with PlaceholderAPI, for more information see the comment down here. -#NOTE: -#In order to use any placeholder [ex: %jobplayer_job%, %player_name%] you will need to install the -#plugin PlaceholderAPI (https://www.spigotmc.org/resources/placeholderapi.6245/) -################################################################################# -## -#General messages # -## -################################################################################# -#In this category you can change the general messages of the plugin -no-permission: "&cHey! You do not have permission to execute that command." -ignore-action: "&cHey! Don't be lazy and go speak with the NPC." -choosed-job: "&aCongratulations! You choosed the job %jobplayer_job%&a." -accepted-work: "&aYou accepted the work of %jobplayer_work%." -no-salary: "&cYou do not have enough salary to get! Please go work ;(" -got-salary: "&aGreat Work! You just got your %jobplayer_salary% salary!" -finished-work: "&aCongratulations! You just finished your work. Use /jobs to get more information about it." -need-level: "&cHey! You need to do %a% works to execute that action." -no-args: "&cHey! Please use a valid syntax." -my-salary: "&aYou have %jobplayer_salary%$ of salary." -unknow-job: "&cThat job was not found, please use the TAB COMPLETE for get a list of jobs." -#In this message you can use the placeholders: %cooldown_mtime% -> Minecraft Time // %cooldown_time% -> Real Life Time -salary-cooldown: "&cYou need to wait more %cooldown_mtime% before get your salary again." -work-status: "&aHere is what you need to do: %jobplayer_work%" -admin-commands: |- - &6Full list of commands: - &e/jobsadmin help &6- &eSee this messages - &e/jobsadmin info &6- &eGets the information about a player - &e/jobsadmin reload &6- &eReload all the possible configurations. - &e/jobsadmin update &6- &eInstalls a update of the plugin - &e/jobsadmin about &6- &eGets informations about the server and the plugin - &e/jobsadmin set &6- &eSets the salary/method of a player - &e/jobsadmin editor &6- &eCreates a web editor session - &e/jobsadmin applyedits &6- &eApply the edits of a web editor session -member-commands: |- - &6Full list of commands: - &e/jobs help &6- &eSee this messages - &e/jobs choose &6- &eChooses your job - &e/jobs work &6- &eSee the status/Accept of your work - &e/jobs salary &6- &eCheck your salary - &e/jobs withdraw &6- &eWithdraw your salary - &e/jobs leave &6- &eLeaves the job -info-command: |- - &6Status of the player %player_name% - &eSalary: %jobplayer_salary% - &eIs Working: %jobplayer_working% - &eWork: %jobplayer_work% - &eJob: %jobplayer_job% -reload-command: "&aConfigurations, Jobs & Language were reloaded succefully." -player-not-found: "&cThat player is not online, please put a valid player." -unknow-error: "&cAn unknow error occuried, please check the console for more information." -left-job: "&cYou are not unemployed! We recommend you choose a new job or you will lose a lot of money." -already-updated: "&cThe plugin is already in the lastest version, for more information check our WIKI." -update-started: "&aThe update of the plugin PicoJobs started, please wait..." -updated-sucefully: "&aThe plugin was updated sucefully, please restart the server to finish the update." -sucefully: "&aThe action was made sucefully." -invalid-arg: "&aThe argument sent is invalid. Please check the mispell." -################################################################################# -## -#Format messages # -## -################################################################################# -#In this category you can change the formats of placeholders and other things -#All these messages work with Player Placeholders ;) (PlaceholderAPI Required) -#Change how the works should be displayed. (DEFAULT, to a specific job go into settings/jobs.yml) -break-work: "break %a% blocks" -kill-work: "kill %a% people" -fishing-work: "fish %a% fishes" -place-work: "place %a% blocks" -craft-work: "craft %a% items" -tame-work: "tame %a% animals" -shear-work: "shear %a% sheeps" -fill-work: "fill %a% buckets" -smelt-work: "smelt %a% items" -eat-work: "eat %a% items" -enchanting-work: "enchant %a% items" -repair-work: "repair %a% items" -milk-work: "take %a% milks from cows" -kill_entity-work: "kill %a% entities" -#When something is not find what should it appear -none-format: "None" -################################################################################# -## -#Command translations # -## -################################################################################# -#In this category you can add aliases for all the commands of the plugin -aliases: - jobs: - - "jobs" - - "job" - jobsadmin: - - "jobsadmin" - - "jobadmin" - choose: "choose" - work: "work" - salary: "salary" - withdraw: "withdraw" - leave: "leave" - help: "help" - info: "info" - reload: "reload" - update: "update" - about: "about" - set: "set" - method: "method" - job: "job" - editor: "editor" - applyedits: "applyedits" -################################################################################# -## -#Time translations # -## -################################################################################# -#In this category you can change all the time translations -seconds: "seconds" -second: "second" -minutes: "minutes" -minute: "minute" -hours: "hours" -hour: "hour" -days: "days" -day: "day" -months: "months" -month: "month" -years: "years" -year: "year" diff --git a/bin/main/langs/it-IT.yml b/bin/main/langs/it-IT.yml deleted file mode 100644 index 3efad48f..00000000 --- a/bin/main/langs/it-IT.yml +++ /dev/null @@ -1,129 +0,0 @@ ---- -#This file is a language file, here you can change all the messages for this language -#Placeholders only work with PlaceholderAPI, for more information see the comment down here. -#NOTE: -#In order to use any placeholder [ex: %jobplayer_job%, %player_name%] you will need to install the -#plugin PlaceholderAPI (https://www.spigotmc.org/resources/placeholderapi.6245/) -################################################################################# -## -#General messages # -## -################################################################################# -#In this category you can change the general messages of the plugin -no-permission: "&cHey! Non hai il permesso di eseguire quel comando." -ignore-action: "&cHey! Non essere pigro e andare a parlare con il NPC." -choosed-job: "&aCongratulazioni! Hai scelto il lavoro %jobplayer_job%&a." -accepted-work: "&aHai accettato il lavoro di %jobplayer_work%." -no-salary: "&cNon hai abbastanza stipendio per ottenere! Per favore vai al lavoro ;(" -got-salary: "&aOttimo lavoro! Hai appena ottenuto il tuo salario %jobplayer_salary%!" -finished-work: "&aCongratulazioni! Hai appena finito il tuo lavoro. Usa /jobs per ottenere maggiori informazioni su di esso." -need-level: "&cHey! Devi fare %a% lavora per eseguire quell'azione." -no-args: "&cHey! Utilizza una sintassi valida." -my-salary: "&aHai %jobplayer_salary%$ di salario." -unknow-job: "&cQuel lavoro non è stato trovato, si prega di utilizzare il TAB COMPLETE per ottenere un elenco di lavori." -#In this message you can use the placeholders: %cooldown_mtime% -> Minecraft Time // %cooldown_time% -> Real Life Time -salary-cooldown: "&cDevi aspettare altri %cooldown_mtime% prima di ottenere di nuovo il tuo stipendio." -work-status: "&aEcco cosa devi fare: %jobplayer_work%" -admin-commands: |- - &6Elenco completo dei comandi: - &e/jobsadmin help &6- &eGuarda questo messaggio - &e/jobsadmin info &6- &eOttiene le informazioni su un giocatore - &e/jobsadmin reload &6- &eRicarica tutte le configurazioni possibili. - &e/jobsadmin update &6- &eInstalls a update of the plugin - &e/jobsadmin about &6- &eGets information about the server and the plugin - &e/jobsadmin set &6- &eImposta lo stipendio/metodo di un giocatore - &e/jobsadmin editor &6- &eCrea una sessione web editor - &e/jobsadmin applicatedits &6- &eApplica le modifiche di una sessione web editor -member-commands: |- - &6Elenco completo dei comandi: - &e/jobs help &6- &eVisualizza questo messaggio - &e/jobs choose &6- &eChooses your job - &e/jobs work &6- &eGuarda lo status/Accetta del tuo lavoro - &e/job salary &6- &eControlla il tuo stipendio - &e/job withdraw &6- &eRitira il tuo stipendio - &e/job leave &6- &eLascia il lavoro -info-command: |- - &6Stato del giocatore %player_name% - &eSalary: %jobplayer_salary% - &eSta funzionando: %jobplayer_working% - &eLavoro: %jobplayer_work% - &eLavoro: %jobplayer_job% -reload-command: "&aConfigurazioni, Jobs & Language sono stati ricaricati con successo." -player-not-found: "&cQuel giocatore non è online, si prega di mettere un giocatore valido." -unknow-error: "&cSi è verificato un errore sconosciuto, controlla la console per maggiori informazioni." -left-job: "&cNon sei disoccupato! Ti consigliamo di scegliere un nuovo lavoro o perderai molti soldi." -already-updated: "&cIl plugin è già nell'ultima versione, per maggiori informazioni controllare il nostro WIKI." -update-started: "&aL'aggiornamento del plugin PicoJobs avviato, attendere prego..." -updated-sucefully: "&aIl plugin è stato aggiornato abbondantemente, si prega di riavviare il server per completare l'aggiornamento." -sucefully: "&aL'azione è stata fatta in modo succoso." -invalid-arg: "&aL'argomento inviato non è valido. Si prega di controllare l'errore." -################################################################################# -## -#Format messages # -## -################################################################################# -#In this category you can change the formats of placeholders and other things -#All these messages work with Player Placeholders ;) (PlaceholderAPI Required) -#Change how the works should be displayed. (DEFAULT, to a specific job go into settings/jobs.yml) -break-work: "rompere %a% blocchi" -kill-work: "uccidi %a% persone" -fishing-work: "pesce %a% pesci" -place-work: "posiziona %a% blocchi" -craft-work: "mestiere %a% elementi" -tame-work: "addomesticare %a% animali" -shear-work: "tosare %a% pecore" -fill-work: "riempi %a% secchi" -smelt-work: "smelt %a% elementi" -eat-work: "mangia %a% oggetti" -enchanting-work: "incanta %a% elementi" -repair-work: "riparazione %a% oggetti" -milk-work: "prendere il %a% di latte dalle vacche" -kill_entity-work: "uccidi %a% entità" -#When something is not find what should it appear -none-format: "Nessuno" -################################################################################# -## -#Command translations # -## -################################################################################# -#In this category you can add aliases for all the commands of the plugin -aliases: - jobs: - - "lavori" - - "lavoro" - jobsadmin: - - "jobsadmin" - - "jobadmin" - choose: "scegli" - work: "lavoro" - salary: "stipendio" - withdraw: "preleva" - leave: "lascia" - help: "aiuto" - info: "info" - reload: "reload" - update: "aggiorna" - about: "about" - set: "imposta" - method: "metodo" - job: "lavoro" - editor: "editor" - applyedits: "applicatedits" -################################################################################# -## -#Time translations # -## -################################################################################# -#In this category you can change all the time translations -seconds: "secondi" -second: "secondo" -minutes: "minuti" -minute: "minuto" -hours: "ore" -hour: "ora" -days: "giorni" -day: "giorno" -months: "mesi" -month: "mese" -years: "anni" -year: "anno" diff --git a/bin/main/langs/ja-JP.yml b/bin/main/langs/ja-JP.yml deleted file mode 100644 index 5f67c98e..00000000 --- a/bin/main/langs/ja-JP.yml +++ /dev/null @@ -1,129 +0,0 @@ ---- -#This file is a language file, here you can change all the messages for this language -#Placeholders only work with PlaceholderAPI, for more information see the comment down here. -#NOTE: -#In order to use any placeholder [ex: %jobplayer_job%, %player_name%] you will need to install the -#plugin PlaceholderAPI (https://www.spigotmc.org/resources/placeholderapi.6245/) -################################################################################# -## -#General messages # -## -################################################################################# -#In this category you can change the general messages of the plugin -no-permission: "&cHey! このコマンドを実行する権限がありません。" -ignore-action: "&cHey! 怠惰にならないで、NPCと話をしに行ってください。" -choosed-job: "&aおめでとうございます!ジョブ %jobplayer_job%&aを選択しました。" -accepted-work: "&a %jobplayer_work% の作業を承認しました。" -no-salary: "&cあなたには給料が足りません!仕事に行ってください ;(" -got-salary: "&a素晴らしい仕事です! %jobplayer_salary% の報酬を受け取りました!" -finished-work: "&aおめでとうございます!完了しました。/jobsを使って詳細を確認してください。" -need-level: "&cHey! このアクションを実行するには %a%の動作が必要です。" -no-args: "&cHey! 有効な構文を使用してください。" -my-salary: "&aあなたには %jobplayer_salary%$ の給料があります。" -unknow-job: "&cジョブが見つかりませんでした。ジョブのリストを取得するには、TABCOMPLETEを使用してください。" -#In this message you can use the placeholders: %cooldown_mtime% -> Minecraft Time // %cooldown_time% -> Real Life Time -salary-cooldown: "&c給料をもう一度もらうには、さらに %cooldown_mtime% 待つ必要があります。" -work-status: "&a必要な作業は次の通りです: %jobplayer_work%" -admin-commands: |- - &6Full list of commands: - &e/jobsadmin help &6- &eSee this messages - &e/jobsadmin info &6- &eGets the information about a player - &e/jobsadmin reload &6- &eReload all the possible configurations. - &e/jobsadmin update &6- &eInstalls a update of the plugin - &e/jobsadmin about &6- &eGets informations about the server and the plugin - &e/jobsadmin set &6- &eSets the salary/method of a player - &e/jobsadmin editor &6- &eCreates a web editor session - &e/jobsadmin applyedits &6- &eApply the edits of a web editor session -member-commands: |- - &6Full list of commands: - &e/jobs help &6- &eSee this messages - &e/jobs choose &6- &eChooses your job - &e/jobs work &6- &eSee the status/Accept of your work - &e/jobs salary &6- &eCheck your salary - &e/jobs withdraw &6- &eWithdraw your salary - &e/jobs leave &6- &eLeaves the job -info-command: |- - &6プレイヤー %player_name%のステータス - &e給与: %jobplayer_salary% - &eが動作中: %jobplayer_working% - &e作業: %jobplayer_work% - &eジョブ: %jobplayer_job% -reload-command: "&a設定、ジョブと言語が正常に再読み込みされました。" -player-not-found: "&cそのプレイヤーはオンラインではありません。有効なプレイヤーを入れてください。" -unknow-error: "&c不明なエラーが発生しました。詳細についてはコンソールを確認してください。" -left-job: "&cあなたは失業中です!新しい仕事を選択するか、多額のお金を失うことをお勧めします。" -already-updated: "&cプラグインはすでに最新バージョンです。詳細はWIKIをご覧ください。" -update-started: "&aプラグインPicoJobsの更新が開始されました。お待ちください..." -updated-sucefully: "&aプラグインが正常に更新されました。更新を完了するにはサーバーを再起動してください。" -sucefully: "&aアクションは正常に行われました。" -invalid-arg: "&a引数が無効です。誤りを確認してください。" -################################################################################# -## -#Format messages # -## -################################################################################# -#In this category you can change the formats of placeholders and other things -#All these messages work with Player Placeholders ;) (PlaceholderAPI Required) -#Change how the works should be displayed. (DEFAULT, to a specific job go into settings/jobs.yml) -break-work: "%a%ブロックを破壊する" -kill-work: "%a%の人を殺す" -fishing-work: "魚 %a% 魚" -place-work: "%a%ブロックを置く" -craft-work: "%a%のアイテムをクラフトする" -tame-work: "%a%の動物を飼いならした" -shear-work: "%a%の羊をせん断する" -fill-work: "%a%のバケツを埋めます" -smelt-work: "%a%のアイテムを精錬する" -eat-work: "%a%のアイテムを食べる" -enchanting-work: "%a%のアイテムをエンチャントする" -repair-work: "%a%のアイテムを修理する" -milk-work: "牛乳から %a% ミルクを採取する" -kill_entity-work: "%a%のエンティティをキルする" -#When something is not find what should it appear -none-format: "なし" -################################################################################# -## -#Command translations # -## -################################################################################# -#In this category you can add aliases for all the commands of the plugin -aliases: - jobs: - - "ジョブ" - - "ジョブ" - jobsadmin: - - "jobsadmin" - - "jobadmin" - choose: "選択" - work: "仕事" - salary: "給与|給与|給与|給与|給与|給与|給与|給与|給与|給与|" - withdraw: "撤回する" - leave: "退出する" - help: "ヘルプ" - info: "情報" - reload: "reload" - update: "更新" - about: "about" - set: "セット" - method: "method" - job: "ジョブ" - editor: "エディタ" - applyedits: "applyedits" -################################################################################# -## -#Time translations # -## -################################################################################# -#In this category you can change all the time translations -seconds: "秒" -second: "秒" -minutes: "分" -minute: "分" -hours: "時間" -hour: "時" -days: "日" -day: "日" -months: "ヶ月" -month: "月" -years: "年" -year: "年" diff --git a/bin/main/langs/ko-KR.yml b/bin/main/langs/ko-KR.yml deleted file mode 100644 index c15aa8e3..00000000 --- a/bin/main/langs/ko-KR.yml +++ /dev/null @@ -1,129 +0,0 @@ ---- -#This file is a language file, here you can change all the messages for this language -#Placeholders only work with PlaceholderAPI, for more information see the comment down here. -#NOTE: -#In order to use any placeholder [ex: %jobplayer_job%, %player_name%] you will need to install the -#plugin PlaceholderAPI (https://www.spigotmc.org/resources/placeholderapi.6245/) -################################################################################# -## -#General messages # -## -################################################################################# -#In this category you can change the general messages of the plugin -no-permission: "&cHey! You do not have permission to execute that command." -ignore-action: "&cHey! Don't be lazy and go speak with the NPC." -choosed-job: "&aCongratulations! You choosed the job %jobplayer_job%&a." -accepted-work: "&aYou accepted the work of %jobplayer_work%." -no-salary: "&cYou do not have enough salary to get! Please go work ;(" -got-salary: "&aGreat Work! You just got your %jobplayer_salary% salary!" -finished-work: "&aCongratulations! You just finished your work. Use /jobs to get more information about it." -need-level: "&cHey! You need to do %a% works to execute that action." -no-args: "&cHey! Please use a valid syntax." -my-salary: "&aYou have %jobplayer_salary%$ of salary." -unknow-job: "&cThat job was not found, please use the TAB COMPLETE for get a list of jobs." -#In this message you can use the placeholders: %cooldown_mtime% -> Minecraft Time // %cooldown_time% -> Real Life Time -salary-cooldown: "&cYou need to wait more %cooldown_mtime% before get your salary again." -work-status: "&aHere is what you need to do: %jobplayer_work%" -admin-commands: |- - &6Full list of commands: - &e/jobsadmin help &6- &eSee this messages - &e/jobsadmin info &6- &eGets the information about a player - &e/jobsadmin reload &6- &eReload all the possible configurations. - &e/jobsadmin update &6- &eInstalls a update of the plugin - &e/jobsadmin about &6- &eGets informations about the server and the plugin - &e/jobsadmin set &6- &eSets the salary/method of a player - &e/jobsadmin editor &6- &eCreates a web editor session - &e/jobsadmin applyedits &6- &eApply the edits of a web editor session -member-commands: |- - &6Full list of commands: - &e/jobs help &6- &eSee this messages - &e/jobs choose &6- &eChooses your job - &e/jobs work &6- &eSee the status/Accept of your work - &e/jobs salary &6- &eCheck your salary - &e/jobs withdraw &6- &eWithdraw your salary - &e/jobs leave &6- &eLeaves the job -info-command: |- - &6Status of the player %player_name% - &eSalary: %jobplayer_salary% - &eIs Working: %jobplayer_working% - &eWork: %jobplayer_work% - &eJob: %jobplayer_job% -reload-command: "&aConfigurations, Jobs & Language were reloaded succefully." -player-not-found: "&cThat player is not online, please put a valid player." -unknow-error: "&cAn unknow error occuried, please check the console for more information." -left-job: "&cYou are not unemployed! We recommend you choose a new job or you will lose a lot of money." -already-updated: "&cThe plugin is already in the lastest version, for more information check our WIKI." -update-started: "&aThe update of the plugin PicoJobs started, please wait..." -updated-sucefully: "&aThe plugin was updated sucefully, please restart the server to finish the update." -sucefully: "&aThe action was made sucefully." -invalid-arg: "&aThe argument sent is invalid. Please check the mispell." -################################################################################# -## -#Format messages # -## -################################################################################# -#In this category you can change the formats of placeholders and other things -#All these messages work with Player Placeholders ;) (PlaceholderAPI Required) -#Change how the works should be displayed. (DEFAULT, to a specific job go into settings/jobs.yml) -break-work: "break %a% blocks" -kill-work: "kill %a% people" -fishing-work: "fish %a% fishes" -place-work: "place %a% blocks" -craft-work: "craft %a% items" -tame-work: "tame %a% animals" -shear-work: "shear %a% sheeps" -fill-work: "fill %a% buckets" -smelt-work: "smelt %a% items" -eat-work: "eat %a% items" -enchanting-work: "enchant %a% items" -repair-work: "repair %a% items" -milk-work: "take %a% milks from cows" -kill_entity-work: "kill %a% entities" -#When something is not find what should it appear -none-format: "None" -################################################################################# -## -#Command translations # -## -################################################################################# -#In this category you can add aliases for all the commands of the plugin -aliases: - jobs: - - "jobs" - - "job" - jobsadmin: - - "jobsadmin" - - "jobadmin" - choose: "choose" - work: "work" - salary: "salary" - withdraw: "withdraw" - leave: "leave" - help: "help" - info: "info" - reload: "reload" - update: "update" - about: "about" - set: "set" - method: "method" - job: "job" - editor: "editor" - applyedits: "applyedits" -################################################################################# -## -#Time translations # -## -################################################################################# -#In this category you can change all the time translations -seconds: "seconds" -second: "second" -minutes: "minutes" -minute: "minute" -hours: "hours" -hour: "hour" -days: "days" -day: "day" -months: "months" -month: "month" -years: "years" -year: "year" diff --git a/bin/main/langs/nl-NL.yml b/bin/main/langs/nl-NL.yml deleted file mode 100644 index 15235d6d..00000000 --- a/bin/main/langs/nl-NL.yml +++ /dev/null @@ -1,129 +0,0 @@ ---- -#This file is a language file, here you can change all the messages for this language -#Placeholders only work with PlaceholderAPI, for more information see the comment down here. -#NOTE: -#In order to use any placeholder [ex: %jobplayer_job%, %player_name%] you will need to install the -#plugin PlaceholderAPI (https://www.spigotmc.org/resources/placeholderapi.6245/) -################################################################################# -## -#General messages # -## -################################################################################# -#In this category you can change the general messages of the plugin -no-permission: "&cHey! Je hebt geen toestemming om dat commando uit te voeren." -ignore-action: "&cHey! Wees niet lui en praat met de NPC." -choosed-job: "&aGefeliciteerd! Je hebt de job %jobplayer_job%&a gekozen." -accepted-work: "&aJe hebt het werk van %jobplayer_work% geaccepteerd." -no-salary: "&cJe hebt niet genoeg salaris om te krijgen! Ga naar werk ;(" -got-salary: "&aGoed werk! Je hebt zojuist je %jobplayer_salary% salaris!" -finished-work: "&aGefeliciteerd! Je hebt zojuist je werk voltooid. Gebruik /jobs om meer informatie erover te krijgen." -need-level: "&cHey! Je moet %a% doen om die actie uit te voeren." -no-args: "&cHey! Gebruik alstublieft een geldige syntaxis." -my-salary: "&aJe hebt %jobplayer_salary%$ salaris." -unknow-job: "&cDie taak is niet gevonden. Gebruik de TAB COMPLETE om een lijst met taken te krijgen." -#In this message you can use the placeholders: %cooldown_mtime% -> Minecraft Time // %cooldown_time% -> Real Life Time -salary-cooldown: "&cJe moet meer %cooldown_mtime% wachten om je salaris weer te krijgen." -work-status: "&aHier is wat je moet doen: %jobplayer_work%" -admin-commands: |- - &6Full list of commands: - &e/jobsadmin help &6- &eSee this messages - &e/jobsadmin info &6- &eGets the information about a player - &e/jobsadmin reload &6- &eReload all the possible configurations. - &e/jobsadmin update &6- &eInstalls a update of the plugin - &e/jobsadmin about &6- &eGets informations about the server and the plugin - &e/jobsadmin set &6- &eSets the salary/method of a player - &e/jobsadmin editor &6- &eCreates a web editor session - &e/jobsadmin applyedits &6- &eApply the edits of a web editor session -member-commands: |- - &6Volledige lijst met commando's: - &e/jobs helpen &6- &eSee deze berichten - &e/jobs kiezen &6- &eChooses your job - &e/jobs work &6- &eSee the status/Accept of your work - &e/jobs &6- &eCheck your salaris - &ejobs &6- &eWithdraw your salaris - &e/jobs leave &6- &eLeaves the job -info-command: |- - &6Status van de speler %player_name% - &eSalary: %jobplayer_salary% - &eIs Bewerking: %jobplayer_working% - &eWork: %jobplayer_work% - &eJob: %jobplayer_job% -reload-command: "&aConfiguraties, Jobs & Taal zijn succesvol herladen." -player-not-found: "&cDie speler is niet online, plaats een geldige speler." -unknow-error: "&cEen onbekende fout is opgetreden, controleer de console voor meer informatie." -left-job: "&cJe bent niet werkloos! We raden je aan een nieuwe baan te kiezen, anders verlies je veel geld." -already-updated: "&cDe plugin is al in de laatste versie, voor meer informatie bekijk onze WIKI." -update-started: "&aDe update van de plugin PicoJobs is gestart, even geduld..." -updated-sucefully: "&aDe plugin is succesvol bijgewerkt, herstart de server om de update af te ronden." -sucefully: "&aDe actie is overvloedig." -invalid-arg: "&aHet verzonden argument is ongeldig. Controleer het mispell." -################################################################################# -## -#Format messages # -## -################################################################################# -#In this category you can change the formats of placeholders and other things -#All these messages work with Player Placeholders ;) (PlaceholderAPI Required) -#Change how the works should be displayed. (DEFAULT, to a specific job go into settings/jobs.yml) -break-work: "pak %a% blokken" -kill-work: "versla %a% mensen" -fishing-work: "Vis %a% vissen" -place-work: "plaats %a% blokken" -craft-work: "maak %a% voorwerpen" -tame-work: "%a% dieren temmen" -shear-work: "Scheer %a% schapen" -fill-work: "vul %a% emmers in" -smelt-work: "smelt %a% voorwerpen" -eat-work: "%a% voorwerpen eten" -enchanting-work: "betover %a% items" -repair-work: "repareer %a% items" -milk-work: "neem %a% melk van koeien" -kill_entity-work: "dood %a% entiteiten" -#When something is not find what should it appear -none-format: "geen" -################################################################################# -## -#Command translations # -## -################################################################################# -#In this category you can add aliases for all the commands of the plugin -aliases: - jobs: - - "taken" - - "baan" - jobsadmin: - - "jobsadmin" - - "jobadmin" - choose: "kies" - work: "werk" - salary: "salaris" - withdraw: "opnemen" - leave: "verlaten" - help: "Help" - info: "info" - reload: "reload" - update: "Bijwerken" - about: "Over" - set: "instellen" - method: "methode" - job: "baan" - editor: "bewerker" - applyedits: "toe te passen" -################################################################################# -## -#Time translations # -## -################################################################################# -#In this category you can change all the time translations -seconds: "seconden" -second: "seconde" -minutes: "minuten" -minute: "minuut" -hours: "Uren" -hour: "uur" -days: "Dagen" -day: "Dag" -months: "Monate" -month: "maand" -years: "Jaren" -year: "Jaar" diff --git a/bin/main/langs/no-NO.yml b/bin/main/langs/no-NO.yml deleted file mode 100644 index 68136d0a..00000000 --- a/bin/main/langs/no-NO.yml +++ /dev/null @@ -1,129 +0,0 @@ ---- -#This file is a language file, here you can change all the messages for this language -#Placeholders only work with PlaceholderAPI, for more information see the comment down here. -#NOTE: -#In order to use any placeholder [ex: %jobplayer_job%, %player_name%] you will need to install the -#plugin PlaceholderAPI (https://www.spigotmc.org/resources/placeholderapi.6245/) -################################################################################# -## -#General messages # -## -################################################################################# -#In this category you can change the general messages of the plugin -no-permission: "&cHey! Du har ikke tillatelse til å utføre den kommandoen." -ignore-action: "&cHey! Ikke vær lat og gå snakke med NPC." -choosed-job: "&aGratulerer! Du valgte jobben %jobplayer_job%&a." -accepted-work: "&aDu aksepterte arbeidet til %jobplayer_work%." -no-salary: "&cDu har ikke nok lønn til å få! Gå til arbeidet ;(" -got-salary: "&aBra jobbet! Du har akkurat din %jobplayer_salary% salg!" -finished-work: "&Gratulerer! Du har nettopp fullført arbeidet ditt. Bruk /jobs for å få mer informasjon om det." -need-level: "&cHey! Du må gjøre %a% for å utføre den handlingen." -no-args: "&cHey! Vennligst bruk en gyldig syntaks." -my-salary: "&aYou have %jobplayer_salary%$ of salary." -unknow-job: "&cDen jobben ble ikke funnet, bruk TAB COMPLETE for å få en liste over jobber." -#In this message you can use the placeholders: %cooldown_mtime% -> Minecraft Time // %cooldown_time% -> Real Life Time -salary-cooldown: "&cDu må vente mer %cooldown_mtime% før du får lønnen din igjen." -work-status: "&aHer er det du trenger å gjøre: %jobplayer_work%" -admin-commands: |- - &6Full liste over kommandoer: - &e/jobsadmin help &6- &eSe denne meldingene - &/jobsadmin info &6- &eGetter informasjonen om en spiller - &/ jobsadmin reload &6- &eOppdater alle mulige konfigurasjoner. - &/jobsadmin oppdaterer &6- &eInstallerer en oppdatering av programtillegget - &/jobsadmin om &6- &eGets informasjon om serveren og programtillegget - &/jobsadmin sett &6- & eSets the salary/method of a player - &jobsadmin editor &6- &eCreates a webeditor - &jobe/sadmin appliserits &6- &eApply the dits of a webeditor session -member-commands: |- - &6Full liste over kommandoer: - &e/Jobber hjelper &6- &eSe denne meldingene - &/jobber velg &6- &eChooses your job - &&e/jobs work &6&eSe status/Godkjenning av ditt arbeid - &e/jobber Salær &6- &eSjekk din lønn - &e/jobber trekke ut &6- &eWithdraw your salary - &jobs leave &6- &6- &eLeLeve the job job job -info-command: |- - &6Status for spiller %player_name% - &eSalary: %jobplayer_salary% - &eIs Working: %jobplayer_working% - &eWork: %jobplayer_work% - &eJob: %jobplayer_job% -reload-command: "&aKonfigurasjoner, Jober og Språk ble lastet på nytt." -player-not-found: "&cDen spilleren er ikke online, vennligst legg til en gyldig spiller." -unknow-error: "&cAn unknow feil oppsto, vennligst sjekk konsollen for mer informasjon." -left-job: "&cDu er ikke arbeidsledig! Vi anbefaler deg å velge en ny jobb eller du vil miste masse penger." -already-updated: "&cPlugin er allerede i den sistste versjonen, for mer informasjon sjekk vår WIKI." -update-started: "&aOppdateringen av plugin PicoJobs startet, vennligst vent..." -updated-sucefully: "&aProgramtillegget ble oppdatert sucefull, vennligst start serveren på nytt for å fullføre oppdateringen." -sucefully: "&aThe action was made sucefully." -invalid-arg: "&aArgumentet er sendt er ugyldig. Vennligst sjekk missilet." -################################################################################# -## -#Format messages # -## -################################################################################# -#In this category you can change the formats of placeholders and other things -#All these messages work with Player Placeholders ;) (PlaceholderAPI Required) -#Change how the works should be displayed. (DEFAULT, to a specific job go into settings/jobs.yml) -break-work: "knus %a% blokker" -kill-work: "drep %a% personer" -fishing-work: "fisk %a% fisk" -place-work: "plasser %a% blokker" -craft-work: "Lag %a% gjenstander" -tame-work: "temme %a% dyr" -shear-work: "skjær %a% sau" -fill-work: "fyll %a% bøtter" -smelt-work: "smelte %a% artikler" -eat-work: "spis %a% gjenstander" -enchanting-work: "fortrylle %a% gjenstander" -repair-work: "reparasjon %a% elementer" -milk-work: "ta %a% melker fra kuer" -kill_entity-work: "drep %a% enheter" -#When something is not find what should it appear -none-format: "Ingen" -################################################################################# -## -#Command translations # -## -################################################################################# -#In this category you can add aliases for all the commands of the plugin -aliases: - jobs: - - "jobber" - - "jobb" - jobsadmin: - - "jobsadmin" - - "jobadmin" - choose: "velg" - work: "arbeid" - salary: "lønn" - withdraw: "trekk" - leave: "forlat" - help: "hjelp" - info: "informasjon" - reload: "reload" - update: "oppdater" - about: "om" - set: "sett" - method: "metode" - job: "jobb" - editor: "redaktør" - applyedits: "applikasjoner" -################################################################################# -## -#Time translations # -## -################################################################################# -#In this category you can change all the time translations -seconds: "sekunder" -second: "sekund" -minutes: "minutter" -minute: "minutt" -hours: "timer" -hour: "time" -days: "dager" -day: "dag" -months: "måneder" -month: "måned" -years: "år" -year: "år" diff --git a/bin/main/langs/pl-PL.yml b/bin/main/langs/pl-PL.yml deleted file mode 100644 index 2f4ea5cc..00000000 --- a/bin/main/langs/pl-PL.yml +++ /dev/null @@ -1,129 +0,0 @@ ---- -#This file is a language file, here you can change all the messages for this language -#Placeholders only work with PlaceholderAPI, for more information see the comment down here. -#NOTE: -#In order to use any placeholder [ex: %jobplayer_job%, %player_name%] you will need to install the -#plugin PlaceholderAPI (https://www.spigotmc.org/resources/placeholderapi.6245/) -################################################################################# -## -#General messages # -## -################################################################################# -#In this category you can change the general messages of the plugin -no-permission: "&cHej! Nie masz uprawnień do wykonania tej komendy." -ignore-action: "&cHej! Bądź leniwy i porozmawiaj z NPC." -choosed-job: "&aGratulacje! Wybrałeś zadanie %jobplayer_job%&a." -accepted-work: "&aAkceptowałeś pracę %jobplayer_work%." -no-salary: "&cNie masz wystarczająco dużo wynagrodzenia, aby dotrzeć! Przejdź do pracy ;(" -got-salary: "&aŚwietna robota! Właśnie otrzymałeś %jobplayer_salary% pensję!" -finished-work: "&aGratulacje! Właśnie zakończyłeś swoją pracę. Użyj /jobs aby uzyskać więcej informacji na ten temat." -need-level: "&cHej! Musisz zrobić %a% pracuje, aby wykonać tę akcję." -no-args: "&cHej! Użyj poprawnej składni." -my-salary: "&aMasz %jobplayer_salary%$ wynagrodzenia." -unknow-job: "&cTo zadanie nie zostało znalezione, użyj TAB COMPLETE, aby uzyskać listę zadań." -#In this message you can use the placeholders: %cooldown_mtime% -> Minecraft Time // %cooldown_time% -> Real Life Time -salary-cooldown: "&cMusisz poczekać więcej %cooldown_mtime% przed ponownym pobraniem wynagrodzenia." -work-status: "&aOto co musisz zrobić: %jobplayer_work%" -admin-commands: |- - &6Pełna lista poleceń: - &e/jobsadmin help &6- &eZobacz te wiadomości - &e/jobsadmin info &6- &ePobiera informacje o graczu - &e/jobsadmin przeładuj &6- &eOdśwież wszystkie możliwe konfiguracje. - &e/jobsadmin aktualizacja &6- &eInstaluje aktualizację wtyczki - &e/jobsadmin o &6- &eGets informacje o serwerze i wtyczce - &e/jobsadmin ustawione &6- &eUstawia salary/metodę gracza - &e/jobsadmin edytor &6- &eTworzy sesję edytora sieciowego - &e/jobsadmin apyedits &6- &eZastosuj edycje sesji edytora sieci web -member-commands: |- - &6Pełna lista poleceń: - &e/jobs help &6- &eZobacz te wiadomości - &e/jobs choose &6- &eWybiera pracę - &e/pracę &6- &eZobacz status/Akceptuj swoją pracę - &e/pracę &e/pracę &6- &eSprawdź swoje wynagrodzenie - &e/roboty wycofaj &6- &ePobrać swoje wynagrodzenie - &e/roboty pozostaw &6- &eOpuść pracę -info-command: |- - &6Status gracza %player_name% - &eSalary: %jobplayer_salary% - &eIs Working: %jobplayer_working% - &ePraca: %jobplayer_work% - &eJob: %jobplayer_job% -reload-command: "&aKonfiguracje, Zadania i Język zostały pomyślnie załadowane." -player-not-found: "&cTen gracz nie jest online, proszę wpisać prawidłowego gracza." -unknow-error: "&cWystąpił nieznany błąd, sprawdź konsolę, aby uzyskać więcej informacji." -left-job: "&cNie jesteś bezrobotny! Zalecamy wybrać nową ofertę pracy lub stracisz dużo pieniędzy." -already-updated: "&cWtyczka jest już w ostatniej wersji, aby uzyskać więcej informacji sprawdź naszą WIKI." -update-started: "&aAktualizacja wtyczki PicoJobs rozpoczęta, proszę czekać..." -updated-sucefully: "&aWtyczka została zaktualizowana, uruchom ponownie serwer, aby zakończyć aktualizację." -sucefully: "&aAkcja została wykonana z pewnością." -invalid-arg: "&aWysłany argument jest nieprawidłowy. Proszę sprawdzić nieprawidłowość." -################################################################################# -## -#Format messages # -## -################################################################################# -#In this category you can change the formats of placeholders and other things -#All these messages work with Player Placeholders ;) (PlaceholderAPI Required) -#Change how the works should be displayed. (DEFAULT, to a specific job go into settings/jobs.yml) -break-work: "niszcz %a% bloków" -kill-work: "zabij %a% osób" -fishing-work: "ryby %a% ryb" -place-work: "umieść %a% bloków" -craft-work: "twórz %a% przedmiotów" -tame-work: "oswoić %a% zwierząt" -shear-work: "ścinaj %a% owiec" -fill-work: "wypełnij %a% wiader" -smelt-work: "przetapianie %a% przedmiotów" -eat-work: "zjedz %a% przedmiotów" -enchanting-work: "zaklęcie %a% przedmiotów" -repair-work: "napraw %a% przedmiotów" -milk-work: "zabij %a% mleka od krów" -kill_entity-work: "zabij %a% obiektów" -#When something is not find what should it appear -none-format: "Brak" -################################################################################# -## -#Command translations # -## -################################################################################# -#In this category you can add aliases for all the commands of the plugin -aliases: - jobs: - - "Zadania" - - "praca" - jobsadmin: - - "jobsadmin" - - "jobadmin" - choose: "wybierz" - work: "praca" - salary: "wynagrodzenie" - withdraw: "wycofaj" - leave: "opuść" - help: "pomoc" - info: "informacje" - reload: "reload" - update: "aktualizuj" - about: "o" - set: "ustaw" - method: "Metoda" - job: "praca" - editor: "edytor" - applyedits: "zastosowana edycja" -################################################################################# -## -#Time translations # -## -################################################################################# -#In this category you can change all the time translations -seconds: "sekundy" -second: "sekunda" -minutes: "minuty" -minute: "minuta" -hours: "godziny" -hour: "godzina" -days: "dni" -day: "dzień" -months: "miesiące" -month: "miesiąc" -years: "lata" -year: "rok" diff --git a/bin/main/langs/pt-BR.yml b/bin/main/langs/pt-BR.yml deleted file mode 100644 index b7fb725c..00000000 --- a/bin/main/langs/pt-BR.yml +++ /dev/null @@ -1,129 +0,0 @@ ---- -#This file is a language file, here you can change all the messages for this language -#Placeholders only work with PlaceholderAPI, for more information see the comment down here. -#NOTE: -#In order to use any placeholder [ex: %jobplayer_job%, %player_name%] you will need to install the -#plugin PlaceholderAPI (https://www.spigotmc.org/resources/placeholderapi.6245/) -################################################################################# -## -#General messages # -## -################################################################################# -#In this category you can change the general messages of the plugin -no-permission: "&cEi! Você não tem permissão para executar esse comando." -ignore-action: "&cEi! Não seja preguiçoso e vá falar com o NPC." -choosed-job: "&aParabéns! Você escolheu o trabalho %jobplayer_job%&a." -accepted-work: "&aVocê aceitou o trabalho de %jobplayer_work%." -no-salary: "&cVocê não tem salário suficiente para receber! Por favor, vá trabalhar ;(" -got-salary: "&aGrande trabalho! Você recebeu seu salário de %jobplayer_salary%!" -finished-work: "&aParabéns! Você acabou de terminar seu trabalho. Use /jobs para obter mais informações sobre isso." -need-level: "&cEi! Você precisa fazer %a% de trabalho para executar essa ação." -no-args: "&cHey! Use uma sintaxe válida." -my-salary: "&aVocê tem %jobplayer_salary%$ de salário." -unknow-job: "&cEssa tarefa não foi encontrada, por favor, use a TAB COMPLETE para obter uma lista de trabalhos." -#In this message you can use the placeholders: %cooldown_mtime% -> Minecraft Time // %cooldown_time% -> Real Life Time -salary-cooldown: "&cVocê precisa esperar mais %cooldown_mtime% antes de obter seu salário novamente." -work-status: "&aAqui é o que você precisa fazer: %jobplayer_work%" -admin-commands: |- - &6Lista completa de comandos: - &e/jobsadmin help &6- &eVeja esta mensagem - &e/jobsadmin info &6- &eObtém as informações sobre um jogador - &e/jobsadmin recarrega &6- &eRecarregar todas as configurações possíveis. - &e/jobsadmin atualiza &6- &eInstala uma atualização do plugin - &e/jobsadmin sobre &6- &eObtém informações sobre o servidor e o plugin - &e/jobsadmin set &6- &eDefine o salário/método de um jogador - &e/jobsadmin &6- &eCria uma sessão de editor da web - &e/jobsadmin aplica edições &6- &eAplicar as edições de uma sessão de editor da web -member-commands: |- - &6Full list of commands: - &e/jobs help &6- &eSee this messages - &e/jobs choose &6- &eChooses your job - &e/jobs work &6- &eSee the status/Accept of your work - &e/jobs salary &6- &eCheck your salary - &e/jobs withdraw &6- &eWithdraw your salary - &e/jobs leave &6- &eLeaves the job -info-command: |- - &6Status do jogador %player_name% - &eSalário: %jobplayer_salary% - &eEstá funcionando: %jobplayer_working% - &eTrabalho: %jobplayer_work% - &eJob: %jobplayer_job% -reload-command: "&aConfigurações, tarefas e linguagem foram recarregadas com sucesso." -player-not-found: "&cEsse jogador não está online, por favor coloque um jogador válido." -unknow-error: "&cUm erro desconhecido occurioso, por favor, verifique o console para mais informações." -left-job: "&cVocê não está desempregado! Nós recomendamos que você escolha um novo emprego ou você vai perder muito dinheiro." -already-updated: "&cO plugin já está na última versão, para mais informações, verifique nosso WIKI." -update-started: "&aA atualização do plugin PicoJobs iniciou, por favor aguarde..." -updated-sucefully: "&aO plugin foi atualizado sucedemente, por favor reinicie o servidor para terminar a atualização." -sucefully: "&aA ação foi feita completamente." -invalid-arg: "&aO argumento enviado é inválido. Verifique o erro de argumento." -################################################################################# -## -#Format messages # -## -################################################################################# -#In this category you can change the formats of placeholders and other things -#All these messages work with Player Placeholders ;) (PlaceholderAPI Required) -#Change how the works should be displayed. (DEFAULT, to a specific job go into settings/jobs.yml) -break-work: "quebrar %a% de blocos" -kill-work: "matar %a% de pessoas" -fishing-work: "peixes de %a%" -place-work: "colocar %a% de blocos" -craft-work: "fabricar %a% de itens" -tame-work: "domesticar %a% animais" -shear-work: "luminosa %a% ovelhas" -fill-work: "preencher %a% baldes" -smelt-work: "fundir %a% itens" -eat-work: "comer %a% de itens" -enchanting-work: "%a% de itens encantados" -repair-work: "reparar %a% itens" -milk-work: "pegar %a% de leite de vacas" -kill_entity-work: "matar %a% entidades" -#When something is not find what should it appear -none-format: "Nenhuma" -################################################################################# -## -#Command translations # -## -################################################################################# -#In this category you can add aliases for all the commands of the plugin -aliases: - jobs: - - "Trabalhos" - - "tarefa" - jobsadmin: - - "jobsadmin" - - "jobadmin" - choose: "Selecionar" - work: "Trabalho" - salary: "Salário" - withdraw: "retirar" - leave: "sair" - help: "Ajuda" - info: "informações" - reload: "reload" - update: "atualização" - about: "Sobre" - set: "definir" - method: "Método" - job: "tarefa" - editor: "Editor" - applyedits: "aplicações" -################################################################################# -## -#Time translations # -## -################################################################################# -#In this category you can change all the time translations -seconds: "segundos" -second: "segundo" -minutes: "Minutos" -minute: "minuto" -hours: "horas" -hour: "hora" -days: "Dias" -day: "Dia" -months: "Meses" -month: "mês" -years: "Anos" -year: "Ano" diff --git a/bin/main/langs/pt-PT.yml b/bin/main/langs/pt-PT.yml deleted file mode 100644 index fea02fa5..00000000 --- a/bin/main/langs/pt-PT.yml +++ /dev/null @@ -1,129 +0,0 @@ ---- -#This file is a language file, here you can change all the messages for this language -#Placeholders only work with PlaceholderAPI, for more information see the comment down here. -#NOTE: -#In order to use any placeholder [ex: %jobplayer_job%, %player_name%] you will need to install the -#plugin PlaceholderAPI (https://www.spigotmc.org/resources/placeholderapi.6245/) -################################################################################# -## -#General messages # -## -################################################################################# -#In this category you can change the general messages of the plugin -no-permission: "&cEi! Você não tem permissão para executar esse comando." -ignore-action: "&cEi! Não seja preguiçoso e vá falar com o NPC." -choosed-job: "&aParabéns! Você escolheu o trabalho %jobplayer_job%&a." -accepted-work: "&aVocê aceitou o trabalho de %jobplayer_work%." -no-salary: "&cVocê não tem salário suficiente para receber! Por favor, vá trabalhar ;(" -got-salary: "&aGrande trabalho! Você recebeu seu salário de %jobplayer_salary%!" -finished-work: "&aParabéns! Você acabou de terminar seu trabalho. Use /jobs para obter mais informações sobre isso." -need-level: "&cEi! Você precisa fazer %a% de trabalho para executar essa ação." -no-args: "&cHey! Use uma sintaxe válida." -my-salary: "&aVocê tem %jobplayer_salary%$ de salário." -unknow-job: "&cEssa tarefa não foi encontrada, por favor, use a TAB COMPLETE para obter uma lista de trabalhos." -#In this message you can use the placeholders: %cooldown_mtime% -> Minecraft Time // %cooldown_time% -> Real Life Time -salary-cooldown: "&cVocê precisa esperar mais %cooldown_mtime% antes de obter seu salário novamente." -work-status: "&aAqui é o que você precisa fazer: %jobplayer_work%" -admin-commands: |- - &6Lista completa de comandos: - &e/jobsadmin help &6- &eVeja esta mensagem - &e/jobsadmin info &6- &eObtém as informações sobre um jogador - &e/jobsadmin recarrega &6- &eRecarregar todas as configurações possíveis. - &e/jobsadmin atualiza &6- &eInstala uma atualização do plugin - &e/jobsadmin sobre &6- &eObtém informações sobre o servidor e o plugin - &e/jobsadmin set &6- &eDefine o salário/método de um jogador - &e/jobsadmin &6- &eCria uma sessão de editor da web - &e/jobsadmin aplica edições &6- &eAplicar as edições de uma sessão de editor da web -member-commands: |- - &6Lista completa de comandos: - &e/jobs ajuda &6- &eOlhe estas mensagens - &e/jobs escolher &6- &eescolha seu trabalho - &e/jobs trabalho &6- &eolhe os status/Aceite seu trabalho - &e/jobs salario &6- &eConfira seu salário - &e/jobs getsalary &6- &eReceba seu trabalho - &e/jobs deixar &6- &eDeixe seu trabalho -info-command: |- - &6Status do jogador %player_name% - &eSalário: %jobplayer_salary% - &eEstá funcionando: %jobplayer_working% - &eTrabalho: %jobplayer_work% - &eJob: %jobplayer_job% -reload-command: "&aConfigurações, tarefas e linguagem foram recarregadas com sucesso." -player-not-found: "&cEsse jogador não está online, por favor coloque um jogador válido." -unknow-error: "&cUm erro desconhecido occurioso, por favor, verifique o console para mais informações." -left-job: "&cVocê não está desempregado! Nós recomendamos que você escolha um novo emprego ou você vai perder muito dinheiro." -already-updated: "&cO plugin já está na última versão, para mais informações, verifique nosso WIKI." -update-started: "&aA atualização do plugin PicoJobs iniciou, por favor aguarde..." -updated-sucefully: "&aO plugin foi atualizado sucedemente, por favor reinicie o servidor para terminar a atualização." -sucefully: "&aA ação foi feita completamente." -invalid-arg: "&aO argumento enviado é inválido. Verifique o erro de argumento." -################################################################################# -## -#Format messages # -## -################################################################################# -#In this category you can change the formats of placeholders and other things -#All these messages work with Player Placeholders ;) (PlaceholderAPI Required) -#Change how the works should be displayed. (DEFAULT, to a specific job go into settings/jobs.yml) -break-work: "quebrar %a% de blocos" -kill-work: "matar %a% de pessoas" -fishing-work: "peixes de %a%" -place-work: "colocar %a% de blocos" -craft-work: "fabricar %a% de itens" -tame-work: "domesticar %a% animais" -shear-work: "luminosa %a% ovelhas" -fill-work: "preencher %a% baldes" -smelt-work: "fundir %a% itens" -eat-work: "comer %a% de itens" -enchanting-work: "%a% de itens encantados" -repair-work: "reparar %a% itens" -milk-work: "pegar %a% de leite de vacas" -kill_entity-work: "matar %a% entidades" -#When something is not find what should it appear -none-format: "Nenhuma" -################################################################################# -## -#Command translations # -## -################################################################################# -#In this category you can add aliases for all the commands of the plugin -aliases: - jobs: - - "Trabalhos" - - "tarefa" - jobsadmin: - - "jobsadmin" - - "jobadmin" - choose: "Selecionar" - work: "Trabalho" - salary: "Salário" - withdraw: "retirar" - leave: "sair" - help: "Ajuda" - info: "informações" - reload: "reload" - update: "atualização" - about: "Sobre" - set: "definir" - method: "Método" - job: "tarefa" - editor: "Editor" - applyedits: "aplicações" -################################################################################# -## -#Time translations # -## -################################################################################# -#In this category you can change all the time translations -seconds: "segundos" -second: "segundo" -minutes: "Minutos" -minute: "minuto" -hours: "horas" -hour: "hora" -days: "Dias" -day: "Dia" -months: "Meses" -month: "mês" -years: "Anos" -year: "Ano" diff --git a/bin/main/langs/ro-RO.yml b/bin/main/langs/ro-RO.yml deleted file mode 100644 index 328924eb..00000000 --- a/bin/main/langs/ro-RO.yml +++ /dev/null @@ -1,129 +0,0 @@ ---- -#This file is a language file, here you can change all the messages for this language -#Placeholders only work with PlaceholderAPI, for more information see the comment down here. -#NOTE: -#In order to use any placeholder [ex: %jobplayer_job%, %player_name%] you will need to install the -#plugin PlaceholderAPI (https://www.spigotmc.org/resources/placeholderapi.6245/) -################################################################################# -## -#General messages # -## -################################################################################# -#In this category you can change the general messages of the plugin -no-permission: "&cHei! Nu ai permisiunea de a executa aceasta comanda." -ignore-action: "&cHei! Nu fii leneș și mergi să vorbești cu NPC-ul." -choosed-job: "&aFelicitari! Ai ales jobul %jobplayer_job%&a." -accepted-work: "&aAi acceptat munca lui %jobplayer_work%." -no-salary: "&cNu ai suficient salariu pentru a obtine ! Te rog mergi la treaba ;(" -got-salary: "&aBună treabă! Tocmai ai primit salariul tău de %jobplayer_salary%!" -finished-work: "&aFelicitari! Tocmai ai terminat treaba. Foloseste /job-uri pentru a obtine mai multe informatii despre ea." -need-level: "&cHei! Trebuie sa faci %a% functioneaza pentru a executa aceasta actiune." -no-args: "&fHei! Te rog foloseste o sintaxa valida." -my-salary: "&aAi %jobplayer_salary%$ din salariu." -unknow-job: "&cAcea treaba nu a fost gasita, te rugam sa folosesti TAB COMPLETE pentru a obtine o lista de joburi." -#In this message you can use the placeholders: %cooldown_mtime% -> Minecraft Time // %cooldown_time% -> Real Life Time -salary-cooldown: "&cTrebuie sa astepti mai mult %cooldown_mtime% inainte sa primesti din nou salariul." -work-status: "&aIata ce trebuie sa faci: %jobplayer_work%" -admin-commands: |- - &6Lista completă de comenzi: - &e/jobsadmin ajutor &6- &eVezi aceste mesaje - &e/jobsadmin info &6- &ePrimește informațiile despre un jucător - &e/jobsadmin reîncărcare &6- &eReîncarcă toate configurațiile posibile. - Actualizare &/jobsadmin &6- &eInstaleaza o actualizare a plugin-ului - &e/jobsadmin despre &6- &ePrimește informații despre server și plugin-ul - &/jobsadmin set &6- &e&6- &eSetează salaritatea/metoda unui jucător - &e/jobsadmin editor &6- &eCreează o sesiune de editor web - &e/jobsadmin applyedits &6- &eAplica editarile unui editor web -member-commands: |- - &6Lista completă a comenzilor: - &e/joburi ajuta &6- &eVezi aceste mesaje - &e/joburi alege &6- &eAlege-ți job-ul - &e/joburile &6- &eVezi starea/Acceptarea muncii tale - &/salariul job-urilor &6- &eVerifică-ți salariul - &/locurile de muncă retrag &6- &eRetrage salariul - &/locurile de muncă părăsesc &6- &eLeaves treaba -info-command: |- - &6Starea jucatorului %player_name% - &eSalary: %jobplayer_salary% - &eFunctioneaza: %jobplayer_working% - &eWork: %jobplayer_work% - &eJob: %jobplayer_job% -reload-command: "&aConfiguratiile, Jobs & Language au fost reincarcate cu succes." -player-not-found: "&cAcest jucator nu este online, te rog pune un jucator valid." -unknow-error: "&cA aparut o eroare necunoscuta, verificati consola pentru mai multe informatii." -left-job: "&cNu sunteti şomeri! Va recomandam sa alegeti un nou job sau veti pierde o gramada de bani." -already-updated: "&cPlugin-ul este deja in ultima versiune, pentru mai multe informatii verificati WIKI-ul nostru." -update-started: "&aActualizarea plugin-ului PicoJobs a pornit, te rugam sa astepti..." -updated-sucefully: "&aPlugin-ul a fost actualizat complet, te rugam restarteaza serverul pentru a termina actualizarea." -sucefully: "&aActiunea a fost facuta in mod corespunzator." -invalid-arg: "&aArgumentul trimis nu este valid. Te rugam sa verifici gresita." -################################################################################# -## -#Format messages # -## -################################################################################# -#In this category you can change the formats of placeholders and other things -#All these messages work with Player Placeholders ;) (PlaceholderAPI Required) -#Change how the works should be displayed. (DEFAULT, to a specific job go into settings/jobs.yml) -break-work: "distruge blocuri %a%" -kill-work: "omoară %a% persoane" -fishing-work: "pescuiește %a% pește" -place-work: "plasează %a% blocuri" -craft-work: "meșteșugește %a% obiecte" -tame-work: "îmblânzește %a% animale" -shear-work: "scutură %a% oi" -fill-work: "umple %a% găleți" -smelt-work: "topitor %a% elemente" -eat-work: "mănâncă %a% obiecte" -enchanting-work: "enchant %a% articole" -repair-work: "repară %a% elemente" -milk-work: "ia %a% lapte de la vaci" -kill_entity-work: "omoară %a% entități" -#When something is not find what should it appear -none-format: "Niciunul" -################################################################################# -## -#Command translations # -## -################################################################################# -#In this category you can add aliases for all the commands of the plugin -aliases: - jobs: - - "joburi" - - "sarcină" - jobsadmin: - - "jobsadmin" - - "jobadmin" - choose: "alege" - work: "muncă" - salary: "salariu" - withdraw: "retragere" - leave: "pleacă" - help: "ajutor" - info: "informaţii" - reload: "reload" - update: "actualizează" - about: "despre" - set: "setează" - method: "metoda" - job: "sarcină" - editor: "editor" - applyedits: "aplituri" -################################################################################# -## -#Time translations # -## -################################################################################# -#In this category you can change all the time translations -seconds: "secunde" -second: "secundă" -minutes: "minute" -minute: "minut" -hours: "ore" -hour: "oră" -days: "zile" -day: "zi" -months: "luni" -month: "lună" -years: "ani" -year: "an" diff --git a/bin/main/langs/ru-RU.yml b/bin/main/langs/ru-RU.yml deleted file mode 100644 index c4ca7eb5..00000000 --- a/bin/main/langs/ru-RU.yml +++ /dev/null @@ -1,129 +0,0 @@ ---- -#This file is a language file, here you can change all the messages for this language -#Placeholders only work with PlaceholderAPI, for more information see the comment down here. -#NOTE: -#In order to use any placeholder [ex: %jobplayer_job%, %player_name%] you will need to install the -#plugin PlaceholderAPI (https://www.spigotmc.org/resources/placeholderapi.6245/) -################################################################################# -## -#General messages # -## -################################################################################# -#In this category you can change the general messages of the plugin -no-permission: "&cЭй! У вас нет прав на выполнение этой команды." -ignore-action: "&cПривет! Не ленитесь и поговорите с NPC." -choosed-job: "&aПоздравляем! Вы выбрали %jobplayer_job%&a." -accepted-work: "&aВы приняли работу %jobplayer_work%." -no-salary: "&cУ вас недостаточно зарплаты для получения! Пожалуйста, перейдите на работу ;(" -got-salary: "&aОтличная работа! Вы только что получили зарплату в %jobplayer_salary%!" -finished-work: "&aПоздравляем! Вы только что закончили работу. Используйте /jobs для получения дополнительной информации об этом." -need-level: "&cПривет! Вы должны выполнить %a% для выполнения этого действия." -no-args: "&cЭ! Пожалуйста, используйте корректный синтаксис." -my-salary: "&aУ вас %jobplayer_salary%$ зарплаты." -unknow-job: "&cЭта работа не найдена, пожалуйста, используйте TAB COMPLETE для получения списка вакансий." -#In this message you can use the placeholders: %cooldown_mtime% -> Minecraft Time // %cooldown_time% -> Real Life Time -salary-cooldown: "&cВам нужно подождать больше %cooldown_mtime% для того, чтобы снова получить зарплату." -work-status: "&aВот что вам нужно сделать: %jobplayer_work%" -admin-commands: |- - &6Full list of commands: - &e/jobsadmin help &6- &eSee this messages - &e/jobsadmin info &6- &eGets the information about a player - &e/jobsadmin reload &6- &eReload all the possible configurations. - &e/jobsadmin update &6- &eInstalls a update of the plugin - &e/jobsadmin about &6- &eGets informations about the server and the plugin - &e/jobsadmin set &6- &eSets the salary/method of a player - &e/jobsadmin editor &6- &eCreates a web editor session - &e/jobsadmin applyedits &6- &eApply the edits of a web editor session -member-commands: |- - &6Полный список команд: - &e/jobs help &6- &eПосмотреть эти сообщения - &e/jobs choose &6- &eВыбрать вашу работу - &e/jobs &6- &eПосмотреть статус или принять работу - &e/jobs salary &6- &eCheck your salary - &e/jobs withdrawal &6- &eВывод зарплаты - &e/jobs leave &6- &eLeaves -info-command: |- - &6Статус игрока %player_name% - &eSalary: %jobplayer_salary% - &eРаботает: %jobplayer_working% - &eРабота: %jobplayer_work% - &eJob: %jobplayer_job% -reload-command: "&aКонфигурации, Вакансии и Язык были перезагружены успешно." -player-not-found: "&cЭтот игрок не в сети, пожалуйста, поставьте действующего игрока." -unknow-error: "&cПроизошла неизвестная ошибка, пожалуйста, проверьте консоль для получения дополнительной информации." -left-job: "&cВы не безработны! Мы рекомендуем вам выбрать новую работу, или вы потеряете много денег." -already-updated: "&cПлагин уже находится в последней версии, для получения дополнительной информации ознакомьтесь с нашим WIKI." -update-started: "&aОбновление плагина PicoJobs началось, пожалуйста, подождите..." -updated-sucefully: "&aПлагин был обновлён, пожалуйста, перезапустите сервер, чтобы завершить обновление." -sucefully: "&aДействие было выполнено должным образом." -invalid-arg: "&aНекорректный аргумент. Пожалуйста, проверьте ошибку." -################################################################################# -## -#Format messages # -## -################################################################################# -#In this category you can change the formats of placeholders and other things -#All these messages work with Player Placeholders ;) (PlaceholderAPI Required) -#Change how the works should be displayed. (DEFAULT, to a specific job go into settings/jobs.yml) -break-work: "сломать %a% блоков" -kill-work: "убить %a% людей" -fishing-work: "рыбья %a% рыбы" -place-work: "разместить %a% блоков" -craft-work: "создать %a% предметов" -tame-work: "приручить %a% животных" -shear-work: "срубить %aовец" -fill-work: "заполнить %a% сегментов" -smelt-work: "сталь %a%" -eat-work: "есть %a% элементов" -enchanting-work: "зачаровать %a% элементов" -repair-work: "ремонт %a% предметов" -milk-work: "возьмите %a% молока у коров" -kill_entity-work: "убить %a% сущностей" -#When something is not find what should it appear -none-format: "Нет" -################################################################################# -## -#Command translations # -## -################################################################################# -#In this category you can add aliases for all the commands of the plugin -aliases: - jobs: - - "вакансии" - - "работа" - jobsadmin: - - "jobsadmin" - - "jobadmin" - choose: "выбрать" - work: "работа" - salary: "зарплата" - withdraw: "вывод" - leave: "выйти" - help: "помощь" - info: "инфо" - reload: "reload" - update: "Обновить" - about: "о нас" - set: "набор" - method: "метод" - job: "работа" - editor: "редактор" - applyedits: "применил правки" -################################################################################# -## -#Time translations # -## -################################################################################# -#In this category you can change all the time translations -seconds: "секунд" -second: "секунда" -minutes: "минуты" -minute: "минута" -hours: "часов" -hour: "час" -days: "дней" -day: "день" -months: "месяцы" -month: "месяц" -years: "лет" -year: "год" diff --git a/bin/main/langs/sr-Cyrl.yml b/bin/main/langs/sr-Cyrl.yml deleted file mode 100644 index c15aa8e3..00000000 --- a/bin/main/langs/sr-Cyrl.yml +++ /dev/null @@ -1,129 +0,0 @@ ---- -#This file is a language file, here you can change all the messages for this language -#Placeholders only work with PlaceholderAPI, for more information see the comment down here. -#NOTE: -#In order to use any placeholder [ex: %jobplayer_job%, %player_name%] you will need to install the -#plugin PlaceholderAPI (https://www.spigotmc.org/resources/placeholderapi.6245/) -################################################################################# -## -#General messages # -## -################################################################################# -#In this category you can change the general messages of the plugin -no-permission: "&cHey! You do not have permission to execute that command." -ignore-action: "&cHey! Don't be lazy and go speak with the NPC." -choosed-job: "&aCongratulations! You choosed the job %jobplayer_job%&a." -accepted-work: "&aYou accepted the work of %jobplayer_work%." -no-salary: "&cYou do not have enough salary to get! Please go work ;(" -got-salary: "&aGreat Work! You just got your %jobplayer_salary% salary!" -finished-work: "&aCongratulations! You just finished your work. Use /jobs to get more information about it." -need-level: "&cHey! You need to do %a% works to execute that action." -no-args: "&cHey! Please use a valid syntax." -my-salary: "&aYou have %jobplayer_salary%$ of salary." -unknow-job: "&cThat job was not found, please use the TAB COMPLETE for get a list of jobs." -#In this message you can use the placeholders: %cooldown_mtime% -> Minecraft Time // %cooldown_time% -> Real Life Time -salary-cooldown: "&cYou need to wait more %cooldown_mtime% before get your salary again." -work-status: "&aHere is what you need to do: %jobplayer_work%" -admin-commands: |- - &6Full list of commands: - &e/jobsadmin help &6- &eSee this messages - &e/jobsadmin info &6- &eGets the information about a player - &e/jobsadmin reload &6- &eReload all the possible configurations. - &e/jobsadmin update &6- &eInstalls a update of the plugin - &e/jobsadmin about &6- &eGets informations about the server and the plugin - &e/jobsadmin set &6- &eSets the salary/method of a player - &e/jobsadmin editor &6- &eCreates a web editor session - &e/jobsadmin applyedits &6- &eApply the edits of a web editor session -member-commands: |- - &6Full list of commands: - &e/jobs help &6- &eSee this messages - &e/jobs choose &6- &eChooses your job - &e/jobs work &6- &eSee the status/Accept of your work - &e/jobs salary &6- &eCheck your salary - &e/jobs withdraw &6- &eWithdraw your salary - &e/jobs leave &6- &eLeaves the job -info-command: |- - &6Status of the player %player_name% - &eSalary: %jobplayer_salary% - &eIs Working: %jobplayer_working% - &eWork: %jobplayer_work% - &eJob: %jobplayer_job% -reload-command: "&aConfigurations, Jobs & Language were reloaded succefully." -player-not-found: "&cThat player is not online, please put a valid player." -unknow-error: "&cAn unknow error occuried, please check the console for more information." -left-job: "&cYou are not unemployed! We recommend you choose a new job or you will lose a lot of money." -already-updated: "&cThe plugin is already in the lastest version, for more information check our WIKI." -update-started: "&aThe update of the plugin PicoJobs started, please wait..." -updated-sucefully: "&aThe plugin was updated sucefully, please restart the server to finish the update." -sucefully: "&aThe action was made sucefully." -invalid-arg: "&aThe argument sent is invalid. Please check the mispell." -################################################################################# -## -#Format messages # -## -################################################################################# -#In this category you can change the formats of placeholders and other things -#All these messages work with Player Placeholders ;) (PlaceholderAPI Required) -#Change how the works should be displayed. (DEFAULT, to a specific job go into settings/jobs.yml) -break-work: "break %a% blocks" -kill-work: "kill %a% people" -fishing-work: "fish %a% fishes" -place-work: "place %a% blocks" -craft-work: "craft %a% items" -tame-work: "tame %a% animals" -shear-work: "shear %a% sheeps" -fill-work: "fill %a% buckets" -smelt-work: "smelt %a% items" -eat-work: "eat %a% items" -enchanting-work: "enchant %a% items" -repair-work: "repair %a% items" -milk-work: "take %a% milks from cows" -kill_entity-work: "kill %a% entities" -#When something is not find what should it appear -none-format: "None" -################################################################################# -## -#Command translations # -## -################################################################################# -#In this category you can add aliases for all the commands of the plugin -aliases: - jobs: - - "jobs" - - "job" - jobsadmin: - - "jobsadmin" - - "jobadmin" - choose: "choose" - work: "work" - salary: "salary" - withdraw: "withdraw" - leave: "leave" - help: "help" - info: "info" - reload: "reload" - update: "update" - about: "about" - set: "set" - method: "method" - job: "job" - editor: "editor" - applyedits: "applyedits" -################################################################################# -## -#Time translations # -## -################################################################################# -#In this category you can change all the time translations -seconds: "seconds" -second: "second" -minutes: "minutes" -minute: "minute" -hours: "hours" -hour: "hour" -days: "days" -day: "day" -months: "months" -month: "month" -years: "years" -year: "year" diff --git a/bin/main/langs/sv-SE.yml b/bin/main/langs/sv-SE.yml deleted file mode 100644 index d32d0353..00000000 --- a/bin/main/langs/sv-SE.yml +++ /dev/null @@ -1,129 +0,0 @@ ---- -#This file is a language file, here you can change all the messages for this language -#Placeholders only work with PlaceholderAPI, for more information see the comment down here. -#NOTE: -#In order to use any placeholder [ex: %jobplayer_job%, %player_name%] you will need to install the -#plugin PlaceholderAPI (https://www.spigotmc.org/resources/placeholderapi.6245/) -################################################################################# -## -#General messages # -## -################################################################################# -#In this category you can change the general messages of the plugin -no-permission: "&cHej! Du har inte behörighet att köra det kommandot." -ignore-action: "&cHej! Var inte lata och gå och prata med NPC." -choosed-job: "&aGrattis! Du valde jobbet %jobplayer_job%&a." -accepted-work: "&aDu accepterade arbetet på %jobplayer_work%." -no-salary: "&cDu har inte tillräckligt med lön för att få! Gå till jobbet ;(" -got-salary: "&aGreat Work! Du har precis fått din %jobplayer_salary% lön!" -finished-work: "&aGrattis! Du har precis avslutat ditt arbete. Använd /jobs för att få mer information om det." -need-level: "&cHej! Du måste göra %a% verk för att utföra den åtgärden." -no-args: "&cHej! Använd en giltig syntax." -my-salary: "&aDu har %jobplayer_salary%$ i lön." -unknow-job: "&cDet jobbet hittades inte, använd TAB COMPLETE för att få en lista över jobb." -#In this message you can use the placeholders: %cooldown_mtime% -> Minecraft Time // %cooldown_time% -> Real Life Time -salary-cooldown: "&cDu måste vänta mer %cooldown_mtime% innan du får din lön igen." -work-status: "&aHär är vad du behöver göra: %jobplayer_work%" -admin-commands: |- - &6Fullständig lista över kommandon: - &e/jobsadmin help &6- &eSe detta meddelande - &e/jobsadmin info &6- &eHämtar information om en spelare - &e/jobsadmin ladda om &6- &eLadda om alla möjliga konfigurationer. - &e/jobsadmin update &6- &eInstallerar en uppdatering av pluginen - &e/jobsadmin om &6- &eHämtar information om servern och pluginen - &e/jobsadmin set &6- &eStäller in en spelares lön/metod - &e/jobsadmin editor &6- &eSkapar en webbredaktörssession - &e/jobsadmin tillämpar &6- &eTillämpa redigeringen av en webbredaktörs session -member-commands: |- - &6Fullständig lista över kommandon: - &e/jobs help &6- &eSe detta meddelande - &e/jobs choose &6- &eChooses your job - &e/jobs work &6- &eSe status/Acceptera ditt arbete - &e/jobs lön &6- &eCheck your pay - &e/jobs withdraw &6- &eTa ut din lön - &e/jobs leave &6- &eLeaves the job -info-command: |- - &6Status för spelaren %player_name% - &eSalary: %jobplayer_salary% - &eIs fungerar: %jobplayer_working% - &eWork: %jobplayer_work% - &eJob: %jobplayer_job% -reload-command: "&aKonfigurationer, jobb och språk laddades om." -player-not-found: "&cDen spelaren är inte online, ange en giltig spelare." -unknow-error: "&cEtt okänt fel uppstod, kontrollera konsolen för mer information." -left-job: "&cYou är inte arbetslös! Vi rekommenderar att du väljer ett nytt jobb eller att du förlorar en massa pengar." -already-updated: "&cPluginen är redan i den senaste versionen, för mer information kolla vår WIKI." -update-started: "&aUppdateringen av pluginen PicoJobs startade, vänligen vänta..." -updated-sucefully: "&aPluginen har uppdaterats noggrant, vänligen starta om servern för att slutföra uppdateringen." -sucefully: "&aÅtgärden gjordes noggrant." -invalid-arg: "&aArgumentet som skickats är ogiltigt. Kontrollera felet." -################################################################################# -## -#Format messages # -## -################################################################################# -#In this category you can change the formats of placeholders and other things -#All these messages work with Player Placeholders ;) (PlaceholderAPI Required) -#Change how the works should be displayed. (DEFAULT, to a specific job go into settings/jobs.yml) -break-work: "bryta %a% block" -kill-work: "döda %a% personer" -fishing-work: "fisk %a% fiskar" -place-work: "placera %a% block" -craft-work: "tillverka %a% objekt" -tame-work: "tämja %a% djur" -shear-work: "skjuvning %a% får" -fill-work: "fyll %a% hinkar" -smelt-work: "smält %a% objekt" -eat-work: "äta %a% objekt" -enchanting-work: "förtrolla %a% objekt" -repair-work: "reparera %a% objekt" -milk-work: "ta %a% mjölk från kor" -kill_entity-work: "döda %a% enheter" -#When something is not find what should it appear -none-format: "Ingen" -################################################################################# -## -#Command translations # -## -################################################################################# -#In this category you can add aliases for all the commands of the plugin -aliases: - jobs: - - "jobb" - - "jobb" - jobsadmin: - - "jobsadmin" - - "jobadmin" - choose: "välj" - work: "arbete" - salary: "lön" - withdraw: "dra tillbaka" - leave: "lämna" - help: "hjälp" - info: "information" - reload: "reload" - update: "uppdatera" - about: "om" - set: "ange" - method: "metod" - job: "jobb" - editor: "redaktör" - applyedits: "ansökningar" -################################################################################# -## -#Time translations # -## -################################################################################# -#In this category you can change all the time translations -seconds: "sekunder" -second: "sekund" -minutes: "minuter" -minute: "minut" -hours: "timmar" -hour: "timme" -days: "dagar" -day: "dag" -months: "månader" -month: "månad" -years: "år" -year: "år" diff --git a/bin/main/langs/tr-TR.yml b/bin/main/langs/tr-TR.yml deleted file mode 100644 index c1f06e27..00000000 --- a/bin/main/langs/tr-TR.yml +++ /dev/null @@ -1,129 +0,0 @@ ---- -#This file is a language file, here you can change all the messages for this language -#Placeholders only work with PlaceholderAPI, for more information see the comment down here. -#NOTE: -#In order to use any placeholder [ex: %jobplayer_job%, %player_name%] you will need to install the -#plugin PlaceholderAPI (https://www.spigotmc.org/resources/placeholderapi.6245/) -################################################################################# -## -#General messages # -## -################################################################################# -#In this category you can change the general messages of the plugin -no-permission: "&cHey! Bu komutu yürütme izniniz yok." -ignore-action: "&cHey! Tembel olmayın ve NPC ile konuşun." -choosed-job: "&aTebrikler! &e%jobplayer_job% &amesleğini seçtin." -accepted-work: "&e%jobplayer_work% &aadlı oyuncunun işini kabul ettin." -no-salary: "&cAlmak için yeterli maaşın yok! Lütfen işe git ;(" -got-salary: "&aHarika İş! Az önce &e%jobplayer_salary% &amaaşını aldın!" -finished-work: "&aTebrikler! Az önce işini bitirdin. /jobs yazarak bunun hakkında detaylı bilgi al." -need-level: "&cHey! Bunu yapabilmek için %a% iş yapman gerek." -no-args: "&cHey! Lütfen geçerli bir sözdizimi kullan." -my-salary: "&a%jobplayer_salary% TL maaşın var." -unknow-job: "&cBu mesleklerin bulunamadı, lütfen mesleklerin bir listesini almak için TAB TAMLAMASI kullan." -#In this message you can use the placeholders: %cooldown_mtime% -> Minecraft Time // %cooldown_time% -> Real Life Time -salary-cooldown: "&cMaaşını alabilmek için %cooldown_mtime% kadar beklemelisin" -work-status: "&aİşte yapman gerekenler: %jobplayer_work%" -admin-commands: |- - &6Full list of commands: - &e/jobsadmin help &6- &eSee this messages - &e/jobsadmin info &6- &eGets the information about a player - &e/jobsadmin reload &6- &eReload all the possible configurations. - &e/jobsadmin update &6- &eInstalls a update of the plugin - &e/jobsadmin about &6- &eGets informations about the server and the plugin - &e/jobsadmin set &6- &eSets the salary/method of a player - &e/jobsadmin editor &6- &eCreates a web editor session - &e/jobsadmin applyedits &6- &eApply the edits of a web editor session -member-commands: |- - &6Komutların listesi: - &e/jobs help &6- &eBu mesajı gör - &e/jobs choose &6- &eişini seçer - &e/jobs work &6- &eDurumunu gör / Çalışmanın kabul edilmesi - &e/jobs salary &6- &eMaaşını kontrol et - &e/jobs withdraw &6- &eMaaşını çek - &e/jobs leave &6- &eİşten ayrıl -info-command: |- - &6%player_name% Adlı oyuncunun durumu - &eMaaşı: %jobplayer_salary% - &eÇalışıyor Mu: %jobplayer_working% - &eİş: %jobplayer_work% - &eMeslek: %jobplayer_job% -reload-command: "&aYapılandırmalar, Meslek ve Dil başarıyla yeniden yüklendi." -player-not-found: "&cBu oyuncu çevrimiçi değil, lütfen geçerli bir oyuncu girin." -unknow-error: "&cBilinmeyen bir hata oluştu, daha fazla bilgi için lütfen konsolu kontrol edin." -left-job: "&cSen işsiz değilsin! Yeni bir iş seçmeni tavsiye ederim yoksa çok para kaybedersin." -already-updated: "&cEklenti zaten en son sürümde, daha fazla bilgi için WIKI'mızı kontrol edin." -update-started: "&aPicoJobs eklentisinin güncellemesi başladı, lütfen bekleyin..." -updated-sucefully: "&aEklenti yeterince güncellendi, lütfen güncellemeyi bitirmek için sunucuyu yeniden başlatın" -sucefully: "&aEylem başarılı bir şekilde yapıldı." -invalid-arg: "&aGönderilen argüman geçersiz. Lütfen yanlış yazımı kontrol edin." -################################################################################# -## -#Format messages # -## -################################################################################# -#In this category you can change the formats of placeholders and other things -#All these messages work with Player Placeholders ;) (PlaceholderAPI Required) -#Change how the works should be displayed. (DEFAULT, to a specific job go into settings/jobs.yml) -break-work: "%a% blok kır" -kill-work: "%a% oyuncu öldür" -fishing-work: "%a% balık tut" -place-work: "%a% blok koy" -craft-work: "%a% eşya üret" -tame-work: "tame %a% animals" -shear-work: "shear %a% sheeps" -fill-work: "fill %a% buckets" -smelt-work: "%a% eşya erit" -eat-work: "%a% besin ye" -enchanting-work: "%a% eşyaya büyü uygula" -repair-work: "%a% eşya tamir et" -milk-work: "ineklerden %a% kova süt sağ" -kill_entity-work: "%a% varlık öldür" -#When something is not find what should it appear -none-format: "Yok" -################################################################################# -## -#Command translations # -## -################################################################################# -#In this category you can add aliases for all the commands of the plugin -aliases: - jobs: - - "jobs" - - "iş" - jobsadmin: - - "jobsadmin" - - "jobadmin" - choose: "seç" - work: "iş" - salary: "maaş" - withdraw: "çek" - leave: "ayrıl" - help: "yardım" - info: "bilgi" - reload: "yenile" - update: "güncelle" - about: "hakkında" - set: "ayarla" - method: "metod" - job: "iş" - editor: "editor" - applyedits: "applyedits" -################################################################################# -## -#Time translations # -## -################################################################################# -#In this category you can change all the time translations -seconds: "saniye" -second: "saniye" -minutes: "dakika" -minute: "dakika" -hours: "saat" -hour: "saat" -days: "gün" -day: "gün" -months: "ay" -month: "ay" -years: "yıl" -year: "yıl" diff --git a/bin/main/langs/uk-UA.yml b/bin/main/langs/uk-UA.yml deleted file mode 100644 index fe76cd87..00000000 --- a/bin/main/langs/uk-UA.yml +++ /dev/null @@ -1,129 +0,0 @@ ---- -#This file is a language file, here you can change all the messages for this language -#Placeholders only work with PlaceholderAPI, for more information see the comment down here. -#NOTE: -#In order to use any placeholder [ex: %jobplayer_job%, %player_name%] you will need to install the -#plugin PlaceholderAPI (https://www.spigotmc.org/resources/placeholderapi.6245/) -################################################################################# -## -#General messages # -## -################################################################################# -#In this category you can change the general messages of the plugin -no-permission: "&cHey! Ви не маєте дозволу на виконання цієї команди." -ignore-action: "&cХей! Не ледачий і йдіть розмовляти з NPC." -choosed-job: "&aВітаємо! Ви обрали завдання %jobplayer_job%&a." -accepted-work: "&aВи прийняли роботу з %jobplayer_work%." -no-salary: "&cУ вас недостатньо зарплатні! Будь ласка, йдіть до роботи ;(" -got-salary: "&aВідмінна робота! Ви щойно отримали вашу зарплату %jobplayer_salary%!" -finished-work: "&aВітаємо! Ви щойно завершили роботу. Використовуйте /завдань, щоб отримати більше інформації." -need-level: "&cХей! Ви повинні зробити %a% роботи для виконання цієї дії." -no-args: "&cХей! Будь ласка, використайте правильний синтаксис." -my-salary: "&aУ вас є %jobplayer_salary%$ зарплатні." -unknow-job: "&cЦе завдання не знайдено, будь ласка, використовуйте TAB COMPLETE для отримання списку завдань." -#In this message you can use the placeholders: %cooldown_mtime% -> Minecraft Time // %cooldown_time% -> Real Life Time -salary-cooldown: "&cВи повинні почекати більше %cooldown_mtime% перед тим, як отримати вашу зарплату знову." -work-status: "&aОсь що вам необхідно зробити: %jobplayer_work%" -admin-commands: |- - &6Full list of commands: - &e/jobsadmin help &6- &eSee this messages - &e/jobsadmin info &6- &eGets the information about a player - &e/jobsadmin reload &6- &eReload all the possible configurations. - &e/jobsadmin update &6- &eInstalls a update of the plugin - &e/jobsadmin about &6- &eGets informations about the server and the plugin - &e/jobsadmin set &6- &eSets the salary/method of a player - &e/jobsadmin editor &6- &eCreates a web editor session - &e/jobsadmin applyedits &6- &eApply the edits of a web editor session -member-commands: |- - &6Повний список команд: - &&e/jobs допоможуть &6- &eSee ці повідомлення - &/завдань, обирайте &6- &eChoes Ваша робота - &e/jobs &6- Перегляньте статус/ордер на свою роботу - &6- &eПеревір зарплатню - &eCheck та зняття коштів з завдання - &6- Зняття зарплатні завдання і завдання з &6- переводить завдання -info-command: |- - &6Статус гравця %player_name% - &eSalary: %jobplayer_salary% - &eIs робота: %jobplayer_working% - &eWork: %jobplayer_work% - &eJob: %jobplayer_job% -reload-command: "&aКонфігурації, завдання та мови були успішно перезавантажені." -player-not-found: "&cЦей гравець не в мережі, будь ласка, поставте дійсного гравця." -unknow-error: "&cВиникла невідома помилка, будь ласка, перевірте консоль для отримання додаткової інформації." -left-job: "&cВи не безробітні! Ми рекомендуємо вибрати нову роботу, або ви втратите багато грошей." -already-updated: "&cПлагін вже знаходиться в останній версії, для отримання додаткової інформації інформації про наш WIKI." -update-started: "&aОновлення плагіна PicoJobs запущено, будь ласка зачекайте..." -updated-sucefully: "&aПлагін було успішно оновлено, будь ласка перезапустіть сервер, щоб завершити оновлення." -sucefully: "&aЦя дія була успішно зроблена." -invalid-arg: "&aНадіслано аргумент недопустимий. Будь ласка, перевірте неправильну відповідь." -################################################################################# -## -#Format messages # -## -################################################################################# -#In this category you can change the formats of placeholders and other things -#All these messages work with Player Placeholders ;) (PlaceholderAPI Required) -#Change how the works should be displayed. (DEFAULT, to a specific job go into settings/jobs.yml) -break-work: "зупинити %a% блоків" -kill-work: "вбити %a% людей" -fishing-work: "риби %a% риб" -place-work: "розмістити %a% блоків" -craft-work: "виробити %a% товарів" -tame-work: "приручити %a% тварин" -shear-work: "стригти %a% овець" -fill-work: "заповнити %a% відра" -smelt-work: "переплавити %a% товарів" -eat-work: "їжте %a% елементів" -enchanting-work: "зачаровані %a% елементи" -repair-work: "ремонтувати %a% товарів" -milk-work: "взяти %a% молока з корів" -kill_entity-work: "вбити %a% об'єктів" -#When something is not find what should it appear -none-format: "Без ефекту" -################################################################################# -## -#Command translations # -## -################################################################################# -#In this category you can add aliases for all the commands of the plugin -aliases: - jobs: - - "робочі місця" - - "завдання" - jobsadmin: - - "jobsadmin" - - "jobadmin" - choose: "вибрати" - work: "робота" - salary: "зарплата" - withdraw: "вивести кошти" - leave: "залишити" - help: "допомога" - info: "інформація" - reload: "reload" - update: "оновити" - about: "про себе" - set: "набір" - method: "метод" - job: "завдання" - editor: "редактор" - applyedits: "аплодування" -################################################################################# -## -#Time translations # -## -################################################################################# -#In this category you can change all the time translations -seconds: "секунди" -second: "секунда" -minutes: "хвилин" -minute: "хвилина" -hours: "годин" -hour: "година" -days: "днів" -day: "день" -months: "місяців" -month: "місяць" -years: "років" -year: "рік" diff --git a/bin/main/langs/vi-VN.yml b/bin/main/langs/vi-VN.yml deleted file mode 100644 index 1471a1e9..00000000 --- a/bin/main/langs/vi-VN.yml +++ /dev/null @@ -1,129 +0,0 @@ ---- -#This file is a language file, here you can change all the messages for this language -#Placeholders only work with PlaceholderAPI, for more information see the comment down here. -#NOTE: -#In order to use any placeholder [ex: %jobplayer_job%, %player_name%] you will need to install the -#plugin PlaceholderAPI (https://www.spigotmc.org/resources/placeholderapi.6245/) -################################################################################# -## -#General messages # -## -################################################################################# -#In this category you can change the general messages of the plugin -no-permission: "&cNày Bạn! Bạn không có quyền để thực hiện lệnh đó." -ignore-action: "&cNày Bạn! Đừng lười biếng và hãy nói chuyện với NPC." -choosed-job: "&aXin chúc mừng! Bạn đã chọn công việc %jobplayer_job% thành công&a." -accepted-work: "&aBạn Đã Nhận Công Việc Của %jobplayer_work%." -no-salary: "&cBạn Không Đủ Tiền Lương Để Nhận! Xin Hãy Đi Làm Việc ;(" -got-salary: "&aLàm Tốt Lắm! Bạn Đã Nhận Được %jobplayer_salary% Tiền Lương Của Bạn!" -finished-work: "&aXin Chúc Mừng! Bạn Đã Hoàn Thành Công Việc Của Mình. Hãy Sử Dụng /job Để Biết Thêm Thông Tin Về Nó." -need-level: "&cNày! Bạn Cần Thực Hiện %a% Để Làm Hành Động Đó\n" -no-args: "&cNày! Bạn Vui Lòng Sử Dụng Một Cú Pháp Hợp Lệ." -my-salary: "&aBạn Có %jobplayer_salary%$ Tiền Lương." -unknow-job: "&cCông Việc Không Hợp Lệ, Vui Lòng Hãy Sử Dụng Tab COMPLETE để lấy một danh sách công việc." -#In this message you can use the placeholders: %cooldown_mtime% -> Minecraft Time // %cooldown_time% -> Real Life Time -salary-cooldown: "&cBạn Cần Đợi %cooldown_mtime% Để Có Thể Nhận Lương Của Bạn Một Lần Nữa." -work-status: "&aĐây chính là Những Gì Bạn Cần Phải Làm: %jobplayer_work%" -admin-commands: |- - &6Full list of commands: - &e/jobsadmin help &6- &eXem Tin Nhắn - &e/jobsadmin info &6- &eLấy Thông Tin Về Người Chơi - &e/jobsadmin reload &6- &eTải Lại Tất Cả Về Configurations. - &e/jobsadmin update &6- &eTải Và Cập Nhất Plugins - &e/jobsadmin about &6- &eNhận Thông Tin Về Server Và Plugins - &e/jobsadmin set &6- &eĐặt Mức Lương/Phương Thức Của Người Chơi - &e/jobsadmin editor &6- &eTạo Một Trang Web Chỉnh sửa - &e/jobsadmin applyedits &6- &eChấp Nhận Chỉnh Sửa -member-commands: |- - &6Full list of commands: - &e/jobs help &6- &eXem Tin Nhắn - &e/jobs choose &6- &eChọn Công Việc Của Bạn - &e/jobs work &6- &eXem Trạng Thái/Chấp Nhận Công Việc Của Bạn - &e/jobs salary &6- &eKiểm Tra Tiền Lương Của Bạn - &e/jobs withdraw &6- &eRút Tiền Lương Của Bạn - &e/jobs leave &6- &eBỏ Nghề -info-command: |- - &6Trạng Thái Của Người Chơi%player_name% - &eTiền Lương: %jobplayer_salary% - &eĐang Làm Công Việc: %jobplayer_working% - &eCông Việc: %jobplayer_work% - &eNghề Nghiệp: %jobplayer_job% -reload-command: "&aConfigurations, Jobs & Ngôn Ngữ Đã Tải Lại Thành Công." -player-not-found: "&Người Chơi Này Không Trực Tuyến, Vui Lòng Nhập Một Người Chơi Hợp Lệ." -unknow-error: "&cĐã xảy ra lỗi không xác định, vui lòng kiểm tra bảng điều khiển để biết thêm thông tin." -left-job: "&cBạn Đang Có Một Công Việc! Chúng tôi khuyên bạn nên chọn một công việc mới nếu không bạn sẽ mất rất nhiều tiền." -already-updated: "&cPlugin đã có trong phiên bản mới nhất, để biết thêm thông tin, hãy kiểm tra WIKI của chúng tôi." -update-started: "&aCập nhật của plugin PicoJobs đã bắt đầu, vui lòng đợi..." -updated-sucefully: "&aPlugin đã được cập nhật thành công, vui lòng khởi động lại máy chủ để hoàn tất quá trình cập nhật." -sucefully: "& aHành động đã được thực hiện thành công." -invalid-arg: "&aĐối số được gửi không hợp lệ. Vui lòng kiểm tra lỗi chính tả." -################################################################################# -## -#Format messages # -## -################################################################################# -#In this category you can change the formats of placeholders and other things -#All these messages work with Player Placeholders ;) (PlaceholderAPI Required) -#Change how the works should be displayed. (DEFAULT, to a specific job go into settings/jobs.yml) -break-work: "phá Vỡ Khối %a%" -kill-work: "giết Người %a%" -fishing-work: "hãy Câu Cá %a" -place-work: "đặt Khối %a%" -craft-work: "chế Tạo Vật Phẩm %a%" -tame-work: "thu Phục %a%" -shear-work: "cắt Lông sheeps %a%" -fill-work: "lắp Đầy Xô %a%" -smelt-work: "nung Vật Phẩm %a%" -eat-work: "ăn %a%" -enchanting-work: "cường Hóa Vật Phẩm %a%" -repair-work: "sửa Chửa Vật Phẩm %a%" -milk-work: "lấy %a% Sữa Từ Bò" -kill_entity-work: "giết Thực Thể %a%" -#When something is not find what should it appear -none-format: "Không" -################################################################################# -## -#Command translations # -## -################################################################################# -#In this category you can add aliases for all the commands of the plugin -aliases: - jobs: - - "công Việc" - - "công Việc" - jobsadmin: - - "quản lý các công việc" - - "quản Lý Công Việc" - choose: "chọn" - work: "làm Việc" - salary: "tiền Lương" - withdraw: "rút Tiền" - leave: "thoát" - help: "trợ Gíup" - info: "thông Tin" - reload: "tải Lại" - update: "nâng Cấp" - about: "khoản" - set: "đặt" - method: "phương Pháp" - job: "công Việc" - editor: "chỉnh sửa" - applyedits: "áp dụng chỉnh sửa" -################################################################################# -## -#Time translations # -## -################################################################################# -#In this category you can change all the time translations -seconds: "giây" -second: "thứ hai" -minutes: "phút" -minute: "phút" -hours: "giờ" -hour: "giờ" -days: "ngày" -day: "ngày" -months: "tháng" -month: "tháng" -years: "năm" -year: "năm" diff --git a/bin/main/langs/zh-CN.yml b/bin/main/langs/zh-CN.yml deleted file mode 100644 index 09bc98d9..00000000 --- a/bin/main/langs/zh-CN.yml +++ /dev/null @@ -1,129 +0,0 @@ ---- -#This file is a language file, here you can change all the messages for this language -#Placeholders only work with PlaceholderAPI, for more information see the comment down here. -#NOTE: -#In order to use any placeholder [ex: %jobplayer_job%, %player_name%] you will need to install the -#plugin PlaceholderAPI (https://www.spigotmc.org/resources/placeholderapi.6245/) -################################################################################# -## -#General messages # -## -################################################################################# -#In this category you can change the general messages of the plugin -no-permission: "&c嘿! 您没有执行该命令的权限。" -ignore-action: "&c嘿! 别偷懒,去与 NPC 交互。" -choosed-job: "恭喜您成功选择了职业 %jobplayer_job%&a。" -accepted-work: "&a你接取了 %jobplayer_work% 的工作。" -no-salary: "&c你的薪水完全不够!请去工作;(" -got-salary: "&a干的不错!你刚刚得到你的薪水 %jobplayer_salary%!" -finished-work: "恭喜您刚刚完成了您的工作。使用 /jobs 指令可以查看详细信息。" -need-level: "&c嘿! 您需要先做完 %a% 工作才能进行这个行为。" -no-args: "&c嘿! 请使用一个有效的语法。" -my-salary: "&a你的薪水有:%jobplayer_salary%。" -unknow-job: "&c未知职业,请使用 TAB 补全指令以获得职业列表。" -#In this message you can use the placeholders: %cooldown_mtime% -> Minecraft Time // %cooldown_time% -> Real Life Time -salary-cooldown: "&c你还需要等待 %cooldown_mtime% 才能再次拿到你的薪水。" -work-status: "&a这里是你需要去做的事情: %jobplayer_work%" -admin-commands: |- - &6完整的命令列表: - &e/jobsadmin帮助 &6- &e查看此消息 - &e/jobsadmin信息 &6- &eGets 关于玩家的信息 - &e/jobsadmin重新加载&6- &eReload 所有可能的配置。 - &e/jobsadmin更新 &6- &eInstalls 更新插件 - &e/jobsadmin关于&6- &eGets 关于服务器和插件的信息 - &e/jobsadmin设置 &6- &eSets 一个玩家的预付/方法 - &e/jobsadmin editor&6- &eCreate 一个网络编辑器会话 - &e/jobsadmin appyedits &6- &eApply the edits of a web 编辑器会话的编辑 -member-commands: |- - &6完整的指令列表: - &e/jobs help &6- &e查看此列表 - &e/jobs choos &6- &e选择你的任务 - &e/jobs work &6- &e查看你的工作状态,以及是否接受 - &e/jobs palay &6- &e查看你的薪水 - &e/jobs acresption &6- &e撤回你的薪水 - &e/jobs leave &6- &e从当前职业辞职 -info-command: |- - &6玩家状态 %player_name% - &e薪水: %jobplayer_salary% - &e是否处于工作状态: %jobplayer_working% - &e工作: %jobplayer_work% - &e职业: %jobplayer_job% -reload-command: "&a配置文件, 职业文件和语言文件重载成功。" -player-not-found: "&c该玩家不在线,请输入一个在线的玩家。" -unknow-error: "&c发生未知错误,请查看控制台以获得更多信息。" -left-job: "&c你还没有失业!我们建议你选择一个新的工作,否则你将入不敷出。" -already-updated: "&c此插件已是最新版本了,如果你想了解更多信息,请查看我们的WIKI。" -update-started: "&a插件PicoJobs的更新已开始,请稍后..." -updated-sucefully: "&a此插件已成功更新,请重启服务端以完成更新。" -sucefully: "&a该行为已成功进行。" -invalid-arg: "&a输入的参数无效,请仔细检查。" -################################################################################# -## -#Format messages # -## -################################################################################# -#In this category you can change the formats of placeholders and other things -#All these messages work with Player Placeholders ;) (PlaceholderAPI Required) -#Change how the works should be displayed. (DEFAULT, to a specific job go into settings/jobs.yml) -break-work: "破坏 %a% 个方块" -kill-work: "杀死 %a% 名玩家" -fishing-work: "钓上 %a% 条鱼" -place-work: "放置 %a% 个方块" -craft-work: "合成 %a% 个物品" -tame-work: "驯服 %a% 的动物数" -shear-work: "Shear %a% 绵羊" -fill-work: "填充 %a%的桶数" -smelt-work: "烧制 %a% 个物品" -eat-work: "吃掉 %a% 个物品" -enchanting-work: "附魔 %a% 个物品" -repair-work: "修理 %a% 个物品" -milk-work: "从奶牛身上挤出 %a% 桶牛奶" -kill_entity-work: "杀死 %a% 只实体" -#When something is not find what should it appear -none-format: "无" -################################################################################# -## -#Command translations # -## -################################################################################# -#In this category you can add aliases for all the commands of the plugin -aliases: - jobs: - - "任务" - - "职业" - jobsadmin: - - "jobsadmin" - - "jobadmin" - choose: "选择" - work: "工作" - salary: "薪水" - withdraw: "撤回" - leave: "离开" - help: "帮助" - info: "信息" - reload: "重载" - update: "更新" - about: "关于" - set: "设置" - method: "机制" - job: "职业" - editor: "编辑器" - applyedits: "应用版" -################################################################################# -## -#Time translations # -## -################################################################################# -#In this category you can change all the time translations -seconds: "秒" -second: "秒" -minutes: "分钟" -minute: "分钟" -hours: "小时" -hour: "小时" -days: "天" -day: "天" -months: "月" -month: "月" -years: "年" -year: "年" diff --git a/bin/main/langs/zh-TW.yml b/bin/main/langs/zh-TW.yml deleted file mode 100644 index 8121b5f6..00000000 --- a/bin/main/langs/zh-TW.yml +++ /dev/null @@ -1,129 +0,0 @@ ---- -#This file is a language file, here you can change all the messages for this language -#Placeholders only work with PlaceholderAPI, for more information see the comment down here. -#NOTE: -#In order to use any placeholder [ex: %jobplayer_job%, %player_name%] you will need to install the -#plugin PlaceholderAPI (https://www.spigotmc.org/resources/placeholderapi.6245/) -################################################################################# -## -#General messages # -## -################################################################################# -#In this category you can change the general messages of the plugin -no-permission: "&c嘿! 您沒有執行該命令的權限。" -ignore-action: "&c嘿! 別偷懶,去與 NPC 交互。" -choosed-job: "恭喜您成功選擇了職業 %jobplayer_job%&a。" -accepted-work: "&a妳接取了 %jobplayer_work% 的工作。" -no-salary: "&c妳的薪水完全不夠!請去工作;(" -got-salary: "&a幹的不錯!妳剛剛得到妳的薪水 %jobplayer_salary%!" -finished-work: "恭喜您剛剛完成了您的工作。使用 /jobs 指令可以查看詳細信息。" -need-level: "&c嘿! 您需要先做完 %a% 工作才能進行這個行為。" -no-args: "&c嘿! 請使用壹個有效的語法。" -my-salary: "&a妳的薪水有:%jobplayer_salary%。" -unknow-job: "&c未知職業,請使用 TAB 補全指令以獲得職業列表。" -#In this message you can use the placeholders: %cooldown_mtime% -> Minecraft Time // %cooldown_time% -> Real Life Time -salary-cooldown: "&c妳還需要等待 %cooldown_mtime% 才能再次拿到妳的薪水。" -work-status: "&a這裏是妳需要去做的事情: %jobplayer_work%" -admin-commands: |- - &6Full list of commands: - &e/jobsadmin help &6- &eSee this messages - &e/jobsadmin info &6- &eGets the information about a player - &e/jobsadmin reload &6- &eReload all the possible configurations. - &e/jobsadmin update &6- &eInstalls a update of the plugin - &e/jobsadmin about &6- &eGets informations about the server and the plugin - &e/jobsadmin set &6- &eSets the salary/method of a player - &e/jobsadmin editor &6- &eCreates a web editor session - &e/jobsadmin applyedits &6- &eApply the edits of a web editor session -member-commands: |- - &6完整的指令列表: - &e/jobs help &6- &e查看此列表 - &e/jobs choos &6- &e選擇妳的任務 - &e/jobs work &6- &e查看妳的工作狀態,以及是否接受 - &e/jobs palay &6- &e查看妳的薪水 - &e/jobs acresption &6- &e撤回妳的薪水 - &e/jobs leave &6- &e從當前職業辭職 -info-command: |- - &6玩家狀態 %player_name% - &e薪水: %jobplayer_salary% - &e是否處於工作狀態: %jobplayer_working% - &e工作: %jobplayer_work% - &e職業: %jobplayer_job% -reload-command: "&a配置文件, 職業文件和語言文件重載成功。" -player-not-found: "&c該玩家不在線,請輸入壹個在線的玩家。" -unknow-error: "&c發生未知錯誤,請查看控制臺以獲得更多信息。" -left-job: "&c妳還沒有失業!我們建議妳選擇壹個新的工作,否則妳將入不敷出。" -already-updated: "&c此插件已是最新版本了,如果妳想了解更多信息,請查看我們的WIKI。" -update-started: "&a插件PicoJobs的更新已開始,請稍後..." -updated-sucefully: "&a此插件已成功更新,請重啟服務端以完成更新。" -sucefully: "&a該行為已成功進行。" -invalid-arg: "&a輸入的參數無效,請仔細檢查。" -################################################################################# -## -#Format messages # -## -################################################################################# -#In this category you can change the formats of placeholders and other things -#All these messages work with Player Placeholders ;) (PlaceholderAPI Required) -#Change how the works should be displayed. (DEFAULT, to a specific job go into settings/jobs.yml) -break-work: "破壞 %a% 個方塊" -kill-work: "殺死 %a% 名玩家" -fishing-work: "釣上 %a% 條魚" -place-work: "放置 %a% 個方塊" -craft-work: "合成 %a% 個物品" -tame-work: "tame %a% animals" -shear-work: "shear %a% sheeps" -fill-work: "fill %a% buckets" -smelt-work: "燒制 %a% 個物品" -eat-work: "吃掉 %a% 個物品" -enchanting-work: "附魔 %a% 個物品" -repair-work: "修理 %a% 個物品" -milk-work: "從奶牛身上擠出 %a% 桶牛奶" -kill_entity-work: "殺死 %a% 只實體" -#When something is not find what should it appear -none-format: "無" -################################################################################# -## -#Command translations # -## -################################################################################# -#In this category you can add aliases for all the commands of the plugin -aliases: - jobs: - - "jobs" - - "職業" - jobsadmin: - - "jobsadmin" - - "jobadmin" - choose: "選擇" - work: "工作" - salary: "薪水" - withdraw: "撤回" - leave: "離開" - help: "幫助" - info: "信息" - reload: "重載" - update: "更新" - about: "關於" - set: "設置" - method: "機制" - job: "職業" - editor: "editor" - applyedits: "applyedits" -################################################################################# -## -#Time translations # -## -################################################################################# -#In this category you can change all the time translations -seconds: "秒" -second: "秒" -minutes: "分鐘" -minute: "分鐘" -hours: "小時" -hour: "小時" -days: "天" -day: "天" -months: "月" -month: "月" -years: "年" -year: "年" diff --git a/bin/main/plugin.yml b/bin/main/plugin.yml deleted file mode 100644 index 7ac015f4..00000000 --- a/bin/main/plugin.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: '@name@' -author: [Picono435] -version: "@version@" -softdepend: [Citizens, Vault, PlaceholderAPI, PlayerPoints, TokenManager] -api-version: 1.13 -main: com.gmail.picono435.picojobs.PicoJobsPlugin -libraries: - - org.mongodb:mongodb-driver-sync:4.2.3 - - com.zaxxer:HikariCP:4.0.3 - - com.h2database:h2:1.4.200 - - org.xerial:sqlite-jdbc:3.34.0 - - org.mariadb.jdbc:mariadb-java-client:2.7.3 - - mysql:mysql-connector-java:8.0.25 - - com.fasterxml.jackson.core:jackson-databind:2.12.3 - - com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.12.3 - - org.slf4j:slf4j-simple:1.7.30 - - org.slf4j:slf4j-api:1.7.30 -description: "@description@" -commands: - jobs: - aliases: [picojobs, piconojobs, job, empregos, emprego, picoempregos, piconoempregos] - jobsadmin: - aliases: [picojobsadmin, piconojobsadmin, jobadmin, empregosadmin, empregoadmin, picoempregosadmin, piconoempregosadmin] -permissions: - picojobs.use.basic: - description: "Allow you to use the basics of the /jobs command" - default: true - picojobs.admin: - description: "Allow you to use the basics of the /jobs command" - default: op \ No newline at end of file diff --git a/bin/main/settings/guis.yml b/bin/main/settings/guis.yml deleted file mode 100644 index 66ab220f..00000000 --- a/bin/main/settings/guis.yml +++ /dev/null @@ -1,170 +0,0 @@ -################################################################################# -# # -# GUI configurations # -# # -################################################################################# -# In this category you can change ALL the GUIs of the plugin -# Remember that some configurations may be in the specific job configuration -# For more information check our wiki (https://github.com/Picono435/PicoJobs/wiki) -# PS: Only the first two GUIs have comments -gui-settings: - ####################### - # Choose Job Menu GUI # - ####################### - choose-job: - # The title of the GUI - title: "Choose a Job" - # The size of the GUI - size: 54 - # If it has a item in the place where there is no jobs ;) - put-background-item: false - # Background item name - item-name: "&cChoose Your Job, PicoJobs" - # The background item namespace... - item: "WHITE_STAINED_GLASS" - # The item data of the background item, ONLY LEGACY VERSIONS - item-data: 1 - # If the background item should be enchanted or not - enchanted: false - - ####################################################### - # With Jobs Menu GUI that did not accept the work yet # - ####################################################### - need-work: - # The title of the GUI - title: "Job Menu - Accept Work" - # The size of the GUI - size: 27 - # If it has a item in the place where there is no jobs ;) - put-background-item: false - # Background item name - item-name: "&cAccept your work, PicoJobs" - # The item namespace... - item: "WHITE_STAINED_GLASS" - # The item data of the background item, ONLY LEGACY VERSIONS - item-data: 1 - # If the item should be enchanted or not - enchanted: false - items: - salary: - # The name of the item - name: "&eSalary" - # The slot of the item - slot: 11 - # The lore of the item - lore: - - "" - - "&7Click to get your salary!" - - "&7Your salary is: %jobplayer_salary%" - # The action that will execute when someone clicks on the item - action: salary - # The material name - material: "PAPER" - # The item data of the item, ONLY LEGACY VERSIONS - item-data: 0 - # If the item is enchanted or not - enchanted: false - - plugin-info: - name: "&6PicoJobs" - slot: 14 - lore: - - "" - - "&7Thanks for using my plugin!" - - "&7Check our &8&ndiscord&r&7 to" - - "&7get more information" - - "" - - "&7If you want to buy the premium" - - "&7version go to our &8&nwebsite" - action: none - material: "BOOKSHELF" - item-data: 0 - enchanted: true - - accept-work: - name: "&aAccept the work" - slot: 17 - lore: - - "" - - "&7Click here to accept your work" - - "&7What you need to do: %jobplayer_work%" - action: acceptwork - material: "REDSTONE_TORCH" - item-data: 0 - enchanted: false - - leave-job: - name: "&aLeave your job" - slot: 27 - lore: - - "" - - "&7Click here to leave your job" - - "&7You will lose half of your salary" - action: leavejob - material: "BARRIER" - item-data: 0 - enchanted: true - - ############################################## - # With Jobs Menu GUI that already has a work # - ############################################## - has-work: - title: "Job Menu - Work Status" - size: 27 - put-background-item: false - item-name: "&cChoose Your Job, PicoJobs" - item: "WHITE_STAINED_GLASS" - item-data: 1 - enchanted: false - items: - salary: - name: "&eSalary" - slot: 11 - lore: - - "" - - "&7Click to get your salary!" - - "&7Your salary is: %jobplayer_salary%" - action: salary - material: "PAPER" - item-data: 0 - enchanted: false - - plugin-info: - name: "&6PicoJobs" - slot: 14 - lore: - - "" - - "&7Thanks for using my plugin!" - - "&7Check our &8&ndiscord&r&7 to" - - "&7get more information" - - "" - - "&7If you want to buy the premium" - - "&7version go to our &8&nwebsite" - action: none - material: "BOOKSHELF" - item-data: 0 - enchanted: true - - status-work: - name: "&aStatus of the work" - slot: 17 - lore: - - "" - - "&7Check down here the status of your work!" - - "&7What you need to do: %jobplayer_work%" - action: none - material: "REDSTONE_TORCH" - item-data: 0 - enchanted: true - - leave-job: - name: "&aLeave your job" - slot: 27 - lore: - - "" - - "&7Click here to leave your job" - - "&7You will lose half of your salary" - action: leavejob - material: "BARRIER" - item-data: 0 - enchanted: true \ No newline at end of file diff --git a/bin/main/settings/jobs.yml b/bin/main/settings/jobs.yml deleted file mode 100644 index 447bab02..00000000 --- a/bin/main/settings/jobs.yml +++ /dev/null @@ -1,415 +0,0 @@ -################################################################################# -# # -# Jobs configurations # -# # -################################################################################# -# In this category you can create, edit and change jobs for the plugin -# If you want to know a full list of job types please go https://github.com/Picono435/PicoJobs/wiki/Types-of-jobs -jobs: - # This is a example of a hunter job - hunter: - # The display name of the job - displayname: "&eHunter" - # The tag of the job - tag: "&e[H]" - # The type of the job - type: "kill_entity" - # Put here the default kills, (this change depends on the frequency) - method: 10 - # If the player requires a permission to get the job. List of permission nodes in https://github.com/Picono435/PicoJobs/wiki/Permissions - require-permission: false - # The salary of the job (it will be multiplied by the level and frequency) - salary: 1053 - # The maximum salary that you can earn - max-salary: 50000 - # The salary frequency of the job - salary-frequency: 0.3 - # The method frequency of the job - method-frequency: 0.4 - # The payment method that should be used. For more information check here https://github.com/Picono435/PicoJobs/wiki/Economy-Types - economy: VAULT - # Use whitelist or blacklist - OPTIONAL [requires="whitelist"] - use-whitelist: true - # The block whitelist/blacklist, depending on what is in use-whitelist - OPTIONAL - whitelist: ["COW", "PIG", "CHICKEN", "SHEEP"] - # The work message that you want to use - OPTIONAL [default can be found in the language file] - work-message: "kill %a% animals" - # Choose Job Menu settings - gui: - # The slot where the item will go - slot: 11 - # The item that you want to represent the job - item: "GOLDEN_SWORD" - # The item data LEGACY ONLY - item-data: 0 - # If you want to the item be enchanted or not - enchanted: false - - # This is a example of a enchanter job - enchanter: - # The display name of the job - displayname: "&cEnchanter" - # The tag of the job - tag: "&c[E]" - # The type of the job - type: "enchanting" - # Put here the default kills, (this change depends on the frequency) - method: 10 - # If the player requires a permission to get the job. List of permission nodes in https://github.com/Picono435/PicoJobs/wiki/Permissions - require-permission: false - # The salary of the job (it will be multiplied by the level and frequency) - salary: 1200 - # The maximum salary that you can earn - max-salary: 50000 - # The salary frequency of the job - salary-frequency: 0.3 - # The method frequency of the job - method-frequency: 0.4 - # The payment method that should be used. For more information check here https://github.com/Picono435/PicoJobs/wiki/Economy-Types - economy: VAULT - # Use whitelist or blacklist - OPTIONAL [requires="whitelist"] - # use-whitelist: true - # The block whitelist/blacklist, depending on what is in use-whitelist - OPTIONAL - # whitelist: ["diamond_sword"] - # The work message that you want to use - OPTIONAL [default can be found in the language file] - # work-message: "enchant %a% items" - # Choose Job Menu settings - gui: - # The slot where the item will go - slot: 13 - # The item that you want to represent the job - item: "ENCHANTING_TABLE" - # The item data LEGACY ONLY - item-data: 0 - # If you want to the item be enchanted or not - enchanted: false - - # This is a example of a woodcutter job - woodcutter: - # The display name of the job - displayname: "&6Woodcutter" - # The tag of the job - tag: "&6[W]" - # The type of the job - type: "break" - # Put here the default kills, (this change depends on the frequency) - method: 15 - # If the player requires a permission to get the job. List of permission nodes in https://github.com/Picono435/PicoJobs/wiki/Permissions - require-permission: false - # The salary of the job (it will be multiplied by the level and frequency) - salary: 800 - # The maximum salary that you can earn - max-salary: 50000 - # The salary frequency of the job - salary-frequency: 0.3 - # The method frequency of the job - method-frequency: 0.4 - # The payment method that should be used. For more information check here https://github.com/Picono435/PicoJobs/wiki/Economy-Types - economy: VAULT - # Use whitelist or blacklist - OPTIONAL [requires="whitelist"] - use-whitelist: true - # The block whitelist/blacklist, depending on what is in use-whitelist - OPTIONAL - whitelist: ["OAK_WOOD", "OAK_LOG", "BIRCH_WOOD", "BIRCH_LOG", "JUNGLE_WOOD", "JUNGLE_LOG", "ACACIA_WOOD", "ACACIA_LOG", "DARK_OAK_WOOD", "DARK_OAK_LOG"] - # The work message that you want to use - OPTIONAL [default can be found in the language file] - work-message: "cut %a% woods" - # Choose Job Menu settings - gui: - # The slot where the item will go - slot: 15 - # The item that you want to represent the job - item: "DIAMOND_AXE" - # The item data LEGACY ONLY - item-data: 0 - # If you want to the item be enchanted or not - enchanted: false - - # This is a example of a miner job - miner: - # The display name of the job - displayname: "&7Miner" - # The tag of the job - tag: "&7[M]" - # The type of the job - type: "break" - # Put here the default kills, (this change depends on the frequency) - method: 10 - # If the player requires a permission to get the job. List of permission nodes in https://github.com/Picono435/PicoJobs/wiki/Permissions - require-permission: false - # The salary of the job (it will be multiplied by the level and frequency) - salary: 1500 - # The maximum salary that you can earn - max-salary: 50000 - # The salary frequency of the job - salary-frequency: 0.3 - # The method frequency of the job - method-frequency: 0.4 - # The payment method that should be used. For more information check here https://github.com/Picono435/PicoJobs/wiki/Economy-Types - economy: VAULT - # Use whitelist or blacklist - OPTIONAL [requires="whitelist"] - use-whitelist: true - # The block whitelist/blacklist, depending on what is in use-whitelist - OPTIONAL - whitelist: - - gold_ore - - iron_ore - - coal_ore - - lapis_ore - - diamond_ore - - redstone_ore - - emerald_ore - - nether_quartz_ore - - nether_gold_ore - - copper_ore - - deepslate_gold_ore - - deepslate_iron_ore - - deepslate_coal_ore - - deepslate_lapis_ore - - deepslate_diamond_ore - - deepslate_redstone_ore - - deepslate_emerald_ore - - deepslate_copper_ore - # The work message that you want to use - OPTIONAL [default can be found in the language file] - work-message: "mine %a% ores" - # Choose Job Menu settings - gui: - # The slot where the item will go - slot: 17 - # The item that you want to represent the job - item: "DIAMOND_PICKAXE" - # The item data LEGACY ONLY - item-data: 0 - # If you want to the item be enchanted or not - enchanted: false - - # This is a example of a builder job - builder: - # The display name of the job - displayname: "&dBuilder" - # The tag of the job - tag: "&d[B]" - # The type of the job - type: "place" - # Put here the default kills, (this change depends on the frequency) - method: 35 - # If the player requires a permission to get the job. List of permission nodes in https://github.com/Picono435/PicoJobs/wiki/Permissions - require-permission: false - # The salary of the job (it will be multiplied by the level and frequency) - salary: 70 - # The maximum salary that you can earn - max-salary: 50000 - # The salary frequency of the job - salary-frequency: 0.3 - # The method frequency of the job - method-frequency: 0.4 - # The payment method that should be used. For more information check here https://github.com/Picono435/PicoJobs/wiki/Economy-Types - economy: VAULT - # Use whitelist or blacklist - OPTIONAL [requires="whitelist"] - use-whitelist: true - # The block whitelist/blacklist, depending on what is in use-whitelist - OPTIONAL - whitelist: ["bricks"] - # The work message that you want to use - OPTIONAL [default can be found in the language file] - work-message: "place %a% bricks" - # Choose Job Menu settings - gui: - # The slot where the item will go - slot: 29 - # The item that you want to represent the job - item: "BRICKS" - # The item data LEGACY ONLY - item-data: 0 - # If you want to the item be enchanted or not - enchanted: false - - # This is a example of a digger job - digger: - # The display name of the job - displayname: "&3Digger" - # The tag of the job - tag: "&3[D]" - # The type of the job - type: "break" - # Put here the default kills, (this change depends on the frequency) - method: 25 - # If the player requires a permission to get the job. List of permission nodes in https://github.com/Picono435/PicoJobs/wiki/Permissions - require-permission: false - # The salary of the job (it will be multiplied by the level and frequency) - salary: 120 - # The maximum salary that you can earn - max-salary: 50000 - # The salary frequency of the job - salary-frequency: 0.3 - # The method frequency of the job - method-frequency: 0.4 - # The payment method that should be used. For more information check here https://github.com/Picono435/PicoJobs/wiki/Economy-Types - economy: VAULT - # Use whitelist or blacklist - OPTIONAL [requires="whitelist"] - use-whitelist: true - # The block whitelist/blacklist, depending on what is in use-whitelist - OPTIONAL - whitelist: ["dirt", "grass", "grass-block"] - # The work message that you want to use - OPTIONAL [default can be found in the language file] - work-message: "dig %a% dirts" - # Choose Job Menu settings - gui: - # The slot where the item will go - slot: 31 - # The item that you want to represent the job - item: "IRON_SHOVEL" - # The item data LEGACY ONLY - item-data: 0 - # If you want to the item be enchanted or not - enchanted: false - - # This is a example of a craftsman job - craftsman: - # The display name of the job - displayname: "&aCraftsman" - # The tag of the job - tag: "&a[C]" - # The type of the job - type: "craft" - # Put here the default kills, (this change depends on the frequency) - method: 10 - # If the player requires a permission to get the job. List of permission nodes in https://github.com/Picono435/PicoJobs/wiki/Permissions - require-permission: false - # The salary of the job (it will be multiplied by the level and frequency) - salary: 69 - # The maximum salary that you can earn - max-salary: 50000 - # The salary frequency of the job - salary-frequency: 0.5 - # The method frequency of the job - method-frequency: 0.8 - # The payment method that should be used. For more information check here https://github.com/Picono435/PicoJobs/wiki/Economy-Types - economy: VAULT - # Use whitelist or blacklist - OPTIONAL [requires="whitelist"] - # use-whitelist: true - # The block whitelist/blacklist, depending on what is in use-whitelist - OPTIONAL - # whitelist: ["diamond_sword"] - # The work message that you want to use - OPTIONAL [default can be found in the language file] - # work-message: "craft %a% items" - # Choose Job Menu settings - gui: - # The slot where the item will go - slot: 33 - # The item that you want to represent the job - item: "CRAFTING_TABLE" - # The item data LEGACY ONLY - item-data: 0 - # If you want to the item be enchanted or not - enchanted: false - - # This is a example of a fisherman job - fisherman: - # The display name of the job - displayname: "&bFisherman" - # The tag of the job - tag: "&b[F]" - # The type of the job - type: "fishing" - # Put here the default kills, (this change depends on the frequency) - method: 25 - # If the player requires a permission to get the job. List of permission nodes in https://github.com/Picono435/PicoJobs/wiki/Permissions - require-permission: false - # The salary of the job (it will be multiplied by the level and frequency) - salary: 240 - # The maximum salary that you can earn - max-salary: 50000 - # The salary frequency of the job - salary-frequency: 0.2 - # The method frequency of the job - method-frequency: 0.4 - # The payment method that should be used. For more information check here https://github.com/Picono435/PicoJobs/wiki/Economy-Types - economy: VAULT - # Use whitelist or blacklist - OPTIONAL [requires="whitelist"] - use-whitelist: false - # The block whitelist/blacklist, depending on what is in use-whitelist - OPTIONAL - whitelist: ["NAME_TAG"] - # The work message that you want to use - OPTIONAL [default can be found in the language file] - # work-message: "fish %a% fishes" - # Choose Job Menu settings - gui: - # The slot where the item will go - slot: 35 - # The item that you want to represent the job - item: "FISHING_ROD" - # The item data LEGACY ONLY - item-data: 0 - # If you want to the item be enchanted or not - enchanted: false - - # This is a example of a weaponsmith job - weaponsmith: - # The display name of the job - displayname: "&8Weaponsmith" - # The tag of the job - tag: "&8[W]" - # The type of the job - type: "repair" - # Put here the default kills, (this change depends on the frequency) - method: 8 - # If the player requires a permission to get the job. List of permission nodes in https://github.com/Picono435/PicoJobs/wiki/Permissions - require-permission: false - # The salary of the job (it will be multiplied by the level and frequency) - salary: 280 - # The maximum salary that you can earn - max-salary: 50000 - # The salary frequency of the job - salary-frequency: 0.6 - # The method frequency of the job - method-frequency: 0.6 - # The payment method that should be used. For more information check here https://github.com/Picono435/PicoJobs/wiki/Economy-Types - economy: VAULT - # Use whitelist or blacklist - OPTIONAL [requires="whitelist"] - # use-whitelist: true - # The block whitelist/blacklist, depending on what is in use-whitelist - OPTIONAL - # whitelist: ["diamond_sword"] - # The work message that you want to use - OPTIONAL [default can be found in the language file] - # work-message: "repair %a% items" - # Choose Job Menu settings - gui: - # The slot where the item will go - slot: 49 - # The item that you want to represent the job - item: "DIAMOND_SWORD" - # The item data LEGACY ONLY - item-data: 0 - # If you want to the item be enchanted or not - enchanted: false - - # This is a example of a killer job - killer: - # The display name of the job - displayname: "&9Killer" - # The tag of the job - tag: "&9[K]" - # The type of the job - type: "kill" - # Put here the default kills, (this change depends on the frequency) - method: 20 - # If the player requires a permission to get the job. List of permission nodes in https://github.com/Picono435/PicoJobs/wiki/Permissions - require-permission: false - # The salary of the job (it will be multiplied by the level and frequency) - salary: 360 - # The maximum salary that you can earn - max-salary: 50000 - # The salary frequency of the job - salary-frequency: 0.5 - # The method frequency of the job - method-frequency: 0.8 - # The payment method that should be used. For more information check here https://github.com/Picono435/PicoJobs/wiki/Economy-Types - economy: VAULT - # Use whitelist or blacklist - OPTIONAL [requires="whitelist"] - use-whitelist: false - # The block whitelist/blacklist, depending on what is in use-whitelist - OPTIONAL - whitelist: ["weaponsmith"] - # The work message that you want to use - OPTIONAL [default can be found in the language file] - # work-message: "kill %a% people" - # Choose Job Menu settings - gui: - # The slot where the item will go - slot: 51 - # The item that you want to represent the job - item: "IRON_SWORD" - # The item data LEGACY ONLY - item-data: 0 - # If you want to the item be enchanted or not - enchanted: false \ No newline at end of file diff --git a/bin/main/storage/picojobs.conf b/bin/main/storage/picojobs.conf deleted file mode 100644 index e69de29b..00000000 diff --git a/bin/main/storage/picojobs.json b/bin/main/storage/picojobs.json deleted file mode 100644 index 9e26dfee..00000000 --- a/bin/main/storage/picojobs.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/bin/main/storage/picojobs.yml b/bin/main/storage/picojobs.yml deleted file mode 100644 index f91049ad..00000000 --- a/bin/main/storage/picojobs.yml +++ /dev/null @@ -1 +0,0 @@ -jobplayers: {} \ No newline at end of file diff --git a/bin/test/com/gmail/picono435/testing/TestPlugin.class b/bin/test/com/gmail/picono435/testing/TestPlugin.class deleted file mode 100644 index 3d2b42b9..00000000 Binary files a/bin/test/com/gmail/picono435/testing/TestPlugin.class and /dev/null differ diff --git a/build.gradle b/build.gradle index 1d75aa2a..66a0742c 100644 --- a/build.gradle +++ b/build.gradle @@ -1,15 +1,38 @@ +buildscript { + dependencies { + classpath fileTree(dir: './gradle/', + includes: ['versioning.jar']) + } +} + plugins { id 'com.github.johnrengelman.shadow' version '7.0.0' id 'io.github.slimjar' version '1.2.1' id 'java' + id 'net.nemerosa.versioning' version '2.14.0' } group = 'com.gmail.picono435' -version = '1.0-beta-3a' description = 'The best jobs plugin ever! You can customize every single thing on it.' sourceCompatibility = '1.8' targetCompatibility = '1.8' +versioning { + releaseMode = { nextTag, lastTag, currentTag, extension -> + "1.0-beta-3b" + } +} + +if (System.getenv("STABLE_BUILD") != null) { + if (System.getenv("STABLE_BUILD") == '1') { + version versioning.info.build + "-DEV" + } else { + version versioning.info.display + } +} else { + version versioning.info.build + "-DEV" +} + repositories { mavenCentral() @@ -45,7 +68,7 @@ dependencies { slim 'org.mongodb:mongodb-driver-sync:4.2.3' slim 'com.zaxxer:HikariCP:4.0.3' slim 'com.h2database:h2:1.4.200' - slim 'org.xerial:sqlite-jdbc:3.34.0' + slim 'org.xerial:sqlite-jdbc:3.36.0' slim 'org.mariadb.jdbc:mariadb-java-client:2.7.3' slim 'mysql:mysql-connector-java:8.0.25' implementation 'org.spongepowered:configurate-core:4.1.1' @@ -63,11 +86,15 @@ dependencies { slim 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.12.3' implementation 'org.apache.maven:maven-artifact:3.8.1' implementation 'org.bstats:bstats-bukkit:2.2.1' - slim 'org.slf4j:slf4j-simple:1.7.30' - slim 'org.slf4j:slf4j-api:1.7.30' - testImplementation 'com.github.seeseemelk:MockBukkit-v1.16:1.0.0' - testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.2' + slim 'org.slf4j:slf4j-simple:1.7.31' + slim 'org.slf4j:slf4j-api:1.7.31' + testImplementation 'com.github.seeseemelk:MockBukkit-v1.16:1.3.2' testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.7.2' + testCompileOnly 'org.spigotmc:spigot-api:1.17-R0.1-SNAPSHOT' + testCompileOnly('me.clip:placeholderapi:2.10.9') { transitive = false } + testCompileOnly('com.github.MilkBowl:VaultAPI:1.7') { transitive = false } + testCompileOnly('com.github.Mitsugaru:PlayerPoints:master-SNAPSHOT') { transitive = false } + testCompileOnly('com.github.Realizedd:TokenManager:3.2.4') { transitive = false } } test { @@ -81,7 +108,7 @@ shadowJar { processResources { from(sourceSets.main.resources.srcDirs) { - filter org.apache.tools.ant.filters.ReplaceTokens, tokens: [name: rootProject.name, version: getVersion(), description: description] + filter org.apache.tools.ant.filters.ReplaceTokens, tokens: [name: rootProject.name, version: getVersion(), description: project.description] } } diff --git a/gradle.properties b/gradle.properties new file mode 100644 index 00000000..50d72811 --- /dev/null +++ b/gradle.properties @@ -0,0 +1 @@ +slimjar.version = 1.2.3 \ No newline at end of file diff --git a/gradle/versioning.jar b/gradle/versioning.jar new file mode 100644 index 00000000..392109ea Binary files /dev/null and b/gradle/versioning.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 6c9a2247..69a97150 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-6.6-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-7.1-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/src/main/java/com/gmail/picono435/picojobs/PicoJobsPlugin.java b/src/main/java/com/gmail/picono435/picojobs/PicoJobsPlugin.java index 85f421b1..82e99355 100644 --- a/src/main/java/com/gmail/picono435/picojobs/PicoJobsPlugin.java +++ b/src/main/java/com/gmail/picono435/picojobs/PicoJobsPlugin.java @@ -75,20 +75,23 @@ public class PicoJobsPlugin extends JavaPlugin { public PicoJobsPlugin() { super(); + this.isTestEnvironment = true; } protected PicoJobsPlugin(JavaPluginLoader loader, PluginDescriptionFile description, File dataFolder, File file) { super(loader, description, dataFolder, file); + this.isTestEnvironment = true; } //PLUGIN private static PicoJobsPlugin instance; - private boolean legacy; + private String serverVersion; private boolean oldVersion; private String lastestPluginVersion; private String downloadUrl; private Metrics metrics; + private boolean isTestEnvironment; //DATA public Map economies = new HashMap(); //JOBS DATA @@ -137,8 +140,10 @@ public void onEnable() { LanguageManager.updateFile(); } - // STARTING BSTATS - metrics = new Metrics(this, 8553); + if(!isTestEnvironment) { + // STARTING BSTATS + metrics = new Metrics(this, 8553); + } // SETTING UP AND REQUIRED AND OPTIONAL DEPENDENCIES PicoJobsAPI.registerEconomy(new ExpImplementation()); @@ -156,13 +161,15 @@ public void run() { sendConsoleMessage(Level.INFO, "Generating jobs from configuration..."); if(!generateJobsFromConfig()) return; PicoJobsAPI.getStorageManager().initializeStorageFactory(); - metrics.addCustomChart(new SingleLineChart("created_jobs", new Callable() { - @Override - public Integer call() throws Exception { - return jobs.size(); - } - })); - + if(!isTestEnvironment) { + metrics.addCustomChart(new SingleLineChart("created_jobs", new Callable() { + @Override + public Integer call() throws Exception { + return jobs.size(); + } + })); + } + // REGISTERING COMMANDS this.getCommand("jobs").setExecutor(new JobsCommand()); this.getCommand("jobsadmin").setExecutor(new JobsAdminCommand()); @@ -207,8 +214,24 @@ public void sendConsoleMessage(Level level, String message) { this.getLogger().log(level, message); } - public boolean isLegacy() { - return legacy; + public boolean isNewerThan(String version) { + DefaultArtifactVersion legacyVersion = new DefaultArtifactVersion(version); + DefaultArtifactVersion serverVersionArt = new DefaultArtifactVersion(serverVersion); + if(legacyVersion.compareTo(serverVersionArt) >= 0) { + return true; + } else { + return false; + } + } + + public boolean isOlderThan(String version) { + DefaultArtifactVersion legacyVersion = new DefaultArtifactVersion(version); + DefaultArtifactVersion serverVersionArt = new DefaultArtifactVersion(serverVersion); + if(legacyVersion.compareTo(serverVersionArt) <= 0) { + return true; + } else { + return false; + } } public boolean isOldVersion() { @@ -257,32 +280,34 @@ public boolean generateJobsFromConfig() { Job job = new Job(jobid, displayname, tag, type, method, salary, maxSalary, requiresPermission, salaryFrequency, methodFrequency, economy, workMessage, slot, item, itemData, enchanted, useWhitelist, whitelist); jobs.put(jobid, job); - - metrics.addCustomChart(new DrilldownPie("jobs", () -> { - Map> map = new HashMap<>(); - Map entry = new HashMap<>(); - entry.put(jobid, 1); - map.put(type.name(), entry); - return map; - })); + + if(!isTestEnvironment) { + metrics.addCustomChart(new DrilldownPie("jobs", () -> { + Map> map = new HashMap<>(); + Map entry = new HashMap<>(); + entry.put(jobid, 1); + map.put(type.name(), entry); + return map; + })); - metrics.addCustomChart(new DrilldownPie("active_economy", () -> { - Map> map = new HashMap<>(); - Map entry = new HashMap<>(); - String eco = job.getEconomy(); - if(eco.equalsIgnoreCase("VAULT")) { - if(VaultHook.isEnabled() && VaultHook.hasEconomyPlugin()) { - entry.put(VaultHook.getEconomy().getName(), 1); + metrics.addCustomChart(new DrilldownPie("active_economy", () -> { + Map> map = new HashMap<>(); + Map entry = new HashMap<>(); + String eco = job.getEconomy(); + if(eco.equalsIgnoreCase("VAULT")) { + if(VaultHook.isEnabled() && VaultHook.hasEconomyPlugin()) { + entry.put(VaultHook.getEconomy().getName(), 1); + } else { + entry.put("Others", 1); + } + map.put("VAULT", entry); } else { - entry.put("Others", 1); + entry.put(eco, 1); + map.put(eco, entry); } - map.put("VAULT", entry); - } else { - entry.put(eco, 1); - map.put(eco, entry); - } - return map; - })); + return map; + })); + } } return true; } @@ -295,11 +320,13 @@ private boolean checkLegacy() { DefaultArtifactVersion legacyVersion = new DefaultArtifactVersion("1.12.2"); DefaultArtifactVersion serverVersion = new DefaultArtifactVersion(serverVersionString); if(serverVersion.compareTo(legacyVersion) <= 0) { - legacy = true; + this.serverVersion = serverVersionString; + return true; } - return legacy; + this.serverVersion = serverVersionString; + return false; } catch (Exception e) { - return legacy; + return false; } } diff --git a/src/main/java/com/gmail/picono435/picojobs/api/Job.java b/src/main/java/com/gmail/picono435/picojobs/api/Job.java index 25aa0eac..9a2eb5cc 100644 --- a/src/main/java/com/gmail/picono435/picojobs/api/Job.java +++ b/src/main/java/com/gmail/picono435/picojobs/api/Job.java @@ -66,7 +66,7 @@ public Job(String id, String displayname, String tag, Type type, double method, this.workMessage = workMessage; this.slot = slot; - Material m = Material.matchMaterial(item); + Material m = OtherUtils.matchMaterial(item); this.item = m; this.itemData = itemData; this.enchanted = enchanted; @@ -77,7 +77,7 @@ public Job(String id, String displayname, String tag, Type type, double method, if(whitelistType.equals("material")) { List list = new ArrayList(); for(String s : whitelist) { - Material matNew = Material.matchMaterial(s); + Material matNew = OtherUtils.matchMaterial(s); if(matNew == null) continue; list.add(matNew); } @@ -321,7 +321,7 @@ public boolean isWhitelist() { @SuppressWarnings("deprecation") public ItemStack getFormattedItem() { ItemBuilder builder; - if(PicoJobsPlugin.getInstance().isLegacy()) { + if(PicoJobsPlugin.getInstance().isOlderThan("1.12.2")) { int itemData = getItemData() - 1; if(itemData == -1) { builder = new ItemBuilder(getMaterial()); diff --git a/src/main/java/com/gmail/picono435/picojobs/hooks/PlaceholderAPIHook.java b/src/main/java/com/gmail/picono435/picojobs/hooks/PlaceholderAPIHook.java index 30993759..4afc934c 100644 --- a/src/main/java/com/gmail/picono435/picojobs/hooks/PlaceholderAPIHook.java +++ b/src/main/java/com/gmail/picono435/picojobs/hooks/PlaceholderAPIHook.java @@ -99,6 +99,7 @@ public static String translatePlaceholders(Player p, String identifier) { } double level = jp.getMethodLevel(); int reqmethod = (int) (job.getMethod() * level * job.getMethodFrequency()); + if(reqmethod == 0) reqmethod = 1; double value = reqmethod - jp.getMethod(); String workMessage = job.getWorkMessage(); workMessage = workMessage.replace("%a%", df.format(value)); diff --git a/src/main/java/com/gmail/picono435/picojobs/listeners/jobs/FillListener.java b/src/main/java/com/gmail/picono435/picojobs/listeners/jobs/FillListener.java index 33cbb631..9b4c02e3 100644 --- a/src/main/java/com/gmail/picono435/picojobs/listeners/jobs/FillListener.java +++ b/src/main/java/com/gmail/picono435/picojobs/listeners/jobs/FillListener.java @@ -8,6 +8,7 @@ import org.bukkit.event.Listener; import org.bukkit.event.player.PlayerBucketFillEvent; +import com.gmail.picono435.picojobs.PicoJobsPlugin; import com.gmail.picono435.picojobs.api.Job; import com.gmail.picono435.picojobs.api.JobPlayer; import com.gmail.picono435.picojobs.api.PicoJobsAPI; @@ -20,7 +21,11 @@ public class FillListener implements Listener { public void onFillBucket(PlayerBucketFillEvent e) { if(e.getPlayer() == null) return; Block b = e.getBlockClicked(); - if(b == null || (!b.isLiquid() && b.getType() != Material.POWDER_SNOW)) return; + if(!PicoJobsPlugin.getInstance().isNewerThan("1.17")) { + if(b == null || (!b.isLiquid())) return; + } else { + if(b == null || (!b.isLiquid() && b.getType() == Material.POWDER_SNOW)) return; + } Player p = e.getPlayer(); JobPlayer jp = PicoJobsAPI.getPlayersManager().getJobPlayer(p); if(!jp.hasJob()) return; diff --git a/src/main/java/com/gmail/picono435/picojobs/listeners/jobs/SmeltListener.java b/src/main/java/com/gmail/picono435/picojobs/listeners/jobs/SmeltListener.java index 7ee3d244..f56ce490 100644 --- a/src/main/java/com/gmail/picono435/picojobs/listeners/jobs/SmeltListener.java +++ b/src/main/java/com/gmail/picono435/picojobs/listeners/jobs/SmeltListener.java @@ -21,7 +21,7 @@ public class SmeltListener implements Listener { @EventHandler(priority = EventPriority.MONITOR, ignoreCancelled = true) public void onCraftItem(InventoryClickEvent e) { if(e.getCurrentItem() == null || e.getCurrentItem().getType() == Material.AIR) return; - if(!PicoJobsPlugin.getInstance().isLegacy()) { + if(!PicoJobsPlugin.getInstance().isNewerThan("1.14")) { if(e.getInventory().getType() != InventoryType.FURNACE && e.getInventory().getType() != InventoryType.valueOf("BLAST_FURNACE") && e.getInventory().getType() != InventoryType.valueOf("SMOKER")) return; } else { if(e.getInventory().getType() != InventoryType.FURNACE) return; diff --git a/src/main/java/com/gmail/picono435/picojobs/menu/JobsMenu.java b/src/main/java/com/gmail/picono435/picojobs/menu/JobsMenu.java index 6efbc974..d426f324 100644 --- a/src/main/java/com/gmail/picono435/picojobs/menu/JobsMenu.java +++ b/src/main/java/com/gmail/picono435/picojobs/menu/JobsMenu.java @@ -20,6 +20,7 @@ import com.gmail.picono435.picojobs.listeners.ClickInventoryListener; import com.gmail.picono435.picojobs.utils.FileCreator; import com.gmail.picono435.picojobs.utils.ItemBuilder; +import com.gmail.picono435.picojobs.utils.OtherUtils; public class JobsMenu { @@ -48,15 +49,15 @@ public static Inventory getChooseJobMenu(ConfigurationSection guiSettings) { if(category.getBoolean("put-background-item")) { ItemBuilder builder; - if(PicoJobsPlugin.getInstance().isLegacy()) { + if(PicoJobsPlugin.getInstance().isOlderThan("1.12.2")) { int itemData = category.getInt("item-data"); if(itemData == -1) { - builder = new ItemBuilder(Material.matchMaterial(category.getString("item"))); + builder = new ItemBuilder(OtherUtils.matchMaterial(category.getString("item"))); } else { - builder = new ItemBuilder(Material.matchMaterial(category.getString("item")), 1, (byte)itemData); + builder = new ItemBuilder(OtherUtils.matchMaterial(category.getString("item")), 1, (byte)itemData); } } else { - builder = new ItemBuilder(Material.matchMaterial(category.getString("item"))); + builder = new ItemBuilder(OtherUtils.matchMaterial(category.getString("item"))); } if(category.getBoolean("enchanted")) builder.addUnsafeEnchantment(Enchantment.ARROW_DAMAGE, 1); builder.setName(ChatColor.translateAlternateColorCodes('&', category.getString("item-name"))); @@ -80,15 +81,15 @@ public static Inventory getNeedAcceptJobMenu(ConfigurationSection guiSettings, P for(String itemName : items.getKeys(false)) { ConfigurationSection itemConfig = items.getConfigurationSection(itemName); ItemBuilder builder; - if(PicoJobsPlugin.getInstance().isLegacy()) { + if(PicoJobsPlugin.getInstance().isOlderThan("1.12.2")) { int itemData = itemConfig.getInt("item-data"); if(itemData == -1) { - builder = new ItemBuilder(Material.matchMaterial(itemConfig.getString("material"))); + builder = new ItemBuilder(OtherUtils.matchMaterial(itemConfig.getString("material"))); } else { - builder = new ItemBuilder(Material.matchMaterial(itemConfig.getString("material")), 1, (byte)itemData); + builder = new ItemBuilder(OtherUtils.matchMaterial(itemConfig.getString("material")), 1, (byte)itemData); } } else { - builder = new ItemBuilder(Material.matchMaterial(itemConfig.getString("material"))); + builder = new ItemBuilder(OtherUtils.matchMaterial(itemConfig.getString("material"))); } builder.setName(ChatColor.translateAlternateColorCodes('&', itemConfig.getString("name"))); if(toEdit) { @@ -113,15 +114,15 @@ public static Inventory getNeedAcceptJobMenu(ConfigurationSection guiSettings, P if(category.getBoolean("put-background-item")) { ItemBuilder builder; - if(PicoJobsPlugin.getInstance().isLegacy()) { + if(PicoJobsPlugin.getInstance().isOlderThan("1.12.2")) { int itemData = category.getInt("item-data"); if(itemData == -1) { - builder = new ItemBuilder(Material.matchMaterial(category.getString("item"))); + builder = new ItemBuilder(OtherUtils.matchMaterial(category.getString("item"))); } else { - builder = new ItemBuilder(Material.matchMaterial(category.getString("item")), 1, (byte)itemData); + builder = new ItemBuilder(OtherUtils.matchMaterial(category.getString("item")), 1, (byte)itemData); } } else { - builder = new ItemBuilder(Material.matchMaterial(category.getString("item"))); + builder = new ItemBuilder(OtherUtils.matchMaterial(category.getString("item"))); } if(category.getBoolean("enchanted")) builder.addUnsafeEnchantment(Enchantment.ARROW_DAMAGE, 1); builder.setName(ChatColor.translateAlternateColorCodes('&', category.getString("item-name"))); @@ -145,15 +146,15 @@ public static Inventory getWorkStatusJobMenu(ConfigurationSection guiSettings, P for(String itemName : items.getKeys(false)) { ConfigurationSection itemConfig = items.getConfigurationSection(itemName); ItemBuilder builder; - if(PicoJobsPlugin.getInstance().isLegacy()) { + if(PicoJobsPlugin.getInstance().isOlderThan("1.12.2")) { int itemData = itemConfig.getInt("item-data"); if(itemData == -1) { - builder = new ItemBuilder(Material.matchMaterial(itemConfig.getString("material"))); + builder = new ItemBuilder(OtherUtils.matchMaterial(itemConfig.getString("material"))); } else { - builder = new ItemBuilder(Material.matchMaterial(itemConfig.getString("material")), 1, (byte)itemData); + builder = new ItemBuilder(OtherUtils.matchMaterial(itemConfig.getString("material")), 1, (byte)itemData); } } else { - builder = new ItemBuilder(Material.matchMaterial(itemConfig.getString("material"))); + builder = new ItemBuilder(OtherUtils.matchMaterial(itemConfig.getString("material"))); } builder.setName(ChatColor.translateAlternateColorCodes('&', itemConfig.getString("name"))); if(toEdit) { @@ -178,15 +179,15 @@ public static Inventory getWorkStatusJobMenu(ConfigurationSection guiSettings, P if(category.getBoolean("put-background-item")) { ItemBuilder builder; - if(PicoJobsPlugin.getInstance().isLegacy()) { + if(PicoJobsPlugin.getInstance().isOlderThan("1.12.2")) { int itemData = category.getInt("item-data"); if(itemData == -1) { - builder = new ItemBuilder(Material.matchMaterial(category.getString("item"))); + builder = new ItemBuilder(OtherUtils.matchMaterial(category.getString("item"))); } else { - builder = new ItemBuilder(Material.matchMaterial(category.getString("item")), 1, (byte)itemData); + builder = new ItemBuilder(OtherUtils.matchMaterial(category.getString("item")), 1, (byte)itemData); } } else { - builder = new ItemBuilder(Material.matchMaterial(category.getString("item"))); + builder = new ItemBuilder(OtherUtils.matchMaterial(category.getString("item"))); } if(category.getBoolean("enchanted")) builder.addUnsafeEnchantment(Enchantment.ARROW_DAMAGE, 1); builder.setName(ChatColor.translateAlternateColorCodes('&', category.getString("item-name"))); diff --git a/src/main/java/com/gmail/picono435/picojobs/utils/OtherUtils.java b/src/main/java/com/gmail/picono435/picojobs/utils/OtherUtils.java index 557d4ae3..483b9325 100644 --- a/src/main/java/com/gmail/picono435/picojobs/utils/OtherUtils.java +++ b/src/main/java/com/gmail/picono435/picojobs/utils/OtherUtils.java @@ -1,5 +1,9 @@ package com.gmail.picono435.picojobs.utils; +import org.apache.commons.lang.Validate; +import org.bukkit.Bukkit; +import org.bukkit.Material; +import org.bukkit.NamespacedKey; import org.bukkit.entity.EntityType; public class OtherUtils { @@ -16,4 +20,39 @@ public static EntityType getEntityByName(String name) { } return null; } + + /** + * Attempts to match the Material with the given name. + *

+ * This is a match lookup; names will be stripped of the "minecraft:" + * namespace, converted to uppercase, then stripped of special characters in + * an attempt to format it like the enum. + * + * @param name Name of the material to get + * @param legacyName whether this is a legacy name (see + * {@link #getMaterial(java.lang.String, boolean)} + * @return Material if found, or null + */ + public static Material matchMaterial(final String name) { + Validate.notNull(name, "Name cannot be null"); + + String filtered = name; + if (filtered.startsWith(NamespacedKey.MINECRAFT + ":")) { + filtered = filtered.substring((NamespacedKey.MINECRAFT + ":").length()); + } + + filtered = filtered.toUpperCase(java.util.Locale.ENGLISH); + + filtered = filtered.replaceAll("\\s+", "_").replaceAll("\\W", ""); + + if(Bukkit.getServer().getName().equalsIgnoreCase("Mohist")) { + try { + return Material.valueOf(filtered); + } catch(Exception ex) { + return null; + } + } + + return Material.getMaterial(filtered); + } } diff --git a/src/main/java/com/gmail/picono435/picojobs/utils/TimeFormatter.java b/src/main/java/com/gmail/picono435/picojobs/utils/TimeFormatter.java index db72dc1c..96468177 100644 --- a/src/main/java/com/gmail/picono435/picojobs/utils/TimeFormatter.java +++ b/src/main/java/com/gmail/picono435/picojobs/utils/TimeFormatter.java @@ -22,13 +22,13 @@ public static String formatTimeInRealLife(long time) { sb.append(days + (days == 1 ? " " + LanguageManager.getTimeFormat("day") : " " + LanguageManager.getTimeFormat("days"))); if (hours > 0) - sb.append(days > 0 ? (minutes > 0 ? ", " : " and ") : "").append(hours + (hours == 1 ? " " + LanguageManager.getTimeFormat("hour") : " " + LanguageManager.getTimeFormat("hours"))); + sb.append(days > 0 ? (minutes > 0 ? ", " : " " + LanguageManager.getTimeFormat("and") + " ") : "").append(hours + (hours == 1 ? " " + LanguageManager.getTimeFormat("hour") : " " + LanguageManager.getTimeFormat("hours"))); if (minutes > 0) - sb.append(days > 0 || hours > 0 ? (seconds > 0 ? ", " : " and ") : "").append(minutes + (minutes == 1 ? " " + LanguageManager.getTimeFormat("minute") : " " + LanguageManager.getTimeFormat("minutes"))); + sb.append(days > 0 || hours > 0 ? (seconds > 0 ? ", " : " " + LanguageManager.getTimeFormat("and") + " ") : "").append(minutes + (minutes == 1 ? " " + LanguageManager.getTimeFormat("minute") : " " + LanguageManager.getTimeFormat("minutes"))); if (seconds > 0) - sb.append(days > 0 || hours > 0 || minutes > 0 ? " and " : (sb.length() > 0 ? ", " : "")).append(seconds + (seconds == 1 ? " " + LanguageManager.getTimeFormat("second") : " " + LanguageManager.getTimeFormat("seconds"))); + sb.append(days > 0 || hours > 0 || minutes > 0 ? " " + LanguageManager.getTimeFormat("and") + " " : (sb.length() > 0 ? ", " : "")).append(seconds + (seconds == 1 ? " " + LanguageManager.getTimeFormat("second") : " " + LanguageManager.getTimeFormat("seconds"))); String s = sb.toString(); return s.isEmpty() ? "0 " + LanguageManager.getTimeFormat("seconds") : s; @@ -55,17 +55,17 @@ public static String formatTimeInMinecraft(long time) { } if (hours > 0 && max <= 1) { - sb.append(days > 0 ? (minutes > 0 && max > 1 ? ", " : " and ") : "").append(hours + (hours == 1 ? " minecraft " + LanguageManager.getTimeFormat("hour") : " minecraft " + LanguageManager.getTimeFormat("hours"))); + sb.append(days > 0 ? (minutes > 0 && max > 1 ? ", " : " " + LanguageManager.getTimeFormat("and") + " ") : "").append(hours + (hours == 1 ? " minecraft " + LanguageManager.getTimeFormat("hour") : " minecraft " + LanguageManager.getTimeFormat("hours"))); max++; } if (minutes > 0 && max <= 1) { - sb.append(days > 0 || hours > 0 && max > 1 ? (seconds > 0 ? ", " : " and ") : "").append(minutes + (minutes == 1 ? " minecraft " + LanguageManager.getTimeFormat("minute") : " minecraft " + LanguageManager.getTimeFormat("minutes"))); + sb.append(days > 0 || hours > 0 && max > 1 ? (seconds > 0 ? ", " : " " + LanguageManager.getTimeFormat("and") + " ") : "").append(minutes + (minutes == 1 ? " minecraft " + LanguageManager.getTimeFormat("minute") : " minecraft " + LanguageManager.getTimeFormat("minutes"))); max++; } if (seconds > 0 && max <= 1) { - sb.append(days > 0 || hours > 0 && max > 1 || minutes > 0 ? " and " : (sb.length() > 0 ? ", " : "")).append(seconds + (seconds == 1 ? " minecraft " + LanguageManager.getTimeFormat("second") : " minecraft " + LanguageManager.getTimeFormat("seconds"))); + sb.append(days > 0 || hours > 0 && max > 1 || minutes > 0 ? " " + LanguageManager.getTimeFormat("and") + " " : (sb.length() > 0 ? ", " : "")).append(seconds + (seconds == 1 ? " minecraft " + LanguageManager.getTimeFormat("second") : " minecraft " + LanguageManager.getTimeFormat("seconds"))); max++; } diff --git a/src/main/resources/config.yml b/src/main/resources/config.yml index e565a628..ff20ba10 100644 --- a/src/main/resources/config.yml +++ b/src/main/resources/config.yml @@ -1,5 +1,5 @@ # IMPORTANT # -# Our plugin uses PlaceholderAPI to make placeholders, it's not required but if you want to use it you need to add it +# Our plugin uses PlaceholderAPI to make placeholders, it's not required but if you want to use it you will need to add it # A detailed wiki of our plugin can be found here: https://github.com/Picono435/wiki # All the configurations are commented, but if you still need help check the wiki or send a message in our discord # @@ -8,7 +8,7 @@ # IMPORTANT # # DO NOT CHANGE THIS -config-version: ${project.version} +config-version: "@version@" ################################################################################# # # @@ -71,8 +71,6 @@ storage: # # ################################################################################# # In this category you can change the basic configurations of the plugin -# Do you want to use the NPC system Tutorial here: https://github.com/Picono435/wiki/npcs ** PREMIUM ONLY** -use-citizens: false # What should happen when execute /jobs command? # 1 = Ignore and send a message (This feature its not really useful yet, but it will be soon ;)) # 2 = Execute basic commands, enter a job, get salary etc... etc... diff --git a/src/main/resources/langs/af-ZA.yml b/src/main/resources/langs/af-ZA.yml index c15aa8e3..9203eafe 100644 --- a/src/main/resources/langs/af-ZA.yml +++ b/src/main/resources/langs/af-ZA.yml @@ -127,3 +127,4 @@ months: "months" month: "month" years: "years" year: "year" +and: "and" diff --git a/src/main/resources/langs/ar-SA.yml b/src/main/resources/langs/ar-SA.yml index 971f0ff2..7511c1a5 100644 --- a/src/main/resources/langs/ar-SA.yml +++ b/src/main/resources/langs/ar-SA.yml @@ -107,8 +107,8 @@ aliases: set: "تعيين" method: "طريقة" job: "العمل" - editor: "editor" - applyedits: "applyedits" + editor: "محرر" + applyedits: "تطبيق" ################################################################################# ## #Time translations # @@ -127,3 +127,4 @@ months: "أشهر" month: "شهر" years: "سنوات" year: "سنة" +and: "و" diff --git a/src/main/resources/langs/ca-ES.yml b/src/main/resources/langs/ca-ES.yml index c15aa8e3..9203eafe 100644 --- a/src/main/resources/langs/ca-ES.yml +++ b/src/main/resources/langs/ca-ES.yml @@ -127,3 +127,4 @@ months: "months" month: "month" years: "years" year: "year" +and: "and" diff --git a/src/main/resources/langs/cs-CZ.yml b/src/main/resources/langs/cs-CZ.yml index b4fb2d2c..e486879b 100644 --- a/src/main/resources/langs/cs-CZ.yml +++ b/src/main/resources/langs/cs-CZ.yml @@ -127,3 +127,4 @@ months: "měsíce" month: "měsíc" years: "roků" year: "Rok" +and: "a" diff --git a/src/main/resources/langs/da-DK.yml b/src/main/resources/langs/da-DK.yml index 49383c0a..78fa54d0 100644 --- a/src/main/resources/langs/da-DK.yml +++ b/src/main/resources/langs/da-DK.yml @@ -10,13 +10,13 @@ ## ################################################################################# #In this category you can change the general messages of the plugin -no-permission: "&cHey! You do not have permission to execute that command." -ignore-action: "&cHey! Don't be lazy and go speak with the NPC." -choosed-job: "&aCongratulations! You choosed the job %jobplayer_job%&a." -accepted-work: "&aYou accepted the work of %jobplayer_work%." -no-salary: "&cYou do not have enough salary to get! Please go work ;(" -got-salary: "&aGreat Work! You just got your %jobplayer_salary% salary!" -finished-work: "&aCongratulations! You just finished your work. Use /jobs to get more information about it." +no-permission: "&cHey! Du har ikke tilladelse til at udføre denne kommando." +ignore-action: "&cHey! Vær ikke doven og gå til at tale med NPC." +choosed-job: "&aTillykke! Du valgte jobbet %jobplayer_job%&a." +accepted-work: "&aDu har accepteret arbejdet af %jobplayer_work%." +no-salary: "&cDu har ikke nok løn til at få! Gå venligst til arbejde ;(" +got-salary: "&aGreat Work! Du har lige fået din %jobplayer_salary% løn!" +finished-work: "&aTillykke! Du har lige afsluttet dit arbejde. Brug /jobs for at få mere information om det." need-level: "&cHey! Du skal gøre %a% værker for at udføre denne handling." no-args: "&cHey! Brug venligst en gyldig syntaks." my-salary: "&aDu har %jobplayer_salary%$ løn." @@ -80,7 +80,7 @@ repair-work: "reparere %a% varer" milk-work: "tager %a% mælk fra køer" kill_entity-work: "dræbe %a% enheder" #When something is not find what should it appear -none-format: "None" +none-format: "Ingen" ################################################################################# ## #Command translations # @@ -127,3 +127,4 @@ months: "måneder" month: "måned" years: "år" year: "år" +and: "og" diff --git a/src/main/resources/langs/de-DE.yml b/src/main/resources/langs/de-DE.yml index 4117edca..96ee91f8 100644 --- a/src/main/resources/langs/de-DE.yml +++ b/src/main/resources/langs/de-DE.yml @@ -127,3 +127,4 @@ months: "monate" month: "monat" years: "jahre" year: "jahr" +and: "und" diff --git a/src/main/resources/langs/el-GR.yml b/src/main/resources/langs/el-GR.yml index 214873f3..7b285153 100644 --- a/src/main/resources/langs/el-GR.yml +++ b/src/main/resources/langs/el-GR.yml @@ -10,20 +10,20 @@ ## ################################################################################# #In this category you can change the general messages of the plugin -no-permission: "&cHey! You do not have permission to execute that command." -ignore-action: "&cHey! Don't be lazy and go speak with the NPC." -choosed-job: "&aCongratulations! You choosed the job %jobplayer_job%&a." -accepted-work: "&aYou accepted the work of %jobplayer_work%." -no-salary: "&cYou do not have enough salary to get! Please go work ;(" -got-salary: "&aGreat Work! You just got your %jobplayer_salary% salary!" -finished-work: "&aCongratulations! You just finished your work. Use /jobs to get more information about it." -need-level: "&cHey! You need to do %a% works to execute that action." -no-args: "&cHey! Please use a valid syntax." -my-salary: "&aYou have %jobplayer_salary%$ of salary." -unknow-job: "&cThat job was not found, please use the TAB COMPLETE for get a list of jobs." +no-permission: "&Γεια! Δεν έχετε άδεια για να εκτελέσετε αυτήν την εντολή." +ignore-action: "&cHey! Μην είστε τεμπέλης και πηγαίνετε να μιλήσετε με το NPC." +choosed-job: "&Συγχαρητήρια! Επιλέξατε τη δουλειά %jobplayer_job%&α." +accepted-work: "&aΑποδεχθήκατε το έργο του %jobplayer_work%." +no-salary: "&cYou δεν έχετε αρκετό μισθό για να λάβετε! Παρακαλώ πηγαίνετε στην εργασία ;(" +got-salary: "&Εξαιρετική δουλειά! Μόλις πήρατε το %jobplayer_salary% μισθό!" +finished-work: "&Συγχαρητήρια! Μόλις τελειώσατε την εργασία σας. Χρησιμοποιήστε το /jobs για να πάρετε περισσότερες πληροφορίες σχετικά με αυτό." +need-level: "&Γεια! Πρέπει να κάνετε %a% λειτουργεί για να εκτελέσετε αυτήν την ενέργεια." +no-args: "&Γεια! Παρακαλώ χρησιμοποιήστε μια έγκυρη σύνταξη." +my-salary: "&aΈχετε %jobplayer_salary%$ μισθού." +unknow-job: "&cΑυτή η εργασία δεν βρέθηκε, παρακαλώ χρησιμοποιήστε το TAB COMPLETE για να πάρετε μια λίστα εργασιών." #In this message you can use the placeholders: %cooldown_mtime% -> Minecraft Time // %cooldown_time% -> Real Life Time -salary-cooldown: "&cYou need to wait more %cooldown_mtime% before get your salary again." -work-status: "&aHere is what you need to do: %jobplayer_work%" +salary-cooldown: "&cΘα πρέπει να περιμένετε περισσότερα από %cooldown_mtime% για να λάβετε ξανά το μισθό σας." +work-status: "&Εδώ είναι αυτό που πρέπει να κάνετε: %jobplayer_work%" admin-commands: |- &6Πλήρης λίστα εντολών: &e/jobsadmin βοήθεια &6- Δείτε αυτά τα μηνύματα @@ -35,28 +35,28 @@ admin-commands: |- &e/jobsadmin editor &6- &eCreates a web editor session &e/jobsadmin applyedits &6- &eApply the edits of a web editor session member-commands: |- - &6Full list of commands: - &e/jobs help &6- &eSee this messages - &e/jobs choose &6- &eChooses your job + &6Πλήρης λίστα εντολών: + &e/εργασίες βοηθούν &6- Δείτε αυτά τα μηνύματα + &/εργασίες να επιλέξουν &6- &eChooses your job &e/jobs work &6- &eSee the status/Accept of your work &e/jobs salary &6- &eCheck your salary &e/jobs withdraw &6- &eWithdraw your salary &e/jobs leave &6- &eLeaves the job info-command: |- - &6Status of the player %player_name% + &6Κατάσταση του παίκτη %player_name% &eSalary: %jobplayer_salary% - &eIs Working: %jobplayer_working% + &eIs λειτουργεί: %jobplayer_working% &eWork: %jobplayer_work% &eJob: %jobplayer_job% -reload-command: "&aConfigurations, Jobs & Language were reloaded succefully." -player-not-found: "&cThat player is not online, please put a valid player." -unknow-error: "&cAn unknow error occuried, please check the console for more information." -left-job: "&cYou are not unemployed! We recommend you choose a new job or you will lose a lot of money." -already-updated: "&cThe plugin is already in the lastest version, for more information check our WIKI." -update-started: "&aThe update of the plugin PicoJobs started, please wait..." -updated-sucefully: "&aThe plugin was updated sucefully, please restart the server to finish the update." -sucefully: "&aThe action was made sucefully." -invalid-arg: "&aThe argument sent is invalid. Please check the mispell." +reload-command: "&aConfigurations, Εργασίες & Γλώσσα επαναφορτώθηκαν επιτυχώς." +player-not-found: "&cThat player is not online, παρακαλώ βάλτε έναν έγκυρο παίκτη." +unknow-error: "&Ένα σφάλμα μη γνωριμίας εμφανίστηκε, παρακαλώ ελέγξτε την κονσόλα για περισσότερες πληροφορίες." +left-job: "&cYou are not unemployed! Σας προτείνουμε να επιλέξετε μια νέα θέση εργασίας ή θα χάσετε πολλά χρήματα." +already-updated: "&cThe plugin είναι ήδη στην τελευταία έκδοση, για περισσότερες πληροφορίες ελέγξτε WIKI μας." +update-started: "&aΗ ενημέρωση του πρόσθετου PicoJobs ξεκίνησε, παρακαλώ περιμένετε..." +updated-sucefully: "&aΤο πρόσθετο ενημερώθηκε με ασφάλεια, παρακαλώ επανεκκινήστε το διακομιστή για να ολοκληρώσετε την ενημέρωση." +sucefully: "&aΗ ενέργεια έγινε με συνέπεια." +invalid-arg: "&aΗ παράμετρος που στάλθηκε δεν είναι έγκυρη. Παρακαλώ ελέγξτε την ατέλεια." ################################################################################# ## #Format messages # @@ -65,22 +65,22 @@ invalid-arg: "&aThe argument sent is invalid. Please check the mispell." #In this category you can change the formats of placeholders and other things #All these messages work with Player Placeholders ;) (PlaceholderAPI Required) #Change how the works should be displayed. (DEFAULT, to a specific job go into settings/jobs.yml) -break-work: "break %a% blocks" -kill-work: "kill %a% people" -fishing-work: "fish %a% fishes" -place-work: "place %a% blocks" -craft-work: "craft %a% items" +break-work: "διάλειμμα %a% μπλοκ" +kill-work: "σκοτώνει %a% άτομα" +fishing-work: "ψάρια %a% ψάρια" +place-work: "τοποθετήστε %a% μπλοκ" +craft-work: "βιοτεχνία %a% αντικειμένων" tame-work: "tame %a% ζώα" shear-work: "διάτμηση %a% πρόβατα" fill-work: "γεμίστε κάδους %a%" -smelt-work: "smelt %a% items" -eat-work: "eat %a% items" -enchanting-work: "enchant %a% items" -repair-work: "repair %a% items" -milk-work: "take %a% milks from cows" -kill_entity-work: "kill %a% entities" +smelt-work: "λιώσιμο %a% αντικειμένων" +eat-work: "φάτε %a% στοιχεία" +enchanting-work: "μαγεία %a% αντικειμένων" +repair-work: "επισκευή %a% αντικειμένων" +milk-work: "λήψη %a% γάλακτος από αγελάδες" +kill_entity-work: "σκοτώνει %a% οντότητες" #When something is not find what should it appear -none-format: "None" +none-format: "Κανένα" ################################################################################# ## #Command translations # @@ -90,23 +90,23 @@ none-format: "None" aliases: jobs: - "θέσεις εργασίας" - - "job" + - "εργασία" jobsadmin: - "jobsadmin" - "jobadmin" - choose: "choose" - work: "work" - salary: "salary" - withdraw: "withdraw" - leave: "leave" - help: "help" - info: "info" + choose: "επιλέξτε" + work: "εργασία" + salary: "μισθός" + withdraw: "ανάληψη" + leave: "αποχώρηση" + help: "βοήθεια" + info: "πληροφορίες" reload: "reload" - update: "update" - about: "about" - set: "set" - method: "method" - job: "job" + update: "ενημέρωση" + about: "περίπου" + set: "όρισε" + method: "μέθοδος" + job: "εργασία" editor: "επεξεργαστής" applyedits: "εφαρμοζόμενα" ################################################################################# @@ -115,15 +115,16 @@ aliases: ## ################################################################################# #In this category you can change all the time translations -seconds: "seconds" -second: "second" -minutes: "minutes" -minute: "minute" -hours: "hours" -hour: "hour" -days: "days" -day: "day" -months: "months" -month: "month" -years: "years" -year: "year" +seconds: "δευτερόλεπτα" +second: "δευτερόλεπτο" +minutes: "λεπτά" +minute: "λεπτό" +hours: "ώρες" +hour: "ώρα" +days: "ημέρες" +day: "ημέρα" +months: "μήνες" +month: "μήνας" +years: "έτη" +year: "έτος" +and: "και" diff --git a/src/main/resources/langs/en-GB.yml b/src/main/resources/langs/en-GB.yml index 08bb087d..506c2ba4 100644 --- a/src/main/resources/langs/en-GB.yml +++ b/src/main/resources/langs/en-GB.yml @@ -128,3 +128,4 @@ months: "months" month: "month" years: "years" year: "year" +and: "and" diff --git a/src/main/resources/langs/en-US.yml b/src/main/resources/langs/en-US.yml index c15aa8e3..9203eafe 100644 --- a/src/main/resources/langs/en-US.yml +++ b/src/main/resources/langs/en-US.yml @@ -127,3 +127,4 @@ months: "months" month: "month" years: "years" year: "year" +and: "and" diff --git a/src/main/resources/langs/es-ES.yml b/src/main/resources/langs/es-ES.yml index 8d01d80f..76b74dad 100644 --- a/src/main/resources/langs/es-ES.yml +++ b/src/main/resources/langs/es-ES.yml @@ -127,3 +127,4 @@ months: "meses" month: "mes" years: "años" year: "año" +and: "y" diff --git a/src/main/resources/langs/fi-FI.yml b/src/main/resources/langs/fi-FI.yml index deabddd9..1dd94994 100644 --- a/src/main/resources/langs/fi-FI.yml +++ b/src/main/resources/langs/fi-FI.yml @@ -10,13 +10,13 @@ ## ################################################################################# #In this category you can change the general messages of the plugin -no-permission: "&cHey! You do not have permission to execute that command." -ignore-action: "&cHey! Don't be lazy and go speak with the NPC." -choosed-job: "&aCongratulations! You choosed the job %jobplayer_job%&a." -accepted-work: "&aYou accepted the work of %jobplayer_work%." -no-salary: "&cYou do not have enough salary to get! Please go work ;(" -got-salary: "&aGreat Work! You just got your %jobplayer_salary% salary!" -finished-work: "&aCongratulations! You just finished your work. Use /jobs to get more information about it." +no-permission: "&cHey! Sinulla ei ole oikeuksia suorittaa tuota komentoa." +ignore-action: "&cHei! Älä ole laiska ja mene keskustelemaan NPC:n kanssa." +choosed-job: "&aOnneksi olkoon! Valitsit työpaikan %jobplayer_job%&a." +accepted-work: "&aOlet hyväksynyt %jobplayer_work% työn." +no-salary: "&cSinulla ei ole tarpeeksi palkkaa saadaksesi! Mene töihin ;(" +got-salary: "&aGreat Work! Sait juuri %jobplayer_salary% palkkasi!" +finished-work: "&aOnneksi olkoon! Olet juuri suorittanut työsi. Saat lisätietoja siitä käyttämällä /työpaikkaa." need-level: "&cHey! Sinun täytyy tehdä %a% toimii suorittaaksesi tämän toiminnon." no-args: "&cHei! Käytä kelvollista syntaksia." my-salary: "&aSinulla on %jobplayer_salary%$ palkasta." @@ -25,15 +25,15 @@ unknow-job: "&cTätä tehtävää ei löytynyt, ole hyvä ja käytä TAB COMPLET salary-cooldown: "&cSinun täytyy odottaa enemmän %cooldown_mtime% ennen kuin saat palkkasi uudelleen." work-status: "&aTässä on mitä sinun tarvitsee tehdä: %jobplayer_work%" admin-commands: |- - &6Full list of commands: - &e/jobsadmin help &6- &eSee this messages + &6Täysi lista komennoista: + &e/jobsadmin help &6- &eKatso nämä viestit &e/jobsadmin info &6- &eGets the information about a player - &e/jobsadmin reload &6- &eReload all the possible configurations. - &e/jobsadmin update &6- &eInstalls a update of the plugin - &e/jobsadmin about &6- &eGets informations about the server and the plugin - &e/jobsadmin set &6- &eSets the salary/method of a player - &e/jobsadmin editor &6- &eCreates a web editor session - &e/jobsadmin applyedits &6- &eApply the edits of a web editor session + &e/jobsadmin reload &6- &eLataa kaikki mahdolliset asetukset. + &e/jobsadmin- päivitys &6- &eAsentaa lisäosan + &e/jobsadmin- päivityksen &6- &eGet- palvelimesta ja lisäosan + &e/jobsadmin- asetukset &6- &eAsettaa pelaajan + &e/jobsadmin- editori &6- &eLuo web-editor-istunnon + &e/jobsadmin-editori &6- &eHae web-editori-istunnon editoinnit &6- &eHae web-editori-istunnon editoinnit member-commands: |- &6Täysi lista komennoista: &e/jobs help &6- &eSee this messages @@ -80,7 +80,7 @@ repair-work: "korjaa %a% kohteita" milk-work: "ottaa %a% maitoa lehmistä" kill_entity-work: "tappaa %a% entiteetit" #When something is not find what should it appear -none-format: "None" +none-format: "Ei Mitään" ################################################################################# ## #Command translations # @@ -89,7 +89,7 @@ none-format: "None" #In this category you can add aliases for all the commands of the plugin aliases: jobs: - - "jobs" + - "työpaikat" - "työ" jobsadmin: - "jobsadmin" @@ -107,8 +107,8 @@ aliases: set: "aseta" method: "menetelmä" job: "työ" - editor: "editor" - applyedits: "applyedits" + editor: "editori" + applyedits: "sovelletaan" ################################################################################# ## #Time translations # @@ -127,3 +127,4 @@ months: "kuukautta" month: "kuukausi" years: "vuotta" year: "vuosi" +and: "ja" diff --git a/src/main/resources/langs/fr-FR.yml b/src/main/resources/langs/fr-FR.yml index c01bfabc..7d4614ba 100644 --- a/src/main/resources/langs/fr-FR.yml +++ b/src/main/resources/langs/fr-FR.yml @@ -127,3 +127,4 @@ months: "mois" month: "mois" years: "Années" year: "Année" +and: "et" diff --git a/src/main/resources/langs/he-IL.yml b/src/main/resources/langs/he-IL.yml index c15aa8e3..9203eafe 100644 --- a/src/main/resources/langs/he-IL.yml +++ b/src/main/resources/langs/he-IL.yml @@ -127,3 +127,4 @@ months: "months" month: "month" years: "years" year: "year" +and: "and" diff --git a/src/main/resources/langs/hu-HU.yml b/src/main/resources/langs/hu-HU.yml index c15aa8e3..9203eafe 100644 --- a/src/main/resources/langs/hu-HU.yml +++ b/src/main/resources/langs/hu-HU.yml @@ -127,3 +127,4 @@ months: "months" month: "month" years: "years" year: "year" +and: "and" diff --git a/src/main/resources/langs/it-IT.yml b/src/main/resources/langs/it-IT.yml index 3efad48f..0cdf2dcd 100644 --- a/src/main/resources/langs/it-IT.yml +++ b/src/main/resources/langs/it-IT.yml @@ -127,3 +127,4 @@ months: "mesi" month: "mese" years: "anni" year: "anno" +and: "e" diff --git a/src/main/resources/langs/ja-JP.yml b/src/main/resources/langs/ja-JP.yml index 5f67c98e..ce252ec3 100644 --- a/src/main/resources/langs/ja-JP.yml +++ b/src/main/resources/langs/ja-JP.yml @@ -127,3 +127,4 @@ months: "ヶ月" month: "月" years: "年" year: "年" +and: "と" diff --git a/src/main/resources/langs/ko-KR.yml b/src/main/resources/langs/ko-KR.yml index c15aa8e3..9203eafe 100644 --- a/src/main/resources/langs/ko-KR.yml +++ b/src/main/resources/langs/ko-KR.yml @@ -127,3 +127,4 @@ months: "months" month: "month" years: "years" year: "year" +and: "and" diff --git a/src/main/resources/langs/nl-NL.yml b/src/main/resources/langs/nl-NL.yml index 15235d6d..542d2113 100644 --- a/src/main/resources/langs/nl-NL.yml +++ b/src/main/resources/langs/nl-NL.yml @@ -127,3 +127,4 @@ months: "Monate" month: "maand" years: "Jaren" year: "Jaar" +and: "en" diff --git a/src/main/resources/langs/no-NO.yml b/src/main/resources/langs/no-NO.yml index 68136d0a..eb577497 100644 --- a/src/main/resources/langs/no-NO.yml +++ b/src/main/resources/langs/no-NO.yml @@ -127,3 +127,4 @@ months: "måneder" month: "måned" years: "år" year: "år" +and: "og" diff --git a/src/main/resources/langs/pl-PL.yml b/src/main/resources/langs/pl-PL.yml index 2f4ea5cc..b5c10000 100644 --- a/src/main/resources/langs/pl-PL.yml +++ b/src/main/resources/langs/pl-PL.yml @@ -127,3 +127,4 @@ months: "miesiące" month: "miesiąc" years: "lata" year: "rok" +and: "W przypadku gdy państwo członkowskie lub Szwajcaria stwierdzi, że dane państwo członkowskie lub Szwajcaria spełniają warunki określone w art. 4 ust. 1 lit. a) i b) oraz w art. 5 ust. 1 lit. b) i c) rozporządzenia (WE) nr 207/2009 oraz w art. 5 ust. 1 lit. b) i c) rozporządzenia (WE) nr 207/2009 oraz w art. 5 ust. 1 lit. b) tego rozporządzenia i art. 6 ust. 1 lit. b) tego rozporządzenia i c) tego rozporządzenia stosuje się od dnia 1 stycznia 2018 r." diff --git a/src/main/resources/langs/pt-BR.yml b/src/main/resources/langs/pt-BR.yml index b7fb725c..f861d815 100644 --- a/src/main/resources/langs/pt-BR.yml +++ b/src/main/resources/langs/pt-BR.yml @@ -127,3 +127,4 @@ months: "Meses" month: "mês" years: "Anos" year: "Ano" +and: "e" diff --git a/src/main/resources/langs/pt-PT.yml b/src/main/resources/langs/pt-PT.yml index fea02fa5..f63a23db 100644 --- a/src/main/resources/langs/pt-PT.yml +++ b/src/main/resources/langs/pt-PT.yml @@ -127,3 +127,4 @@ months: "Meses" month: "mês" years: "Anos" year: "Ano" +and: "e" diff --git a/src/main/resources/langs/ro-RO.yml b/src/main/resources/langs/ro-RO.yml index 328924eb..9bc893bb 100644 --- a/src/main/resources/langs/ro-RO.yml +++ b/src/main/resources/langs/ro-RO.yml @@ -127,3 +127,4 @@ months: "luni" month: "lună" years: "ani" year: "an" +and: "şi" diff --git a/src/main/resources/langs/ru-RU.yml b/src/main/resources/langs/ru-RU.yml index c4ca7eb5..32bdfeba 100644 --- a/src/main/resources/langs/ru-RU.yml +++ b/src/main/resources/langs/ru-RU.yml @@ -127,3 +127,4 @@ months: "месяцы" month: "месяц" years: "лет" year: "год" +and: "и" diff --git a/src/main/resources/langs/sr-Cyrl.yml b/src/main/resources/langs/sr-Cyrl.yml index c15aa8e3..9203eafe 100644 --- a/src/main/resources/langs/sr-Cyrl.yml +++ b/src/main/resources/langs/sr-Cyrl.yml @@ -127,3 +127,4 @@ months: "months" month: "month" years: "years" year: "year" +and: "and" diff --git a/src/main/resources/langs/sv-SE.yml b/src/main/resources/langs/sv-SE.yml index d32d0353..3bbe6518 100644 --- a/src/main/resources/langs/sv-SE.yml +++ b/src/main/resources/langs/sv-SE.yml @@ -127,3 +127,4 @@ months: "månader" month: "månad" years: "år" year: "år" +and: "och" diff --git a/src/main/resources/langs/tr-TR.yml b/src/main/resources/langs/tr-TR.yml index c1f06e27..738f0fe9 100644 --- a/src/main/resources/langs/tr-TR.yml +++ b/src/main/resources/langs/tr-TR.yml @@ -127,3 +127,4 @@ months: "ay" month: "ay" years: "yıl" year: "yıl" +and: "and" diff --git a/src/main/resources/langs/uk-UA.yml b/src/main/resources/langs/uk-UA.yml index fe76cd87..7907093c 100644 --- a/src/main/resources/langs/uk-UA.yml +++ b/src/main/resources/langs/uk-UA.yml @@ -127,3 +127,4 @@ months: "місяців" month: "місяць" years: "років" year: "рік" +and: "та" diff --git a/src/main/resources/langs/vi-VN.yml b/src/main/resources/langs/vi-VN.yml index 1471a1e9..3b1fa9e1 100644 --- a/src/main/resources/langs/vi-VN.yml +++ b/src/main/resources/langs/vi-VN.yml @@ -127,3 +127,4 @@ months: "tháng" month: "tháng" years: "năm" year: "năm" +and: "and" diff --git a/src/main/resources/langs/zh-CN.yml b/src/main/resources/langs/zh-CN.yml index 09bc98d9..e7bff5ab 100644 --- a/src/main/resources/langs/zh-CN.yml +++ b/src/main/resources/langs/zh-CN.yml @@ -127,3 +127,4 @@ months: "月" month: "月" years: "年" year: "年" +and: "和" diff --git a/src/main/resources/langs/zh-TW.yml b/src/main/resources/langs/zh-TW.yml index 8121b5f6..df9100fd 100644 --- a/src/main/resources/langs/zh-TW.yml +++ b/src/main/resources/langs/zh-TW.yml @@ -127,3 +127,4 @@ months: "月" month: "月" years: "年" year: "年" +and: "and" diff --git a/src/main/resources/settings/jobs.yml b/src/main/resources/settings/jobs.yml index 447bab02..a04dedc8 100644 --- a/src/main/resources/settings/jobs.yml +++ b/src/main/resources/settings/jobs.yml @@ -244,7 +244,7 @@ jobs: # Use whitelist or blacklist - OPTIONAL [requires="whitelist"] use-whitelist: true # The block whitelist/blacklist, depending on what is in use-whitelist - OPTIONAL - whitelist: ["dirt", "grass", "grass-block"] + whitelist: ["dirt", "grass", "grass_block"] # The work message that you want to use - OPTIONAL [default can be found in the language file] work-message: "dig %a% dirts" # Choose Job Menu settings diff --git a/src/test/java/com/gmail/picono435/testing/TestPlugin.java b/src/test/java/com/gmail/picono435/testing/TestPlugin.java index da8b0fef..1de50b51 100644 --- a/src/test/java/com/gmail/picono435/testing/TestPlugin.java +++ b/src/test/java/com/gmail/picono435/testing/TestPlugin.java @@ -4,27 +4,33 @@ import be.seeseemelk.mockbukkit.ServerMock; import be.seeseemelk.mockbukkit.entity.PlayerMock; import org.junit.jupiter.api.AfterAll; +import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.BeforeAll; +import org.junit.jupiter.api.Test; import com.gmail.picono435.picojobs.PicoJobsPlugin; public class TestPlugin { - PicoJobsPlugin plugin; - private ServerMock server; - @SuppressWarnings("unused") - private PlayerMock player; + static PicoJobsPlugin plugin; + private static ServerMock server; + private static PlayerMock player; @BeforeAll - public void setUp() { + public static void setUp() { server = MockBukkit.mock(); plugin = MockBukkit.load(PicoJobsPlugin.class); player = server.addPlayer(); } @AfterAll - public void tearDown() { + public static void tearDown() { MockBukkit.unmock(); } + @Test + void chooseJob() { + Assertions.assertEquals(true, player.performCommand("jobs")); + } + } \ No newline at end of file