diff --git a/.github/ISSUE_TEMPLATE/1-bug-report.yml b/.github/ISSUE_TEMPLATE/1-bug-report.yml
new file mode 100644
index 000000000..47572891c
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/1-bug-report.yml
@@ -0,0 +1,80 @@
+name: Bug report
+description: Report a bug you've encountered
+labels: ["🪲bug"]
+projects: ["veritaware/6"]
+assignees:
+ - nidrax
+type: Bug
+body:
+ - type: input
+ id: version
+ attributes:
+ label: Besprited version
+ description: Paste Besprited version between quotes down below. You'll find it in the bottom left corner when you open the software. If you're on a dev version, specify the commit hash
+ placeholder: e.g., "v1.2.3" or "abcdefg"
+ validations:
+ required: true
+ - type: textarea
+ id: bug-description
+ attributes:
+ label: Bug description
+ description: A clear and concise description of what the bug is
+ placeholder: e.g., "When I try to export a sprite sheet, the software crashes"
+ validations:
+ required: true
+ - type: textarea
+ id: steps-to-reproduce
+ attributes:
+ label: Steps to reproduce
+ description: Steps to reproduce the behaviour
+ placeholder: e.g., "1. Open Besprited\n2. Load a project\n3. Click on Export\n4. See error"
+ validations:
+ required: true
+ - type: textarea
+ id: expected-behaviour
+ attributes:
+ label: Expected behaviour
+ description: A clear and concise description of what you expected to happen
+ placeholder: e.g., "The sprite sheet should export without errors"
+ validations:
+ required: true
+ - type: input
+ id: os
+ attributes:
+ label: Operative System
+ description: The operative system you're using (e.g., Windows 10, macOS 11.2, Ubuntu 20.04)
+ placeholder: e.g., "Windows 10"
+ validations:
+ required: false
+ - type: input
+ id: cpu
+ attributes:
+ label: CPU
+ description: The CPU model of your computer (e.g., Intel Core i7-9700K, AMD Ryzen 5 3600)
+ placeholder: e.g., "Intel Core i7-9700K"
+ validations:
+ required: false
+ - type: input
+ id: gpu
+ attributes:
+ label: GPU
+ description: The GPU model of your computer (e.g., NVIDIA GeForce RTX 2070, AMD Radeon RX 5700 XT). Only needed for graphical issues
+ placeholder: e.g., "NVIDIA GeForce RTX 2070"
+ validations:
+ required: false
+ - type: textarea
+ id: screenshots
+ attributes:
+ label: Screenshots
+ description: Screenshots or videos to help explain your problem
+ placeholder: e.g., ""
+ validations:
+ required: false
+ - type: textarea
+ id: additional-context
+ attributes:
+ label: Additional context
+ description: Add any other context about the problem here
+ placeholder: e.g., "I noticed this issue started happening after I updated to the latest version"
+ validations:
+ required: false
diff --git a/.github/ISSUE_TEMPLATE/2-feature-request.yml b/.github/ISSUE_TEMPLATE/2-feature-request.yml
new file mode 100644
index 000000000..a8a8b5af2
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/2-feature-request.yml
@@ -0,0 +1,38 @@
+name: Feature request
+description: Suggest an idea for this project
+labels: ["🐞feature"]
+projects: ["veritaware/6"]
+type: Feature
+body:
+ - type: textarea
+ id: problem-description
+ attributes:
+ label: Is your feature request related to a problem? Please describe
+ description: A clear and concise description of what the problem is
+ placeholder: e.g., "I'm always frustrated when I have to manually export each layer individually"
+ validations:
+ required: true
+ - type: textarea
+ id: solution-description
+ attributes:
+ label: Describe the solution you'd like
+ description: A clear and concise description of what you want to happen
+ placeholder: e.g., "Add a 'Batch Export Layers' feature that exports all layers at once"
+ validations:
+ required: true
+ - type: textarea
+ id: alternatives
+ attributes:
+ label: Describe alternatives you've considered
+ description: A clear and concise description of any alternative solutions or features you've considered
+ placeholder: e.g., "I considered using a script, but it would be better to have a built-in feature"
+ validations:
+ required: false
+ - type: textarea
+ id: additional-context
+ attributes:
+ label: Additional context
+ description: Add any other context or screenshots about the feature request here
+ placeholder: e.g., "Other sprite editors like X and Y have this feature"
+ validations:
+ required: false
diff --git a/.github/ISSUE_TEMPLATE/3-code-quality.yml b/.github/ISSUE_TEMPLATE/3-code-quality.yml
new file mode 100644
index 000000000..a0c0f361f
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/3-code-quality.yml
@@ -0,0 +1,30 @@
+name: Code quality
+description: Have you seen bad code? Click here
+labels: ["💩code-quality"]
+projects: ["veritaware/6"]
+type: Task
+body:
+ - type: textarea
+ id: code-problem
+ attributes:
+ label: What's wrong with the code?
+ description: A clear and concise description of the poor quality you've noticed
+ placeholder: e.g., "The function X has too many parameters and is hard to understand"
+ validations:
+ required: true
+ - type: textarea
+ id: improvement-suggestion
+ attributes:
+ label: How should it be improved?
+ description: A clear and concise description of what you think is a better approach
+ placeholder: e.g., "Refactor the function to use a configuration object instead of multiple parameters"
+ validations:
+ required: true
+ - type: textarea
+ id: additional-context
+ attributes:
+ label: Additional context
+ description: Add any other context about the issue here
+ placeholder: e.g., "This code is in the file src/app/main.cpp"
+ validations:
+ required: false
diff --git a/.github/ISSUE_TEMPLATE/4-documentation.yml b/.github/ISSUE_TEMPLATE/4-documentation.yml
new file mode 100644
index 000000000..d646c6366
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/4-documentation.yml
@@ -0,0 +1,32 @@
+name: Documentation
+description: Something wrong with the docs? Tell us here
+labels: ["📑docs"]
+projects: ["veritaware/6"]
+assignees:
+ - copilot
+type: Task
+body:
+ - type: textarea
+ id: documentation-issue
+ attributes:
+ label: Documentation issue
+ description: Please describe what's wrong with the documentation (please no walls of text :P)
+ placeholder: e.g., "The installation guide is missing steps for macOS"
+ validations:
+ required: true
+ - type: textarea
+ id: suggested-improvement
+ attributes:
+ label: Suggested improvement
+ description: How do you think the documentation should be improved?
+ placeholder: e.g., "Add a section explaining how to install on macOS"
+ validations:
+ required: false
+ - type: textarea
+ id: additional-context
+ attributes:
+ label: Additional context
+ description: Add any other context about the documentation issue here
+ placeholder: e.g., "This affected me when trying to set up the project"
+ validations:
+ required: false
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md
deleted file mode 100644
index 38fb237c4..000000000
--- a/.github/ISSUE_TEMPLATE/bug_report.md
+++ /dev/null
@@ -1,40 +0,0 @@
----
-name: Bug report
-about: Create a report to help us improve
-title: ''
-labels: unconfirmed bug
-assignees: ''
-
----
-##### LibreSprite version
-
-
-- [ ] I am using the latest release or a build from latest commits.
-- [ ] I am not using the Flatpak. (If you are, please raise an issue [here](https://github.com/flathub/com.github.libresprite.LibreSprite/issues).
-
-```
-
-```
-
-##### Describe the bug
-
-
-##### To Reproduce
-
-
-##### Expected behaviour
-
-
-##### OS/Hardware
-- Operative System:
-- CPU:
-- GPU:
-
-
-##### Screenshots
-
-
-##### Additional context
-
diff --git a/.github/ISSUE_TEMPLATE/code_quality.md b/.github/ISSUE_TEMPLATE/code_quality.md
deleted file mode 100644
index 2350e6f93..000000000
--- a/.github/ISSUE_TEMPLATE/code_quality.md
+++ /dev/null
@@ -1,16 +0,0 @@
----
-name: Code quality
-about: Have you seen bad code? Click here
-title: ''
-labels: code quality
-assignees: ''
-
----
-##### What's wrong with the code?
-
-
-##### How should it be improved?
-
-
-##### Additional context
-
diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml
index 71a5272dc..0086358db 100644
--- a/.github/ISSUE_TEMPLATE/config.yml
+++ b/.github/ISSUE_TEMPLATE/config.yml
@@ -1,6 +1 @@
-blank_issues_enabled: false
-
-contact_links:
- - name: Feature request
- url: https://github.com/LibreSprite/LibreSprite-proposals/issues/
- about: Please submit feature proposals and discussions (meta and not) on the LibreSprite proposals repository
+blank_issues_enabled: true
diff --git a/.github/ISSUE_TEMPLATE/documentation.md b/.github/ISSUE_TEMPLATE/documentation.md
deleted file mode 100644
index 6cf272833..000000000
--- a/.github/ISSUE_TEMPLATE/documentation.md
+++ /dev/null
@@ -1,10 +0,0 @@
----
-name: Documentation
-about: Something wrong with the docs? Tell us here
-title: ''
-labels: documentation
-assignees: ''
-
----
-
-
-
-Add compact, short information about your PR for easier understanding:
-
-- Goal of the PR
-- How does the PR work?
-- Does it resolve any reported issue?
-- If not a bug fix, why is this PR needed? What usecases does it solve?
-
-## How to test
-
diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md
new file mode 100644
index 000000000..62aee4355
--- /dev/null
+++ b/.github/pull_request_template.md
@@ -0,0 +1,5 @@
+
+
+
diff --git a/.github/workflows/cmakeAndroid.yml b/.github/workflows/cmakeAndroid.yml
index c7d1b0b33..ef3900c5e 100644
--- a/.github/workflows/cmakeAndroid.yml
+++ b/.github/workflows/cmakeAndroid.yml
@@ -2,13 +2,14 @@ name: Android
on:
push:
- branches: [ master ]
+ branches: [ trunk ]
pull_request:
- branches: [ master ]
+ branches: [ trunk ]
jobs:
build:
runs-on: ubuntu-latest
+ if: ${{ !contains(github.event.head_commit.message, 'NO_SW_CHANGE') && !contains(github.event.pull_request.body, 'NO_SW_CHANGE') }}
steps:
- uses: actions/checkout@v4
with:
@@ -28,9 +29,15 @@ jobs:
sudo apt-get update
sudo apt-get install g++ libcurl4-gnutls-dev libfreetype6-dev libgif-dev libjpeg-dev libpixman-1-dev libpng-dev libsdl2-dev libsdl2-image-dev libtinyxml2-dev libx11-dev libxcursor-dev ninja-build zlib1g-dev libarchive-dev
pip install cmake
+ SHORT_HASH=$(git rev-parse --short HEAD)
+ sed -i "s/\"local build\"/\"$SHORT_HASH\"/g" src/config.h
mkdir build
cd build
- cmake -G Ninja -DGEN_ONLY=ON ..
+ if git describe --exact-match --tags 2>/dev/null; then
+ cmake -G Ninja -DGEN_ONLY=ON -DRELEASE_TAG=ON ..
+ else
+ cmake -G Ninja -DGEN_ONLY=ON ..
+ fi
ninja
cd ..
- name: Setup Submodule
@@ -46,6 +53,6 @@ jobs:
- name: Archive production artifacts
uses: actions/upload-artifact@v4
with:
- name: libresprite-development-android
+ name: besprited-development-android
path: |
android/app/build/outputs/apk/all_in_one/debug/app-all_in_one-debug.apk
diff --git a/.github/workflows/cmakeLinux.yml b/.github/workflows/cmakeLinux.yml
index cc734bc4e..e2058fc08 100644
--- a/.github/workflows/cmakeLinux.yml
+++ b/.github/workflows/cmakeLinux.yml
@@ -2,9 +2,9 @@ name: Linux
on:
push:
- branches: [ master ]
+ branches: [ trunk ]
pull_request:
- branches: [ master ]
+ branches: [ trunk ]
env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
@@ -17,7 +17,7 @@ jobs:
# cross-platform coverage.
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
runs-on: ubuntu-latest
-
+ if: ${{ !contains(github.event.head_commit.message, 'NO_SW_CHANGE') && !contains(github.event.pull_request.body, 'NO_SW_CHANGE') }}
steps:
- uses: actions/checkout@v3
# install dependencies
@@ -32,18 +32,41 @@ jobs:
run: git submodule update --init --recursive
- name: mkdir
run: mkdir build
+ - name: check for git tag
+ id: check_tag
+ run: |
+ if git describe --exact-match --tags 2>/dev/null; then
+ echo "has_tag=true" >> $GITHUB_OUTPUT
+ else
+ echo "has_tag=false" >> $GITHUB_OUTPUT
+ fi
+ - name: Get short commit hash
+ id: commit
+ run: |
+ SHORT_HASH=$(git rev-parse --short HEAD)
+ echo "short_hash=$SHORT_HASH" >> $GITHUB_OUTPUT
+ - name: Update config.h with commit hash
+ run: |
+ sed -i 's/"local build"/"${{ steps.commit.outputs.short_hash }}"/g' src/config.h
- name: cmake
- run: cd build && cmake -G Ninja -DCMAKE_BUILD_TYPE=Release .. && ninja libresprite
+ run: |
+ cd build
+ if [ "${{ steps.check_tag.outputs.has_tag }}" = "true" ]; then
+ cmake -G Ninja -DCMAKE_BUILD_TYPE=Release -DRELEASE_TAG=ON ..
+ else
+ cmake -G Ninja -DCMAKE_BUILD_TYPE=Release ..
+ fi
+ ninja besprited
- name: appimage
run: |
cd build/bin
export ARCH="$(uname -m)"
sh ../../package_linux.sh
- mv ./LibreSprite-anylinux-$ARCH.AppImage ../../
+ mv ./Besprited-anylinux-$ARCH.AppImage ../../
- name: Archive production artifacts
if: runner.arch == 'X64'
uses: actions/upload-artifact@v4
with:
- name: libresprite-development-linux-x86_64
- path: LibreSprite-anylinux-x86_64.AppImage
+ name: besprited-development-linux-x86_64
+ path: Besprited-anylinux-x86_64.AppImage
if-no-files-found: error
diff --git a/.github/workflows/cmakeMacOs.yml b/.github/workflows/cmakeMacOs.yml
index f8669f209..7dbe20dcc 100644
--- a/.github/workflows/cmakeMacOs.yml
+++ b/.github/workflows/cmakeMacOs.yml
@@ -2,9 +2,9 @@ name: MacOS
on:
push:
- branches: [ master ]
+ branches: [ trunk ]
pull_request:
- branches: [ master ]
+ branches: [ trunk ]
env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
@@ -13,17 +13,15 @@ env:
jobs:
build-arm64:
runs-on: macos-latest
+ if: ${{ !contains(github.event.head_commit.message, 'NO_SW_CHANGE') && !contains(github.event.pull_request.body, 'NO_SW_CHANGE') }}
steps:
- uses: actions/checkout@v3
-
- name: install deps
run: |
brew install gnutls freetype jpeg webp pixman sdl2 sdl2_image tinyxml2 libarchive v8 ninja zlib xmlto dylibbundler
-
- name: git
run: |
git submodule update --init --recursive
-
- name: Build & Install GifLib 4.2.3
run: |
brew install autoconf automake libtool
@@ -33,7 +31,6 @@ jobs:
cd giflib-4.2.3/
./configure
sudo make install -j4
-
- name: Build & Install libpng v1.6.50
run: |
git clone https://github.com/glennrp/libpng -b v1.6.50 --recursive
@@ -41,66 +38,155 @@ jobs:
./configure
make all -j4
sudo make install
-
- name: Download & Lint Info.plist
run: |
- curl -L https://raw.githubusercontent.com/LibreSprite/LibreSprite/master/desktop/Info.plist --output desktop/Info.plist
plutil desktop/Info.plist
-
+ - name: Check for git tag
+ id: check_tag
+ run: |
+ if git describe --exact-match --tags 2>/dev/null; then
+ echo "has_tag=true" >> $GITHUB_OUTPUT
+ else
+ echo "has_tag=false" >> $GITHUB_OUTPUT
+ fi
+ - name: Get short commit hash
+ id: commit
+ run: |
+ SHORT_HASH=$(git rev-parse --short HEAD)
+ echo "short_hash=$SHORT_HASH" >> $GITHUB_OUTPUT
+ - name: Update config.h with commit hash
+ run: |
+ sed -i '' 's/"local build"/"${{ steps.commit.outputs.short_hash }}"/g' src/config.h
- name: Generate Makefiles
run: |
- cmake -S . -B build -G Ninja -DCMAKE_BUILD_TYPE=Release \
- -DUSE_V8_SANDBOX=ON \
- -DCMAKE_OSX_ARCHITECTURES=arm64 \
- -DCMAKE_OSX_SYSROOT=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk
-
+ if [ "${{ steps.check_tag.outputs.has_tag }}" = "true" ]; then
+ cmake -S . -B build -G Ninja -DCMAKE_BUILD_TYPE=Release \
+ -DUSE_V8_SANDBOX=ON \
+ -DRELEASE_TAG=ON \
+ -DCMAKE_OSX_ARCHITECTURES=arm64 \
+ -DCMAKE_OSX_SYSROOT=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk
+ else
+ cmake -S . -B build -G Ninja -DCMAKE_BUILD_TYPE=Release \
+ -DUSE_V8_SANDBOX=ON \
+ -DCMAKE_OSX_ARCHITECTURES=arm64 \
+ -DCMAKE_OSX_SYSROOT=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk
+ fi
- name: Build
run: |
cmake --build build/ --parallel 3
rm -f build/bin/clip_image_tests build/bin/clip_text_tests build/bin/clip_user_format_tests build/bin/gen
-
- name: Generate .icns
run: |
- mkdir libresprite.iconset
- sips -z 16 16 data/icons/ase64.png --out libresprite.iconset/icon_16x16.png
- sips -z 32 32 data/icons/ase64.png --out libresprite.iconset/icon_16x16@2x.png
- sips -z 32 32 data/icons/ase64.png --out libresprite.iconset/icon_32x32.png
- sips -z 64 64 data/icons/ase64.png --out libresprite.iconset/icon_32x32@2x.png
- sips -z 128 128 data/icons/ase64.png --out libresprite.iconset/icon_128x128.png
- sips -z 256 256 data/icons/ase64.png --out libresprite.iconset/icon_128x128@2x.png
- sips -z 256 256 data/icons/ase64.png --out libresprite.iconset/icon_256x256.png
- sips -z 512 512 data/icons/ase64.png --out libresprite.iconset/icon_256x256@2x.png
- sips -z 512 512 data/icons/ase64.png --out libresprite.iconset/icon_512x512.png
- sips -z 1024 1024 data/icons/ase64.png --out libresprite.iconset/icon_512x512@2x.png
- iconutil -c icns -o libresprite.icns libresprite.iconset
- rm -R libresprite.iconset
-
+ mkdir besprited.iconset
+ sips -z 16 16 data/icons/ase64.png --out besprited.iconset/icon_16x16.png
+ sips -z 32 32 data/icons/ase64.png --out besprited.iconset/icon_16x16@2x.png
+ sips -z 32 32 data/icons/ase64.png --out besprited.iconset/icon_32x32.png
+ sips -z 64 64 data/icons/ase64.png --out besprited.iconset/icon_32x32@2x.png
+ sips -z 128 128 data/icons/ase64.png --out besprited.iconset/icon_128x128.png
+ sips -z 256 256 data/icons/ase64.png --out besprited.iconset/icon_128x128@2x.png
+ sips -z 256 256 data/icons/ase64.png --out besprited.iconset/icon_256x256.png
+ sips -z 512 512 data/icons/ase64.png --out besprited.iconset/icon_256x256@2x.png
+ sips -z 512 512 data/icons/ase64.png --out besprited.iconset/icon_512x512.png
+ sips -z 1024 1024 data/icons/ase64.png --out besprited.iconset/icon_512x512@2x.png
+ iconutil -c icns -o besprited.icns besprited.iconset
+ rm -R besprited.iconset
- name: Build Apple Bundle
run: |
mkdir bundle/
- mkdir bundle/libresprite.app
- mkdir bundle/libresprite.app/Contents
- mkdir bundle/libresprite.app/Contents/libs
- mkdir bundle/libresprite.app/Contents/MacOS
- mkdir bundle/libresprite.app/Contents/Resources
- cp ./build/bin/libresprite ./bundle/libresprite.app/Contents/MacOS/
- cp -r ./build/bin/data/ ./bundle/libresprite.app/Contents/MacOS/data/
- cp ./libresprite.icns ./bundle/libresprite.app/Contents/Resources/
- cp ./desktop/Info.plist ./bundle/libresprite.app/Contents/
- chmod +x ./bundle/libresprite.app/Contents/MacOS/libresprite
-
+ mkdir bundle/besprited.app
+ mkdir bundle/besprited.app/Contents
+ mkdir bundle/besprited.app/Contents/libs
+ mkdir bundle/besprited.app/Contents/MacOS
+ mkdir bundle/besprited.app/Contents/Resources
+ cp ./build/bin/besprited ./bundle/besprited.app/Contents/MacOS/
+ cp -r ./build/bin/data/ ./bundle/besprited.app/Contents/Resources/data/
+ cp ./besprited.icns ./bundle/besprited.app/Contents/Resources/
+ cp ./desktop/Info.plist ./bundle/besprited.app/Contents/
+ chmod +x ./bundle/besprited.app/Contents/MacOS/besprited
- name: Put Dylibs
run: |
- dylibbundler -od -b -ns -x ./bundle/libresprite.app/Contents/MacOS/libresprite -d ./bundle/libresprite.app/Contents/libs/
+ dylibbundler -od -b -ns -x ./bundle/besprited.app/Contents/MacOS/besprited -d ./bundle/besprited.app/Contents/libs/
+
+ # Check current RPATH entries after dylibbundler
+ echo "RPATH entries after dylibbundler:"
+ otool -l ./bundle/besprited.app/Contents/MacOS/besprited | grep -A2 LC_RPATH || echo "No RPATH entries found"
+
+ # Clean up any duplicate RPATH entries from the main executable
+ echo "Cleaning up RPATH entries from main executable..."
+ otool -l ./bundle/besprited.app/Contents/MacOS/besprited | grep -A2 LC_RPATH | grep path | awk '{print $2}' | sort | uniq | while read -r rpath; do
+ if [ ! -z "$rpath" ]; then
+ echo "Removing RPATH: $rpath"
+ install_name_tool -delete_rpath "$rpath" ./bundle/besprited.app/Contents/MacOS/besprited 2>/dev/null || echo "Could not remove $rpath (may not exist)"
+ fi
+ done
+
+ # Add our RPATH cleanly
+ echo "Adding single RPATH: @executable_path/../libs/"
+ install_name_tool -add_rpath "@executable_path/../libs/" ./bundle/besprited.app/Contents/MacOS/besprited 2>/dev/null || echo "RPATH may already exist"
+
+ # Verify final RPATH
+ echo "Final RPATH entries:"
+ otool -l ./bundle/besprited.app/Contents/MacOS/besprited | grep -A2 LC_RPATH || echo "No RPATH entries found"
+
+ # Clean up RPATH entries in ALL bundled libraries to be thorough
+ echo "Cleaning RPATH entries from all bundled libraries:"
+ find ./bundle/besprited.app/Contents/libs -name "*.dylib" -type f | while read -r dylib; do
+ echo "Processing: $(basename "$dylib")"
+ otool -l "$dylib" | grep -A2 LC_RPATH | grep path | awk '{print $2}' | sort | uniq | while read -r rpath; do
+ if [ ! -z "$rpath" ]; then
+ echo " Removing RPATH: $rpath"
+ install_name_tool -delete_rpath "$rpath" "$dylib" 2>/dev/null || echo " Could not remove $rpath from $(basename "$dylib")"
+ fi
+ done
+ done
- - name: Create DMG
+ echo "RPATH cleanup complete"
+ - name: Sign Binaries
run: |
- codesign --force --deep -s - ./bundle/libresprite.app
- hdiutil create -volname "LibreSprite" -srcfolder bundle -ov -format UDZO "libresprite.dmg"
+ # Create an entitlements file to disable library validation for ad-hoc signed apps
+ cat > ./bundle_entitlements.plist << EOF
+
+
+
+
+ com.apple.security.cs.disable-library-validation
+
+
+
+ EOF
+
+ # Remove all existing signatures completely
+ find ./bundle/besprited.app -type f \( -name "*.dylib" -o -name "besprited" \) -exec codesign --remove-signature {} \; 2>/dev/null || true
+
+ # Create a temporary signing script to ensure identical codesign parameters
+ cat > ./sign_component.sh << 'EOF'
+ #!/bin/bash
+ COMPONENT="$1"
+ echo "Signing: $COMPONENT"
+ codesign --force --timestamp --options=runtime --entitlements ./bundle_entitlements.plist -s - "$COMPONENT"
+ if [ $? -neq 0 ]; then
+ echo "Failed to sign: $COMPONENT"
+ fi
+ EOF
+ chmod +x ./sign_component.sh
+ # Sign all dylib files first using the same exact process
+ find ./bundle/besprited.app/Contents/libs -name "*.dylib" -exec ./sign_component.sh {} \;
+
+ # Sign the main executable
+ ./sign_component.sh "./bundle/besprited.app/Contents/MacOS/besprited"
+
+ # Sign the app bundle itself (without --deep since components are already signed)
+ codesign --force --timestamp --options=runtime --entitlements ./bundle_entitlements.plist -s - ./bundle/besprited.app
+
+ # Clean up
+ rm ./bundle_entitlements.plist ./sign_component.sh
+ - name: Create DMG
+ run: |
+ hdiutil create -volname "Besprited" -srcfolder bundle -ov -format UDZO "besprited.dmg"
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: macos-arm64
- path: libresprite.dmg
+ path: besprited.dmg
if-no-files-found: error
diff --git a/.github/workflows/cmakeWin64.yml b/.github/workflows/cmakeWin64.yml
index 6f1753e74..129ac179f 100644
--- a/.github/workflows/cmakeWin64.yml
+++ b/.github/workflows/cmakeWin64.yml
@@ -2,15 +2,14 @@ name: Windows x86_64
on:
push:
- branches: [ master ]
+ branches: [ trunk ]
pull_request:
- branches: [ master ]
+ branches: [ trunk ]
jobs:
build:
-
runs-on: windows-latest
-
+ if: ${{ !contains(github.event.head_commit.message, 'NO_SW_CHANGE') && !contains(github.event.pull_request.body, 'NO_SW_CHANGE') }}
steps:
- uses: msys2/setup-msys2@v2
with:
@@ -37,22 +36,44 @@ jobs:
mingw-w64-x86_64-v8
mingw-w64-x86_64-zlib
mingw-w64-x86_64-libarchive
-
- uses: actions/checkout@v3
with:
submodules: 'true'
+ - name: Check for git tag
+ id: check_tag
+ shell: bash
+ run: |
+ if git describe --exact-match --tags 2>/dev/null; then
+ echo "has_tag=true" >> $GITHUB_OUTPUT
+ else
+ echo "has_tag=false" >> $GITHUB_OUTPUT
+ fi
+ - name: Get short commit hash
+ id: commit
+ shell: bash
+ run: |
+ SHORT_HASH=$(git rev-parse --short HEAD)
+ echo "short_hash=$SHORT_HASH" >> $GITHUB_OUTPUT
+ - name: Update config.h with commit hash
+ shell: bash
+ run: |
+ sed -i 's/#define COMMIT "local build"/#define COMMIT "${{ steps.commit.outputs.short_hash }}"/g' src/config.h
- shell: msys2 {0}
run: |
mkdir build
cd build
- cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release -DUSE_V8_SANDBOX=ON ..
+ if [ "${{ steps.check_tag.outputs.has_tag }}" = "true" ]; then
+ cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release -DUSE_V8_SANDBOX=ON -DRELEASE_TAG=ON ..
+ else
+ cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release -DUSE_V8_SANDBOX=ON ..
+ fi
make -j 4
cd ..
rm build/bin/gen.exe
- node package_win.js build/bin/libresprite.exe
+ node package_win.js build/bin/besprited.exe
- name: Archive production artifacts
uses: actions/upload-artifact@v4
with:
- name: libresprite-development-windows-x86_64
+ name: besprited-development-windows-x86_64
path: |
build/bin/*
diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml
index 55a0dad87..7e96456eb 100644
--- a/.github/workflows/codeql-analysis.yml
+++ b/.github/workflows/codeql-analysis.yml
@@ -13,40 +13,36 @@ name: "CodeQL"
on:
push:
- branches: [ master ]
+ branches: [ trunk ]
pull_request:
# The branches below must be a subset of the branches above
- branches: [ master ]
+ branches: [ trunk ]
schedule:
- cron: '30 21 * * 0'
-
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
+ if: ${{ !contains(github.event.head_commit.message, 'NO_SW_CHANGE') && !contains(github.event.pull_request.body, 'NO_SW_CHANGE') }}
permissions:
actions: read
contents: read
security-events: write
-
strategy:
fail-fast: false
matrix:
- language: [ 'cpp', 'javascript' ]
+ language: [ 'cpp', 'javascript', 'python' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ]
# Learn more:
# https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed
-
steps:
- name: Checkout repository
uses: actions/checkout@v3
-
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
- uses: github/codeql-action/init@v1
+ uses: github/codeql-action/init@v4
with:
languages: ${{ matrix.language }}
-
- uses: actions/checkout@v3
# install dependencies
- name: update
@@ -61,7 +57,6 @@ jobs:
- name: mkdir
run: mkdir build
- name: cmake
- run: cd build && cmake -G Ninja .. && ninja libresprite
-
+ run: cd build && cmake -G Ninja .. && ninja besprited
- name: Perform CodeQL Analysis
- uses: github/codeql-action/analyze@v1
+ uses: github/codeql-action/analyze@v4
diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml
new file mode 100644
index 000000000..8e3a59e9d
--- /dev/null
+++ b/.github/workflows/static-analysis.yml
@@ -0,0 +1,108 @@
+name: Static Code Analysis
+
+on:
+ push:
+ branches: [ trunk ]
+ pull_request:
+ branches: [ trunk ]
+
+env:
+ BUILD_TYPE: Debug
+
+jobs:
+ cppcheck:
+ runs-on: ubuntu-latest
+ if: ${{ contains(github.event.head_commit.message, 'PERFORM_CA') || contains(github.event.pull_request.body, 'PERFORM_CA') }}
+ permissions:
+ contents: read
+
+ steps:
+ - uses: actions/checkout@v3
+
+ - name: Install cppcheck
+ run: sudo apt-get update && sudo apt-get install -y cppcheck
+
+ - name: Install dependencies
+ run: |
+ sudo apt-get install -y g++ libcurl4-gnutls-dev libfreetype6-dev libgif-dev libgtest-dev libjpeg-dev libpixman-1-dev libpng-dev libsdl2-dev libsdl2-image-dev libtinyxml2-dev libwebp-dev libx11-dev libxcursor-dev ninja-build libnode-dev zlib1g-dev libarchive-dev
+ pip install cmake
+
+ - name: Git submodules
+ run: git submodule update --init --recursive
+
+ - name: Configure CMake
+ run: mkdir build && cd build && cmake -G Ninja -DCMAKE_BUILD_TYPE=$BUILD_TYPE ..
+
+ - name: Build the project (required to generate *.xml.h files)
+ run: cd build && ninja besprited
+
+ - name: Run cppcheck
+ run: cd build && cmake --build . --target cppcheck
+ continue-on-error: true
+
+ clang-tidy:
+ runs-on: ubuntu-latest
+ if: ${{ contains(github.event.head_commit.message, 'PERFORM_CA') || contains(github.event.pull_request.body, 'PERFORM_CA') }}
+ permissions:
+ contents: read
+
+ steps:
+ - uses: actions/checkout@v3
+
+ - name: Install clang-tidy
+ run: sudo apt-get update && sudo apt-get install -y clang-tidy
+
+ - name: Install dependencies
+ run: |
+ sudo apt-get install -y g++ libcurl4-gnutls-dev libfreetype6-dev libgif-dev libgtest-dev libjpeg-dev libpixman-1-dev libpng-dev libsdl2-dev libsdl2-image-dev libtinyxml2-dev libwebp-dev libx11-dev libxcursor-dev ninja-build libnode-dev zlib1g-dev libarchive-dev
+ pip install cmake
+
+ - name: Git submodules
+ run: git submodule update --init --recursive
+
+ - name: Configure CMake
+ run: mkdir build && cd build && cmake -G Ninja -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCMAKE_EXPORT_COMPILE_COMMANDS=ON ..
+
+ - name: Build the project (required to generate *.xml.h files)
+ run: cd build && ninja besprited
+
+ - name: Run clang-tidy
+ run: cd build && cmake --build . --target clang-tidy
+ continue-on-error: true
+
+ gcc-analyzer:
+ runs-on: ubuntu-latest
+ if: ${{ contains(github.event.head_commit.message, 'PERFORM_CA') || contains(github.event.pull_request.body, 'PERFORM_CA') }}
+ permissions:
+ contents: read
+
+ steps:
+ - uses: actions/checkout@v3
+
+ - name: Install GCC (ensure version with -fanalyzer support)
+ run: |
+ sudo apt-get update
+ sudo apt-get install -y gcc-10 g++-10
+ sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 100
+ sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-10 100
+
+ - name: Verify GCC version
+ run: gcc --version && g++ --version
+
+ - name: Install dependencies
+ run: |
+ sudo apt-get install -y libcurl4-gnutls-dev libfreetype6-dev libgif-dev libgtest-dev libjpeg-dev libpixman-1-dev libpng-dev libsdl2-dev libsdl2-image-dev libtinyxml2-dev libwebp-dev libx11-dev libxcursor-dev ninja-build libnode-dev zlib1g-dev libarchive-dev
+ pip install cmake
+
+ - name: Git submodules
+ run: git submodule update --init --recursive
+
+ - name: Configure CMake
+ run: mkdir build && cd build && cmake -G Ninja -DCMAKE_BUILD_TYPE=$BUILD_TYPE ..
+
+ - name: Build the project (required to generate *.xml.h files)
+ run: cd build && ninja besprited
+
+ - name: Run GCC with -fanalyzer
+ run: cd build && cmake --build . --target gcc-analyzer
+ continue-on-error: true
diff --git a/.gitignore b/.gitignore
index b2ac38c22..09e58908d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -12,15 +12,70 @@
*.res
*.vs
-# CMake output
+# --- CMake output
build
-# Snap related
+# --- Snap related
/parts
/prime
/stage
/*.snap
/snap/.snapcraft/
/.cache/
-*~
/android/
+
+# --- JetBrains IDEs (IntelliJ, CLion, Rider, PhpStorm, WebStorm, etc.)
+.idea/
+*.iml
+*.iws
+*.ipr
+
+# --- Visual Studio Code
+.vscode/
+
+# --- Visual Studio
+.vs/
+*.VC.db
+*.VC.VC.opendb
+*.user
+*.userosscache
+*.sln.docstates
+*.vcxproj.user
+
+# --- Xcode / macOS
+.DS_Store
+.AppleDouble
+.LSOverride
+._*
+.Spotlight-V100
+.Trashes
+.VolumeIcon.icns
+.fseventsd/
+*.xcworkspace
+*.xcuserstate
+*.xcuserdatad
+*.xcuserdata
+
+# --- CMake generated files
+CMakeFiles/
+CMakeCache.txt
+cmake_install.cmake
+Makefile
+compile_commands.json
+
+# --- Windows garbage / temp
+Thumbs.db
+ehthumbs.db
+Desktop.ini
+$RECYCLE.BIN/
+
+# --- Editor swap / temp files
+*.swp
+*.swo
+*~
+*.tmp
+*.temp
+*.cache
+
+# --- GitHub CodeQL
+_codeql_detected_source_root/
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 192a69ee7..46fdc0c61 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,5 +1,6 @@
# Aseprite | Copyright (C) 2001-2016 David Capello
# LibreSprite | Copyright (C) 2022 LibreSprite contributors
+# Besprited | Copyright (C) 2026 Veritaware
cmake_minimum_required(VERSION 4.1)
@@ -16,8 +17,8 @@ endif()
# Note: This needs to be done before the project command
set(CMAKE_CONFIGURATION_TYPES "${CMAKE_BUILD_TYPE}" CACHE INTERNAL "internal")
-# LibreSprite project
-project(libresprite C CXX)
+# Besprited project
+project(besprited C CXX)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
set(CMAKE_CXX_STANDARD 20)
@@ -107,6 +108,37 @@ list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
# Put libraries into "lib".
set(LIBRARY_OUTPUT_PATH ${CMAKE_BINARY_DIR}/lib)
+######################################################################
+# Check if current commit has a git tag (for release builds)
+
+option(RELEASE_TAG "Mark as release build (set VERSION to stable)" off)
+
+if(NOT RELEASE_TAG)
+ # Try to detect if current commit has a tag
+ find_package(Git QUIET)
+ if(GIT_FOUND)
+ execute_process(
+ COMMAND ${GIT_EXECUTABLE} describe --exact-match --tags
+ WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
+ OUTPUT_VARIABLE GIT_TAG
+ RESULT_VARIABLE GIT_TAG_RESULT
+ ERROR_QUIET
+ OUTPUT_STRIP_TRAILING_WHITESPACE
+ )
+ if(GIT_TAG_RESULT EQUAL 0 AND GIT_TAG)
+ message(STATUS "Git tag found: ${GIT_TAG}")
+ set(RELEASE_TAG ON CACHE BOOL "Mark as release build (set VERSION to stable)" FORCE)
+ endif()
+ endif()
+endif()
+
+if(RELEASE_TAG)
+ message(STATUS "Building as RELEASE version")
+ add_definitions(-DRELEASE_TAG)
+else()
+ message(STATUS "Building as DEVELOPMENT version")
+endif()
+
######################################################################
# Common definitions to compile all sources (app code and third party)
@@ -370,3 +402,74 @@ add_subdirectory(src)
# Third party libraries
add_subdirectory(third_party)
+
+######################################################################
+# Static code analysis targets
+
+# cppcheck target
+find_program(CPPCHECK_EXECUTABLE cppcheck)
+if(CPPCHECK_EXECUTABLE)
+ add_custom_target(cppcheck
+ COMMAND ${CPPCHECK_EXECUTABLE}
+ --enable=all
+ --suppress=missingIncludeSystem
+ --suppress=unmatchedSuppression
+ --inline-suppr
+ --error-exitcode=1
+ --std=c++20
+ -I ${CMAKE_SOURCE_DIR}/src
+ -I ${CMAKE_SOURCE_DIR}/third_party
+ ${CMAKE_SOURCE_DIR}/src
+ WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
+ COMMENT "Running cppcheck static analysis"
+ VERBATIM
+ )
+ message(STATUS "cppcheck found: ${CPPCHECK_EXECUTABLE}")
+else()
+ message(STATUS "cppcheck not found - target 'cppcheck' will not be available")
+endif()
+
+# clang-tidy target
+find_program(CLANG_TIDY_EXECUTABLE clang-tidy)
+if(CLANG_TIDY_EXECUTABLE)
+ # Get list of source files
+ file(GLOB_RECURSE ALL_SOURCE_FILES
+ ${CMAKE_SOURCE_DIR}/src/*.cpp
+ ${CMAKE_SOURCE_DIR}/src/*.cc
+ ${CMAKE_SOURCE_DIR}/src/*.c
+ )
+
+ add_custom_target(clang-tidy
+ COMMAND ${CLANG_TIDY_EXECUTABLE}
+ -p=${CMAKE_BINARY_DIR}
+ ${ALL_SOURCE_FILES}
+ WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
+ COMMENT "Running clang-tidy static analysis"
+ VERBATIM
+ )
+ message(STATUS "clang-tidy found: ${CLANG_TIDY_EXECUTABLE}")
+else()
+ message(STATUS "clang-tidy not found - target 'clang-tidy' will not be available")
+endif()
+
+# gcc-analyzer target
+# Note: This target builds the 'besprited' executable with GCC's -fanalyzer flag.
+# If analyzing different targets is needed, modify the --target argument below.
+if(CMAKE_COMPILER_IS_GNUCXX)
+ add_custom_target(gcc-analyzer
+ COMMAND ${CMAKE_COMMAND} -E echo "Building with GCC -fanalyzer..."
+ COMMAND ${CMAKE_COMMAND}
+ -DCMAKE_BUILD_TYPE=Debug
+ -DCMAKE_CXX_FLAGS="-fanalyzer"
+ -DCMAKE_C_FLAGS="-fanalyzer"
+ -B${CMAKE_BINARY_DIR}/analyzer_build
+ -S${CMAKE_SOURCE_DIR}
+ COMMAND ${CMAKE_COMMAND} --build ${CMAKE_BINARY_DIR}/analyzer_build --target besprited
+ WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
+ COMMENT "Running GCC with -fanalyzer flag"
+ VERBATIM
+ )
+ message(STATUS "GCC compiler found: ${CMAKE_CXX_COMPILER}")
+else()
+ message(STATUS "GCC compiler not found - target 'gcc-analyzer' will not be available")
+endif()
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 859f8a436..4c1b881b0 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -1,37 +1,20 @@
# Contributing
-## Code
-Contributing code is very easy to do once you get the hang of it. We use GitHub for our online repository and issue tracker, so you'll need an account first. After you've done that and are comfortable with how the platform and git itself works, read on.
+## Branching Model
+We use the following branch structure to manage development:
+- `trunk`: This is the development branch for Besprited. All new features and bug fixes are merged here first.
+- `ls-develop`: This branch should track the latest changes from LibreSprite's `master` branch.
+ We periodically merge changes from LibreSprite into our `trunk` branch to stay up-to-date with their developments
+ and our repo maintainers use this branch as a base to create any feature or bug fix branches that are shared with LibreSprite's codebase.
-### Set Up Your Repository
-1. Fork [LibreSprite](https://github.com/LibreSprite/LibreSprite) so you have a personal repository to push to.
-2. Clone your personal repository with `git clone --recursive https://github.com/YOUR-USERNAME/LibreSprite`. Remember to change the URL to your repository's. The `--recursive` is used to download the third party libraries for building.
-3. Move into the directory, on Linux this is done with `cd LibreSprite`.
-4. Follow the [instructions](INSTALL.md) to create a build and make sure your local copy is working.
-5. Add an upstream remote so you can get other developer's updates with `git remote add upstream https://github.com/LibreSprite/LibreSprite`.
+### Note for repo collaborators:
+User branches for features and fixes created directly against the `veritaware:Besprited` repository should follow the naming convention:
+`username/short-description`, for example: `nidrax/v8-build-fix-windows`.
-### Updating Your Repository
-These instructions will update both your local repository and online fork.
-1. `git fetch upstream` Will download any new changes from the official LibreSprite repository.
-2. `git checkout master` Will switch to your master branch.
-3. `git merge upstream/master` Will merge or fast-forward your local master branch so it contains all the updates.
-4. `git push origin master` Will update your online repository's master branch, it's a good idea to keep it up to date.
-
-### Making Changes
-To make a contribution you will need to make a feature branch. This greatly simplifies adding your code to the official repository, and it ensures the master branch is always working. As a heads up, it's best to let us know what you're working on by commenting on or creating an [issue](https://github.com/LibreSprite/LibreSprite/issues), this way we all save time by working on different things.
-1. Call `git checkout master`, always make sure you are on master before making a feature branch.
-2. Call `git checkout -b name-of-your-feature` This will create a feature branch and switch to it. Try to be specific in your feature name, this helps track it down in the future if we need to.
-3. Make a meaningful change, you don't want to implement the whole feature in one shot generally. Try to break your task into meaningful (and revertible) chunks, though sometimes one chunk is all it takes like with small bug fixes.
-4. To create a commit, start by verifying with `git status` that only files you wanted to change are effected. If there are unexpected changes, please resolve them before continuing.
-5. Stage all of your changes with `git add -A`.
-6. Create your commit with `git commit -m "Type a precise description of only the changes made with this commit."` Try to describe the changes like it's a change log (hint, it is). Messages like "Convert 'bool' members in ui::Widget to flags" are what we're after.
-7. Repeat steps 2-5 until the feature is complete.
-
-### Pushing Changes
-You are ready for your contribution to be reviewed and merged. There are a few things you can do to make this easier for maintainers to review your code, so please follow all steps.
-1. Follow the instructions for Updating Your Repository.
-2. Switch back to your feature branch with `git checkout name-of-your-feature`.
-3. Rebase your branch with `git rebase master`, this will make sure there are no conflicts with other people's contributions.
-4. Rebuild your project to make sure everything still works. If things are now broken, resolve them, making commits along the way. Once resolved, return to step 1 as more changes could have been made in the meantime.
-5. Push your branch to your online fork with `git push origin name-of-your-feature`.
-6. On GitHub, create a pull request for your feature branch.
+## Commit Messages and Pull Requests
+When committing changes, follow these guidelines:
+- Use imperative mood in the subject line (e.g., "Fix bug" instead of "Fixed bug" or "Fixes bug").
+- Keep the subject line concise (50 characters or fewer) and provide a more detailed description in the body if necessary.
+- If the commit or pull request closes an issue, include a reference to the issue number in the commit message or pull request description (e.g., "Fixes #123").
+- If the commit or pull requst does not introduce changes to the source code itself (e.g., documentation, helper scripts, issue templates, etc.)
+ add the `NO_SW_CHANGE` line to the end of the commit message or pull request description body to skip GitHub build workflows.
\ No newline at end of file
diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md
deleted file mode 100644
index a91653dc6..000000000
--- a/CONTRIBUTORS.md
+++ /dev/null
@@ -1,31 +0,0 @@
-# Contributors to LibreSprite
-* Add your name here!
-
-## Shout-outs
-LibreSprite includes color palettes created by:
-* [Richard "DawnBringer" Fhager](http://pixeljoint.com/p/23821.htm) palettes, [16 colors](http://pixeljoint.com/forum/forum_posts.asp?TID=12795), [32 colors](http://pixeljoint.com/forum/forum_posts.asp?TID=16247).
-* [Arne Niklas Jansson](http://androidarts.com/) palettes, [16 colors](http://androidarts.com/palette/16pal.htm), [32 colors](http://wayofthepixel.net/index.php?topic=15824.msg144494).
-
-It tries to replicate some pixel-art algorithms:
-* [RotSprite](http://forums.sonicretro.org/index.php?showtopic=8848&st=15&p=159754entry159754) by Xenowhirl.
-* [Pixel perfect drawing algorithm](http://deepnight.net/pixel-perfect-drawing/) by [Sébastien Bénard](https://twitter.com/deepnightfr) and [Carduus](https://twitter.com/CarduusHimself/status/420554200737935361).
-
-And it uses the following third-party libraries:
-
-* [curl](http://curl.haxx.se/) (curl)
-* [duktape](https://duktape.org) (MIT)
-* [freetype](https://www.freetype.org) (FTL)
-* [giflib](http://giflib.sourceforge.net) (MIT)
-* [gtest](https://github.com/google/googletest) (BSD-3-Clause)
-* [libjpeg](http://libjpeg.sourceforge.net) (IJG)
-* [libpng](http://www.libpng.org) (Libpng)
-* [libwebp](https://developers.google.com/speed/webp) (BSD-3-Clause)
-* [libx11](https://xorg.freedesktop.org) (XFree86)
-* [libxcursor](https://xorg.freedesktop.org) (MIT)
-* loadpng (Zlib)
-* modp\_b64 (BSD)
-* [pixman](http://www.pixman.org) (MIT)
-* [sdl2](https://www.libsdl.org) (Zlib)
-* [simpleini](https://github.com/aseprite/simpleini) (MIT)
-* [tinyxml2](https://github.com/leethomason/tinyxml2) (Zlib)
-* [zlib](https://www.zlib.net) (Zlib)
diff --git a/INSTALL.md b/INSTALL.md
index 1f345ea20..9464ab03f 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -14,19 +14,20 @@
* [MacOS details](#macos-details)
* [Android details](#android-details)
* [Installing](#installing)
+* [Static Code Analysis](#static-code-analysis)
## Platforms
-You can download installers from the [website](https://libresprite.github.io/).
-If you want to compile LibreSprite from source, continue reading.
+You can download installers from the [releases page](https://github.com/Veritaware/Besprited/releases).
+If you want to compile Besprited from source, continue reading.
-You should be able to compile LibreSprite on the following platforms:
+You should be able to compile Besprited on the following platforms:
* Windows 10 + VS2015 Community Edition + Windows 10 SDK
* Mac OS X 11.0 Big Sur + Xcode 7.3 + OS X 11.0 SDK
* Linux + GCC 8.5 or higher with C++14 support
-To compile LibreSprite you will need:
+To compile Besprited you will need:
* [CMake](http://www.cmake.org/) (3.4 or greater)
* [Ninja](https://ninja-build.org)
@@ -36,20 +37,20 @@ To compile LibreSprite you will need:
Clone the repository and its submodules using the following command:
- git clone --recursive https://github.com/LibreSprite/LibreSprite
+ git clone --recursive https://github.com/Veritaware/Besprited
(You can use [Git for Windows](https://git-for-windows.github.io/) to
clone the repository on Windows.)
To update an existing clone, use the following commands:
- cd LibreSprite
+ cd Besprited
git pull
git submodule update --init --recursive
## Dependencies
-You'll need the following dependencies to compile LibreSprite:
+You'll need the following dependencies to compile Besprited:
### Linux dependencies
@@ -78,22 +79,22 @@ In a terminal, install the dependencies using brew:
First, create the `build` directory with the following commands:
- cd LibreSprite
+ cd Besprited
mkdir build
cd build
Then following the platform-specific instructions for compiling below.
The `build` directory will contain the results of the compilation process.
-If you want to build a fresh copy of LibreSprite, remove the `build` directory
+If you want to build a fresh copy of Besprited, remove the `build` directory
and recompile.
### Linux details
-To compile LibreSprite, run the following commands:
+To compile Besprited, run the following commands:
cmake -G Ninja ..
- ninja libresprite
+ ninja besprited
### Windows details
@@ -103,26 +104,70 @@ Run the following in mingw32.exe:
### MacOS details
-To compile LibreSprite, run the following commands:
+To compile Besprited, run the following commands:
```
cmake \
-DCMAKE_OSX_SYSROOT=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk \
-G Ninja \
..
- ninja libresprite
+ ninja besprited
```
### Android details
Before you can make an Android build, you must make a native build for your OS,
so follow the appropriate instructions above. Once that is done, download
-https://github.com/LibreSprite/ls-android-deps as android/ in the LibreSprite
+https://github.com/LibreSprite/ls-android-deps as android/ in the Besprited
directory. Now you can open the android subdirectory in Android Studio and build
-LibreSprite for Android.
+Besprited for Android.
## Installing
-Once you've finished compiling, you can install LibreSprite by running the
+Once you've finished compiling, you can install Besprited by running the
following command from the `build` directory:
ninja install
+
+## Static Code Analysis
+
+Besprited includes build targets for running static code analysis tools. These targets help maintain code quality by detecting potential bugs, security vulnerabilities, and code style issues.
+
+### Available Analysis Targets
+
+From the `build` directory, you can run the following analysis targets:
+
+**cppcheck** - Runs cppcheck static analysis:
+
+ cmake --build . --target cppcheck
+
+Requires: [cppcheck](http://cppcheck.sourceforge.net/) to be installed on your system.
+
+**clang-tidy** - Runs clang-tidy static analysis:
+
+ cmake --build . --target clang-tidy
+
+Requires: clang-tidy to be installed on your system.
+
+**gcc-analyzer** - Builds with GCC's `-fanalyzer` flag:
+
+ cmake --build . --target gcc-analyzer
+
+Requires: GCC 10 or higher (which includes the `-fanalyzer` feature).
+
+### Installing Analysis Tools
+
+**Linux (Debian/Ubuntu):**
+
+ sudo apt-get install cppcheck clang-tidy gcc-10 g++-10
+
+**Linux (Fedora):**
+
+ sudo dnf install cppcheck clang-tools-extra gcc
+
+**MacOS:**
+
+ brew install cppcheck llvm gcc
+
+**Windows (MSYS2):**
+
+ pacman -S mingw-w64-i686-cppcheck mingw-w64-i686-clang-tools-extra mingw-w64-i686-gcc
diff --git a/README.md b/README.md
index 6bd10c76f..8097033dc 100644
--- a/README.md
+++ b/README.md
@@ -1,8 +1,10 @@
-# LibreSprite [](https://liberapay.com/LibreSprite/)
-[](https://github.com/LibreSprite/LibreSprite/actions/workflows/cmakeLinux.yml) [](https://github.com/LibreSprite/LibreSprite/actions/workflows/cmakeWin64.yml) [](https://github.com/LibreSprite/LibreSprite/actions/workflows/cmakeMacOs.yml) [](https://github.com/LibreSprite/LibreSprite/actions/workflows/cmakeAndroid.yml)
+
## Introduction
-LibreSprite is a free and open source program for creating and animating your sprites.
+[](https://discord.gg/bKYnjMsp62)
+[](https://ko-fi.com/veritaware)
+
+Besprited is a free and open source program for creating and animating 2D sprites. It features:
* Real-time animation previews.
* Onion skinning.
* Multiple sprites can be edited at once.
@@ -13,24 +15,38 @@ LibreSprite is a free and open source program for creating and animating your sp
* Several file types supported for your sprites and animations.
## Download
-Get the [latest release](https://github.com/LibreSprite/LibreSprite/releases/latest) for Linux, MacOS, Windows or Android.
+Get the [latest release](https://github.com/Veritaware/Besprited/releases/latest) for Linux, macOS, Windows or Android.
## History
-LibreSprite originated as a fork of [Aseprite](https://www.aseprite.org), developed by [David Capello](https://github.com/dacap). Aseprite used to be distributed under the GNU General Public License version 2, but was moved to a proprietary license on [August 26th, 2016](https://github.com/aseprite/aseprite/commit/5ecc356a41c8e29977f8608d8826489d24f5fa6c).
+It all started with [Aseprite](https://www.aseprite.org), developed by [David Capello](https://github.com/dacap).
+Aseprite used to be distributed under the GNU General Public License version 2,
+but was moved to a proprietary license on [August 26th, 2016](https://github.com/aseprite/aseprite/commit/5ecc356a41c8e29977f8608d8826489d24f5fa6c).
+
+Aa a response to that, [LibreSprite](https://github.com/LibreSprite/LibreSprite) was created as a fork of the last
+GPLv2-licensed version of Aseprite, to continue its development as a free and open source project.
+The work has been branched-out from the [last Aseprite commit](https://github.com/aseprite/aseprite/commit/03be4aa23db465219962f4c62410f628e7392545) covered by the GPL version 2 license,
+and is now developed independently of Aseprite.
+
+In 2026 [Nidrax](https://github.com/Nidrax) forked the project under the [Veritaware](https://github.com/veritaware)
+organization to create his own opinionated version of the editor independently of LibreSprite's team design decisions
+and thus Besprited was born.
-This fork was made on the [last commit](https://github.com/aseprite/aseprite/commit/03be4aa23db465219962f4c62410f628e7392545) covered by the GPL version 2 license, and is now developed independently of Aseprite.
+### And why *Besprited*?
+Because this project is BS. What other reason did you expect?
## Contributing
-As LibreSprite has a newly budding community, we need help building the infrastructure of our development, support, and news networks. If you would like to help, please make yourself known at our [Discord](https://discord.gg/95gbyU5) or [Matrix](https://matrix.to/#/%23libresprite:matrix.org), and checkout our guide on [contributing](CONTRIBUTING.md).
+Feel free to contribute to the project! Check out the [contributing guidelines](CONTRIBUTING.md) to get started.
## Compiling
-Don't worry, it isn't as hard as you might think! Just follow the instructions [here](INSTALL.md).
+Follow the [installation guide](INSTALL.md).
## Theming
-Don't like the default look of LibreSprite? Don't panic, you can download from the LibreSprite [resources](https://libresprite.github.io/#!/resources) repo.
+The app is compatible with LibreSprite themes you can find [here](https://libresprite.github.io/#!/resources).
## License
This program is distributed under the [GNU General Public License Version 2](LICENSE.txt).
## Credits
-An ***enormous*** thank you to the original developers of [Aseprite](https://www.aseprite.org), without them and their original licensing this project wouldn’t exist. Additional shout-outs are given in the [list of contributors](CONTRIBUTORS.md). If you have submitted work to LibreSprite and would like to have your name on the list, please create a pull request or get in touch and we’ll make it happen.
+An ***enormous*** thank you to the original developers of [Aseprite](https://www.aseprite.org),
+without them and their original licensing this project wouldn’t exist.
+And also huge thanks to all the [LibreSprite contributors](https://github.com/LibreSprite/LibreSprite/blob/master/CONTRIBUTORS.md) who have worked hard to create a base for this project to build upon.
diff --git a/SCRIPTING.md b/SCRIPTING.md
index 1e923ecde..62cfa37a2 100644
--- a/SCRIPTING.md
+++ b/SCRIPTING.md
@@ -901,7 +901,7 @@
# global app [class App]
## Properties:
- `platform`: read-only. Returns one of: emscripten, windows, macos, android, linux.
- - `version`: read-only. Returns LibreSprite's current version as a string.
+ - `version`: read-only. Returns Besprited's current version as a string.
- `activeDocument`: read-only. Returns the currently active Document.
- `command`: read-only. Returns an object with functions for running commands.
- `activeSprite`: read-only. Returns the currently active Sprite.
@@ -1833,7 +1833,7 @@
# global app [class App]
## Properties:
- `platform`: read-only. Returns one of: emscripten, windows, macos, android, linux.
- - `version`: read-only. Returns LibreSprite's current version as a string.
+ - `version`: read-only. Returns Besprited's current version as a string.
- `activeDocument`: read-only. Returns the currently active Document.
- `command`: read-only. Returns an object with functions for running commands.
- `activeSprite`: read-only. Returns the currently active Sprite.
diff --git a/SECURITY.md b/SECURITY.md
index aeb5bdb2e..2a13d6ffd 100644
--- a/SECURITY.md
+++ b/SECURITY.md
@@ -3,20 +3,22 @@
## Supported Versions
| Version | Supported |
-| ------- | ------------------ |
-| 1.0 | :white_check_mark: |
-
+|---------| ------------------ |
+| 1.26.x | :white_check_mark: |
## Reporting a Vulnerability
-If a vulnerability has been found:
+For reporting a security vulnerability, go to the [Issues page](https://github.com/veritaware/Besprited/issues),
+click "New Issue", and select the "Code quality" template.
+
+
+
+Please provide as much detail as possible, including the lines of code that are vulnerable,
+and any relevant technical information about the vulnerability.
-1. Go to the issues tab: https://github.com/LibreSprite/LibreSprite/issues
-2. Write a full description of the problem
-3. Add some screenshots and write your operating system version and device specifications
+
+Remeber to add the `👮security` label to the issue before creating the ticket so it can be easily tracked.
-If there wasn't a response from the developers for a long period of time, you can go to the following links:
-https://discord.com/invite/95gbyU5
-https://www.reddit.com/r/LibreSprite/
+
\ No newline at end of file
diff --git a/Theming.md b/Theming.md
index 22e781ba2..8ba0f79f3 100644
--- a/Theming.md
+++ b/Theming.md
@@ -1,6 +1,6 @@
# Theming
-If you don't like the default look of LibreSprite, DON'T PANIC, there's plenty of community made themes that make the app looks awesome.
+If you don't like the default look of Besprited, DON'T PANIC, there's plenty of community made themes that make the app looks awesome.
@@ -25,15 +25,15 @@ Well, most of the available themes can be found [here](https://libresprite.githu
## How to Install?
-Simple, download the .zip archive, extract and copy to the /data/skins part of the directory where libresprite.exe is.
+Simple, download the .zip archive, extract and copy to the /data/skins part of the directory where besprited.exe is.
-Then open LibreSprite up, go to Edit, Preferences and go to the Theme tab.
+Then open Besprited, go to Edit, Preferences and go to the Theme tab.
Select the theme that you just put into the /data/skins folder, and click Select in the bottom left.

-Restart LibreSprite to see the changes.
+Restart Besprited to see the changes.
@@ -47,6 +47,6 @@ Well, just go back to the Themes tab in Preferences, and select a different them
-**NOTE: DO NOT DELETE THE FILES BEFORE YOU CHANGE THE THEME** If this does happen, simply copy the original, call it the same as the deleted theme and launch LibreSprite again.
+**NOTE: DO NOT DELETE THE FILES BEFORE YOU CHANGE THE THEME** If this does happen, simply copy the original, call it the same as the deleted theme and launch Besprited again.
-If this doesn't fix it, then, you'll need to reinstall the theme and try again the steps above, or reinstall LibreSprite.
+If this doesn't fix it, then, you'll need to reinstall the theme and try again the steps above, or reinstall Besprited.
diff --git a/data/fonts/OFL.txt b/data/fonts/OFL.txt
index 617302f4f..6b89656c1 100644
--- a/data/fonts/OFL.txt
+++ b/data/fonts/OFL.txt
@@ -1,4 +1,6 @@
-Copyright 2022 The Noto Project Authors (https://github.com/notofonts)
+Noto Sans: Copyright 2022 The Noto Project Authors (https://github.com/notofonts)
+Tiny5: Copyright 2022-2024 The Tiny5 Project Authors (https://github.com/Gissio/font_tiny5)
+Pixeloid Mono: Copyright 2021-2025 The GGBotNet Project Authors (https://www.ggbot.net)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
diff --git a/data/fonts/font.ttf b/data/fonts/font.ttf
deleted file mode 100644
index fa4cff505..000000000
Binary files a/data/fonts/font.ttf and /dev/null differ
diff --git a/data/fonts/font-ar.ttf b/data/fonts/noto-ar.ttf
similarity index 100%
rename from data/fonts/font-ar.ttf
rename to data/fonts/noto-ar.ttf
diff --git a/data/fonts/font-jp.ttf b/data/fonts/noto-jp.ttf
similarity index 100%
rename from data/fonts/font-jp.ttf
rename to data/fonts/noto-jp.ttf
diff --git a/data/fonts/font-kr.ttf b/data/fonts/noto-kr.ttf
similarity index 100%
rename from data/fonts/font-kr.ttf
rename to data/fonts/noto-kr.ttf
diff --git a/data/fonts/font-zh.ttf b/data/fonts/noto-zh.ttf
similarity index 100%
rename from data/fonts/font-zh.ttf
rename to data/fonts/noto-zh.ttf
diff --git a/data/fonts/pixeloid-sans.ttf b/data/fonts/pixeloid-sans.ttf
new file mode 100644
index 000000000..2469e5b1c
Binary files /dev/null and b/data/fonts/pixeloid-sans.ttf differ
diff --git a/data/fonts/tiny5.ttf b/data/fonts/tiny5.ttf
new file mode 100644
index 000000000..635fe079f
Binary files /dev/null and b/data/fonts/tiny5.ttf differ
diff --git a/data/gui.xml b/data/gui.xml
index cdd5d1bcf..08b8aaeef 100644
--- a/data/gui.xml
+++ b/data/gui.xml
@@ -793,19 +793,22 @@
-
-
+
-
+
-
+
-
+
diff --git a/data/icons/ase.ico b/data/icons/ase.ico
index 1e299d724..67fe4cc96 100644
Binary files a/data/icons/ase.ico and b/data/icons/ase.ico differ
diff --git a/data/icons/ase16.png b/data/icons/ase16.png
index 21a6e0d65..a45036eff 100644
Binary files a/data/icons/ase16.png and b/data/icons/ase16.png differ
diff --git a/data/icons/ase32.png b/data/icons/ase32.png
index ad59b0e8e..2f0bb11e2 100644
Binary files a/data/icons/ase32.png and b/data/icons/ase32.png differ
diff --git a/data/icons/ase48.png b/data/icons/ase48.png
index 5550d7d3d..512fe1440 100644
Binary files a/data/icons/ase48.png and b/data/icons/ase48.png differ
diff --git a/data/icons/ase64.png b/data/icons/ase64.png
index 14750ca07..b30ce5892 100644
Binary files a/data/icons/ase64.png and b/data/icons/ase64.png differ
diff --git a/data/icons/doc.ico b/data/icons/doc.ico
index e239eeec2..a178a52ad 100644
Binary files a/data/icons/doc.ico and b/data/icons/doc.ico differ
diff --git a/data/icons/doc16.png b/data/icons/doc16.png
index 9adcf6a7e..3c9185bd9 100644
Binary files a/data/icons/doc16.png and b/data/icons/doc16.png differ
diff --git a/data/icons/doc32.png b/data/icons/doc32.png
index 3f01b8ef4..c3c69266e 100644
Binary files a/data/icons/doc32.png and b/data/icons/doc32.png differ
diff --git a/data/icons/doc48.png b/data/icons/doc48.png
index 00fcc016b..e2f6bb2f4 100644
Binary files a/data/icons/doc48.png and b/data/icons/doc48.png differ
diff --git a/data/icons/doc64.png b/data/icons/doc64.png
index 0e133488b..5c405126c 100644
Binary files a/data/icons/doc64.png and b/data/icons/doc64.png differ
diff --git a/data/languages/ar.json b/data/languages/ar.json
index 738d28304..762a07e23 100644
--- a/data/languages/ar.json
+++ b/data/languages/ar.json
@@ -1,5 +1,4 @@
{
- "180": "&180",
"# of Columns:": "عدد الأعمدة:",
"# of Rows:": "عدد الصفوف:",
"*\n Left-button: Erase with the background color in `Background' layer\n\n or transparent color in any other layer.\n*\n Right-button: Replace foreground with background color.\n ": "*\n زر الفأرة الأيسر: المسح بلون الخلفية في طبقة 'الخلفية'\n\n أو بلون شفاف في أي طبقة أخرى.\n*\n زر الفأرة الأيمن: استبدال لون المقدمة بلون الخلفية.\n ",
@@ -9,14 +8,23 @@
"- Classic skin graphics introduced in v0.8": "- الواجهة الكلاسيكية والرسومات المقدمة في الإصدار v0.8",
"- Lead developer, graphics maintainer": "- المطور الرئيسي، الرسومات والصيانة",
"-------- Recent Paths --------": "-------- المسارات الحديثة --------",
+ "0": "0",
"10 Minutes": "10 دقائق",
+ "100": "100",
+ "100%": "100%",
"1000%": "1000%",
"15 Minutes": "15 دقيقة",
+ "16": "16",
"16x16": "16x16",
+ "180": "&180",
"2 Minutes": "دقيقتان",
+ "200%": "200%",
"25%": "25%",
"2x2": "2x2",
"30 Minutes": "30 دقيقة",
+ "300%": "300%",
+ "32": "32",
+ "400%": "400%",
"4x4": "4x4",
"5 Minutes": "5 دقائق",
"50%": "50%",
@@ -42,25 +50,35 @@
"Allow non-linear history": "السماح بالتاريخ غير الخطي",
"Alpha": "ألفا",
"Alpha Compositing": "تركيب ألفا",
+ "Alt": "Alt",
"Alternate Timeline": "الجدول الزمني البديل",
"Alternate Toolbar": "شريط الأدوات البديل",
"Alternate Touchbar": "شريط اللمس البديل",
+ "Angle": "زاوية",
"Animated sprite editor pixel art tool": "محرر سبرايت متحرك وأداة فن البكسل",
+ "Animation Direction:": "إخراج الرسوم المتحركة:",
+ "Animation Loop": "حلقة رسوم متحركة",
+ "Anti-aliasing filter": "مرشح مضاد للتشويش",
"Apply": "&تطبيق",
"Apply Zoom": "تطبيق التكبير",
"Apply to the active frame/layer (the active cel)": "تطبيق على الإطار/الطبقة النشطة (الخلية النشطة)",
"Array": "مصفوفة",
"As:": "كـ:",
+ "Assigned to:": "مُسند إلى:",
"Authors:": "المؤلفون:",
"Auto": "تلقائي",
"Auto Select Layer": "اختيار الطبقة تلقائيًا",
"Automatically save recovery data every": "حفظ بيانات الاسترداد تلقائيًا كل",
+ "Available Fonts:": "الخطوط المتاحة:",
+ "Available Palettes:": "الألوان المتوفرة:",
"Available Themes": "السمات المتاحة",
+ "Background": "خلفية",
"Background From Layer": "الخلفية من الطبقة",
"Background color": "لون الخلفية",
"Background from Layer": "&الخلفية من الطبقة",
"Background:": "الخلفية:",
"BackgroundFromLayer": "BackgroundFromLayer",
+ "Behind sprite": "خلف سبرايت",
"Best fit Index": "أنسب فهرس",
"Best fit for texture": "أنسب ملاءمة للملمس",
"Black": "&أسود",
@@ -75,6 +93,7 @@
"Brush Preview:": "معاينة الفرشاة:",
"Brush Size (in pixels)": "حجم الفرشاة (بالبكسل)",
"Brush Type": "نوع الفرشاة",
+ "Brush:": "فرشاة:",
"Brush: Custom Brush #1": "فرشاة: فرشاة مخصصة #1",
"Brush: Custom Brush #2": "فرشاة: فرشاة مخصصة #2",
"Brush: Custom Brush #3": "فرشاة: فرشاة مخصصة #3",
@@ -88,6 +107,7 @@
"Brush: Increment Size": "فرشاة: زيادة الحجم",
"By Columns": "حسب الأعمدة",
"By Rows": "حسب الصفوف",
+ "By:": "بواسطة:",
"Cancel": "إلغاء",
"Cancel Current Operation": "إلغاء العملية الحالية",
"Cancel drag and drop": "إلغاء السحب والإفلات",
@@ -101,12 +121,15 @@
"Check this option to enable hardware acceleration": "حدد هذا الخيار لتمكين تسريع الأجهزة",
"Check this option to get\nthis old menus behavior.": "حدد هذا الخيار للحصول على\nسلوك القوائم القديم.",
"Checked Background": "خلفية مربعة",
+ "Chinese": "الصينية",
+ "Circle Brush": "فرشاة دائرية",
"Clear": "مس&ح",
"Clear Cel": "مسح الخلية",
"Close": "&إغلاق",
"Close All": "إغلاق الكل",
"Close All Files": "إغلاق جميع الملفات",
"Close File": "إغلاق الملف",
+ "Cmd": "Cmd",
"Color": "لون",
"Color Burn": "حرق اللون",
"Color Curve": "&منحنى اللون",
@@ -116,7 +139,9 @@
"Color Range": "&نطاق اللون",
"Color Spectrum": "طيف اللون",
"Color Tint/Shade/Tone": "تدرج اللون/الظل/النغمة",
+ "Color Tools": "أدوات الألوان",
"Color+Alpha": "لون+ألفا",
+ "Color:": "لون:",
"Color: Decrement Background Index": "لون: تقليل مؤشر الخلفية",
"Color: Decrement Foreground Index": "لون: تقليل مؤشر المقدمة",
"Color: Increment Background Index": "لون: زيادة مؤشر الخلفية",
@@ -124,9 +149,11 @@
"Colors:": "ألوان:",
"Columns to be added/removed in the left side.\nUse a negative number to remove columns.": "الأعمدة المراد إضافتها/إزالتها في الجانب الأيسر.\nاستخدم رقمًا سالبًا لإزالة الأعمدة.",
"Columns to be added/removed in the right side.\nUse a negative number to remove columns.": "الأعمدة المراد إضافتها/إزالتها في الجانب الأيمن.\nاستخدم رقمًا سالبًا لإزالة الأعمدة.",
+ "Compression:": "ضغط:",
"Constant Frame Rate": "معدل إطارات ثابت",
"Contiguous": "متجاور",
"Contour Tool": "أداة الخطوط الخارجية",
+ "Contours": "الخطوط الكنتورية",
"Contract": "&تقلص",
"Contributors": "المساهمون",
"Convolution Matrix": "مصفوفة &الالتفاف",
@@ -134,21 +161,29 @@
"Copy Alpha+Color": "نسخ ألفا+لون",
"Copy Cel": "نسخ الخلية",
"Copy Merged": "نسخ &مُدمج",
+ "Crash Report": "تقرير حادث",
"Create Palette from Current Sprite": "إنشاء لوحة ألوان من السبرايت الحالي",
"Create Palette from Current Sprite (Color Quantization)": "إنشاء لوحة ألوان من السبرايت الحالي (تكميم اللون)",
+ "Create entries with alpha component": "إنشاء إدخالات باستخدام مكون ألفا",
+ "Create new palette with": "أنشئ لوحة ألوان جديدة باستخدام",
"Crop": "اقت&صاص",
"Crop Sprite": "اقتصاص السبرايت",
+ "Ctrl": "Ctrl",
"Current Document": "المستند الحالي",
"Current Frame": "الإطار الحالي",
"Current Layer": "الطبقة الحالية",
+ "Current layer only": "الطبقة الحالية فقط",
"Cursor": "المؤشر",
"Cursors": "المؤشرات",
"Curve Tool": "أداة المنحنيات",
"Cut": "ق&ص",
"Darken": "تعتيم",
+ "Default": "تقصير",
"Default Zoom": "تكبير افتراضي",
+ "Delete": "يمسح",
"Delete Frame": "حذف الإطار",
"Delete Layer": "حذف الطبقة",
+ "Delete file, I've already sent it": "احذف الملف، لقد أرسلته بالفعل",
"Depending on the layer (background/transparent),\nthe pasted selection will be adjusted\nautomatically (opaque/transparent)": "اعتمادًا على الطبقة (خلفية/شفافة)،\nسيتم تعديل التحديد الملصوق تلقائيًا\n(معتم/شفاف)",
"Deselect": "&إلغاء التحديد",
"Deselect Mask": "إلغاء تحديد القناع",
@@ -157,9 +192,12 @@
"Developer Console": "وحدة تحكم المطور",
"Difference": "فرق",
"Discard Brush": "تجاهل الفرشاة",
+ "Do it later": "افعل ذلك لاحقاً",
"Documentation": "وثائق",
+ "Don't show this again": "لا تعرض هذا مرة أخرى",
"Donate": "&تبرع",
"Down": "&أسفل",
+ "Drawing": "رسم",
"Drop pixels here": "أسقط البكسلات هنا",
"Duplicate": "&تكرار",
"Duplicate Cel(s)": "&تكرار الخلية(الخلية)",
@@ -180,11 +218,13 @@
"Edit": "&تحرير",
"Edit Color": "تحرير اللون",
"Editor": "المحرر",
+ "Effects": "الآثار",
"Ellipse Tool": "أداة الإهليج",
"Elliptical Marquee Tool": "أداة التحديد الإهليجي",
"English": "الإنجليزية",
"Erase": "مسح",
"Eraser Tool": "أداة الممحاة",
+ "Eraser Tools": "أدوات الممحاة",
"Exclusion": "استثناء",
"Exit": "&خروج",
"Expand": "&توسيع",
@@ -196,6 +236,7 @@
"Export...": "&تصدير...",
"Extra paint bucket options": "خيارات إضافية لدلو الطلاء",
"Extras": "&إضافات",
+ "Extras:": "إضافات:",
"Eyedropper": "قطارة الألوان",
"Eyedropper Tool": "أداة قطارة الألوان",
"FRM+": "FRM+",
@@ -215,6 +256,10 @@
"Flip Selection Horizontal": "قلب التحديد أفقيًا",
"Flip Selection Vertical": "قلب التحديد عموديًا",
"Flip Vertical": "قلب &عموديًا",
+ "Folder Name:": "اسم المجلد:",
+ "Font Size:": "حجم الخط:",
+ "Font:": "نوع الخط:",
+ "Foreground": "المقدمة",
"Foreground color": "لون المقدمة",
"Frame": "&إطار",
"Frame Properties": "خصائص الإطار",
@@ -225,11 +270,15 @@
"Frame:": "الإطار:",
"Frames:": "إطارات:",
"Freehand trace algorithm": "خوارزمية التتبع اليدوي",
+ "French": "فرنسي",
"From:": "من:",
"Full Real-time Brush Preview": "معاينة الفرشاة في الوقت الحقيقي بالكامل",
"Fullscreen Preview": "&معاينة الشاشة الكاملة",
+ "GIF Options": "خيارات صور GIF",
"GPU acceleration": "تسريع GPU",
"General": "عام",
+ "General Options:": "خيارات عامة:",
+ "German": "الألمانية",
"Global": "عام",
"Go back one folder": "العودة مجلد واحد",
"Go forward one folder": "التقدم مجلد واحد",
@@ -247,6 +296,7 @@
"Go to Previous Layer": "الذهاب إلى الطبقة السابقة",
"Go to Previous tab": "الذهاب إلى علامة التبويب السابقة",
"Go to modified frame/layer": "الذهاب إلى الإطار/الطبقة المعدلة",
+ "Graph": "الرسم البياني",
"Gray": "رمادي",
"Gray+Alpha": "رمادي+ألفا",
"Grayscale": "&تدرج الرمادي",
@@ -263,32 +313,45 @@
"Height:": "الارتفاع:",
"Help": "&مساعدة",
"Hide": "إخفاء",
+ "Hindi": "الهندية",
"Home": "&الصفحة الرئيسية",
"Horizontal Strip": "شريط أفقي",
"Horizontal Symmetry": "تماثل أفقي",
"Hue": "صبغة",
+ "Icon": "رمز",
"Ignore Alpha Component": "تجاهل مكون الألفا",
+ "Image Hint:": "تلميح الصورة:",
+ "Image Preset:": "إعدادات الصورة المسبقة:",
"Import": "&استيراد",
"Import Sprite Sheet": "&استيراد لوحة السبرايت",
+ "In front of sprite": "أمام سبرايت",
"Include partial tiles at bottom/right edges": "تضمين القطع الجزئية في الحواف السفلية/اليمنى",
"Indexed": "&مفهرس",
"Indexed (No Dithering)": "&مفهرس (بدون تدرج)",
"Indexed (Ordered Dither)": "مفهرس (تدرج &منظم)",
+ "Indonesian": "إندونيسيا",
"Ink": "حبر",
+ "Ink:": "حبر:",
"Inner:": "الداخل:",
"Insert Text": "إدراج نص",
+ "Interlaced": "متشابك",
+ "Interpolation:": "الاستيفاء:",
"Inverse": "&معكوس",
"Invert": "&عكس",
"Invert Color": "عكس اللون",
"Invert Mask": "عكس القناع",
"Italian": "الإيطالية",
+ "JPEG Options": "خيارات JPEG",
"JSON Data": "بيانات JSON",
"Japanese": "اليابانية",
"Jumble Tool": "أداة التشويش",
"Jump to": "&انتقل إلى",
"Keep selection after \"Edit > Clear\" command": "الاحتفاظ بالتحديد بعد أمر \"تحرير > مسح\"",
+ "Key:": "مفتاح:",
+ "Keyboard Shortcut": "اختصار لوحة المفاتيح",
"Keyboard Shortcuts": "اختصارات لوحة المفاتيح",
"Keyboard Shortcuts...": "&اختصارات لوحة المفاتيح...",
+ "Korean": "كوري",
"LYR+": "LYR+",
"LYR<": "LYR<",
"LYR>": "LYR>",
@@ -313,6 +376,7 @@
"Line Tool": "أداة الخط",
"Link Cels": "&ربط الخلايا",
"Links Cels": "ربط الخلايا",
+ "Load": "حمولة",
"Load Default Palette": "تحميل لوحة الألوان الافتراضية",
"Load Palette": "&تحميل لوحة الألوان",
"Load from MSK file": "&تحميل من ملف MSK",
@@ -320,6 +384,10 @@
"Locate Configuration File": "تحديد موقع ملف التكوين",
"Locate Crash Folder": "تحديد موقع مجلد الأعطال",
"Lock Alpha": "قفل ألفا",
+ "Lock Ratio": "نسبة القفل",
+ "Loop through tag frames": "التكرار عبر إطارات العلامات",
+ "Lossless WebP": "WebP بدون فقدان للجودة",
+ "Lossy WebP": "WebP المضغوط مع فقدان البيانات",
"Luminosity": "السطوع",
"MB": "ميجابايت",
"Magic Wand Tool": "أداة العصا السحرية",
@@ -331,14 +399,18 @@
"Medium Size": "&حجم متوسط",
"Merge Down": "&دمج للأسفل",
"Merge Down Layer": "دمج الطبقة للأسفل",
+ "Merge Frames": "دمج الإطارات",
"Meta:": "ميتا:",
+ "Method:": "طريقة:",
"Mirror Horizontally": "انعكاس أفقي",
"Mirror Vertically": "انعكاس عمودي",
"Mode:": "الوضع:",
+ "Modifiers:": "المُعدِّلات:",
"Modify": "&تعديل",
"Modify Blue Component": "تعديل المكون الأزرق",
"Modify Green Component": "تعديل المكون الأخضر",
"Modify Red Component": "تعديل المكون الأحمر",
+ "Modify Selection": "تعديل التحديد",
"Move": "&تحريك",
"Move Cel": "تحريك الخلية",
"Move Selection Boundaries 1 horizontal tile left": "تحريك حدود التحديد قطعة أفقية واحدة إلى اليسار",
@@ -358,6 +430,7 @@
"Move Selection Content 1 vertical tile down": "تحريك محتوى التحديد قطعة رأسية واحدة للأسفل",
"Move Selection Content 1 vertical tile up": "تحريك محتوى التحديد قطعة رأسية واحدة للأعلى",
"Move Tool": "أداة التحريك",
+ "Move Tools": "أدوات النقل",
"Multiply": "ضرب",
"Name:": "الاسم:",
"Negative Black and White": "سالب أبيض وأسود",
@@ -366,10 +439,13 @@
"New Empty Frame": "إطار &فارغ جديد",
"New File": "ملف جديد",
"New File...": "ملف جديد...",
+ "New Folder": "مجلد جديد",
"New Frame": "&إطار جديد",
"New Frame Tag": "علامة إطار جديدة",
+ "New Image Layer": "طبقة صورة جديدة",
"New Layer": "&طبقة جديدة",
"New Layer Set": "مجموعة طبقات جديدة",
+ "New Set": "مجموعة جديدة",
"New Sprite": "سبرايت جديد",
"New Sprite From Selection": "سبرايت جديد من التحديد",
"New Sprite from Selection": "&سبرايت جديد من التحديد",
@@ -380,9 +456,13 @@
"No": "&لا",
"None": "&لا شيء",
"Normal": "عادي",
+ "Number of colors:": "عدد الألوان:",
"OK": "&موافق",
+ "Onion Skin:": "قشرة البصل:",
"Onion Skinning": "تأثير البصل",
+ "Opacity": "الشفافية",
"Opacity (paint intensity)": "العتامة (شدة الطلاء)",
+ "Opacity Step:": "خطوة التعتيم:",
"Opacity:": "العتامة:",
"Open File...": "فتح ملف...",
"Open Folder": "فتح &مجلد",
@@ -393,6 +473,7 @@
"Open With Associated Application": "فتح بالتطبيق المرتبط",
"Open generated sprite sheet": "فتح لوحة السبرايت المولدة",
"Open in Folder": "فتح في &المجلد",
+ "Open the following file to debug your compilation:": "افتح الملف التالي لتصحيح أخطاء عملية التجميع:",
"Open with OS": "&فتح مع النظام",
"Open...": "&فتح...",
"Options": "خيارات",
@@ -407,20 +488,31 @@
"Palette Editor": "&محرر لوحة الألوان",
"Palette Size": "حجم لوحة الألوان",
"Palette entry used as\ntransparent color in each\nlayer (only for indexed images).": "مدخل لوحة الألوان المستخدم كـ\nلون شفاف في كل\nطبقة (للصور المفهرسة فقط).",
+ "Palette from Sprite": "لوحة ألوان من سبرايت",
"Paste": "&لصق",
"Pattern aligned to destination": "النمط محاذٍ للوجهة",
"Pattern aligned to source": "النمط محاذٍ للمصدر",
"Pencil Tool": "أداة القلم",
+ "Pencil Tools": "أدوات الرسم بالقلم الرصاص",
"Per Tag": "لكل علامة",
+ "Percentage:": "نسبة مئوية:",
+ "Perfect Traces": "آثار مثالية",
+ "Photo": "صورة",
"Pick foreground color": "اختيار لون المقدمة",
"Pick:": "اختيار:",
+ "Picture": "صورة",
"Pixel Grid": "&شبكة البكسل",
"Pixel Grid Color:": "لون شبكة البكسل:",
"Pixel Grid Opacity:": "عتامة شبكة البكسل:",
"Pixel grid shows up when you zoom a lot": "تظهر شبكة البكسل عند التكبير بشكل كبير",
+ "Pixel-Perfect": "بكسل مثالي",
"Pixel-perfect": "بكسل مثالي",
+ "Pixels:": "بكسل:",
"Play Animation": "&تشغيل الرسوم المتحركة",
"Play Animation\n\nShortcut: Enter": "تشغيل الرسوم المتحركة\n\nاختصار: Enter",
+ "Please attach the following file:": "يرجى إرفاق الملف التالي:",
+ "Point Properties": "خصائص النقطة",
+ "Polish": "بولندي",
"Polygon Tool": "أداة المضلع",
"Polygonal Lasso Tool": "أداة الحبل المضلع",
"Portuguese": "البرتغالية",
@@ -432,6 +524,7 @@
"Previous Frame": "&الإطار السابق",
"Properties...": "&خصائص...",
"QUIT": "خروج",
+ "Quality:": "جودة:",
"Quick Reference": "مرجع &سريع",
"REDO": "إعادة",
"RGB": "RGB",
@@ -448,10 +541,12 @@
"Recover Session...": "استرداد الجلسة...",
"Rectangle Tool": "أداة المستطيل",
"Rectangular Marquee Tool": "أداة التحديد المستطيل",
+ "Red/Blue Tint": "لون أحمر/أزرق",
"Redo": "&إعادة",
"Refresh": "تحديث",
"Refresh Reload Skin": "&تحديث وإعادة تحميل الواجهة",
"Release Notes": "ملاحظات الإصدار",
+ "Reload Stock": "مخزون إعادة التعبئة",
"Remap": "إعادة تعيين",
"Remove": "&إزالة",
"Remove Frame": "&إزالة الإطار",
@@ -461,6 +556,8 @@
"Repeat Last Export": "تكرار &آخر تصدير",
"Replace Color": "استبدال اللون",
"Replace Color...": "اس&تبدال اللون...",
+ "Replace current palette": "استبدل لوحة الألوان الحالية",
+ "Replace current range": "استبدل النطاق الحالي",
"Replace selection": "استبدال التحديد",
"Rescan Scripts": "إعادة فحص السكربتات",
"Rescan scripts": "إعادة فحص السكربتات",
@@ -485,6 +582,7 @@
"Rows to be added/removed in the bottom side.\nUse a negative number to remove rows.": "الصفوف المراد إضافتها/إزالتها في الجانب السفلي.\nاستخدم رقمًا سالبًا لإزالة الصفوف.",
"Rows to be added/removed in the top side.\nUse a negative number to remove rows.": "الصفوف المراد إضافتها/إزالتها في الجانب العلوي.\nاستخدم رقمًا سالبًا لإزالة الصفوف.",
"Run Script": "تشغيل سكربت",
+ "Russian": "الروسية",
"Same Ink in All Tools": "نفس الحبر في جميع الأدوات",
"Same in all Tools": "نفس الشيء في جميع الأدوات",
"Sample:": "عينة:",
@@ -497,6 +595,7 @@
"Save Mask": "حفظ القناع",
"Save Palette": "ح&فظ لوحة الألوان",
"Save as Default Palette": "حفظ كلوحة ألوان افتراضية",
+ "Save as:": "حفظ باسم:",
"Save to MSK file": "&حفظ إلى ملف MSK",
"Screen": "شاشة",
"Screen Scaling:": "مقياس الشاشة:",
@@ -514,6 +613,7 @@
"Scroll to center of canvas": "التمرير إلى مركز اللوحة",
"Select": "تحد&يد",
"Select File": "تحديد ملف",
+ "Select Font": "اختر الخط",
"Select Tile": "تحديد قطعة",
"Select Tile (Add)": "تحديد قطعة (إضافة)",
"Select Tile (Subtract)": "تحديد قطعة (طرح)",
@@ -521,6 +621,7 @@
"Selected layers": "الطبقات المحددة",
"Selection": "التحديد",
"Selection Edges": "&حواف التحديد",
+ "Selection Tools": "أدوات التحديد",
"Selection as Grid": "التحد&يد كشبكة",
"Set Color Selector: Color Spectrum": "تعيين محدد اللون: طيف اللون",
"Set Color Selector: Color Tint/Shade/Tone": "تعيين محدد اللون: تدرج اللون/الظل/النغمة",
@@ -534,9 +635,11 @@
"Set Loop Section": "تعيين قسم &التكرار",
"Set Palette": "تعيين لوحة الألوان",
"Set Palette Entry Size": "تعيين حجم مدخل لوحة الألوان",
+ "Shade": "الظل",
"Shades": "ظلال",
"Shading": "تظليل",
"Shape:": "الشكل:",
+ "Shapes": "الأشكال",
"Share": "مشاركة",
"Share...": "مشاركة...",
"Sheet Type:": "نوع اللوحة:",
@@ -557,11 +660,13 @@
"Show the timeline automatically\nwhen a new frame or layer is added.": "إظهار الجدول الزمني تلقائيًا\nعند إضافة إطار أو طبقة جديدة.",
"Show timeline automatically": "إظهار الجدول الزمني تلقائيًا",
"Simple Ink": "حبر بسيط",
+ "Size": "مقاس",
"Size:": "الحجم:",
"Small Size": "&حجم صغير",
"Snap to Grid": "&الانطباق على الشبكة",
"Soft Light": "ضوء ناعم",
"Sort & Gradients": "فرز & التدرجات",
+ "Space": "Space",
"Spanish": "الإسبانية",
"Specific Color": "لون محدد",
"Spray Speed": "سرعة الرش",
@@ -571,6 +676,7 @@
"Sprite Properties": "خصائص السبرايت",
"Sprite Size": "حجم السبرايت",
"Sprite Size...": "&حجم السبرايت...",
+ "Square Brush": "فرشاة مربعة",
"Subtract from selection\n(Shift+Alt)": "طرح من التحديد\n(Shift+Alt)",
"Switch Colors": "تبديل الألوان",
"Switch Pixel Perfect Mode": "تبديل وضع البكسل المثالي",
@@ -580,6 +686,8 @@
"TIME": "الوقت",
"Tag Properties...": "خصائص &العلامة...",
"Tags": "&علامات",
+ "Text": "نص",
+ "Text:": "نص:",
"The 'Stop' button should rewind the animation\nwhere it was started.": "يجب أن يقوم زر 'إيقاف' بإرجاع الرسوم المتحركة\nإلى حيث بدأت.",
"Theme": "السمة",
"Tile Mode": "وضع القطع",
@@ -602,6 +710,7 @@
"Trim": "&قص",
"Trim Sprite": "قص السبرايت",
"Tutorial": "دليل الاستخدام",
+ "Type": "يكتب",
"Type:": "النوع:",
"UI Elements Scaling:": "مقياس عناصر الواجهة:",
"UNDO": "تراجع",
@@ -616,19 +725,26 @@
"Use native file dialog": "استخدام مربع حوار الملفات الأصلي",
"Use native mouse cursor": "استخدام مؤشر الفأرة الأصلي",
"User Data": "بيانات المستخدم",
+ "User Data:": "بيانات المستخدم:",
"User Interface": "واجهة المستخدم",
"Vertical Strip": "شريط عمودي",
"Vertical Symmetry": "تماثل عمودي",
"View": "&عرض",
+ "View Tools": "عرض الأدوات",
"Visible": "&مرئي",
"Visible layers": "الطبقات المرئية",
+ "Warning - Important": "تحذير - هام",
+ "WebP Options": "خيارات WebP",
"When it's enabled each time you undo/redo\nthe current frame & layer will be modified\nto focus the undid/redid change.": "عند تمكين هذا الخيار، في كل مرة تتراجع/تعيد\nسيتم تعديل الإطار والطبقة الحاليين\nللتركيز على التغيير الذي تم التراجع/الإعادة عنه.",
"White": "&أبيض",
"Width:": "العرض:",
+ "Win": "Win",
"With this option you can recover your documents\nif the program finalizes unexpectedly.": "باستخدام هذا الخيار، يمكنك استرداد مستنداتك\nإذا انتهى البرنامج بشكل غير متوقع.",
"X:": "X:",
"Y:": "Y:",
"Yes": "&نعم",
+ "You are going to enter in \"Advanced Mode\".": "ستدخل إلى \"الوضع المتقدم\".",
+ "You are using a development version.": "أنت تستخدم نسخة تجريبية.",
"You must restart the program to see your changes to:": "يجب إعادة تشغيل البرنامج لرؤية تغييراتك على:",
"Zoom 100%": "تكبير 100%",
"Zoom 1600%": "تكبير 1600%",
@@ -646,5 +762,9 @@
"Zoom in": "تكبير",
"Zoom out": "تصغير",
"Zoom sliding two fingers up or down": "التكبير بالتمرير بإصبعين لأعلى أو لأسفل",
- "Zoom with scroll wheel": "التكبير بعجلة التمرير"
-}
+ "Zoom with scroll wheel": "التكبير بعجلة التمرير",
+ "colors or less": "ألوان أو أقل",
+ "explaining what you was doing when the program crashed.": "شرح ما كنت تفعله عندما تعطل البرنامج.",
+ "https://github.com/Veritaware/Besprited/issues": "https://github.com/Veritaware/Besprited/issues",
+ "to a bug report on:": "إلى تقرير عن خطأ في:"
+}
\ No newline at end of file
diff --git a/data/languages/de.json b/data/languages/de.json
index d32c3de04..1fdc9f663 100644
--- a/data/languages/de.json
+++ b/data/languages/de.json
@@ -1,5 +1,4 @@
{
- "180": "&180",
"# of Columns:": "Anzahl der Spalten:",
"# of Rows:": "Anzahl der Zeilen:",
"*\n Left-button: Erase with the background color in `Background' layer\n\n or transparent color in any other layer.\n*\n Right-button: Replace foreground with background color.\n ": "*\n Linke Maustaste: Löschen mit der Hintergrundfarbe in der Ebene `Hintergrund'\n\n oder mit transparenter Farbe in jeder anderen Ebene.\n*\n Rechte Maustaste: Ersetze Vordergrund mit Hintergrundfarbe.\n ",
@@ -9,14 +8,23 @@
"- Classic skin graphics introduced in v0.8": "- Klassisches Design & Grafiken eingeführt in v0.8",
"- Lead developer, graphics maintainer": "- Hauptentwickler, Grafiken & Betreuer",
"-------- Recent Paths --------": "-------- Kürzliche Pfade --------",
+ "0": "0",
"10 Minutes": "10 Minuten",
+ "100": "100",
+ "100%": "100%",
"1000%": "1000%",
"15 Minutes": "15 Minuten",
+ "16": "16",
"16x16": "16x16",
+ "180": "&180",
"2 Minutes": "2 Minuten",
+ "200%": "200%",
"25%": "25%",
"2x2": "2x2",
"30 Minutes": "30 Minuten",
+ "300%": "300%",
+ "32": "32",
+ "400%": "400%",
"4x4": "4x4",
"5 Minutes": "5 Minuten",
"50%": "50%",
@@ -42,25 +50,35 @@
"Allow non-linear history": "Nicht-lineare Verlaufshistorie zulassen",
"Alpha": "Alpha",
"Alpha Compositing": "Alpha-Komposition",
+ "Alt": "Alt",
"Alternate Timeline": "Alternative Zeitleiste",
"Alternate Toolbar": "Alternative Symbolleiste",
"Alternate Touchbar": "Alternative Touchbar",
+ "Angle": "Angle",
"Animated sprite editor pixel art tool": "Animierter Sprite-Editor & Pixel-Art-Tool",
+ "Animation Direction:": "Animations-Richtung:",
+ "Animation Loop": "Animations-Schleife",
+ "Anti-aliasing filter": "Anti-Aliasing-Filter",
"Apply": "&Anwenden",
"Apply Zoom": "Zoom anwenden",
"Apply to the active frame/layer (the active cel)": "Auf den aktiven Frame/Ebene anwenden (die aktive Zelle)",
"Array": "Array",
"As:": "Als:",
+ "Assigned to:": "Zugewiesen an:",
"Authors:": "Autoren:",
"Auto": "Auto",
"Auto Select Layer": "Ebene automatisch auswählen",
"Automatically save recovery data every": "Wiederherstellungsdaten automatisch speichern alle",
+ "Available Fonts:": "Verfügbare Schriftarten:",
+ "Available Palettes:": "Verfügbare Paletten:",
"Available Themes": "Verfügbare Designs",
+ "Background": "Hintergrund",
"Background From Layer": "Hintergrund aus Ebene",
"Background color": "Hintergrundfarbe",
"Background from Layer": "&Hintergrund aus Ebene",
"Background:": "Hintergrund:",
"BackgroundFromLayer": "HintergrundAusEbene",
+ "Behind sprite": "Hinter Sprite",
"Best fit Index": "Passendster Index",
"Best fit for texture": "Beste Anpassung für Textur",
"Black": "&Schwarz",
@@ -75,6 +93,7 @@
"Brush Preview:": "Pinselvorschau:",
"Brush Size (in pixels)": "Pinselgröße (in Pixel)",
"Brush Type": "Pinseltyp",
+ "Brush:": "Pinsel:",
"Brush: Custom Brush #1": "Pinsel: Benutzerdefinierter Pinsel #1",
"Brush: Custom Brush #2": "Pinsel: Benutzerdefinierter Pinsel #2",
"Brush: Custom Brush #3": "Pinsel: Benutzerdefinierter Pinsel #3",
@@ -88,6 +107,7 @@
"Brush: Increment Size": "Pinsel: Größe vergrößern",
"By Columns": "Nach Spalten",
"By Rows": "Nach Zeilen",
+ "By:": "Von:",
"Cancel": "Abbrechen",
"Cancel Current Operation": "Aktuellen Vorgang abbrechen",
"Cancel drag and drop": "Drag & Drop abbrechen",
@@ -101,12 +121,15 @@
"Check this option to enable hardware acceleration": "Diese Option aktivieren, um Hardware-Beschleunigung zu nutzen",
"Check this option to get\nthis old menus behavior.": "Aktivieren Sie diese Option, um\ndas alte Menüverhalten zu erhalten.",
"Checked Background": "Karierten Hintergrund",
+ "Chinese": "Chinesisch",
+ "Circle Brush": "Rundpinsel",
"Clear": "&Löschen",
"Clear Cel": "Zelle löschen",
"Close": "&Schließen",
"Close All": "Alle schließen",
"Close All Files": "Alle Dateien schließen",
"Close File": "Datei schließen",
+ "Cmd": "Cmd",
"Color": "Farbe",
"Color Burn": "Farbig abwedeln",
"Color Curve": "&Farbkurve",
@@ -116,7 +139,9 @@
"Color Range": "&Farbbereich",
"Color Spectrum": "Farbspektrum",
"Color Tint/Shade/Tone": "Farbton/Schatten/Abstufung",
+ "Color Tools": "Farbwerkzeuge",
"Color+Alpha": "Farbe+Alpha",
+ "Color:": "Farbe:",
"Color: Decrement Background Index": "Farbe: Hintergrundindex verringern",
"Color: Decrement Foreground Index": "Farbe: Vordergrundindex verringern",
"Color: Increment Background Index": "Farbe: Hintergrundindex erhöhen",
@@ -124,9 +149,11 @@
"Colors:": "Farben:",
"Columns to be added/removed in the left side.\nUse a negative number to remove columns.": "Spalten, die auf der linken Seite hinzugefügt/entfernt werden sollen.\nVerwenden Sie eine negative Zahl, um Spalten zu entfernen.",
"Columns to be added/removed in the right side.\nUse a negative number to remove columns.": "Spalten, die auf der rechten Seite hinzugefügt/entfernt werden sollen.\nVerwenden Sie eine negative Zahl, um Spalten zu entfernen.",
+ "Compression:": "Kompression:",
"Constant Frame Rate": "Konstante Bildrate",
"Contiguous": "Zusammenhängend",
"Contour Tool": "Kontur-Werkzeug",
+ "Contours": "Konturen",
"Contract": "&Verkleinern",
"Contributors": "Mitwirkende",
"Convolution Matrix": "Faltungs&matrix",
@@ -134,21 +161,29 @@
"Copy Alpha+Color": "Alpha+Farbe kopieren",
"Copy Cel": "Zelle kopieren",
"Copy Merged": "Zusammen&gefügt kopieren",
+ "Crash Report": "Absturzbericht",
"Create Palette from Current Sprite": "Palette aus aktuellem Sprite erstellen",
"Create Palette from Current Sprite (Color Quantization)": "Palette aus aktuellem Sprite erstellen (Farbquantisierung)",
+ "Create entries with alpha component": "Einträge mit Alpha-Komponente erstellen",
+ "Create new palette with": "Neue Palette erstellen mit",
"Crop": "Zu&schneiden",
"Crop Sprite": "Sprite zuschneiden",
+ "Ctrl": "Ctrl",
"Current Document": "Aktuelles Dokument",
"Current Frame": "Aktueller Frame",
"Current Layer": "Aktuelle Ebene",
+ "Current layer only": "Nur aktuelle Ebene",
"Cursor": "Cursor",
"Cursors": "Cursors",
"Curve Tool": "Kurven-Werkzeug",
"Cut": "&Ausschneiden",
"Darken": "Abdunkeln",
+ "Default": "Standard",
"Default Zoom": "Standard-Zoom",
+ "Delete": "Löschen",
"Delete Frame": "Frame löschen",
"Delete Layer": "Ebene löschen",
+ "Delete file, I've already sent it": "Datei löschen, ich habe sie bereits gesendet",
"Depending on the layer (background/transparent),\nthe pasted selection will be adjusted\nautomatically (opaque/transparent)": "Je nach Ebene (Hintergrund/Transparent)\nwird die eingefügte Auswahl automatisch angepasst\n(opak/transparent)",
"Deselect": "&Auswahl aufheben",
"Deselect Mask": "Maske aufheben",
@@ -157,9 +192,12 @@
"Developer Console": "Entwicklerkonsole",
"Difference": "Differenz",
"Discard Brush": "Pinsel verwerfen",
+ "Do it later": "Später tun",
"Documentation": "Dokumentation",
+ "Don't show this again": "Nicht mehr anzeigen",
"Donate": "&Spenden",
"Down": "&Nach unten",
+ "Drawing": "Zeichnung",
"Drop pixels here": "Pixel hier ablegen",
"Duplicate": "&Duplizieren",
"Duplicate Cel(s)": "&Zelle(n) duplizieren",
@@ -180,11 +218,13 @@
"Edit": "&Bearbeiten",
"Edit Color": "Farbe bearbeiten",
"Editor": "Editor",
+ "Effects": "Effekte",
"Ellipse Tool": "Ellipse-Werkzeug",
"Elliptical Marquee Tool": "Elliptisches Auswahlwerkzeug",
"English": "Englisch",
"Erase": "Radieren",
"Eraser Tool": "Radierer-Werkzeug",
+ "Eraser Tools": "Radiergummi-Werkzeuge",
"Exclusion": "Ausgrenzung",
"Exit": "&Beenden",
"Expand": "&Erweitern",
@@ -196,6 +236,7 @@
"Export...": "E&xportieren...",
"Extra paint bucket options": "Zusätzliche Fülleimer-Optionen",
"Extras": "&Extras",
+ "Extras:": "Extras:",
"Eyedropper": "Pipette",
"Eyedropper Tool": "Pipette-Werkzeug",
"FRM+": "FRM+",
@@ -215,6 +256,10 @@
"Flip Selection Horizontal": "Auswahl horizontal spiegeln",
"Flip Selection Vertical": "Auswahl vertikal spiegeln",
"Flip Vertical": "&Vertikal spiegeln",
+ "Folder Name:": "Ordnername:",
+ "Font Size:": "Schriftgröße:",
+ "Font:": "Schriftart:",
+ "Foreground": "Vordergrund",
"Foreground color": "Vordergrundfarbe",
"Frame": "&Frame",
"Frame Properties": "Frame-Eigenschaften",
@@ -225,11 +270,15 @@
"Frame:": "Frame:",
"Frames:": "Frames:",
"Freehand trace algorithm": "Freihand-Verfolgungsalgorithmus",
+ "French": "Französisch",
"From:": "Von:",
"Full Real-time Brush Preview": "Vollständige Echtzeit-Pinselvorschau",
"Fullscreen Preview": "&Vollbildvorschau",
+ "GIF Options": "GIF-Optionen",
"GPU acceleration": "GPU-Beschleunigung",
"General": "Allgemein",
+ "General Options:": "Allgemeine Optionen:",
+ "German": "Deutsch",
"Global": "Global",
"Go back one folder": "Einen Ordner zurück",
"Go forward one folder": "Einen Ordner vor",
@@ -247,6 +296,7 @@
"Go to Previous Layer": "Zur vorherigen Ebene gehen",
"Go to Previous tab": "Zum vorherigen Tab gehen",
"Go to modified frame/layer": "Zum geänderten Frame/Ebene gehen",
+ "Graph": "Diagramm",
"Gray": "Grau",
"Gray+Alpha": "Grau+Alpha",
"Grayscale": "&Graustufen",
@@ -263,32 +313,45 @@
"Height:": "Höhe:",
"Help": "&Hilfe",
"Hide": "Verbergen",
+ "Hindi": "Hindi",
"Home": "&Startseite",
"Horizontal Strip": "Horizontaler Streifen",
"Horizontal Symmetry": "Horizontale Symmetrie",
"Hue": "Farbton",
+ "Icon": "Symbol",
"Ignore Alpha Component": "Alpha-Komponente ignorieren",
+ "Image Hint:": "Bildhinweis:",
+ "Image Preset:": "Bildvoreinstellung:",
"Import": "&Importieren",
"Import Sprite Sheet": "Sprite Sheet &importieren",
+ "In front of sprite": "Vor Sprite",
"Include partial tiles at bottom/right edges": "Teilweise Kacheln an unteren/rechten Rändern einbeziehen",
"Indexed": "&Indexiert",
"Indexed (No Dithering)": "&Indexiert (kein Dithering)",
"Indexed (Ordered Dither)": "Indexiert (geordnetes &Dithering)",
+ "Indonesian": "Indonesisch",
"Ink": "Farbe",
+ "Ink:": "Tinte:",
"Inner:": "Innen:",
"Insert Text": "Text einfügen",
+ "Interlaced": "Interlaced",
+ "Interpolation:": "Interpolation:",
"Inverse": "&Umkehren",
"Invert": "&Umkehren",
"Invert Color": "Farbe umkehren",
"Invert Mask": "Maske umkehren",
"Italian": "Italienisch",
+ "JPEG Options": "JPEG-Optionen",
"JSON Data": "JSON-Daten",
"Japanese": "Japanisch",
"Jumble Tool": "Verwirbelungs-Werkzeug",
"Jump to": "&Springe zu",
"Keep selection after \"Edit > Clear\" command": "Auswahl nach \"Bearbeiten > Löschen\" beibehalten",
+ "Key:": "Taste:",
+ "Keyboard Shortcut": "Tastenkombination",
"Keyboard Shortcuts": "Tastenkürzel",
"Keyboard Shortcuts...": "&Tastenkürzel...",
+ "Korean": "Koreanisch",
"LYR+": "EBN+",
"LYR<": "EBN<",
"LYR>": "EBN>",
@@ -313,6 +376,7 @@
"Line Tool": "Linien-Werkzeug",
"Link Cels": "&Zellen verknüpfen",
"Links Cels": "Zellen verknüpfen",
+ "Load": "Laden",
"Load Default Palette": "Standardpalette laden",
"Load Palette": "&Palette laden",
"Load from MSK file": "&Aus MSK-Datei laden",
@@ -320,6 +384,10 @@
"Locate Configuration File": "Konfigurationsdatei finden",
"Locate Crash Folder": "Absturzordner finden",
"Lock Alpha": "Alpha sperren",
+ "Lock Ratio": "Verhältnis sperren",
+ "Loop through tag frames": "Durch Tag-Frames schleifen",
+ "Lossless WebP": "Verlustfreies WebP",
+ "Lossy WebP": "Verlustbehaftetes WebP",
"Luminosity": "Helligkeit",
"MB": "MB",
"Magic Wand Tool": "Zauberstab-Werkzeug",
@@ -331,14 +399,18 @@
"Medium Size": "&Mittlere Größe",
"Merge Down": "&Nach unten vereinen",
"Merge Down Layer": "Ebene nach unten vereinen",
+ "Merge Frames": "Frames zusammenführen",
"Meta:": "Meta:",
+ "Method:": "Methode:",
"Mirror Horizontally": "Horizontal spiegeln",
"Mirror Vertically": "Vertikal spiegeln",
"Mode:": "Modus:",
+ "Modifiers:": "Modifikatoren:",
"Modify": "&Ändern",
"Modify Blue Component": "Blaue Komponente ändern",
"Modify Green Component": "Grüne Komponente ändern",
"Modify Red Component": "Rote Komponente ändern",
+ "Modify Selection": "Auswahl ändern",
"Move": "&Verschieben",
"Move Cel": "Zelle verschieben",
"Move Selection Boundaries 1 horizontal tile left": "Auswahlgrenzen 1 horizontale Kachel nach links verschieben",
@@ -358,6 +430,7 @@
"Move Selection Content 1 vertical tile down": "Auswahlinhalt 1 vertikale Kachel nach unten verschieben",
"Move Selection Content 1 vertical tile up": "Auswahlinhalt 1 vertikale Kachel nach oben verschieben",
"Move Tool": "Verschiebe-Werkzeug",
+ "Move Tools": "Verschieben-Werkzeuge",
"Multiply": "Multiplizieren",
"Name:": "Name:",
"Negative Black and White": "Negativ Schwarz-Weiß",
@@ -366,10 +439,13 @@
"New Empty Frame": "Neuer &leerer Frame",
"New File": "Neue Datei",
"New File...": "Neue Datei...",
+ "New Folder": "Neuer Ordner",
"New Frame": "&Neuer Frame",
"New Frame Tag": "Neues Frame-Tag",
+ "New Image Layer": "Neue Bildebene",
"New Layer": "&Neue Ebene",
"New Layer Set": "Neues Ebenenset",
+ "New Set": "Neuer Satz",
"New Sprite": "Neuer Sprite",
"New Sprite From Selection": "Neuer Sprite aus Auswahl",
"New Sprite from Selection": "&Neuer Sprite aus Auswahl",
@@ -380,9 +456,13 @@
"No": "&Nein",
"None": "&Keine",
"Normal": "Normal",
+ "Number of colors:": "Anzahl der Farben:",
"OK": "&OK",
+ "Onion Skin:": "Zwiebelhaut:",
"Onion Skinning": "Onion Skinning",
+ "Opacity": "Deckkraft",
"Opacity (paint intensity)": "Deckkraft (Farbintensität)",
+ "Opacity Step:": "Deckkraft-Schritt:",
"Opacity:": "Deckkraft:",
"Open File...": "Datei öffnen...",
"Open Folder": "&Ordner öffnen",
@@ -393,6 +473,7 @@
"Open With Associated Application": "Mit zugehöriger Anwendung öffnen",
"Open generated sprite sheet": "Generiertes Sprite Sheet öffnen",
"Open in Folder": "Im &Ordner öffnen",
+ "Open the following file to debug your compilation:": "Öffnen Sie die folgende Datei, um Ihre Kompilierung zu debuggen:",
"Open with OS": "&Mit OS öffnen",
"Open...": "&Öffnen...",
"Options": "Optionen",
@@ -407,20 +488,31 @@
"Palette Editor": "&Palette bearbeiten",
"Palette Size": "Palette &Größe",
"Palette entry used as\ntransparent color in each\nlayer (only for indexed images).": "Paletteneintrag, der als\ntransparente Farbe in jeder\nEbene verwendet wird (nur für indexierte Bilder).",
+ "Palette from Sprite": "Palette vom Sprite",
"Paste": "&Einfügen",
"Pattern aligned to destination": "Muster am Ziel ausgerichtet",
"Pattern aligned to source": "Muster an Quelle ausgerichtet",
"Pencil Tool": "Bleistift-Werkzeug",
+ "Pencil Tools": "Stift-Werkzeuge",
"Per Tag": "Pro Tag",
+ "Percentage:": "Prozentsatz:",
+ "Perfect Traces": "Perfekte Spuren",
+ "Photo": "Foto",
"Pick foreground color": "Vordergrundfarbe wählen",
"Pick:": "Auswählen:",
+ "Picture": "Bild",
"Pixel Grid": "&Pixelraster",
"Pixel Grid Color:": "Pixelrasterfarbe:",
"Pixel Grid Opacity:": "Pixelrastertransparenz:",
"Pixel grid shows up when you zoom a lot": "Pixelraster erscheint bei starker Vergrößerung",
+ "Pixel-Perfect": "Pixel-Perfect",
"Pixel-perfect": "Pixelgenau",
+ "Pixels:": "Pixel:",
"Play Animation": "&Animation abspielen",
"Play Animation\n\nShortcut: Enter": "Animation abspielen\n\nTastenkürzel: Eingabetaste",
+ "Please attach the following file:": "Bitte hängen Sie die folgende Datei an:",
+ "Point Properties": "Punkt-Eigenschaften",
+ "Polish": "Polnisch",
"Polygon Tool": "Polygon-Werkzeug",
"Polygonal Lasso Tool": "Polygon-Lasso-Werkzeug",
"Portuguese": "Portugiesisch",
@@ -432,6 +524,7 @@
"Previous Frame": "&Vorheriger Frame",
"Properties...": "&Eigenschaften...",
"QUIT": "BEENDEN",
+ "Quality:": "Qualität:",
"Quick Reference": "Schnell&referenz",
"REDO": "WIEDERHERSTELLEN",
"RGB": "RGB",
@@ -448,10 +541,12 @@
"Recover Session...": "Sitzung wiederherstellen...",
"Rectangle Tool": "Rechteck-Werkzeug",
"Rectangular Marquee Tool": "Rechteck-Auswahlwerkzeug",
+ "Red/Blue Tint": "Rot/Blau-Tönung",
"Redo": "&Wiederherstellen",
"Refresh": "Aktualisieren",
"Refresh Reload Skin": "&Aktualisieren & Skin neu laden",
"Release Notes": "Versionshinweise",
+ "Reload Stock": "Vorrat neu laden",
"Remap": "Umordnen",
"Remove": "&Entfernen",
"Remove Frame": "&Frame entfernen",
@@ -461,6 +556,8 @@
"Repeat Last Export": "Letzten &Export wiederholen",
"Replace Color": "Farbe ersetzen",
"Replace Color...": "Farbe &ersetzen...",
+ "Replace current palette": "Aktuelle Palette ersetzen",
+ "Replace current range": "Aktuellen Bereich ersetzen",
"Replace selection": "Auswahl ersetzen",
"Rescan Scripts": "Skripte erneut scannen",
"Rescan scripts": "Skripte erneut scannen",
@@ -485,6 +582,7 @@
"Rows to be added/removed in the bottom side.\nUse a negative number to remove rows.": "Zeilen, die an der Unterseite hinzugefügt/entfernt werden sollen.\nVerwenden Sie eine negative Zahl, um Zeilen zu entfernen.",
"Rows to be added/removed in the top side.\nUse a negative number to remove rows.": "Zeilen, die an der Oberseite hinzugefügt/entfernt werden sollen.\nVerwenden Sie eine negative Zahl, um Zeilen zu entfernen.",
"Run Script": "Skript ausführen",
+ "Russian": "Russisch",
"Same Ink in All Tools": "Gleiche Farbe in allen Werkzeugen",
"Same in all Tools": "Gleich in allen Werkzeugen",
"Sample:": "Sample:",
@@ -497,6 +595,7 @@
"Save Mask": "Maske speichern",
"Save Palette": "Palette &speichern",
"Save as Default Palette": "Als Standardpalette speichern",
+ "Save as:": "Speichern als:",
"Save to MSK file": "&In MSK-Datei speichern",
"Screen": "Negativ multiplizieren",
"Screen Scaling:": "Bildschirmskalierung:",
@@ -514,6 +613,7 @@
"Scroll to center of canvas": "Zur Mitte der Leinwand scrollen",
"Select": "&Auswählen",
"Select File": "Datei auswählen",
+ "Select Font": "Schriftart auswählen",
"Select Tile": "Kachel auswählen",
"Select Tile (Add)": "Kachel auswählen (Hinzufügen)",
"Select Tile (Subtract)": "Kachel auswählen (Entfernen)",
@@ -521,6 +621,7 @@
"Selected layers": "Ausgewählte Ebenen",
"Selection": "Auswahl",
"Selection Edges": "&Auswahlkanten",
+ "Selection Tools": "Auswahl-Werkzeuge",
"Selection as Grid": "Auswahl als &Raster",
"Set Color Selector: Color Spectrum": "Farbwähler einstellen: Farbspektrum",
"Set Color Selector: Color Tint/Shade/Tone": "Farbwähler einstellen: Farbton/Schatten/Abstufung",
@@ -534,9 +635,11 @@
"Set Loop Section": "&Schleifenabschnitt festlegen",
"Set Palette": "Palette festlegen",
"Set Palette Entry Size": "Paletteneintragsgröße festlegen",
+ "Shade": "Schatten",
"Shades": "Schattierungen",
"Shading": "Schattierung",
"Shape:": "Form:",
+ "Shapes": "Formen",
"Share": "Teilen",
"Share...": "Teilen...",
"Sheet Type:": "Sheet-Typ:",
@@ -557,11 +660,13 @@
"Show the timeline automatically\nwhen a new frame or layer is added.": "Zeitleiste automatisch anzeigen,\nwenn ein neuer Frame oder eine neue Ebene hinzugefügt wird.",
"Show timeline automatically": "Zeitleiste automatisch anzeigen",
"Simple Ink": "Einfache Farbe",
+ "Size": "Größe",
"Size:": "Größe:",
"Small Size": "&Kleine Größe",
"Snap to Grid": "&Am Raster ausrichten",
"Soft Light": "Weiches Licht",
"Sort & Gradients": "Sortieren & Farbverläufe",
+ "Space": "Leertaste",
"Spanish": "Spanisch",
"Specific Color": "Spezifische Farbe",
"Spray Speed": "Sprühgeschwindigkeit",
@@ -571,6 +676,7 @@
"Sprite Properties": "Sprite-Eigenschaften",
"Sprite Size": "Sprite-Größe",
"Sprite Size...": "&Sprite-Größe...",
+ "Square Brush": "Quadratischer Pinsel",
"Subtract from selection\n(Shift+Alt)": "Von Auswahl abziehen\n(Umschalt+Alt)",
"Switch Colors": "Farben tauschen",
"Switch Pixel Perfect Mode": "Pixelgenauen Modus umschalten",
@@ -580,6 +686,8 @@
"TIME": "ZEIT",
"Tag Properties...": "Tag-&Eigenschaften...",
"Tags": "&Tags",
+ "Text": "Text",
+ "Text:": "Text:",
"The 'Stop' button should rewind the animation\nwhere it was started.": "Die 'Stopp'-Taste sollte die Animation\nan den Startpunkt zurückspulen.",
"Theme": "Design",
"Tile Mode": "Kachelmodus",
@@ -594,7 +702,7 @@
"Toggle Touchbar": "Touchbar umschalten",
"Tolerance:": "Toleranz:",
"Top:": "Oben:",
- "Touchbar": "Touchbar",
+ "Touchbar": "Touch Bar",
"Transform": "&Transformieren",
"Transparent": "&Transparent",
"Transparent Color": "Transparente Farbe",
@@ -602,6 +710,7 @@
"Trim": "&Beschneiden",
"Trim Sprite": "Sprite beschneiden",
"Tutorial": "Tutorial",
+ "Type": "Typ",
"Type:": "Typ:",
"UI Elements Scaling:": "Skalierung der UI-Elemente:",
"UNDO": "RÜCKGÄNGIG",
@@ -616,19 +725,26 @@
"Use native file dialog": "Systemeigenen Dateidialog verwenden",
"Use native mouse cursor": "Systemeigenen Mauszeiger verwenden",
"User Data": "Benutzerdaten",
+ "User Data:": "Benutzerdaten:",
"User Interface": "Benutzeroberfläche",
"Vertical Strip": "Vertikaler Streifen",
"Vertical Symmetry": "Vertikale Symmetrie",
"View": "&Ansicht",
+ "View Tools": "Ansicht-Werkzeuge",
"Visible": "&Sichtbar",
"Visible layers": "Sichtbare Ebenen",
+ "Warning - Important": "Warnung - Wichtig",
+ "WebP Options": "WebP-Optionen",
"When it's enabled each time you undo/redo\nthe current frame & layer will be modified\nto focus the undid/redid change.": "Wenn aktiviert, wird bei jedem Rückgängig/Wiederherstellen\nder aktuelle Frame & Ebene geändert,\num die rückgängig gemachte/wiederhergestellte Änderung zu fokussieren.",
"White": "&Weiß",
"Width:": "Breite:",
+ "Win": "Win",
"With this option you can recover your documents\nif the program finalizes unexpectedly.": "Mit dieser Option können Sie Ihre Dokumente wiederherstellen,\nwenn das Programm unerwartet beendet wird.",
"X:": "X:",
"Y:": "Y:",
"Yes": "&Ja",
+ "You are going to enter in \"Advanced Mode\".": "Sie werden in den \"Erweiterten Modus\" wechseln.",
+ "You are using a development version.": "Sie verwenden eine Entwicklungsversion.",
"You must restart the program to see your changes to:": "Sie müssen das Programm neu starten, um Ihre Änderungen zu sehen an:",
"Zoom 100%": "Zoom 100%",
"Zoom 1600%": "Zoom 1600%",
@@ -646,5 +762,9 @@
"Zoom in": "Vergrößern",
"Zoom out": "Verkleinern",
"Zoom sliding two fingers up or down": "Zoom durch Auf- oder Abwärtsgleiten mit zwei Fingern",
- "Zoom with scroll wheel": "Mit Scrollrad zoomen"
+ "Zoom with scroll wheel": "Mit Scrollrad zoomen",
+ "colors or less": "Farben oder weniger",
+ "explaining what you was doing when the program crashed.": "Erklären Sie, was Sie getan haben, als das Programm abgestürzt ist.",
+ "https://github.com/Veritaware/Besprited/issues": "https://github.com/Veritaware/Besprited/issues",
+ "to a bug report on:": "zu einem Fehlerbericht auf:"
}
diff --git a/data/languages/en.json b/data/languages/en.json
index ded52b204..9e3e61b4b 100644
--- a/data/languages/en.json
+++ b/data/languages/en.json
@@ -1,5 +1,4 @@
{
- "180": "&180",
"# of Columns:": "# of Columns:",
"# of Rows:": "# of Rows:",
"*\n Left-button: Erase with the background color in `Background' layer\n\n or transparent color in any other layer.\n*\n Right-button: Replace foreground with background color.\n ": "*\n Left-button: Erase with the background color in `Background' layer\n\n or transparent color in any other layer.\n*\n Right-button: Replace foreground with background color.\n ",
@@ -9,14 +8,23 @@
"- Classic skin graphics introduced in v0.8": "- Classic skin & graphics introduced in v0.8",
"- Lead developer, graphics maintainer": "- Lead developer, graphics & maintainer",
"-------- Recent Paths --------": "-------- Recent Paths --------",
+ "0": "0",
"10 Minutes": "10 Minutes",
+ "100": "100",
+ "100%": "100%",
"1000%": "1000%",
"15 Minutes": "15 Minutes",
+ "16": "16",
"16x16": "16x16",
+ "180": "&180",
"2 Minutes": "2 Minutes",
+ "200%": "200%",
"25%": "25%",
"2x2": "2x2",
"30 Minutes": "30 Minutes",
+ "300%": "300%",
+ "32": "32",
+ "400%": "400%",
"4x4": "4x4",
"5 Minutes": "5 Minutes",
"50%": "50%",
@@ -42,25 +50,35 @@
"Allow non-linear history": "Allow non-linear history",
"Alpha": "Alpha",
"Alpha Compositing": "Alpha Compositing",
+ "Alt": "Alt",
"Alternate Timeline": "Alternate Timeline",
"Alternate Toolbar": "Alternate Toolbar",
"Alternate Touchbar": "Alternate Touchbar",
+ "Angle": "Angle",
"Animated sprite editor pixel art tool": "Animated sprite editor & pixel art tool",
+ "Animation Direction:": "Animation Direction:",
+ "Animation Loop": "Animation Loop",
+ "Anti-aliasing filter": "Anti-aliasing filter",
"Apply": "&Apply",
"Apply Zoom": "Apply Zoom",
"Apply to the active frame/layer (the active cel)": "Apply to the active frame/layer (the active cel)",
"Array": "Array",
"As:": "As:",
+ "Assigned to:": "Assigned to:",
"Authors:": "Authors:",
"Auto": "Auto",
"Auto Select Layer": "Auto Select Layer",
"Automatically save recovery data every": "Automatically save recovery data every",
+ "Available Fonts:": "Available Fonts:",
+ "Available Palettes:": "Available Palettes:",
"Available Themes": "Available Themes",
+ "Background": "Background",
"Background From Layer": "Background From Layer",
"Background color": "Background color",
"Background from Layer": "&Background from Layer",
"Background:": "Background:",
"BackgroundFromLayer": "BackgroundFromLayer",
+ "Behind sprite": "Behind sprite",
"Best fit Index": "Best fit Index",
"Best fit for texture": "Best fit for texture",
"Black": "&Black",
@@ -75,6 +93,7 @@
"Brush Preview:": "Brush Preview:",
"Brush Size (in pixels)": "Brush Size (in pixels)",
"Brush Type": "Brush Type",
+ "Brush:": "Brush:",
"Brush: Custom Brush #1": "Brush: Custom Brush #1",
"Brush: Custom Brush #2": "Brush: Custom Brush #2",
"Brush: Custom Brush #3": "Brush: Custom Brush #3",
@@ -88,6 +107,7 @@
"Brush: Increment Size": "Brush: Increment Size",
"By Columns": "By Columns",
"By Rows": "By Rows",
+ "By:": "By:",
"Cancel": "Cancel",
"Cancel Current Operation": "Cancel Current Operation",
"Cancel drag and drop": "Cancel drag and drop",
@@ -101,12 +121,15 @@
"Check this option to enable hardware acceleration": "Check this option to enable hardware acceleration",
"Check this option to get\nthis old menus behavior.": "Check this option to get\nthis old menus behavior.",
"Checked Background": "Checked Background",
+ "Chinese": "Chinese",
+ "Circle Brush": "Circle Brush",
"Clear": "C&lear",
"Clear Cel": "Clear Cel",
"Close": "&Close",
"Close All": "Close All",
"Close All Files": "Close All Files",
"Close File": "Close File",
+ "Cmd": "Cmd",
"Color": "Color",
"Color Burn": "Color Burn",
"Color Curve": "&Color Curve",
@@ -116,7 +139,9 @@
"Color Range": "&Color Range",
"Color Spectrum": "Color Spectrum",
"Color Tint/Shade/Tone": "Color Tint/Shade/Tone",
+ "Color Tools": "Color Tools",
"Color+Alpha": "Color+Alpha",
+ "Color:": "Color:",
"Color: Decrement Background Index": "Color: Decrement Background Index",
"Color: Decrement Foreground Index": "Color: Decrement Foreground Index",
"Color: Increment Background Index": "Color: Increment Background Index",
@@ -124,9 +149,11 @@
"Colors:": "Colors:",
"Columns to be added/removed in the left side.\nUse a negative number to remove columns.": "Columns to be added/removed in the left side.\nUse a negative number to remove columns.",
"Columns to be added/removed in the right side.\nUse a negative number to remove columns.": "Columns to be added/removed in the right side.\nUse a negative number to remove columns.",
+ "Compression:": "Compression:",
"Constant Frame Rate": "Constant Frame Rate",
"Contiguous": "Contiguous",
"Contour Tool": "Contour Tool",
+ "Contours": "Contours",
"Contract": "&Contract",
"Contributors": "Contributors",
"Convolution Matrix": "Convolution &Matrix",
@@ -134,21 +161,29 @@
"Copy Alpha+Color": "Copy Alpha+Color",
"Copy Cel": "Copy Cel",
"Copy Merged": "Copy Mer&ged",
+ "Crash Report": "Crash Report",
"Create Palette from Current Sprite": "Create Palette from Current Sprite",
"Create Palette from Current Sprite (Color Quantization)": "Create Palette from Current Sprite (Color Quantization)",
+ "Create entries with alpha component": "Create entries with alpha component",
+ "Create new palette with": "Create new palette with",
"Crop": "Cr&op",
"Crop Sprite": "Crop Sprite",
+ "Ctrl": "Ctrl",
"Current Document": "Current Document",
"Current Frame": "Current Frame",
"Current Layer": "Current Layer",
+ "Current layer only": "Current layer only",
"Cursor": "Cursor",
"Cursors": "Cursors",
"Curve Tool": "Curve Tool",
"Cut": "Cu&t",
"Darken": "Darken",
+ "Default": "Default",
"Default Zoom": "Default Zoom",
+ "Delete": "Delete",
"Delete Frame": "Delete Frame",
"Delete Layer": "Delete Layer",
+ "Delete file, I've already sent it": "Delete file, I've already sent it",
"Depending on the layer (background/transparent),\nthe pasted selection will be adjusted\nautomatically (opaque/transparent)": "Depending on the layer (background/transparent),\nthe pasted selection will be adjusted\nautomatically (opaque/transparent)",
"Deselect": "&Deselect",
"Deselect Mask": "Deselect Mask",
@@ -157,9 +192,12 @@
"Developer Console": "Developer Console",
"Difference": "Difference",
"Discard Brush": "Discard Brush",
+ "Do it later": "Do it later",
"Documentation": "Documentation",
+ "Don't show this again": "Don't show this again",
"Donate": "&Donate",
"Down": "&Down",
+ "Drawing": "Drawing",
"Drop pixels here": "Drop pixels here",
"Duplicate": "&Duplicate",
"Duplicate Cel(s)": "&Duplicate Cel(s)",
@@ -180,11 +218,13 @@
"Edit": "&Edit",
"Edit Color": "Edit Color",
"Editor": "Editor",
+ "Effects": "Effects",
"Ellipse Tool": "Ellipse Tool",
"Elliptical Marquee Tool": "Elliptical Marquee Tool",
"English": "English",
"Erase": "Erase",
"Eraser Tool": "Eraser Tool",
+ "Eraser Tools": "Eraser Tools",
"Exclusion": "Exclusion",
"Exit": "E&xit",
"Expand": "&Expand",
@@ -196,6 +236,7 @@
"Export...": "E&xport...",
"Extra paint bucket options": "Extra paint bucket options",
"Extras": "&Extras",
+ "Extras:": "Extras:",
"Eyedropper": "Eyedropper",
"Eyedropper Tool": "Eyedropper Tool",
"FRM+": "FRM+",
@@ -215,6 +256,10 @@
"Flip Selection Horizontal": "Flip Selection Horizontal",
"Flip Selection Vertical": "Flip Selection Vertical",
"Flip Vertical": "Flip &Vertical",
+ "Folder Name:": "Folder Name:",
+ "Font Size:": "Font Size:",
+ "Font:": "Font:",
+ "Foreground": "Foreground",
"Foreground color": "Foreground color",
"Frame": "F&rame",
"Frame Properties": "Frame Properties",
@@ -225,11 +270,15 @@
"Frame:": "Frame:",
"Frames:": "Frames:",
"Freehand trace algorithm": "Freehand trace algorithm",
+ "French": "French",
"From:": "From:",
"Full Real-time Brush Preview": "Full Real-time Brush Preview",
"Fullscreen Preview": "&Fullscreen Preview",
+ "GIF Options": "GIF Options",
"GPU acceleration": "GPU acceleration",
"General": "General",
+ "General Options:": "General Options:",
+ "German": "German",
"Global": "Global",
"Go back one folder": "Go back one folder",
"Go forward one folder": "Go forward one folder",
@@ -247,6 +296,7 @@
"Go to Previous Layer": "Go to Previous Layer",
"Go to Previous tab": "Go to Previous tab",
"Go to modified frame/layer": "Go to modified frame/layer",
+ "Graph": "Graph",
"Gray": "Gray",
"Gray+Alpha": "Gray+Alpha",
"Grayscale": "&Grayscale",
@@ -263,32 +313,45 @@
"Height:": "Height:",
"Help": "&Help",
"Hide": "Hide",
+ "Hindi": "Hindi",
"Home": "&Home",
"Horizontal Strip": "Horizontal Strip",
"Horizontal Symmetry": "Horizontal Symmetry",
"Hue": "Hue",
+ "Icon": "Icon",
"Ignore Alpha Component": "Ignore Alpha Component",
+ "Image Hint:": "Image Hint:",
+ "Image Preset:": "Image Preset:",
"Import": "&Import",
"Import Sprite Sheet": "&Import Sprite Sheet",
+ "In front of sprite": "In front of sprite",
"Include partial tiles at bottom/right edges": "Include partial tiles at bottom/right edges",
"Indexed": "&Indexed",
"Indexed (No Dithering)": "&Indexed (No Dithering)",
"Indexed (Ordered Dither)": "Indexed (Ordered &Dither)",
+ "Indonesian": "Indonesian",
"Ink": "Ink",
+ "Ink:": "Ink:",
"Inner:": "Inner:",
"Insert Text": "Insert Text",
+ "Interlaced": "Interlaced",
+ "Interpolation:": "Interpolation:",
"Inverse": "&Inverse",
"Invert": "&Invert",
"Invert Color": "Invert Color",
"Invert Mask": "Invert Mask",
"Italian": "Italian",
+ "JPEG Options": "JPEG Options",
"JSON Data": "JSON Data",
"Japanese": "Japanese",
"Jumble Tool": "Jumble Tool",
"Jump to": "&Jump to",
"Keep selection after \"Edit > Clear\" command": "Keep selection after \"Edit > Clear\" command",
+ "Key:": "Key:",
+ "Keyboard Shortcut": "Keyboard Shortcut",
"Keyboard Shortcuts": "Keyboard Shortcuts",
"Keyboard Shortcuts...": "&Keyboard Shortcuts...",
+ "Korean": "Korean",
"LYR+": "LYR+",
"LYR<": "LYR<",
"LYR>": "LYR>",
@@ -313,6 +376,7 @@
"Line Tool": "Line Tool",
"Link Cels": "&Link Cels",
"Links Cels": "Links Cels",
+ "Load": "Load",
"Load Default Palette": "Load Default Palette",
"Load Palette": "L&oad Palette",
"Load from MSK file": "&Load from MSK file",
@@ -320,6 +384,10 @@
"Locate Configuration File": "Locate Configuration File",
"Locate Crash Folder": "Locate Crash Folder",
"Lock Alpha": "Lock Alpha",
+ "Lock Ratio": "Lock Ratio",
+ "Loop through tag frames": "Loop through tag frames",
+ "Lossless WebP": "Lossless WebP",
+ "Lossy WebP": "Lossy WebP",
"Luminosity": "Luminosity",
"MB": "MB",
"Magic Wand Tool": "Magic Wand Tool",
@@ -331,14 +399,18 @@
"Medium Size": "&Medium Size",
"Merge Down": "&Merge Down",
"Merge Down Layer": "Merge Down Layer",
+ "Merge Frames": "Merge Frames",
"Meta:": "Meta:",
+ "Method:": "Method:",
"Mirror Horizontally": "Mirror Horizontally",
"Mirror Vertically": "Mirror Vertically",
"Mode:": "Mode:",
+ "Modifiers:": "Modifiers:",
"Modify": "&Modify",
"Modify Blue Component": "Modify Blue Component",
"Modify Green Component": "Modify Green Component",
"Modify Red Component": "Modify Red Component",
+ "Modify Selection": "Modify Selection",
"Move": "&Move",
"Move Cel": "Move Cel",
"Move Selection Boundaries 1 horizontal tile left": "Move Selection Boundaries 1 horizontal tile left",
@@ -358,6 +430,7 @@
"Move Selection Content 1 vertical tile down": "Move Selection Content 1 vertical tile down",
"Move Selection Content 1 vertical tile up": "Move Selection Content 1 vertical tile up",
"Move Tool": "Move Tool",
+ "Move Tools": "Move Tools",
"Multiply": "Multiply",
"Name:": "Name:",
"Negative Black and White": "Negative Black and White",
@@ -366,10 +439,13 @@
"New Empty Frame": "New &Empty Frame",
"New File": "New File",
"New File...": "New File...",
+ "New Folder": "New Folder",
"New Frame": "&New Frame",
"New Frame Tag": "New Frame Tag",
+ "New Image Layer": "New Image Layer",
"New Layer": "&New Layer",
"New Layer Set": "New Layer Set",
+ "New Set": "New Set",
"New Sprite": "New Sprite",
"New Sprite From Selection": "New Sprite From Selection",
"New Sprite from Selection": "&New Sprite from Selection",
@@ -380,9 +456,13 @@
"No": "&No",
"None": "&None",
"Normal": "Normal",
+ "Number of colors:": "Number of colors:",
"OK": "&OK",
+ "Onion Skin:": "Onion Skin:",
"Onion Skinning": "Onion Skinning",
+ "Opacity": "Opacity",
"Opacity (paint intensity)": "Opacity (paint intensity)",
+ "Opacity Step:": "Opacity Step:",
"Opacity:": "Opacity:",
"Open File...": "Open File...",
"Open Folder": "Open &Folder",
@@ -393,6 +473,7 @@
"Open With Associated Application": "Open With Associated Application",
"Open generated sprite sheet": "Open generated sprite sheet",
"Open in Folder": "Open in &Folder",
+ "Open the following file to debug your compilation:": "Open the following file to debug your compilation:",
"Open with OS": "&Open with OS",
"Open...": "&Open...",
"Options": "Options",
@@ -407,20 +488,31 @@
"Palette Editor": "&Palette Editor",
"Palette Size": "Palette Si&ze",
"Palette entry used as\ntransparent color in each\nlayer (only for indexed images).": "Palette entry used as\ntransparent color in each\nlayer (only for indexed images).",
+ "Palette from Sprite": "Palette from Sprite",
"Paste": "&Paste",
"Pattern aligned to destination": "Pattern aligned to destination",
"Pattern aligned to source": "Pattern aligned to source",
"Pencil Tool": "Pencil Tool",
+ "Pencil Tools": "Pencil Tools",
"Per Tag": "Per Tag",
+ "Percentage:": "Percentage:",
+ "Perfect Traces": "Perfect Traces",
+ "Photo": "Photo",
"Pick foreground color": "Pick foreground color",
"Pick:": "Pick:",
+ "Picture": "Picture",
"Pixel Grid": "&Pixel Grid",
"Pixel Grid Color:": "Pixel Grid Color:",
"Pixel Grid Opacity:": "Pixel Grid Opacity:",
"Pixel grid shows up when you zoom a lot": "Pixel grid shows up when you zoom a lot",
+ "Pixel-Perfect": "Pixel-Perfect",
"Pixel-perfect": "Pixel-perfect",
+ "Pixels:": "Pixels:",
"Play Animation": "&Play Animation",
"Play Animation\n\nShortcut: Enter": "Play Animation\n\nShortcut: Enter",
+ "Please attach the following file:": "Please attach the following file:",
+ "Point Properties": "Point Properties",
+ "Polish": "Polish",
"Polygon Tool": "Polygon Tool",
"Polygonal Lasso Tool": "Polygonal Lasso Tool",
"Portuguese": "Portuguese",
@@ -432,6 +524,7 @@
"Previous Frame": "&Previous Frame",
"Properties...": "&Properties...",
"QUIT": "QUIT",
+ "Quality:": "Quality:",
"Quick Reference": "Quick &Reference",
"REDO": "REDO",
"RGB": "RGB",
@@ -448,10 +541,12 @@
"Recover Session...": "Recover Session...",
"Rectangle Tool": "Rectangle Tool",
"Rectangular Marquee Tool": "Rectangular Marquee Tool",
+ "Red/Blue Tint": "Red/Blue Tint",
"Redo": "&Redo",
"Refresh": "Refresh",
"Refresh Reload Skin": "&Refresh && Reload Skin",
"Release Notes": "Release Notes",
+ "Reload Stock": "Reload Stock",
"Remap": "Remap",
"Remove": "&Remove",
"Remove Frame": "&Remove Frame",
@@ -461,6 +556,8 @@
"Repeat Last Export": "Repeat &Last Export",
"Replace Color": "Replace Color",
"Replace Color...": "R&eplace Color...",
+ "Replace current palette": "Replace current palette",
+ "Replace current range": "Replace current range",
"Replace selection": "Replace selection",
"Rescan Scripts": "Rescan Scripts",
"Rescan scripts": "Rescan scripts",
@@ -485,6 +582,7 @@
"Rows to be added/removed in the bottom side.\nUse a negative number to remove rows.": "Rows to be added/removed in the bottom side.\nUse a negative number to remove rows.",
"Rows to be added/removed in the top side.\nUse a negative number to remove rows.": "Rows to be added/removed in the top side.\nUse a negative number to remove rows.",
"Run Script": "Run Script",
+ "Russian": "Russian",
"Same Ink in All Tools": "Same Ink in All Tools",
"Same in all Tools": "Same in all Tools",
"Sample:": "Sample:",
@@ -497,6 +595,7 @@
"Save Mask": "Save Mask",
"Save Palette": "S&ave Palette",
"Save as Default Palette": "Save as Default Palette",
+ "Save as:": "Save as:",
"Save to MSK file": "&Save to MSK file",
"Screen": "Screen",
"Screen Scaling:": "Screen Scaling:",
@@ -514,6 +613,7 @@
"Scroll to center of canvas": "Scroll to center of canvas",
"Select": "Selec&t",
"Select File": "Select File",
+ "Select Font": "Select Font",
"Select Tile": "Select Tile",
"Select Tile (Add)": "Select Tile (Add)",
"Select Tile (Subtract)": "Select Tile (Subtract)",
@@ -521,6 +621,7 @@
"Selected layers": "Selected layers",
"Selection": "Selection",
"Selection Edges": "&Selection Edges",
+ "Selection Tools": "Selection Tools",
"Selection as Grid": "Select&ion as Grid",
"Set Color Selector: Color Spectrum": "Set Color Selector: Color Spectrum",
"Set Color Selector: Color Tint/Shade/Tone": "Set Color Selector: Color Tint/Shade/Tone",
@@ -534,9 +635,11 @@
"Set Loop Section": "Set &Loop Section",
"Set Palette": "Set Palette",
"Set Palette Entry Size": "Set Palette Entry Size",
+ "Shade": "Shade",
"Shades": "Shades",
"Shading": "Shading",
"Shape:": "Shape:",
+ "Shapes": "Shapes",
"Share": "Share",
"Share...": "Share...",
"Sheet Type:": "Sheet Type:",
@@ -557,11 +660,13 @@
"Show the timeline automatically\nwhen a new frame or layer is added.": "Show the timeline automatically\nwhen a new frame or layer is added.",
"Show timeline automatically": "Show timeline automatically",
"Simple Ink": "Simple Ink",
+ "Size": "Size",
"Size:": "Size:",
"Small Size": "&Small Size",
"Snap to Grid": "&Snap to Grid",
"Soft Light": "Soft Light",
"Sort & Gradients": "Sort & Gradients",
+ "Space": "Space",
"Spanish": "Spanish",
"Specific Color": "Specific Color",
"Spray Speed": "Spray Speed",
@@ -571,6 +676,7 @@
"Sprite Properties": "Sprite Properties",
"Sprite Size": "Sprite Size",
"Sprite Size...": "&Sprite Size...",
+ "Square Brush": "Square Brush",
"Subtract from selection\n(Shift+Alt)": "Subtract from selection\n(Shift+Alt)",
"Switch Colors": "Switch Colors",
"Switch Pixel Perfect Mode": "Switch Pixel Perfect Mode",
@@ -580,6 +686,8 @@
"TIME": "TIME",
"Tag Properties...": "Tag &Properties...",
"Tags": "&Tags",
+ "Text": "Text",
+ "Text:": "Text:",
"The 'Stop' button should rewind the animation\nwhere it was started.": "The 'Stop' button should rewind the animation\nwhere it was started.",
"Theme": "Theme",
"Tile Mode": "Tile Mode",
@@ -602,6 +710,7 @@
"Trim": "&Trim",
"Trim Sprite": "Trim Sprite",
"Tutorial": "Tutorial",
+ "Type": "Type",
"Type:": "Type:",
"UI Elements Scaling:": "UI Elements Scaling:",
"UNDO": "UNDO",
@@ -616,19 +725,26 @@
"Use native file dialog": "Use native file dialog",
"Use native mouse cursor": "Use native mouse cursor",
"User Data": "User Data",
+ "User Data:": "User Data:",
"User Interface": "User Interface",
"Vertical Strip": "Vertical Strip",
"Vertical Symmetry": "Vertical Symmetry",
"View": "&View",
+ "View Tools": "View Tools",
"Visible": "&Visible",
"Visible layers": "Visible layers",
+ "Warning - Important": "Warning - Important",
+ "WebP Options": "WebP Options",
"When it's enabled each time you undo/redo\nthe current frame & layer will be modified\nto focus the undid/redid change.": "When it's enabled each time you undo/redo\nthe current frame & layer will be modified\nto focus the undid/redid change.",
"White": "&White",
"Width:": "Width:",
+ "Win": "Win",
"With this option you can recover your documents\nif the program finalizes unexpectedly.": "With this option you can recover your documents\nif the program finalizes unexpectedly.",
"X:": "X:",
"Y:": "Y:",
"Yes": "&Yes",
+ "You are going to enter in \"Advanced Mode\".": "You are going to enter in \"Advanced Mode\".",
+ "You are using a development version.": "You are using a development version.",
"You must restart the program to see your changes to:": "You must restart the program to see your changes to:",
"Zoom 100%": "Zoom 100%",
"Zoom 1600%": "Zoom 1600%",
@@ -646,5 +762,9 @@
"Zoom in": "Zoom in",
"Zoom out": "Zoom out",
"Zoom sliding two fingers up or down": "Zoom sliding two fingers up or down",
- "Zoom with scroll wheel": "Zoom with scroll wheel"
+ "Zoom with scroll wheel": "Zoom with scroll wheel",
+ "colors or less": "colors or less",
+ "explaining what you was doing when the program crashed.": "explaining what you was doing when the program crashed.",
+ "https://github.com/Veritaware/Besprited/issues": "https://github.com/Veritaware/Besprited/issues",
+ "to a bug report on:": "to a bug report on:"
}
diff --git a/data/languages/es.json b/data/languages/es.json
index 2b237e9a4..37f9e95fa 100644
--- a/data/languages/es.json
+++ b/data/languages/es.json
@@ -1,5 +1,4 @@
{
- "180": "&180",
"# of Columns:": "# de columnas:",
"# of Rows:": "# de filas:",
"*\n Left-button: Erase with the background color in `Background' layer\n\n or transparent color in any other layer.\n*\n Right-button: Replace foreground with background color.\n ": "*\n Botón izquierdo: Borrar con el color de fondo en la capa `Background'\n\n o color transparente en cualquier otra capa.\n*\n Botón derecho: Reemplazar el color de primer plano con el color de fondo.\n ",
@@ -9,14 +8,23 @@
"- Classic skin graphics introduced in v0.8": "- Aspecto clásico y gráficos introducidos en v0.8",
"- Lead developer, graphics maintainer": "- Desarrollador principal, gráficos y mantenedor",
"-------- Recent Paths --------": "-------- Rutas recientes --------",
+ "0": "0",
"10 Minutes": "10 Minutos",
+ "100": "100",
+ "100%": "100%",
"1000%": "1000%",
"15 Minutes": "15 Minutos",
+ "16": "16",
"16x16": "16x16",
+ "180": "&180",
"2 Minutes": "2 Minutos",
+ "200%": "200%",
"25%": "25%",
"2x2": "2x2",
"30 Minutes": "30 Minutos",
+ "300%": "300%",
+ "32": "32",
+ "400%": "400%",
"4x4": "4x4",
"5 Minutes": "5 Minutos",
"50%": "50%",
@@ -42,25 +50,35 @@
"Allow non-linear history": "Permitir historial no lineal",
"Alpha": "Alfa",
"Alpha Compositing": "Composición alfa",
+ "Alt": "Alt",
"Alternate Timeline": "Línea de tiempo alterna",
"Alternate Toolbar": "Barra de herramientas alternativa",
"Alternate Touchbar": "Touchbar alternativo",
+ "Angle": "Ángulo",
"Animated sprite editor pixel art tool": "Editor de sprites animados y herramienta de pixel art",
+ "Animation Direction:": "Dirección de la animación:",
+ "Animation Loop": "Bucle de animación",
+ "Anti-aliasing filter": "Filtro de suavizado",
"Apply": "&Aplicar",
"Apply Zoom": "Aplicar zoom",
"Apply to the active frame/layer (the active cel)": "Aplicar al fotograma/capa activo (la celda activa)",
"Array": "Matriz",
"As:": "Como:",
+ "Assigned to:": "Asignado a:",
"Authors:": "Autores:",
"Auto": "Auto",
"Auto Select Layer": "Seleccionar capa automáticamente",
"Automatically save recovery data every": "Guardar automáticamente datos de recuperación cada",
+ "Available Fonts:": "Fuentes disponibles:",
+ "Available Palettes:": "Paletas disponibles:",
"Available Themes": "Temas disponibles",
+ "Background": "Fondo",
"Background From Layer": "Fondo desde capa",
"Background color": "Color de fondo",
"Background from Layer": "&Fondo desde capa",
"Background:": "Fondo:",
- "BackgroundFromLayer": "BackgroundFromLayer",
+ "BackgroundFromLayer": "Fondo de capa",
+ "Behind sprite": "Detrás del sprite",
"Best fit Index": "Mejor ajuste de índice",
"Best fit for texture": "Mejor ajuste para textura",
"Black": "&Negro",
@@ -75,6 +93,7 @@
"Brush Preview:": "Vista previa del pincel:",
"Brush Size (in pixels)": "Tamaño del pincel (en píxeles)",
"Brush Type": "Tipo de pincel",
+ "Brush:": "Pincel:",
"Brush: Custom Brush #1": "Pincel: Pincel personalizado #1",
"Brush: Custom Brush #2": "Pincel: Pincel personalizado #2",
"Brush: Custom Brush #3": "Pincel: Pincel personalizado #3",
@@ -88,6 +107,7 @@
"Brush: Increment Size": "Pincel: Aumentar tamaño",
"By Columns": "Por columnas",
"By Rows": "Por filas",
+ "By:": "Por:",
"Cancel": "Cancelar",
"Cancel Current Operation": "Cancelar operación actual",
"Cancel drag and drop": "Cancelar arrastrar y soltar",
@@ -101,12 +121,15 @@
"Check this option to enable hardware acceleration": "Marque esta opción para habilitar la aceleración por hardware",
"Check this option to get\nthis old menus behavior.": "Marque esta opción para obtener\nel comportamiento antiguo de los menús.",
"Checked Background": "Fondo cuadriculado",
+ "Chinese": "Chino",
+ "Circle Brush": "Pincel circular",
"Clear": "&Borrar",
"Clear Cel": "Borrar celda",
"Close": "&Cerrar",
"Close All": "Cerrar todo",
"Close All Files": "Cerrar todos los archivos",
"Close File": "Cerrar archivo",
+ "Cmd": "Cmd",
"Color": "Color",
"Color Burn": "Subexponer color",
"Color Curve": "&Curva de color",
@@ -116,7 +139,9 @@
"Color Range": "&Rango de color",
"Color Spectrum": "Espectro de color",
"Color Tint/Shade/Tone": "Tinte/Sombra/Tono de color",
+ "Color Tools": "Herramientas de color",
"Color+Alpha": "Color+Alfa",
+ "Color:": "Color:",
"Color: Decrement Background Index": "Color: Disminuir índice de fondo",
"Color: Decrement Foreground Index": "Color: Disminuir índice de primer plano",
"Color: Increment Background Index": "Color: Aumentar índice de fondo",
@@ -124,9 +149,11 @@
"Colors:": "Colores:",
"Columns to be added/removed in the left side.\nUse a negative number to remove columns.": "Columnas a agregar/quitar en el lado izquierdo.\nUse un número negativo para eliminar columnas.",
"Columns to be added/removed in the right side.\nUse a negative number to remove columns.": "Columnas a agregar/quitar en el lado derecho.\nUse un número negativo para eliminar columnas.",
+ "Compression:": "Compresión:",
"Constant Frame Rate": "Tasa de fotogramas constante",
"Contiguous": "Contiguo",
"Contour Tool": "Herramienta de contorno",
+ "Contours": "Contornos",
"Contract": "&Contraer",
"Contributors": "Colaboradores",
"Convolution Matrix": "Matriz de &convolución",
@@ -134,21 +161,29 @@
"Copy Alpha+Color": "Copiar Alfa+Color",
"Copy Cel": "Copiar celda",
"Copy Merged": "Copiar comb&inado",
+ "Crash Report": "Informe de error",
"Create Palette from Current Sprite": "Crear paleta desde el sprite actual",
"Create Palette from Current Sprite (Color Quantization)": "Crear paleta desde el sprite actual (Cuantización de color)",
+ "Create entries with alpha component": "Crear entradas con componente alfa",
+ "Create new palette with": "Crear nueva paleta con",
"Crop": "&Recortar",
"Crop Sprite": "Recortar sprite",
+ "Ctrl": "Ctrl",
"Current Document": "Documento actual",
"Current Frame": "Fotograma actual",
"Current Layer": "Capa actual",
+ "Current layer only": "Solo capa actual",
"Cursor": "Cursor",
"Cursors": "Cursores",
"Curve Tool": "Herramienta de curva",
"Cut": "&Cortar",
"Darken": "Oscurecer",
+ "Default": "Predeterminado",
"Default Zoom": "Zoom predeterminado",
+ "Delete": "Eliminar",
"Delete Frame": "Eliminar fotograma",
"Delete Layer": "Eliminar capa",
+ "Delete file, I've already sent it": "Eliminar archivo, ya lo he enviado",
"Depending on the layer (background/transparent),\nthe pasted selection will be adjusted\nautomatically (opaque/transparent)": "Dependiendo de la capa (fondo/transparente),\nla selección pegada se ajustará\nautomáticamente (opaco/transparente)",
"Deselect": "&Deseleccionar",
"Deselect Mask": "Deseleccionar máscara",
@@ -157,9 +192,12 @@
"Developer Console": "Consola de desarrollador",
"Difference": "Diferencia",
"Discard Brush": "Descartar pincel",
+ "Do it later": "Hacerlo más tarde",
"Documentation": "Documentación",
+ "Don't show this again": "No mostrar de nuevo",
"Donate": "&Donar",
"Down": "&Abajo",
+ "Drawing": "Dibujo",
"Drop pixels here": "Suelta píxeles aquí",
"Duplicate": "&Duplicar",
"Duplicate Cel(s)": "&Duplicar celda(s)",
@@ -180,11 +218,13 @@
"Edit": "&Editar",
"Edit Color": "Editar color",
"Editor": "Editor",
+ "Effects": "Efectos",
"Ellipse Tool": "Herramienta de elipse",
"Elliptical Marquee Tool": "Herramienta de marco elíptico",
"English": "Inglés",
"Erase": "Borrar",
"Eraser Tool": "Herramienta borrador",
+ "Eraser Tools": "Herramientas de borrador",
"Exclusion": "Exclusión",
"Exit": "&Salir",
"Expand": "&Expandir",
@@ -196,6 +236,7 @@
"Export...": "E&xportar...",
"Extra paint bucket options": "Opciones adicionales del cubo de pintura",
"Extras": "&Extras",
+ "Extras:": "Extras:",
"Eyedropper": "Cuentagotas",
"Eyedropper Tool": "Herramienta cuentagotas",
"FRM+": "FRM+",
@@ -215,6 +256,10 @@
"Flip Selection Horizontal": "Voltear selección horizontalmente",
"Flip Selection Vertical": "Voltear selección verticalmente",
"Flip Vertical": "Voltear &verticalmente",
+ "Folder Name:": "Nombre de carpeta:",
+ "Font Size:": "Tamaño de fuente:",
+ "Font:": "Fuente:",
+ "Foreground": "Primer plano",
"Foreground color": "Color de primer plano",
"Frame": "&Fotograma",
"Frame Properties": "Propiedades del fotograma",
@@ -225,11 +270,15 @@
"Frame:": "Fotograma:",
"Frames:": "Fotogramas:",
"Freehand trace algorithm": "Algoritmo de trazo a mano alzada",
+ "French": "Francés",
"From:": "Desde:",
"Full Real-time Brush Preview": "Vista previa de pincel en tiempo real completa",
"Fullscreen Preview": "Vista &previa a pantalla completa",
+ "GIF Options": "Opciones GIF",
"GPU acceleration": "Aceleración GPU",
"General": "General",
+ "General Options:": "Opciones generales:",
+ "German": "Alemán",
"Global": "Global",
"Go back one folder": "Regresar una carpeta",
"Go forward one folder": "Avanzar una carpeta",
@@ -247,6 +296,7 @@
"Go to Previous Layer": "Ir a la capa anterior",
"Go to Previous tab": "Ir a la pestaña anterior",
"Go to modified frame/layer": "Ir al fotograma/capa modificados",
+ "Graph": "Gráfico",
"Gray": "Gris",
"Gray+Alpha": "Gris+Alfa",
"Grayscale": "&Escala de grises",
@@ -263,32 +313,45 @@
"Height:": "Altura:",
"Help": "&Ayuda",
"Hide": "Ocultar",
+ "Hindi": "Hindi",
"Home": "&Inicio",
"Horizontal Strip": "Tira horizontal",
"Horizontal Symmetry": "Simetría horizontal",
"Hue": "Matiz",
+ "Icon": "Icono",
"Ignore Alpha Component": "Ignorar componente alfa",
+ "Image Hint:": "Pista de imagen:",
+ "Image Preset:": "Preajuste de imagen:",
"Import": "&Importar",
"Import Sprite Sheet": "&Importar hoja de sprites",
+ "In front of sprite": "Delante del sprite",
"Include partial tiles at bottom/right edges": "Incluir mosaicos parciales en los bordes inferior/derecho",
"Indexed": "&Indexado",
"Indexed (No Dithering)": "&Indexado (sin tramado)",
"Indexed (Ordered Dither)": "Indexado (tramado &ordenado)",
+ "Indonesian": "Indonesio",
"Ink": "Tinta",
+ "Ink:": "Tinta:",
"Inner:": "Interior:",
"Insert Text": "Insertar texto",
+ "Interlaced": "Entrelazado",
+ "Interpolation:": "Interpolación:",
"Inverse": "&Invertir",
"Invert": "&Invertir",
"Invert Color": "Invertir color",
"Invert Mask": "Invertir máscara",
"Italian": "Italiano",
+ "JPEG Options": "Opciones JPEG",
"JSON Data": "JSON Data",
"Japanese": "Japonés",
"Jumble Tool": "Herramienta mezclar",
"Jump to": "&Saltar a",
"Keep selection after \"Edit > Clear\" command": "Mantener la selección después del comando \"Editar > Borrar\"",
+ "Key:": "Tecla:",
+ "Keyboard Shortcut": "Atajo de teclado",
"Keyboard Shortcuts": "Atajos de teclado",
"Keyboard Shortcuts...": "&Atajos de teclado...",
+ "Korean": "Coreano",
"LYR+": "LYR+",
"LYR<": "LYR<",
"LYR>": "LYR>",
@@ -313,13 +376,18 @@
"Line Tool": "Herramienta línea",
"Link Cels": "&Vincular celdas",
"Links Cels": "Vincular celdas",
+ "Load": "Cargar",
"Load Default Palette": "Cargar paleta predeterminada",
"Load Palette": "C&argar paleta",
"Load from MSK file": "&Cargar desde archivo MSK",
- "LoadMask": "LoadMask",
+ "LoadMask": "Cargar máscara",
"Locate Configuration File": "Localizar archivo de configuración",
"Locate Crash Folder": "Localizar carpeta de fallos",
"Lock Alpha": "Bloquear alfa",
+ "Lock Ratio": "Bloquear proporción",
+ "Loop through tag frames": "Repetir fotogramas etiquetados",
+ "Lossless WebP": "WebP sin pérdida",
+ "Lossy WebP": "WebP con pérdida",
"Luminosity": "Luminosidad",
"MB": "MB",
"Magic Wand Tool": "Herramienta varita mágica",
@@ -331,14 +399,18 @@
"Medium Size": "&Tamaño mediano",
"Merge Down": "&Combinar hacia abajo",
"Merge Down Layer": "Combinar capa hacia abajo",
+ "Merge Frames": "Combinar fotogramas",
"Meta:": "Meta:",
+ "Method:": "Método:",
"Mirror Horizontally": "Reflejar horizontalmente",
"Mirror Vertically": "Reflejar verticalmente",
"Mode:": "Modo:",
+ "Modifiers:": "Modificadores:",
"Modify": "&Modificar",
"Modify Blue Component": "Modificar componente azul",
"Modify Green Component": "Modificar componente verde",
"Modify Red Component": "Modificar componente rojo",
+ "Modify Selection": "Modificar selección",
"Move": "&Mover",
"Move Cel": "Mover celda",
"Move Selection Boundaries 1 horizontal tile left": "Mover límites de selección 1 mosaico horizontal a la izquierda",
@@ -358,6 +430,7 @@
"Move Selection Content 1 vertical tile down": "Mover contenido de selección 1 mosaico vertical abajo",
"Move Selection Content 1 vertical tile up": "Mover contenido de selección 1 mosaico vertical arriba",
"Move Tool": "Herramienta mover",
+ "Move Tools": "Herramientas de movimiento",
"Multiply": "Multiplicar",
"Name:": "Nombre:",
"Negative Black and White": "Negativo blanco y negro",
@@ -366,10 +439,13 @@
"New Empty Frame": "Nuevo &fotograma vacío",
"New File": "Archivo nuevo",
"New File...": "Archivo nuevo...",
+ "New Folder": "Nueva carpeta",
"New Frame": "&Nuevo fotograma",
"New Frame Tag": "Nueva etiqueta de fotograma",
+ "New Image Layer": "Nueva capa de imagen",
"New Layer": "&Nueva capa",
"New Layer Set": "Nuevo conjunto de capas",
+ "New Set": "Nuevo conjunto",
"New Sprite": "Nuevo sprite",
"New Sprite From Selection": "Nuevo sprite desde selección",
"New Sprite from Selection": "&Nuevo sprite desde selección",
@@ -380,9 +456,13 @@
"No": "&No",
"None": "&Ninguno",
"Normal": "Normal",
+ "Number of colors:": "Número de colores:",
"OK": "&Aceptar",
- "Onion Skinning": "Piel de cebolla",
+ "Onion Skin:": "Papel cebolla:",
+ "Onion Skinning": "Papel cebolla",
+ "Opacity": "Opacidad",
"Opacity (paint intensity)": "Opacidad (intensidad de pintura)",
+ "Opacity Step:": "Paso de opacidad:",
"Opacity:": "Opacidad:",
"Open File...": "Abrir archivo...",
"Open Folder": "Abrir &carpeta",
@@ -393,6 +473,7 @@
"Open With Associated Application": "Abrir con la aplicación asociada",
"Open generated sprite sheet": "Abrir hoja de sprites generada",
"Open in Folder": "Abrir en &carpeta",
+ "Open the following file to debug your compilation:": "Abra el siguiente archivo para depurar su compilación:",
"Open with OS": "&Abrir con el SO",
"Open...": "&Abrir...",
"Options": "Opciones",
@@ -407,20 +488,31 @@
"Palette Editor": "&Editor de paleta",
"Palette Size": "Tamaño de &paleta",
"Palette entry used as\ntransparent color in each\nlayer (only for indexed images).": "Entrada de paleta usada como\ncolor transparente en cada\ncapa (solo para imágenes indexadas).",
+ "Palette from Sprite": "Paleta del sprite",
"Paste": "&Pegar",
"Pattern aligned to destination": "Patrón alineado al destino",
"Pattern aligned to source": "Patrón alineado al origen",
"Pencil Tool": "Herramienta lápiz",
+ "Pencil Tools": "Herramientas de lápiz",
"Per Tag": "Por etiqueta",
+ "Percentage:": "Porcentaje:",
+ "Perfect Traces": "Trazos perfectos",
+ "Photo": "Foto",
"Pick foreground color": "Seleccionar color de primer plano",
"Pick:": "Seleccionar:",
+ "Picture": "Imagen",
"Pixel Grid": "&Cuadrícula de píxeles",
"Pixel Grid Color:": "Color de cuadrícula de píxeles:",
"Pixel Grid Opacity:": "Opacidad de cuadrícula de píxeles:",
"Pixel grid shows up when you zoom a lot": "La cuadrícula de píxeles aparece al hacer mucho zoom",
+ "Pixel-Perfect": "Pixel-Perfect",
"Pixel-perfect": "Pixel-perfect",
+ "Pixels:": "Píxeles:",
"Play Animation": "&Reproducir animación",
"Play Animation\n\nShortcut: Enter": "Reproducir animación\n\nAtajo: Enter",
+ "Please attach the following file:": "Por favor adjunte el siguiente archivo:",
+ "Point Properties": "Propiedades del punto",
+ "Polish": "Polaco",
"Polygon Tool": "Herramienta polígono",
"Polygonal Lasso Tool": "Herramienta lazo poligonal",
"Portuguese": "Portugués",
@@ -432,6 +524,7 @@
"Previous Frame": "&Fotograma anterior",
"Properties...": "&Propiedades...",
"QUIT": "SALIR",
+ "Quality:": "Calidad:",
"Quick Reference": "Guía &rápida",
"REDO": "REHACER",
"RGB": "RGB",
@@ -448,10 +541,12 @@
"Recover Session...": "Recuperar sesión...",
"Rectangle Tool": "Herramienta rectángulo",
"Rectangular Marquee Tool": "Herramienta de marco rectangular",
+ "Red/Blue Tint": "Tinte rojo/azul",
"Redo": "&Rehacer",
"Refresh": "Actualizar",
"Refresh Reload Skin": "&Actualizar y recargar skin",
"Release Notes": "Notas de la versión",
+ "Reload Stock": "Recargar existencias",
"Remap": "Reasignar",
"Remove": "&Eliminar",
"Remove Frame": "&Eliminar fotograma",
@@ -461,6 +556,8 @@
"Repeat Last Export": "Repetir &última exportación",
"Replace Color": "Reemplazar color",
"Replace Color...": "R&eemplazar color...",
+ "Replace current palette": "Reemplazar paleta actual",
+ "Replace current range": "Reemplazar rango actual",
"Replace selection": "Reemplazar selección",
"Rescan Scripts": "Volver a escanear scripts",
"Rescan scripts": "Volver a escanear scripts",
@@ -485,6 +582,7 @@
"Rows to be added/removed in the bottom side.\nUse a negative number to remove rows.": "Filas a agregar/quitar en el lado inferior.\nUse un número negativo para eliminar filas.",
"Rows to be added/removed in the top side.\nUse a negative number to remove rows.": "Filas a agregar/quitar en el lado superior.\nUse un número negativo para eliminar filas.",
"Run Script": "Ejecutar script",
+ "Russian": "Ruso",
"Same Ink in All Tools": "Misma tinta en todas las herramientas",
"Same in all Tools": "Igual en todas las herramientas",
"Sample:": "Muestra:",
@@ -497,6 +595,7 @@
"Save Mask": "Guardar máscara",
"Save Palette": "G&uardar paleta",
"Save as Default Palette": "Guardar como paleta predeterminada",
+ "Save as:": "Guardar como:",
"Save to MSK file": "&Guardar en archivo MSK",
"Screen": "Pantalla",
"Screen Scaling:": "Escalado de pantalla:",
@@ -514,6 +613,7 @@
"Scroll to center of canvas": "Desplazar al centro del lienzo",
"Select": "&Seleccionar",
"Select File": "Seleccionar archivo",
+ "Select Font": "Seleccionar fuente",
"Select Tile": "Seleccionar mosaico",
"Select Tile (Add)": "Seleccionar mosaico (Agregar)",
"Select Tile (Subtract)": "Seleccionar mosaico (Restar)",
@@ -521,6 +621,7 @@
"Selected layers": "Capas seleccionadas",
"Selection": "Selección",
"Selection Edges": "&Bordes de selección",
+ "Selection Tools": "Herramientas de selección",
"Selection as Grid": "Selección como &cuadrícula",
"Set Color Selector: Color Spectrum": "Establecer selector de color: Espectro de color",
"Set Color Selector: Color Tint/Shade/Tone": "Establecer selector de color: Tinte/Sombra/Tono de color",
@@ -534,9 +635,11 @@
"Set Loop Section": "Establecer &sección de bucle",
"Set Palette": "Establecer paleta",
"Set Palette Entry Size": "Establecer tamaño de entrada de paleta",
+ "Shade": "Sombra",
"Shades": "Sombras",
"Shading": "Sombreado",
"Shape:": "Forma:",
+ "Shapes": "Formas",
"Share": "Compartir",
"Share...": "Compartir...",
"Sheet Type:": "Tipo de hoja:",
@@ -557,11 +660,13 @@
"Show the timeline automatically\nwhen a new frame or layer is added.": "Mostrar la línea de tiempo automáticamente\ncuando se agrega un nuevo fotograma o capa.",
"Show timeline automatically": "Mostrar línea de tiempo automáticamente",
"Simple Ink": "Tinta simple",
+ "Size": "Tamaño",
"Size:": "Tamaño:",
"Small Size": "&Tamaño pequeño",
"Snap to Grid": "&Ajustar a cuadrícula",
"Soft Light": "Luz suave",
"Sort & Gradients": "Ordenar & degradados",
+ "Space": "Espacio",
"Spanish": "Español",
"Specific Color": "Color específico",
"Spray Speed": "Velocidad de aerosol",
@@ -571,6 +676,7 @@
"Sprite Properties": "Propiedades del sprite",
"Sprite Size": "Tamaño del sprite",
"Sprite Size...": "&Tamaño del sprite...",
+ "Square Brush": "Pincel cuadrado",
"Subtract from selection\n(Shift+Alt)": "Restar de la selección\n(Shift+Alt)",
"Switch Colors": "Cambiar colores",
"Switch Pixel Perfect Mode": "Cambiar al modo Pixel Perfect",
@@ -580,6 +686,8 @@
"TIME": "TIEMPO",
"Tag Properties...": "Propiedades de &etiqueta...",
"Tags": "&Etiquetas",
+ "Text": "Texto",
+ "Text:": "Texto:",
"The 'Stop' button should rewind the animation\nwhere it was started.": "El botón 'Detener' debería rebobinar la animación\ndonde comenzó.",
"Theme": "Tema",
"Tile Mode": "Modo mosaico",
@@ -594,7 +702,7 @@
"Toggle Touchbar": "Alternar Touchbar",
"Tolerance:": "Tolerancia:",
"Top:": "Arriba:",
- "Touchbar": "Touchbar",
+ "Touchbar": "Barra táctil",
"Transform": "Transfor&mar",
"Transparent": "&Transparente",
"Transparent Color": "Color transparente",
@@ -602,6 +710,7 @@
"Trim": "&Recortar",
"Trim Sprite": "Recortar sprite",
"Tutorial": "Tutorial",
+ "Type": "Tipo",
"Type:": "Tipo:",
"UI Elements Scaling:": "Escalado de elementos de UI:",
"UNDO": "DESHACER",
@@ -616,19 +725,26 @@
"Use native file dialog": "Usar diálogo de archivos nativo",
"Use native mouse cursor": "Usar cursor de ratón nativo",
"User Data": "Datos de usuario",
+ "User Data:": "Datos de usuario:",
"User Interface": "Interfaz de usuario",
"Vertical Strip": "Tira vertical",
"Vertical Symmetry": "Simetría vertical",
"View": "&Ver",
+ "View Tools": "Herramientas de vista",
"Visible": "&Visible",
"Visible layers": "Capas visibles",
+ "Warning - Important": "Advertencia - Importante",
+ "WebP Options": "Opciones WebP",
"When it's enabled each time you undo/redo\nthe current frame & layer will be modified\nto focus the undid/redid change.": "Cuando está habilitado, cada vez que deshaga/rehaga\nel fotograma y capa actual se modificarán\npara enfocarse en el cambio deshecho/reh echo.",
"White": "&Blanco",
"Width:": "Ancho:",
+ "Win": "Win",
"With this option you can recover your documents\nif the program finalizes unexpectedly.": "Con esta opción puede recuperar sus documentos\nsi el programa finaliza inesperadamente.",
"X:": "X:",
"Y:": "Y:",
"Yes": "&Sí",
+ "You are going to enter in \"Advanced Mode\".": "Va a entrar en \"Modo avanzado\".",
+ "You are using a development version.": "Está usando una versión de desarrollo.",
"You must restart the program to see your changes to:": "Debe reiniciar el programa para ver sus cambios en:",
"Zoom 100%": "Zoom 100%",
"Zoom 1600%": "Zoom 1600%",
@@ -646,5 +762,9 @@
"Zoom in": "Acercar",
"Zoom out": "Alejar",
"Zoom sliding two fingers up or down": "Zoom deslizando dos dedos hacia arriba o abajo",
- "Zoom with scroll wheel": "Zoom con rueda de desplazamiento"
+ "Zoom with scroll wheel": "Zoom con rueda de desplazamiento",
+ "colors or less": "colores o menos",
+ "explaining what you was doing when the program crashed.": "explicando lo que estaba haciendo cuando el programa falló.",
+ "https://github.com/Veritaware/Besprited/issues": "https://github.com/Veritaware/Besprited/issues",
+ "to a bug report on:": "a un informe de error en:"
}
diff --git a/data/languages/fr.json b/data/languages/fr.json
index ca6a2200b..b0fe23d00 100644
--- a/data/languages/fr.json
+++ b/data/languages/fr.json
@@ -1,5 +1,4 @@
{
- "180": "&180",
"# of Columns:": "Nombre de colonnes :",
"# of Rows:": "Nombre de lignes :",
"*\n Left-button: Erase with the background color in `Background' layer\n\n or transparent color in any other layer.\n*\n Right-button: Replace foreground with background color.\n ": "*\n Bouton gauche : Effacer avec la couleur d'arrière-plan dans le calque 'Arrière-plan'\n\n ou avec la couleur transparente dans tout autre calque.\n*\n Bouton droit : Remplacer la couleur de premier plan par la couleur d'arrière-plan.\n ",
@@ -9,14 +8,23 @@
"- Classic skin graphics introduced in v0.8": "- Apparence classique & graphismes introduits dans la version 0.8",
"- Lead developer, graphics maintainer": "- Développeur principal, graphismes & mainteneur",
"-------- Recent Paths --------": "-------- Chemins récents --------",
+ "0": "0",
"10 Minutes": "10 minutes",
+ "100": "100",
+ "100%": "100%",
"1000%": "1000%",
"15 Minutes": "15 minutes",
+ "16": "16",
"16x16": "16x16",
+ "180": "&180",
"2 Minutes": "2 minutes",
+ "200%": "200%",
"25%": "25%",
"2x2": "2x2",
"30 Minutes": "30 minutes",
+ "300%": "300%",
+ "32": "32",
+ "400%": "400%",
"4x4": "4x4",
"5 Minutes": "5 minutes",
"50%": "50%",
@@ -42,25 +50,35 @@
"Allow non-linear history": "Autoriser l'historique non linéaire",
"Alpha": "Alpha",
"Alpha Compositing": "Composition Alpha",
+ "Alt": "Alt",
"Alternate Timeline": "Ligne du temps alternative",
"Alternate Toolbar": "Barre d'outils alternative",
"Alternate Touchbar": "Touchbar alternative",
+ "Angle": "Angle",
"Animated sprite editor pixel art tool": "Éditeur de sprites animés & outil de pixel art",
+ "Animation Direction:": "Direction de l'animation :",
+ "Animation Loop": "Boucle d'animation",
+ "Anti-aliasing filter": "Filtre anti-crénelage",
"Apply": "&Appliquer",
"Apply Zoom": "Appliquer le zoom",
"Apply to the active frame/layer (the active cel)": "Appliquer à l'image/calque actif (la cellule active)",
"Array": "Grille",
"As:": "En tant que :",
+ "Assigned to:": "Assigné à :",
"Authors:": "Auteurs :",
"Auto": "Auto",
"Auto Select Layer": "Sélection automatique du calque",
"Automatically save recovery data every": "Sauvegarder automatiquement les données de récupération toutes les",
+ "Available Fonts:": "Polices disponibles :",
+ "Available Palettes:": "Palettes disponibles :",
"Available Themes": "Thèmes disponibles",
+ "Background": "Arrière-plan",
"Background From Layer": "Arrière-plan depuis le calque",
"Background color": "Couleur d'arrière-plan",
"Background from Layer": "&Arrière-plan depuis le calque",
"Background:": "Arrière-plan :",
- "BackgroundFromLayer": "BackgroundFromLayer",
+ "BackgroundFromLayer": "Arrière-plan du calque",
+ "Behind sprite": "Derrière le sprite",
"Best fit Index": "Index d'ajustement optimal",
"Best fit for texture": "Meilleur ajustement pour la texture",
"Black": "&Noir",
@@ -75,6 +93,7 @@
"Brush Preview:": "Aperçu du pinceau :",
"Brush Size (in pixels)": "Taille du pinceau (en pixels)",
"Brush Type": "Type de pinceau",
+ "Brush:": "Pinceau :",
"Brush: Custom Brush #1": "Pinceau : Pinceau personnalisé n°1",
"Brush: Custom Brush #2": "Pinceau : Pinceau personnalisé n°2",
"Brush: Custom Brush #3": "Pinceau : Pinceau personnalisé n°3",
@@ -88,6 +107,7 @@
"Brush: Increment Size": "Pinceau : Augmenter la taille",
"By Columns": "Par colonnes",
"By Rows": "Par lignes",
+ "By:": "Par :",
"Cancel": "Annuler",
"Cancel Current Operation": "Annuler l'opération en cours",
"Cancel drag and drop": "Annuler le glisser-déposer",
@@ -101,12 +121,15 @@
"Check this option to enable hardware acceleration": "Cochez cette option pour activer l'accélération matérielle",
"Check this option to get\nthis old menus behavior.": "Cochez cette option pour obtenir\nle comportement des anciens menus.",
"Checked Background": "Arrière-plan à carreaux",
+ "Chinese": "Chinois",
+ "Circle Brush": "Pinceau circulaire",
"Clear": "Effa&cer",
"Clear Cel": "Effacer la cellule",
"Close": "&Fermer",
"Close All": "Tout fermer",
"Close All Files": "Fermer tous les fichiers",
"Close File": "Fermer le fichier",
+ "Cmd": "Cmd",
"Color": "Couleur",
"Color Burn": "Assombrir",
"Color Curve": "&Courbe de couleur",
@@ -116,7 +139,9 @@
"Color Range": "&Plage de couleurs",
"Color Spectrum": "Spectre de couleurs",
"Color Tint/Shade/Tone": "Teinte/Nuance/Tonalité",
+ "Color Tools": "Outils de couleur",
"Color+Alpha": "Couleur+Alpha",
+ "Color:": "Couleur :",
"Color: Decrement Background Index": "Couleur : Diminuer l'index d'arrière-plan",
"Color: Decrement Foreground Index": "Couleur : Diminuer l'index de premier plan",
"Color: Increment Background Index": "Couleur : Augmenter l'index d'arrière-plan",
@@ -124,9 +149,11 @@
"Colors:": "Couleurs :",
"Columns to be added/removed in the left side.\nUse a negative number to remove columns.": "Colonnes à ajouter/retirer sur le côté gauche.\nUtilisez un nombre négatif pour retirer des colonnes.",
"Columns to be added/removed in the right side.\nUse a negative number to remove columns.": "Colonnes à ajouter/retirer sur le côté droit.\nUtilisez un nombre négatif pour retirer des colonnes.",
+ "Compression:": "Compression :",
"Constant Frame Rate": "Fréquence d'images constante",
"Contiguous": "Contigu",
"Contour Tool": "Outil de contour",
+ "Contours": "Contours",
"Contract": "&Contracter",
"Contributors": "Contributeurs",
"Convolution Matrix": "Matrice de convolution",
@@ -134,21 +161,29 @@
"Copy Alpha+Color": "Copier Alpha+Couleur",
"Copy Cel": "Copier la cellule",
"Copy Merged": "Copier fu&sionné",
+ "Crash Report": "Rapport de plantage",
"Create Palette from Current Sprite": "Créer une palette depuis le sprite actuel",
"Create Palette from Current Sprite (Color Quantization)": "Créer une palette depuis le sprite actuel (Quantification des couleurs)",
+ "Create entries with alpha component": "Créer des entrées avec composante alpha",
+ "Create new palette with": "Créer une nouvelle palette avec",
"Crop": "Re&couper",
"Crop Sprite": "Recadrer le sprite",
+ "Ctrl": "Ctrl",
"Current Document": "Document actuel",
"Current Frame": "Image actuelle",
"Current Layer": "Calque actuel",
+ "Current layer only": "Calque actuel seulement",
"Cursor": "Curseur",
"Cursors": "Curseurs",
"Curve Tool": "Outil de courbe",
"Cut": "Co&uper",
"Darken": "Assombrir",
+ "Default": "Par défaut",
"Default Zoom": "Zoom par défaut",
+ "Delete": "Supprimer",
"Delete Frame": "Supprimer l'image",
"Delete Layer": "Supprimer le calque",
+ "Delete file, I've already sent it": "Supprimer le fichier, je l'ai déjà envoyé",
"Depending on the layer (background/transparent),\nthe pasted selection will be adjusted\nautomatically (opaque/transparent)": "Selon le calque (arrière-plan/transparent),\nla sélection collée sera ajustée\nautomatiquement (opaque/transparent)",
"Deselect": "&Désélectionner",
"Deselect Mask": "Désélectionner le masque",
@@ -157,9 +192,12 @@
"Developer Console": "Console développeur",
"Difference": "Différence",
"Discard Brush": "Abandonner le pinceau",
+ "Do it later": "Le faire plus tard",
"Documentation": "Documentation",
+ "Don't show this again": "Ne plus afficher",
"Donate": "&Faire un don",
"Down": "&Bas",
+ "Drawing": "Dessin",
"Drop pixels here": "Déposer les pixels ici",
"Duplicate": "&Dupliquer",
"Duplicate Cel(s)": "&Dupliquer la/les cellule(s)",
@@ -180,11 +218,13 @@
"Edit": "&Éditer",
"Edit Color": "Éditer la couleur",
"Editor": "Éditeur",
+ "Effects": "Effets",
"Ellipse Tool": "Outil ellipse",
"Elliptical Marquee Tool": "Outil de sélection elliptique",
"English": "Anglais",
"Erase": "Effacer",
"Eraser Tool": "Outil gomme",
+ "Eraser Tools": "Outils gomme",
"Exclusion": "Exclusion",
"Exit": "&Quitter",
"Expand": "&Étendre",
@@ -196,6 +236,7 @@
"Export...": "E&xporter...",
"Extra paint bucket options": "Options supplémentaires du pot de peinture",
"Extras": "&Extras",
+ "Extras:": "Extras :",
"Eyedropper": "Pipette",
"Eyedropper Tool": "Outil pipette",
"FRM+": "IMG+",
@@ -215,6 +256,10 @@
"Flip Selection Horizontal": "Retourner la sélection horizontalement",
"Flip Selection Vertical": "Retourner la sélection verticalement",
"Flip Vertical": "Retourner &verticalement",
+ "Folder Name:": "Nom du dossier :",
+ "Font Size:": "Taille de police :",
+ "Font:": "Police :",
+ "Foreground": "Premier plan",
"Foreground color": "Couleur de premier plan",
"Frame": "&Image",
"Frame Properties": "Propriétés de l'image",
@@ -225,11 +270,15 @@
"Frame:": "Image :",
"Frames:": "Images :",
"Freehand trace algorithm": "Algorithme de tracé à main levée",
+ "French": "Français",
"From:": "De :",
"Full Real-time Brush Preview": "Aperçu en temps réel complet du pinceau",
"Fullscreen Preview": "Aperçu en &plein écran",
+ "GIF Options": "Options GIF",
"GPU acceleration": "Accélération GPU",
"General": "Général",
+ "General Options:": "Options générales :",
+ "German": "Allemand",
"Global": "Global",
"Go back one folder": "Revenir d'un dossier",
"Go forward one folder": "Avancer d'un dossier",
@@ -247,6 +296,7 @@
"Go to Previous Layer": "Aller au calque précédent",
"Go to Previous tab": "Aller à l'onglet précédent",
"Go to modified frame/layer": "Aller à l'image/calque modifié",
+ "Graph": "Graphique",
"Gray": "Gris",
"Gray+Alpha": "Gris+Alpha",
"Grayscale": "&Niveaux de gris",
@@ -263,32 +313,45 @@
"Height:": "Hauteur :",
"Help": "&Aide",
"Hide": "Masquer",
+ "Hindi": "Hindi",
"Home": "&Accueil",
"Horizontal Strip": "Bande horizontale",
"Horizontal Symmetry": "Symétrie horizontale",
"Hue": "Teinte",
+ "Icon": "Icône",
"Ignore Alpha Component": "Ignorer la composante Alpha",
+ "Image Hint:": "Indice d'image :",
+ "Image Preset:": "Préréglage d'image :",
"Import": "&Importer",
"Import Sprite Sheet": "&Importer une planche de sprites",
+ "In front of sprite": "Devant le sprite",
"Include partial tiles at bottom/right edges": "Inclure les tuiles partielles aux bords inférieur/droit",
"Indexed": "&Indexé",
"Indexed (No Dithering)": "&Indexé (sans tramage)",
"Indexed (Ordered Dither)": "Indexé (tramage &ordonné)",
+ "Indonesian": "Indonésien",
"Ink": "Encre",
+ "Ink:": "Encre :",
"Inner:": "Intérieur :",
"Insert Text": "Insérer du texte",
+ "Interlaced": "Entrelacé",
+ "Interpolation:": "Interpolation :",
"Inverse": "&Inverser",
"Invert": "&Inverser",
"Invert Color": "Inverser les couleurs",
"Invert Mask": "Inverser le masque",
"Italian": "Italien",
+ "JPEG Options": "Options JPEG",
"JSON Data": "Données JSON",
"Japanese": "Japonais",
"Jumble Tool": "Outil de mélange",
"Jump to": "&Aller à",
"Keep selection after \"Edit > Clear\" command": "Garder la sélection après la commande \"Édition > Effacer\"",
+ "Key:": "Touche :",
+ "Keyboard Shortcut": "Raccourci clavier",
"Keyboard Shortcuts": "Raccourcis clavier",
"Keyboard Shortcuts...": "&Raccourcis clavier...",
+ "Korean": "Coréen",
"LYR+": "CLQ+",
"LYR<": "CLQ<",
"LYR>": "CLQ>",
@@ -313,13 +376,18 @@
"Line Tool": "Outil ligne",
"Link Cels": "&Lier les cellules",
"Links Cels": "Lier les cellules",
+ "Load": "Charger",
"Load Default Palette": "Charger la palette par défaut",
"Load Palette": "C&harger la palette",
"Load from MSK file": "&Charger depuis un fichier MSK",
- "LoadMask": "LoadMask",
+ "LoadMask": "Charger masque",
"Locate Configuration File": "Localiser le fichier de configuration",
"Locate Crash Folder": "Localiser le dossier des plantages",
"Lock Alpha": "Verrouiller l'Alpha",
+ "Lock Ratio": "Verrouiller proportions",
+ "Loop through tag frames": "Boucler sur les images taguées",
+ "Lossless WebP": "WebP sans perte",
+ "Lossy WebP": "WebP avec perte",
"Luminosity": "Luminosité",
"MB": "Mo",
"Magic Wand Tool": "Baguette magique",
@@ -331,14 +399,18 @@
"Medium Size": "&Taille moyenne",
"Merge Down": "&Fusionner vers le bas",
"Merge Down Layer": "Fusionner le calque vers le bas",
+ "Merge Frames": "Fusionner les images",
"Meta:": "Métadonnées :",
+ "Method:": "Méthode :",
"Mirror Horizontally": "Miroir horizontal",
"Mirror Vertically": "Miroir vertical",
"Mode:": "Mode :",
+ "Modifiers:": "Modificateurs :",
"Modify": "&Modifier",
"Modify Blue Component": "Modifier la composante Bleue",
"Modify Green Component": "Modifier la composante Verte",
"Modify Red Component": "Modifier la composante Rouge",
+ "Modify Selection": "Modifier la sélection",
"Move": "&Déplacer",
"Move Cel": "Déplacer la cellule",
"Move Selection Boundaries 1 horizontal tile left": "Déplacer les limites de la sélection d'une tuile horizontale vers la gauche",
@@ -358,6 +430,7 @@
"Move Selection Content 1 vertical tile down": "Déplacer le contenu de la sélection d'une tuile verticale vers le bas",
"Move Selection Content 1 vertical tile up": "Déplacer le contenu de la sélection d'une tuile verticale vers le haut",
"Move Tool": "Outil déplacement",
+ "Move Tools": "Outils de déplacement",
"Multiply": "Multiplier",
"Name:": "Nom :",
"Negative Black and White": "Négatif noir et blanc",
@@ -366,10 +439,13 @@
"New Empty Frame": "Nouvelle &image vide",
"New File": "Nouveau fichier",
"New File...": "Nouveau fichier...",
+ "New Folder": "Nouveau dossier",
"New Frame": "&Nouvelle image",
"New Frame Tag": "Nouveau tag d'image",
+ "New Image Layer": "Nouveau calque image",
"New Layer": "&Nouveau calque",
"New Layer Set": "Nouveau groupe de calques",
+ "New Set": "Nouvel ensemble",
"New Sprite": "Nouveau sprite",
"New Sprite From Selection": "Nouveau sprite depuis la sélection",
"New Sprite from Selection": "&Nouveau sprite depuis la sélection",
@@ -380,9 +456,13 @@
"No": "&Non",
"None": "&Aucun",
"Normal": "Normal",
+ "Number of colors:": "Nombre de couleurs :",
"OK": "&OK",
+ "Onion Skin:": "Pelure d'oignon :",
"Onion Skinning": "Pelure d'oignon",
+ "Opacity": "Opacité",
"Opacity (paint intensity)": "Opacité (intensité de peinture)",
+ "Opacity Step:": "Pas d'opacité :",
"Opacity:": "Opacité :",
"Open File...": "Ouvrir le fichier...",
"Open Folder": "Ouvrir le &dossier",
@@ -393,6 +473,7 @@
"Open With Associated Application": "Ouvrir avec l'application associée",
"Open generated sprite sheet": "Ouvrir la planche de sprites générée",
"Open in Folder": "Ouvrir dans le &dossier",
+ "Open the following file to debug your compilation:": "Ouvrez le fichier suivant pour déboguer votre compilation :",
"Open with OS": "&Ouvrir avec le système",
"Open...": "&Ouvrir...",
"Options": "Options",
@@ -407,20 +488,31 @@
"Palette Editor": "&Éditeur de palette",
"Palette Size": "Ta&ille de la palette",
"Palette entry used as\ntransparent color in each\nlayer (only for indexed images).": "Entrée de palette utilisée comme\ncouleur transparente dans chaque\ncalque (uniquement pour les images indexées).",
+ "Palette from Sprite": "Palette du sprite",
"Paste": "&Coller",
"Pattern aligned to destination": "Motif aligné sur la destination",
"Pattern aligned to source": "Motif aligné sur la source",
"Pencil Tool": "Crayon",
+ "Pencil Tools": "Outils crayon",
"Per Tag": "Par tag",
+ "Percentage:": "Pourcentage :",
+ "Perfect Traces": "Tracés parfaits",
+ "Photo": "Photo",
"Pick foreground color": "Choisir la couleur de premier plan",
"Pick:": "Prélèvement :",
+ "Picture": "Image",
"Pixel Grid": "&Grille de pixels",
"Pixel Grid Color:": "Couleur de la grille de pixels :",
"Pixel Grid Opacity:": "Opacité de la grille de pixels :",
"Pixel grid shows up when you zoom a lot": "La grille de pixels apparaît lorsque vous zoomez beaucoup",
+ "Pixel-Perfect": "Pixel-Perfect",
"Pixel-perfect": "Pixel parfait",
+ "Pixels:": "Pixels :",
"Play Animation": "&Lire l'animation",
"Play Animation\n\nShortcut: Enter": "Lire l'animation\n\nRaccourci : Entrée",
+ "Please attach the following file:": "Veuillez joindre le fichier suivant :",
+ "Point Properties": "Propriétés du point",
+ "Polish": "Polonais",
"Polygon Tool": "Outil polygone",
"Polygonal Lasso Tool": "Outil lasso polygonal",
"Portuguese": "Portugais",
@@ -432,6 +524,7 @@
"Previous Frame": "&Image précédente",
"Properties...": "&Propriétés...",
"QUIT": "QUITTER",
+ "Quality:": "Qualité :",
"Quick Reference": "Guide &rapide",
"REDO": "RÉTABLIR",
"RGB": "RVB",
@@ -448,10 +541,12 @@
"Recover Session...": "Récupérer la session...",
"Rectangle Tool": "Outil rectangle",
"Rectangular Marquee Tool": "Outil de sélection rectangulaire",
+ "Red/Blue Tint": "Teinte rouge/bleue",
"Redo": "&Rétablir",
"Refresh": "Actualiser",
"Refresh Reload Skin": "&Actualiser & recharger l'apparence",
"Release Notes": "Notes de version",
+ "Reload Stock": "Recharger le stock",
"Remap": "Remapper",
"Remove": "&Supprimer",
"Remove Frame": "&Supprimer l'image",
@@ -461,6 +556,8 @@
"Repeat Last Export": "Répéter le &dernier export",
"Replace Color": "Remplacer la couleur",
"Replace Color...": "R&emplacer la couleur...",
+ "Replace current palette": "Remplacer la palette actuelle",
+ "Replace current range": "Remplacer la plage actuelle",
"Replace selection": "Remplacer la sélection",
"Rescan Scripts": "Rescanner les scripts",
"Rescan scripts": "Rescanner les scripts",
@@ -485,6 +582,7 @@
"Rows to be added/removed in the bottom side.\nUse a negative number to remove rows.": "Lignes à ajouter/retirer sur le côté inférieur.\nUtilisez un nombre négatif pour retirer des lignes.",
"Rows to be added/removed in the top side.\nUse a negative number to remove rows.": "Lignes à ajouter/retirer sur le côté supérieur.\nUtilisez un nombre négatif pour retirer des lignes.",
"Run Script": "Exécuter le script",
+ "Russian": "Russe",
"Same Ink in All Tools": "Même encre dans tous les outils",
"Same in all Tools": "Identique dans tous les outils",
"Sample:": "Échantillon :",
@@ -497,6 +595,7 @@
"Save Mask": "Enregistrer le masque",
"Save Palette": "Enregistrer la &palette",
"Save as Default Palette": "Enregistrer comme palette par défaut",
+ "Save as:": "Enregistrer sous :",
"Save to MSK file": "&Enregistrer dans un fichier MSK",
"Screen": "Écran",
"Screen Scaling:": "Mise à l'échelle de l'écran :",
@@ -514,6 +613,7 @@
"Scroll to center of canvas": "Défiler vers le centre de la toile",
"Select": "Sél&ectionner",
"Select File": "Sélectionner un fichier",
+ "Select Font": "Sélectionner une police",
"Select Tile": "Sélectionner une tuile",
"Select Tile (Add)": "Sélectionner une tuile (Ajouter)",
"Select Tile (Subtract)": "Sélectionner une tuile (Soustraire)",
@@ -521,6 +621,7 @@
"Selected layers": "Calques sélectionnés",
"Selection": "Sélection",
"Selection Edges": "&Bords de la sélection",
+ "Selection Tools": "Outils de sélection",
"Selection as Grid": "Sélect&ion comme grille",
"Set Color Selector: Color Spectrum": "Définir le sélecteur de couleur : Spectre de couleurs",
"Set Color Selector: Color Tint/Shade/Tone": "Définir le sélecteur de couleur : Teinte/Nuance/Tonalité",
@@ -534,9 +635,11 @@
"Set Loop Section": "Définir la section de &boucle",
"Set Palette": "Définir la palette",
"Set Palette Entry Size": "Définir la taille des entrées de palette",
+ "Shade": "Ombrage",
"Shades": "Nuances",
"Shading": "Ombrage",
"Shape:": "Forme :",
+ "Shapes": "Formes",
"Share": "Partager",
"Share...": "Partager...",
"Sheet Type:": "Type de planche :",
@@ -557,11 +660,13 @@
"Show the timeline automatically\nwhen a new frame or layer is added.": "Afficher la ligne du temps automatiquement\nlorsqu'une nouvelle image ou un nouveau calque est ajouté.",
"Show timeline automatically": "Afficher la ligne du temps automatiquement",
"Simple Ink": "Encre simple",
+ "Size": "Taille",
"Size:": "Taille :",
"Small Size": "&Petite taille",
"Snap to Grid": "&Magnétisme à la grille",
"Soft Light": "Lumière douce",
"Sort & Gradients": "Trier & dégradés",
+ "Space": "Espace",
"Spanish": "Espagnol",
"Specific Color": "Couleur spécifique",
"Spray Speed": "Vitesse de pulvérisation",
@@ -571,6 +676,7 @@
"Sprite Properties": "Propriétés du sprite",
"Sprite Size": "Taille du sprite",
"Sprite Size...": "&Taille du sprite...",
+ "Square Brush": "Pinceau carré",
"Subtract from selection\n(Shift+Alt)": "Soustraire de la sélection\n(Maj+Alt)",
"Switch Colors": "Échanger les couleurs",
"Switch Pixel Perfect Mode": "Basculer en mode Pixel parfait",
@@ -580,6 +686,8 @@
"TIME": "TEMPS",
"Tag Properties...": "Propriétés du &tag...",
"Tags": "&Tags",
+ "Text": "Texte",
+ "Text:": "Texte :",
"The 'Stop' button should rewind the animation\nwhere it was started.": "Le bouton 'Arrêter' devrait rembobiner l'animation\nlà où elle a été lancée.",
"Theme": "Thème",
"Tile Mode": "Mode tuile",
@@ -594,7 +702,7 @@
"Toggle Touchbar": "Basculer la Touchbar",
"Tolerance:": "Tolérance :",
"Top:": "Haut :",
- "Touchbar": "Touchbar",
+ "Touchbar": "Barre tactile",
"Transform": "Trans&former",
"Transparent": "&Transparent",
"Transparent Color": "Couleur transparente",
@@ -602,6 +710,7 @@
"Trim": "&Rogner",
"Trim Sprite": "Rogner le sprite",
"Tutorial": "Tutoriel",
+ "Type": "Type",
"Type:": "Type :",
"UI Elements Scaling:": "Mise à l'échelle de l'interface utilisateur :",
"UNDO": "ANNULER",
@@ -616,19 +725,26 @@
"Use native file dialog": "Utiliser la boîte de dialogue de fichier native",
"Use native mouse cursor": "Utiliser le curseur de souris natif",
"User Data": "Données utilisateur",
+ "User Data:": "Données utilisateur :",
"User Interface": "Interface utilisateur",
"Vertical Strip": "Bande verticale",
"Vertical Symmetry": "Symétrie verticale",
"View": "&Affichage",
+ "View Tools": "Outils d'affichage",
"Visible": "&Visible",
"Visible layers": "Calques visibles",
+ "Warning - Important": "Attention - Important",
+ "WebP Options": "Options WebP",
"When it's enabled each time you undo/redo\nthe current frame & layer will be modified\nto focus the undid/redid change.": "Lorsque cette option est activée, chaque fois que vous annulez/rétablissez,\nl'image & le calque actuels seront modifiés\npour se concentrer sur le changement annulé/rétabli.",
"White": "&Blanc",
"Width:": "Largeur :",
+ "Win": "Win",
"With this option you can recover your documents\nif the program finalizes unexpectedly.": "Avec cette option, vous pouvez récupérer vos documents\nsi le programme se termine de manière inattendue.",
"X:": "X :",
"Y:": "Y :",
"Yes": "&Oui",
+ "You are going to enter in \"Advanced Mode\".": "Vous allez entrer en \"Mode avancé\".",
+ "You are using a development version.": "Vous utilisez une version de développement.",
"You must restart the program to see your changes to:": "Vous devez redémarrer le programme pour voir vos modifications de :",
"Zoom 100%": "Zoom 100%",
"Zoom 1600%": "Zoom 1600%",
@@ -646,5 +762,9 @@
"Zoom in": "Zoomer",
"Zoom out": "Dézoomer",
"Zoom sliding two fingers up or down": "Zoomer en glissant deux doigts vers le haut ou le bas",
- "Zoom with scroll wheel": "Zoomer avec la molette"
+ "Zoom with scroll wheel": "Zoomer avec la molette",
+ "colors or less": "couleurs ou moins",
+ "explaining what you was doing when the program crashed.": "expliquant ce que vous faisiez lorsque le programme s'est planté.",
+ "https://github.com/Veritaware/Besprited/issues": "https://github.com/Veritaware/Besprited/issues",
+ "to a bug report on:": "à un rapport de bogue sur :"
}
diff --git a/data/languages/hi.json b/data/languages/hi.json
index 166e86a10..a3e832ab8 100644
--- a/data/languages/hi.json
+++ b/data/languages/hi.json
@@ -1,650 +1,770 @@
{
- "180": "&180",
- "# of Columns:": "स्तंभों की संख्या:",
- "# of Rows:": "पंक्तियों की संख्या:",
- "*\n Left-button: Erase with the background color in `Background' layer\n\n or transparent color in any other layer.\n*\n Right-button: Replace foreground with background color.\n ": "*\n बायाँ बटन: 'बैकग्राउंड' लेयर में बैकग्राउंड रंग से मिटाएं\n\n या किसी अन्य लेयर में पारदर्शी रंग से मिटाएं।\n*\n दायाँ बटन: अग्रभूमि को बैकग्राउंड रंग से बदलें।\n ",
- "*\n Left-button: Replace/add to current selection.\n*\n Right-button: Remove from current selection.\n ": "*\n बायाँ बटन: वर्तमान चयन में जोड़ें/बदलें।\n*\n दायाँ बटन: वर्तमान चयन से हटाएं।\n ",
- "*\n Left-button: replace/add to current selection.\n*\n Right-button: remove from current selection.\n ": "*\n बायाँ बटन: वर्तमान चयन में जोड़ें/बदलें।\n*\n दायाँ बटन: वर्तमान चयन से हटाएं।\n ",
- "+": "+",
- "- Classic skin graphics introduced in v0.8": "- क्लासिक स्किन और ग्राफिक्स v0.8 में प्रस्तुत किए गए",
- "- Lead developer, graphics maintainer": "- मुख्य डेवलपर, ग्राफिक्स और अनुरक्षक",
- "-------- Recent Paths --------": "-------- हाल के पथ --------",
- "10 Minutes": "10 मिनट",
- "1000%": "1000%",
- "15 Minutes": "15 मिनट",
- "16x16": "16x16",
- "2 Minutes": "2 मिनट",
- "25%": "25%",
- "2x2": "2x2",
- "30 Minutes": "30 मिनट",
- "4x4": "4x4",
- "5 Minutes": "5 मिनट",
- "50%": "50%",
- "500%": "500%",
- "600%": "600%",
- "700%": "700%",
- "800%": "800%",
- "8x8": "8x8",
- "90 CCW": "90 &CCW",
- "90 CW": "&90 CW",
- "900%": "900%",
- "About": "&बारे में",
- "Add Background Color to Palette": "पैलेट में बैकग्राउंड रंग जोड़ें",
- "Add Foreground Color to Palette": "पैलेट में अग्रभूमि रंग जोड़ें",
- "Add background color to the palette": "पैलेट में बैकग्राउंड रंग जोड़ें",
- "Add foreground color to the palette": "पैलेट में अग्रभूमि रंग जोड़ें",
- "Add to selection\n(Shift)": "चयन में जोड़ें\n(Shift)",
- "Adjust opaque/transparent mode automatically": "अपारदर्शी/पारदर्शी मोड को स्वचालित रूप से समायोजित करें",
- "Advanced Mode": "उन्नत मोड",
- "All": "&सभी",
- "All Layers": "सभी लेयर",
- "All frames": "सभी फ्रेम",
- "Allow non-linear history": "गैर-रेखीय इतिहास की अनुमति दें",
- "Alpha": "अल्फ़ा",
- "Alpha Compositing": "अल्फ़ा संयोजन",
- "Alternate Timeline": "वैकल्पिक टाइमलाइन",
- "Alternate Toolbar": "वैकल्पिक टूलबार",
- "Alternate Touchbar": "वैकल्पिक टचबार",
- "Animated sprite editor pixel art tool": "एनिमेटेड स्प्राइट संपादक और पिक्सेल आर्ट टूल",
- "Apply": "&लागू करें",
- "Apply Zoom": "ज़ूम लागू करें",
- "Apply to the active frame/layer (the active cel)": "सक्रिय फ्रेम/लेयर पर लागू करें (सक्रिय सेल)",
- "Array": "ऐरे",
- "As:": "के रूप में:",
- "Authors:": "लेखक:",
- "Auto": "स्वतः",
- "Auto Select Layer": "लेयर स्वतः चुनें",
- "Automatically save recovery data every": "स्वचालित रूप से रिकवरी डेटा सहेजें प्रत्येक",
- "Available Themes": "उपलब्ध थीम",
- "Background From Layer": "लेयर से बैकग्राउंड",
- "Background color": "बैकग्राउंड रंग",
- "Background from Layer": "&लेयर से बैकग्राउंड",
- "Background:": "बैकग्राउंड:",
- "BackgroundFromLayer": "लेयर से बैकग्राउंड",
- "Best fit Index": "उत्तम फिट इंडेक्स",
- "Best fit for texture": "टेक्सचर के लिए उत्तम फिट",
- "Black": "&काला",
- "Blur Tool": "ब्लर टूल",
- "Border": "&सीमा",
- "Border:": "सीमा:",
- "Borders:": "सीमाएँ:",
- "Bottom:": "नीचे:",
- "Brush Angle (in degrees)": "ब्रश कोण (डिग्री में)",
- "Brush Edges": "ब्रश किनारे",
- "Brush Preview": "&ब्रश पूर्वावलोकन",
- "Brush Preview:": "ब्रश पूर्वावलोकन:",
- "Brush Size (in pixels)": "ब्रश आकार (पिक्सेल में)",
- "Brush Type": "ब्रश प्रकार",
- "Brush: Custom Brush #1": "ब्रश: कस्टम ब्रश #1",
- "Brush: Custom Brush #2": "ब्रश: कस्टम ब्रश #2",
- "Brush: Custom Brush #3": "ब्रश: कस्टम ब्रश #3",
- "Brush: Custom Brush #4": "ब्रश: कस्टम ब्रश #4",
- "Brush: Custom Brush #5": "ब्रश: कस्टम ब्रश #5",
- "Brush: Custom Brush #6": "ब्रश: कस्टम ब्रश #6",
- "Brush: Custom Brush #7": "ब्रश: कस्टम ब्रश #7",
- "Brush: Custom Brush #8": "ब्रश: कस्टम ब्रश #8",
- "Brush: Custom Brush #9": "ब्रश: कस्टम ब्रश #9",
- "Brush: Decrement Size": "ब्रश: आकार घटाएँ",
- "Brush: Increment Size": "ब्रश: आकार बढ़ाएँ",
- "By Columns": "स्तंभों द्वारा",
- "By Rows": "पंक्तियों द्वारा",
- "Cancel": "रद्द करें",
- "Cancel Current Operation": "वर्तमान क्रिया रद्द करें",
- "Cancel drag and drop": "ड्रैग और ड्रॉप रद्द करें",
- "Canvas Size": "कैनवास आकार",
- "Canvas Size...": "&कैनवास आकार...",
- "Cel Properties": "सेल गुण",
- "Cel Properties...": "&सेल गुण...",
- "Center Sprite": "स्प्राइट को केंद्रित करें",
- "Change Pixel Format": "पिक्सेल फ़ॉर्मेट बदलें",
- "Check this if you want to keep the selection\nafter deleting it.": "यदि आप हटाने के बाद चयन रखना चाहते हैं तो इसे चुनें।",
- "Check this option to enable hardware acceleration": "हार्डवेयर त्वरण सक्षम करने के लिए इस विकल्प को चुनें",
- "Check this option to get\nthis old menus behavior.": "पुराने मेनू व्यवहार पाने के लिए इस विकल्प को चुनें।",
- "Checked Background": "चेक किया गया बैकग्राउंड",
- "Clear": "साफ़ करें",
- "Clear Cel": "सेल साफ़ करें",
- "Close": "&बंद करें",
- "Close All": "सभी बंद करें",
- "Close All Files": "सभी फ़ाइलें बंद करें",
- "Close File": "फ़ाइल बंद करें",
- "Color": "रंग",
- "Color Burn": "रंग बर्न",
- "Color Curve": "&रंग वक्र",
- "Color Dodge": "रंग डॉज",
- "Color Mode": "रंग मोड",
- "Color Mode:": "रंग मोड:",
- "Color Range": "&रंग सीमा",
- "Color Spectrum": "रंग स्पेक्ट्रम",
- "Color Tint/Shade/Tone": "रंग टिंट/शेड/टोन",
- "Color+Alpha": "रंग+अल्फ़ा",
- "Color: Decrement Background Index": "रंग: बैकग्राउंड इंडेक्स घटाएँ",
- "Color: Decrement Foreground Index": "रंग: अग्रभूमि इंडेक्स घटाएँ",
- "Color: Increment Background Index": "रंग: बैकग्राउंड इंडेक्स बढ़ाएँ",
- "Color: Increment Foreground Index": "रंग: अग्रभूमि इंडेक्स बढ़ाएँ",
- "Colors:": "रंग:",
- "Columns to be added/removed in the left side.\nUse a negative number to remove columns.": "बाईं ओर जोड़ने/हटाने के लिए स्तंभ।\nस्तंभ हटाने के लिए नकारात्मक संख्या का उपयोग करें।",
- "Columns to be added/removed in the right side.\nUse a negative number to remove columns.": "दाईं ओर जोड़ने/हटाने के लिए स्तंभ।\nस्तंभ हटाने के लिए नकारात्मक संख्या का उपयोग करें।",
- "Constant Frame Rate": "नियत फ्रेम दर",
- "Contiguous": "सन्निहित",
- "Contour Tool": "रूपरेखा उपकरण",
- "Contract": "&संक्षिप्त करें",
- "Contributors": "योगदानकर्ता",
- "Convolution Matrix": "कन्वोल्यूशन मैट्रिक्स",
- "Copy": "&कॉपी",
- "Copy Alpha+Color": "अल्फ़ा+रंग कॉपी करें",
- "Copy Cel": "सेल कॉपी करें",
- "Copy Merged": "मर्ज की गई कॉपी करें",
- "Create Palette from Current Sprite": "वर्तमान स्प्राइट से पैलेट बनाएं",
- "Create Palette from Current Sprite (Color Quantization)": "वर्तमान स्प्राइट से पैलेट बनाएं (रंग क्वांटाइजेशन)",
- "Crop": "क्रॉप करें",
- "Crop Sprite": "स्प्राइट क्रॉप करें",
- "Current Document": "वर्तमान दस्तावेज़",
- "Current Frame": "वर्तमान फ्रेम",
- "Current Layer": "वर्तमान लेयर",
- "Cursor": "कर्सर",
- "Cursors": "कर्सर",
- "Curve Tool": "वक्र उपकरण",
- "Cut": "कट",
- "Darken": "गहरा करें",
- "Default Zoom": "डिफ़ॉल्ट ज़ूम",
- "Delete Frame": "फ्रेम हटाएं",
- "Delete Layer": "लेयर हटाएं",
- "Depending on the layer (background/transparent),\nthe pasted selection will be adjusted\nautomatically (opaque/transparent)": "लेयर (बैकग्राउंड/पारदर्शी) पर निर्भर करते हुए,\nचिपकाए गए चयन को स्वचालित रूप से समायोजित किया जाएगा\n(अपारदर्शी/पारदर्शी)",
- "Deselect": "चयन हटाएं",
- "Deselect Mask": "मास्क का चयन हटाएं",
- "Despeckle": "डिस्पेकल",
- "Despeckle (median filter)": "&डिस्पेकल (मीडियन फ़िल्टर)",
- "Developer Console": "डेवलपर कंसोल",
- "Difference": "अंतर",
- "Discard Brush": "ब्रश त्यागें",
- "Documentation": "प्रलेखन",
- "Donate": "दान करें",
- "Down": "&नीचे",
- "Drop pixels here": "पिक्सेल यहां छोड़ें",
- "Duplicate": "प्रतिलिपि बनाएं",
- "Duplicate Cel(s)": "&सेल(ओं) की प्रतिलिपि बनाएं",
- "Duplicate Cels": "सेल्स की प्रतिलिपि बनाएं",
- "Duplicate Frame": "फ्रेम की प्रतिलिपि बनाएं",
- "Duplicate Layer": "लेयर की प्रतिलिपि बनाएं",
- "Duplicate Linked Cel(s)": "लिंक किए गए सेल(ओं) की प्रतिलिपि बनाएं",
- "Duplicate Linked Cels": "लिंक किए गए सेल्स की प्रतिलिपि बनाएं",
- "Duplicate Sprite": "स्प्राइट की प्रतिलिपि बनाएं",
- "Duplicate View": "दृश्य की प्रतिलिपि बनाएं",
- "Duplicate merged layers only": "केवल मर्ज की गई लेयरों की प्रतिलिपि बनाएं",
- "Duplicate...": "प्रतिलिपि बनाएं...",
- "Duplicate:": "प्रतिलिपि बनाएं:",
- "Duration (milliseconds):": "अवधि (मिलीसेकंड):",
- "Each pixel has Red, Green, Blue, and Alpha components\n(32 bits per pixel)": "प्रत्येक पिक्सेल में लाल, हरा, नीला और अल्फ़ा घटक होते हैं\n(32 बिट प्रति पिक्सेल)",
- "Each pixel has a Gray value and Alpha\n(16 bits per pixel)": "प्रत्येक पिक्सेल में ग्रे मान और अल्फ़ा होता है\n(16 बिट प्रति पिक्सेल)",
- "Each pixel is a reference to the palette\n(8 bits per pixel)": "प्रत्येक पिक्सेल पैलेट का संदर्भ है\n(8 बिट प्रति पिक्सेल)",
- "Edit": "&संपादित करें",
- "Edit Color": "रंग संपादित करें",
- "Editor": "संपादक",
- "Ellipse Tool": "अंडाकार उपकरण",
- "Elliptical Marquee Tool": "अंडाकार मार्की उपकरण",
- "English": "अंग्रेज़ी",
- "Erase": "मिटाएं",
- "Eraser Tool": "इरेज़र उपकरण",
- "Exclusion": "बहिष्करण",
- "Exit": "बाहर निकलें",
- "Expand": "विस्तार करें",
- "Expand Selection": "चयन का विस्तार करें",
- "Expand menu bar items on mouseover": "माउसओवर पर मेनू बार आइटम विस्तारित करें",
- "Experimental": "प्रायोगिक",
- "Export": "निर्यात करें",
- "Export Sprite Sheet": "स्प्राइट शीट निर्यात करें",
- "Export...": "निर्यात करें...",
- "Extra paint bucket options": "अतिरिक्त पेंट बकेट विकल्प",
- "Extras": "&अतिरिक्त",
- "Eyedropper": "आईड्रॉपर",
- "Eyedropper Tool": "आईड्रॉपर उपकरण",
- "FRM+": "FRM+",
- "FX": "FX",
- "File": "&फ़ाइल",
- "File name:": "फ़ाइल नाम:",
- "File type:": "फ़ाइल प्रकार:",
- "Filled Ellipse Tool": "भरा हुआ अंडाकार उपकरण",
- "Filled Rectangle Tool": "भरा हुआ आयत उपकरण",
- "First Frame": "&प्रथम फ्रेम",
- "Flash layer when it is selected": "चयनित होने पर लेयर को फ्लैश करें",
- "Flatten": "&समतल करें",
- "Flatten Layers": "लेयरों को समतल करें",
- "Flip Canvas Horizontal": "कैनवास को क्षैतिज पलटें",
- "Flip Canvas Vertical": "कैनवास को ऊर्ध्वाधर पलटें",
- "Flip Horizontal": "क्षैतिज पलटें",
- "Flip Selection Horizontal": "चयन को क्षैतिज पलटें",
- "Flip Selection Vertical": "चयन को ऊर्ध्वाधर पलटें",
- "Flip Vertical": "ऊर्ध्वाधर पलटें",
- "Foreground color": "अग्रभूमि रंग",
- "Frame": "&फ्रेम",
- "Frame Properties": "फ्रेम गुण",
- "Frame Properties...": "फ्रेम गुण...",
- "Frame Tag Properties": "फ्रेम टैग गुण",
- "Frame Tags": "फ्रेम टैग",
- "Frame number:": "फ्रेम संख्या:",
- "Frame:": "फ्रेम:",
- "Frames:": "फ्रेम:",
- "Freehand trace algorithm": "मुफ़्तहस्त ट्रेस एल्गोरिदम",
- "From:": "से:",
- "Full Real-time Brush Preview": "पूर्ण वास्तविक समय ब्रश पूर्वावलोकन",
- "Fullscreen Preview": "&पूर्णस्क्रीन पूर्वावलोकन",
- "GPU acceleration": "GPU त्वरण",
- "General": "सामान्य",
- "Global": "वैश्विक",
- "Go back one folder": "एक फ़ोल्डर पीछे जाएं",
- "Go forward one folder": "एक फ़ोल्डर आगे जाएं",
- "Go to First Frame": "प्रथम फ्रेम पर जाएं",
- "Go to First Frame\n\nShortcut: Home": "प्रथम फ्रेम पर जाएं\n\nशॉर्टकट: Home",
- "Go to Frame": "&फ्रेम पर जाएं",
- "Go to Last Frame": "अंतिम फ्रेम पर जाएं",
- "Go to Last Frame\n\nShortcut: End": "अंतिम फ्रेम पर जाएं\n\nशॉर्टकट: End",
- "Go to Next Frame": "अगले फ्रेम पर जाएं",
- "Go to Next Frame with same tag": "उसी टैग के साथ अगले फ्रेम पर जाएं",
- "Go to Next Layer": "अगली लेयर पर जाएं",
- "Go to Next Tab": "अगले टैब पर जाएं",
- "Go to Previous Frame": "पिछले फ्रेम पर जाएं",
- "Go to Previous Frame with same tag": "उसी टैग के साथ पिछले फ्रेम पर जाएं",
- "Go to Previous Layer": "पिछली लेयर पर जाएं",
- "Go to Previous tab": "पिछले टैब पर जाएं",
- "Go to modified frame/layer": "संशोधित फ्रेम/लेयर पर जाएं",
- "Gray": "धूसर",
- "Gray+Alpha": "धूसर+अल्फ़ा",
- "Grayscale": "&ग्रेस्केल",
- "Grid": "&ग्रिड",
- "Grid Background": "ग्रिड और बैकग्राउंड",
- "Grid Color:": "ग्रिड रंग:",
- "Grid Opacity:": "ग्रिड अपारदर्शिता:",
- "Grid Settings": "ग्रिड सेटिंग्स",
- "HSB": "HSB",
- "HSB+Alpha": "HSB+अल्फ़ा",
- "Hand Tool": "हाथ उपकरण",
- "Hard Light": "हार्ड लाइट",
- "Hash": "हैश",
- "Height:": "ऊंचाई:",
- "Help": "&सहायता",
- "Hide": "छिपाएं",
- "Home": "&होम",
- "Horizontal Strip": "क्षैतिज स्ट्रिप",
- "Horizontal Symmetry": "क्षैतिज समरूपता",
- "Hue": "रंगत",
- "Ignore Alpha Component": "अल्फ़ा घटक को अनदेखा करें",
- "Import": "&आयात करें",
- "Import Sprite Sheet": "&स्प्राइट शीट आयात करें",
- "Include partial tiles at bottom/right edges": "नीचे/दाएं किनारों पर आंशिक टाइलें शामिल करें",
- "Indexed": "&इंडेक्स्ड",
- "Indexed (No Dithering)": "&इंडेक्स्ड (बिना डिथरिंग)",
- "Indexed (Ordered Dither)": "इंडेक्स्ड (ऑर्डर्ड &डिथर)",
- "Ink": "स्याही",
- "Inner:": "अंदर:",
- "Insert Text": "पाठ डालें",
- "Inverse": "&उल्टा",
- "Invert": "&उलटें",
- "Invert Color": "रंग उलटें",
- "Invert Mask": "मास्क उलटें",
- "Italian": "इतालवी",
- "JSON Data": "JSON डेटा",
- "Japanese": "जापानी",
- "Jumble Tool": "जंबल उपकरण",
- "Jump to": "&पर जाएं",
- "Keep selection after \"Edit > Clear\" command": "\"संपादित करें > साफ़ करें\" कमांड के बाद चयन रखें",
- "Keyboard Shortcuts": "कीबोर्ड शॉर्टकट",
- "Keyboard Shortcuts...": "&कीबोर्ड शॉर्टकट...",
- "LYR+": "LYR+",
- "LYR<": "LYR<",
- "LYR>": "LYR>",
- "Language:": "भाषा:",
- "Large Size": "&बड़ा आकार",
- "Lasso Tool": "लासो उपकरण",
- "Last Frame": "&अंतिम फ्रेम",
- "Launch": "लॉन्च करें",
- "Layer": "&लेयर",
- "Layer Edges": "&लेयर किनारे",
- "Layer From Background": "बैकग्राउंड से लेयर",
- "Layer Properties": "लेयर गुण",
- "Layer Visibility": "लेयर दृश्यता",
- "Layer from Background": "&बैकग्राउंड से लेयर",
- "Layers": "लेयर",
- "Layers:": "लेयर:",
- "Left": "&बाएं",
- "Left:": "बाएं:",
- "LibreSprite 1.2-dev": "LibreSprite 1.2-dev",
- "Lighten": "हल्का करें",
- "Limit of memory to be used\nfor undo information per sprite.\nSpecified in megabytes.": "प्रति स्प्राइट पूर्ववत जानकारी के लिए उपयोग की जाने वाली मेमोरी की सीमा।\nमेगाबाइट्स में निर्दिष्ट।",
- "Line Tool": "रेखा उपकरण",
- "Link Cels": "&सेल्स लिंक करें",
- "Links Cels": "सेल्स लिंक करें",
- "Load Default Palette": "डिफ़ॉल्ट पैलेट लोड करें",
- "Load Palette": "&पैलेट लोड करें",
- "Load from MSK file": "&MSK फ़ाइल से लोड करें",
- "LoadMask": "मास्क लोड करें",
- "Locate Configuration File": "कॉन्फ़िगरेशन फ़ाइल खोजें",
- "Locate Crash Folder": "क्रैश फ़ोल्डर खोजें",
- "Lock Alpha": "अल्फ़ा लॉक करें",
- "Luminosity": "चमक",
- "MB": "MB",
- "Magic Wand Tool": "मैजिक वैंड उपकरण",
- "Mask All": "सभी को मास्क करें",
- "Mask By Color": "रंग द्वारा मास्क करें",
- "Mask Content": "सामग्री मास्क करें",
- "Matches old indexes with new indexes": "पुराने इंडेक्स नए इंडेक्स से मेल खाते हैं",
- "Maximized": "अधिकतम",
- "Medium Size": "&मध्यम आकार",
- "Merge Down": "&नीचे मर्ज करें",
- "Merge Down Layer": "लेयर नीचे मर्ज करें",
- "Meta:": "मेटा:",
- "Mirror Horizontally": "क्षैतिज रूप से दर्पण करें",
- "Mirror Vertically": "ऊर्ध्वाधर रूप से दर्पण करें",
- "Mode:": "मोड:",
- "Modify": "&संशोधित करें",
- "Modify Blue Component": "नीला घटक संशोधित करें",
- "Modify Green Component": "हरा घटक संशोधित करें",
- "Modify Red Component": "लाल घटक संशोधित करें",
- "Move": "&स्थानांतरित करें",
- "Move Cel": "सेल स्थानांतरित करें",
- "Move Selection Boundaries 1 horizontal tile left": "चयन सीमाएं 1 क्षैतिज टाइल बाईं ओर ले जाएं",
- "Move Selection Boundaries 1 horizontal tile right": "चयन सीमाएं 1 क्षैतिज टाइल दाईं ओर ले जाएं",
- "Move Selection Boundaries 1 pixel down": "चयन सीमाएं 1 पिक्सेल नीचे ले जाएं",
- "Move Selection Boundaries 1 pixel left": "चयन सीमाएं 1 पिक्सेल बाईं ओर ले जाएं",
- "Move Selection Boundaries 1 pixel right": "चयन सीमाएं 1 पिक्सेल दाईं ओर ले जाएं",
- "Move Selection Boundaries 1 pixel up": "चयन सीमाएं 1 पिक्सेल ऊपर ले जाएं",
- "Move Selection Boundaries 1 vertical tile down": "चयन सीमाएं 1 ऊर्ध्वाधर टाइल नीचे ले जाएं",
- "Move Selection Boundaries 1 vertical tile up": "चयन सीमाएं 1 ऊर्ध्वाधर टाइल ऊपर ले जाएं",
- "Move Selection Content 1 horizontal tile left": "चयन सामग्री 1 क्षैतिज टाइल बाईं ओर ले जाएं",
- "Move Selection Content 1 horizontal tile right": "चयन सामग्री 1 क्षैतिज टाइल दाईं ओर ले जाएं",
- "Move Selection Content 1 pixel down": "चयन सामग्री 1 पिक्सेल नीचे ले जाएं",
- "Move Selection Content 1 pixel left": "चयन सामग्री 1 पिक्सेल बाईं ओर ले जाएं",
- "Move Selection Content 1 pixel right": "चयन सामग्री 1 पिक्सेल दाईं ओर ले जाएं",
- "Move Selection Content 1 pixel up": "चयन सामग्री 1 पिक्सेल ऊपर ले जाएं",
- "Move Selection Content 1 vertical tile down": "चयन सामग्री 1 ऊर्ध्वाधर टाइल नीचे ले जाएं",
- "Move Selection Content 1 vertical tile up": "चयन सामग्री 1 ऊर्ध्वाधर टाइल ऊपर ले जाएं",
- "Move Tool": "मूव टूल",
- "Multiply": "गुणा करें",
- "Name:": "नाम:",
- "Negative Black and White": "नकारात्मक काला और सफ़ेद",
- "New": "&नया",
- "New Brush": "नया &ब्रश",
- "New Empty Frame": "नया &खाली फ्रेम",
- "New File": "नई फ़ाइल",
- "New File...": "नई फ़ाइल...",
- "New Frame": "&नया फ्रेम",
- "New Frame Tag": "नया फ्रेम टैग",
- "New Layer": "&नई लेयर",
- "New Layer Set": "नई लेयर सेट",
- "New Sprite": "नया स्प्राइट",
- "New Sprite From Selection": "चयन से नया स्प्राइट",
- "New Sprite from Selection": "&चयन से नया स्प्राइट",
- "New Tag": "नया &टैग",
- "New folder": "नया फ़ोल्डर",
- "New...": "&नया...",
- "Next Frame": "&अगला फ्रेम",
- "No": "&नहीं",
- "None": "&कोई नहीं",
- "Normal": "सामान्य",
- "OK": "&ठीक है",
- "Onion Skinning": "प्याज़ स्किनिंग",
- "Opacity (paint intensity)": "अस्पष्टता (रंग गहनता)",
- "Opacity:": "अस्पष्टता:",
- "Open File...": "फ़ाइल खोलें...",
- "Open Folder": "&फ़ोल्डर खोलें",
- "Open In Folder": "फ़ोल्डर में खोलें",
- "Open Recent": "हाल ही में खोले गए",
- "Open Scripts Folder": "स्क्रिप्ट्स फ़ोल्डर खोलें",
- "Open Sprite": "स्प्राइट खोलें",
- "Open With Associated Application": "संबंधित एप्लिकेशन के साथ खोलें",
- "Open generated sprite sheet": "उत्पन्न स्प्राइट शीट खोलें",
- "Open in Folder": "फ़ोल्डर में खोलें",
- "Open with OS": "&OS के साथ खोलें",
- "Open...": "&खोलें...",
- "Options": "विकल्प",
- "Output File": "आउटपुट फ़ाइल",
- "Overlay": "ओवरले",
- "PLAY": "चलाएँ",
- "Padding": "पैडिंग",
- "Paint Bucket Tool": "पेंट बकेट टूल",
- "Paint brush": "पेंट ब्रश",
- "Paint with background color": "बैकग्राउंड रंग से पेंट करें",
- "Painting Cursors": "पेंटिंग कर्सर",
- "Palette Editor": "&पैलेट संपादक",
- "Palette Size": "पैलेट आकार",
- "Palette entry used as\ntransparent color in each\nlayer (only for indexed images).": "प्रत्येक लेयर में पारदर्शी रंग के रूप में उपयोग किया गया पैलेट प्रविष्टि\n(केवल इंडेक्स्ड छवियों के लिए)।",
- "Paste": "&पेस्ट",
- "Pattern aligned to destination": "पैटर्न गंतव्य के साथ संरेखित",
- "Pattern aligned to source": "पैटर्न स्रोत के साथ संरेखित",
- "Pencil Tool": "पेंसिल टूल",
- "Per Tag": "प्रति टैग",
- "Pick foreground color": "अग्रभूमि रंग चुनें",
- "Pick:": "चुनें:",
- "Pixel Grid": "&पिक्सेल ग्रिड",
- "Pixel Grid Color:": "पिक्सेल ग्रिड रंग:",
- "Pixel Grid Opacity:": "पिक्सेल ग्रिड अस्पष्टता:",
- "Pixel grid shows up when you zoom a lot": "जब आप बहुत ज़ूम करते हैं तो पिक्सेल ग्रिड दिखाई देता है",
- "Pixel-perfect": "पिक्सेल-परफेक्ट",
- "Play Animation": "&एनिमेशन चलाएँ",
- "Play Animation\n\nShortcut: Enter": "एनिमेशन चलाएँ\n\nशॉर्टकट: Enter",
- "Polygon Tool": "बहुभुज उपकरण",
- "Polygonal Lasso Tool": "बहुभुज लासो उपकरण",
- "Portuguese": "पुर्तगाली",
- "Precise Cursor Color:": "सटीक कर्सर रंग:",
- "Preferences": "प्राथमिकताएँ",
- "Preferences...": "&प्राथमिकताएँ...",
- "Presets": "प्रिसेट्स",
- "Preview": "&पूर्वावलोकन",
- "Previous Frame": "&पिछला फ्रेम",
- "Properties...": "&गुण...",
- "QUIT": "बंद करें",
- "Quick Reference": "त्वरित संदर्भ",
- "REDO": "फिर से करें",
- "RGB": "RGB",
- "RGB Color": "&RGB रंग",
- "RGB Color Wheel": "RGB रंग पहिया",
- "RGB+Alpha": "RGB+अल्फ़ा",
- "RGBA": "&RGBA",
- "RYB Color Wheel": "RYB रंग पहिया",
- "Readme": "रीडमी",
- "Recent Files": "हाल की फ़ाइलें",
- "Recent files:": "हाल की फ़ाइलें:",
- "Recent folders:": "हाल के फ़ोल्डर:",
- "Recover Lost Sprites...": "खोए हुए स्प्राइट्स पुनर्प्राप्त करें...",
- "Recover Session...": "सत्र पुनर्प्राप्त करें...",
- "Rectangle Tool": "आयत उपकरण",
- "Rectangular Marquee Tool": "आयताकार मार्की उपकरण",
- "Redo": "&फिर से करें",
- "Refresh": "ताज़ा करें",
- "Refresh Reload Skin": "&ताज़ा करें और स्किन रीलोड करें",
- "Release Notes": "रिलीज़ नोट्स",
- "Remap": "पुन: मानचित्रण",
- "Remove": "&हटाएं",
- "Remove Frame": "&फ्रेम हटाएं",
- "Remove Frame Tag": "फ्रेम टैग हटाएं",
- "Remove Layer": "&लेयर हटाएं",
- "Remove Tag": "&टैग हटाएं",
- "Repeat Last Export": "अंतिम निर्यात दोहराएं",
- "Replace Color": "रंग बदलें",
- "Replace Color...": "&रंग बदलें...",
- "Replace selection": "चयन बदलें",
- "Rescan Scripts": "स्क्रिप्ट्स पुन: स्कैन करें",
- "Rescan scripts": "स्क्रिप्ट्स पुन: स्कैन करें",
- "Reselect": "&पुन: चयन करें",
- "Reselect Mask": "मास्क पुन: चयन करें",
- "Reset": "रीसेट",
- "Reset Zoom": "ज़ूम रीसेट करें",
- "Resize Layer": "लेयर का आकार बदलें",
- "Resize Sprite": "स्प्राइट का आकार बदलें",
- "Resize:": "आकार बदलें:",
- "Reverse Frames": "&फ्रेम उलटें",
- "Rewind on Stop": "रुकने पर रिवाइंड करें",
- "Right": "&दाएं",
- "Right-click:": "दायाँ-क्लिक:",
- "Right:": "दाएं:",
- "Rotate": "&घुमाएँ",
- "Rotate Canvas": "&कैनवास घुमाएँ",
- "Rotate Selection": "चयन घुमाएँ",
- "Rotate Sprite 0°": "स्प्राइट को 0° घुमाएँ",
- "Rotation Algorithm": "रोटेशन एल्गोरिदम",
- "Rotation Pivot": "रोटेशन पिवट",
- "Rows to be added/removed in the bottom side.\nUse a negative number to remove rows.": "नीचे की ओर जोड़ने/हटाने के लिए पंक्तियाँ।\nपंक्तियाँ हटाने के लिए नकारात्मक संख्या का उपयोग करें।",
- "Rows to be added/removed in the top side.\nUse a negative number to remove rows.": "ऊपर की ओर जोड़ने/हटाने के लिए पंक्तियाँ।\nपंक्तियाँ हटाने के लिए नकारात्मक संख्या का उपयोग करें।",
- "Run Script": "स्क्रिप्ट चलाएँ",
- "Same Ink in All Tools": "सभी उपकरणों में समान स्याही",
- "Same in all Tools": "सभी उपकरणों में समान",
- "Sample:": "नमूना:",
- "Saturation": "संतृप्ति",
- "Save": "&सहेजें",
- "Save As...": "इस रूप में सहेजें...",
- "Save File": "फ़ाइल सहेजें",
- "Save File As": "फ़ाइल सहेजें इस रूप में",
- "Save File Copy As": "फ़ाइल प्रतिलिपि सहेजें इस रूप में",
- "Save Mask": "मास्क सहेजें",
- "Save Palette": "&पैलेट सहेजें",
- "Save as Default Palette": "डिफ़ॉल्ट पैलेट के रूप में सहेजें",
- "Save to MSK file": "&MSK फ़ाइल में सहेजें",
- "Screen": "स्क्रीन",
- "Screen Scaling:": "स्क्रीन स्केलिंग:",
- "Scripting Console": "स्क्रिप्टिंग कंसोल",
- "Scripts": "&स्क्रिप्ट्स",
- "Scroll": "स्क्रॉल",
- "Scroll 1 zoomed horizontal tile left": "1 ज़ूम की गई क्षैतिज टाइल बाईं ओर स्क्रॉल करें",
- "Scroll 1 zoomed horizontal tile right": "1 ज़ूम की गई क्षैतिज टाइल दाईं ओर स्क्रॉल करें",
- "Scroll 1 zoomed pixel down": "1 ज़ूम किया गया पिक्सेल नीचे स्क्रॉल करें",
- "Scroll 1 zoomed pixel left": "1 ज़ूम किया गया पिक्सेल बाईं ओर स्क्रॉल करें",
- "Scroll 1 zoomed pixel right": "1 ज़ूम किया गया पिक्सेल दाईं ओर स्क्रॉल करें",
- "Scroll 1 zoomed pixel up": "1 ज़ूम किया गया पिक्सेल ऊपर स्क्रॉल करें",
- "Scroll 1 zoomed vertical tile down": "1 ज़ूम की गई ऊर्ध्वाधर टाइल नीचे स्क्रॉल करें",
- "Scroll 1 zoomed vertical tile up": "1 ज़ूम की गई ऊर्ध्वाधर टाइल ऊपर स्क्रॉल करें",
- "Scroll to center of canvas": "कैनवास के केंद्र पर स्क्रॉल करें",
- "Select": "&चयन करें",
- "Select File": "फ़ाइल चुनें",
- "Select Tile": "टाइल चुनें",
- "Select Tile (Add)": "टाइल चुनें (जोड़ें)",
- "Select Tile (Subtract)": "टाइल चुनें (घटाएँ)",
- "Selected frames": "चयनित फ्रेम",
- "Selected layers": "चयनित लेयर",
- "Selection": "चयन",
- "Selection Edges": "&चयन किनारे",
- "Selection as Grid": "ग्रिड के रूप में चयन",
- "Set Color Selector: Color Spectrum": "रंग चयनकर्ता सेट करें: रंग स्पेक्ट्रम",
- "Set Color Selector: Color Tint/Shade/Tone": "रंग चयनकर्ता सेट करें: रंग टिंट/शेड/टोन",
- "Set Color Selector: RGB Color Wheel": "रंग चयनकर्ता सेट करें: RGB रंग पहिया",
- "Set Color Selector: RYB Color Wheel": "रंग चयनकर्ता सेट करें: RYB रंग पहिया",
- "Set Ink Type: Alpha Compositing": "स्याही प्रकार सेट करें: अल्फ़ा संयोजन",
- "Set Ink Type: Copy Color+Alpha": "स्याही प्रकार सेट करें: रंग+अल्फ़ा कॉपी करें",
- "Set Ink Type: Lock Alpha": "स्याही प्रकार सेट करें: अल्फ़ा लॉक करें",
- "Set Ink Type: Shading": "स्याही प्रकार सेट करें: शेडिंग",
- "Set Ink Type: Simple Ink": "स्याही प्रकार सेट करें: साधारण स्याही",
- "Set Loop Section": "लूप सेक्शन सेट करें",
- "Set Palette": "पैलेट सेट करें",
- "Set Palette Entry Size": "पैलेट प्रविष्टि आकार सेट करें",
- "Shades": "छायाएं",
- "Shading": "शेडिंग",
- "Shape:": "आकृति:",
- "Share": "साझा करें",
- "Share...": "साझा करें...",
- "Sheet Type:": "शीट प्रकार:",
- "Shift": "&शिफ्ट",
- "Shortcut: ": "शॉर्टकट: ",
- "Show": "&दिखाएं",
- "Show Brush Preview": "ब्रश पूर्वावलोकन दिखाएं",
- "Show Extras": "अतिरिक्त दिखाएं",
- "Show Grid": "ग्रिड दिखाएं",
- "Show Layer Edges": "लेयर किनारे दिखाएं",
- "Show Onion Skin": "&ओनियन स्किन दिखाएं",
- "Show Pixel Grid": "पिक्सेल ग्रिड दिखाएं",
- "Show Selection Edges": "चयन किनारे दिखाएं",
- "Show full file name path": "पूर्ण फ़ाइल नाम पथ दिखाएं",
- "Show grid": "ग्रिड दिखाएं",
- "Show scroll-bars in all sprite editors.": "सभी स्प्राइट संपादकों में स्क्रॉल-बार दिखाएं।",
- "Show scroll-bars in sprite editor": "स्प्राइट संपादक में स्क्रॉल-बार दिखाएं",
- "Show the timeline automatically\nwhen a new frame or layer is added.": "जब एक नया फ्रेम या लेयर जोड़ा जाता है तो टाइमलाइन स्वचालित रूप से दिखाएं।",
- "Show timeline automatically": "टाइमलाइन स्वचालित रूप से दिखाएं",
- "Simple Ink": "साधारण स्याही",
- "Size:": "आकार:",
- "Small Size": "&छोटा आकार",
- "Snap to Grid": "&ग्रिड पर स्नैप करें",
- "Soft Light": "सॉफ्ट लाइट",
- "Sort & Gradients": "सॉर्ट और ग्रेडिएंट्स",
- "Spanish": "स्पेनिश",
- "Specific Color": "विशिष्ट रंग",
- "Spray Speed": "स्प्रे गति",
- "Spray Tool": "स्प्रे उपकरण",
- "Spray Width": "स्प्रे चौड़ाई",
- "Sprite": "&स्प्राइट",
- "Sprite Properties": "स्प्राइट गुण",
- "Sprite Size": "स्प्राइट आकार",
- "Sprite Size...": "&स्प्राइट आकार...",
- "Subtract from selection\n(Shift+Alt)": "चयन से घटाएँ\n(Shift+Alt)",
- "Switch Colors": "रंग स्विच करें",
- "Switch Pixel Perfect Mode": "पिक्सेल परफेक्ट मोड स्विच करें",
- "Switch Timeline": "टाइमलाइन स्विच करें",
- "Symmetry Mode": "समरूपता मोड",
- "Symmetry Options": "&समरूपता विकल्प",
- "TIME": "समय",
- "Tag Properties...": "टैग गुण...",
- "Tags": "&टैग",
- "The 'Stop' button should rewind the animation\nwhere it was started.": "\"रोकें\" बटन को एनीमेशन को वापस लाना चाहिए जहां से यह शुरू हुआ था।",
- "Theme": "थीम",
- "Tile Mode": "टाइल मोड",
- "Tiled Mode": "&टाइल मोड",
- "Tiled in Both Axes": "&दोनों अक्षों में टाइल किया गया",
- "Tiled in X Axis": "&X अक्ष में टाइल किया गया",
- "Tiled in Y Axis": "&Y अक्ष में टाइल किया गया",
- "Timeline": "&टाइमलाइन",
- "To:": "तक:",
- "Toggle Fullscreen": "पूर्णस्क्रीन टॉगल करें",
- "Toggle Preview": "पूर्वावलोकन टॉगल करें",
- "Toggle Touchbar": "टचबार टॉगल करें",
- "Tolerance:": "सहनशीलता:",
- "Top:": "ऊपर:",
- "Touchbar": "टचबार",
- "Transform": "&रूपांतरित करें",
- "Transparent": "&पारदर्शी",
- "Transparent Color": "पारदर्शी रंग",
- "Transparent Color:": "पारदर्शी रंग:",
- "Trim": "&ट्रिम",
- "Trim Sprite": "स्प्राइट ट्रिम करें",
- "Tutorial": "ट्यूटोरियल",
- "Type:": "प्रकार:",
- "UI Elements Scaling:": "UI तत्व स्केलिंग:",
- "UNDO": "पूर्ववत करें",
- "Uncheck this option if you would prefer to hide\nfull path on UI (e.g. useful for live streaming)": "यदि आप UI पर पूर्ण पथ छिपाना पसंद करते हैं तो इस विकल्प को अनचेक करें\n(जैसे कि लाइव स्ट्रीमिंग के लिए उपयोगी)",
- "Undo": "&पूर्ववत करें",
- "Undo History": "पूर्ववत इतिहास",
- "Undo Limit:": "पूर्ववत सीमा:",
- "Unlink": "&अनलिंक",
- "Unlink Cel": "सेल को अनलिंक करें",
- "Up": "&ऊपर",
- "Up to parent folder\n(Backspace)": "अभिभावक फ़ोल्डर तक\n(Backspace)",
- "Use native file dialog": "मूल फ़ाइल डायलॉग का उपयोग करें",
- "Use native mouse cursor": "मूल माउस कर्सर का उपयोग करें",
- "User Data": "उपयोगकर्ता डेटा",
- "User Interface": "उपयोगकर्ता इंटरफ़ेस",
- "Vertical Strip": "ऊर्ध्वाधर स्ट्रिप",
- "Vertical Symmetry": "ऊर्ध्वाधर समरूपता",
- "View": "&दृश्य",
- "Visible": "&दृश्यमान",
- "Visible layers": "दृश्यमान लेयर",
- "When it's enabled each time you undo/redo\nthe current frame & layer will be modified\nto focus the undid/redid change.": "जब यह सक्षम होता है, हर बार जब आप पूर्ववत/फिर से करते हैं,\nवर्तमान फ्रेम और लेयर संशोधित की जाएगी\nपूर्ववत/फिर से किए गए परिवर्तन पर ध्यान केंद्रित करने के लिए।",
- "White": "&सफ़ेद",
- "Width:": "चौड़ाई:",
- "With this option you can recover your documents\nif the program finalizes unexpectedly.": "इस विकल्प के साथ आप अपने दस्तावेज़ों को पुनर्प्राप्त कर सकते हैं\nयदि कार्यक्रम अप्रत्याशित रूप से बंद हो जाता है।",
- "X:": "X:",
- "Y:": "Y:",
- "Yes": "&हाँ",
- "You must restart the program to see your changes to:": "अपनी परिवर्तनों को देखने के लिए आपको कार्यक्रम को पुनरारंभ करना होगा:",
- "Zoom 100%": "ज़ूम 100%",
- "Zoom 1600%": "ज़ूम 1600%",
- "Zoom 200%": "ज़ूम 200%",
- "Zoom 3200%": "ज़ूम 3200%",
- "Zoom 400%": "ज़ूम 400%",
- "Zoom 50%": "ज़ूम 50%",
- "Zoom 800%": "ज़ूम 800%",
- "Zoom In": "ज़ूम इन",
- "Zoom Level": "ज़ूम स्तर",
- "Zoom Out": "ज़ूम आउट",
- "Zoom Tool": "ज़ूम उपकरण",
- "Zoom from center with keys": "कुंजियों के साथ केंद्र से ज़ूम करें",
- "Zoom from center with scroll wheel": "स्क्रॉल व्हील के साथ केंद्र से ज़ूम करें",
- "Zoom in": "ज़ूम इन",
- "Zoom out": "ज़ूम आउट",
- "Zoom sliding two fingers up or down": "दो उंगलियों को ऊपर या नीचे स्लाइड करके ज़ूम करें",
- "Zoom with scroll wheel": "स्क्रॉल व्हील के साथ ज़ूम करें"
-}
+ "# of Columns:": "स्तंभों की संख्या:",
+ "# of Rows:": "पंक्तियों की संख्या:",
+ "*\n Left-button: Erase with the background color in `Background' layer\n\n or transparent color in any other layer.\n*\n Right-button: Replace foreground with background color.\n ": "*\n बायाँ बटन: 'बैकग्राउंड' लेयर में बैकग्राउंड रंग से मिटाएं\n\n या किसी अन्य लेयर में पारदर्शी रंग से मिटाएं।\n*\n दायाँ बटन: अग्रभूमि को बैकग्राउंड रंग से बदलें।\n ",
+ "*\n Left-button: Replace/add to current selection.\n*\n Right-button: Remove from current selection.\n ": "*\n बायाँ बटन: वर्तमान चयन में जोड़ें/बदलें।\n*\n दायाँ बटन: वर्तमान चयन से हटाएं।\n ",
+ "*\n Left-button: replace/add to current selection.\n*\n Right-button: remove from current selection.\n ": "*\n बायाँ बटन: वर्तमान चयन में जोड़ें/बदलें।\n*\n दायाँ बटन: वर्तमान चयन से हटाएं।\n ",
+ "+": "+",
+ "- Classic skin graphics introduced in v0.8": "- क्लासिक स्किन और ग्राफिक्स v0.8 में प्रस्तुत किए गए",
+ "- Lead developer, graphics maintainer": "- मुख्य डेवलपर, ग्राफिक्स और अनुरक्षक",
+ "-------- Recent Paths --------": "-------- हाल के पथ --------",
+ "0": "0",
+ "10 Minutes": "10 मिनट",
+ "100": "100",
+ "100%": "100%",
+ "1000%": "1000%",
+ "15 Minutes": "15 मिनट",
+ "16": "16",
+ "16x16": "16x16",
+ "180": "&180",
+ "2 Minutes": "2 मिनट",
+ "200%": "200%",
+ "25%": "25%",
+ "2x2": "2x2",
+ "30 Minutes": "30 मिनट",
+ "300%": "300%",
+ "32": "32",
+ "400%": "400%",
+ "4x4": "4x4",
+ "5 Minutes": "5 मिनट",
+ "50%": "50%",
+ "500%": "500%",
+ "600%": "600%",
+ "700%": "700%",
+ "800%": "800%",
+ "8x8": "8x8",
+ "90 CCW": "90 &CCW",
+ "90 CW": "&90 CW",
+ "900%": "900%",
+ "About": "&बारे में",
+ "Add Background Color to Palette": "पैलेट में बैकग्राउंड रंग जोड़ें",
+ "Add Foreground Color to Palette": "पैलेट में अग्रभूमि रंग जोड़ें",
+ "Add background color to the palette": "पैलेट में बैकग्राउंड रंग जोड़ें",
+ "Add foreground color to the palette": "पैलेट में अग्रभूमि रंग जोड़ें",
+ "Add to selection\n(Shift)": "चयन में जोड़ें\n(Shift)",
+ "Adjust opaque/transparent mode automatically": "अपारदर्शी/पारदर्शी मोड को स्वचालित रूप से समायोजित करें",
+ "Advanced Mode": "उन्नत मोड",
+ "All": "&सभी",
+ "All Layers": "सभी लेयर",
+ "All frames": "सभी फ्रेम",
+ "Allow non-linear history": "गैर-रेखीय इतिहास की अनुमति दें",
+ "Alpha": "अल्फ़ा",
+ "Alpha Compositing": "अल्फ़ा संयोजन",
+ "Alt": "Alt",
+ "Alternate Timeline": "वैकल्पिक टाइमलाइन",
+ "Alternate Toolbar": "वैकल्पिक टूलबार",
+ "Alternate Touchbar": "वैकल्पिक टचबार",
+ "Angle": "कोण",
+ "Animated sprite editor pixel art tool": "एनिमेटेड स्प्राइट संपादक और पिक्सेल आर्ट टूल",
+ "Animation Direction:": "एनिमेशन निर्देशन:",
+ "Animation Loop": "एनीमेशन लूप",
+ "Anti-aliasing filter": "एंटी - एलियासिंग फ़िल्टर",
+ "Apply": "&लागू करें",
+ "Apply Zoom": "ज़ूम लागू करें",
+ "Apply to the active frame/layer (the active cel)": "सक्रिय फ्रेम/लेयर पर लागू करें (सक्रिय सेल)",
+ "Array": "ऐरे",
+ "As:": "के रूप में:",
+ "Assigned to:": "को सौंपना:",
+ "Authors:": "लेखक:",
+ "Auto": "स्वतः",
+ "Auto Select Layer": "लेयर स्वतः चुनें",
+ "Automatically save recovery data every": "स्वचालित रूप से रिकवरी डेटा सहेजें प्रत्येक",
+ "Available Fonts:": "उपलब्ध फ़ॉन्ट:",
+ "Available Palettes:": "उपलब्ध पैलेट:",
+ "Available Themes": "उपलब्ध थीम",
+ "Background": "पृष्ठभूमि",
+ "Background From Layer": "लेयर से बैकग्राउंड",
+ "Background color": "बैकग्राउंड रंग",
+ "Background from Layer": "&लेयर से बैकग्राउंड",
+ "Background:": "बैकग्राउंड:",
+ "BackgroundFromLayer": "लेयर से बैकग्राउंड",
+ "Behind sprite": "स्प्राइट के पीछे",
+ "Best fit Index": "उत्तम फिट इंडेक्स",
+ "Best fit for texture": "टेक्सचर के लिए उत्तम फिट",
+ "Black": "&काला",
+ "Blur Tool": "ब्लर टूल",
+ "Border": "&सीमा",
+ "Border:": "सीमा:",
+ "Borders:": "सीमाएँ:",
+ "Bottom:": "नीचे:",
+ "Brush Angle (in degrees)": "ब्रश कोण (डिग्री में)",
+ "Brush Edges": "ब्रश किनारे",
+ "Brush Preview": "&ब्रश पूर्वावलोकन",
+ "Brush Preview:": "ब्रश पूर्वावलोकन:",
+ "Brush Size (in pixels)": "ब्रश आकार (पिक्सेल में)",
+ "Brush Type": "ब्रश प्रकार",
+ "Brush:": "ब्रश:",
+ "Brush: Custom Brush #1": "ब्रश: कस्टम ब्रश #1",
+ "Brush: Custom Brush #2": "ब्रश: कस्टम ब्रश #2",
+ "Brush: Custom Brush #3": "ब्रश: कस्टम ब्रश #3",
+ "Brush: Custom Brush #4": "ब्रश: कस्टम ब्रश #4",
+ "Brush: Custom Brush #5": "ब्रश: कस्टम ब्रश #5",
+ "Brush: Custom Brush #6": "ब्रश: कस्टम ब्रश #6",
+ "Brush: Custom Brush #7": "ब्रश: कस्टम ब्रश #7",
+ "Brush: Custom Brush #8": "ब्रश: कस्टम ब्रश #8",
+ "Brush: Custom Brush #9": "ब्रश: कस्टम ब्रश #9",
+ "Brush: Decrement Size": "ब्रश: आकार घटाएँ",
+ "Brush: Increment Size": "ब्रश: आकार बढ़ाएँ",
+ "By Columns": "स्तंभों द्वारा",
+ "By Rows": "पंक्तियों द्वारा",
+ "By:": "द्वारा:",
+ "Cancel": "रद्द करें",
+ "Cancel Current Operation": "वर्तमान क्रिया रद्द करें",
+ "Cancel drag and drop": "ड्रैग और ड्रॉप रद्द करें",
+ "Canvas Size": "कैनवास आकार",
+ "Canvas Size...": "&कैनवास आकार...",
+ "Cel Properties": "सेल गुण",
+ "Cel Properties...": "&सेल गुण...",
+ "Center Sprite": "स्प्राइट को केंद्रित करें",
+ "Change Pixel Format": "पिक्सेल फ़ॉर्मेट बदलें",
+ "Check this if you want to keep the selection\nafter deleting it.": "यदि आप हटाने के बाद चयन रखना चाहते हैं तो इसे चुनें।",
+ "Check this option to enable hardware acceleration": "हार्डवेयर त्वरण सक्षम करने के लिए इस विकल्प को चुनें",
+ "Check this option to get\nthis old menus behavior.": "पुराने मेनू व्यवहार पाने के लिए इस विकल्प को चुनें।",
+ "Checked Background": "चेक किया गया बैकग्राउंड",
+ "Chinese": "चीनी",
+ "Circle Brush": "सर्कल ब्रश",
+ "Clear": "साफ़ करें",
+ "Clear Cel": "सेल साफ़ करें",
+ "Close": "&बंद करें",
+ "Close All": "सभी बंद करें",
+ "Close All Files": "सभी फ़ाइलें बंद करें",
+ "Close File": "फ़ाइल बंद करें",
+ "Cmd": "Cmd",
+ "Color": "रंग",
+ "Color Burn": "रंग बर्न",
+ "Color Curve": "&रंग वक्र",
+ "Color Dodge": "रंग डॉज",
+ "Color Mode": "रंग मोड",
+ "Color Mode:": "रंग मोड:",
+ "Color Range": "&रंग सीमा",
+ "Color Spectrum": "रंग स्पेक्ट्रम",
+ "Color Tint/Shade/Tone": "रंग टिंट/शेड/टोन",
+ "Color Tools": "रंग उपकरण",
+ "Color+Alpha": "रंग+अल्फ़ा",
+ "Color:": "रंग:",
+ "Color: Decrement Background Index": "रंग: बैकग्राउंड इंडेक्स घटाएँ",
+ "Color: Decrement Foreground Index": "रंग: अग्रभूमि इंडेक्स घटाएँ",
+ "Color: Increment Background Index": "रंग: बैकग्राउंड इंडेक्स बढ़ाएँ",
+ "Color: Increment Foreground Index": "रंग: अग्रभूमि इंडेक्स बढ़ाएँ",
+ "Colors:": "रंग:",
+ "Columns to be added/removed in the left side.\nUse a negative number to remove columns.": "बाईं ओर जोड़ने/हटाने के लिए स्तंभ।\nस्तंभ हटाने के लिए नकारात्मक संख्या का उपयोग करें।",
+ "Columns to be added/removed in the right side.\nUse a negative number to remove columns.": "दाईं ओर जोड़ने/हटाने के लिए स्तंभ।\nस्तंभ हटाने के लिए नकारात्मक संख्या का उपयोग करें।",
+ "Compression:": "संपीड़न:",
+ "Constant Frame Rate": "नियत फ्रेम दर",
+ "Contiguous": "सन्निहित",
+ "Contour Tool": "रूपरेखा उपकरण",
+ "Contours": "आकृति",
+ "Contract": "&संक्षिप्त करें",
+ "Contributors": "योगदानकर्ता",
+ "Convolution Matrix": "कन्वोल्यूशन मैट्रिक्स",
+ "Copy": "&कॉपी",
+ "Copy Alpha+Color": "अल्फ़ा+रंग कॉपी करें",
+ "Copy Cel": "सेल कॉपी करें",
+ "Copy Merged": "मर्ज की गई कॉपी करें",
+ "Crash Report": "दुर्घटना रिपोर्ट",
+ "Create Palette from Current Sprite": "वर्तमान स्प्राइट से पैलेट बनाएं",
+ "Create Palette from Current Sprite (Color Quantization)": "वर्तमान स्प्राइट से पैलेट बनाएं (रंग क्वांटाइजेशन)",
+ "Create entries with alpha component": "अल्फा घटक के साथ प्रविष्टियाँ बनाएँ",
+ "Create new palette with": "इसके साथ नया पैलेट बनाएं",
+ "Crop": "क्रॉप करें",
+ "Crop Sprite": "स्प्राइट क्रॉप करें",
+ "Ctrl": "Ctrl",
+ "Current Document": "वर्तमान दस्तावेज़",
+ "Current Frame": "वर्तमान फ्रेम",
+ "Current Layer": "वर्तमान लेयर",
+ "Current layer only": "केवल वर्तमान परत",
+ "Cursor": "कर्सर",
+ "Cursors": "कर्सर",
+ "Curve Tool": "वक्र उपकरण",
+ "Cut": "कट",
+ "Darken": "गहरा करें",
+ "Default": "गलती करना",
+ "Default Zoom": "डिफ़ॉल्ट ज़ूम",
+ "Delete": "मिटाना",
+ "Delete Frame": "फ्रेम हटाएं",
+ "Delete Layer": "लेयर हटाएं",
+ "Delete file, I've already sent it": "फाइल डिलीट कर दो, मैंने इसे पहले ही भेज दिया है।",
+ "Depending on the layer (background/transparent),\nthe pasted selection will be adjusted\nautomatically (opaque/transparent)": "लेयर (बैकग्राउंड/पारदर्शी) पर निर्भर करते हुए,\nचिपकाए गए चयन को स्वचालित रूप से समायोजित किया जाएगा\n(अपारदर्शी/पारदर्शी)",
+ "Deselect": "चयन हटाएं",
+ "Deselect Mask": "मास्क का चयन हटाएं",
+ "Despeckle": "डिस्पेकल",
+ "Despeckle (median filter)": "&डिस्पेकल (मीडियन फ़िल्टर)",
+ "Developer Console": "डेवलपर कंसोल",
+ "Difference": "अंतर",
+ "Discard Brush": "ब्रश त्यागें",
+ "Do it later": "इसे बाद में करें",
+ "Documentation": "प्रलेखन",
+ "Don't show this again": "इसे दोबारा मत दिखाओ",
+ "Donate": "दान करें",
+ "Down": "&नीचे",
+ "Drawing": "चित्रकला",
+ "Drop pixels here": "पिक्सेल यहां छोड़ें",
+ "Duplicate": "प्रतिलिपि बनाएं",
+ "Duplicate Cel(s)": "&सेल(ओं) की प्रतिलिपि बनाएं",
+ "Duplicate Cels": "सेल्स की प्रतिलिपि बनाएं",
+ "Duplicate Frame": "फ्रेम की प्रतिलिपि बनाएं",
+ "Duplicate Layer": "लेयर की प्रतिलिपि बनाएं",
+ "Duplicate Linked Cel(s)": "लिंक किए गए सेल(ओं) की प्रतिलिपि बनाएं",
+ "Duplicate Linked Cels": "लिंक किए गए सेल्स की प्रतिलिपि बनाएं",
+ "Duplicate Sprite": "स्प्राइट की प्रतिलिपि बनाएं",
+ "Duplicate View": "दृश्य की प्रतिलिपि बनाएं",
+ "Duplicate merged layers only": "केवल मर्ज की गई लेयरों की प्रतिलिपि बनाएं",
+ "Duplicate...": "प्रतिलिपि बनाएं...",
+ "Duplicate:": "प्रतिलिपि बनाएं:",
+ "Duration (milliseconds):": "अवधि (मिलीसेकंड):",
+ "Each pixel has Red, Green, Blue, and Alpha components\n(32 bits per pixel)": "प्रत्येक पिक्सेल में लाल, हरा, नीला और अल्फ़ा घटक होते हैं\n(32 बिट प्रति पिक्सेल)",
+ "Each pixel has a Gray value and Alpha\n(16 bits per pixel)": "प्रत्येक पिक्सेल में ग्रे मान और अल्फ़ा होता है\n(16 बिट प्रति पिक्सेल)",
+ "Each pixel is a reference to the palette\n(8 bits per pixel)": "प्रत्येक पिक्सेल पैलेट का संदर्भ है\n(8 बिट प्रति पिक्सेल)",
+ "Edit": "&संपादित करें",
+ "Edit Color": "रंग संपादित करें",
+ "Editor": "संपादक",
+ "Effects": "प्रभाव",
+ "Ellipse Tool": "अंडाकार उपकरण",
+ "Elliptical Marquee Tool": "अंडाकार मार्की उपकरण",
+ "English": "अंग्रेज़ी",
+ "Erase": "मिटाएं",
+ "Eraser Tool": "इरेज़र उपकरण",
+ "Eraser Tools": "इरेज़र उपकरण",
+ "Exclusion": "बहिष्करण",
+ "Exit": "बाहर निकलें",
+ "Expand": "विस्तार करें",
+ "Expand Selection": "चयन का विस्तार करें",
+ "Expand menu bar items on mouseover": "माउसओवर पर मेनू बार आइटम विस्तारित करें",
+ "Experimental": "प्रायोगिक",
+ "Export": "निर्यात करें",
+ "Export Sprite Sheet": "स्प्राइट शीट निर्यात करें",
+ "Export...": "निर्यात करें...",
+ "Extra paint bucket options": "अतिरिक्त पेंट बकेट विकल्प",
+ "Extras": "&अतिरिक्त",
+ "Extras:": "अतिरिक्त:",
+ "Eyedropper": "आईड्रॉपर",
+ "Eyedropper Tool": "आईड्रॉपर उपकरण",
+ "FRM+": "FRM+",
+ "FX": "FX",
+ "File": "&फ़ाइल",
+ "File name:": "फ़ाइल नाम:",
+ "File type:": "फ़ाइल प्रकार:",
+ "Filled Ellipse Tool": "भरा हुआ अंडाकार उपकरण",
+ "Filled Rectangle Tool": "भरा हुआ आयत उपकरण",
+ "First Frame": "&प्रथम फ्रेम",
+ "Flash layer when it is selected": "चयनित होने पर लेयर को फ्लैश करें",
+ "Flatten": "&समतल करें",
+ "Flatten Layers": "लेयरों को समतल करें",
+ "Flip Canvas Horizontal": "कैनवास को क्षैतिज पलटें",
+ "Flip Canvas Vertical": "कैनवास को ऊर्ध्वाधर पलटें",
+ "Flip Horizontal": "क्षैतिज पलटें",
+ "Flip Selection Horizontal": "चयन को क्षैतिज पलटें",
+ "Flip Selection Vertical": "चयन को ऊर्ध्वाधर पलटें",
+ "Flip Vertical": "ऊर्ध्वाधर पलटें",
+ "Folder Name:": "फ़ोल्डर का नाम:",
+ "Font Size:": "फ़ॉन्ट आकार:",
+ "Font:": "फ़ॉन्ट:",
+ "Foreground": "अग्रभूमि",
+ "Foreground color": "अग्रभूमि रंग",
+ "Frame": "&फ्रेम",
+ "Frame Properties": "फ्रेम गुण",
+ "Frame Properties...": "फ्रेम गुण...",
+ "Frame Tag Properties": "फ्रेम टैग गुण",
+ "Frame Tags": "फ्रेम टैग",
+ "Frame number:": "फ्रेम संख्या:",
+ "Frame:": "फ्रेम:",
+ "Frames:": "फ्रेम:",
+ "Freehand trace algorithm": "मुफ़्तहस्त ट्रेस एल्गोरिदम",
+ "French": "फ्रेंच",
+ "From:": "से:",
+ "Full Real-time Brush Preview": "पूर्ण वास्तविक समय ब्रश पूर्वावलोकन",
+ "Fullscreen Preview": "&पूर्णस्क्रीन पूर्वावलोकन",
+ "GIF Options": "जीआईएफ विकल्प",
+ "GPU acceleration": "GPU त्वरण",
+ "General": "सामान्य",
+ "General Options:": "आम विकल्प:",
+ "German": "जर्मन",
+ "Global": "वैश्विक",
+ "Go back one folder": "एक फ़ोल्डर पीछे जाएं",
+ "Go forward one folder": "एक फ़ोल्डर आगे जाएं",
+ "Go to First Frame": "प्रथम फ्रेम पर जाएं",
+ "Go to First Frame\n\nShortcut: Home": "प्रथम फ्रेम पर जाएं\n\nशॉर्टकट: Home",
+ "Go to Frame": "&फ्रेम पर जाएं",
+ "Go to Last Frame": "अंतिम फ्रेम पर जाएं",
+ "Go to Last Frame\n\nShortcut: End": "अंतिम फ्रेम पर जाएं\n\nशॉर्टकट: End",
+ "Go to Next Frame": "अगले फ्रेम पर जाएं",
+ "Go to Next Frame with same tag": "उसी टैग के साथ अगले फ्रेम पर जाएं",
+ "Go to Next Layer": "अगली लेयर पर जाएं",
+ "Go to Next Tab": "अगले टैब पर जाएं",
+ "Go to Previous Frame": "पिछले फ्रेम पर जाएं",
+ "Go to Previous Frame with same tag": "उसी टैग के साथ पिछले फ्रेम पर जाएं",
+ "Go to Previous Layer": "पिछली लेयर पर जाएं",
+ "Go to Previous tab": "पिछले टैब पर जाएं",
+ "Go to modified frame/layer": "संशोधित फ्रेम/लेयर पर जाएं",
+ "Graph": "ग्राफ़",
+ "Gray": "धूसर",
+ "Gray+Alpha": "धूसर+अल्फ़ा",
+ "Grayscale": "&ग्रेस्केल",
+ "Grid": "&ग्रिड",
+ "Grid Background": "ग्रिड और बैकग्राउंड",
+ "Grid Color:": "ग्रिड रंग:",
+ "Grid Opacity:": "ग्रिड अपारदर्शिता:",
+ "Grid Settings": "ग्रिड सेटिंग्स",
+ "HSB": "HSB",
+ "HSB+Alpha": "HSB+अल्फ़ा",
+ "Hand Tool": "हाथ उपकरण",
+ "Hard Light": "हार्ड लाइट",
+ "Hash": "हैश",
+ "Height:": "ऊंचाई:",
+ "Help": "&सहायता",
+ "Hide": "छिपाएं",
+ "Hindi": "हिंदी",
+ "Home": "&होम",
+ "Horizontal Strip": "क्षैतिज स्ट्रिप",
+ "Horizontal Symmetry": "क्षैतिज समरूपता",
+ "Hue": "रंगत",
+ "Icon": "आइकन",
+ "Ignore Alpha Component": "अल्फ़ा घटक को अनदेखा करें",
+ "Image Hint:": "छवि संकेत:",
+ "Image Preset:": "इमेज प्रीसेट:",
+ "Import": "&आयात करें",
+ "Import Sprite Sheet": "&स्प्राइट शीट आयात करें",
+ "In front of sprite": "स्प्राइट के सामने",
+ "Include partial tiles at bottom/right edges": "नीचे/दाएं किनारों पर आंशिक टाइलें शामिल करें",
+ "Indexed": "&इंडेक्स्ड",
+ "Indexed (No Dithering)": "&इंडेक्स्ड (बिना डिथरिंग)",
+ "Indexed (Ordered Dither)": "इंडेक्स्ड (ऑर्डर्ड &डिथर)",
+ "Indonesian": "इन्डोनेशियाई",
+ "Ink": "स्याही",
+ "Ink:": "स्याही:",
+ "Inner:": "अंदर:",
+ "Insert Text": "पाठ डालें",
+ "Interlaced": "interlaced",
+ "Interpolation:": "इंटरपोलेशन:",
+ "Inverse": "&उल्टा",
+ "Invert": "&उलटें",
+ "Invert Color": "रंग उलटें",
+ "Invert Mask": "मास्क उलटें",
+ "Italian": "इतालवी",
+ "JPEG Options": "जेपीईजी विकल्प",
+ "JSON Data": "JSON डेटा",
+ "Japanese": "जापानी",
+ "Jumble Tool": "जंबल उपकरण",
+ "Jump to": "&पर जाएं",
+ "Keep selection after \"Edit > Clear\" command": "\"संपादित करें > साफ़ करें\" कमांड के बाद चयन रखें",
+ "Key:": "चाबी:",
+ "Keyboard Shortcut": "कीबोर्ड शॉर्टकट",
+ "Keyboard Shortcuts": "कीबोर्ड शॉर्टकट",
+ "Keyboard Shortcuts...": "&कीबोर्ड शॉर्टकट...",
+ "Korean": "कोरियाई",
+ "LYR+": "LYR+",
+ "LYR<": "LYR<",
+ "LYR>": "LYR>",
+ "Language:": "भाषा:",
+ "Large Size": "&बड़ा आकार",
+ "Lasso Tool": "लासो उपकरण",
+ "Last Frame": "&अंतिम फ्रेम",
+ "Launch": "लॉन्च करें",
+ "Layer": "&लेयर",
+ "Layer Edges": "&लेयर किनारे",
+ "Layer From Background": "बैकग्राउंड से लेयर",
+ "Layer Properties": "लेयर गुण",
+ "Layer Visibility": "लेयर दृश्यता",
+ "Layer from Background": "&बैकग्राउंड से लेयर",
+ "Layers": "लेयर",
+ "Layers:": "लेयर:",
+ "Left": "&बाएं",
+ "Left:": "बाएं:",
+ "LibreSprite 1.2-dev": "LibreSprite 1.2-dev",
+ "Lighten": "हल्का करें",
+ "Limit of memory to be used\nfor undo information per sprite.\nSpecified in megabytes.": "प्रति स्प्राइट पूर्ववत जानकारी के लिए उपयोग की जाने वाली मेमोरी की सीमा।\nमेगाबाइट्स में निर्दिष्ट।",
+ "Line Tool": "रेखा उपकरण",
+ "Link Cels": "&सेल्स लिंक करें",
+ "Links Cels": "सेल्स लिंक करें",
+ "Load": "भार",
+ "Load Default Palette": "डिफ़ॉल्ट पैलेट लोड करें",
+ "Load Palette": "&पैलेट लोड करें",
+ "Load from MSK file": "&MSK फ़ाइल से लोड करें",
+ "LoadMask": "मास्क लोड करें",
+ "Locate Configuration File": "कॉन्फ़िगरेशन फ़ाइल खोजें",
+ "Locate Crash Folder": "क्रैश फ़ोल्डर खोजें",
+ "Lock Alpha": "अल्फ़ा लॉक करें",
+ "Lock Ratio": "लॉक अनुपात",
+ "Loop through tag frames": "टैग फ़्रेमों के माध्यम से लूप करें",
+ "Lossless WebP": "दोषरहित वेबपी",
+ "Lossy WebP": "लॉसी वेबपी",
+ "Luminosity": "चमक",
+ "MB": "MB",
+ "Magic Wand Tool": "मैजिक वैंड उपकरण",
+ "Mask All": "सभी को मास्क करें",
+ "Mask By Color": "रंग द्वारा मास्क करें",
+ "Mask Content": "सामग्री मास्क करें",
+ "Matches old indexes with new indexes": "पुराने इंडेक्स नए इंडेक्स से मेल खाते हैं",
+ "Maximized": "अधिकतम",
+ "Medium Size": "&मध्यम आकार",
+ "Merge Down": "&नीचे मर्ज करें",
+ "Merge Down Layer": "लेयर नीचे मर्ज करें",
+ "Merge Frames": "फ़्रेमों को मर्ज करें",
+ "Meta:": "मेटा:",
+ "Method:": "तरीका:",
+ "Mirror Horizontally": "क्षैतिज रूप से दर्पण करें",
+ "Mirror Vertically": "ऊर्ध्वाधर रूप से दर्पण करें",
+ "Mode:": "मोड:",
+ "Modifiers:": "संशोधक:",
+ "Modify": "&संशोधित करें",
+ "Modify Blue Component": "नीला घटक संशोधित करें",
+ "Modify Green Component": "हरा घटक संशोधित करें",
+ "Modify Red Component": "लाल घटक संशोधित करें",
+ "Modify Selection": "चयन को संशोधित करें",
+ "Move": "&स्थानांतरित करें",
+ "Move Cel": "सेल स्थानांतरित करें",
+ "Move Selection Boundaries 1 horizontal tile left": "चयन सीमाएं 1 क्षैतिज टाइल बाईं ओर ले जाएं",
+ "Move Selection Boundaries 1 horizontal tile right": "चयन सीमाएं 1 क्षैतिज टाइल दाईं ओर ले जाएं",
+ "Move Selection Boundaries 1 pixel down": "चयन सीमाएं 1 पिक्सेल नीचे ले जाएं",
+ "Move Selection Boundaries 1 pixel left": "चयन सीमाएं 1 पिक्सेल बाईं ओर ले जाएं",
+ "Move Selection Boundaries 1 pixel right": "चयन सीमाएं 1 पिक्सेल दाईं ओर ले जाएं",
+ "Move Selection Boundaries 1 pixel up": "चयन सीमाएं 1 पिक्सेल ऊपर ले जाएं",
+ "Move Selection Boundaries 1 vertical tile down": "चयन सीमाएं 1 ऊर्ध्वाधर टाइल नीचे ले जाएं",
+ "Move Selection Boundaries 1 vertical tile up": "चयन सीमाएं 1 ऊर्ध्वाधर टाइल ऊपर ले जाएं",
+ "Move Selection Content 1 horizontal tile left": "चयन सामग्री 1 क्षैतिज टाइल बाईं ओर ले जाएं",
+ "Move Selection Content 1 horizontal tile right": "चयन सामग्री 1 क्षैतिज टाइल दाईं ओर ले जाएं",
+ "Move Selection Content 1 pixel down": "चयन सामग्री 1 पिक्सेल नीचे ले जाएं",
+ "Move Selection Content 1 pixel left": "चयन सामग्री 1 पिक्सेल बाईं ओर ले जाएं",
+ "Move Selection Content 1 pixel right": "चयन सामग्री 1 पिक्सेल दाईं ओर ले जाएं",
+ "Move Selection Content 1 pixel up": "चयन सामग्री 1 पिक्सेल ऊपर ले जाएं",
+ "Move Selection Content 1 vertical tile down": "चयन सामग्री 1 ऊर्ध्वाधर टाइल नीचे ले जाएं",
+ "Move Selection Content 1 vertical tile up": "चयन सामग्री 1 ऊर्ध्वाधर टाइल ऊपर ले जाएं",
+ "Move Tool": "मूव टूल",
+ "Move Tools": "उपकरण स्थानांतरित करें",
+ "Multiply": "गुणा करें",
+ "Name:": "नाम:",
+ "Negative Black and White": "नकारात्मक काला और सफ़ेद",
+ "New": "&नया",
+ "New Brush": "नया &ब्रश",
+ "New Empty Frame": "नया &खाली फ्रेम",
+ "New File": "नई फ़ाइल",
+ "New File...": "नई फ़ाइल...",
+ "New Folder": "नया फ़ोल्डर",
+ "New Frame": "&नया फ्रेम",
+ "New Frame Tag": "नया फ्रेम टैग",
+ "New Image Layer": "नई छवि परत",
+ "New Layer": "&नई लेयर",
+ "New Layer Set": "नई लेयर सेट",
+ "New Set": "नया सेट",
+ "New Sprite": "नया स्प्राइट",
+ "New Sprite From Selection": "चयन से नया स्प्राइट",
+ "New Sprite from Selection": "&चयन से नया स्प्राइट",
+ "New Tag": "नया &टैग",
+ "New folder": "नया फ़ोल्डर",
+ "New...": "&नया...",
+ "Next Frame": "&अगला फ्रेम",
+ "No": "&नहीं",
+ "None": "&कोई नहीं",
+ "Normal": "सामान्य",
+ "Number of colors:": "रंगों की संख्या:",
+ "OK": "&ठीक है",
+ "Onion Skin:": "प्याज़ त्वचा:",
+ "Onion Skinning": "प्याज़ स्किनिंग",
+ "Opacity": "अस्पष्टता",
+ "Opacity (paint intensity)": "अस्पष्टता (रंग गहनता)",
+ "Opacity Step:": "अपारदर्शिता चरण:",
+ "Opacity:": "अस्पष्टता:",
+ "Open File...": "फ़ाइल खोलें...",
+ "Open Folder": "&फ़ोल्डर खोलें",
+ "Open In Folder": "फ़ोल्डर में खोलें",
+ "Open Recent": "हाल ही में खोले गए",
+ "Open Scripts Folder": "स्क्रिप्ट्स फ़ोल्डर खोलें",
+ "Open Sprite": "स्प्राइट खोलें",
+ "Open With Associated Application": "संबंधित एप्लिकेशन के साथ खोलें",
+ "Open generated sprite sheet": "उत्पन्न स्प्राइट शीट खोलें",
+ "Open in Folder": "फ़ोल्डर में खोलें",
+ "Open the following file to debug your compilation:": "अपने कंपाइलेशन को डीबग करने के लिए निम्न फ़ाइल खोलें:",
+ "Open with OS": "&OS के साथ खोलें",
+ "Open...": "&खोलें...",
+ "Options": "विकल्प",
+ "Output File": "आउटपुट फ़ाइल",
+ "Overlay": "ओवरले",
+ "PLAY": "चलाएँ",
+ "Padding": "पैडिंग",
+ "Paint Bucket Tool": "पेंट बकेट टूल",
+ "Paint brush": "पेंट ब्रश",
+ "Paint with background color": "बैकग्राउंड रंग से पेंट करें",
+ "Painting Cursors": "पेंटिंग कर्सर",
+ "Palette Editor": "&पैलेट संपादक",
+ "Palette Size": "पैलेट आकार",
+ "Palette entry used as\ntransparent color in each\nlayer (only for indexed images).": "प्रत्येक लेयर में पारदर्शी रंग के रूप में उपयोग किया गया पैलेट प्रविष्टि\n(केवल इंडेक्स्ड छवियों के लिए)।",
+ "Palette from Sprite": "स्प्राइट से पैलेट",
+ "Paste": "&पेस्ट",
+ "Pattern aligned to destination": "पैटर्न गंतव्य के साथ संरेखित",
+ "Pattern aligned to source": "पैटर्न स्रोत के साथ संरेखित",
+ "Pencil Tool": "पेंसिल टूल",
+ "Pencil Tools": "पेंसिल उपकरण",
+ "Per Tag": "प्रति टैग",
+ "Percentage:": "प्रतिशत:",
+ "Perfect Traces": "परफेक्ट ट्रेसेस",
+ "Photo": "तस्वीर",
+ "Pick foreground color": "अग्रभूमि रंग चुनें",
+ "Pick:": "चुनें:",
+ "Picture": "चित्र",
+ "Pixel Grid": "&पिक्सेल ग्रिड",
+ "Pixel Grid Color:": "पिक्सेल ग्रिड रंग:",
+ "Pixel Grid Opacity:": "पिक्सेल ग्रिड अस्पष्टता:",
+ "Pixel grid shows up when you zoom a lot": "जब आप बहुत ज़ूम करते हैं तो पिक्सेल ग्रिड दिखाई देता है",
+ "Pixel-Perfect": "पिक्सेल-सही",
+ "Pixel-perfect": "पिक्सेल-परफेक्ट",
+ "Pixels:": "पिक्सेल:",
+ "Play Animation": "&एनिमेशन चलाएँ",
+ "Play Animation\n\nShortcut: Enter": "एनिमेशन चलाएँ\n\nशॉर्टकट: Enter",
+ "Please attach the following file:": "कृपया निम्नलिखित फ़ाइल संलग्न करें:",
+ "Point Properties": "बिंदु गुण",
+ "Polish": "पोलिश",
+ "Polygon Tool": "बहुभुज उपकरण",
+ "Polygonal Lasso Tool": "बहुभुज लासो उपकरण",
+ "Portuguese": "पुर्तगाली",
+ "Precise Cursor Color:": "सटीक कर्सर रंग:",
+ "Preferences": "प्राथमिकताएँ",
+ "Preferences...": "&प्राथमिकताएँ...",
+ "Presets": "प्रिसेट्स",
+ "Preview": "&पूर्वावलोकन",
+ "Previous Frame": "&पिछला फ्रेम",
+ "Properties...": "&गुण...",
+ "QUIT": "बंद करें",
+ "Quality:": "गुणवत्ता:",
+ "Quick Reference": "त्वरित संदर्भ",
+ "REDO": "फिर से करें",
+ "RGB": "RGB",
+ "RGB Color": "&RGB रंग",
+ "RGB Color Wheel": "RGB रंग पहिया",
+ "RGB+Alpha": "RGB+अल्फ़ा",
+ "RGBA": "&RGBA",
+ "RYB Color Wheel": "RYB रंग पहिया",
+ "Readme": "रीडमी",
+ "Recent Files": "हाल की फ़ाइलें",
+ "Recent files:": "हाल की फ़ाइलें:",
+ "Recent folders:": "हाल के फ़ोल्डर:",
+ "Recover Lost Sprites...": "खोए हुए स्प्राइट्स पुनर्प्राप्त करें...",
+ "Recover Session...": "सत्र पुनर्प्राप्त करें...",
+ "Rectangle Tool": "आयत उपकरण",
+ "Rectangular Marquee Tool": "आयताकार मार्की उपकरण",
+ "Red/Blue Tint": "लाल/नीला रंग",
+ "Redo": "&फिर से करें",
+ "Refresh": "ताज़ा करें",
+ "Refresh Reload Skin": "&ताज़ा करें और स्किन रीलोड करें",
+ "Release Notes": "रिलीज़ नोट्स",
+ "Reload Stock": "स्टॉक पुनः लोड करें",
+ "Remap": "पुन: मानचित्रण",
+ "Remove": "&हटाएं",
+ "Remove Frame": "&फ्रेम हटाएं",
+ "Remove Frame Tag": "फ्रेम टैग हटाएं",
+ "Remove Layer": "&लेयर हटाएं",
+ "Remove Tag": "&टैग हटाएं",
+ "Repeat Last Export": "अंतिम निर्यात दोहराएं",
+ "Replace Color": "रंग बदलें",
+ "Replace Color...": "&रंग बदलें...",
+ "Replace current palette": "वर्तमान पैलेट को बदलें",
+ "Replace current range": "वर्तमान सीमा बदलें",
+ "Replace selection": "चयन बदलें",
+ "Rescan Scripts": "स्क्रिप्ट्स पुन: स्कैन करें",
+ "Rescan scripts": "स्क्रिप्ट्स पुन: स्कैन करें",
+ "Reselect": "&पुन: चयन करें",
+ "Reselect Mask": "मास्क पुन: चयन करें",
+ "Reset": "रीसेट",
+ "Reset Zoom": "ज़ूम रीसेट करें",
+ "Resize Layer": "लेयर का आकार बदलें",
+ "Resize Sprite": "स्प्राइट का आकार बदलें",
+ "Resize:": "आकार बदलें:",
+ "Reverse Frames": "&फ्रेम उलटें",
+ "Rewind on Stop": "रुकने पर रिवाइंड करें",
+ "Right": "&दाएं",
+ "Right-click:": "दायाँ-क्लिक:",
+ "Right:": "दाएं:",
+ "Rotate": "&घुमाएँ",
+ "Rotate Canvas": "&कैनवास घुमाएँ",
+ "Rotate Selection": "चयन घुमाएँ",
+ "Rotate Sprite 0°": "स्प्राइट को 0° घुमाएँ",
+ "Rotation Algorithm": "रोटेशन एल्गोरिदम",
+ "Rotation Pivot": "रोटेशन पिवट",
+ "Rows to be added/removed in the bottom side.\nUse a negative number to remove rows.": "नीचे की ओर जोड़ने/हटाने के लिए पंक्तियाँ।\nपंक्तियाँ हटाने के लिए नकारात्मक संख्या का उपयोग करें।",
+ "Rows to be added/removed in the top side.\nUse a negative number to remove rows.": "ऊपर की ओर जोड़ने/हटाने के लिए पंक्तियाँ।\nपंक्तियाँ हटाने के लिए नकारात्मक संख्या का उपयोग करें।",
+ "Run Script": "स्क्रिप्ट चलाएँ",
+ "Russian": "रूसी",
+ "Same Ink in All Tools": "सभी उपकरणों में समान स्याही",
+ "Same in all Tools": "सभी उपकरणों में समान",
+ "Sample:": "नमूना:",
+ "Saturation": "संतृप्ति",
+ "Save": "&सहेजें",
+ "Save As...": "इस रूप में सहेजें...",
+ "Save File": "फ़ाइल सहेजें",
+ "Save File As": "फ़ाइल सहेजें इस रूप में",
+ "Save File Copy As": "फ़ाइल प्रतिलिपि सहेजें इस रूप में",
+ "Save Mask": "मास्क सहेजें",
+ "Save Palette": "&पैलेट सहेजें",
+ "Save as Default Palette": "डिफ़ॉल्ट पैलेट के रूप में सहेजें",
+ "Save as:": "के रूप रक्षित करें:",
+ "Save to MSK file": "&MSK फ़ाइल में सहेजें",
+ "Screen": "स्क्रीन",
+ "Screen Scaling:": "स्क्रीन स्केलिंग:",
+ "Scripting Console": "स्क्रिप्टिंग कंसोल",
+ "Scripts": "&स्क्रिप्ट्स",
+ "Scroll": "स्क्रॉल",
+ "Scroll 1 zoomed horizontal tile left": "1 ज़ूम की गई क्षैतिज टाइल बाईं ओर स्क्रॉल करें",
+ "Scroll 1 zoomed horizontal tile right": "1 ज़ूम की गई क्षैतिज टाइल दाईं ओर स्क्रॉल करें",
+ "Scroll 1 zoomed pixel down": "1 ज़ूम किया गया पिक्सेल नीचे स्क्रॉल करें",
+ "Scroll 1 zoomed pixel left": "1 ज़ूम किया गया पिक्सेल बाईं ओर स्क्रॉल करें",
+ "Scroll 1 zoomed pixel right": "1 ज़ूम किया गया पिक्सेल दाईं ओर स्क्रॉल करें",
+ "Scroll 1 zoomed pixel up": "1 ज़ूम किया गया पिक्सेल ऊपर स्क्रॉल करें",
+ "Scroll 1 zoomed vertical tile down": "1 ज़ूम की गई ऊर्ध्वाधर टाइल नीचे स्क्रॉल करें",
+ "Scroll 1 zoomed vertical tile up": "1 ज़ूम की गई ऊर्ध्वाधर टाइल ऊपर स्क्रॉल करें",
+ "Scroll to center of canvas": "कैनवास के केंद्र पर स्क्रॉल करें",
+ "Select": "&चयन करें",
+ "Select File": "फ़ाइल चुनें",
+ "Select Font": "फ़ॉन्ट चुनें",
+ "Select Tile": "टाइल चुनें",
+ "Select Tile (Add)": "टाइल चुनें (जोड़ें)",
+ "Select Tile (Subtract)": "टाइल चुनें (घटाएँ)",
+ "Selected frames": "चयनित फ्रेम",
+ "Selected layers": "चयनित लेयर",
+ "Selection": "चयन",
+ "Selection Edges": "&चयन किनारे",
+ "Selection Tools": "चयन उपकरण",
+ "Selection as Grid": "ग्रिड के रूप में चयन",
+ "Set Color Selector: Color Spectrum": "रंग चयनकर्ता सेट करें: रंग स्पेक्ट्रम",
+ "Set Color Selector: Color Tint/Shade/Tone": "रंग चयनकर्ता सेट करें: रंग टिंट/शेड/टोन",
+ "Set Color Selector: RGB Color Wheel": "रंग चयनकर्ता सेट करें: RGB रंग पहिया",
+ "Set Color Selector: RYB Color Wheel": "रंग चयनकर्ता सेट करें: RYB रंग पहिया",
+ "Set Ink Type: Alpha Compositing": "स्याही प्रकार सेट करें: अल्फ़ा संयोजन",
+ "Set Ink Type: Copy Color+Alpha": "स्याही प्रकार सेट करें: रंग+अल्फ़ा कॉपी करें",
+ "Set Ink Type: Lock Alpha": "स्याही प्रकार सेट करें: अल्फ़ा लॉक करें",
+ "Set Ink Type: Shading": "स्याही प्रकार सेट करें: शेडिंग",
+ "Set Ink Type: Simple Ink": "स्याही प्रकार सेट करें: साधारण स्याही",
+ "Set Loop Section": "लूप सेक्शन सेट करें",
+ "Set Palette": "पैलेट सेट करें",
+ "Set Palette Entry Size": "पैलेट प्रविष्टि आकार सेट करें",
+ "Shade": "छाया",
+ "Shades": "छायाएं",
+ "Shading": "शेडिंग",
+ "Shape:": "आकृति:",
+ "Shapes": "आकार",
+ "Share": "साझा करें",
+ "Share...": "साझा करें...",
+ "Sheet Type:": "शीट प्रकार:",
+ "Shift": "&शिफ्ट",
+ "Shortcut: ": "शॉर्टकट: ",
+ "Show": "&दिखाएं",
+ "Show Brush Preview": "ब्रश पूर्वावलोकन दिखाएं",
+ "Show Extras": "अतिरिक्त दिखाएं",
+ "Show Grid": "ग्रिड दिखाएं",
+ "Show Layer Edges": "लेयर किनारे दिखाएं",
+ "Show Onion Skin": "&ओनियन स्किन दिखाएं",
+ "Show Pixel Grid": "पिक्सेल ग्रिड दिखाएं",
+ "Show Selection Edges": "चयन किनारे दिखाएं",
+ "Show full file name path": "पूर्ण फ़ाइल नाम पथ दिखाएं",
+ "Show grid": "ग्रिड दिखाएं",
+ "Show scroll-bars in all sprite editors.": "सभी स्प्राइट संपादकों में स्क्रॉल-बार दिखाएं।",
+ "Show scroll-bars in sprite editor": "स्प्राइट संपादक में स्क्रॉल-बार दिखाएं",
+ "Show the timeline automatically\nwhen a new frame or layer is added.": "जब एक नया फ्रेम या लेयर जोड़ा जाता है तो टाइमलाइन स्वचालित रूप से दिखाएं।",
+ "Show timeline automatically": "टाइमलाइन स्वचालित रूप से दिखाएं",
+ "Simple Ink": "साधारण स्याही",
+ "Size": "आकार",
+ "Size:": "आकार:",
+ "Small Size": "&छोटा आकार",
+ "Snap to Grid": "&ग्रिड पर स्नैप करें",
+ "Soft Light": "सॉफ्ट लाइट",
+ "Sort & Gradients": "सॉर्ट और ग्रेडिएंट्स",
+ "Space": "Space",
+ "Spanish": "स्पेनिश",
+ "Specific Color": "विशिष्ट रंग",
+ "Spray Speed": "स्प्रे गति",
+ "Spray Tool": "स्प्रे उपकरण",
+ "Spray Width": "स्प्रे चौड़ाई",
+ "Sprite": "&स्प्राइट",
+ "Sprite Properties": "स्प्राइट गुण",
+ "Sprite Size": "स्प्राइट आकार",
+ "Sprite Size...": "&स्प्राइट आकार...",
+ "Square Brush": "वर्गाकार ब्रश",
+ "Subtract from selection\n(Shift+Alt)": "चयन से घटाएँ\n(Shift+Alt)",
+ "Switch Colors": "रंग स्विच करें",
+ "Switch Pixel Perfect Mode": "पिक्सेल परफेक्ट मोड स्विच करें",
+ "Switch Timeline": "टाइमलाइन स्विच करें",
+ "Symmetry Mode": "समरूपता मोड",
+ "Symmetry Options": "&समरूपता विकल्प",
+ "TIME": "समय",
+ "Tag Properties...": "टैग गुण...",
+ "Tags": "&टैग",
+ "Text": "मूलपाठ",
+ "Text:": "मूलपाठ:",
+ "The 'Stop' button should rewind the animation\nwhere it was started.": "\"रोकें\" बटन को एनीमेशन को वापस लाना चाहिए जहां से यह शुरू हुआ था।",
+ "Theme": "थीम",
+ "Tile Mode": "टाइल मोड",
+ "Tiled Mode": "&टाइल मोड",
+ "Tiled in Both Axes": "&दोनों अक्षों में टाइल किया गया",
+ "Tiled in X Axis": "&X अक्ष में टाइल किया गया",
+ "Tiled in Y Axis": "&Y अक्ष में टाइल किया गया",
+ "Timeline": "&टाइमलाइन",
+ "To:": "तक:",
+ "Toggle Fullscreen": "पूर्णस्क्रीन टॉगल करें",
+ "Toggle Preview": "पूर्वावलोकन टॉगल करें",
+ "Toggle Touchbar": "टचबार टॉगल करें",
+ "Tolerance:": "सहनशीलता:",
+ "Top:": "ऊपर:",
+ "Touchbar": "टचबार",
+ "Transform": "&रूपांतरित करें",
+ "Transparent": "&पारदर्शी",
+ "Transparent Color": "पारदर्शी रंग",
+ "Transparent Color:": "पारदर्शी रंग:",
+ "Trim": "&ट्रिम",
+ "Trim Sprite": "स्प्राइट ट्रिम करें",
+ "Tutorial": "ट्यूटोरियल",
+ "Type": "प्रकार",
+ "Type:": "प्रकार:",
+ "UI Elements Scaling:": "UI तत्व स्केलिंग:",
+ "UNDO": "पूर्ववत करें",
+ "Uncheck this option if you would prefer to hide\nfull path on UI (e.g. useful for live streaming)": "यदि आप UI पर पूर्ण पथ छिपाना पसंद करते हैं तो इस विकल्प को अनचेक करें\n(जैसे कि लाइव स्ट्रीमिंग के लिए उपयोगी)",
+ "Undo": "&पूर्ववत करें",
+ "Undo History": "पूर्ववत इतिहास",
+ "Undo Limit:": "पूर्ववत सीमा:",
+ "Unlink": "&अनलिंक",
+ "Unlink Cel": "सेल को अनलिंक करें",
+ "Up": "&ऊपर",
+ "Up to parent folder\n(Backspace)": "अभिभावक फ़ोल्डर तक\n(Backspace)",
+ "Use native file dialog": "मूल फ़ाइल डायलॉग का उपयोग करें",
+ "Use native mouse cursor": "मूल माउस कर्सर का उपयोग करें",
+ "User Data": "उपयोगकर्ता डेटा",
+ "User Data:": "उपयोगकर्ता का डेटा:",
+ "User Interface": "उपयोगकर्ता इंटरफ़ेस",
+ "Vertical Strip": "ऊर्ध्वाधर स्ट्रिप",
+ "Vertical Symmetry": "ऊर्ध्वाधर समरूपता",
+ "View": "&दृश्य",
+ "View Tools": "टूल देखें",
+ "Visible": "&दृश्यमान",
+ "Visible layers": "दृश्यमान लेयर",
+ "Warning - Important": "चेतावनी - महत्वपूर्ण",
+ "WebP Options": "वेबपी विकल्प",
+ "When it's enabled each time you undo/redo\nthe current frame & layer will be modified\nto focus the undid/redid change.": "जब यह सक्षम होता है, हर बार जब आप पूर्ववत/फिर से करते हैं,\nवर्तमान फ्रेम और लेयर संशोधित की जाएगी\nपूर्ववत/फिर से किए गए परिवर्तन पर ध्यान केंद्रित करने के लिए।",
+ "White": "&सफ़ेद",
+ "Width:": "चौड़ाई:",
+ "Win": "Win",
+ "With this option you can recover your documents\nif the program finalizes unexpectedly.": "इस विकल्प के साथ आप अपने दस्तावेज़ों को पुनर्प्राप्त कर सकते हैं\nयदि कार्यक्रम अप्रत्याशित रूप से बंद हो जाता है।",
+ "X:": "X:",
+ "Y:": "Y:",
+ "Yes": "&हाँ",
+ "You are going to enter in \"Advanced Mode\".": "आप \"एडवांस्ड मोड\" में प्रवेश करने जा रहे हैं।",
+ "You are using a development version.": "आप डेवलपमेंट वर्जन का उपयोग कर रहे हैं।",
+ "You must restart the program to see your changes to:": "अपनी परिवर्तनों को देखने के लिए आपको कार्यक्रम को पुनरारंभ करना होगा:",
+ "Zoom 100%": "ज़ूम 100%",
+ "Zoom 1600%": "ज़ूम 1600%",
+ "Zoom 200%": "ज़ूम 200%",
+ "Zoom 3200%": "ज़ूम 3200%",
+ "Zoom 400%": "ज़ूम 400%",
+ "Zoom 50%": "ज़ूम 50%",
+ "Zoom 800%": "ज़ूम 800%",
+ "Zoom In": "ज़ूम इन",
+ "Zoom Level": "ज़ूम स्तर",
+ "Zoom Out": "ज़ूम आउट",
+ "Zoom Tool": "ज़ूम उपकरण",
+ "Zoom from center with keys": "कुंजियों के साथ केंद्र से ज़ूम करें",
+ "Zoom from center with scroll wheel": "स्क्रॉल व्हील के साथ केंद्र से ज़ूम करें",
+ "Zoom in": "ज़ूम इन",
+ "Zoom out": "ज़ूम आउट",
+ "Zoom sliding two fingers up or down": "दो उंगलियों को ऊपर या नीचे स्लाइड करके ज़ूम करें",
+ "Zoom with scroll wheel": "स्क्रॉल व्हील के साथ ज़ूम करें",
+ "colors or less": "रंग या उससे कम",
+ "explaining what you was doing when the program crashed.": "यह बताएं कि प्रोग्राम क्रैश होने के समय आप क्या कर रहे थे।",
+ "https://github.com/Veritaware/Besprited/issues": "https://github.com/Veritaware/Besprited/issues",
+ "to a bug report on:": "इस विषय पर बग रिपोर्ट के लिए:"
+}
\ No newline at end of file
diff --git a/data/languages/id.json b/data/languages/id.json
index 1d7ca5a9a..83e834fa4 100644
--- a/data/languages/id.json
+++ b/data/languages/id.json
@@ -1,5 +1,4 @@
{
- "180": "&180",
"# of Columns:": "Jumlah Kolom:",
"# of Rows:": "Jumlah Baris:",
"*\n Left-button: Erase with the background color in `Background' layer\n\n or transparent color in any other layer.\n*\n Right-button: Replace foreground with background color.\n ": "*\n Tombol kiri: Hapus dengan warna latar belakang di lapisan `Background'\n\n atau warna transparan di lapisan lainnya.\n*\n Tombol kanan: Ganti warna latar depan dengan warna latar belakang.\n ",
@@ -9,14 +8,23 @@
"- Classic skin graphics introduced in v0.8": "- Kulit klasik & grafik diperkenalkan di v0.8",
"- Lead developer, graphics maintainer": "- Pengembang utama, grafik & pemelihara",
"-------- Recent Paths --------": "-------- Jalur Terbaru --------",
+ "0": "0",
"10 Minutes": "10 Menit",
+ "100": "100",
+ "100%": "100%",
"1000%": "1000%",
"15 Minutes": "15 Menit",
+ "16": "16",
"16x16": "16x16",
+ "180": "&180",
"2 Minutes": "2 Menit",
+ "200%": "200%",
"25%": "25%",
"2x2": "2x2",
"30 Minutes": "30 Menit",
+ "300%": "300%",
+ "32": "32",
+ "400%": "400%",
"4x4": "4x4",
"5 Minutes": "5 Menit",
"50%": "50%",
@@ -42,25 +50,35 @@
"Allow non-linear history": "Izinkan riwayat non-linear",
"Alpha": "Alpha",
"Alpha Compositing": "Komposisi Alpha",
+ "Alt": "Alt",
"Alternate Timeline": "Timeline Alternatif",
"Alternate Toolbar": "Toolbar Alternatif",
"Alternate Touchbar": "Touchbar Alternatif",
+ "Angle": "Sudut",
"Animated sprite editor pixel art tool": "Editor sprite animasi & alat pixel art",
+ "Animation Direction:": "Pengarahan Animasi:",
+ "Animation Loop": "Animasi Berulang",
+ "Anti-aliasing filter": "Filter anti-aliasing",
"Apply": "&Terapkan",
"Apply Zoom": "Terapkan Zoom",
"Apply to the active frame/layer (the active cel)": "Terapkan ke frame/lapisan aktif (cel aktif)",
"Array": "Array",
"As:": "Sebagai:",
+ "Assigned to:": "Ditugaskan kepada:",
"Authors:": "Penulis:",
"Auto": "Otomatis",
"Auto Select Layer": "Pilih Lapisan Otomatis",
"Automatically save recovery data every": "Simpan data pemulihan secara otomatis setiap",
+ "Available Fonts:": "Font yang Tersedia:",
+ "Available Palettes:": "Palet yang Tersedia:",
"Available Themes": "Tema Tersedia",
+ "Background": "Latar belakang",
"Background From Layer": "Latar Belakang Dari Lapisan",
"Background color": "Warna latar belakang",
"Background from Layer": "&Latar Belakang dari Lapisan",
"Background:": "Latar Belakang:",
"BackgroundFromLayer": "BackgroundFromLayer",
+ "Behind sprite": "Di belakang sprite",
"Best fit Index": "Indeks paling cocok",
"Best fit for texture": "Paling cocok untuk tekstur",
"Black": "&Hitam",
@@ -75,6 +93,7 @@
"Brush Preview:": "Pratinjau Kuas:",
"Brush Size (in pixels)": "Ukuran Kuas (dalam piksel)",
"Brush Type": "Tipe Kuas",
+ "Brush:": "Sikat:",
"Brush: Custom Brush #1": "Kuas: Kuas Kustom #1",
"Brush: Custom Brush #2": "Kuas: Kuas Kustom #2",
"Brush: Custom Brush #3": "Kuas: Kuas Kustom #3",
@@ -88,6 +107,7 @@
"Brush: Increment Size": "Kuas: Tambah Ukuran",
"By Columns": "Menurut Kolom",
"By Rows": "Menurut Baris",
+ "By:": "Oleh:",
"Cancel": "Batal",
"Cancel Current Operation": "Batalkan Operasi Saat Ini",
"Cancel drag and drop": "Batalkan drag and drop",
@@ -101,12 +121,15 @@
"Check this option to enable hardware acceleration": "Centang opsi ini untuk mengaktifkan akselerasi perangkat keras",
"Check this option to get\nthis old menus behavior.": "Centang opsi ini untuk mendapatkan\nperilaku menu lama ini.",
"Checked Background": "Latar Belakang Kotak-kotak",
+ "Chinese": "Cina",
+ "Circle Brush": "Kuas Lingkaran",
"Clear": "Bersihkan",
"Clear Cel": "Bersihkan Cel",
"Close": "&Tutup",
"Close All": "Tutup Semua",
"Close All Files": "Tutup Semua File",
"Close File": "Tutup File",
+ "Cmd": "Cmd",
"Color": "Warna",
"Color Burn": "Pembakaran Warna",
"Color Curve": "&Kurva Warna",
@@ -116,7 +139,9 @@
"Color Range": "&Rentang Warna",
"Color Spectrum": "Spektrum Warna",
"Color Tint/Shade/Tone": "Warna Tint/Bayangan/Nada",
+ "Color Tools": "Alat Warna",
"Color+Alpha": "Warna+Alpha",
+ "Color:": "Warna:",
"Color: Decrement Background Index": "Warna: Kurangi Indeks Latar Belakang",
"Color: Decrement Foreground Index": "Warna: Kurangi Indeks Latar Depan",
"Color: Increment Background Index": "Warna: Tambah Indeks Latar Belakang",
@@ -124,9 +149,11 @@
"Colors:": "Warna:",
"Columns to be added/removed in the left side.\nUse a negative number to remove columns.": "Kolom yang akan ditambahkan/dihapus di sisi kiri.\nGunakan angka negatif untuk menghapus kolom.",
"Columns to be added/removed in the right side.\nUse a negative number to remove columns.": "Kolom yang akan ditambahkan/dihapus di sisi kanan.\nGunakan angka negatif untuk menghapus kolom.",
+ "Compression:": "Kompresi:",
"Constant Frame Rate": "Kecepatan Frame Konstan",
"Contiguous": "Berurutan",
"Contour Tool": "Alat Kontur",
+ "Contours": "Garis kontur",
"Contract": "&Perkecil",
"Contributors": "Kontributor",
"Convolution Matrix": "Matriks Konvolusi",
@@ -134,21 +161,29 @@
"Copy Alpha+Color": "Salin Alpha+Warna",
"Copy Cel": "Salin Cel",
"Copy Merged": "Salin Terpadu",
+ "Crash Report": "Laporan Kecelakaan",
"Create Palette from Current Sprite": "Buat Palet dari Sprite Saat Ini",
"Create Palette from Current Sprite (Color Quantization)": "Buat Palet dari Sprite Saat Ini (Kuantisasi Warna)",
+ "Create entries with alpha component": "Buat entri dengan komponen alfa",
+ "Create new palette with": "Buat palet baru dengan",
"Crop": "Pangkas",
"Crop Sprite": "Pangkas Sprite",
+ "Ctrl": "Ctrl",
"Current Document": "Dokumen Saat Ini",
"Current Frame": "Frame Saat Ini",
"Current Layer": "Lapisan Saat Ini",
+ "Current layer only": "Hanya lapisan saat ini",
"Cursor": "Kursor",
"Cursors": "Kursor",
"Curve Tool": "Alat Kurva",
"Cut": "Potong",
"Darken": "Gelapkan",
+ "Default": "Bawaan",
"Default Zoom": "Zoom Default",
+ "Delete": "Menghapus",
"Delete Frame": "Hapus Frame",
"Delete Layer": "Hapus Lapisan",
+ "Delete file, I've already sent it": "Hapus file tersebut, saya sudah mengirimkannya.",
"Depending on the layer (background/transparent),\nthe pasted selection will be adjusted\nautomatically (opaque/transparent)": "Bergantung pada lapisan (latar belakang/transparan),\nseleksi yang ditempel akan disesuaikan\nautomatis (opak/transparan)",
"Deselect": "&Batalkan Seleksi",
"Deselect Mask": "Batalkan Seleksi Masker",
@@ -157,9 +192,12 @@
"Developer Console": "Konsol Pengembang",
"Difference": "Perbedaan",
"Discard Brush": "Buang Kuas",
+ "Do it later": "Lakukan nanti",
"Documentation": "Dokumentasi",
+ "Don't show this again": "Jangan tampilkan ini lagi",
"Donate": "&Donasi",
"Down": "&Bawah",
+ "Drawing": "Menggambar",
"Drop pixels here": "Letakkan piksel di sini",
"Duplicate": "&Duplikat",
"Duplicate Cel(s)": "&Duplikat Cel",
@@ -180,11 +218,13 @@
"Edit": "&Edit",
"Edit Color": "Edit Warna",
"Editor": "Editor",
+ "Effects": "Efek",
"Ellipse Tool": "Alat Elips",
"Elliptical Marquee Tool": "Alat Marquee Elips",
"English": "Inggris",
"Erase": "Hapus",
"Eraser Tool": "Alat Penghapus",
+ "Eraser Tools": "Alat Penghapus",
"Exclusion": "Eksklusi",
"Exit": "K&eluar",
"Expand": "&Perluas",
@@ -196,6 +236,7 @@
"Export...": "E&kspor...",
"Extra paint bucket options": "Opsi tambahan ember cat",
"Extras": "&Ekstra",
+ "Extras:": "Tambahan:",
"Eyedropper": "Pipet",
"Eyedropper Tool": "Alat Pipet",
"FRM+": "FRM+",
@@ -215,6 +256,10 @@
"Flip Selection Horizontal": "Balik Seleksi Horizontal",
"Flip Selection Vertical": "Balik Seleksi Vertikal",
"Flip Vertical": "Balik &Vertikal",
+ "Folder Name:": "Nama Folder:",
+ "Font Size:": "Ukuran Huruf:",
+ "Font:": "Font:",
+ "Foreground": "Latar depan",
"Foreground color": "Warna latar depan",
"Frame": "F&rame",
"Frame Properties": "Properti Frame",
@@ -225,11 +270,15 @@
"Frame:": "Frame:",
"Frames:": "Frame:",
"Freehand trace algorithm": "Algoritma jejak bebas",
+ "French": "Perancis",
"From:": "Dari:",
"Full Real-time Brush Preview": "Pratinjau Kuas Waktu Nyata Penuh",
"Fullscreen Preview": "&Pratinjau Layar Penuh",
+ "GIF Options": "Opsi GIF",
"GPU acceleration": "Akselerasi GPU",
"General": "Umum",
+ "General Options:": "Opsi Umum:",
+ "German": "Jerman",
"Global": "Global",
"Go back one folder": "Kembali satu folder",
"Go forward one folder": "Maju satu folder",
@@ -247,6 +296,7 @@
"Go to Previous Layer": "Ke Lapisan Sebelumnya",
"Go to Previous tab": "Ke Tab Sebelumnya",
"Go to modified frame/layer": "Ke frame/lapisan yang dimodifikasi",
+ "Graph": "Grafik",
"Gray": "Abu-abu",
"Gray+Alpha": "Abu-abu+Alpha",
"Grayscale": "&Skala Abu-abu",
@@ -261,32 +311,45 @@
"Height:": "Tinggi:",
"Help": "&Bantuan",
"Hide": "Sembunyikan",
+ "Hindi": "Hindi",
"Home": "&Beranda",
"Horizontal Strip": "Strip Horizontal",
"Horizontal Symmetry": "Simetri Horizontal",
"Hue": "Hue",
+ "Icon": "Ikon",
"Ignore Alpha Component": "Abaikan Komponen Alpha",
+ "Image Hint:": "Petunjuk Gambar:",
+ "Image Preset:": "Preset Gambar:",
"Import": "&Impor",
"Import Sprite Sheet": "&Impor Lembar Sprite",
+ "In front of sprite": "Di depan sprite",
"Include partial tiles at bottom/right edges": "Sertakan ubin parsial di tepi bawah/kanan",
"Indexed": "&Indeks",
"Indexed (No Dithering)": "&Indeks (Tanpa Dithering)",
"Indexed (Ordered Dither)": "Indeks (Dither &Teratur)",
+ "Indonesian": "Indonesia",
"Ink": "Tinta",
+ "Ink:": "Tinta:",
"Inner:": "Dalam:",
"Insert Text": "Sisipkan Teks",
+ "Interlaced": "Berjalin",
+ "Interpolation:": "Interpolasi:",
"Inverse": "&Invers",
"Invert": "&Balikkan",
"Invert Color": "Balikkan Warna",
"Invert Mask": "Balikkan Masker",
"Italian": "Italia",
+ "JPEG Options": "Opsi JPEG",
"JSON Data": "Data JSON",
"Japanese": "Jepang",
"Jumble Tool": "Alat Acak",
"Jump to": "&Lompat ke",
"Keep selection after \"Edit > Clear\" command": "Jaga seleksi setelah perintah \"Edit > Bersihkan\"",
+ "Key:": "Kunci:",
+ "Keyboard Shortcut": "Pintasan Keyboard",
"Keyboard Shortcuts": "Pintasan Keyboard",
"Keyboard Shortcuts...": "&Pintasan Keyboard...",
+ "Korean": "Korea",
"LYR+": "LYR+",
"LYR<": "LYR<",
"LYR>": "LYR>",
@@ -311,6 +374,7 @@
"Line Tool": "Alat Garis",
"Link Cels": "&Tautkan Cel",
"Links Cels": "Tautkan Cel",
+ "Load": "Memuat",
"Load Default Palette": "Muat Palet Default",
"Load Palette": "M&uat Palet",
"Load from MSK file": "&Muat dari file MSK",
@@ -318,6 +382,10 @@
"Locate Configuration File": "Temukan File Konfigurasi",
"Locate Crash Folder": "Temukan Folder Crash",
"Lock Alpha": "Kunci Alpha",
+ "Lock Ratio": "Rasio Kunci",
+ "Loop through tag frames": "Lakukan perulangan melalui bingkai tag.",
+ "Lossless WebP": "WebP Tanpa Kehilangan Data",
+ "Lossy WebP": "WebP yang hilang",
"Luminosity": "Luminositas",
"MB": "MB",
"Magic Wand Tool": "Alat Tongkat Sihir",
@@ -329,14 +397,18 @@
"Medium Size": "&Ukuran Sedang",
"Merge Down": "&Gabung ke Bawah",
"Merge Down Layer": "Gabung Lapisan ke Bawah",
+ "Merge Frames": "Gabungkan Bingkai",
"Meta:": "Meta:",
+ "Method:": "Metode:",
"Mirror Horizontally": "Cermin Secara Horizontal",
"Mirror Vertically": "Cermin Secara Vertikal",
"Mode:": "Mode:",
+ "Modifiers:": "Pengubah:",
"Modify": "&Modifikasi",
"Modify Blue Component": "Modifikasi Komponen Biru",
"Modify Green Component": "Modifikasi Komponen Hijau",
"Modify Red Component": "Modifikasi Komponen Merah",
+ "Modify Selection": "Ubah Pilihan",
"Move": "&Pindahkan",
"Move Cel": "Pindahkan Cel",
"Move Selection Boundaries 1 horizontal tile left": "Pindahkan Batas Seleksi 1 ubin horizontal ke kiri",
@@ -356,6 +428,7 @@
"Move Selection Content 1 vertical tile down": "Pindahkan Konten Seleksi 1 ubin vertikal ke bawah",
"Move Selection Content 1 vertical tile up": "Pindahkan Konten Seleksi 1 ubin vertikal ke atas",
"Move Tool": "Alat Pindah",
+ "Move Tools": "Pindahkan Alat",
"Multiply": "Perkalian",
"Name:": "Nama:",
"Negative Black and White": "Negatif Hitam dan Putih",
@@ -364,10 +437,13 @@
"New Empty Frame": "Frame &Kosong Baru",
"New File": "File Baru",
"New File...": "File Baru...",
+ "New Folder": "Folder Baru",
"New Frame": "&Frame Baru",
"New Frame Tag": "Tag Frame Baru",
+ "New Image Layer": "Lapisan Gambar Baru",
"New Layer": "&Lapisan Baru",
"New Layer Set": "Set Lapisan Baru",
+ "New Set": "Set Baru",
"New Sprite": "Sprite Baru",
"New Sprite From Selection": "Sprite Baru Dari Seleksi",
"New Sprite from Selection": "&Sprite Baru dari Seleksi",
@@ -378,9 +454,13 @@
"No": "&Tidak",
"None": "&Tidak ada",
"Normal": "Normal",
+ "Number of colors:": "Jumlah warna:",
"OK": "&OK",
+ "Onion Skin:": "Kulit Bawang:",
"Onion Skinning": "Onion Skinning",
+ "Opacity": "Kegelapan",
"Opacity (paint intensity)": "Opasitas (intensitas cat)",
+ "Opacity Step:": "Langkah Opasitas:",
"Opacity:": "Opasitas:",
"Open File...": "Buka File...",
"Open Folder": "Buka &Folder",
@@ -391,6 +471,7 @@
"Open With Associated Application": "Buka Dengan Aplikasi Terkait",
"Open generated sprite sheet": "Buka lembar sprite yang dihasilkan",
"Open in Folder": "Buka di &Folder",
+ "Open the following file to debug your compilation:": "Buka file berikut untuk melakukan debugging kompilasi Anda:",
"Open with OS": "&Buka dengan OS",
"Open...": "&Buka...",
"Options": "Opsi",
@@ -405,20 +486,31 @@
"Palette Editor": "&Editor Palet",
"Palette Size": "Ukuran Palet",
"Palette entry used as\ntransparent color in each\nlayer (only for indexed images).": "Entri palet digunakan sebagai\nwarna transparan di setiap\nlapisan (hanya untuk gambar terindeks).",
+ "Palette from Sprite": "Palet warna dari Sprite",
"Paste": "&Tempel",
"Pattern aligned to destination": "Pola disejajarkan ke tujuan",
"Pattern aligned to source": "Pola disejajarkan ke sumber",
"Pencil Tool": "Alat Pensil",
+ "Pencil Tools": "Alat Pensil",
"Per Tag": "Per Tag",
+ "Percentage:": "Persentase:",
+ "Perfect Traces": "Jejak Sempurna",
+ "Photo": "Foto",
"Pick foreground color": "Pilih warna latar depan",
"Pick:": "Pilih:",
+ "Picture": "Gambar",
"Pixel Grid": "&Grid Piksel",
"Pixel Grid Color:": "Warna Grid Piksel:",
"Pixel Grid Opacity:": "Opasitas Grid Piksel:",
"Pixel grid shows up when you zoom a lot": "Grid piksel muncul saat Anda memperbesar banyak",
+ "Pixel-Perfect": "Sempurna Hingga Piksel",
"Pixel-perfect": "Pixel-perfect",
+ "Pixels:": "Piksel:",
"Play Animation": "&Putar Animasi",
"Play Animation\n\nShortcut: Enter": "Putar Animasi\n\nShortcut: Enter",
+ "Please attach the following file:": "Harap lampirkan file berikut:",
+ "Point Properties": "Sifat-Sifat Titik",
+ "Polish": "Polandia",
"Polygon Tool": "Alat Poligon",
"Polygonal Lasso Tool": "Alat Lasso Poligonal",
"Portuguese": "Portugis",
@@ -430,6 +522,7 @@
"Previous Frame": "&Frame Sebelumnya",
"Properties...": "&Properti...",
"QUIT": "KELUAR",
+ "Quality:": "Kualitas:",
"Quick Reference": "Referensi &Cepat",
"REDO": "ULANGI",
"RGB": "RGB",
@@ -446,10 +539,12 @@
"Recover Session...": "Pulihkan Sesi...",
"Rectangle Tool": "Alat Persegi Panjang",
"Rectangular Marquee Tool": "Alat Marquee Persegi Panjang",
+ "Red/Blue Tint": "Warna Merah/Biru",
"Redo": "&Ulangi",
"Refresh": "Segarkan",
"Refresh Reload Skin": "&Segarkan & Muat Ulang Kulit",
"Release Notes": "Catatan Rilis",
+ "Reload Stock": "Isi Ulang Stok",
"Remap": "Peta Ulang",
"Remove": "&Hapus",
"Remove Frame": "&Hapus Frame",
@@ -459,6 +554,8 @@
"Repeat Last Export": "Ulangi &Ekspor Terakhir",
"Replace Color": "Ganti Warna",
"Replace Color...": "G&anti Warna...",
+ "Replace current palette": "Ganti palet saat ini",
+ "Replace current range": "Ganti rentang saat ini",
"Replace selection": "Ganti seleksi",
"Rescan Scripts": "Pindai Ulang Skrip",
"Rescan scripts": "Pindai ulang skrip",
@@ -483,6 +580,7 @@
"Rows to be added/removed in the bottom side.\nUse a negative number to remove rows.": "Baris yang akan ditambahkan/dihapus di sisi bawah.\nGunakan angka negatif untuk menghapus baris.",
"Rows to be added/removed in the top side.\nUse a negative number to remove rows.": "Baris yang akan ditambahkan/dihapus di sisi atas.\nGunakan angka negatif untuk menghapus baris.",
"Run Script": "Jalankan Skrip",
+ "Russian": "Rusia",
"Same Ink in All Tools": "Tinta yang Sama di Semua Alat",
"Same in all Tools": "Sama di semua Alat",
"Sample:": "Contoh:",
@@ -495,6 +593,7 @@
"Save Mask": "Simpan Masker",
"Save Palette": "S&impan Palet",
"Save as Default Palette": "Simpan sebagai Palet Default",
+ "Save as:": "Simpan sebagai:",
"Save to MSK file": "&Simpan ke file MSK",
"Screen": "Layar",
"Screen Scaling:": "Skala Layar:",
@@ -512,6 +611,7 @@
"Scroll to center of canvas": "Gulir ke tengah kanvas",
"Select": "Pilih",
"Select File": "Pilih File",
+ "Select Font": "Pilih Font",
"Select Tile": "Pilih Ubin",
"Select Tile (Add)": "Pilih Ubin (Tambah)",
"Select Tile (Subtract)": "Pilih Ubin (Kurangi)",
@@ -519,6 +619,7 @@
"Selected layers": "Lapisan terpilih",
"Selection": "Seleksi",
"Selection Edges": "&Tepi Seleksi",
+ "Selection Tools": "Alat Seleksi",
"Selection as Grid": "Sele&ksi sebagai Grid",
"Set Color Selector: Color Spectrum": "Atur Pemilih Warna: Spektrum Warna",
"Set Color Selector: Color Tint/Shade/Tone": "Atur Pemilih Warna: Warna Tint/Bayangan/Nada",
@@ -532,9 +633,11 @@
"Set Loop Section": "Atur &Bagian Loop",
"Set Palette": "Atur Palet",
"Set Palette Entry Size": "Atur Ukuran Entri Palet",
+ "Shade": "Naungan",
"Shades": "Bayangan",
"Shading": "Bayangan",
"Shape:": "Bentuk:",
+ "Shapes": "Bentuk",
"Share": "Bagikan",
"Share...": "Bagikan...",
"Sheet Type:": "Tipe Lembar:",
@@ -555,11 +658,13 @@
"Show the timeline automatically\nwhen a new frame or layer is added.": "Tampilkan timeline secara otomatis\nketika frame atau lapisan baru ditambahkan.",
"Show timeline automatically": "Tampilkan timeline secara otomatis",
"Simple Ink": "Tinta Sederhana",
+ "Size": "Ukuran",
"Size:": "Ukuran:",
"Small Size": "&Ukuran Kecil",
"Snap to Grid": "&Snap ke Grid",
"Soft Light": "Cahaya Lembut",
"Sort & Gradients": "Urutkan & Gradien",
+ "Space": "Space",
"Spanish": "Spanyol",
"Specific Color": "Warna Spesifik",
"Spray Speed": "Kecepatan Semprot",
@@ -569,6 +674,7 @@
"Sprite Properties": "Properti Sprite",
"Sprite Size": "Ukuran Sprite",
"Sprite Size...": "&Ukuran Sprite...",
+ "Square Brush": "Sikat Persegi",
"Subtract from selection\n(Shift+Alt)": "Kurangi dari seleksi\n(Shift+Alt)",
"Switch Colors": "Tukar Warna",
"Switch Pixel Perfect Mode": "Beralih ke Mode Pixel Perfect",
@@ -578,6 +684,8 @@
"TIME": "WAKTU",
"Tag Properties...": "Properti &Tag...",
"Tags": "&Tag",
+ "Text": "Teks",
+ "Text:": "Teks:",
"The 'Stop' button should rewind the animation\nwhere it was started.": "Tombol 'Berhenti' harus memundurkan animasi\nke tempat dimulai.",
"Theme": "Tema",
"Tile Mode": "Mode Ubin",
@@ -600,6 +708,7 @@
"Trim": "&Pangkas",
"Trim Sprite": "Pangkas Sprite",
"Tutorial": "Tutorial",
+ "Type": "Jenis",
"Type:": "Tipe:",
"UI Elements Scaling:": "Skala Elemen UI:",
"UNDO": "URUNG",
@@ -614,19 +723,26 @@
"Use native file dialog": "Gunakan dialog file bawaan",
"Use native mouse cursor": "Gunakan kursor mouse bawaan",
"User Data": "Data Pengguna",
+ "User Data:": "Data Pengguna:",
"User Interface": "Antarmuka Pengguna",
"Vertical Strip": "Strip Vertikal",
"Vertical Symmetry": "Simetri Vertikal",
"View": "&Lihat",
+ "View Tools": "Lihat Alat",
"Visible": "&Terlihat",
"Visible layers": "Lapisan terlihat",
+ "Warning - Important": "Peringatan - Penting",
+ "WebP Options": "Opsi WebP",
"When it's enabled each time you undo/redo\nthe current frame & layer will be modified\nto focus the undid/redid change.": "Ketika diaktifkan setiap kali Anda urung/ulangi\nframe & lapisan saat ini akan dimodifikasi\nuntuk memfokuskan perubahan yang diurungkan/diulangi.",
"White": "&Putih",
"Width:": "Lebar:",
+ "Win": "Win",
"With this option you can recover your documents\nif the program finalizes unexpectedly.": "Dengan opsi ini Anda dapat memulihkan dokumen\njika program berhenti secara tak terduga.",
"X:": "X:",
"Y:": "Y:",
"Yes": "&Ya",
+ "You are going to enter in \"Advanced Mode\".": "Anda akan memasuki \"Mode Lanjutan\".",
+ "You are using a development version.": "Anda menggunakan versi pengembangan.",
"You must restart the program to see your changes to:": "Anda harus memulai ulang program untuk melihat perubahan Anda pada:",
"Zoom 100%": "Zoom 100%",
"Zoom 1600%": "Zoom 1600%",
@@ -644,5 +760,9 @@
"Zoom in": "Perbesar",
"Zoom out": "Perkecil",
"Zoom sliding two fingers up or down": "Zoom dengan menggeser dua jari ke atas atau ke bawah",
- "Zoom with scroll wheel": "Zoom dengan roda gulir"
-}
+ "Zoom with scroll wheel": "Zoom dengan roda gulir",
+ "colors or less": "warna atau kurang",
+ "explaining what you was doing when the program crashed.": "Jelaskan apa yang Anda lakukan saat program mengalami crash.",
+ "https://github.com/Veritaware/Besprited/issues": "https://github.com/Veritaware/Besprited/issues",
+ "to a bug report on:": "untuk laporan bug pada:"
+}
\ No newline at end of file
diff --git a/data/languages/it.json b/data/languages/it.json
index 36a421c3b..0741de45c 100644
--- a/data/languages/it.json
+++ b/data/languages/it.json
@@ -1,5 +1,4 @@
{
- "180": "&180",
"# of Columns:": "Numero di colonne:",
"# of Rows:": "Numero di righe:",
"*\n Left-button: Erase with the background color in `Background' layer\n\n or transparent color in any other layer.\n*\n Right-button: Replace foreground with background color.\n ": "*\n Pulsante sinistro: Cancella con il colore di sfondo nel livello 'Sfondo'\n\n o con colore trasparente in qualsiasi altro livello.\n*\n Pulsante destro: Sostituisci il colore in primo piano con quello di sfondo.\n ",
@@ -9,14 +8,23 @@
"- Classic skin graphics introduced in v0.8": "- Skin e grafica classica introdotte nella versione v0.8",
"- Lead developer, graphics maintainer": "- Sviluppatore principale, grafica & manutentore",
"-------- Recent Paths --------": "-------- Percorsi recenti --------",
+ "0": "0",
"10 Minutes": "10 minuti",
+ "100": "100",
+ "100%": "100%",
"1000%": "1000%",
"15 Minutes": "15 minuti",
+ "16": "16",
"16x16": "16x16",
+ "180": "&180",
"2 Minutes": "2 minuti",
+ "200%": "200%",
"25%": "25%",
"2x2": "2x2",
"30 Minutes": "30 minuti",
+ "300%": "300%",
+ "32": "32",
+ "400%": "400%",
"4x4": "4x4",
"5 Minutes": "5 minuti",
"50%": "50%",
@@ -42,25 +50,35 @@
"Allow non-linear history": "Consenti cronologia non lineare",
"Alpha": "Alpha",
"Alpha Compositing": "Composizione Alpha",
+ "Alt": "Alt",
"Alternate Timeline": "Timeline alternativa",
"Alternate Toolbar": "Barra degli strumenti alternativa",
"Alternate Touchbar": "Touchbar alternativa",
+ "Angle": "Angle",
"Animated sprite editor pixel art tool": "Editor di sprite animati & strumento per pixel art",
+ "Animation Direction:": "Direzione animazione:",
+ "Animation Loop": "Ciclo di animazione",
+ "Anti-aliasing filter": "Filtro anti-aliasing",
"Apply": "&Applica",
"Apply Zoom": "Applica zoom",
"Apply to the active frame/layer (the active cel)": "Applica al fotogramma/livello attivo (il cel attivo)",
"Array": "Array",
"As:": "Come:",
+ "Assigned to:": "Assegnato a:",
"Authors:": "Autori:",
"Auto": "Auto",
"Auto Select Layer": "Seleziona automaticamente il livello",
"Automatically save recovery data every": "Salva automaticamente i dati di recupero ogni",
+ "Available Fonts:": "Font disponibili:",
+ "Available Palettes:": "Tavolozze disponibili:",
"Available Themes": "Temi disponibili",
+ "Background": "Sfondo",
"Background From Layer": "Sfondo da livello",
"Background color": "Colore di sfondo",
"Background from Layer": "S&fondo da livello",
"Background:": "Sfondo:",
- "BackgroundFromLayer": "BackgroundFromLayer",
+ "BackgroundFromLayer": "Sfondo da livello",
+ "Behind sprite": "Dietro lo sprite",
"Best fit Index": "Indice migliore adattamento",
"Best fit for texture": "Migliore adattamento per la texture",
"Black": "&Nero",
@@ -75,6 +93,7 @@
"Brush Preview:": "Anteprima pennello:",
"Brush Size (in pixels)": "Dimensione pennello (in pixel)",
"Brush Type": "Tipo di pennello",
+ "Brush:": "Pennello:",
"Brush: Custom Brush #1": "Pennello: Pennello personalizzato #1",
"Brush: Custom Brush #2": "Pennello: Pennello personalizzato #2",
"Brush: Custom Brush #3": "Pennello: Pennello personalizzato #3",
@@ -88,6 +107,7 @@
"Brush: Increment Size": "Pennello: Aumenta dimensione",
"By Columns": "Per colonne",
"By Rows": "Per righe",
+ "By:": "Di:",
"Cancel": "Annulla",
"Cancel Current Operation": "Annulla operazione corrente",
"Cancel drag and drop": "Annulla trascina e rilascia",
@@ -101,12 +121,15 @@
"Check this option to enable hardware acceleration": "Seleziona questa opzione per abilitare l'accelerazione hardware",
"Check this option to get\nthis old menus behavior.": "Seleziona questa opzione per ottenere\nquesto comportamento dei vecchi menu.",
"Checked Background": "Sfondo a scacchi",
+ "Chinese": "Cinese",
+ "Circle Brush": "Pennello circolare",
"Clear": "&Cancella",
"Clear Cel": "Cancella cel",
"Close": "&Chiudi",
"Close All": "Chiudi tutto",
"Close All Files": "Chiudi tutti i file",
"Close File": "Chiudi file",
+ "Cmd": "Cmd",
"Color": "Colore",
"Color Burn": "Brucia colore",
"Color Curve": "Curva &colore",
@@ -116,7 +139,9 @@
"Color Range": "Intervallo &colori",
"Color Spectrum": "Spettro colori",
"Color Tint/Shade/Tone": "Tinta/Sfumatura/Tono colore",
+ "Color Tools": "Strumenti colore",
"Color+Alpha": "Color+Alpha",
+ "Color:": "Colore:",
"Color: Decrement Background Index": "Colore: Diminuisci indice sfondo",
"Color: Decrement Foreground Index": "Colore: Diminuisci indice primo piano",
"Color: Increment Background Index": "Colore: Aumenta indice sfondo",
@@ -124,9 +149,11 @@
"Colors:": "Colori:",
"Columns to be added/removed in the left side.\nUse a negative number to remove columns.": "Colonne da aggiungere/rimuovere sul lato sinistro.\nUsa un numero negativo per rimuovere colonne.",
"Columns to be added/removed in the right side.\nUse a negative number to remove columns.": "Colonne da aggiungere/rimuovere sul lato destro.\nUsa un numero negativo per rimuovere colonne.",
+ "Compression:": "Compressione:",
"Constant Frame Rate": "Frequenza fotogrammi costante",
"Contiguous": "Contiguo",
"Contour Tool": "Strumento contorno",
+ "Contours": "Contorni",
"Contract": "&Contrae",
"Contributors": "Contributori",
"Convolution Matrix": "Matrice di convoluzione",
@@ -134,21 +161,29 @@
"Copy Alpha+Color": "Copia Alpha+Colore",
"Copy Cel": "Copia cel",
"Copy Merged": "Copia mer&giata",
+ "Crash Report": "Rapporto di crash",
"Create Palette from Current Sprite": "Crea palette dallo sprite corrente",
"Create Palette from Current Sprite (Color Quantization)": "Crea palette dallo sprite corrente (Quantizzazione colore)",
+ "Create entries with alpha component": "Crea voci con componente alfa",
+ "Create new palette with": "Crea nuova tavolozza con",
"Crop": "Rita&glia",
"Crop Sprite": "Ritaglia sprite",
+ "Ctrl": "Ctrl",
"Current Document": "Documento corrente",
"Current Frame": "Fotogramma corrente",
"Current Layer": "Livello corrente",
+ "Current layer only": "Solo livello corrente",
"Cursor": "Cursore",
"Cursors": "Cursori",
"Curve Tool": "Strumento curva",
"Cut": "&Taglia",
"Darken": "Scurisci",
+ "Default": "Predefinito",
"Default Zoom": "Zoom predefinito",
+ "Delete": "Elimina",
"Delete Frame": "Elimina fotogramma",
"Delete Layer": "Elimina livello",
+ "Delete file, I've already sent it": "Elimina file, l'ho già inviato",
"Depending on the layer (background/transparent),\nthe pasted selection will be adjusted\nautomatically (opaque/transparent)": "A seconda del livello (sfondo/trasparente),\nla selezione incollata sarà regolata\nautomaticamente (opaco/trasparente)",
"Deselect": "&Deseleziona",
"Deselect Mask": "Deseleziona maschera",
@@ -157,9 +192,12 @@
"Developer Console": "Console sviluppatore",
"Difference": "Differenza",
"Discard Brush": "Scarta pennello",
+ "Do it later": "Fallo dopo",
"Documentation": "Documentazione",
+ "Don't show this again": "Non mostrare più",
"Donate": "&Dona",
"Down": "&Giù",
+ "Drawing": "Disegno",
"Drop pixels here": "Trascina i pixel qui",
"Duplicate": "&Duplica",
"Duplicate Cel(s)": "&Duplica cel",
@@ -180,11 +218,13 @@
"Edit": "&Modifica",
"Edit Color": "Modifica colore",
"Editor": "Editor",
+ "Effects": "Effetti",
"Ellipse Tool": "Strumento ellisse",
"Elliptical Marquee Tool": "Strumento selezione ellittica",
"English": "Inglese",
"Erase": "Cancella",
"Eraser Tool": "Strumento gomma",
+ "Eraser Tools": "Strumenti gomma",
"Exclusion": "Esclusione",
"Exit": "&Esci",
"Expand": "&Espandi",
@@ -196,6 +236,7 @@
"Export...": "E&sporta...",
"Extra paint bucket options": "Opzioni extra secchiello",
"Extras": "&Extra",
+ "Extras:": "Extra:",
"Eyedropper": "Contagocce",
"Eyedropper Tool": "Strumento contagocce",
"FRM+": "FRM+",
@@ -215,6 +256,10 @@
"Flip Selection Horizontal": "Rifletti selezione orizzontale",
"Flip Selection Vertical": "Rifletti selezione verticale",
"Flip Vertical": "Rifletti &verticale",
+ "Folder Name:": "Nome cartella:",
+ "Font Size:": "Dimensione font:",
+ "Font:": "Font:",
+ "Foreground": "Primo piano",
"Foreground color": "Colore di primo piano",
"Frame": "Fotog&ramma",
"Frame Properties": "Proprietà fotogramma",
@@ -225,11 +270,15 @@
"Frame:": "Fotogramma:",
"Frames:": "Fotogrammi:",
"Freehand trace algorithm": "Algoritmo tracciamento a mano libera",
+ "French": "Francese",
"From:": "Da:",
"Full Real-time Brush Preview": "Anteprima pennello in tempo reale completa",
"Fullscreen Preview": "&Anteprima a schermo intero",
+ "GIF Options": "Opzioni GIF",
"GPU acceleration": "Accelerazione GPU",
"General": "Generale",
+ "General Options:": "Opzioni generali:",
+ "German": "Tedesco",
"Global": "Globale",
"Go back one folder": "Torna indietro di una cartella",
"Go forward one folder": "Vai avanti di una cartella",
@@ -247,6 +296,7 @@
"Go to Previous Layer": "Vai al livello precedente",
"Go to Previous tab": "Vai alla scheda precedente",
"Go to modified frame/layer": "Vai al fotogramma/livello modificato",
+ "Graph": "Grafico",
"Gray": "Grigio",
"Gray+Alpha": "Grigio+Alpha",
"Grayscale": "&Scala di grigi",
@@ -263,32 +313,45 @@
"Height:": "Altezza:",
"Help": "&Aiuto",
"Hide": "Nascondi",
+ "Hindi": "Hindi",
"Home": "&Home",
"Horizontal Strip": "Striscia orizzontale",
"Horizontal Symmetry": "Simmetria orizzontale",
"Hue": "Tonalità",
+ "Icon": "Icona",
"Ignore Alpha Component": "Ignora componente Alpha",
+ "Image Hint:": "Suggerimento immagine:",
+ "Image Preset:": "Preimpostazione immagine:",
"Import": "&Importa",
"Import Sprite Sheet": "&Importa sprite sheet",
+ "In front of sprite": "Davanti allo sprite",
"Include partial tiles at bottom/right edges": "Includi tile parziali ai bordi inferiore/destro",
"Indexed": "&Indicizzato",
"Indexed (No Dithering)": "Indicizzato (senza &dithering)",
"Indexed (Ordered Dither)": "Indicizzato (dithering &ordinato)",
+ "Indonesian": "Indonesiano",
"Ink": "Inchiostro",
+ "Ink:": "Inchiostro:",
"Inner:": "Interno:",
"Insert Text": "Inserisci testo",
+ "Interlaced": "Interlacciato",
+ "Interpolation:": "Interpolazione:",
"Inverse": "&Inversa",
"Invert": "&Inverti",
"Invert Color": "Inverti colore",
"Invert Mask": "Inverti maschera",
"Italian": "Italiano",
+ "JPEG Options": "Opzioni JPEG",
"JSON Data": "Dati JSON",
"Japanese": "Giapponese",
"Jumble Tool": "Strumento mescola",
"Jump to": "&Salta a",
"Keep selection after \"Edit > Clear\" command": "Mantieni la selezione dopo il comando \"Modifica > Cancella\"",
+ "Key:": "Tasto:",
+ "Keyboard Shortcut": "Scorciatoia da tastiera",
"Keyboard Shortcuts": "Scorciatoie da tastiera",
"Keyboard Shortcuts...": "&Scorciatoie da tastiera...",
+ "Korean": "Coreano",
"LYR+": "LIV+",
"LYR<": "LIV<",
"LYR>": "LIV>",
@@ -313,13 +376,18 @@
"Line Tool": "Strumento linea",
"Link Cels": "&Collega cel",
"Links Cels": "Collega cel",
+ "Load": "Carica",
"Load Default Palette": "Carica palette predefinita",
"Load Palette": "Car&ica palette",
"Load from MSK file": "Carica da file MSK",
- "LoadMask": "LoadMask",
+ "LoadMask": "Carica maschera",
"Locate Configuration File": "Individua file di configurazione",
"Locate Crash Folder": "Individua cartella dei crash",
"Lock Alpha": "Blocca Alpha",
+ "Lock Ratio": "Blocca proporzioni",
+ "Loop through tag frames": "Ripeti frame con tag",
+ "Lossless WebP": "WebP senza perdita",
+ "Lossy WebP": "WebP con perdita",
"Luminosity": "Luminosità",
"MB": "MB",
"Magic Wand Tool": "Strumento bacchetta magica",
@@ -331,14 +399,18 @@
"Medium Size": "&Dimensione media",
"Merge Down": "&Unisci giù",
"Merge Down Layer": "Unisci livello giù",
+ "Merge Frames": "Unisci frame",
"Meta:": "Meta:",
+ "Method:": "Metodo:",
"Mirror Horizontally": "Specchia orizzontalmente",
"Mirror Vertically": "Specchia verticalmente",
"Mode:": "Modalità:",
+ "Modifiers:": "Modificatori:",
"Modify": "&Modifica",
"Modify Blue Component": "Modifica componente blu",
"Modify Green Component": "Modifica componente verde",
"Modify Red Component": "Modifica componente rosso",
+ "Modify Selection": "Modifica selezione",
"Move": "&Sposta",
"Move Cel": "Sposta cel",
"Move Selection Boundaries 1 horizontal tile left": "Sposta i confini della selezione di 1 tile orizzontale a sinistra",
@@ -358,6 +430,7 @@
"Move Selection Content 1 vertical tile down": "Sposta il contenuto della selezione di 1 tile verticale in basso",
"Move Selection Content 1 vertical tile up": "Sposta il contenuto della selezione di 1 tile verticale in alto",
"Move Tool": "Strumento sposta",
+ "Move Tools": "Strumenti sposta",
"Multiply": "Moltiplica",
"Name:": "Nome:",
"Negative Black and White": "Negativo bianco e nero",
@@ -366,10 +439,13 @@
"New Empty Frame": "Nuovo &fotogramma vuoto",
"New File": "Nuovo file",
"New File...": "Nuovo file...",
+ "New Folder": "Nuova cartella",
"New Frame": "&Nuovo fotogramma",
"New Frame Tag": "Nuovo tag fotogramma",
+ "New Image Layer": "Nuovo livello immagine",
"New Layer": "&Nuovo livello",
"New Layer Set": "Nuovo gruppo di livelli",
+ "New Set": "Nuovo set",
"New Sprite": "Nuovo sprite",
"New Sprite From Selection": "Nuovo sprite dalla selezione",
"New Sprite from Selection": "&Nuovo sprite dalla selezione",
@@ -380,9 +456,13 @@
"No": "&No",
"None": "&Nessuno",
"Normal": "Normale",
+ "Number of colors:": "Numero di colori:",
"OK": "&OK",
+ "Onion Skin:": "Buccia di cipolla:",
"Onion Skinning": "Onion Skin",
+ "Opacity": "Opacità",
"Opacity (paint intensity)": "Opacità (intensità pittura)",
+ "Opacity Step:": "Passo opacità:",
"Opacity:": "Opacità:",
"Open File...": "Apri file...",
"Open Folder": "Apri &cartella",
@@ -393,6 +473,7 @@
"Open With Associated Application": "Apri con l'applicazione associata",
"Open generated sprite sheet": "Apri sprite sheet generato",
"Open in Folder": "Apri nella &cartella",
+ "Open the following file to debug your compilation:": "Apri il seguente file per eseguire il debug della compilazione:",
"Open with OS": "&Apri con il sistema operativo",
"Open...": "&Apri...",
"Options": "Opzioni",
@@ -407,20 +488,31 @@
"Palette Editor": "Editor &palette",
"Palette Size": "Dimensione &palette",
"Palette entry used as\ntransparent color in each\nlayer (only for indexed images).": "Voce della palette usata come\ncolore trasparente in ogni\nlivello (solo per immagini indicizzate).",
+ "Palette from Sprite": "Tavolozza da sprite",
"Paste": "&Incolla",
"Pattern aligned to destination": "Motivo allineato alla destinazione",
"Pattern aligned to source": "Motivo allineato alla sorgente",
"Pencil Tool": "Strumento matita",
+ "Pencil Tools": "Strumenti matita",
"Per Tag": "Per tag",
+ "Percentage:": "Percentuale:",
+ "Perfect Traces": "Tracce perfette",
+ "Photo": "Foto",
"Pick foreground color": "Scegli colore primo piano",
"Pick:": "Scegli:",
+ "Picture": "Immagine",
"Pixel Grid": "&Griglia pixel",
"Pixel Grid Color:": "Colore griglia pixel:",
"Pixel Grid Opacity:": "Opacità griglia pixel:",
"Pixel grid shows up when you zoom a lot": "La griglia dei pixel appare quando si esegue uno zoom elevato",
+ "Pixel-Perfect": "Pixel-Perfect",
"Pixel-perfect": "Pixel-perfect",
+ "Pixels:": "Pixel:",
"Play Animation": "&Riproduci animazione",
"Play Animation\n\nShortcut: Enter": "Riproduci animazione\n\nScorciatoia: Invio",
+ "Please attach the following file:": "Si prega di allegare il seguente file:",
+ "Point Properties": "Proprietà punto",
+ "Polish": "Polacco",
"Polygon Tool": "Strumento poligono",
"Polygonal Lasso Tool": "Strumento lazo poligonale",
"Portuguese": "Portoghese",
@@ -432,6 +524,7 @@
"Previous Frame": "&Fotogramma precedente",
"Properties...": "&Proprietà...",
"QUIT": "ESCI",
+ "Quality:": "Qualità:",
"Quick Reference": "Riferimento &rapido",
"REDO": "RIPETI",
"RGB": "RGB",
@@ -448,10 +541,12 @@
"Recover Session...": "Recupera sessione...",
"Rectangle Tool": "Strumento rettangolo",
"Rectangular Marquee Tool": "Strumento selezione rettangolare",
+ "Red/Blue Tint": "Tinta rosso/blu",
"Redo": "&Ripeti",
"Refresh": "Aggiorna",
"Refresh Reload Skin": "&Aggiorna & ricarica skin",
"Release Notes": "Note di rilascio",
+ "Reload Stock": "Ricarica stock",
"Remap": "Rimappa",
"Remove": "&Rimuovi",
"Remove Frame": "&Rimuovi fotogramma",
@@ -461,6 +556,8 @@
"Repeat Last Export": "Ripeti &ultimo esporta",
"Replace Color": "Sostituisci colore",
"Replace Color...": "S&ostituisci colore...",
+ "Replace current palette": "Sostituisci tavolozza corrente",
+ "Replace current range": "Sostituisci intervallo corrente",
"Replace selection": "Sostituisci selezione",
"Rescan Scripts": "Riscansiona script",
"Rescan scripts": "Riscansiona script",
@@ -485,6 +582,7 @@
"Rows to be added/removed in the bottom side.\nUse a negative number to remove rows.": "Righe da aggiungere/rimuovere sul lato inferiore.\nUsa un numero negativo per rimuovere righe.",
"Rows to be added/removed in the top side.\nUse a negative number to remove rows.": "Righe da aggiungere/rimuovere sul lato superiore.\nUsa un numero negativo per rimuovere righe.",
"Run Script": "Esegui script",
+ "Russian": "Russo",
"Same Ink in All Tools": "Stesso inchiostro in tutti gli strumenti",
"Same in all Tools": "Stesso in tutti gli strumenti",
"Sample:": "Campione:",
@@ -497,6 +595,7 @@
"Save Mask": "Salva maschera",
"Save Palette": "Sal&va palette",
"Save as Default Palette": "Salva come palette predefinita",
+ "Save as:": "Salva come:",
"Save to MSK file": "Salva in file MSK",
"Screen": "Schermo",
"Screen Scaling:": "Scala schermo:",
@@ -514,6 +613,7 @@
"Scroll to center of canvas": "Scorri al centro della tela",
"Select": "&Seleziona",
"Select File": "Seleziona file",
+ "Select Font": "Seleziona font",
"Select Tile": "Seleziona tile",
"Select Tile (Add)": "Seleziona tile (aggiungi)",
"Select Tile (Subtract)": "Seleziona tile (sottrai)",
@@ -521,6 +621,7 @@
"Selected layers": "Livelli selezionati",
"Selection": "Selezione",
"Selection Edges": "&Bordi selezione",
+ "Selection Tools": "Strumenti selezione",
"Selection as Grid": "Selezione come &griglia",
"Set Color Selector: Color Spectrum": "Imposta selettore colore: spettro colori",
"Set Color Selector: Color Tint/Shade/Tone": "Imposta selettore colore: tinta/sfumatura/tono",
@@ -534,9 +635,11 @@
"Set Loop Section": "Imposta sezione &loop",
"Set Palette": "Imposta palette",
"Set Palette Entry Size": "Imposta dimensione voce palette",
+ "Shade": "Ombreggiatura",
"Shades": "Sfumature",
"Shading": "Sfumatura",
"Shape:": "Forma:",
+ "Shapes": "Forme",
"Share": "Condividi",
"Share...": "Condividi...",
"Sheet Type:": "Tipo di foglio:",
@@ -557,11 +660,13 @@
"Show the timeline automatically\nwhen a new frame or layer is added.": "Mostra automaticamente la timeline\nquando viene aggiunto un nuovo fotogramma o livello.",
"Show timeline automatically": "Mostra timeline automaticamente",
"Simple Ink": "Inchiostro semplice",
+ "Size": "Dimensione",
"Size:": "Dimensione:",
"Small Size": "&Dimensione piccola",
"Snap to Grid": "Aggancia alla &griglia",
"Soft Light": "Luce soffusa",
"Sort & Gradients": "Ordina & sfumature",
+ "Space": "Spazio",
"Spanish": "Spagnolo",
"Specific Color": "Colore specifico",
"Spray Speed": "Velocità spray",
@@ -571,6 +676,7 @@
"Sprite Properties": "Proprietà sprite",
"Sprite Size": "Dimensione sprite",
"Sprite Size...": "&Dimensione sprite...",
+ "Square Brush": "Pennello quadrato",
"Subtract from selection\n(Shift+Alt)": "Sottrai dalla selezione\n(Shift+Alt)",
"Switch Colors": "Inverti colori",
"Switch Pixel Perfect Mode": "Attiva/disattiva modalità Pixel Perfect",
@@ -580,6 +686,8 @@
"TIME": "TEMPO",
"Tag Properties...": "Proprietà &tag...",
"Tags": "&Tag",
+ "Text": "Testo",
+ "Text:": "Testo:",
"The 'Stop' button should rewind the animation\nwhere it was started.": "Il pulsante 'Stop' dovrebbe riavvolgere l'animazione\ndove è stata avviata.",
"Theme": "Tema",
"Tile Mode": "Modalità tile",
@@ -594,7 +702,7 @@
"Toggle Touchbar": "Attiva/disattiva touchbar",
"Tolerance:": "Tolleranza:",
"Top:": "Alto:",
- "Touchbar": "Touchbar",
+ "Touchbar": "Barra touch",
"Transform": "Trasfor&ma",
"Transparent": "&Trasparente",
"Transparent Color": "Colore trasparente",
@@ -602,6 +710,7 @@
"Trim": "&Ritaglia",
"Trim Sprite": "Ritaglia sprite",
"Tutorial": "Tutorial",
+ "Type": "Tipo",
"Type:": "Tipo:",
"UI Elements Scaling:": "Scala elementi UI:",
"UNDO": "ANNULLA",
@@ -616,19 +725,26 @@
"Use native file dialog": "Usa dialogo file nativo",
"Use native mouse cursor": "Usa cursore mouse nativo",
"User Data": "Dati utente",
+ "User Data:": "Dati utente:",
"User Interface": "Interfaccia utente",
"Vertical Strip": "Striscia verticale",
"Vertical Symmetry": "Simmetria verticale",
"View": "&Visualizza",
+ "View Tools": "Strumenti vista",
"Visible": "&Visibile",
"Visible layers": "Livelli visibili",
+ "Warning - Important": "Avviso - Importante",
+ "WebP Options": "Opzioni WebP",
"When it's enabled each time you undo/redo\nthe current frame & layer will be modified\nto focus the undid/redid change.": "Quando è abilitato, ogni volta che annulli/ripeti\nil fotogramma & livello corrente verranno modificati\nper focalizzare la modifica annullata/ripetuta.",
"White": "&Bianco",
"Width:": "Larghezza:",
+ "Win": "Win",
"With this option you can recover your documents\nif the program finalizes unexpectedly.": "Con questa opzione puoi recuperare i tuoi documenti\nse il programma si chiude inaspettatamente.",
"X:": "X:",
"Y:": "Y:",
"Yes": "&Sì",
+ "You are going to enter in \"Advanced Mode\".": "Stai per entrare in \"Modalità avanzata\".",
+ "You are using a development version.": "Stai usando una versione di sviluppo.",
"You must restart the program to see your changes to:": "Devi riavviare il programma per vedere le modifiche a:",
"Zoom 100%": "Zoom 100%",
"Zoom 1600%": "Zoom 1600%",
@@ -646,5 +762,9 @@
"Zoom in": "Zoom avanti",
"Zoom out": "Zoom indietro",
"Zoom sliding two fingers up or down": "Zoom scorrendo due dita su o giù",
- "Zoom with scroll wheel": "Zoom con la rotellina"
+ "Zoom with scroll wheel": "Zoom con la rotellina",
+ "colors or less": "colori o meno",
+ "explaining what you was doing when the program crashed.": "spiegando cosa stavi facendo quando il programma è andato in crash.",
+ "https://github.com/Veritaware/Besprited/issues": "https://github.com/Veritaware/Besprited/issues",
+ "to a bug report on:": "a un rapporto di bug su:"
}
diff --git a/data/languages/jp.json b/data/languages/jp.json
index 3c81b9f70..b6c33157b 100644
--- a/data/languages/jp.json
+++ b/data/languages/jp.json
@@ -1,16 +1,34 @@
{
- "180": "180度(&1)",
+ "# of Columns:": "# of Columns:",
+ "# of Rows:": "# of Rows:",
"*\n Left-button: Erase with the background color in `Background' layer\n\n or transparent color in any other layer.\n*\n Right-button: Replace foreground with background color.\n ": "*\n 左ボタン: `背景'レイヤーで背景色を使って消去\n\n または他のレイヤーで透明色を使用。\n*\n 右ボタン: 前景色を背景色に置き換え。\n ",
"*\n Left-button: Replace/add to current selection.\n*\n Right-button: Remove from current selection.\n ": "*\n 左ボタン: 現在の選択に置き換える/追加。\n*\n 右ボタン: 現在の選択から削除。\n ",
"*\n Left-button: replace/add to current selection.\n*\n Right-button: remove from current selection.\n ": "*\n 左ボタン: 現在の選択に置き換える/追加。\n*\n 右ボタン: 現在の選択から削除。\n ",
"-------- Recent Paths --------": "-------- 最近のパス --------",
+ "0": "0",
"10 Minutes": "10分",
+ "100": "100",
+ "100%": "100%",
+ "1000%": "1000%",
"15 Minutes": "15分",
+ "16": "16",
+ "180": "180度(&1)",
"2 Minutes": "2分",
+ "200%": "200%",
+ "25%": "25%",
"30 Minutes": "30分",
+ "300%": "300%",
+ "32": "32",
+ "400%": "400%",
"5 Minutes": "5分",
+ "50%": "50%",
+ "500%": "500%",
+ "600%": "600%",
+ "700%": "700%",
+ "800%": "800%",
"90 CCW": "90度 反時計回り(&3)",
"90 CW": "90度 時計回り(&2)",
+ "900%": "900%",
"About": "バージョン情報(&A)",
"Add Background Color to Palette": "パレットに背景色を追加",
"Add Foreground Color to Palette": "パレットに前景色を追加",
@@ -24,30 +42,47 @@
"Allow non-linear history": "非線形履歴を許可",
"Alpha": "アルファ",
"Alpha Compositing": "アルファ合成",
+ "Alt": "Alt",
"Alternate Timeline": "別のタイムライン",
"Alternate Toolbar": "代替ツールバー",
"Alternate Touchbar": "別のタッチバー",
+ "Angle": "角度",
+ "Animation Direction:": "アニメーションディレクション:",
+ "Animation Loop": "アニメーションループ",
+ "Anti-aliasing filter": "アンチエイリアシングフィルター",
"Apply": "&適用",
"Apply Zoom": "ズームを適用",
+ "Array": "Array",
+ "As:": "As:",
+ "Assigned to:": "割り当て先:",
"Auto": "自動",
"Auto Select Layer": "レイヤーを自動選択",
"Automatically save recovery data every": "回復データを自動的に保存する間隔",
+ "Available Fonts:": "利用可能なフォント:",
+ "Available Palettes:": "利用可能なパレット:",
"Available Themes": "利用可能なテーマ",
+ "Background": "背景",
"Background From Layer": "レイヤーから背景",
"Background color": "背景色",
"Background from Layer": "レイヤーを背景に設定(&B)",
"Background:": "背景:",
"BackgroundFromLayer": "レイヤーから背景",
+ "Behind sprite": "スプライトの後ろ",
"Best fit Index": "最適インデックス",
+ "Best fit for texture": "Best fit for texture",
"Black": "黒",
"Blur Tool": "ぼかしツール",
"Border": "境界(&B)",
+ "Border:": "Border:",
+ "Borders:": "Borders:",
+ "Bottom:": "Bottom:",
"Brush Angle (in degrees)": "ブラシの角度 (度数)",
"Brush Edges": "ブラシのエッジ",
"Brush Preview": "ブラシのプレビュー(&B)",
"Brush Preview:": "ブラシプレビュー:",
"Brush Size (in pixels)": "ブラシのサイズ (ピクセル単位)",
"Brush Type": "ブラシタイプ",
+ "Brush:": "ブラシ:",
"Brush: Custom Brush #1": "ブラシ: カスタムブラシ #1",
"Brush: Custom Brush #2": "ブラシ: カスタムブラシ #2",
"Brush: Custom Brush #3": "ブラシ: カスタムブラシ #3",
@@ -59,6 +94,7 @@
"Brush: Custom Brush #9": "ブラシ: カスタムブラシ #9",
"Brush: Decrement Size": "ブラシ: サイズを縮小",
"Brush: Increment Size": "ブラシ: サイズを拡大",
+ "By:": "による:",
"Cancel": "キャンセル",
"Cancel Current Operation": "現在の操作をキャンセル",
"Cancel drag and drop": "ドラッグ&ドロップをキャンセル",
@@ -72,12 +108,15 @@
"Check this option to enable hardware acceleration": "ハードウェアアクセラレーションを有効にするにはこのオプションを選択してください。",
"Check this option to get\nthis old menus behavior.": "旧メニューの動作を有効にするにはこのオプションを選択してください。",
"Checked Background": "チェック柄の背景",
+ "Chinese": "中国語",
+ "Circle Brush": "円形ブラシ",
"Clear": "クリア(&C)",
"Clear Cel": "セルをクリア",
"Close": "閉じる(&C)",
"Close All": "すべて閉じる",
"Close All Files": "すべてのファイルを閉じる",
"Close File": "ファイルを閉じる",
+ "Cmd": "Cmd",
"Color": "色",
"Color Burn": "カラーバーン",
"Color Curve": "カラーカーブ(&C)",
@@ -87,36 +126,48 @@
"Color Range": "色範囲(&C)",
"Color Spectrum": "色のスペクトル",
"Color Tint/Shade/Tone": "色合い/影/トーン",
+ "Color Tools": "カラーツール",
"Color+Alpha": "色+アルファ",
+ "Color:": "色:",
"Color: Decrement Background Index": "色: 背景色のインデックスを減らす",
"Color: Decrement Foreground Index": "色: 前景色のインデックスを減らす",
"Color: Increment Background Index": "色: 背景色のインデックスを増やす",
"Color: Increment Foreground Index": "色: 前景色のインデックスを増やす",
"Colors:": "色:",
+ "Compression:": "圧縮:",
"Constant Frame Rate": "一定のフレームレート",
"Contiguous": "連続",
"Contour Tool": "輪郭ツール",
+ "Contours": "輪郭",
"Contract": "縮小(&C)",
"Convolution Matrix": "畳み込みマトリックス(&C)",
"Copy": "コピー(&C)",
"Copy Alpha+Color": "アルファ+色をコピー",
"Copy Cel": "セルをコピー",
"Copy Merged": "結合してコピー(&M)",
+ "Crash Report": "クラッシュレポート",
"Create Palette from Current Sprite": "現在のスプライトからパレットを作成",
"Create Palette from Current Sprite (Color Quantization)": "現在のスプライトからパレットを作成 (色の量子化)",
+ "Create entries with alpha component": "アルファ成分を含むエントリを作成する",
+ "Create new palette with": "新しいパレットを作成する",
"Crop": "トリミング(&C)",
"Crop Sprite": "スプライトを切り取る",
+ "Ctrl": "Ctrl",
"Current Document": "現在のドキュメント",
"Current Frame": "現在のフレーム",
"Current Layer": "現在のレイヤー",
+ "Current layer only": "現在のレイヤーのみ",
"Cursor": "カーソル",
"Cursors": "カーソル",
"Curve Tool": "曲線ツール",
"Cut": "切り取り(&T)",
"Darken": "暗くする",
+ "Default": "デフォルト",
"Default Zoom": "デフォルトのズーム",
+ "Delete": "消去",
"Delete Frame": "フレームを削除",
"Delete Layer": "レイヤーを削除",
+ "Delete file, I've already sent it": "ファイルを削除してください。すでに送信しました。",
"Depending on the layer (background/transparent),\nthe pasted selection will be adjusted\nautomatically (opaque/transparent)": "レイヤー (背景/透明) に応じて、\n貼り付けた選択範囲が自動的に\n調整されます (不透明/透明)",
"Deselect": "選択解除(&D)",
"Deselect Mask": "マスクを選択解除",
@@ -125,9 +176,12 @@
"Developer Console": "開発者コンソール",
"Difference": "差分",
"Discard Brush": "ブラシを破棄",
+ "Do it later": "後でやる",
"Documentation": "ドキュメント",
+ "Don't show this again": "次回から表示しない",
"Donate": "寄付(&D)",
"Down": "下(&D)",
+ "Drawing": "描画",
"Drop pixels here": "ここにピクセルをドロップ",
"Duplicate": "複製(&D)",
"Duplicate Cel(s)": "セルを複製(&D)",
@@ -138,18 +192,23 @@
"Duplicate Linked Cels": "リンクされたセルを複製",
"Duplicate Sprite": "スプライトを複製",
"Duplicate View": "ビューを複製(&V)",
+ "Duplicate merged layers only": "Duplicate merged layers only",
"Duplicate...": "複製(&D)...",
+ "Duplicate:": "Duplicate:",
+ "Duration (milliseconds):": "Duration (milliseconds):",
"Each pixel has Red, Green, Blue, and Alpha components\n(32 bits per pixel)": "各ピクセルには赤、緑、青、アルファの成分があります\n(1ピクセルあたり32ビット)",
"Each pixel has a Gray value and Alpha\n(16 bits per pixel)": "各ピクセルにはグレー値とアルファがあります\n(1ピクセルあたり16ビット)",
"Each pixel is a reference to the palette\n(8 bits per pixel)": "各ピクセルはパレットへの参照です\n(1ピクセルあたり8ビット)",
"Edit": "編集(&E)",
"Edit Color": "色を編集",
"Editor": "エディター",
+ "Effects": "効果",
"Ellipse Tool": "楕円ツール",
"Elliptical Marquee Tool": "楕円選択ツール",
"English": "英語",
"Erase": "消去",
"Eraser Tool": "消しゴムツール",
+ "Eraser Tools": "消しゴムツール",
"Exclusion": "除外",
"Exit": "終了(&E)",
"Expand": "拡張(&E)",
@@ -161,6 +220,7 @@
"Export...": "エクスポート(&X)...",
"Extra paint bucket options": "追加の塗りつぶしバケツオプション",
"Extras": "エクストラ(&E)",
+ "Extras:": "特典:",
"Eyedropper": "スポイト",
"Eyedropper Tool": "スポイトツール",
"FRM+": "フレーム+",
@@ -180,18 +240,29 @@
"Flip Selection Horizontal": "選択範囲を水平反転",
"Flip Selection Vertical": "選択範囲を垂直反転",
"Flip Vertical": "上下反転(&V)",
+ "Folder Name:": "フォルダ名:",
+ "Font Size:": "フォントサイズ:",
+ "Font:": "フォント:",
+ "Foreground": "前景",
"Foreground color": "前景色",
"Frame": "フレーム(&F)",
"Frame Properties": "フレームのプロパティ",
"Frame Properties...": "フレームのプロパティ(&P)...",
"Frame Tag Properties": "フレームタグのプロパティ",
+ "Frame Tags": "Frame Tags",
+ "Frame number:": "Frame number:",
"Frame:": "フレーム:",
"Frames:": "フレーム:",
"Freehand trace algorithm": "フリーハンドトレースアルゴリズム",
+ "French": "フランス語",
+ "From:": "From:",
"Full Real-time Brush Preview": "フルリアルタイムブラシプレビュー",
"Fullscreen Preview": "全画面プレビュー(&F)",
+ "GIF Options": "GIFオプション",
"GPU acceleration": "GPU加速",
"General": "一般",
+ "General Options:": "一般オプション:",
+ "German": "ドイツ語",
"Global": "グローバル",
"Go back one folder": "フォルダーを1つ戻る",
"Go forward one folder": "フォルダーを1つ進む",
@@ -209,6 +280,7 @@
"Go to Previous Layer": "前のレイヤーに移動",
"Go to Previous tab": "前のタブに移動",
"Go to modified frame/layer": "変更されたフレーム/レイヤーに移動",
+ "Graph": "グラフ",
"Gray": "グレー",
"Gray+Alpha": "グレー+アルファ",
"Grayscale": "グレースケール(&G)",
@@ -221,29 +293,47 @@
"HSB+Alpha": "HSB+アルファ",
"Hand Tool": "ハンドツール",
"Hard Light": "ハードライト",
+ "Hash": "Hash",
"Height:": "高さ:",
"Help": "ヘルプ(&H)",
"Hide": "非表示",
+ "Hindi": "ヒンディー語",
"Home": "ホーム(&H)",
"Horizontal Symmetry": "水平対称",
"Hue": "色相",
+ "Icon": "アイコン",
+ "Image Hint:": "画像のヒント:",
+ "Image Preset:": "画像プリセット:",
"Import": "インポート",
"Import Sprite Sheet": "スプライトシートをインポート(&I)",
+ "In front of sprite": "スプライトの前で",
+ "Include partial tiles at bottom/right edges": "Include partial tiles at bottom/right edges",
"Indexed": "インデックス付き",
"Indexed (No Dithering)": "インデックスカラー (ディザなし)(&I)",
"Indexed (Ordered Dither)": "インデックスカラー (ディザあり)(&D)",
+ "Indonesian": "インドネシア語",
"Ink": "インク",
+ "Ink:": "インク:",
+ "Inner:": "Inner:",
"Insert Text": "テキスト挿入",
+ "Interlaced": "インターレース",
+ "Interpolation:": "補間:",
"Inverse": "選択範囲を反転(&I)",
"Invert": "反転(&I)",
"Invert Color": "色を反転",
"Invert Mask": "マスクを反転",
"Italian": "イタリア語",
+ "JPEG Options": "JPEGオプション",
+ "JSON Data": "JSON Data",
+ "Japanese": "Japanese",
"Jumble Tool": "混合ツール",
"Jump to": "ジャンプ",
"Keep selection after \"Edit > Clear\" command": "「編集 > クリア」コマンド後に選択を保持",
+ "Key:": "鍵:",
+ "Keyboard Shortcut": "キーボードショートカット",
"Keyboard Shortcuts": "キーボードショートカット",
"Keyboard Shortcuts...": "キーボードショートカット(&K)...",
+ "Korean": "韓国語",
"LYR+": "レイヤー+",
"LYR<": "レイヤー<",
"LYR>": "レイヤー>",
@@ -258,12 +348,16 @@
"Layer Properties": "レイヤーのプロパティ",
"Layer Visibility": "レイヤーの表示",
"Layer from Background": "背景をレイヤーに(&L)",
+ "Layers": "Layers",
+ "Layers:": "Layers:",
"Left": "左(&L)",
+ "Left:": "Left:",
"Lighten": "明るくする",
"Limit of memory to be used\nfor undo information per sprite.\nSpecified in megabytes.": "スプライトごとの元に戻す情報に使用するメモリの制限。\nメガバイト単位で指定。",
"Line Tool": "ラインツール",
"Link Cels": "セルをリンク(&L)",
"Links Cels": "リンクセル",
+ "Load": "負荷",
"Load Default Palette": "デフォルトパレットを読み込む",
"Load Palette": "パレットを読み込む",
"Load from MSK file": "MSKファイルから読み込み",
@@ -271,6 +365,10 @@
"Locate Configuration File": "設定ファイルを見つける",
"Locate Crash Folder": "クラッシュフォルダを見つける",
"Lock Alpha": "アルファをロック",
+ "Lock Ratio": "ロック比率",
+ "Loop through tag frames": "タグフレームをループする",
+ "Lossless WebP": "ロスレスWebP",
+ "Lossy WebP": "非可逆WebP",
"Luminosity": "輝度",
"MB": "MB",
"Magic Wand Tool": "マジックワンドツール",
@@ -282,10 +380,15 @@
"Medium Size": "中サイズ",
"Merge Down": "下のレイヤーと結合(&M)",
"Merge Down Layer": "下のレイヤーに統合",
+ "Merge Frames": "フレームを結合",
+ "Meta:": "Meta:",
+ "Method:": "方法:",
"Mirror Horizontally": "水平反転",
"Mirror Vertically": "垂直反転",
"Mode:": "モード:",
+ "Modifiers:": "修飾子:",
"Modify": "修正(&M)",
+ "Modify Selection": "選択範囲の変更",
"Move": "移動",
"Move Cel": "セルを移動",
"Move Selection Boundaries 1 horizontal tile left": "選択境界を1タイル左へ移動",
@@ -305,6 +408,7 @@
"Move Selection Content 1 vertical tile down": "選択内容を1タイル下へ移動",
"Move Selection Content 1 vertical tile up": "選択内容を1タイル上へ移動",
"Move Tool": "移動ツール",
+ "Move Tools": "移動ツール",
"Multiply": "乗算",
"Name:": "名前:",
"Negative Black and White": "ネガティブ白黒",
@@ -313,10 +417,13 @@
"New Empty Frame": "空の新しいフレーム(&E)",
"New File": "新しいファイル",
"New File...": "新しいファイル...",
+ "New Folder": "新しいフォルダ",
"New Frame": "新しいフレーム(&N)",
"New Frame Tag": "新しいフレームタグ",
+ "New Image Layer": "新しい画像レイヤー",
"New Layer": "新しいレイヤー(&N)",
"New Layer Set": "新しいレイヤーセット",
+ "New Set": "新しいセット",
"New Sprite": "新しいスプライト",
"New Sprite From Selection": "選択範囲から新しいスプライト",
"New Sprite from Selection": "選択から新しいスプライト(&S)",
@@ -326,9 +433,13 @@
"Next Frame": "次のフレーム(&N)",
"None": "なし(&N)",
"Normal": "通常",
+ "Number of colors:": "色数:",
"OK": "OK",
+ "Onion Skin:": "オニオンスキン:",
"Onion Skinning": "オニオンスキン",
+ "Opacity": "不透明度",
"Opacity (paint intensity)": "不透明度(ペイント強度)",
+ "Opacity Step:": "不透明度ステップ:",
"Opacity:": "不透明度:",
"Open File...": "ファイルを開く...",
"Open Folder": "フォルダを開く(&F)",
@@ -337,12 +448,16 @@
"Open Scripts Folder": "スクリプトフォルダを開く",
"Open Sprite": "スプライトを開く",
"Open With Associated Application": "関連するアプリケーションで開く",
+ "Open generated sprite sheet": "Open generated sprite sheet",
"Open in Folder": "フォルダで開く(&F)",
+ "Open the following file to debug your compilation:": "コンパイルをデバッグするには、次のファイルを開きます。",
"Open with OS": "OSで開く(&O)",
"Open...": "開く(&O)...",
"Options": "オプション",
+ "Output File": "Output File",
"Overlay": "オーバーレイ",
"PLAY": "再生",
+ "Padding": "Padding",
"Paint Bucket Tool": "塗りつぶしツール",
"Paint brush": "ペイントブラシ",
"Paint with background color": "背景色で塗る",
@@ -350,19 +465,31 @@
"Palette Editor": "パレットエディター",
"Palette Size": "パレットサイズ",
"Palette entry used as\ntransparent color in each\nlayer (only for indexed images).": "各レイヤーで透明色として使用されるパレットエントリ\n(インデックス化された画像専用)。",
+ "Palette from Sprite": "スプライトのパレット",
"Paste": "貼り付け(&P)",
"Pattern aligned to destination": "目的地に合わせたパターン",
"Pattern aligned to source": "ソースに合わせたパターン",
"Pencil Tool": "鉛筆ツール",
+ "Pencil Tools": "鉛筆ツール",
+ "Per Tag": "Per Tag",
+ "Percentage:": "パーセンテージ:",
+ "Perfect Traces": "完璧な痕跡",
+ "Photo": "写真",
"Pick foreground color": "前景色を選択",
"Pick:": "選択:",
+ "Picture": "写真",
"Pixel Grid": "ピクセルグリッド(&P)",
"Pixel Grid Color:": "ピクセルグリッドの色:",
"Pixel Grid Opacity:": "ピクセルグリッドの不透明度:",
"Pixel grid shows up when you zoom a lot": "大幅にズームするとピクセルグリッドが表示されます",
+ "Pixel-Perfect": "ピクセルパーフェクト",
"Pixel-perfect": "ピクセルパーフェクト",
+ "Pixels:": "ピクセル:",
"Play Animation": "アニメーション再生(&A)",
"Play Animation\n\nShortcut: Enter": "アニメーション再生\n\nショートカット: Enter",
+ "Please attach the following file:": "以下のファイルを添付してください:",
+ "Point Properties": "ポイントプロパティ",
+ "Polish": "研磨",
"Polygon Tool": "多角形ツール",
"Polygonal Lasso Tool": "多角形ラッソツール",
"Portuguese": "ポルトガル語",
@@ -374,6 +501,7 @@
"Previous Frame": "前のフレーム(&P)",
"Properties...": "プロパティ(&P)...",
"QUIT": "終了",
+ "Quality:": "品質:",
"Quick Reference": "クイックリファレンス(&Q)",
"REDO": "やり直し",
"RGB": "RGB",
@@ -390,10 +518,12 @@
"Recover Session...": "セッションを回復...",
"Rectangle Tool": "矩形ツール",
"Rectangular Marquee Tool": "矩形選択ツール",
+ "Red/Blue Tint": "赤/青の色合い",
"Redo": "やり直す(&R)",
"Refresh": "リフレッシュ",
"Refresh Reload Skin": "スキンを更新",
"Release Notes": "リリースノート",
+ "Reload Stock": "ストックをリロード",
"Remap": "リマップ",
"Remove": "削除(&R)",
"Remove Frame": "フレームを削除(&R)",
@@ -403,6 +533,8 @@
"Repeat Last Export": "最後のエクスポートを繰り返す(&L)",
"Replace Color": "色を置換",
"Replace Color...": "色を置き換える(&R)...",
+ "Replace current palette": "現在のパレットを置き換える",
+ "Replace current range": "現在の範囲を置き換える",
"Replace selection": "選択を置換",
"Rescan Scripts": "スクリプトを再スキャン",
"Rescan scripts": "スクリプトを再スキャン",
@@ -417,6 +549,7 @@
"Rewind on Stop": "停止時に巻き戻し",
"Right": "右(&R)",
"Right-click:": "右クリック:",
+ "Right:": "Right:",
"Rotate": "回転(&R)",
"Rotate Canvas": "キャンバスを回転(&R)",
"Rotate Selection": "選択範囲を回転",
@@ -424,6 +557,7 @@
"Rotation Algorithm": "回転アルゴリズム",
"Rotation Pivot": "回転ピボット",
"Run Script": "スクリプトを実行",
+ "Russian": "ロシア",
"Same Ink in All Tools": "すべてのツールで同じインク",
"Same in all Tools": "すべてのツールで同じ",
"Sample:": "サンプル:",
@@ -436,6 +570,7 @@
"Save Mask": "マスクを保存",
"Save Palette": "パレットを保存",
"Save as Default Palette": "デフォルトパレットとして保存",
+ "Save as:": "名前を付けて保存:",
"Save to MSK file": "MSKファイルに保存",
"Screen": "スクリーン",
"Screen Scaling:": "画面スケーリング:",
@@ -452,11 +587,14 @@
"Scroll 1 zoomed vertical tile up": "ズームされた縦タイルを1つ上にスクロール",
"Scroll to center of canvas": "キャンバスの中央にスクロール",
"Select": "選択(&S)",
+ "Select File": "Select File",
+ "Select Font": "フォントを選択",
"Select Tile": "タイルを選択",
"Select Tile (Add)": "タイルを選択(追加)",
"Select Tile (Subtract)": "タイルを選択(削除)",
"Selection": "選択",
"Selection Edges": "選択範囲のエッジ(&S)",
+ "Selection Tools": "選択ツール",
"Selection as Grid": "選択範囲をグリッドとして表示(&S)",
"Set Color Selector: Color Spectrum": "カラ―セレクタ設定:カラースペクトル",
"Set Color Selector: Color Tint/Shade/Tone": "カラ―セレクタ設定:色の濃淡/影/トーン",
@@ -470,10 +608,14 @@
"Set Loop Section": "ループセクションを設定(&L)",
"Set Palette": "パレットを設定",
"Set Palette Entry Size": "パレットエントリサイズを設定",
+ "Shade": "シェード",
"Shades": "影",
"Shading": "シェーディング",
+ "Shape:": "Shape:",
+ "Shapes": "形状",
"Share": "共有",
"Share...": "共有(&S)...",
+ "Sheet Type:": "Sheet Type:",
"Shift": "移動(&S)",
"Shortcut: ": "ショートカット:",
"Show": "表示(&S)",
@@ -491,11 +633,13 @@
"Show the timeline automatically\nwhen a new frame or layer is added.": "新しいフレームやレイヤーが追加されたときに\n自動的にタイムラインを表示する",
"Show timeline automatically": "タイムラインを自動的に表示",
"Simple Ink": "シンプルインク",
+ "Size": "サイズ",
"Size:": "サイズ:",
"Small Size": "小サイズ",
"Snap to Grid": "グリッドにスナップ(&S)",
"Soft Light": "ソフトライト",
"Sort & Gradients": "並べ替え & グラデーション",
+ "Space": "Space",
"Spanish": "スペイン語",
"Specific Color": "特定の色",
"Spray Speed": "スプレーの速度",
@@ -505,6 +649,7 @@
"Sprite Properties": "スプライトのプロパティ",
"Sprite Size": "スプライトのサイズ",
"Sprite Size...": "スプライトのサイズ(&S)...",
+ "Square Brush": "スクエアブラシ",
"Subtract from selection\n(Shift+Alt)": "選択範囲から減算\n(Shift+Alt)",
"Switch Colors": "色を切り替える",
"Switch Pixel Perfect Mode": "ピクセルパーフェクトモードを切り替える",
@@ -514,6 +659,8 @@
"TIME": "時間",
"Tag Properties...": "タグのプロパティ(&P)...",
"Tags": "タグ(&T)",
+ "Text": "文章",
+ "Text:": "文章:",
"The 'Stop' button should rewind the animation\nwhere it was started.": "「停止」ボタンを押すと、アニメーションが開始した場所まで巻き戻ります。",
"Theme": "テーマ",
"Tile Mode": "タイルモード",
@@ -522,9 +669,12 @@
"Tiled in X Axis": "X軸にタイル(&X)",
"Tiled in Y Axis": "Y軸にタイル(&Y)",
"Timeline": "タイムライン(&T)",
+ "To:": "To:",
"Toggle Fullscreen": "全画面表示の切り替え(&T)",
"Toggle Preview": "プレビューを切り替える",
"Toggle Touchbar": "タッチバーを切り替える",
+ "Tolerance:": "Tolerance:",
+ "Top:": "Top:",
"Touchbar": "タッチバー",
"Transform": "変形(&T)",
"Transparent": "透明",
@@ -533,6 +683,7 @@
"Trim": "切り取り(&T)",
"Trim Sprite": "スプライトをトリム",
"Tutorial": "チュートリアル",
+ "Type": "タイプ",
"Type:": "タイプ:",
"UI Elements Scaling:": "UI要素のスケーリング:",
"UNDO": "元に戻す",
@@ -546,14 +697,24 @@
"Up to parent folder\n(Backspace)": "親フォルダに移動\n(Backspace)",
"Use native file dialog": "ネイティブファイルダイアログを使用",
"Use native mouse cursor": "ネイティブマウスカーソルを使用",
+ "User Data": "User Data",
+ "User Data:": "ユーザーデータ:",
"User Interface": "ユーザーインターフェース",
"Vertical Symmetry": "垂直対称",
"View": "表示(&V)",
+ "View Tools": "表示ツール",
"Visible": "表示(&V)",
+ "Warning - Important": "警告 - 重要",
+ "WebP Options": "WebPオプション",
"When it's enabled each time you undo/redo\nthe current frame & layer will be modified\nto focus the undid/redid change.": "これが有効になると、元に戻す/やり直しを行うたびに\n現在のフレームとレイヤーが変更され、元に戻した/やり直した変更にフォーカスします。",
"White": "白",
"Width:": "幅:",
+ "Win": "Win",
"With this option you can recover your documents\nif the program finalizes unexpectedly.": "このオプションを使用すると、プログラムが予期せず終了した場合にドキュメントを復元できます。",
+ "X:": "X:",
+ "Y:": "Y:",
+ "You are going to enter in \"Advanced Mode\".": "\"詳細モード\"に入ります。",
+ "You are using a development version.": "開発バージョンを使用しています。",
"You must restart the program to see your changes to:": "変更を反映させるにはプログラムを再起動する必要があります:",
"Zoom 100%": "ズーム 100%",
"Zoom 1600%": "ズーム 1600%",
@@ -571,5 +732,9 @@
"Zoom in": "ズームイン",
"Zoom out": "ズームアウト",
"Zoom sliding two fingers up or down": "2本の指で上下にスライドしてズーム",
- "Zoom with scroll wheel": "スクロールホイールでズーム"
+ "Zoom with scroll wheel": "スクロールホイールでズーム",
+ "colors or less": "色数以下",
+ "explaining what you was doing when the program crashed.": "プログラムがクラッシュしたときに何をしていたかを説明します。",
+ "https://github.com/Veritaware/Besprited/issues": "https://github.com/Veritaware/Besprited/issues",
+ "to a bug report on:": "バグレポート:"
}
\ No newline at end of file
diff --git a/data/languages/kr.json b/data/languages/kr.json
index 4b56b1a81..c2367f58c 100644
--- a/data/languages/kr.json
+++ b/data/languages/kr.json
@@ -1,650 +1,770 @@
{
- "180": "&180",
- "# of Columns:": "열의 수:",
- "# of Rows:": "행의 수:",
- "*\n Left-button: Erase with the background color in `Background' layer\n\n or transparent color in any other layer.\n*\n Right-button: Replace foreground with background color.\n ": "*\n 왼쪽 버튼: '배경' 레이어에서는 배경색으로 지우기\n\n 다른 레이어에서는 투명색으로 지우기.\n*\n 오른쪽 버튼: 전경색을 배경색으로 대체.\n ",
- "*\n Left-button: Replace/add to current selection.\n*\n Right-button: Remove from current selection.\n ": "*\n 왼쪽 버튼: 현재 선택 영역에 대체/추가.\n*\n 오른쪽 버튼: 현재 선택 영역에서 제거.\n ",
- "*\n Left-button: replace/add to current selection.\n*\n Right-button: remove from current selection.\n ": "*\n 왼쪽 버튼: 현재 선택 영역에 대체/추가.\n*\n 오른쪽 버튼: 현재 선택 영역에서 제거.\n ",
- "+": "+",
- "- Classic skin graphics introduced in v0.8": "- v0.8에 도입된 클래식 스킨 및 그래픽",
- "- Lead developer, graphics maintainer": "- 수석 개발자, 그래픽 및 유지 보수 담당자",
- "-------- Recent Paths --------": "-------- 최근 경로 --------",
- "10 Minutes": "10분",
- "1000%": "1000%",
- "15 Minutes": "15분",
- "16x16": "16x16",
- "2 Minutes": "2분",
- "25%": "25%",
- "2x2": "2x2",
- "30 Minutes": "30분",
- "4x4": "4x4",
- "5 Minutes": "5분",
- "50%": "50%",
- "500%": "500%",
- "600%": "600%",
- "700%": "700%",
- "800%": "800%",
- "8x8": "8x8",
- "90 CCW": "&90도 반시계",
- "90 CW": "&90도 시계",
- "900%": "900%",
- "About": "&정보",
- "Add Background Color to Palette": "배경색을 팔레트에 추가",
- "Add Foreground Color to Palette": "전경색을 팔레트에 추가",
- "Add background color to the palette": "배경색을 팔레트에 추가",
- "Add foreground color to the palette": "전경색을 팔레트에 추가",
- "Add to selection\n(Shift)": "선택 영역에 추가\n(Shift)",
- "Adjust opaque/transparent mode automatically": "불투명/투명 모드를 자동으로 조정",
- "Advanced Mode": "고급 모드",
- "All": "&모두",
- "All Layers": "모든 레이어",
- "All frames": "모든 프레임",
- "Allow non-linear history": "비선형 히스토리 허용",
- "Alpha": "알파",
- "Alpha Compositing": "알파 합성",
- "Alternate Timeline": "대체 타임라인",
- "Alternate Toolbar": "대체 도구 모음",
- "Alternate Touchbar": "대체 터치바",
- "Animated sprite editor pixel art tool": "애니메이션 스프라이트 편집기 및 픽셀 아트 도구",
- "Apply": "&적용",
- "Apply Zoom": "줌 적용",
- "Apply to the active frame/layer (the active cel)": "활성 프레임/레이어(활성 셀)에 적용",
- "Array": "배열",
- "As:": "저장 형식:",
- "Authors:": "제작자:",
- "Auto": "자동",
- "Auto Select Layer": "레이어 자동 선택",
- "Automatically save recovery data every": "자동 복구 데이터를 다음 간격으로 저장:",
- "Available Themes": "사용 가능한 테마",
- "Background From Layer": "레이어에서 배경 생성",
- "Background color": "배경색",
- "Background from Layer": "&레이어에서 배경 생성",
- "Background:": "배경:",
- "BackgroundFromLayer": "레이어에서배경",
- "Best fit Index": "최적의 인덱스",
- "Best fit for texture": "텍스처에 가장 적합",
- "Black": "&검정",
- "Blur Tool": "블러 도구",
- "Border": "&테두리",
- "Border:": "테두리:",
- "Borders:": "경계선:",
- "Bottom:": "아래쪽:",
- "Brush Angle (in degrees)": "브러시 각도 (도)",
- "Brush Edges": "브러시 가장자리",
- "Brush Preview": "&브러시 미리보기",
- "Brush Preview:": "브러시 미리보기:",
- "Brush Size (in pixels)": "브러시 크기 (픽셀)",
- "Brush Type": "브러시 유형",
- "Brush: Custom Brush #1": "브러시: 사용자 정의 브러시 #1",
- "Brush: Custom Brush #2": "브러시: 사용자 정의 브러시 #2",
- "Brush: Custom Brush #3": "브러시: 사용자 정의 브러시 #3",
- "Brush: Custom Brush #4": "브러시: 사용자 정의 브러시 #4",
- "Brush: Custom Brush #5": "브러시: 사용자 정의 브러시 #5",
- "Brush: Custom Brush #6": "브러시: 사용자 정의 브러시 #6",
- "Brush: Custom Brush #7": "브러시: 사용자 정의 브러시 #7",
- "Brush: Custom Brush #8": "브러시: 사용자 정의 브러시 #8",
- "Brush: Custom Brush #9": "브러시: 사용자 정의 브러시 #9",
- "Brush: Decrement Size": "브러시: 크기 감소",
- "Brush: Increment Size": "브러시: 크기 증가",
- "By Columns": "열별로",
- "By Rows": "행별로",
- "Cancel": "취소",
- "Cancel Current Operation": "현재 작업 취소",
- "Cancel drag and drop": "드래그 앤 드롭 취소",
- "Canvas Size": "캔버스 크기",
- "Canvas Size...": "&캔버스 크기...",
- "Cel Properties": "셀 속성",
- "Cel Properties...": "&셀 속성...",
- "Center Sprite": "스프라이트 중앙 정렬",
- "Change Pixel Format": "픽셀 형식 변경",
- "Check this if you want to keep the selection\nafter deleting it.": "삭제 후에도 선택 영역을 유지하려면 선택하세요.",
- "Check this option to enable hardware acceleration": "하드웨어 가속을 활성화하려면 이 옵션을 선택하세요.",
- "Check this option to get\nthis old menus behavior.": "이전 메뉴 동작을 원하면 이 옵션을 선택하세요.",
- "Checked Background": "체크된 배경",
- "Clear": "지우기",
- "Clear Cel": "셀 지우기",
- "Close": "&닫기",
- "Close All": "모두 닫기",
- "Close All Files": "모든 파일 닫기",
- "Close File": "파일 닫기",
- "Color": "색상",
- "Color Burn": "컬러 번",
- "Color Curve": "&색상 곡선",
- "Color Dodge": "컬러 닷지",
- "Color Mode": "색상 &모드",
- "Color Mode:": "색상 모드:",
- "Color Range": "&색상 범위",
- "Color Spectrum": "색상 스펙트럼",
- "Color Tint/Shade/Tone": "색상 틴트/그림자/톤",
- "Color+Alpha": "색상+알파",
- "Color: Decrement Background Index": "색상: 배경 인덱스 감소",
- "Color: Decrement Foreground Index": "색상: 전경 인덱스 감소",
- "Color: Increment Background Index": "색상: 배경 인덱스 증가",
- "Color: Increment Foreground Index": "색상: 전경 인덱스 증가",
- "Colors:": "색상:",
- "Columns to be added/removed in the left side.\nUse a negative number to remove columns.": "왼쪽에 추가/제거할 열 수입니다.\n열을 제거하려면 음수를 사용하세요.",
- "Columns to be added/removed in the right side.\nUse a negative number to remove columns.": "오른쪽에 추가/제거할 열 수입니다.\n열을 제거하려면 음수를 사용하세요.",
- "Constant Frame Rate": "고정 프레임 속도",
- "Contiguous": "인접",
- "Contour Tool": "윤곽선 도구",
- "Contract": "&축소",
- "Contributors": "기여자",
- "Convolution Matrix": "컨볼루션 &매트릭스",
- "Copy": "&복사",
- "Copy Alpha+Color": "알파+색상 복사",
- "Copy Cel": "셀 복사",
- "Copy Merged": "병합하여 복사",
- "Create Palette from Current Sprite": "현재 스프라이트에서 팔레트 생성",
- "Create Palette from Current Sprite (Color Quantization)": "현재 스프라이트에서 팔레트 생성 (색상 양자화)",
- "Crop": "자르기",
- "Crop Sprite": "스프라이트 자르기",
- "Current Document": "현재 문서",
- "Current Frame": "현재 프레임",
- "Current Layer": "현재 레이어",
- "Cursor": "커서",
- "Cursors": "커서",
- "Curve Tool": "곡선 도구",
- "Cut": "잘라내기",
- "Darken": "어둡게",
- "Default Zoom": "기본 줌",
- "Delete Frame": "프레임 삭제",
- "Delete Layer": "레이어 삭제",
- "Depending on the layer (background/transparent),\nthe pasted selection will be adjusted\nautomatically (opaque/transparent)": "레이어에 따라 (배경/투명),\n붙여넣은 선택 영역이 자동으로 조정됩니다 (불투명/투명).",
- "Deselect": "&선택 해제",
- "Deselect Mask": "마스크 선택 해제",
- "Despeckle": "노이즈 제거",
- "Despeckle (median filter)": "&노이즈 제거 (미디언 필터)",
- "Developer Console": "개발자 콘솔",
- "Difference": "차이",
- "Discard Brush": "브러시 버리기",
- "Documentation": "문서",
- "Donate": "&기부",
- "Down": "&아래",
- "Drop pixels here": "여기에 픽셀을 놓으세요",
- "Duplicate": "&복제",
- "Duplicate Cel(s)": "&셀 복제",
- "Duplicate Cels": "셀 복제",
- "Duplicate Frame": "프레임 복제",
- "Duplicate Layer": "레이어 복제",
- "Duplicate Linked Cel(s)": "&연결된 셀 복제",
- "Duplicate Linked Cels": "연결된 셀 복제",
- "Duplicate Sprite": "스프라이트 복제",
- "Duplicate View": "&뷰 복제",
- "Duplicate merged layers only": "병합된 레이어만 복제",
- "Duplicate...": "&복제...",
- "Duplicate:": "복제:",
- "Duration (milliseconds):": "지속 시간 (밀리초):",
- "Each pixel has Red, Green, Blue, and Alpha components\n(32 bits per pixel)": "각 픽셀은 빨강, 초록, 파랑, 알파 구성 요소를 가집니다\n(픽셀당 32비트)",
- "Each pixel has a Gray value and Alpha\n(16 bits per pixel)": "각 픽셀은 회색 값과 알파를 가집니다\n(픽셀당 16비트)",
- "Each pixel is a reference to the palette\n(8 bits per pixel)": "각 픽셀은 팔레트에 대한 참조입니다\n(픽셀당 8비트)",
- "Edit": "&편집",
- "Edit Color": "색상 편집",
- "Editor": "편집기",
- "Ellipse Tool": "타원 도구",
- "Elliptical Marquee Tool": "타원 선택 도구",
- "English": "영어",
- "Erase": "지우기",
- "Eraser Tool": "지우개 도구",
- "Exclusion": "제외",
- "Exit": "&종료",
- "Expand": "&확장",
- "Expand Selection": "선택 영역 확장",
- "Expand menu bar items on mouseover": "마우스 오버 시 메뉴 항목 확장",
- "Experimental": "실험적",
- "Export": "&내보내기",
- "Export Sprite Sheet": "&스프라이트 시트 내보내기",
- "Export...": "&내보내기...",
- "Extra paint bucket options": "추가 페인트 버킷 옵션",
- "Extras": "&추가 기능",
- "Eyedropper": "스포이트",
- "Eyedropper Tool": "스포이트 도구",
- "FRM+": "FRM+",
- "FX": "FX",
- "File": "&파일",
- "File name:": "파일 이름:",
- "File type:": "파일 형식:",
- "Filled Ellipse Tool": "채워진 타원 도구",
- "Filled Rectangle Tool": "채워진 사각형 도구",
- "First Frame": "&첫 프레임",
- "Flash layer when it is selected": "선택 시 레이어 깜빡임",
- "Flatten": "&병합",
- "Flatten Layers": "레이어 병합",
- "Flip Canvas Horizontal": "캔버스 수평 반전",
- "Flip Canvas Vertical": "캔버스 수직 반전",
- "Flip Horizontal": "수평 반전",
- "Flip Selection Horizontal": "선택 영역 수평 반전",
- "Flip Selection Vertical": "선택 영역 수직 반전",
- "Flip Vertical": "수직 반전",
- "Foreground color": "전경색",
- "Frame": "&프레임",
- "Frame Properties": "프레임 속성",
- "Frame Properties...": "&프레임 속성...",
- "Frame Tag Properties": "프레임 태그 속성",
- "Frame Tags": "프레임 태그",
- "Frame number:": "프레임 번호:",
- "Frame:": "프레임:",
- "Frames:": "프레임:",
- "Freehand trace algorithm": "자유곡선 추적 알고리즘",
- "From:": "시작:",
- "Full Real-time Brush Preview": "실시간 브러시 미리보기",
- "Fullscreen Preview": "&전체 화면 미리보기",
- "GPU acceleration": "GPU 가속",
- "General": "일반",
- "Global": "전역",
- "Go back one folder": "한 폴더 뒤로",
- "Go forward one folder": "한 폴더 앞으로",
- "Go to First Frame": "첫 프레임으로 이동",
- "Go to First Frame\n\nShortcut: Home": "첫 프레임으로 이동\n\n단축키: Home",
- "Go to Frame": "&프레임으로 이동",
- "Go to Last Frame": "마지막 프레임으로 이동",
- "Go to Last Frame\n\nShortcut: End": "마지막 프레임으로 이동\n\n단축키: End",
- "Go to Next Frame": "다음 프레임으로 이동",
- "Go to Next Frame with same tag": "같은 태그의 다음 프레임으로 이동",
- "Go to Next Layer": "다음 레이어로 이동",
- "Go to Next Tab": "다음 탭으로 이동",
- "Go to Previous Frame": "이전 프레임으로 이동",
- "Go to Previous Frame with same tag": "같은 태그의 이전 프레임으로 이동",
- "Go to Previous Layer": "이전 레이어로 이동",
- "Go to Previous tab": "이전 탭으로 이동",
- "Go to modified frame/layer": "수정된 프레임/레이어로 이동",
- "Gray": "회색",
- "Gray+Alpha": "회색+알파",
- "Grayscale": "&그레이스케일",
- "Grid": "&격자",
- "Grid Background": "격자 및 배경",
- "Grid Color:": "격자 색상:",
- "Grid Opacity:": "격자 불투명도:",
- "Grid Settings": "격자 설정",
- "HSB": "HSB",
- "HSB+Alpha": "HSB+알파",
- "Hand Tool": "손 도구",
- "Hard Light": "하드 라이트",
- "Hash": "해시",
- "Height:": "높이:",
- "Help": "&도움말",
- "Hide": "숨기기",
- "Home": "&홈",
- "Horizontal Strip": "수평 스트립",
- "Horizontal Symmetry": "수평 대칭",
- "Hue": "색조",
- "Ignore Alpha Component": "알파 구성 요소 무시",
- "Import": "&가져오기",
- "Import Sprite Sheet": "&스프라이트 시트 가져오기",
- "Include partial tiles at bottom/right edges": "아래/오른쪽 가장자리의 부분 타일 포함",
- "Indexed": "&인덱스",
- "Indexed (No Dithering)": "&인덱스 (디더링 없음)",
- "Indexed (Ordered Dither)": "인덱스 (순서 디더링)",
- "Ink": "잉크",
- "Inner:": "내부:",
- "Insert Text": "텍스트 삽입",
- "Inverse": "&반전",
- "Invert": "&반전",
- "Invert Color": "색상 반전",
- "Invert Mask": "마스크 반전",
- "Italian": "이탈리아어",
- "JSON Data": "JSON 데이터",
- "Japanese": "일본어",
- "Jumble Tool": "섞기 도구",
- "Jump to": "&이동",
- "Keep selection after \"Edit > Clear\" command": "\"편집 > 지우기\" 후에도 선택 영역 유지",
- "Keyboard Shortcuts": "키보드 단축키",
- "Keyboard Shortcuts...": "&키보드 단축키...",
- "LYR+": "LYR+",
- "LYR<": "LYR<",
- "LYR>": "LYR>",
- "Language:": "언어:",
- "Large Size": "&큰 크기",
- "Lasso Tool": "올가미 도구",
- "Last Frame": "&마지막 프레임",
- "Launch": "실행",
- "Layer": "&레이어",
- "Layer Edges": "&레이어 가장자리",
- "Layer From Background": "배경에서 레이어 생성",
- "Layer Properties": "레이어 속성",
- "Layer Visibility": "레이어 가시성",
- "Layer from Background": "&배경에서 레이어 생성",
- "Layers": "레이어",
- "Layers:": "레이어:",
- "Left": "&왼쪽",
- "Left:": "왼쪽:",
- "LibreSprite 1.2-dev": "LibreSprite 1.2-dev",
- "Lighten": "밝게",
- "Limit of memory to be used\nfor undo information per sprite.\nSpecified in megabytes.": "스프라이트당 실행 취소 정보에 사용할 메모리 한도입니다.\n메가바이트 단위로 지정합니다.",
- "Line Tool": "선 도구",
- "Link Cels": "&셀 연결",
- "Links Cels": "셀 연결",
- "Load Default Palette": "기본 팔레트 로드",
- "Load Palette": "&팔레트 로드",
- "Load from MSK file": "&MSK 파일에서 로드",
- "LoadMask": "마스크 로드",
- "Locate Configuration File": "설정 파일 찾기",
- "Locate Crash Folder": "충돌 폴더 찾기",
- "Lock Alpha": "알파 잠금",
- "Luminosity": "휘도",
- "MB": "MB",
- "Magic Wand Tool": "마법봉 도구",
- "Mask All": "모두 마스크",
- "Mask By Color": "색상으로 마스크",
- "Mask Content": "내용 마스크",
- "Matches old indexes with new indexes": "이전 인덱스를 새 인덱스와 매칭",
- "Maximized": "최대화됨",
- "Medium Size": "&중간 크기",
- "Merge Down": "&아래로 병합",
- "Merge Down Layer": "아래 레이어와 병합",
- "Meta:": "메타:",
- "Mirror Horizontally": "수평 대칭",
- "Mirror Vertically": "수직 대칭",
- "Mode:": "모드:",
- "Modify": "&수정",
- "Modify Blue Component": "파란색 구성 요소 수정",
- "Modify Green Component": "초록색 구성 요소 수정",
- "Modify Red Component": "빨간색 구성 요소 수정",
- "Move": "&이동",
- "Move Cel": "셀 이동",
- "Move Selection Boundaries 1 horizontal tile left": "선택 경계를 가로 타일 1칸 왼쪽으로 이동",
- "Move Selection Boundaries 1 horizontal tile right": "선택 경계를 가로 타일 1칸 오른쪽으로 이동",
- "Move Selection Boundaries 1 pixel down": "선택 경계를 1픽셀 아래로 이동",
- "Move Selection Boundaries 1 pixel left": "선택 경계를 1픽셀 왼쪽으로 이동",
- "Move Selection Boundaries 1 pixel right": "선택 경계를 1픽셀 오른쪽으로 이동",
- "Move Selection Boundaries 1 pixel up": "선택 경계를 1픽셀 위로 이동",
- "Move Selection Boundaries 1 vertical tile down": "선택 경계를 세로 타일 1칸 아래로 이동",
- "Move Selection Boundaries 1 vertical tile up": "선택 경계를 세로 타일 1칸 위로 이동",
- "Move Selection Content 1 horizontal tile left": "선택 내용물을 가로 타일 1칸 왼쪽으로 이동",
- "Move Selection Content 1 horizontal tile right": "선택 내용물을 가로 타일 1칸 오른쪽으로 이동",
- "Move Selection Content 1 pixel down": "선택 내용물을 1픽셀 아래로 이동",
- "Move Selection Content 1 pixel left": "선택 내용물을 1픽셀 왼쪽으로 이동",
- "Move Selection Content 1 pixel right": "선택 내용물을 1픽셀 오른쪽으로 이동",
- "Move Selection Content 1 pixel up": "선택 내용물을 1픽셀 위로 이동",
- "Move Selection Content 1 vertical tile down": "선택 내용물을 세로 타일 1칸 아래로 이동",
- "Move Selection Content 1 vertical tile up": "선택 내용물을 세로 타일 1칸 위로 이동",
- "Move Tool": "이동 도구",
- "Multiply": "곱하기",
- "Name:": "이름:",
- "Negative Black and White": "네거티브 흑백",
- "New": "&새로 만들기",
- "New Brush": "새 브러시",
- "New Empty Frame": "새 빈 프레임",
- "New File": "새 파일",
- "New File...": "새 파일...",
- "New Frame": "&새 프레임",
- "New Frame Tag": "새 프레임 태그",
- "New Layer": "&새 레이어",
- "New Layer Set": "새 레이어 세트",
- "New Sprite": "새 스프라이트",
- "New Sprite From Selection": "선택 영역에서 새 스프라이트",
- "New Sprite from Selection": "&선택 영역에서 새 스프라이트",
- "New Tag": "새 태그",
- "New folder": "새 폴더",
- "New...": "&새로 만들기...",
- "Next Frame": "&다음 프레임",
- "No": "&아니요",
- "None": "&없음",
- "Normal": "일반",
- "OK": "&확인",
- "Onion Skinning": "어니언 스키닝",
- "Opacity (paint intensity)": "불투명도 (페인트 강도)",
- "Opacity:": "불투명도:",
- "Open File...": "파일 열기...",
- "Open Folder": "폴더 열기",
- "Open In Folder": "폴더에서 열기",
- "Open Recent": "최근 파일 열기",
- "Open Scripts Folder": "스크립트 폴더 열기",
- "Open Sprite": "스프라이트 열기",
- "Open With Associated Application": "연결된 응용 프로그램으로 열기",
- "Open generated sprite sheet": "생성된 스프라이트 시트 열기",
- "Open in Folder": "폴더에서 열기",
- "Open with OS": "&OS로 열기",
- "Open...": "&열기...",
- "Options": "옵션",
- "Output File": "출력 파일",
- "Overlay": "오버레이",
- "PLAY": "재생",
- "Padding": "패딩",
- "Paint Bucket Tool": "페인트 버킷 도구",
- "Paint brush": "페인트 브러시",
- "Paint with background color": "배경색으로 그리기",
- "Painting Cursors": "그리기 커서",
- "Palette Editor": "&팔레트 편집기",
- "Palette Size": "팔레트 크기",
- "Palette entry used as\ntransparent color in each\nlayer (only for indexed images).": "각 레이어에서 투명 색상으로 사용되는\n팔레트 항목 (인덱스 이미지 전용).",
- "Paste": "&붙여넣기",
- "Pattern aligned to destination": "목적지에 맞게 패턴 정렬",
- "Pattern aligned to source": "원본에 맞게 패턴 정렬",
- "Pencil Tool": "연필 도구",
- "Per Tag": "태그별",
- "Pick foreground color": "전경색 선택",
- "Pick:": "선택:",
- "Pixel Grid": "&픽셀 그리드",
- "Pixel Grid Color:": "픽셀 그리드 색상:",
- "Pixel Grid Opacity:": "픽셀 그리드 불투명도:",
- "Pixel grid shows up when you zoom a lot": "줌을 많이 하면 픽셀 그리드가 표시됩니다",
- "Pixel-perfect": "픽셀 완벽",
- "Play Animation": "&애니메이션 재생",
- "Play Animation\n\nShortcut: Enter": "애니메이션 재생\n\n단축키: Enter",
- "Polygon Tool": "다각형 도구",
- "Polygonal Lasso Tool": "다각형 올가미 도구",
- "Portuguese": "포르투갈어",
- "Precise Cursor Color:": "정밀 커서 색상:",
- "Preferences": "환경 설정",
- "Preferences...": "&환경 설정...",
- "Presets": "프리셋",
- "Preview": "&미리보기",
- "Previous Frame": "&이전 프레임",
- "Properties...": "&속성...",
- "QUIT": "종료",
- "Quick Reference": "빠른 참조",
- "REDO": "다시 실행",
- "RGB": "RGB",
- "RGB Color": "&RGB 색상",
- "RGB Color Wheel": "RGB 색상환",
- "RGB+Alpha": "RGB+알파",
- "RGBA": "&RGBA",
- "RYB Color Wheel": "RYB 색상환",
- "Readme": "README",
- "Recent Files": "최근 파일",
- "Recent files:": "최근 파일:",
- "Recent folders:": "최근 폴더:",
- "Recover Lost Sprites...": "손실된 스프라이트 복구...",
- "Recover Session...": "세션 복구...",
- "Rectangle Tool": "사각형 도구",
- "Rectangular Marquee Tool": "사각형 선택 도구",
- "Redo": "&다시 실행",
- "Refresh": "새로 고침",
- "Refresh Reload Skin": "&새로 고침 및 스킨 다시 로드",
- "Release Notes": "릴리스 노트",
- "Remap": "재매핑",
- "Remove": "&제거",
- "Remove Frame": "&프레임 제거",
- "Remove Frame Tag": "프레임 태그 제거",
- "Remove Layer": "&레이어 제거",
- "Remove Tag": "&태그 제거",
- "Repeat Last Export": "마지막 내보내기 반복",
- "Replace Color": "색상 교체",
- "Replace Color...": "&색상 교체...",
- "Replace selection": "선택 영역 교체",
- "Rescan Scripts": "스크립트 다시 스캔",
- "Rescan scripts": "스크립트 다시 스캔",
- "Reselect": "&다시 선택",
- "Reselect Mask": "마스크 다시 선택",
- "Reset": "재설정",
- "Reset Zoom": "줌 재설정",
- "Resize Layer": "레이어 크기 조정",
- "Resize Sprite": "스프라이트 크기 조정",
- "Resize:": "크기 조정:",
- "Reverse Frames": "&프레임 반전",
- "Rewind on Stop": "정지 시 되감기",
- "Right": "&오른쪽",
- "Right-click:": "오른쪽 클릭:",
- "Right:": "오른쪽:",
- "Rotate": "&회전",
- "Rotate Canvas": "&캔버스 회전",
- "Rotate Selection": "선택 영역 회전",
- "Rotate Sprite 0°": "스프라이트 0° 회전",
- "Rotation Algorithm": "회전 알고리즘",
- "Rotation Pivot": "회전 중심",
- "Rows to be added/removed in the bottom side.\nUse a negative number to remove rows.": "아래쪽에 추가/제거할 행 수입니다.\n행을 제거하려면 음수를 사용하세요.",
- "Rows to be added/removed in the top side.\nUse a negative number to remove rows.": "위쪽에 추가/제거할 행 수입니다.\n행을 제거하려면 음수를 사용하세요.",
- "Run Script": "스크립트 실행",
- "Same Ink in All Tools": "모든 도구에서 동일한 잉크",
- "Same in all Tools": "모든 도구에서 동일",
- "Sample:": "샘플:",
- "Saturation": "채도",
- "Save": "&저장",
- "Save As...": "다른 이름으로 저장...",
- "Save File": "파일 저장",
- "Save File As": "파일을 다른 이름으로 저장",
- "Save File Copy As": "파일 사본을 다른 이름으로 저장",
- "Save Mask": "마스크 저장",
- "Save Palette": "&팔레트 저장",
- "Save as Default Palette": "기본 팔레트로 저장",
- "Save to MSK file": "&MSK 파일로 저장",
- "Screen": "스크린",
- "Screen Scaling:": "화면 스케일링:",
- "Scripting Console": "스크립팅 콘솔",
- "Scripts": "&스크립트",
- "Scroll": "스크롤",
- "Scroll 1 zoomed horizontal tile left": "확대된 가로 타일 1칸 왼쪽으로 스크롤",
- "Scroll 1 zoomed horizontal tile right": "확대된 가로 타일 1칸 오른쪽으로 스크롤",
- "Scroll 1 zoomed pixel down": "확대된 픽셀 1칸 아래로 스크롤",
- "Scroll 1 zoomed pixel left": "확대된 픽셀 1칸 왼쪽으로 스크롤",
- "Scroll 1 zoomed pixel right": "확대된 픽셀 1칸 오른쪽으로 스크롤",
- "Scroll 1 zoomed pixel up": "확대된 픽셀 1칸 위로 스크롤",
- "Scroll 1 zoomed vertical tile down": "확대된 세로 타일 1칸 아래로 스크롤",
- "Scroll 1 zoomed vertical tile up": "확대된 세로 타일 1칸 위로 스크롤",
- "Scroll to center of canvas": "캔버스 중심으로 스크롤",
- "Select": "&선택",
- "Select File": "파일 선택",
- "Select Tile": "타일 선택",
- "Select Tile (Add)": "타일 선택 (추가)",
- "Select Tile (Subtract)": "타일 선택 (제거)",
- "Selected frames": "선택된 프레임",
- "Selected layers": "선택된 레이어",
- "Selection": "선택",
- "Selection Edges": "&선택 가장자리",
- "Selection as Grid": "격자로 선택",
- "Set Color Selector: Color Spectrum": "색상 선택기 설정: 색상 스펙트럼",
- "Set Color Selector: Color Tint/Shade/Tone": "색상 선택기 설정: 틴트/그림자/톤",
- "Set Color Selector: RGB Color Wheel": "색상 선택기 설정: RGB 색상환",
- "Set Color Selector: RYB Color Wheel": "색상 선택기 설정: RYB 색상환",
- "Set Ink Type: Alpha Compositing": "잉크 유형 설정: 알파 합성",
- "Set Ink Type: Copy Color+Alpha": "잉크 유형 설정: 색상+알파 복사",
- "Set Ink Type: Lock Alpha": "잉크 유형 설정: 알파 잠금",
- "Set Ink Type: Shading": "잉크 유형 설정: 음영",
- "Set Ink Type: Simple Ink": "잉크 유형 설정: 간단한 잉크",
- "Set Loop Section": "&루프 섹션 설정",
- "Set Palette": "팔레트 설정",
- "Set Palette Entry Size": "팔레트 항목 크기 설정",
- "Shades": "음영",
- "Shading": "음영",
- "Shape:": "모양:",
- "Share": "공유",
- "Share...": "공유...",
- "Sheet Type:": "시트 유형:",
- "Shift": "&이동",
- "Shortcut: ": "단축키: ",
- "Show": "&표시",
- "Show Brush Preview": "브러시 미리보기 표시",
- "Show Extras": "추가 기능 표시",
- "Show Grid": "격자 표시",
- "Show Layer Edges": "레이어 가장자리 표시",
- "Show Onion Skin": "&어니언 스킨 표시",
- "Show Pixel Grid": "픽셀 그리드 표시",
- "Show Selection Edges": "선택 가장자리 표시",
- "Show full file name path": "전체 파일 이름 경로 표시",
- "Show grid": "격자 표시",
- "Show scroll-bars in all sprite editors.": "모든 스프라이트 편집기에서 스크롤 바 표시.",
- "Show scroll-bars in sprite editor": "스프라이트 편집기에서 스크롤 바 표시",
- "Show the timeline automatically\nwhen a new frame or layer is added.": "새 프레임 또는 레이어가 추가되면\n타임라인을 자동으로 표시합니다.",
- "Show timeline automatically": "타임라인 자동 표시",
- "Simple Ink": "간단한 잉크",
- "Size:": "크기:",
- "Small Size": "&작은 크기",
- "Snap to Grid": "&격자에 맞춤",
- "Soft Light": "소프트 라이트",
- "Sort & Gradients": "정렬 및 그라디언트",
- "Spanish": "스페인어",
- "Specific Color": "특정 색상",
- "Spray Speed": "분사 속도",
- "Spray Tool": "분사 도구",
- "Spray Width": "분사 너비",
- "Sprite": "&스프라이트",
- "Sprite Properties": "스프라이트 속성",
- "Sprite Size": "스프라이트 크기",
- "Sprite Size...": "&스프라이트 크기...",
- "Subtract from selection\n(Shift+Alt)": "선택 영역에서 빼기\n(Shift+Alt)",
- "Switch Colors": "색상 전환",
- "Switch Pixel Perfect Mode": "픽셀 완벽 모드 전환",
- "Switch Timeline": "타임라인 전환",
- "Symmetry Mode": "대칭 모드",
- "Symmetry Options": "&대칭 옵션",
- "TIME": "시간",
- "Tag Properties...": "&태그 속성...",
- "Tags": "&태그",
- "The 'Stop' button should rewind the animation\nwhere it was started.": "\"정지\" 버튼은 애니메이션을 시작한 위치로 되감아야 합니다.",
- "Theme": "테마",
- "Tile Mode": "타일 모드",
- "Tiled Mode": "&타일 모드",
- "Tiled in Both Axes": "양축에 타일링",
- "Tiled in X Axis": "X축에 타일링",
- "Tiled in Y Axis": "Y축에 타일링",
- "Timeline": "&타임라인",
- "To:": "끝:",
- "Toggle Fullscreen": "전체 화면 전환",
- "Toggle Preview": "미리보기 전환",
- "Toggle Touchbar": "터치바 전환",
- "Tolerance:": "허용 오차:",
- "Top:": "위쪽:",
- "Touchbar": "터치바",
- "Transform": "&변형",
- "Transparent": "&투명",
- "Transparent Color": "투명 색상",
- "Transparent Color:": "투명 색상:",
- "Trim": "&자르기",
- "Trim Sprite": "스프라이트 자르기",
- "Tutorial": "튜토리얼",
- "Type:": "유형:",
- "UI Elements Scaling:": "UI 요소 스케일링:",
- "UNDO": "실행 취소",
- "Uncheck this option if you would prefer to hide\nfull path on UI (e.g. useful for live streaming)": "UI에서 전체 경로를 숨기려면 이 옵션을 선택 해제하세요\n(예: 라이브 스트리밍에 유용)",
- "Undo": "&실행 취소",
- "Undo History": "실행 취소 &히스토리",
- "Undo Limit:": "실행 취소 제한:",
- "Unlink": "&연결 해제",
- "Unlink Cel": "셀 연결 해제",
- "Up": "&위",
- "Up to parent folder\n(Backspace)": "상위 폴더로 이동\n(백스페이스)",
- "Use native file dialog": "네이티브 파일 대화상자 사용",
- "Use native mouse cursor": "네이티브 마우스 커서 사용",
- "User Data": "사용자 데이터",
- "User Interface": "사용자 인터페이스",
- "Vertical Strip": "수직 스트립",
- "Vertical Symmetry": "수직 대칭",
- "View": "&보기",
- "Visible": "&표시",
- "Visible layers": "표시된 레이어",
- "When it's enabled each time you undo/redo\nthe current frame & layer will be modified\nto focus the undid/redid change.": "이 옵션을 활성화하면 실행 취소/다시 실행 시마다\n현재 프레임 및 레이어가 변경된 위치로 이동합니다.",
- "White": "&흰색",
- "Width:": "너비:",
- "With this option you can recover your documents\nif the program finalizes unexpectedly.": "이 옵션을 사용하면 프로그램이 예기치 않게 종료될 경우\n문서를 복구할 수 있습니다.",
- "X:": "X:",
- "Y:": "Y:",
- "Yes": "&예",
- "You must restart the program to see your changes to:": "다음 변경 사항을 보려면 프로그램을 다시 시작해야 합니다:",
- "Zoom 100%": "줌 100%",
- "Zoom 1600%": "줌 1600%",
- "Zoom 200%": "줌 200%",
- "Zoom 3200%": "줌 3200%",
- "Zoom 400%": "줌 400%",
- "Zoom 50%": "줌 50%",
- "Zoom 800%": "줌 800%",
- "Zoom In": "확대",
- "Zoom Level": "줌 레벨",
- "Zoom Out": "축소",
- "Zoom Tool": "줌 도구",
- "Zoom from center with keys": "키로 중심에서 줌",
- "Zoom from center with scroll wheel": "스크롤 휠로 중심에서 줌",
- "Zoom in": "확대",
- "Zoom out": "축소",
- "Zoom sliding two fingers up or down": "두 손가락으로 위아래로 슬라이딩하여 줌",
- "Zoom with scroll wheel": "스크롤 휠로 줌"
-}
+ "# of Columns:": "열의 수:",
+ "# of Rows:": "행의 수:",
+ "*\n Left-button: Erase with the background color in `Background' layer\n\n or transparent color in any other layer.\n*\n Right-button: Replace foreground with background color.\n ": "*\n 왼쪽 버튼: '배경' 레이어에서는 배경색으로 지우기\n\n 다른 레이어에서는 투명색으로 지우기.\n*\n 오른쪽 버튼: 전경색을 배경색으로 대체.\n ",
+ "*\n Left-button: Replace/add to current selection.\n*\n Right-button: Remove from current selection.\n ": "*\n 왼쪽 버튼: 현재 선택 영역에 대체/추가.\n*\n 오른쪽 버튼: 현재 선택 영역에서 제거.\n ",
+ "*\n Left-button: replace/add to current selection.\n*\n Right-button: remove from current selection.\n ": "*\n 왼쪽 버튼: 현재 선택 영역에 대체/추가.\n*\n 오른쪽 버튼: 현재 선택 영역에서 제거.\n ",
+ "+": "+",
+ "- Classic skin graphics introduced in v0.8": "- v0.8에 도입된 클래식 스킨 및 그래픽",
+ "- Lead developer, graphics maintainer": "- 수석 개발자, 그래픽 및 유지 보수 담당자",
+ "-------- Recent Paths --------": "-------- 최근 경로 --------",
+ "0": "0",
+ "10 Minutes": "10분",
+ "100": "100",
+ "100%": "100%",
+ "1000%": "1000%",
+ "15 Minutes": "15분",
+ "16": "16",
+ "16x16": "16x16",
+ "180": "&180",
+ "2 Minutes": "2분",
+ "200%": "200%",
+ "25%": "25%",
+ "2x2": "2x2",
+ "30 Minutes": "30분",
+ "300%": "300%",
+ "32": "32",
+ "400%": "400%",
+ "4x4": "4x4",
+ "5 Minutes": "5분",
+ "50%": "50%",
+ "500%": "500%",
+ "600%": "600%",
+ "700%": "700%",
+ "800%": "800%",
+ "8x8": "8x8",
+ "90 CCW": "&90도 반시계",
+ "90 CW": "&90도 시계",
+ "900%": "900%",
+ "About": "&정보",
+ "Add Background Color to Palette": "배경색을 팔레트에 추가",
+ "Add Foreground Color to Palette": "전경색을 팔레트에 추가",
+ "Add background color to the palette": "배경색을 팔레트에 추가",
+ "Add foreground color to the palette": "전경색을 팔레트에 추가",
+ "Add to selection\n(Shift)": "선택 영역에 추가\n(Shift)",
+ "Adjust opaque/transparent mode automatically": "불투명/투명 모드를 자동으로 조정",
+ "Advanced Mode": "고급 모드",
+ "All": "&모두",
+ "All Layers": "모든 레이어",
+ "All frames": "모든 프레임",
+ "Allow non-linear history": "비선형 히스토리 허용",
+ "Alpha": "알파",
+ "Alpha Compositing": "알파 합성",
+ "Alt": "Alt",
+ "Alternate Timeline": "대체 타임라인",
+ "Alternate Toolbar": "대체 도구 모음",
+ "Alternate Touchbar": "대체 터치바",
+ "Angle": "각도",
+ "Animated sprite editor pixel art tool": "애니메이션 스프라이트 편집기 및 픽셀 아트 도구",
+ "Animation Direction:": "애니메이션 연출:",
+ "Animation Loop": "애니메이션 루프",
+ "Anti-aliasing filter": "앤티앨리어싱 필터",
+ "Apply": "&적용",
+ "Apply Zoom": "줌 적용",
+ "Apply to the active frame/layer (the active cel)": "활성 프레임/레이어(활성 셀)에 적용",
+ "Array": "배열",
+ "As:": "저장 형식:",
+ "Assigned to:": "담당자:",
+ "Authors:": "제작자:",
+ "Auto": "자동",
+ "Auto Select Layer": "레이어 자동 선택",
+ "Automatically save recovery data every": "자동 복구 데이터를 다음 간격으로 저장:",
+ "Available Fonts:": "사용 가능한 글꼴:",
+ "Available Palettes:": "사용 가능한 팔레트:",
+ "Available Themes": "사용 가능한 테마",
+ "Background": "배경",
+ "Background From Layer": "레이어에서 배경 생성",
+ "Background color": "배경색",
+ "Background from Layer": "&레이어에서 배경 생성",
+ "Background:": "배경:",
+ "BackgroundFromLayer": "레이어에서배경",
+ "Behind sprite": "스프라이트 뒤편",
+ "Best fit Index": "최적의 인덱스",
+ "Best fit for texture": "텍스처에 가장 적합",
+ "Black": "&검정",
+ "Blur Tool": "블러 도구",
+ "Border": "&테두리",
+ "Border:": "테두리:",
+ "Borders:": "경계선:",
+ "Bottom:": "아래쪽:",
+ "Brush Angle (in degrees)": "브러시 각도 (도)",
+ "Brush Edges": "브러시 가장자리",
+ "Brush Preview": "&브러시 미리보기",
+ "Brush Preview:": "브러시 미리보기:",
+ "Brush Size (in pixels)": "브러시 크기 (픽셀)",
+ "Brush Type": "브러시 유형",
+ "Brush:": "브러시:",
+ "Brush: Custom Brush #1": "브러시: 사용자 정의 브러시 #1",
+ "Brush: Custom Brush #2": "브러시: 사용자 정의 브러시 #2",
+ "Brush: Custom Brush #3": "브러시: 사용자 정의 브러시 #3",
+ "Brush: Custom Brush #4": "브러시: 사용자 정의 브러시 #4",
+ "Brush: Custom Brush #5": "브러시: 사용자 정의 브러시 #5",
+ "Brush: Custom Brush #6": "브러시: 사용자 정의 브러시 #6",
+ "Brush: Custom Brush #7": "브러시: 사용자 정의 브러시 #7",
+ "Brush: Custom Brush #8": "브러시: 사용자 정의 브러시 #8",
+ "Brush: Custom Brush #9": "브러시: 사용자 정의 브러시 #9",
+ "Brush: Decrement Size": "브러시: 크기 감소",
+ "Brush: Increment Size": "브러시: 크기 증가",
+ "By Columns": "열별로",
+ "By Rows": "행별로",
+ "By:": "에 의해:",
+ "Cancel": "취소",
+ "Cancel Current Operation": "현재 작업 취소",
+ "Cancel drag and drop": "드래그 앤 드롭 취소",
+ "Canvas Size": "캔버스 크기",
+ "Canvas Size...": "&캔버스 크기...",
+ "Cel Properties": "셀 속성",
+ "Cel Properties...": "&셀 속성...",
+ "Center Sprite": "스프라이트 중앙 정렬",
+ "Change Pixel Format": "픽셀 형식 변경",
+ "Check this if you want to keep the selection\nafter deleting it.": "삭제 후에도 선택 영역을 유지하려면 선택하세요.",
+ "Check this option to enable hardware acceleration": "하드웨어 가속을 활성화하려면 이 옵션을 선택하세요.",
+ "Check this option to get\nthis old menus behavior.": "이전 메뉴 동작을 원하면 이 옵션을 선택하세요.",
+ "Checked Background": "체크된 배경",
+ "Chinese": "중국인",
+ "Circle Brush": "원형 브러시",
+ "Clear": "지우기",
+ "Clear Cel": "셀 지우기",
+ "Close": "&닫기",
+ "Close All": "모두 닫기",
+ "Close All Files": "모든 파일 닫기",
+ "Close File": "파일 닫기",
+ "Cmd": "Cmd",
+ "Color": "색상",
+ "Color Burn": "컬러 번",
+ "Color Curve": "&색상 곡선",
+ "Color Dodge": "컬러 닷지",
+ "Color Mode": "색상 &모드",
+ "Color Mode:": "색상 모드:",
+ "Color Range": "&색상 범위",
+ "Color Spectrum": "색상 스펙트럼",
+ "Color Tint/Shade/Tone": "색상 틴트/그림자/톤",
+ "Color Tools": "색상 도구",
+ "Color+Alpha": "색상+알파",
+ "Color:": "색상:",
+ "Color: Decrement Background Index": "색상: 배경 인덱스 감소",
+ "Color: Decrement Foreground Index": "색상: 전경 인덱스 감소",
+ "Color: Increment Background Index": "색상: 배경 인덱스 증가",
+ "Color: Increment Foreground Index": "색상: 전경 인덱스 증가",
+ "Colors:": "색상:",
+ "Columns to be added/removed in the left side.\nUse a negative number to remove columns.": "왼쪽에 추가/제거할 열 수입니다.\n열을 제거하려면 음수를 사용하세요.",
+ "Columns to be added/removed in the right side.\nUse a negative number to remove columns.": "오른쪽에 추가/제거할 열 수입니다.\n열을 제거하려면 음수를 사용하세요.",
+ "Compression:": "압축:",
+ "Constant Frame Rate": "고정 프레임 속도",
+ "Contiguous": "인접",
+ "Contour Tool": "윤곽선 도구",
+ "Contours": "윤곽",
+ "Contract": "&축소",
+ "Contributors": "기여자",
+ "Convolution Matrix": "컨볼루션 &매트릭스",
+ "Copy": "&복사",
+ "Copy Alpha+Color": "알파+색상 복사",
+ "Copy Cel": "셀 복사",
+ "Copy Merged": "병합하여 복사",
+ "Crash Report": "충돌 보고서",
+ "Create Palette from Current Sprite": "현재 스프라이트에서 팔레트 생성",
+ "Create Palette from Current Sprite (Color Quantization)": "현재 스프라이트에서 팔레트 생성 (색상 양자화)",
+ "Create entries with alpha component": "알파 구성 요소를 사용하여 항목을 생성합니다.",
+ "Create new palette with": "다음으로 새로운 팔레트를 만드세요",
+ "Crop": "자르기",
+ "Crop Sprite": "스프라이트 자르기",
+ "Ctrl": "Ctrl",
+ "Current Document": "현재 문서",
+ "Current Frame": "현재 프레임",
+ "Current Layer": "현재 레이어",
+ "Current layer only": "현재 레이어만",
+ "Cursor": "커서",
+ "Cursors": "커서",
+ "Curve Tool": "곡선 도구",
+ "Cut": "잘라내기",
+ "Darken": "어둡게",
+ "Default": "기본",
+ "Default Zoom": "기본 줌",
+ "Delete": "삭제",
+ "Delete Frame": "프레임 삭제",
+ "Delete Layer": "레이어 삭제",
+ "Delete file, I've already sent it": "파일을 삭제하세요. 이미 보냈습니다.",
+ "Depending on the layer (background/transparent),\nthe pasted selection will be adjusted\nautomatically (opaque/transparent)": "레이어에 따라 (배경/투명),\n붙여넣은 선택 영역이 자동으로 조정됩니다 (불투명/투명).",
+ "Deselect": "&선택 해제",
+ "Deselect Mask": "마스크 선택 해제",
+ "Despeckle": "노이즈 제거",
+ "Despeckle (median filter)": "&노이즈 제거 (미디언 필터)",
+ "Developer Console": "개발자 콘솔",
+ "Difference": "차이",
+ "Discard Brush": "브러시 버리기",
+ "Do it later": "나중에 하세요",
+ "Documentation": "문서",
+ "Don't show this again": "이 메시지를 다시 표시하지 마세요",
+ "Donate": "&기부",
+ "Down": "&아래",
+ "Drawing": "그림",
+ "Drop pixels here": "여기에 픽셀을 놓으세요",
+ "Duplicate": "&복제",
+ "Duplicate Cel(s)": "&셀 복제",
+ "Duplicate Cels": "셀 복제",
+ "Duplicate Frame": "프레임 복제",
+ "Duplicate Layer": "레이어 복제",
+ "Duplicate Linked Cel(s)": "&연결된 셀 복제",
+ "Duplicate Linked Cels": "연결된 셀 복제",
+ "Duplicate Sprite": "스프라이트 복제",
+ "Duplicate View": "&뷰 복제",
+ "Duplicate merged layers only": "병합된 레이어만 복제",
+ "Duplicate...": "&복제...",
+ "Duplicate:": "복제:",
+ "Duration (milliseconds):": "지속 시간 (밀리초):",
+ "Each pixel has Red, Green, Blue, and Alpha components\n(32 bits per pixel)": "각 픽셀은 빨강, 초록, 파랑, 알파 구성 요소를 가집니다\n(픽셀당 32비트)",
+ "Each pixel has a Gray value and Alpha\n(16 bits per pixel)": "각 픽셀은 회색 값과 알파를 가집니다\n(픽셀당 16비트)",
+ "Each pixel is a reference to the palette\n(8 bits per pixel)": "각 픽셀은 팔레트에 대한 참조입니다\n(픽셀당 8비트)",
+ "Edit": "&편집",
+ "Edit Color": "색상 편집",
+ "Editor": "편집기",
+ "Effects": "효과",
+ "Ellipse Tool": "타원 도구",
+ "Elliptical Marquee Tool": "타원 선택 도구",
+ "English": "영어",
+ "Erase": "지우기",
+ "Eraser Tool": "지우개 도구",
+ "Eraser Tools": "지우개 도구",
+ "Exclusion": "제외",
+ "Exit": "&종료",
+ "Expand": "&확장",
+ "Expand Selection": "선택 영역 확장",
+ "Expand menu bar items on mouseover": "마우스 오버 시 메뉴 항목 확장",
+ "Experimental": "실험적",
+ "Export": "&내보내기",
+ "Export Sprite Sheet": "&스프라이트 시트 내보내기",
+ "Export...": "&내보내기...",
+ "Extra paint bucket options": "추가 페인트 버킷 옵션",
+ "Extras": "&추가 기능",
+ "Extras:": "추가 기능:",
+ "Eyedropper": "스포이트",
+ "Eyedropper Tool": "스포이트 도구",
+ "FRM+": "FRM+",
+ "FX": "FX",
+ "File": "&파일",
+ "File name:": "파일 이름:",
+ "File type:": "파일 형식:",
+ "Filled Ellipse Tool": "채워진 타원 도구",
+ "Filled Rectangle Tool": "채워진 사각형 도구",
+ "First Frame": "&첫 프레임",
+ "Flash layer when it is selected": "선택 시 레이어 깜빡임",
+ "Flatten": "&병합",
+ "Flatten Layers": "레이어 병합",
+ "Flip Canvas Horizontal": "캔버스 수평 반전",
+ "Flip Canvas Vertical": "캔버스 수직 반전",
+ "Flip Horizontal": "수평 반전",
+ "Flip Selection Horizontal": "선택 영역 수평 반전",
+ "Flip Selection Vertical": "선택 영역 수직 반전",
+ "Flip Vertical": "수직 반전",
+ "Folder Name:": "폴더 이름:",
+ "Font Size:": "글꼴 크기:",
+ "Font:": "세례반:",
+ "Foreground": "전경",
+ "Foreground color": "전경색",
+ "Frame": "&프레임",
+ "Frame Properties": "프레임 속성",
+ "Frame Properties...": "&프레임 속성...",
+ "Frame Tag Properties": "프레임 태그 속성",
+ "Frame Tags": "프레임 태그",
+ "Frame number:": "프레임 번호:",
+ "Frame:": "프레임:",
+ "Frames:": "프레임:",
+ "Freehand trace algorithm": "자유곡선 추적 알고리즘",
+ "French": "프랑스 국민",
+ "From:": "시작:",
+ "Full Real-time Brush Preview": "실시간 브러시 미리보기",
+ "Fullscreen Preview": "&전체 화면 미리보기",
+ "GIF Options": "GIF 옵션",
+ "GPU acceleration": "GPU 가속",
+ "General": "일반",
+ "General Options:": "일반 옵션:",
+ "German": "독일 사람",
+ "Global": "전역",
+ "Go back one folder": "한 폴더 뒤로",
+ "Go forward one folder": "한 폴더 앞으로",
+ "Go to First Frame": "첫 프레임으로 이동",
+ "Go to First Frame\n\nShortcut: Home": "첫 프레임으로 이동\n\n단축키: Home",
+ "Go to Frame": "&프레임으로 이동",
+ "Go to Last Frame": "마지막 프레임으로 이동",
+ "Go to Last Frame\n\nShortcut: End": "마지막 프레임으로 이동\n\n단축키: End",
+ "Go to Next Frame": "다음 프레임으로 이동",
+ "Go to Next Frame with same tag": "같은 태그의 다음 프레임으로 이동",
+ "Go to Next Layer": "다음 레이어로 이동",
+ "Go to Next Tab": "다음 탭으로 이동",
+ "Go to Previous Frame": "이전 프레임으로 이동",
+ "Go to Previous Frame with same tag": "같은 태그의 이전 프레임으로 이동",
+ "Go to Previous Layer": "이전 레이어로 이동",
+ "Go to Previous tab": "이전 탭으로 이동",
+ "Go to modified frame/layer": "수정된 프레임/레이어로 이동",
+ "Graph": "그래프",
+ "Gray": "회색",
+ "Gray+Alpha": "회색+알파",
+ "Grayscale": "&그레이스케일",
+ "Grid": "&격자",
+ "Grid Background": "격자 및 배경",
+ "Grid Color:": "격자 색상:",
+ "Grid Opacity:": "격자 불투명도:",
+ "Grid Settings": "격자 설정",
+ "HSB": "HSB",
+ "HSB+Alpha": "HSB+알파",
+ "Hand Tool": "손 도구",
+ "Hard Light": "하드 라이트",
+ "Hash": "해시",
+ "Height:": "높이:",
+ "Help": "&도움말",
+ "Hide": "숨기기",
+ "Hindi": "힌디 어",
+ "Home": "&홈",
+ "Horizontal Strip": "수평 스트립",
+ "Horizontal Symmetry": "수평 대칭",
+ "Hue": "색조",
+ "Icon": "상",
+ "Ignore Alpha Component": "알파 구성 요소 무시",
+ "Image Hint:": "이미지 힌트:",
+ "Image Preset:": "이미지 사전 설정:",
+ "Import": "&가져오기",
+ "Import Sprite Sheet": "&스프라이트 시트 가져오기",
+ "In front of sprite": "스프라이트 앞",
+ "Include partial tiles at bottom/right edges": "아래/오른쪽 가장자리의 부분 타일 포함",
+ "Indexed": "&인덱스",
+ "Indexed (No Dithering)": "&인덱스 (디더링 없음)",
+ "Indexed (Ordered Dither)": "인덱스 (순서 디더링)",
+ "Indonesian": "인도네시아 인",
+ "Ink": "잉크",
+ "Ink:": "잉크:",
+ "Inner:": "내부:",
+ "Insert Text": "텍스트 삽입",
+ "Interlaced": "얽힌",
+ "Interpolation:": "보간법:",
+ "Inverse": "&반전",
+ "Invert": "&반전",
+ "Invert Color": "색상 반전",
+ "Invert Mask": "마스크 반전",
+ "Italian": "이탈리아어",
+ "JPEG Options": "JPEG 옵션",
+ "JSON Data": "JSON 데이터",
+ "Japanese": "일본어",
+ "Jumble Tool": "섞기 도구",
+ "Jump to": "&이동",
+ "Keep selection after \"Edit > Clear\" command": "\"편집 > 지우기\" 후에도 선택 영역 유지",
+ "Key:": "열쇠:",
+ "Keyboard Shortcut": "키보드 단축키",
+ "Keyboard Shortcuts": "키보드 단축키",
+ "Keyboard Shortcuts...": "&키보드 단축키...",
+ "Korean": "한국인",
+ "LYR+": "LYR+",
+ "LYR<": "LYR<",
+ "LYR>": "LYR>",
+ "Language:": "언어:",
+ "Large Size": "&큰 크기",
+ "Lasso Tool": "올가미 도구",
+ "Last Frame": "&마지막 프레임",
+ "Launch": "실행",
+ "Layer": "&레이어",
+ "Layer Edges": "&레이어 가장자리",
+ "Layer From Background": "배경에서 레이어 생성",
+ "Layer Properties": "레이어 속성",
+ "Layer Visibility": "레이어 가시성",
+ "Layer from Background": "&배경에서 레이어 생성",
+ "Layers": "레이어",
+ "Layers:": "레이어:",
+ "Left": "&왼쪽",
+ "Left:": "왼쪽:",
+ "LibreSprite 1.2-dev": "LibreSprite 1.2-dev",
+ "Lighten": "밝게",
+ "Limit of memory to be used\nfor undo information per sprite.\nSpecified in megabytes.": "스프라이트당 실행 취소 정보에 사용할 메모리 한도입니다.\n메가바이트 단위로 지정합니다.",
+ "Line Tool": "선 도구",
+ "Link Cels": "&셀 연결",
+ "Links Cels": "셀 연결",
+ "Load": "짐",
+ "Load Default Palette": "기본 팔레트 로드",
+ "Load Palette": "&팔레트 로드",
+ "Load from MSK file": "&MSK 파일에서 로드",
+ "LoadMask": "마스크 로드",
+ "Locate Configuration File": "설정 파일 찾기",
+ "Locate Crash Folder": "충돌 폴더 찾기",
+ "Lock Alpha": "알파 잠금",
+ "Lock Ratio": "잠금 비율",
+ "Loop through tag frames": "태그 프레임을 순환합니다.",
+ "Lossless WebP": "무손실 WebP",
+ "Lossy WebP": "손실 압축 웹P",
+ "Luminosity": "휘도",
+ "MB": "MB",
+ "Magic Wand Tool": "마법봉 도구",
+ "Mask All": "모두 마스크",
+ "Mask By Color": "색상으로 마스크",
+ "Mask Content": "내용 마스크",
+ "Matches old indexes with new indexes": "이전 인덱스를 새 인덱스와 매칭",
+ "Maximized": "최대화됨",
+ "Medium Size": "&중간 크기",
+ "Merge Down": "&아래로 병합",
+ "Merge Down Layer": "아래 레이어와 병합",
+ "Merge Frames": "프레임 병합",
+ "Meta:": "메타:",
+ "Method:": "방법:",
+ "Mirror Horizontally": "수평 대칭",
+ "Mirror Vertically": "수직 대칭",
+ "Mode:": "모드:",
+ "Modifiers:": "수정자:",
+ "Modify": "&수정",
+ "Modify Blue Component": "파란색 구성 요소 수정",
+ "Modify Green Component": "초록색 구성 요소 수정",
+ "Modify Red Component": "빨간색 구성 요소 수정",
+ "Modify Selection": "선택 항목 수정",
+ "Move": "&이동",
+ "Move Cel": "셀 이동",
+ "Move Selection Boundaries 1 horizontal tile left": "선택 경계를 가로 타일 1칸 왼쪽으로 이동",
+ "Move Selection Boundaries 1 horizontal tile right": "선택 경계를 가로 타일 1칸 오른쪽으로 이동",
+ "Move Selection Boundaries 1 pixel down": "선택 경계를 1픽셀 아래로 이동",
+ "Move Selection Boundaries 1 pixel left": "선택 경계를 1픽셀 왼쪽으로 이동",
+ "Move Selection Boundaries 1 pixel right": "선택 경계를 1픽셀 오른쪽으로 이동",
+ "Move Selection Boundaries 1 pixel up": "선택 경계를 1픽셀 위로 이동",
+ "Move Selection Boundaries 1 vertical tile down": "선택 경계를 세로 타일 1칸 아래로 이동",
+ "Move Selection Boundaries 1 vertical tile up": "선택 경계를 세로 타일 1칸 위로 이동",
+ "Move Selection Content 1 horizontal tile left": "선택 내용물을 가로 타일 1칸 왼쪽으로 이동",
+ "Move Selection Content 1 horizontal tile right": "선택 내용물을 가로 타일 1칸 오른쪽으로 이동",
+ "Move Selection Content 1 pixel down": "선택 내용물을 1픽셀 아래로 이동",
+ "Move Selection Content 1 pixel left": "선택 내용물을 1픽셀 왼쪽으로 이동",
+ "Move Selection Content 1 pixel right": "선택 내용물을 1픽셀 오른쪽으로 이동",
+ "Move Selection Content 1 pixel up": "선택 내용물을 1픽셀 위로 이동",
+ "Move Selection Content 1 vertical tile down": "선택 내용물을 세로 타일 1칸 아래로 이동",
+ "Move Selection Content 1 vertical tile up": "선택 내용물을 세로 타일 1칸 위로 이동",
+ "Move Tool": "이동 도구",
+ "Move Tools": "이동 도구",
+ "Multiply": "곱하기",
+ "Name:": "이름:",
+ "Negative Black and White": "네거티브 흑백",
+ "New": "&새로 만들기",
+ "New Brush": "새 브러시",
+ "New Empty Frame": "새 빈 프레임",
+ "New File": "새 파일",
+ "New File...": "새 파일...",
+ "New Folder": "새 폴더",
+ "New Frame": "&새 프레임",
+ "New Frame Tag": "새 프레임 태그",
+ "New Image Layer": "새 이미지 레이어",
+ "New Layer": "&새 레이어",
+ "New Layer Set": "새 레이어 세트",
+ "New Set": "새로운 세트",
+ "New Sprite": "새 스프라이트",
+ "New Sprite From Selection": "선택 영역에서 새 스프라이트",
+ "New Sprite from Selection": "&선택 영역에서 새 스프라이트",
+ "New Tag": "새 태그",
+ "New folder": "새 폴더",
+ "New...": "&새로 만들기...",
+ "Next Frame": "&다음 프레임",
+ "No": "&아니요",
+ "None": "&없음",
+ "Normal": "일반",
+ "Number of colors:": "색상 수:",
+ "OK": "&확인",
+ "Onion Skin:": "양파 껍질:",
+ "Onion Skinning": "어니언 스키닝",
+ "Opacity": "불투명",
+ "Opacity (paint intensity)": "불투명도 (페인트 강도)",
+ "Opacity Step:": "불투명도 단계:",
+ "Opacity:": "불투명도:",
+ "Open File...": "파일 열기...",
+ "Open Folder": "폴더 열기",
+ "Open In Folder": "폴더에서 열기",
+ "Open Recent": "최근 파일 열기",
+ "Open Scripts Folder": "스크립트 폴더 열기",
+ "Open Sprite": "스프라이트 열기",
+ "Open With Associated Application": "연결된 응용 프로그램으로 열기",
+ "Open generated sprite sheet": "생성된 스프라이트 시트 열기",
+ "Open in Folder": "폴더에서 열기",
+ "Open the following file to debug your compilation:": "컴파일 오류를 디버깅하려면 다음 파일을 여세요.",
+ "Open with OS": "&OS로 열기",
+ "Open...": "&열기...",
+ "Options": "옵션",
+ "Output File": "출력 파일",
+ "Overlay": "오버레이",
+ "PLAY": "재생",
+ "Padding": "패딩",
+ "Paint Bucket Tool": "페인트 버킷 도구",
+ "Paint brush": "페인트 브러시",
+ "Paint with background color": "배경색으로 그리기",
+ "Painting Cursors": "그리기 커서",
+ "Palette Editor": "&팔레트 편집기",
+ "Palette Size": "팔레트 크기",
+ "Palette entry used as\ntransparent color in each\nlayer (only for indexed images).": "각 레이어에서 투명 색상으로 사용되는\n팔레트 항목 (인덱스 이미지 전용).",
+ "Palette from Sprite": "스프라이트 팔레트",
+ "Paste": "&붙여넣기",
+ "Pattern aligned to destination": "목적지에 맞게 패턴 정렬",
+ "Pattern aligned to source": "원본에 맞게 패턴 정렬",
+ "Pencil Tool": "연필 도구",
+ "Pencil Tools": "연필 도구",
+ "Per Tag": "태그별",
+ "Percentage:": "백분율:",
+ "Perfect Traces": "완벽한 흔적",
+ "Photo": "사진",
+ "Pick foreground color": "전경색 선택",
+ "Pick:": "선택:",
+ "Picture": "그림",
+ "Pixel Grid": "&픽셀 그리드",
+ "Pixel Grid Color:": "픽셀 그리드 색상:",
+ "Pixel Grid Opacity:": "픽셀 그리드 불투명도:",
+ "Pixel grid shows up when you zoom a lot": "줌을 많이 하면 픽셀 그리드가 표시됩니다",
+ "Pixel-Perfect": "픽셀 단위로 완벽함",
+ "Pixel-perfect": "픽셀 완벽",
+ "Pixels:": "픽셀:",
+ "Play Animation": "&애니메이션 재생",
+ "Play Animation\n\nShortcut: Enter": "애니메이션 재생\n\n단축키: Enter",
+ "Please attach the following file:": "다음 파일을 첨부해 주세요:",
+ "Point Properties": "점 속성",
+ "Polish": "광택",
+ "Polygon Tool": "다각형 도구",
+ "Polygonal Lasso Tool": "다각형 올가미 도구",
+ "Portuguese": "포르투갈어",
+ "Precise Cursor Color:": "정밀 커서 색상:",
+ "Preferences": "환경 설정",
+ "Preferences...": "&환경 설정...",
+ "Presets": "프리셋",
+ "Preview": "&미리보기",
+ "Previous Frame": "&이전 프레임",
+ "Properties...": "&속성...",
+ "QUIT": "종료",
+ "Quality:": "품질:",
+ "Quick Reference": "빠른 참조",
+ "REDO": "다시 실행",
+ "RGB": "RGB",
+ "RGB Color": "&RGB 색상",
+ "RGB Color Wheel": "RGB 색상환",
+ "RGB+Alpha": "RGB+알파",
+ "RGBA": "&RGBA",
+ "RYB Color Wheel": "RYB 색상환",
+ "Readme": "README",
+ "Recent Files": "최근 파일",
+ "Recent files:": "최근 파일:",
+ "Recent folders:": "최근 폴더:",
+ "Recover Lost Sprites...": "손실된 스프라이트 복구...",
+ "Recover Session...": "세션 복구...",
+ "Rectangle Tool": "사각형 도구",
+ "Rectangular Marquee Tool": "사각형 선택 도구",
+ "Red/Blue Tint": "붉은색/파란색 색조",
+ "Redo": "&다시 실행",
+ "Refresh": "새로 고침",
+ "Refresh Reload Skin": "&새로 고침 및 스킨 다시 로드",
+ "Release Notes": "릴리스 노트",
+ "Reload Stock": "재고 보충",
+ "Remap": "재매핑",
+ "Remove": "&제거",
+ "Remove Frame": "&프레임 제거",
+ "Remove Frame Tag": "프레임 태그 제거",
+ "Remove Layer": "&레이어 제거",
+ "Remove Tag": "&태그 제거",
+ "Repeat Last Export": "마지막 내보내기 반복",
+ "Replace Color": "색상 교체",
+ "Replace Color...": "&색상 교체...",
+ "Replace current palette": "현재 팔레트를 교체합니다",
+ "Replace current range": "현재 범위를 교체합니다.",
+ "Replace selection": "선택 영역 교체",
+ "Rescan Scripts": "스크립트 다시 스캔",
+ "Rescan scripts": "스크립트 다시 스캔",
+ "Reselect": "&다시 선택",
+ "Reselect Mask": "마스크 다시 선택",
+ "Reset": "재설정",
+ "Reset Zoom": "줌 재설정",
+ "Resize Layer": "레이어 크기 조정",
+ "Resize Sprite": "스프라이트 크기 조정",
+ "Resize:": "크기 조정:",
+ "Reverse Frames": "&프레임 반전",
+ "Rewind on Stop": "정지 시 되감기",
+ "Right": "&오른쪽",
+ "Right-click:": "오른쪽 클릭:",
+ "Right:": "오른쪽:",
+ "Rotate": "&회전",
+ "Rotate Canvas": "&캔버스 회전",
+ "Rotate Selection": "선택 영역 회전",
+ "Rotate Sprite 0°": "스프라이트 0° 회전",
+ "Rotation Algorithm": "회전 알고리즘",
+ "Rotation Pivot": "회전 중심",
+ "Rows to be added/removed in the bottom side.\nUse a negative number to remove rows.": "아래쪽에 추가/제거할 행 수입니다.\n행을 제거하려면 음수를 사용하세요.",
+ "Rows to be added/removed in the top side.\nUse a negative number to remove rows.": "위쪽에 추가/제거할 행 수입니다.\n행을 제거하려면 음수를 사용하세요.",
+ "Run Script": "스크립트 실행",
+ "Russian": "러시아인",
+ "Same Ink in All Tools": "모든 도구에서 동일한 잉크",
+ "Same in all Tools": "모든 도구에서 동일",
+ "Sample:": "샘플:",
+ "Saturation": "채도",
+ "Save": "&저장",
+ "Save As...": "다른 이름으로 저장...",
+ "Save File": "파일 저장",
+ "Save File As": "파일을 다른 이름으로 저장",
+ "Save File Copy As": "파일 사본을 다른 이름으로 저장",
+ "Save Mask": "마스크 저장",
+ "Save Palette": "&팔레트 저장",
+ "Save as Default Palette": "기본 팔레트로 저장",
+ "Save as:": "다른 이름으로 저장:",
+ "Save to MSK file": "&MSK 파일로 저장",
+ "Screen": "스크린",
+ "Screen Scaling:": "화면 스케일링:",
+ "Scripting Console": "스크립팅 콘솔",
+ "Scripts": "&스크립트",
+ "Scroll": "스크롤",
+ "Scroll 1 zoomed horizontal tile left": "확대된 가로 타일 1칸 왼쪽으로 스크롤",
+ "Scroll 1 zoomed horizontal tile right": "확대된 가로 타일 1칸 오른쪽으로 스크롤",
+ "Scroll 1 zoomed pixel down": "확대된 픽셀 1칸 아래로 스크롤",
+ "Scroll 1 zoomed pixel left": "확대된 픽셀 1칸 왼쪽으로 스크롤",
+ "Scroll 1 zoomed pixel right": "확대된 픽셀 1칸 오른쪽으로 스크롤",
+ "Scroll 1 zoomed pixel up": "확대된 픽셀 1칸 위로 스크롤",
+ "Scroll 1 zoomed vertical tile down": "확대된 세로 타일 1칸 아래로 스크롤",
+ "Scroll 1 zoomed vertical tile up": "확대된 세로 타일 1칸 위로 스크롤",
+ "Scroll to center of canvas": "캔버스 중심으로 스크롤",
+ "Select": "&선택",
+ "Select File": "파일 선택",
+ "Select Font": "글꼴 선택",
+ "Select Tile": "타일 선택",
+ "Select Tile (Add)": "타일 선택 (추가)",
+ "Select Tile (Subtract)": "타일 선택 (제거)",
+ "Selected frames": "선택된 프레임",
+ "Selected layers": "선택된 레이어",
+ "Selection": "선택",
+ "Selection Edges": "&선택 가장자리",
+ "Selection Tools": "선택 도구",
+ "Selection as Grid": "격자로 선택",
+ "Set Color Selector: Color Spectrum": "색상 선택기 설정: 색상 스펙트럼",
+ "Set Color Selector: Color Tint/Shade/Tone": "색상 선택기 설정: 틴트/그림자/톤",
+ "Set Color Selector: RGB Color Wheel": "색상 선택기 설정: RGB 색상환",
+ "Set Color Selector: RYB Color Wheel": "색상 선택기 설정: RYB 색상환",
+ "Set Ink Type: Alpha Compositing": "잉크 유형 설정: 알파 합성",
+ "Set Ink Type: Copy Color+Alpha": "잉크 유형 설정: 색상+알파 복사",
+ "Set Ink Type: Lock Alpha": "잉크 유형 설정: 알파 잠금",
+ "Set Ink Type: Shading": "잉크 유형 설정: 음영",
+ "Set Ink Type: Simple Ink": "잉크 유형 설정: 간단한 잉크",
+ "Set Loop Section": "&루프 섹션 설정",
+ "Set Palette": "팔레트 설정",
+ "Set Palette Entry Size": "팔레트 항목 크기 설정",
+ "Shade": "그늘",
+ "Shades": "음영",
+ "Shading": "음영",
+ "Shape:": "모양:",
+ "Shapes": "모양",
+ "Share": "공유",
+ "Share...": "공유...",
+ "Sheet Type:": "시트 유형:",
+ "Shift": "&이동",
+ "Shortcut: ": "단축키: ",
+ "Show": "&표시",
+ "Show Brush Preview": "브러시 미리보기 표시",
+ "Show Extras": "추가 기능 표시",
+ "Show Grid": "격자 표시",
+ "Show Layer Edges": "레이어 가장자리 표시",
+ "Show Onion Skin": "&어니언 스킨 표시",
+ "Show Pixel Grid": "픽셀 그리드 표시",
+ "Show Selection Edges": "선택 가장자리 표시",
+ "Show full file name path": "전체 파일 이름 경로 표시",
+ "Show grid": "격자 표시",
+ "Show scroll-bars in all sprite editors.": "모든 스프라이트 편집기에서 스크롤 바 표시.",
+ "Show scroll-bars in sprite editor": "스프라이트 편집기에서 스크롤 바 표시",
+ "Show the timeline automatically\nwhen a new frame or layer is added.": "새 프레임 또는 레이어가 추가되면\n타임라인을 자동으로 표시합니다.",
+ "Show timeline automatically": "타임라인 자동 표시",
+ "Simple Ink": "간단한 잉크",
+ "Size": "크기",
+ "Size:": "크기:",
+ "Small Size": "&작은 크기",
+ "Snap to Grid": "&격자에 맞춤",
+ "Soft Light": "소프트 라이트",
+ "Sort & Gradients": "정렬 및 그라디언트",
+ "Space": "Space",
+ "Spanish": "스페인어",
+ "Specific Color": "특정 색상",
+ "Spray Speed": "분사 속도",
+ "Spray Tool": "분사 도구",
+ "Spray Width": "분사 너비",
+ "Sprite": "&스프라이트",
+ "Sprite Properties": "스프라이트 속성",
+ "Sprite Size": "스프라이트 크기",
+ "Sprite Size...": "&스프라이트 크기...",
+ "Square Brush": "사각 브러시",
+ "Subtract from selection\n(Shift+Alt)": "선택 영역에서 빼기\n(Shift+Alt)",
+ "Switch Colors": "색상 전환",
+ "Switch Pixel Perfect Mode": "픽셀 완벽 모드 전환",
+ "Switch Timeline": "타임라인 전환",
+ "Symmetry Mode": "대칭 모드",
+ "Symmetry Options": "&대칭 옵션",
+ "TIME": "시간",
+ "Tag Properties...": "&태그 속성...",
+ "Tags": "&태그",
+ "Text": "텍스트",
+ "Text:": "텍스트:",
+ "The 'Stop' button should rewind the animation\nwhere it was started.": "\"정지\" 버튼은 애니메이션을 시작한 위치로 되감아야 합니다.",
+ "Theme": "테마",
+ "Tile Mode": "타일 모드",
+ "Tiled Mode": "&타일 모드",
+ "Tiled in Both Axes": "양축에 타일링",
+ "Tiled in X Axis": "X축에 타일링",
+ "Tiled in Y Axis": "Y축에 타일링",
+ "Timeline": "&타임라인",
+ "To:": "끝:",
+ "Toggle Fullscreen": "전체 화면 전환",
+ "Toggle Preview": "미리보기 전환",
+ "Toggle Touchbar": "터치바 전환",
+ "Tolerance:": "허용 오차:",
+ "Top:": "위쪽:",
+ "Touchbar": "터치바",
+ "Transform": "&변형",
+ "Transparent": "&투명",
+ "Transparent Color": "투명 색상",
+ "Transparent Color:": "투명 색상:",
+ "Trim": "&자르기",
+ "Trim Sprite": "스프라이트 자르기",
+ "Tutorial": "튜토리얼",
+ "Type": "유형",
+ "Type:": "유형:",
+ "UI Elements Scaling:": "UI 요소 스케일링:",
+ "UNDO": "실행 취소",
+ "Uncheck this option if you would prefer to hide\nfull path on UI (e.g. useful for live streaming)": "UI에서 전체 경로를 숨기려면 이 옵션을 선택 해제하세요\n(예: 라이브 스트리밍에 유용)",
+ "Undo": "&실행 취소",
+ "Undo History": "실행 취소 &히스토리",
+ "Undo Limit:": "실행 취소 제한:",
+ "Unlink": "&연결 해제",
+ "Unlink Cel": "셀 연결 해제",
+ "Up": "&위",
+ "Up to parent folder\n(Backspace)": "상위 폴더로 이동\n(백스페이스)",
+ "Use native file dialog": "네이티브 파일 대화상자 사용",
+ "Use native mouse cursor": "네이티브 마우스 커서 사용",
+ "User Data": "사용자 데이터",
+ "User Data:": "사용자 데이터:",
+ "User Interface": "사용자 인터페이스",
+ "Vertical Strip": "수직 스트립",
+ "Vertical Symmetry": "수직 대칭",
+ "View": "&보기",
+ "View Tools": "보기 도구",
+ "Visible": "&표시",
+ "Visible layers": "표시된 레이어",
+ "Warning - Important": "경고 - 중요",
+ "WebP Options": "WebP 옵션",
+ "When it's enabled each time you undo/redo\nthe current frame & layer will be modified\nto focus the undid/redid change.": "이 옵션을 활성화하면 실행 취소/다시 실행 시마다\n현재 프레임 및 레이어가 변경된 위치로 이동합니다.",
+ "White": "&흰색",
+ "Width:": "너비:",
+ "Win": "Win",
+ "With this option you can recover your documents\nif the program finalizes unexpectedly.": "이 옵션을 사용하면 프로그램이 예기치 않게 종료될 경우\n문서를 복구할 수 있습니다.",
+ "X:": "X:",
+ "Y:": "Y:",
+ "Yes": "&예",
+ "You are going to enter in \"Advanced Mode\".": "당신은 \"고급 모드\"로 진입하려고 합니다.",
+ "You are using a development version.": "현재 개발 버전을 사용 중입니다.",
+ "You must restart the program to see your changes to:": "다음 변경 사항을 보려면 프로그램을 다시 시작해야 합니다:",
+ "Zoom 100%": "줌 100%",
+ "Zoom 1600%": "줌 1600%",
+ "Zoom 200%": "줌 200%",
+ "Zoom 3200%": "줌 3200%",
+ "Zoom 400%": "줌 400%",
+ "Zoom 50%": "줌 50%",
+ "Zoom 800%": "줌 800%",
+ "Zoom In": "확대",
+ "Zoom Level": "줌 레벨",
+ "Zoom Out": "축소",
+ "Zoom Tool": "줌 도구",
+ "Zoom from center with keys": "키로 중심에서 줌",
+ "Zoom from center with scroll wheel": "스크롤 휠로 중심에서 줌",
+ "Zoom in": "확대",
+ "Zoom out": "축소",
+ "Zoom sliding two fingers up or down": "두 손가락으로 위아래로 슬라이딩하여 줌",
+ "Zoom with scroll wheel": "스크롤 휠로 줌",
+ "colors or less": "색상 또는 그 이하",
+ "explaining what you was doing when the program crashed.": "프로그램이 충돌했을 때 무슨 작업을 하고 있었는지 설명해 주세요.",
+ "https://github.com/Veritaware/Besprited/issues": "https://github.com/Veritaware/Besprited/issues",
+ "to a bug report on:": "버그 신고 관련:"
+}
\ No newline at end of file
diff --git a/data/languages/pl.json b/data/languages/pl.json
index 4ae442163..bdb21ddb9 100644
--- a/data/languages/pl.json
+++ b/data/languages/pl.json
@@ -1,650 +1,770 @@
{
- "180": "&180",
- "# of Columns:": "Liczba kolumn:",
- "# of Rows:": "Liczba wierszy:",
- "*\n Left-button: Erase with the background color in `Background' layer\n\n or transparent color in any other layer.\n*\n Right-button: Replace foreground with background color.\n ": "*\n Lewy przycisk: Wymaż kolorem tła w warstwie „Tło”\n\n lub kolorem przezroczystym w dowolnej innej warstwie.\n*\n Prawy przycisk: Zamień kolor pierwszoplanowy na kolor tła.\n ",
- "*\n Left-button: Replace/add to current selection.\n*\n Right-button: Remove from current selection.\n ": "*\n Lewy przycisk: Zamień/dodaj do bieżącego zaznaczenia.\n*\n Prawy przycisk: Usuń z bieżącego zaznaczenia.\n ",
- "*\n Left-button: replace/add to current selection.\n*\n Right-button: remove from current selection.\n ": "*\n Lewy przycisk: Zamień/dodaj do bieżącego zaznaczenia.\n*\n Prawy przycisk: Usuń z bieżącego zaznaczenia.\n ",
- "+": "+",
- "- Classic skin graphics introduced in v0.8": "- Klasyczny wygląd i grafika wprowadzona w wersji 0.8",
- "- Lead developer, graphics maintainer": "- Główny programista, osoba odpowiedzialna za grafikę",
- "-------- Recent Paths --------": "-------- Ostatnio używane ścieżki --------",
- "10 Minutes": "10 minut",
- "1000%": "1000%",
- "15 Minutes": "15 minut",
- "16x16": "16×16",
- "2 Minutes": "2 minuty",
- "25%": "25%",
- "2x2": "2×2",
- "30 Minutes": "30 minut",
- "4x4": "4×4",
- "5 Minutes": "5 minut",
- "50%": "50%",
- "500%": "500%",
- "600%": "600%",
- "700%": "700%",
- "800%": "800%",
- "8x8": "8×8",
- "90 CCW": "90° w lewo",
- "90 CW": "90° w prawo",
- "900%": "900%",
- "About": "O &programie",
- "Add Background Color to Palette": "Dodaj kolor tła do palety",
- "Add Foreground Color to Palette": "Dodaj kolor pierwszoplanowy do palety",
- "Add background color to the palette": "Dodaj kolor tła do palety",
- "Add foreground color to the palette": "Dodaj kolor pierwszoplanowy do palety",
- "Add to selection\n(Shift)": "Dodaj do zaznaczenia\n(Shift)",
- "Adjust opaque/transparent mode automatically": "Dostosuj tryb krycia/przezroczystości automatycznie",
- "Advanced Mode": "Tryb zaawansowany",
- "All": "&Wszystko",
- "All Layers": "Wszystkie warstwy",
- "All frames": "Wszystkie klatki",
- "Allow non-linear history": "Zezwól na nieliniową historię cofania",
- "Alpha": "Alfa",
- "Alpha Compositing": "Łączenie z kanałem alfa",
- "Alternate Timeline": "Alternatywna oś czasu",
- "Alternate Toolbar": "Alternatywny pasek narzędzi",
- "Alternate Touchbar": "Alternatywny pasek dotykowy",
- "Animated sprite editor pixel art tool": "Edytor animowanych sprite’ów i narzędzie do pixel artu",
- "Apply": "&Zastosuj",
- "Apply Zoom": "Zastosuj powiększenie",
- "Apply to the active frame/layer (the active cel)": "Zastosuj do aktywnej klatki/warstwy (aktywnej celi)",
- "Array": "Tablica",
- "As:": "Jako:",
- "Authors:": "Autorzy:",
- "Auto": "Auto",
- "Auto Select Layer": "Automatycznie zaznacz warstwę",
- "Automatically save recovery data every": "Automatycznie zapisuj dane odzyskiwania co",
- "Available Themes": "Dostępne motywy",
- "Background From Layer": "Tło z warstwy",
- "Background color": "Kolor tła",
- "Background from Layer": "&Tło z warstwy",
- "Background:": "Tło:",
- "BackgroundFromLayer": "TłoZWarstwy",
- "Best fit Index": "Najlepsze dopasowanie indeksu",
- "Best fit for texture": "Najlepsze dopasowanie dla tekstury",
- "Black": "&Czarny",
- "Blur Tool": "Narzędzie rozmywania",
- "Border": "&Obramowanie",
- "Border:": "Obramowanie:",
- "Borders:": "Krawędzie:",
- "Bottom:": "Dół:",
- "Brush Angle (in degrees)": "Kąt pędzla (w stopniach)",
- "Brush Edges": "Krawędzie pędzla",
- "Brush Preview": "Podgląd &pędzla",
- "Brush Preview:": "Podgląd pędzla:",
- "Brush Size (in pixels)": "Rozmiar pędzla (w pikselach)",
- "Brush Type": "Typ pędzla",
- "Brush: Custom Brush #1": "Pędzel: Własny pędzel #1",
- "Brush: Custom Brush #2": "Pędzel: Własny pędzel #2",
- "Brush: Custom Brush #3": "Pędzel: Własny pędzel #3",
- "Brush: Custom Brush #4": "Pędzel: Własny pędzel #4",
- "Brush: Custom Brush #5": "Pędzel: Własny pędzel #5",
- "Brush: Custom Brush #6": "Pędzel: Własny pędzel #6",
- "Brush: Custom Brush #7": "Pędzel: Własny pędzel #7",
- "Brush: Custom Brush #8": "Pędzel: Własny pędzel #8",
- "Brush: Custom Brush #9": "Pędzel: Własny pędzel #9",
- "Brush: Decrement Size": "Pędzel: Zmniejsz rozmiar",
- "Brush: Increment Size": "Pędzel: Zwiększ rozmiar",
- "By Columns": "Według kolumn",
- "By Rows": "Według wierszy",
- "Cancel": "Anuluj",
- "Cancel Current Operation": "Anuluj bieżącą operację",
- "Cancel drag and drop": "Anuluj przeciąganie i upuszczanie",
- "Canvas Size": "Rozmiar obszaru roboczego",
- "Canvas Size...": "&Rozmiar obszaru roboczego…",
- "Cel Properties": "Właściwości celi",
- "Cel Properties...": "&Właściwości celi…",
- "Center Sprite": "Wyśrodkuj sprite",
- "Change Pixel Format": "Zmień format pikseli",
- "Check this if you want to keep the selection\nafter deleting it.": "Zaznacz, jeśli chcesz zachować zaznaczenie\npo jego usunięciu.",
- "Check this option to enable hardware acceleration": "Zaznacz tę opcję, aby włączyć akcelerację sprzętową",
- "Check this option to get\nthis old menus behavior.": "Zaznacz tę opcję, aby przywrócić\ndawne zachowanie menu.",
- "Checked Background": "Tło w kratkę (szachownica)",
- "Clear": "Wyczyś&ć",
- "Clear Cel": "Wyczyść celę",
- "Close": "&Zamknij",
- "Close All": "Zamknij wszystko",
- "Close All Files": "Zamknij wszystkie pliki",
- "Close File": "Zamknij plik",
- "Color": "Kolor",
- "Color Burn": "Wypalenie koloru",
- "Color Curve": "&Krzywa koloru",
- "Color Dodge": "Rozjaśnienie koloru",
- "Color Mode": "Tryb &koloru",
- "Color Mode:": "Tryb koloru:",
- "Color Range": "&Zakres koloru",
- "Color Spectrum": "Spektrum kolorów",
- "Color Tint/Shade/Tone": "Kolor: odcień/przyciemnienie/ton",
- "Color+Alpha": "Kolor+Alfa",
- "Color: Decrement Background Index": "Kolor: Zmniejsz indeks tła",
- "Color: Decrement Foreground Index": "Kolor: Zmniejsz indeks pierwszego planu",
- "Color: Increment Background Index": "Kolor: Zwiększ indeks tła",
- "Color: Increment Foreground Index": "Kolor: Zwiększ indeks pierwszego planu",
- "Colors:": "Kolory:",
- "Columns to be added/removed in the left side.\nUse a negative number to remove columns.": "Kolumny do dodania/usunęcia po lewej stronie.\nUżyj liczby ujemnej, aby usunąć kolumny.",
- "Columns to be added/removed in the right side.\nUse a negative number to remove columns.": "Kolumny do dodania/usunęcia po prawej stronie.\nUżyj liczby ujemnej, aby usunąć kolumny.",
- "Constant Frame Rate": "Stała liczba klatek na sekundę",
- "Contiguous": "Przyległe",
- "Contour Tool": "Narzędzie konturu",
- "Contract": "&Zawęź",
- "Contributors": "Współtwórcy",
- "Convolution Matrix": "&Macierz splotu",
- "Copy": "&Kopiuj",
- "Copy Alpha+Color": "Kopiuj Alfa+Kolor",
- "Copy Cel": "Kopiuj celę",
- "Copy Merged": "Kopiuj s&calone",
- "Create Palette from Current Sprite": "Utwórz paletę z bieżącego sprite’a",
- "Create Palette from Current Sprite (Color Quantization)": "Utwórz paletę z bieżącego sprite’a (kwantyzacja kolorów)",
- "Crop": "Wy&kadruj",
- "Crop Sprite": "Przytnij sprite",
- "Current Document": "Bieżący dokument",
- "Current Frame": "Bieżąca klatka",
- "Current Layer": "Bieżąca warstwa",
- "Cursor": "Kursor",
- "Cursors": "Kursory",
- "Curve Tool": "Narzędzie krzywej",
- "Cut": "Wy&tni",
- "Darken": "Przyciemnij",
- "Default Zoom": "Domyślne powiększenie",
- "Delete Frame": "Usuń klatkę",
- "Delete Layer": "Usuń warstwę",
- "Depending on the layer (background/transparent),\nthe pasted selection will be adjusted\nautomatically (opaque/transparent)": "W zależności od warstwy (tła/przezroczysta),\nwklejone zaznaczenie będzie automatycznie\ndostosowane (krycie/przezroczystość)",
- "Deselect": "&Odznacz",
- "Deselect Mask": "Odznacz maskę",
- "Despeckle": "Usuń szum",
- "Despeckle (median filter)": "&Usuń szum (filtr medianowy)",
- "Developer Console": "Konsola deweloperska",
- "Difference": "Różnica",
- "Discard Brush": "Odrzuć pędzel",
- "Documentation": "Dokumentacja",
- "Donate": "&Wesprzyj",
- "Down": "&Dół",
- "Drop pixels here": "Upuść piksele tutaj",
- "Duplicate": "&Duplikuj",
- "Duplicate Cel(s)": "&Duplikuj celę/cele",
- "Duplicate Cels": "Duplikuj cele",
- "Duplicate Frame": "Duplikuj klatkę",
- "Duplicate Layer": "Duplikuj warstwę",
- "Duplicate Linked Cel(s)": "Duplikuj &połączone cele",
- "Duplicate Linked Cels": "Duplikuj połączone cele",
- "Duplicate Sprite": "Duplikuj sprite",
- "Duplicate View": "&Duplikuj widok",
- "Duplicate merged layers only": "Duplikuj tylko scalone warstwy",
- "Duplicate...": "&Duplikuj…",
- "Duplicate:": "Duplikuj:",
- "Duration (milliseconds):": "Czas trwania (w milisekundach):",
- "Each pixel has Red, Green, Blue, and Alpha components\n(32 bits per pixel)": "Każdy piksel zawiera składniki Czerwony, Zielony, Niebieski i Alfa\n(32 bity na piksel)",
- "Each pixel has a Gray value and Alpha\n(16 bits per pixel)": "Każdy piksel zawiera wartość Szarości oraz Alfę\n(16 bitów na piksel)",
- "Each pixel is a reference to the palette\n(8 bits per pixel)": "Każdy piksel jest odwołaniem do palety\n(8 bitów na piksel)",
- "Edit": "&Edycja",
- "Edit Color": "Edytuj kolor",
- "Editor": "Edytor",
- "Ellipse Tool": "Narzędzie elipsy",
- "Elliptical Marquee Tool": "Narzędzie eliptycznego zaznaczenia",
- "English": "Angielski",
- "Erase": "Wymaż",
- "Eraser Tool": "Narzędzie gumki",
- "Exclusion": "Wyłączenie",
- "Exit": "Z&akończ",
- "Expand": "&Rozszerz",
- "Expand Selection": "Rozszerz zaznaczenie",
- "Expand menu bar items on mouseover": "Rozwiń elementy paska menu po najechaniu myszą",
- "Experimental": "Eksperymentalne",
- "Export": "&Eksportuj",
- "Export Sprite Sheet": "&Eksportuj arkusz sprite’ów",
- "Export...": "E&ksportuj…",
- "Extra paint bucket options": "Dodatkowe opcje narzędzia kubełek",
- "Extras": "&Dodatki",
- "Eyedropper": "Kroplomierz",
- "Eyedropper Tool": "Narzędzie kroplomierza",
- "FRM+": "KLAT+",
- "FX": "E&fekty",
- "File": "&Plik",
- "File name:": "Nazwa pliku:",
- "File type:": "Typ pliku:",
- "Filled Ellipse Tool": "Narzędzie wypełnionej elipsy",
- "Filled Rectangle Tool": "Narzędzie wypełnionego prostokąta",
- "First Frame": "&Pierwsza klatka",
- "Flash layer when it is selected": "Mignij warstwą po jej zaznaczeniu",
- "Flatten": "&Spłaszcz",
- "Flatten Layers": "Spłaszcz warstwy",
- "Flip Canvas Horizontal": "Odwróć obszar roboczy &poziomo",
- "Flip Canvas Vertical": "Odwróć obszar roboczy &pionowo",
- "Flip Horizontal": "Odwróć &poziomo",
- "Flip Selection Horizontal": "Odwróć zaznaczenie poziomo",
- "Flip Selection Vertical": "Odwróć zaznaczenie pionowo",
- "Flip Vertical": "Odwróć &pionowo",
- "Foreground color": "Kolor pierwszoplanowy",
- "Frame": "&Klatka",
- "Frame Properties": "Właściwości klatki",
- "Frame Properties...": "Właściwości &klatki…",
- "Frame Tag Properties": "Właściwości etykiety klatki",
- "Frame Tags": "Etykiety klatek",
- "Frame number:": "Numer klatki:",
- "Frame:": "Klatka:",
- "Frames:": "Klatki:",
- "Freehand trace algorithm": "Algorytm śledzenia odręcznego",
- "From:": "Od:",
- "Full Real-time Brush Preview": "Pełny podgląd pędzla w czasie rzeczywistym",
- "Fullscreen Preview": "Podgląd &pełnoekranowy",
- "GPU acceleration": "Akceleracja GPU",
- "General": "Ogólne",
- "Global": "Globalne",
- "Go back one folder": "Cofnij o jeden folder",
- "Go forward one folder": "Przejdź do kolejnego folderu",
- "Go to First Frame": "Przejdź do pierwszej klatki",
- "Go to First Frame\n\nShortcut: Home": "Przejdź do pierwszej klatki\n\nSkrót: Home",
- "Go to Frame": "&Przejdź do klatki",
- "Go to Last Frame": "Przejdź do ostatniej klatki",
- "Go to Last Frame\n\nShortcut: End": "Przejdź do ostatniej klatki\n\nSkrót: End",
- "Go to Next Frame": "Przejdź do następnej klatki",
- "Go to Next Frame with same tag": "Przejdź do następnej klatki z tą samą etykietą",
- "Go to Next Layer": "Przejdź do następnej warstwy",
- "Go to Next Tab": "Przejdź do następnej karty",
- "Go to Previous Frame": "Przejdź do poprzedniej klatki",
- "Go to Previous Frame with same tag": "Przejdź do poprzedniej klatki z tą samą etykietą",
- "Go to Previous Layer": "Przejdź do poprzedniej warstwy",
- "Go to Previous tab": "Przejdź do poprzedniej karty",
- "Go to modified frame/layer": "Przejdź do zmodyfikowanej klatki/warstwy",
- "Gray": "Odcień szarości",
- "Gray+Alpha": "Szarość+Alfa",
- "Grayscale": "&Skala szarości",
- "Grid": "&Siatka",
- "Grid Background": "Siatka && Tło",
- "Grid Color:": "Kolor siatki:",
- "Grid Opacity:": "Krycie siatki:",
- "Grid Settings": "Ustawienia &siatki",
- "HSB": "HSB",
- "HSB+Alpha": "HSB+Alfa",
- "Hand Tool": "Narzędzie przesuwania (ręka)",
- "Hard Light": "Twarde światło",
- "Hash": "Krzyżyk",
- "Height:": "Wysokość:",
- "Help": "&Pomoc",
- "Hide": "Ukryj",
- "Home": "&Początek",
- "Horizontal Strip": "Pasek poziomy",
- "Horizontal Symmetry": "Symetria pozioma",
- "Hue": "Odcień",
- "Ignore Alpha Component": "Ignoruj kanał alfa",
- "Import": "&Importuj",
- "Import Sprite Sheet": "&Importuj arkusz sprite’ów",
- "Include partial tiles at bottom/right edges": "Uwzględnij niepełne kafelki na dolnych/prawych krawędziach",
- "Indexed": "&Zindeksowany",
- "Indexed (No Dithering)": "&Zindeksowany (bez ditheringu)",
- "Indexed (Ordered Dither)": "Zindeksowany (uporządkowany &dithering)",
- "Ink": "Atrament",
- "Inner:": "Wewnętrzna:",
- "Insert Text": "Wstaw tekst",
- "Inverse": "&Odwrotność",
- "Invert": "&Odwróć",
- "Invert Color": "Odwróć kolor",
- "Invert Mask": "Odwróć maskę",
- "Italian": "Włoski",
- "JSON Data": "Dane JSON",
- "Japanese": "Japoński",
- "Jumble Tool": "Narzędzie mieszania pikseli",
- "Jump to": "&Przeskocz do",
- "Keep selection after \"Edit > Clear\" command": "Zachowaj zaznaczenie po poleceniu „Edycja > Wyczyść”",
- "Keyboard Shortcuts": "Skróty klawiaturowe",
- "Keyboard Shortcuts...": "&Skróty klawiaturowe…",
- "LYR+": "WARST+",
- "LYR<": "WARST<",
- "LYR>": "WARST>",
- "Language:": "Język:",
- "Large Size": "&Duży rozmiar",
- "Lasso Tool": "Narzędzie lassa",
- "Last Frame": "&Ostatnia klatka",
- "Launch": "Uruchom",
- "Layer": "&Warstwa",
- "Layer Edges": "&Krawędzie warstwy",
- "Layer From Background": "Warstwa z tła",
- "Layer Properties": "Właściwości warstwy",
- "Layer Visibility": "Widoczność warstwy",
- "Layer from Background": "&Warstwa z tła",
- "Layers": "Warstwy",
- "Layers:": "Warstwy:",
- "Left": "&Lewo",
- "Left:": "Lewa:",
- "LibreSprite 1.2-dev": "LibreSprite 1.2-dev",
- "Lighten": "Rozjaśnij",
- "Limit of memory to be used\nfor undo information per sprite.\nSpecified in megabytes.": "Limit pamięci używanej\nna dane cofania dla jednego sprite’a.\nPodane w megabajtach.",
- "Line Tool": "Narzędzie linii",
- "Link Cels": "&Połącz cele",
- "Links Cels": "Łączy cele",
- "Load Default Palette": "Wczytaj domyślną paletę",
- "Load Palette": "&Wczytaj paletę",
- "Load from MSK file": "&Wczytaj z pliku MSK",
- "LoadMask": "WczytajMaskę",
- "Locate Configuration File": "Zlokalizuj plik konfiguracyjny",
- "Locate Crash Folder": "Zlokalizuj folder awarii",
- "Lock Alpha": "Zablokuj alfa",
- "Luminosity": "Jaskrawość",
- "MB": "MB",
- "Magic Wand Tool": "Narzędzie różdżki",
- "Mask All": "Zamaskuj wszystko",
- "Mask By Color": "Maskuj według koloru",
- "Mask Content": "Maskuj zawartość",
- "Matches old indexes with new indexes": "Dopasowuje stare indeksy do nowych",
- "Maximized": "Zmaksymalizowane",
- "Medium Size": "&Średni rozmiar",
- "Merge Down": "&Scal w dół",
- "Merge Down Layer": "Scal warstwę w dół",
- "Meta:": "Meta:",
- "Mirror Horizontally": "Odbij poziomo",
- "Mirror Vertically": "Odbij pionowo",
- "Mode:": "Tryb:",
- "Modify": "&Modyfikuj",
- "Modify Blue Component": "Modyfikuj składową niebieską",
- "Modify Green Component": "Modyfikuj składową zieloną",
- "Modify Red Component": "Modyfikuj składową czerwoną",
- "Move": "&Przesuń",
- "Move Cel": "Przesuń celę",
- "Move Selection Boundaries 1 horizontal tile left": "Przesuń granice zaznaczenia o 1 kafelek w lewo",
- "Move Selection Boundaries 1 horizontal tile right": "Przesuń granice zaznaczenia o 1 kafelek w prawo",
- "Move Selection Boundaries 1 pixel down": "Przesuń granice zaznaczenia o 1 piksel w dół",
- "Move Selection Boundaries 1 pixel left": "Przesuń granice zaznaczenia o 1 piksel w lewo",
- "Move Selection Boundaries 1 pixel right": "Przesuń granice zaznaczenia o 1 piksel w prawo",
- "Move Selection Boundaries 1 pixel up": "Przesuń granice zaznaczenia o 1 piksel w górę",
- "Move Selection Boundaries 1 vertical tile down": "Przesuń granice zaznaczenia o 1 kafelek w dół",
- "Move Selection Boundaries 1 vertical tile up": "Przesuń granice zaznaczenia o 1 kafelek w górę",
- "Move Selection Content 1 horizontal tile left": "Przesuń zawartość zaznaczenia o 1 kafelek w lewo",
- "Move Selection Content 1 horizontal tile right": "Przesuń zawartość zaznaczenia o 1 kafelek w prawo",
- "Move Selection Content 1 pixel down": "Przesuń zawartość zaznaczenia o 1 piksel w dół",
- "Move Selection Content 1 pixel left": "Przesuń zawartość zaznaczenia o 1 piksel w lewo",
- "Move Selection Content 1 pixel right": "Przesuń zawartość zaznaczenia o 1 piksel w prawo",
- "Move Selection Content 1 pixel up": "Przesuń zawartość zaznaczenia o 1 piksel w górę",
- "Move Selection Content 1 vertical tile down": "Przesuń zawartość zaznaczenia o 1 kafelek w dół",
- "Move Selection Content 1 vertical tile up": "Przesuń zawartość zaznaczenia o 1 kafelek w górę",
- "Move Tool": "Narzędzie przesuwania",
- "Multiply": "Mnożenie",
- "Name:": "Nazwa:",
- "Negative Black and White": "Negatyw czarno-biały",
- "New": "&Nowy",
- "New Brush": "Nowy &pędzel",
- "New Empty Frame": "Nowa &pusta klatka",
- "New File": "Nowy plik",
- "New File...": "Nowy plik…",
- "New Frame": "&Nowa klatka",
- "New Frame Tag": "Nowa etykieta klatki",
- "New Layer": "&Nowa warstwa",
- "New Layer Set": "Nowy zestaw warstw",
- "New Sprite": "Nowy sprite",
- "New Sprite From Selection": "Nowy sprite z zaznaczenia",
- "New Sprite from Selection": "&Nowy sprite z zaznaczenia",
- "New Tag": "&Nowa etykieta",
- "New folder": "Nowy folder",
- "New...": "&Nowy…",
- "Next Frame": "&Następna klatka",
- "No": "&Nie",
- "None": "&Brak",
- "Normal": "Normalny",
- "OK": "&OK",
- "Onion Skinning": "Podgląd cebulkowy (Onion Skin)",
- "Opacity (paint intensity)": "Nieprzezroczystość (intensywność malowania)",
- "Opacity:": "Nieprzezroczystość:",
- "Open File...": "Otwórz plik…",
- "Open Folder": "Otwórz &folder",
- "Open In Folder": "Otwórz w folderze",
- "Open Recent": "Otwórz &ostatnie",
- "Open Scripts Folder": "Otwórz folder skryptów",
- "Open Sprite": "Otwórz sprite",
- "Open With Associated Application": "Otwórz powiązaną aplikacją",
- "Open generated sprite sheet": "Otwórz wygenerowany arkusz sprite’ów",
- "Open in Folder": "Otwórz w &folderze",
- "Open with OS": "&Otwórz w systemie",
- "Open...": "&Otwórz…",
- "Options": "Opcje",
- "Output File": "Plik wyjściowy",
- "Overlay": "Nakładka",
- "PLAY": "ODTWÓRZ",
- "Padding": "Dopełnienie",
- "Paint Bucket Tool": "Narzędzie kubełka",
- "Paint brush": "Pędzel malarski",
- "Paint with background color": "Maluj kolorem tła",
- "Painting Cursors": "Kursory malowania",
- "Palette Editor": "&Edytor palety",
- "Palette Size": "Rozmiar pa&lety",
- "Palette entry used as\ntransparent color in each\nlayer (only for indexed images).": "Pozycja palety używana jako\nkolor przezroczysty w każdej\nwarstwie (tylko dla obrazów zindeksowanych).",
- "Paste": "&Wklej",
- "Pattern aligned to destination": "Wzór wyrównany do miejsca docelowego",
- "Pattern aligned to source": "Wzór wyrównany do źródła",
- "Pencil Tool": "Narzędzie ołówka",
- "Per Tag": "Na etykietę",
- "Pick foreground color": "Pobierz kolor pierwszoplanowy",
- "Pick:": "Pobierz:",
- "Pixel Grid": "&Siatka pikseli",
- "Pixel Grid Color:": "Kolor siatki pikseli:",
- "Pixel Grid Opacity:": "Krycie siatki pikseli:",
- "Pixel grid shows up when you zoom a lot": "Siatka pikseli pojawia się przy dużym powiększeniu",
- "Pixel-perfect": "Dokładne w pikselach",
- "Play Animation": "&Odtwórz animację",
- "Play Animation\n\nShortcut: Enter": "Odtwórz animację\n\nSkrót: Enter",
- "Polygon Tool": "Narzędzie wielokąta",
- "Polygonal Lasso Tool": "Narzędzie wielokątnego lassa",
- "Portuguese": "Portugalski",
- "Precise Cursor Color:": "Kolor precyzyjnego kursora:",
- "Preferences": "Ustawienia",
- "Preferences...": "&Ustawienia…",
- "Presets": "Presety",
- "Preview": "Podgląd",
- "Previous Frame": "&Poprzednia klatka",
- "Properties...": "&Właściwości…",
- "QUIT": "ZAKOŃCZ",
- "Quick Reference": "&Szybkie odniesienie",
- "REDO": "PONÓW",
- "RGB": "RGB",
- "RGB Color": "&Kolor RGB",
- "RGB Color Wheel": "Kolorowe koło RGB",
- "RGB+Alpha": "RGB+Alfa",
- "RGBA": "&RGBA",
- "RYB Color Wheel": "Kolorowe koło RYB",
- "Readme": "Plik Readme",
- "Recent Files": "Ostatnie pliki",
- "Recent files:": "Ostatnie pliki:",
- "Recent folders:": "Ostatnie foldery:",
- "Recover Lost Sprites...": "Odzyskaj utracone sprite’y…",
- "Recover Session...": "Odzyskaj sesję…",
- "Rectangle Tool": "Narzędzie prostokąta",
- "Rectangular Marquee Tool": "Narzędzie prostokątnego zaznaczenia",
- "Redo": "&Ponów",
- "Refresh": "Odśwież",
- "Refresh Reload Skin": "&Odśwież i przeładuj skórkę",
- "Release Notes": "Informacje o wydaniu",
- "Remap": "Przemapuj",
- "Remove": "&Usuń",
- "Remove Frame": "&Usuń klatkę",
- "Remove Frame Tag": "Usuń etykietę klatki",
- "Remove Layer": "&Usuń warstwę",
- "Remove Tag": "&Usuń etykietę",
- "Repeat Last Export": "Powtórz &ostatni eksport",
- "Replace Color": "Zamień kolor",
- "Replace Color...": "Zam&ień kolor…",
- "Replace selection": "Zamień zaznaczenie",
- "Rescan Scripts": "Ponownie wczytaj skrypty",
- "Rescan scripts": "Ponownie wczytaj skrypty",
- "Reselect": "&Ponowne zaznaczenie",
- "Reselect Mask": "Ponownie zaznacz maskę",
- "Reset": "Resetuj",
- "Reset Zoom": "Zresetuj powiększenie",
- "Resize Layer": "Zmień rozmiar warstwy",
- "Resize Sprite": "Zmień rozmiar sprite’a",
- "Resize:": "Zmień rozmiar:",
- "Reverse Frames": "&Odwróć kolejność klatek",
- "Rewind on Stop": "Przewiń do początku po zatrzymaniu",
- "Right": "&Prawo",
- "Right-click:": "Prawy przycisk:",
- "Right:": "Prawa:",
- "Rotate": "O&bróć",
- "Rotate Canvas": "&Obróć obszar roboczy",
- "Rotate Selection": "Obróć zaznaczenie",
- "Rotate Sprite 0°": "Obróć sprite o 0°",
- "Rotation Algorithm": "Algorytm obrotu",
- "Rotation Pivot": "Punkt obrotu",
- "Rows to be added/removed in the bottom side.\nUse a negative number to remove rows.": "Wiersze do dodania/usunęcia po dolnej stronie.\nUżyj liczby ujemnej, aby usunąć wiersze.",
- "Rows to be added/removed in the top side.\nUse a negative number to remove rows.": "Wiersze do dodania/usunęcia po górnej stronie.\nUżyj liczby ujemnej, aby usunąć wiersze.",
- "Run Script": "Uruchom skrypt",
- "Same Ink in All Tools": "Ten sam atrament we wszystkich narzędziach",
- "Same in all Tools": "Ten sam w wszystkich narzędziach",
- "Sample:": "Próbka:",
- "Saturation": "Nasycenie",
- "Save": "&Zapisz",
- "Save As...": "Zapisz &jako…",
- "Save File": "Zapisz plik",
- "Save File As": "Zapisz plik jako",
- "Save File Copy As": "Zapisz kopię pliku jako",
- "Save Mask": "Zapisz maskę",
- "Save Palette": "Z&apisz paletę",
- "Save as Default Palette": "Zapisz jako domyślną paletę",
- "Save to MSK file": "&Zapisz do pliku MSK",
- "Screen": "Ekran",
- "Screen Scaling:": "Skalowanie ekranu:",
- "Scripting Console": "Konsola skryptów",
- "Scripts": "S&krypty",
- "Scroll": "Przewijanie",
- "Scroll 1 zoomed horizontal tile left": "Przewiń 1 powiększony kafelek w poziomie w lewo",
- "Scroll 1 zoomed horizontal tile right": "Przewiń 1 powiększony kafelek w poziomie w prawo",
- "Scroll 1 zoomed pixel down": "Przewiń o 1 powiększony piksel w dół",
- "Scroll 1 zoomed pixel left": "Przewiń o 1 powiększony piksel w lewo",
- "Scroll 1 zoomed pixel right": "Przewiń o 1 powiększony piksel w prawo",
- "Scroll 1 zoomed pixel up": "Przewiń o 1 powiększony piksel w górę",
- "Scroll 1 zoomed vertical tile down": "Przewiń 1 powiększony kafelek pionowo w dół",
- "Scroll 1 zoomed vertical tile up": "Przewiń 1 powiększony kafelek pionowo w górę",
- "Scroll to center of canvas": "Przewiń do środka obszaru roboczego",
- "Select": "Za&znacz",
- "Select File": "Wybierz plik",
- "Select Tile": "Wybierz kafelek",
- "Select Tile (Add)": "Wybierz kafelek (dodaj)",
- "Select Tile (Subtract)": "Wybierz kafelek (odejmij)",
- "Selected frames": "Wybrane klatki",
- "Selected layers": "Wybrane warstwy",
- "Selection": "Zaznaczenie",
- "Selection Edges": "&Krawędzie zaznaczenia",
- "Selection as Grid": "Za&znaczenie jako siatka",
- "Set Color Selector: Color Spectrum": "Ustaw wybór koloru: Spektrum kolorów",
- "Set Color Selector: Color Tint/Shade/Tone": "Ustaw wybór koloru: Odcień/Przyciemnienie/Ton",
- "Set Color Selector: RGB Color Wheel": "Ustaw wybór koloru: Koło barw RGB",
- "Set Color Selector: RYB Color Wheel": "Ustaw wybór koloru: Koło barw RYB",
- "Set Ink Type: Alpha Compositing": "Ustaw typ atramentu: Łączenie z alfą",
- "Set Ink Type: Copy Color+Alpha": "Ustaw typ atramentu: Kopiuj kolor+alfa",
- "Set Ink Type: Lock Alpha": "Ustaw typ atramentu: Zablokuj alfa",
- "Set Ink Type: Shading": "Ustaw typ atramentu: Cieniowanie",
- "Set Ink Type: Simple Ink": "Ustaw typ atramentu: Prosty atrament",
- "Set Loop Section": "Ustaw sekcję &pętli",
- "Set Palette": "Ustaw paletę",
- "Set Palette Entry Size": "Ustaw rozmiar pola palety",
- "Shades": "Odcienie",
- "Shading": "Cieniowanie",
- "Shape:": "Kształt:",
- "Share": "Udostępnij",
- "Share...": "Udostępnij…",
- "Sheet Type:": "Typ arkusza:",
- "Shift": "&Shift",
- "Shortcut: ": "Skrót: ",
- "Show": "&Pokaż",
- "Show Brush Preview": "Pokaż podgląd pędzla",
- "Show Extras": "Pokaż dodatki",
- "Show Grid": "Pokaż siatkę",
- "Show Layer Edges": "Pokaż krawędzie warstwy",
- "Show Onion Skin": "Pokaż &efekt cebulki",
- "Show Pixel Grid": "Pokaż siatkę pikseli",
- "Show Selection Edges": "Pokaż krawędzie zaznaczenia",
- "Show full file name path": "Pokaż pełną ścieżkę do pliku",
- "Show grid": "Pokaż siatkę",
- "Show scroll-bars in all sprite editors.": "Pokaż paski przewijania we wszystkich edytorach sprite’ów.",
- "Show scroll-bars in sprite editor": "Pokaż paski przewijania w edytorze sprite’ów",
- "Show the timeline automatically\nwhen a new frame or layer is added.": "Automatycznie pokazuj oś czasu\ngdy dodawana jest nowa klatka lub warstwa.",
- "Show timeline automatically": "Pokazuj oś czasu automatycznie",
- "Simple Ink": "Prosty atrament",
- "Size:": "Rozmiar:",
- "Small Size": "&Mały rozmiar",
- "Snap to Grid": "&Przylegaj do siatki",
- "Soft Light": "Miękkie światło",
- "Sort & Gradients": "Sortuj & gradienty",
- "Spanish": "Hiszpański",
- "Specific Color": "Konkretny kolor",
- "Spray Speed": "Szybkość natrysku",
- "Spray Tool": "Narzędzie natrysku",
- "Spray Width": "Szerokość natrysku",
- "Sprite": "&Sprite",
- "Sprite Properties": "Właściwości sprite’a",
- "Sprite Size": "Rozmiar sprite’a",
- "Sprite Size...": "&Rozmiar sprite’a…",
- "Subtract from selection\n(Shift+Alt)": "Odejmij od zaznaczenia\n(Shift+Alt)",
- "Switch Colors": "Zamień kolory",
- "Switch Pixel Perfect Mode": "Przełącz tryb idealnego piksela",
- "Switch Timeline": "Przełącz oś czasu",
- "Symmetry Mode": "Tryb symetrii",
- "Symmetry Options": "Opcje s&ymetrii",
- "TIME": "CZAS",
- "Tag Properties...": "Właściwości &etykiety…",
- "Tags": "&Etykiety",
- "The 'Stop' button should rewind the animation\nwhere it was started.": "Przycisk „Stop” powinien przewinąć animację\ndo miejsca, w którym została rozpoczęta.",
- "Theme": "Motyw",
- "Tile Mode": "Tryb kafelkowania",
- "Tiled Mode": "&Tryb kafelkowy",
- "Tiled in Both Axes": "Kafelkuj w &obu osiach",
- "Tiled in X Axis": "Kafelkuj w osi &X",
- "Tiled in Y Axis": "Kafelkuj w osi &Y",
- "Timeline": "&Oś czasu",
- "To:": "Do:",
- "Toggle Fullscreen": "Przełącz tryb pełnoekranowy",
- "Toggle Preview": "Przełącz podgląd",
- "Toggle Touchbar": "Przełącz pasek dotykowy",
- "Tolerance:": "Tolerancja:",
- "Top:": "Góra:",
- "Touchbar": "Pasek dotykowy",
- "Transform": "Tra&nsformuj",
- "Transparent": "&Przezroczysty",
- "Transparent Color": "Przezroczysty kolor",
- "Transparent Color:": "Kolor przezroczysty:",
- "Trim": "&Przytnij",
- "Trim Sprite": "Przytnij sprite",
- "Tutorial": "Samouczek",
- "Type:": "Typ:",
- "UI Elements Scaling:": "Skalowanie elementów interfejsu:",
- "UNDO": "COFNIJ",
- "Uncheck this option if you would prefer to hide\nfull path on UI (e.g. useful for live streaming)": "Odznacz tę opcję, jeśli wolisz ukryć\npełną ścieżkę w interfejsie (np. przy transmisjach na żywo)",
- "Undo": "&Cofnij",
- "Undo History": "Historia &cofania",
- "Undo Limit:": "Limit cofania:",
- "Unlink": "&Odłącz",
- "Unlink Cel": "Odłącz celę",
- "Up": "&Góra",
- "Up to parent folder\n(Backspace)": "Do folderu nadrzędnego\n(Backspace)",
- "Use native file dialog": "Używaj systemowego okna dialogowego plików",
- "Use native mouse cursor": "Używaj systemowego kursora myszy",
- "User Data": "Dane użytkownika",
- "User Interface": "Interfejs użytkownika",
- "Vertical Strip": "Pasek pionowy",
- "Vertical Symmetry": "Symetria pionowa",
- "View": "&Widok",
- "Visible": "&Widoczne",
- "Visible layers": "Widoczne warstwy",
- "When it's enabled each time you undo/redo\nthe current frame & layer will be modified\nto focus the undid/redid change.": "Jeśli jest włączone, za każdym razem gdy cofniesz/ponowisz,\nbieżąca klatka i warstwa zostaną zmienione,\naby skupić się na cofnietej/ponowionej zmianie.",
- "White": "&Biały",
- "Width:": "Szerokość:",
- "With this option you can recover your documents\nif the program finalizes unexpectedly.": "Dzięki tej opcji możesz odzyskać dokumenty,\njeśli program zostanie nieoczekiwanie zamknięty.",
- "X:": "X:",
- "Y:": "Y:",
- "Yes": "&Tak",
- "You must restart the program to see your changes to:": "Musisz ponownie uruchomić program, aby zobaczyć wprowadzone zmiany w:",
- "Zoom 100%": "Powiększenie 100%",
- "Zoom 1600%": "Powiększenie 1600%",
- "Zoom 200%": "Powiększenie 200%",
- "Zoom 3200%": "Powiększenie 3200%",
- "Zoom 400%": "Powiększenie 400%",
- "Zoom 50%": "Powiększenie 50%",
- "Zoom 800%": "Powiększenie 800%",
- "Zoom In": "Powiększ",
- "Zoom Level": "Poziom powiększenia",
- "Zoom Out": "Pomniejsz",
- "Zoom Tool": "Narzędzie powiększenia",
- "Zoom from center with keys": "Powiększaj od środka za pomocą klawiszy",
- "Zoom from center with scroll wheel": "Powiększaj od środka za pomocą kółka myszy",
- "Zoom in": "Powiększ",
- "Zoom out": "Pomniejsz",
- "Zoom sliding two fingers up or down": "Powiększ/pomniejsz przesuwając dwoma palcami w górę lub w dół",
- "Zoom with scroll wheel": "Powiększaj/pomniejsz kółkiem myszy"
+ "# of Columns:": "Liczba kolumn:",
+ "# of Rows:": "Liczba wierszy:",
+ "*\n Left-button: Erase with the background color in `Background' layer\n\n or transparent color in any other layer.\n*\n Right-button: Replace foreground with background color.\n ": "*\n Lewy przycisk: Wymaż kolorem tła w warstwie „Tło”\n\n lub kolorem przezroczystym w dowolnej innej warstwie.\n*\n Prawy przycisk: Zamień kolor pierwszoplanowy na kolor tła.\n ",
+ "*\n Left-button: Replace/add to current selection.\n*\n Right-button: Remove from current selection.\n ": "*\n Lewy przycisk: Zamień/dodaj do bieżącego zaznaczenia.\n*\n Prawy przycisk: Usuń z bieżącego zaznaczenia.\n ",
+ "*\n Left-button: replace/add to current selection.\n*\n Right-button: remove from current selection.\n ": "*\n Lewy przycisk: Zamień/dodaj do bieżącego zaznaczenia.\n*\n Prawy przycisk: Usuń z bieżącego zaznaczenia.\n ",
+ "+": "+",
+ "- Classic skin graphics introduced in v0.8": "- Klasyczny wygląd i grafika wprowadzona w wersji 0.8",
+ "- Lead developer, graphics maintainer": "- Główny programista, osoba odpowiedzialna za grafikę",
+ "-------- Recent Paths --------": "-------- Ostatnio używane ścieżki --------",
+ "0": "0",
+ "10 Minutes": "10 minut",
+ "100": "100",
+ "100%": "100%",
+ "1000%": "1000%",
+ "15 Minutes": "15 minut",
+ "16": "16",
+ "16x16": "16×16",
+ "180": "&180",
+ "2 Minutes": "2 minuty",
+ "200%": "200%",
+ "25%": "25%",
+ "2x2": "2×2",
+ "30 Minutes": "30 minut",
+ "300%": "300%",
+ "32": "32",
+ "400%": "400%",
+ "4x4": "4×4",
+ "5 Minutes": "5 minut",
+ "50%": "50%",
+ "500%": "500%",
+ "600%": "600%",
+ "700%": "700%",
+ "800%": "800%",
+ "8x8": "8×8",
+ "90 CCW": "90° w lewo",
+ "90 CW": "90° w prawo",
+ "900%": "900%",
+ "About": "O &programie",
+ "Add Background Color to Palette": "Dodaj kolor tła do palety",
+ "Add Foreground Color to Palette": "Dodaj kolor pierwszoplanowy do palety",
+ "Add background color to the palette": "Dodaj kolor tła do palety",
+ "Add foreground color to the palette": "Dodaj kolor pierwszoplanowy do palety",
+ "Add to selection\n(Shift)": "Dodaj do zaznaczenia\n(Shift)",
+ "Adjust opaque/transparent mode automatically": "Dostosuj tryb krycia/przezroczystości automatycznie",
+ "Advanced Mode": "Tryb zaawansowany",
+ "All": "&Wszystko",
+ "All Layers": "Wszystkie warstwy",
+ "All frames": "Wszystkie klatki",
+ "Allow non-linear history": "Zezwól na nieliniową historię cofania",
+ "Alpha": "Alfa",
+ "Alpha Compositing": "Łączenie z kanałem alfa",
+ "Alt": "Alt",
+ "Alternate Timeline": "Alternatywna oś czasu",
+ "Alternate Toolbar": "Alternatywny pasek narzędzi",
+ "Alternate Touchbar": "Alternatywny pasek dotykowy",
+ "Angle": "Kąt",
+ "Animated sprite editor pixel art tool": "Edytor animowanych sprite’ów i narzędzie do pixel artu",
+ "Animation Direction:": "Kierunek animacji:",
+ "Animation Loop": "Pętla animacji",
+ "Anti-aliasing filter": "Filtr wygładzania",
+ "Apply": "&Zastosuj",
+ "Apply Zoom": "Zastosuj powiększenie",
+ "Apply to the active frame/layer (the active cel)": "Zastosuj do aktywnej klatki/warstwy (aktywnej celi)",
+ "Array": "Tablica",
+ "As:": "Jako:",
+ "Assigned to:": "Przypisane do:",
+ "Authors:": "Autorzy:",
+ "Auto": "Auto",
+ "Auto Select Layer": "Automatycznie zaznacz warstwę",
+ "Automatically save recovery data every": "Automatycznie zapisuj dane odzyskiwania co",
+ "Available Fonts:": "Dostępne czcionki:",
+ "Available Palettes:": "Dostępne palety:",
+ "Available Themes": "Dostępne motywy",
+ "Background": "Tło",
+ "Background From Layer": "Tło z warstwy",
+ "Background color": "Kolor tła",
+ "Background from Layer": "&Tło z warstwy",
+ "Background:": "Tło:",
+ "BackgroundFromLayer": "TłoZWarstwy",
+ "Behind sprite": "Za sprite’em",
+ "Best fit Index": "Najlepsze dopasowanie indeksu",
+ "Best fit for texture": "Najlepsze dopasowanie dla tekstury",
+ "Black": "&Czarny",
+ "Blur Tool": "Narzędzie rozmywania",
+ "Border": "&Obramowanie",
+ "Border:": "Obramowanie:",
+ "Borders:": "Obramowania:",
+ "Bottom:": "Dół:",
+ "Brush Angle (in degrees)": "Kąt pędzla (w stopniach)",
+ "Brush Edges": "Krawędzie pędzla",
+ "Brush Preview": "Podgląd &pędzla",
+ "Brush Preview:": "Podgląd pędzla:",
+ "Brush Size (in pixels)": "Rozmiar pędzla (w pikselach)",
+ "Brush Type": "Typ pędzla",
+ "Brush:": "Pędzel:",
+ "Brush: Custom Brush #1": "Pędzel: Własny pędzel #1",
+ "Brush: Custom Brush #2": "Pędzel: Własny pędzel #2",
+ "Brush: Custom Brush #3": "Pędzel: Własny pędzel #3",
+ "Brush: Custom Brush #4": "Pędzel: Własny pędzel #4",
+ "Brush: Custom Brush #5": "Pędzel: Własny pędzel #5",
+ "Brush: Custom Brush #6": "Pędzel: Własny pędzel #6",
+ "Brush: Custom Brush #7": "Pędzel: Własny pędzel #7",
+ "Brush: Custom Brush #8": "Pędzel: Własny pędzel #8",
+ "Brush: Custom Brush #9": "Pędzel: Własny pędzel #9",
+ "Brush: Decrement Size": "Pędzel: Zmniejsz rozmiar",
+ "Brush: Increment Size": "Pędzel: Zwiększ rozmiar",
+ "By Columns": "Według kolumn",
+ "By Rows": "Według wierszy",
+ "By:": "Przez:",
+ "Cancel": "Anuluj",
+ "Cancel Current Operation": "Anuluj bieżącą operację",
+ "Cancel drag and drop": "Anuluj przeciąganie i upuszczanie",
+ "Canvas Size": "Rozmiar obszaru roboczego",
+ "Canvas Size...": "&Rozmiar obszaru roboczego…",
+ "Cel Properties": "Właściwości celi",
+ "Cel Properties...": "&Właściwości celi…",
+ "Center Sprite": "Wyśrodkuj sprite’a",
+ "Change Pixel Format": "Zmień format pikseli",
+ "Check this if you want to keep the selection\nafter deleting it.": "Zaznacz, jeśli chcesz zachować zaznaczenie\npo jego usunięciu.",
+ "Check this option to enable hardware acceleration": "Zaznacz tę opcję, aby włączyć akcelerację sprzętową",
+ "Check this option to get\nthis old menus behavior.": "Zaznacz tę opcję, aby przywrócić\ndawne zachowanie menu.",
+ "Checked Background": "Tło w kratkę (szachownica)",
+ "Chinese": "Chiński",
+ "Circle Brush": "Pędzel okrągły",
+ "Clear": "Wyczyś&ć",
+ "Clear Cel": "Wyczyść celę",
+ "Close": "&Zamknij",
+ "Close All": "Zamknij wszystko",
+ "Close All Files": "Zamknij wszystkie pliki",
+ "Close File": "Zamknij plik",
+ "Cmd": "Cmd",
+ "Color": "Kolor",
+ "Color Burn": "Wypalenie koloru",
+ "Color Curve": "&Krzywa koloru",
+ "Color Dodge": "Rozjaśnienie koloru",
+ "Color Mode": "Tryb &koloru",
+ "Color Mode:": "Tryb koloru:",
+ "Color Range": "&Zakres koloru",
+ "Color Spectrum": "Spektrum kolorów",
+ "Color Tint/Shade/Tone": "Kolor: odcień/przyciemnienie/ton",
+ "Color Tools": "Narzędzia koloru",
+ "Color+Alpha": "Kolor+Alfa",
+ "Color:": "Kolor:",
+ "Color: Decrement Background Index": "Kolor: Zmniejsz indeks tła",
+ "Color: Decrement Foreground Index": "Kolor: Zmniejsz indeks pierwszego planu",
+ "Color: Increment Background Index": "Kolor: Zwiększ indeks tła",
+ "Color: Increment Foreground Index": "Kolor: Zwiększ indeks pierwszego planu",
+ "Colors:": "Kolory:",
+ "Columns to be added/removed in the left side.\nUse a negative number to remove columns.": "Kolumny do dodania/usunęcia po lewej stronie.\nUżyj liczby ujemnej, aby usunąć kolumny.",
+ "Columns to be added/removed in the right side.\nUse a negative number to remove columns.": "Kolumny do dodania/usunęcia po prawej stronie.\nUżyj liczby ujemnej, aby usunąć kolumny.",
+ "Compression:": "Kompresja:",
+ "Constant Frame Rate": "Stała liczba klatek na sekundę",
+ "Contiguous": "Przyległe",
+ "Contour Tool": "Narzędzie konturu",
+ "Contours": "Kontury",
+ "Contract": "&Zawęź",
+ "Contributors": "Współtwórcy",
+ "Convolution Matrix": "&Macierz splotu",
+ "Copy": "&Kopiuj",
+ "Copy Alpha+Color": "Kopiuj Alfa+Kolor",
+ "Copy Cel": "Kopiuj celę",
+ "Copy Merged": "Kopiuj s&calone",
+ "Crash Report": "Raport awarii",
+ "Create Palette from Current Sprite": "Utwórz paletę z bieżącego sprite’a",
+ "Create Palette from Current Sprite (Color Quantization)": "Utwórz paletę z bieżącego sprite’a (kwantyzacja kolorów)",
+ "Create entries with alpha component": "Utwórz wpisy z kanałem alfa",
+ "Create new palette with": "Utwórz nową paletę z",
+ "Crop": "Wy&kadruj",
+ "Crop Sprite": "Przytnij sprite",
+ "Ctrl": "Ctrl",
+ "Current Document": "Bieżący dokument",
+ "Current Frame": "Bieżąca klatka",
+ "Current Layer": "Bieżąca warstwa",
+ "Current layer only": "Tylko bieżąca warstwa",
+ "Cursor": "Kursor",
+ "Cursors": "Kursory",
+ "Curve Tool": "Narzędzie krzywej",
+ "Cut": "Wy&tnij",
+ "Darken": "Przyciemnij",
+ "Default": "Domyślny",
+ "Default Zoom": "Domyślne powiększenie",
+ "Delete": "Usuń",
+ "Delete Frame": "Usuń klatkę",
+ "Delete Layer": "Usuń warstwę",
+ "Delete file, I've already sent it": "Usuń plik, już go wysłałem",
+ "Depending on the layer (background/transparent),\nthe pasted selection will be adjusted\nautomatically (opaque/transparent)": "W zależności od warstwy (tła/przezroczysta),\nwklejone zaznaczenie będzie automatycznie\ndostosowane (krycie/przezroczystość)",
+ "Deselect": "&Odznacz",
+ "Deselect Mask": "Odznacz maskę",
+ "Despeckle": "Usuń szum",
+ "Despeckle (median filter)": "&Usuń szum (filtr medianowy)",
+ "Developer Console": "Konsola deweloperska",
+ "Difference": "Różnica",
+ "Discard Brush": "Odrzuć pędzel",
+ "Do it later": "Zrób to później",
+ "Documentation": "Dokumentacja",
+ "Don't show this again": "Nie pokazuj ponownie",
+ "Donate": "&Wesprzyj",
+ "Down": "&Dół",
+ "Drawing": "Rysowanie",
+ "Drop pixels here": "Upuść piksele tutaj",
+ "Duplicate": "&Duplikuj",
+ "Duplicate Cel(s)": "&Duplikuj celę/cele",
+ "Duplicate Cels": "Duplikuj cele",
+ "Duplicate Frame": "Duplikuj klatkę",
+ "Duplicate Layer": "Duplikuj warstwę",
+ "Duplicate Linked Cel(s)": "Duplikuj &połączone cele",
+ "Duplicate Linked Cels": "Duplikuj połączone cele",
+ "Duplicate Sprite": "Duplikuj sprite’a",
+ "Duplicate View": "&Duplikuj widok",
+ "Duplicate merged layers only": "Duplikuj tylko scalone warstwy",
+ "Duplicate...": "&Duplikuj…",
+ "Duplicate:": "Duplikuj:",
+ "Duration (milliseconds):": "Czas trwania (w milisekundach):",
+ "Each pixel has Red, Green, Blue, and Alpha components\n(32 bits per pixel)": "Każdy piksel zawiera składniki Czerwony, Zielony, Niebieski i Alfa\n(32 bity na piksel)",
+ "Each pixel has a Gray value and Alpha\n(16 bits per pixel)": "Każdy piksel zawiera wartość Szarości oraz Alfę\n(16 bitów na piksel)",
+ "Each pixel is a reference to the palette\n(8 bits per pixel)": "Każdy piksel jest odwołaniem do palety\n(8 bitów na piksel)",
+ "Edit": "&Edycja",
+ "Edit Color": "Edytuj kolor",
+ "Editor": "Edytor",
+ "Effects": "Efekty",
+ "Ellipse Tool": "Narzędzie elipsy",
+ "Elliptical Marquee Tool": "Narzędzie zaznaczenia eliptyczego",
+ "English": "Angielski",
+ "Erase": "Wymaż",
+ "Eraser Tool": "Narzędzie gumki",
+ "Eraser Tools": "Narzędzia gumki",
+ "Exclusion": "Wykluczenie",
+ "Exit": "Z&akończ",
+ "Expand": "&Rozszerz",
+ "Expand Selection": "Rozszerz zaznaczenie",
+ "Expand menu bar items on mouseover": "Rozwiń elementy paska menu po najechaniu myszą",
+ "Experimental": "Eksperymentalne",
+ "Export": "&Eksportuj",
+ "Export Sprite Sheet": "&Eksportuj arkusz sprite’ów",
+ "Export...": "E&ksportuj…",
+ "Extra paint bucket options": "Dodatkowe opcje narzędzia wiadra z farbą",
+ "Extras": "&Dodatki",
+ "Extras:": "Dodatki:",
+ "Eyedropper": "Kroplomierz",
+ "Eyedropper Tool": "Narzędzie kroplomierza",
+ "FRM+": "KLAT+",
+ "FX": "E&fekty",
+ "File": "&Plik",
+ "File name:": "Nazwa pliku:",
+ "File type:": "Typ pliku:",
+ "Filled Ellipse Tool": "Narzędzie wypełnionej elipsy",
+ "Filled Rectangle Tool": "Narzędzie wypełnionego prostokąta",
+ "First Frame": "&Pierwsza klatka",
+ "Flash layer when it is selected": "Mrugnij warstwą po jej zaznaczeniu",
+ "Flatten": "&Spłaszcz",
+ "Flatten Layers": "Spłaszcz warstwy",
+ "Flip Canvas Horizontal": "Odwróć obszar roboczy w pozio&mie",
+ "Flip Canvas Vertical": "Odwróć obszar roboczy w pio&nie",
+ "Flip Horizontal": "Odwróć w pozio&mie",
+ "Flip Selection Horizontal": "Odwróć zaznaczenie w poziomie",
+ "Flip Selection Vertical": "Odwróć zaznaczenie w pionie",
+ "Flip Vertical": "Odwróć w pio&nie",
+ "Folder Name:": "Nazwa folderu:",
+ "Font Size:": "Rozmiar czcionki:",
+ "Font:": "Czcionka:",
+ "Foreground": "Pierwszy plan",
+ "Foreground color": "Kolor pierwszoplanowy",
+ "Frame": "&Klatka",
+ "Frame Properties": "Właściwości klatki",
+ "Frame Properties...": "Właściwości &klatki…",
+ "Frame Tag Properties": "Właściwości etykiety klatki",
+ "Frame Tags": "Etykiety klatek",
+ "Frame number:": "Numer klatki:",
+ "Frame:": "Klatka:",
+ "Frames:": "Klatki:",
+ "Freehand trace algorithm": "Algorytm śledzenia odręcznego",
+ "French": "Francuski",
+ "From:": "Od:",
+ "Full Real-time Brush Preview": "Pełny podgląd pędzla w czasie rzeczywistym",
+ "Fullscreen Preview": "Podgląd &pełnoekranowy",
+ "GIF Options": "Opcje GIF",
+ "GPU acceleration": "Akceleracja GPU",
+ "General": "Ogólne",
+ "General Options:": "Opcje ogólne:",
+ "German": "Niemiecki",
+ "Global": "Globalne",
+ "Go back one folder": "Cofnij o jeden folder",
+ "Go forward one folder": "Przejdź do kolejnego folderu",
+ "Go to First Frame": "Przejdź do pierwszej klatki",
+ "Go to First Frame\n\nShortcut: Home": "Przejdź do pierwszej klatki\n\nSkrót: Home",
+ "Go to Frame": "&Przejdź do klatki",
+ "Go to Last Frame": "Przejdź do ostatniej klatki",
+ "Go to Last Frame\n\nShortcut: End": "Przejdź do ostatniej klatki\n\nSkrót: End",
+ "Go to Next Frame": "Przejdź do następnej klatki",
+ "Go to Next Frame with same tag": "Przejdź do następnej klatki z tą samą etykietą",
+ "Go to Next Layer": "Przejdź do następnej warstwy",
+ "Go to Next Tab": "Przejdź do następnej karty",
+ "Go to Previous Frame": "Przejdź do poprzedniej klatki",
+ "Go to Previous Frame with same tag": "Przejdź do poprzedniej klatki z tą samą etykietą",
+ "Go to Previous Layer": "Przejdź do poprzedniej warstwy",
+ "Go to Previous tab": "Przejdź do poprzedniej karty",
+ "Go to modified frame/layer": "Przejdź do zmodyfikowanej klatki/warstwy",
+ "Graph": "Wykres",
+ "Gray": "Szarość",
+ "Gray+Alpha": "Szarość+Alfa",
+ "Grayscale": "&Odcienie szarości",
+ "Grid": "&Siatka",
+ "Grid Background": "Siatka && Tło",
+ "Grid Color:": "Kolor siatki:",
+ "Grid Opacity:": "Krycie siatki:",
+ "Grid Settings": "Ustawienia &siatki",
+ "HSB": "HSB",
+ "HSB+Alpha": "HSB+Alfa",
+ "Hand Tool": "Narzędzie przesuwania (ręka)",
+ "Hard Light": "Ostre światło",
+ "Hash": "Krzyżyk",
+ "Height:": "Wysokość:",
+ "Help": "&Pomoc",
+ "Hide": "Ukryj",
+ "Hindi": "Hindi",
+ "Home": "&Początek",
+ "Horizontal Strip": "Pasek poziomy",
+ "Horizontal Symmetry": "Symetria pozioma",
+ "Hue": "Odcień",
+ "Icon": "Ikona",
+ "Ignore Alpha Component": "Ignoruj kanał alfa",
+ "Image Hint:": "Podpowiedź obrazu:",
+ "Image Preset:": "Ustawienie obrazu:",
+ "Import": "&Importuj",
+ "Import Sprite Sheet": "&Importuj arkusz sprite’ów",
+ "In front of sprite": "Przed sprite’em",
+ "Include partial tiles at bottom/right edges": "Uwzględnij niepełne kafelki na dolnych/prawych krawędziach",
+ "Indexed": "&Indeksowany",
+ "Indexed (No Dithering)": "&Indeksowany (bez ditheringu)",
+ "Indexed (Ordered Dither)": "Indeksowany (uporządkowany &dithering)",
+ "Indonesian": "Indonezyjski",
+ "Ink": "Atrament",
+ "Ink:": "Atrament:",
+ "Inner:": "Wewnętrzna:",
+ "Insert Text": "Wstaw tekst",
+ "Interlaced": "Z przeplotem",
+ "Interpolation:": "Interpolacja:",
+ "Inverse": "&Odwrotność",
+ "Invert": "&Odwróć",
+ "Invert Color": "Odwróć kolor",
+ "Invert Mask": "Odwróć maskę",
+ "Italian": "Włoski",
+ "JPEG Options": "Opcje JPEG",
+ "JSON Data": "Dane JSON",
+ "Japanese": "Japoński",
+ "Jumble Tool": "Narzędzie mieszania pikseli",
+ "Jump to": "&Przeskocz do",
+ "Keep selection after \"Edit > Clear\" command": "Zachowaj zaznaczenie po poleceniu „Edycja > Wyczyść”",
+ "Key:": "Klawisz:",
+ "Keyboard Shortcut": "Skrót klawiaturowy",
+ "Keyboard Shortcuts": "Skróty klawiaturowe",
+ "Keyboard Shortcuts...": "&Skróty klawiaturowe…",
+ "Korean": "Koreański",
+ "LYR+": "WARST+",
+ "LYR<": "WARST<",
+ "LYR>": "WARST>",
+ "Language:": "Język:",
+ "Large Size": "&Duży rozmiar",
+ "Lasso Tool": "Narzędzie lassa",
+ "Last Frame": "&Ostatnia klatka",
+ "Launch": "Uruchom",
+ "Layer": "&Warstwa",
+ "Layer Edges": "&Krawędzie warstwy",
+ "Layer From Background": "Warstwa z tła",
+ "Layer Properties": "Właściwości warstwy",
+ "Layer Visibility": "Widoczność warstwy",
+ "Layer from Background": "&Warstwa z tła",
+ "Layers": "Warstwy",
+ "Layers:": "Warstwy:",
+ "Left": "&Lewo",
+ "Left:": "Lewa:",
+ "LibreSprite 1.2-dev": "LibreSprite 1.2-dev",
+ "Lighten": "Rozjaśnij",
+ "Limit of memory to be used\nfor undo information per sprite.\nSpecified in megabytes.": "Limit pamięci używanej\nna dane cofania dla jednego sprite’a.\nPodane w megabajtach.",
+ "Line Tool": "Narzędzie linii",
+ "Link Cels": "&Połącz cele",
+ "Links Cels": "Łączy cele",
+ "Load": "Załaduj",
+ "Load Default Palette": "Wczytaj domyślną paletę",
+ "Load Palette": "&Wczytaj paletę",
+ "Load from MSK file": "&Wczytaj z pliku MSK",
+ "LoadMask": "WczytajMaskę",
+ "Locate Configuration File": "Zlokalizuj plik konfiguracyjny",
+ "Locate Crash Folder": "Zlokalizuj folder awarii",
+ "Lock Alpha": "Zablokuj alfa",
+ "Lock Ratio": "Zablokuj proporcje",
+ "Loop through tag frames": "Zapętlaj klatki z tagami",
+ "Lossless WebP": "WebP bezstratny",
+ "Lossy WebP": "WebP stratny",
+ "Luminosity": "Jaskrawość",
+ "MB": "MB",
+ "Magic Wand Tool": "Narzędzie różdżki",
+ "Mask All": "Maskuj wszystko",
+ "Mask By Color": "Maskuj według koloru",
+ "Mask Content": "Maskuj zawartość",
+ "Matches old indexes with new indexes": "Dopasowuje stare indeksy do nowych",
+ "Maximized": "Zmaksymalizowane",
+ "Medium Size": "&Średni rozmiar",
+ "Merge Down": "&Scal w dół",
+ "Merge Down Layer": "Scal warstwę w dół",
+ "Merge Frames": "Scal klatki",
+ "Meta:": "Meta:",
+ "Method:": "Metoda:",
+ "Mirror Horizontally": "Odbij lustrzanie w poziomie",
+ "Mirror Vertically": "Odbij lustrzanie w pionie",
+ "Mode:": "Tryb:",
+ "Modifiers:": "Modyfikatory:",
+ "Modify": "&Modyfikuj",
+ "Modify Blue Component": "Modyfikuj składową niebieską",
+ "Modify Green Component": "Modyfikuj składową zieloną",
+ "Modify Red Component": "Modyfikuj składową czerwoną",
+ "Modify Selection": "Modyfikuj zaznaczenie",
+ "Move": "&Przesuń",
+ "Move Cel": "Przesuń celę",
+ "Move Selection Boundaries 1 horizontal tile left": "Przesuń granice zaznaczenia o 1 kafelek w lewo",
+ "Move Selection Boundaries 1 horizontal tile right": "Przesuń granice zaznaczenia o 1 kafelek w prawo",
+ "Move Selection Boundaries 1 pixel down": "Przesuń granice zaznaczenia o 1 piksel w dół",
+ "Move Selection Boundaries 1 pixel left": "Przesuń granice zaznaczenia o 1 piksel w lewo",
+ "Move Selection Boundaries 1 pixel right": "Przesuń granice zaznaczenia o 1 piksel w prawo",
+ "Move Selection Boundaries 1 pixel up": "Przesuń granice zaznaczenia o 1 piksel w górę",
+ "Move Selection Boundaries 1 vertical tile down": "Przesuń granice zaznaczenia o 1 kafelek w dół",
+ "Move Selection Boundaries 1 vertical tile up": "Przesuń granice zaznaczenia o 1 kafelek w górę",
+ "Move Selection Content 1 horizontal tile left": "Przesuń zawartość zaznaczenia o 1 kafelek w lewo",
+ "Move Selection Content 1 horizontal tile right": "Przesuń zawartość zaznaczenia o 1 kafelek w prawo",
+ "Move Selection Content 1 pixel down": "Przesuń zawartość zaznaczenia o 1 piksel w dół",
+ "Move Selection Content 1 pixel left": "Przesuń zawartość zaznaczenia o 1 piksel w lewo",
+ "Move Selection Content 1 pixel right": "Przesuń zawartość zaznaczenia o 1 piksel w prawo",
+ "Move Selection Content 1 pixel up": "Przesuń zawartość zaznaczenia o 1 piksel w górę",
+ "Move Selection Content 1 vertical tile down": "Przesuń zawartość zaznaczenia o 1 kafelek w dół",
+ "Move Selection Content 1 vertical tile up": "Przesuń zawartość zaznaczenia o 1 kafelek w górę",
+ "Move Tool": "Narzędzie przesuwania",
+ "Move Tools": "Narzędzia przesuwania",
+ "Multiply": "Mnożenie",
+ "Name:": "Nazwa:",
+ "Negative Black and White": "Negatyw czarno-biały",
+ "New": "&Nowy",
+ "New Brush": "Nowy &pędzel",
+ "New Empty Frame": "Nowa &pusta klatka",
+ "New File": "Nowy plik",
+ "New File...": "Nowy plik…",
+ "New Folder": "Nowy folder",
+ "New Frame": "&Nowa klatka",
+ "New Frame Tag": "Nowa etykieta klatki",
+ "New Image Layer": "Nowa warstwa obrazu",
+ "New Layer": "&Nowa warstwa",
+ "New Layer Set": "Nowy zestaw warstw",
+ "New Set": "Nowy zestaw",
+ "New Sprite": "Nowy sprite",
+ "New Sprite From Selection": "Nowy sprite z zaznaczenia",
+ "New Sprite from Selection": "&Nowy sprite z zaznaczenia",
+ "New Tag": "&Nowa etykieta",
+ "New folder": "Nowy folder",
+ "New...": "&Nowy…",
+ "Next Frame": "&Następna klatka",
+ "No": "&Nie",
+ "None": "&Brak",
+ "Normal": "Normalny",
+ "Number of colors:": "Liczba kolorów:",
+ "OK": "&OK",
+ "Onion Skin:": "Kalka (Onion Skin):",
+ "Onion Skinning": "Kalkowanie (Onion Skinning)",
+ "Opacity": "Krycie",
+ "Opacity (paint intensity)": "Nieprzezroczystość (intensywność krycia)",
+ "Opacity Step:": "Krok krycia:",
+ "Opacity:": "Nieprzezroczystość:",
+ "Open File...": "Otwórz plik…",
+ "Open Folder": "Otwórz &folder",
+ "Open In Folder": "Otwórz w folderze",
+ "Open Recent": "Otwórz &ostatnie",
+ "Open Scripts Folder": "Otwórz folder skryptów",
+ "Open Sprite": "Otwórz sprite",
+ "Open With Associated Application": "Otwórz powiązaną aplikacją",
+ "Open generated sprite sheet": "Otwórz wygenerowany arkusz sprite’ów",
+ "Open in Folder": "Otwórz w &folderze",
+ "Open the following file to debug your compilation:": "Otwórz następujący plik, aby debugować kompilację:",
+ "Open with OS": "&Otwórz w systemie",
+ "Open...": "&Otwórz…",
+ "Options": "Opcje",
+ "Output File": "Plik wyjściowy",
+ "Overlay": "Nakładka",
+ "PLAY": "ODTWÓRZ",
+ "Padding": "Dopełnienie",
+ "Paint Bucket Tool": "Narzędzie wiadra z farbą",
+ "Paint brush": "Pędzel malarski",
+ "Paint with background color": "Maluj kolorem tła",
+ "Painting Cursors": "Kursory malowania",
+ "Palette Editor": "&Edytor palety",
+ "Palette Size": "Rozmiar pa&lety",
+ "Palette entry used as\ntransparent color in each\nlayer (only for indexed images).": "Pozycja palety używana jako\nkolor przezroczysty w każdej\nwarstwie (tylko dla obrazów zindeksowanych).",
+ "Palette from Sprite": "Paleta ze sprite’a",
+ "Paste": "&Wklej",
+ "Pattern aligned to destination": "Wzór wyrównany do miejsca docelowego",
+ "Pattern aligned to source": "Wzór wyrównany do źródła",
+ "Pencil Tool": "Narzędzie ołówka",
+ "Pencil Tools": "Narzędzia ołówka",
+ "Per Tag": "Na etykietę",
+ "Percentage:": "Procent:",
+ "Perfect Traces": "Idealne ślady",
+ "Photo": "Zdjęcie",
+ "Pick foreground color": "Pobierz kolor pierwszoplanowy",
+ "Pick:": "Pobierz:",
+ "Picture": "Obrazek",
+ "Pixel Grid": "&Siatka pikseli",
+ "Pixel Grid Color:": "Kolor siatki pikseli:",
+ "Pixel Grid Opacity:": "Krycie siatki pikseli:",
+ "Pixel grid shows up when you zoom a lot": "Siatka pikseli pojawia się przy dużym powiększeniu",
+ "Pixel-Perfect": "Wyrównanie pikseli",
+ "Pixel-perfect": "Wyrównanie pikseli",
+ "Pixels:": "Piksele:",
+ "Play Animation": "&Odtwórz animację",
+ "Play Animation\n\nShortcut: Enter": "Odtwórz animację\n\nSkrót: Enter",
+ "Please attach the following file:": "Proszę załączyć następujący plik:",
+ "Point Properties": "Właściwości punktu",
+ "Polish": "Polski",
+ "Polygon Tool": "Narzędzie wielokąta",
+ "Polygonal Lasso Tool": "Narzędzie lassa wielokątnego",
+ "Portuguese": "Portugalski",
+ "Precise Cursor Color:": "Kolor kursora precyzyjnego:",
+ "Preferences": "Ustawienia",
+ "Preferences...": "&Ustawienia…",
+ "Presets": "Presety",
+ "Preview": "Podgląd",
+ "Previous Frame": "&Poprzednia klatka",
+ "Properties...": "&Właściwości…",
+ "QUIT": "ZAKOŃCZ",
+ "Quality:": "Jakość:",
+ "Quick Reference": "&Krótka ściąga",
+ "REDO": "PONÓW",
+ "RGB": "RGB",
+ "RGB Color": "&Kolor RGB",
+ "RGB Color Wheel": "Koło kolorów RGB",
+ "RGB+Alpha": "RGB+Alfa",
+ "RGBA": "&RGBA",
+ "RYB Color Wheel": "Koło kolorów RYB",
+ "Readme": "Plik Readme",
+ "Recent Files": "Ostatnie pliki",
+ "Recent files:": "Ostatnie pliki:",
+ "Recent folders:": "Ostatnie foldery:",
+ "Recover Lost Sprites...": "Odzyskaj utracone sprite’y…",
+ "Recover Session...": "Odzyskaj sesję…",
+ "Rectangle Tool": "Narzędzie prostokąta",
+ "Rectangular Marquee Tool": "Narzędzie zaznaczenia prostokątnego",
+ "Red/Blue Tint": "Odcień czerwony/niebieski",
+ "Redo": "&Ponów",
+ "Refresh": "Odśwież",
+ "Refresh Reload Skin": "&Odśwież i przeładuj skórkę",
+ "Release Notes": "Informacje o wydaniu",
+ "Reload Stock": "Przeładuj zasób",
+ "Remap": "Przemapuj",
+ "Remove": "&Usuń",
+ "Remove Frame": "&Usuń klatkę",
+ "Remove Frame Tag": "Usuń etykietę klatki",
+ "Remove Layer": "&Usuń warstwę",
+ "Remove Tag": "&Usuń etykietę",
+ "Repeat Last Export": "Powtórz &ostatni eksport",
+ "Replace Color": "Zamień kolor",
+ "Replace Color...": "Zam&ień kolor…",
+ "Replace current palette": "Zastąp bieżącą paletę",
+ "Replace current range": "Zastąp bieżący zakres",
+ "Replace selection": "Zamień zaznaczenie",
+ "Rescan Scripts": "Ponownie wczytaj skrypty",
+ "Rescan scripts": "Ponownie wczytaj skrypty",
+ "Reselect": "&Ponowne zaznaczenie",
+ "Reselect Mask": "Ponownie zaznacz maskę",
+ "Reset": "Resetuj",
+ "Reset Zoom": "Zresetuj powiększenie",
+ "Resize Layer": "Zmień rozmiar warstwy",
+ "Resize Sprite": "Zmień rozmiar sprite’a",
+ "Resize:": "Zmień rozmiar:",
+ "Reverse Frames": "&Odwróć kolejność klatek",
+ "Rewind on Stop": "Przewiń do początku po zatrzymaniu",
+ "Right": "&Prawo",
+ "Right-click:": "Prawoklik:",
+ "Right:": "Prawa:",
+ "Rotate": "O&bróć",
+ "Rotate Canvas": "&Obróć obszar roboczy",
+ "Rotate Selection": "Obróć zaznaczenie",
+ "Rotate Sprite 0°": "Obróć sprite o 0°",
+ "Rotation Algorithm": "Algorytm obrotu",
+ "Rotation Pivot": "Punkt obrotu",
+ "Rows to be added/removed in the bottom side.\nUse a negative number to remove rows.": "Wiersze do dodania/usunęcia po dolnej stronie.\nUżyj liczby ujemnej, aby usunąć wiersze.",
+ "Rows to be added/removed in the top side.\nUse a negative number to remove rows.": "Wiersze do dodania/usunęcia po górnej stronie.\nUżyj liczby ujemnej, aby usunąć wiersze.",
+ "Run Script": "Uruchom skrypt",
+ "Russian": "Rosyjski",
+ "Same Ink in All Tools": "Ten sam atrament we wszystkich narzędziach",
+ "Same in all Tools": "Ten sam w wszystkich narzędziach",
+ "Sample:": "Próbka:",
+ "Saturation": "Nasycenie",
+ "Save": "&Zapisz",
+ "Save As...": "Zapisz &jako…",
+ "Save File": "Zapisz plik",
+ "Save File As": "Zapisz plik jako",
+ "Save File Copy As": "Zapisz kopię jako",
+ "Save Mask": "Zapisz maskę",
+ "Save Palette": "Z&apisz paletę",
+ "Save as Default Palette": "Zapisz jako domyślną paletę",
+ "Save as:": "Zapisz jako:",
+ "Save to MSK file": "&Zapisz do pliku MSK",
+ "Screen": "Ekran",
+ "Screen Scaling:": "Skalowanie ekranu:",
+ "Scripting Console": "Konsola skryptów",
+ "Scripts": "S&krypty",
+ "Scroll": "Przewijanie",
+ "Scroll 1 zoomed horizontal tile left": "Przewiń 1 powiększony kafelek w poziomie w lewo",
+ "Scroll 1 zoomed horizontal tile right": "Przewiń 1 powiększony kafelek w poziomie w prawo",
+ "Scroll 1 zoomed pixel down": "Przewiń o 1 powiększony piksel w dół",
+ "Scroll 1 zoomed pixel left": "Przewiń o 1 powiększony piksel w lewo",
+ "Scroll 1 zoomed pixel right": "Przewiń o 1 powiększony piksel w prawo",
+ "Scroll 1 zoomed pixel up": "Przewiń o 1 powiększony piksel w górę",
+ "Scroll 1 zoomed vertical tile down": "Przewiń 1 powiększony kafelek pionowo w dół",
+ "Scroll 1 zoomed vertical tile up": "Przewiń 1 powiększony kafelek pionowo w górę",
+ "Scroll to center of canvas": "Przewiń do środka obszaru roboczego",
+ "Select": "Za&znacz",
+ "Select File": "Wybierz plik",
+ "Select Font": "Wybierz czcionkę",
+ "Select Tile": "Wybierz kafelek",
+ "Select Tile (Add)": "Wybierz kafelek (dodaj)",
+ "Select Tile (Subtract)": "Wybierz kafelek (odejmij)",
+ "Selected frames": "Wybrane klatki",
+ "Selected layers": "Wybrane warstwy",
+ "Selection": "Zaznaczenie",
+ "Selection Edges": "&Krawędzie zaznaczenia",
+ "Selection Tools": "Narzędzia zaznaczania",
+ "Selection as Grid": "Za&znaczenie jako siatka",
+ "Set Color Selector: Color Spectrum": "Ustaw wybór koloru: Spektrum kolorów",
+ "Set Color Selector: Color Tint/Shade/Tone": "Ustaw wybór koloru: Odcień/Przyciemnienie/Ton",
+ "Set Color Selector: RGB Color Wheel": "Ustaw wybór koloru: Koło barw RGB",
+ "Set Color Selector: RYB Color Wheel": "Ustaw wybór koloru: Koło barw RYB",
+ "Set Ink Type: Alpha Compositing": "Ustaw typ atramentu: Łączenie z alfą",
+ "Set Ink Type: Copy Color+Alpha": "Ustaw typ atramentu: Kopiuj kolor+alfa",
+ "Set Ink Type: Lock Alpha": "Ustaw typ atramentu: Zablokuj alfa",
+ "Set Ink Type: Shading": "Ustaw typ atramentu: Cieniowanie",
+ "Set Ink Type: Simple Ink": "Ustaw typ atramentu: Prosty atrament",
+ "Set Loop Section": "Ustaw sekcję za&pętlania",
+ "Set Palette": "Ustaw paletę",
+ "Set Palette Entry Size": "Ustaw rozmiar pola palety",
+ "Shade": "Cień",
+ "Shades": "Odcienie",
+ "Shading": "Cieniowanie",
+ "Shape:": "Kształt:",
+ "Shapes": "Kształty",
+ "Share": "Udostępnij",
+ "Share...": "Udostępnij…",
+ "Sheet Type:": "Typ arkusza:",
+ "Shift": "&Shift",
+ "Shortcut: ": "Skrót: ",
+ "Show": "&Pokaż",
+ "Show Brush Preview": "Pokaż podgląd pędzla",
+ "Show Extras": "Pokaż dodatki",
+ "Show Grid": "Pokaż siatkę",
+ "Show Layer Edges": "Pokaż krawędzie warstwy",
+ "Show Onion Skin": "Pokaż &efekt cebulki",
+ "Show Pixel Grid": "Pokaż siatkę pikseli",
+ "Show Selection Edges": "Pokaż krawędzie zaznaczenia",
+ "Show full file name path": "Pokaż pełną ścieżkę do pliku",
+ "Show grid": "Pokaż siatkę",
+ "Show scroll-bars in all sprite editors.": "Pokaż paski przewijania we wszystkich edytorach sprite’ów.",
+ "Show scroll-bars in sprite editor": "Pokaż paski przewijania w edytorze sprite’ów",
+ "Show the timeline automatically\nwhen a new frame or layer is added.": "Automatycznie pokazuj oś czasu\ngdy dodawana jest nowa klatka lub warstwa.",
+ "Show timeline automatically": "Pokazuj oś czasu automatycznie",
+ "Simple Ink": "Prosty atrament",
+ "Size": "Rozmiar",
+ "Size:": "Rozmiar:",
+ "Small Size": "&Mały rozmiar",
+ "Snap to Grid": "&Przylegaj do siatki",
+ "Soft Light": "Miękkie światło",
+ "Sort & Gradients": "Sortowanie i gradienty",
+ "Space": "Spacja",
+ "Spanish": "Hiszpański",
+ "Specific Color": "Konkretny kolor",
+ "Spray Speed": "Szybkość sprejowania",
+ "Spray Tool": "Narzędzie spreju",
+ "Spray Width": "Szerokość spreju",
+ "Sprite": "&Sprite",
+ "Sprite Properties": "Właściwości sprite’a",
+ "Sprite Size": "Rozmiar sprite’a",
+ "Sprite Size...": "&Rozmiar sprite’a…",
+ "Square Brush": "Pędzel kwadratowy",
+ "Subtract from selection\n(Shift+Alt)": "Odejmij od zaznaczenia\n(Shift+Alt)",
+ "Switch Colors": "Zamień kolory",
+ "Switch Pixel Perfect Mode": "Przełącz tryb wyrównania do pikseli",
+ "Switch Timeline": "Przełącz oś czasu",
+ "Symmetry Mode": "Tryb symetrii",
+ "Symmetry Options": "Opcje s&ymetrii",
+ "TIME": "CZAS",
+ "Tag Properties...": "Właściwości &etykiety…",
+ "Tags": "&Etykiety",
+ "Text": "Tekst",
+ "Text:": "Tekst:",
+ "The 'Stop' button should rewind the animation\nwhere it was started.": "Przycisk „Stop” powinien przewinąć animację\ndo miejsca, w którym została rozpoczęta.",
+ "Theme": "Motyw",
+ "Tile Mode": "Tryb kafelkowania",
+ "Tiled Mode": "&Tryb kafelkowania",
+ "Tiled in Both Axes": "Kafelkuj w &obu osiach",
+ "Tiled in X Axis": "Kafelkuj w osi &X",
+ "Tiled in Y Axis": "Kafelkuj w osi &Y",
+ "Timeline": "&Oś czasu",
+ "To:": "Do:",
+ "Toggle Fullscreen": "Przełącz tryb pełnoekranowy",
+ "Toggle Preview": "Przełącz podgląd",
+ "Toggle Touchbar": "Przełącz pasek dotykowy",
+ "Tolerance:": "Tolerancja:",
+ "Top:": "Góra:",
+ "Touchbar": "Pasek dotykowy",
+ "Transform": "Przekształć",
+ "Transparent": "&Przezroczysty",
+ "Transparent Color": "Kolor przezroczystości",
+ "Transparent Color:": "Kolor przezroczystości:",
+ "Trim": "&Przytnij",
+ "Trim Sprite": "Przytnij sprite",
+ "Tutorial": "Samouczek",
+ "Type": "Typ",
+ "Type:": "Typ:",
+ "UI Elements Scaling:": "Skalowanie elementów interfejsu:",
+ "UNDO": "COFNIJ",
+ "Uncheck this option if you would prefer to hide\nfull path on UI (e.g. useful for live streaming)": "Odznacz tę opcję, jeśli wolisz ukryć\npełną ścieżkę w interfejsie (np. przy transmisjach na żywo)",
+ "Undo": "&Cofnij",
+ "Undo History": "Historia &cofania",
+ "Undo Limit:": "Limit cofania:",
+ "Unlink": "&Rozłącz",
+ "Unlink Cel": "Rozłącz celę",
+ "Up": "&Góra",
+ "Up to parent folder\n(Backspace)": "Do folderu nadrzędnego\n(Backspace)",
+ "Use native file dialog": "Używaj systemowego okna dialogowego plików",
+ "Use native mouse cursor": "Używaj systemowego kursora myszy",
+ "User Data": "Dane użytkownika",
+ "User Data:": "Dane użytkownika:",
+ "User Interface": "Interfejs użytkownika",
+ "Vertical Strip": "Pasek pionowy",
+ "Vertical Symmetry": "Symetria pionowa",
+ "View": "&Widok",
+ "View Tools": "Narzędzia widoku",
+ "Visible": "&Widoczne",
+ "Visible layers": "Widoczne warstwy",
+ "Warning - Important": "Ostrzeżenie - Ważne",
+ "WebP Options": "Opcje WebP",
+ "When it's enabled each time you undo/redo\nthe current frame & layer will be modified\nto focus the undid/redid change.": "Jeśli jest włączone, za każdym razem gdy cofniesz/ponowisz,\nbieżąca klatka i warstwa zostaną zmienione,\naby skupić się na cofnietej/ponowionej zmianie.",
+ "White": "&Biały",
+ "Width:": "Szerokość:",
+ "Win": "Win",
+ "With this option you can recover your documents\nif the program finalizes unexpectedly.": "Dzięki tej opcji możesz odzyskać dokumenty,\njeśli program zostanie nieoczekiwanie zamknięty.",
+ "X:": "X:",
+ "Y:": "Y:",
+ "Yes": "&Tak",
+ "You are going to enter in \"Advanced Mode\".": "Zamierzasz wejść w \"Tryb zaawansowany\".",
+ "You are using a development version.": "Używasz wersji deweloperskiej.",
+ "You must restart the program to see your changes to:": "Musisz ponownie uruchomić program, aby zobaczyć wprowadzone zmiany w:",
+ "Zoom 100%": "Powiększenie 100%",
+ "Zoom 1600%": "Powiększenie 1600%",
+ "Zoom 200%": "Powiększenie 200%",
+ "Zoom 3200%": "Powiększenie 3200%",
+ "Zoom 400%": "Powiększenie 400%",
+ "Zoom 50%": "Powiększenie 50%",
+ "Zoom 800%": "Powiększenie 800%",
+ "Zoom In": "Powiększ",
+ "Zoom Level": "Poziom powiększenia",
+ "Zoom Out": "Pomniejsz",
+ "Zoom Tool": "Narzędzie powiększenia",
+ "Zoom from center with keys": "Powiększaj od środka za pomocą klawiszy",
+ "Zoom from center with scroll wheel": "Powiększaj od środka za pomocą kółka myszy",
+ "Zoom in": "Powiększ",
+ "Zoom out": "Pomniejsz",
+ "Zoom sliding two fingers up or down": "Powiększ/pomniejsz przesuwając dwoma palcami w górę lub w dół",
+ "Zoom with scroll wheel": "Powiększaj/pomniejsz kółkiem myszy",
+ "colors or less": "kolorów lub mniej",
+ "explaining what you was doing when the program crashed.": "wyjaśniając, co robiłeś, gdy program się zawiesił.",
+ "https://github.com/Veritaware/Besprited/issues": "https://github.com/Veritaware/Besprited/issues",
+ "to a bug report on:": "do raportu błędu na:"
}
diff --git a/data/languages/pt.json b/data/languages/pt.json
index c6ae2ea2b..780cf2b43 100644
--- a/data/languages/pt.json
+++ b/data/languages/pt.json
@@ -1,5 +1,4 @@
{
- "180": "&180",
"# of Columns:": "# de Colunas:",
"# of Rows:": "# de Linhas:",
"*\n Left-button: Erase with the background color in `Background' layer\n\n or transparent color in any other layer.\n*\n Right-button: Replace foreground with background color.\n ": "*\n Botão esquerdo: Apaga com a cor de fundo na camada `Fundo'\n\n ou cor transparente em qualquer outra camada.\n*\n Botão direito: Substitui a cor de primeiro plano pela cor de fundo.\n ",
@@ -9,14 +8,23 @@
"- Classic skin graphics introduced in v0.8": "- Visual clássico e gráficos introduzidos na v0.8",
"- Lead developer, graphics maintainer": "- Desenvolvedor líder, gráficos & mantenedor",
"-------- Recent Paths --------": "-------- Caminhos Recentes --------",
+ "0": "0",
"10 Minutes": "10 Minutos",
+ "100": "100",
+ "100%": "100%",
"1000%": "1000%",
"15 Minutes": "15 Minutos",
+ "16": "16",
"16x16": "16x16",
+ "180": "&180",
"2 Minutes": "2 Minutos",
+ "200%": "200%",
"25%": "25%",
"2x2": "2x2",
"30 Minutes": "30 Minutos",
+ "300%": "300%",
+ "32": "32",
+ "400%": "400%",
"4x4": "4x4",
"5 Minutes": "5 Minutos",
"50%": "50%",
@@ -42,25 +50,35 @@
"Allow non-linear history": "Permitir histórico não linear",
"Alpha": "Alfa",
"Alpha Compositing": "Composição Alfa",
+ "Alt": "Alt",
"Alternate Timeline": "Linha do Tempo Alternativa",
"Alternate Toolbar": "Barra de Ferramentas Alternativa",
"Alternate Touchbar": "Touchbar Alternativa",
+ "Angle": "Angle",
"Animated sprite editor pixel art tool": "Editor de sprites animados & ferramenta de pixel art",
+ "Animation Direction:": "Direção da animação:",
+ "Animation Loop": "Loop de animação",
+ "Anti-aliasing filter": "Filtro de anti-aliasing",
"Apply": "&Aplicar",
"Apply Zoom": "Aplicar Zoom",
"Apply to the active frame/layer (the active cel)": "Aplicar ao quadro/camada ativo (o cel ativo)",
"Array": "Matriz",
"As:": "Como:",
+ "Assigned to:": "Atribuído a:",
"Authors:": "Autores:",
"Auto": "Auto",
"Auto Select Layer": "Selecionar Camada Automaticamente",
"Automatically save recovery data every": "Salvar dados de recuperação automaticamente a cada",
+ "Available Fonts:": "Fontes disponíveis:",
+ "Available Palettes:": "Paletas disponíveis:",
"Available Themes": "Temas Disponíveis",
+ "Background": "Fundo",
"Background From Layer": "Fundo da Camada",
"Background color": "Cor de fundo",
"Background from Layer": "&Fundo da Camada",
"Background:": "Fundo:",
"BackgroundFromLayer": "FundoDaCamada",
+ "Behind sprite": "Atrás do sprite",
"Best fit Index": "Melhor ajuste de Índice",
"Best fit for texture": "Melhor ajuste para textura",
"Black": "&Preto",
@@ -75,6 +93,7 @@
"Brush Preview:": "Pré-visualização do Pincel:",
"Brush Size (in pixels)": "Tamanho do Pincel (em pixels)",
"Brush Type": "Tipo de Pincel",
+ "Brush:": "Pincel:",
"Brush: Custom Brush #1": "Pincel: Pincel Personalizado #1",
"Brush: Custom Brush #2": "Pincel: Pincel Personalizado #2",
"Brush: Custom Brush #3": "Pincel: Pincel Personalizado #3",
@@ -88,6 +107,7 @@
"Brush: Increment Size": "Pincel: Aumentar Tamanho",
"By Columns": "Por Colunas",
"By Rows": "Por Linhas",
+ "By:": "Por:",
"Cancel": "Cancelar",
"Cancel Current Operation": "Cancelar Operação Atual",
"Cancel drag and drop": "Cancelar arrastar e soltar",
@@ -101,12 +121,15 @@
"Check this option to enable hardware acceleration": "Marque esta opção para habilitar aceleração de hardware",
"Check this option to get\nthis old menus behavior.": "Marque esta opção para obter\neste comportamento antigo dos menus.",
"Checked Background": "Fundo Quadriculado",
+ "Chinese": "Chinês",
+ "Circle Brush": "Pincel circular",
"Clear": "Lim&par",
"Clear Cel": "Limpar Cel",
"Close": "&Fechar",
"Close All": "Fechar Tudo",
"Close All Files": "Fechar Todos os Arquivos",
"Close File": "Fechar Arquivo",
+ "Cmd": "Cmd",
"Color": "Cor",
"Color Burn": "Queima de Cor",
"Color Curve": "&Curva de Cor",
@@ -116,7 +139,9 @@
"Color Range": "&Intervalo de Cores",
"Color Spectrum": "Espectro de Cores",
"Color Tint/Shade/Tone": "Tonalidade/Sombra/Tom de Cor",
+ "Color Tools": "Ferramentas de cor",
"Color+Alpha": "Cor+Alfa",
+ "Color:": "Cor:",
"Color: Decrement Background Index": "Cor: Diminuir Índice de Fundo",
"Color: Decrement Foreground Index": "Cor: Diminuir Índice de Primeiro Plano",
"Color: Increment Background Index": "Cor: Aumentar Índice de Fundo",
@@ -124,9 +149,11 @@
"Colors:": "Cores:",
"Columns to be added/removed in the left side.\nUse a negative number to remove columns.": "Colunas a serem adicionadas/removidas no lado esquerdo.\nUse um número negativo para remover colunas.",
"Columns to be added/removed in the right side.\nUse a negative number to remove columns.": "Colunas a serem adicionadas/removidas no lado direito.\nUse um número negativo para remover colunas.",
+ "Compression:": "Compressão:",
"Constant Frame Rate": "Taxa de Quadros Constante",
"Contiguous": "Contíguo",
"Contour Tool": "Ferramenta Contorno",
+ "Contours": "Contornos",
"Contract": "Con&trair",
"Contributors": "Colaboradores",
"Convolution Matrix": "Matriz de &Convolução",
@@ -134,21 +161,29 @@
"Copy Alpha+Color": "Copiar Alfa+Cor",
"Copy Cel": "Copiar Cel",
"Copy Merged": "Copiar &Mesclado",
+ "Crash Report": "Relatório de falha",
"Create Palette from Current Sprite": "Criar Paleta do Sprite Atual",
"Create Palette from Current Sprite (Color Quantization)": "Criar Paleta do Sprite Atual (Quantização de Cores)",
+ "Create entries with alpha component": "Criar entradas com componente alfa",
+ "Create new palette with": "Criar nova paleta com",
"Crop": "Cor&tar",
"Crop Sprite": "Cortar Sprite",
+ "Ctrl": "Ctrl",
"Current Document": "Documento Atual",
"Current Frame": "Quadro Atual",
"Current Layer": "Camada Atual",
+ "Current layer only": "Apenas camada atual",
"Cursor": "Cursor",
"Cursors": "Cursores",
"Curve Tool": "Ferramenta Curva",
"Cut": "Co&rtar",
"Darken": "Escurecer",
+ "Default": "Padrão",
"Default Zoom": "Zoom Padrão",
+ "Delete": "Excluir",
"Delete Frame": "Deletar Quadro",
"Delete Layer": "Deletar Camada",
+ "Delete file, I've already sent it": "Excluir arquivo, já o enviei",
"Depending on the layer (background/transparent),\nthe pasted selection will be adjusted\nautomatically (opaque/transparent)": "Dependendo da camada (fundo/transparente),\na seleção colada será ajustada\nautomaticamente (opaca/transparente)",
"Deselect": "&Desselecionar",
"Deselect Mask": "Desselecionar Máscara",
@@ -157,9 +192,12 @@
"Developer Console": "Console do Desenvolvedor",
"Difference": "Diferença",
"Discard Brush": "Descartar Pincel",
+ "Do it later": "Fazer depois",
"Documentation": "Documentação",
+ "Don't show this again": "Não mostrar novamente",
"Donate": "&Doar",
"Down": "&Baixo",
+ "Drawing": "Desenho",
"Drop pixels here": "Solte pixels aqui",
"Duplicate": "&Duplicar",
"Duplicate Cel(s)": "&Duplicar Cel(s)",
@@ -180,11 +218,13 @@
"Edit": "&Editar",
"Edit Color": "Editar Cor",
"Editor": "Editor",
+ "Effects": "Efeitos",
"Ellipse Tool": "Ferramenta Elipse",
"Elliptical Marquee Tool": "Ferramenta Seleção Elíptica",
"English": "Inglês",
"Erase": "Apagar",
"Eraser Tool": "Ferramenta Borracha",
+ "Eraser Tools": "Ferramentas de borracha",
"Exclusion": "Exclusão",
"Exit": "Sai&r",
"Expand": "Ex&pandir",
@@ -196,6 +236,7 @@
"Export...": "E&xportar...",
"Extra paint bucket options": "Opções extras do balde de tinta",
"Extras": "&Extras",
+ "Extras:": "Extras:",
"Eyedropper": "Conta-gotas",
"Eyedropper Tool": "Ferramenta Conta-gotas",
"FRM+": "QDR+",
@@ -215,6 +256,10 @@
"Flip Selection Horizontal": "Espelhar Seleção Horizontalmente",
"Flip Selection Vertical": "Espelhar Seleção Verticalmente",
"Flip Vertical": "Espelhar &Verticalmente",
+ "Folder Name:": "Nome da pasta:",
+ "Font Size:": "Tamanho da fonte:",
+ "Font:": "Fonte:",
+ "Foreground": "Primeiro plano",
"Foreground color": "Cor de primeiro plano",
"Frame": "&Quadro",
"Frame Properties": "Propriedades do Quadro",
@@ -225,11 +270,15 @@
"Frame:": "Quadro:",
"Frames:": "Quadros:",
"Freehand trace algorithm": "Algoritmo de traçado à mão livre",
+ "French": "Francês",
"From:": "De:",
"Full Real-time Brush Preview": "Pré-visualização em Tempo Real Completa do Pincel",
"Fullscreen Preview": "&Pré-visualização em Tela Cheia",
+ "GIF Options": "Opções GIF",
"GPU acceleration": "Aceleração GPU",
"General": "Geral",
+ "General Options:": "Opções gerais:",
+ "German": "Alemão",
"Global": "Global",
"Go back one folder": "Voltar uma pasta",
"Go forward one folder": "Avançar uma pasta",
@@ -247,6 +296,7 @@
"Go to Previous Layer": "Ir para a Camada Anterior",
"Go to Previous tab": "Ir para a Aba Anterior",
"Go to modified frame/layer": "Ir para o quadro/camada modificado",
+ "Graph": "Gráfico",
"Gray": "Cinza",
"Gray+Alpha": "Cinza+Alfa",
"Grayscale": "&Escala de Cinza",
@@ -263,32 +313,45 @@
"Height:": "Altura:",
"Help": "A&juda",
"Hide": "Ocultar",
+ "Hindi": "Hindi",
"Home": "&Início",
"Horizontal Strip": "Tira Horizontal",
"Horizontal Symmetry": "Simetria Horizontal",
"Hue": "Matiz",
+ "Icon": "Ícone",
"Ignore Alpha Component": "Ignorar Componente Alfa",
+ "Image Hint:": "Dica de imagem:",
+ "Image Preset:": "Predefinição de imagem:",
"Import": "&Importar",
"Import Sprite Sheet": "&Importar Sprite Sheet",
+ "In front of sprite": "Na frente do sprite",
"Include partial tiles at bottom/right edges": "Incluir tiles parciais nas bordas inferior/direita",
"Indexed": "&Indexado",
"Indexed (No Dithering)": "&Indexado (Sem Dithering)",
"Indexed (Ordered Dither)": "Indexado (Dither &Ordenado)",
+ "Indonesian": "Indonésio",
"Ink": "Tinta",
+ "Ink:": "Tinta:",
"Inner:": "Interno:",
"Insert Text": "Inserir Texto",
+ "Interlaced": "Entrelaçado",
+ "Interpolation:": "Interpolação:",
"Inverse": "&Inverter",
"Invert": "&Inverter",
"Invert Color": "Inverter Cor",
"Invert Mask": "Inverter Máscara",
"Italian": "Italiano",
+ "JPEG Options": "Opções JPEG",
"JSON Data": "Dados JSON",
"Japanese": "Japonês",
"Jumble Tool": "Ferramenta Misturar",
"Jump to": "&Ir para",
"Keep selection after \"Edit > Clear\" command": "Manter seleção após o comando \"Editar > Limpar\"",
+ "Key:": "Tecla:",
+ "Keyboard Shortcut": "Atalho de teclado",
"Keyboard Shortcuts": "Atalhos de Teclado",
"Keyboard Shortcuts...": "&Atalhos de Teclado...",
+ "Korean": "Coreano",
"LYR+": "CMD+",
"LYR<": "CMD<",
"LYR>": "CMD>",
@@ -313,6 +376,7 @@
"Line Tool": "Ferramenta Linha",
"Link Cels": "&Vincular Cels",
"Links Cels": "Vincular Cels",
+ "Load": "Carregar",
"Load Default Palette": "Carregar Paleta Padrão",
"Load Palette": "Carregar Paleta",
"Load from MSK file": "&Carregar do arquivo MSK",
@@ -320,6 +384,10 @@
"Locate Configuration File": "Localizar Arquivo de Configuração",
"Locate Crash Folder": "Localizar Pasta de Crash",
"Lock Alpha": "Bloquear Alfa",
+ "Lock Ratio": "Travar proporção",
+ "Loop through tag frames": "Repetir quadros marcados",
+ "Lossless WebP": "WebP sem perdas",
+ "Lossy WebP": "WebP com perdas",
"Luminosity": "Luminosidade",
"MB": "MB",
"Magic Wand Tool": "Ferramenta Varinha Mágica",
@@ -331,14 +399,18 @@
"Medium Size": "&Tamanho Médio",
"Merge Down": "&Mesclar Abaixo",
"Merge Down Layer": "Mesclar Camada Abaixo",
+ "Merge Frames": "Mesclar quadros",
"Meta:": "Meta:",
+ "Method:": "Método:",
"Mirror Horizontally": "Espelhar Horizontalmente",
"Mirror Vertically": "Espelhar Verticalmente",
"Mode:": "Modo:",
+ "Modifiers:": "Modificadores:",
"Modify": "&Modificar",
"Modify Blue Component": "Modificar Componente Azul",
"Modify Green Component": "Modificar Componente Verde",
"Modify Red Component": "Modificar Componente Vermelho",
+ "Modify Selection": "Modificar seleção",
"Move": "&Mover",
"Move Cel": "Mover Cel",
"Move Selection Boundaries 1 horizontal tile left": "Mover Limites da Seleção 1 tile horizontal para a esquerda",
@@ -358,6 +430,7 @@
"Move Selection Content 1 vertical tile down": "Mover Conteúdo da Seleção 1 tile vertical para baixo",
"Move Selection Content 1 vertical tile up": "Mover Conteúdo da Seleção 1 tile vertical para cima",
"Move Tool": "Ferramenta Mover",
+ "Move Tools": "Ferramentas de movimento",
"Multiply": "Multiplicar",
"Name:": "Nome:",
"Negative Black and White": "Negativo Preto e Branco",
@@ -366,10 +439,13 @@
"New Empty Frame": "Novo &Quadro Vazio",
"New File": "Novo Arquivo",
"New File...": "Novo Arquivo...",
+ "New Folder": "Nova pasta",
"New Frame": "&Novo Quadro",
"New Frame Tag": "Nova Tag de Quadro",
+ "New Image Layer": "Nova camada de imagem",
"New Layer": "&Nova Camada",
"New Layer Set": "Novo Conjunto de Camadas",
+ "New Set": "Novo conjunto",
"New Sprite": "Novo Sprite",
"New Sprite From Selection": "Novo Sprite da Seleção",
"New Sprite from Selection": "&Novo Sprite da Seleção",
@@ -380,9 +456,13 @@
"No": "&Não",
"None": "&Nenhum",
"Normal": "Normal",
+ "Number of colors:": "Número de cores:",
"OK": "&OK",
+ "Onion Skin:": "Papel cebola:",
"Onion Skinning": "Onion Skinning",
+ "Opacity": "Opacidade",
"Opacity (paint intensity)": "Opacidade (intensidade da pintura)",
+ "Opacity Step:": "Passo de opacidade:",
"Opacity:": "Opacidade:",
"Open File...": "Abrir Arquivo...",
"Open Folder": "Abrir &Pasta",
@@ -393,6 +473,7 @@
"Open With Associated Application": "Abrir com Aplicativo Associado",
"Open generated sprite sheet": "Abrir sprite sheet gerado",
"Open in Folder": "Abrir na &Pasta",
+ "Open the following file to debug your compilation:": "Abra o seguinte arquivo para depurar sua compilação:",
"Open with OS": "&Abrir com o SO",
"Open...": "&Abrir...",
"Options": "Opções",
@@ -407,20 +488,31 @@
"Palette Editor": "Editor de &Paleta",
"Palette Size": "Tamanho da Pale&ta",
"Palette entry used as\ntransparent color in each\nlayer (only for indexed images).": "Entrada da paleta usada como\ncor transparente em cada\ncamada (apenas para imagens indexadas).",
+ "Palette from Sprite": "Paleta do sprite",
"Paste": "Co&lar",
"Pattern aligned to destination": "Padrão alinhado ao destino",
"Pattern aligned to source": "Padrão alinhado à fonte",
"Pencil Tool": "Ferramenta Lápis",
+ "Pencil Tools": "Ferramentas de lápis",
"Per Tag": "Por Tag",
+ "Percentage:": "Porcentagem:",
+ "Perfect Traces": "Traços perfeitos",
+ "Photo": "Foto",
"Pick foreground color": "Selecionar cor de primeiro plano",
"Pick:": "Selecionar:",
+ "Picture": "Imagem",
"Pixel Grid": "&Grade de Pixels",
"Pixel Grid Color:": "Cor da Grade de Pixels:",
"Pixel Grid Opacity:": "Opacidade da Grade de Pixels:",
"Pixel grid shows up when you zoom a lot": "A grade de pixels aparece quando você dá muito zoom",
+ "Pixel-Perfect": "Pixel-Perfect",
"Pixel-perfect": "Pixel-perfeito",
+ "Pixels:": "Pixels:",
"Play Animation": "&Reproduzir Animação",
"Play Animation\n\nShortcut: Enter": "Reproduzir Animação\n\nAtalho: Enter",
+ "Please attach the following file:": "Por favor anexe o seguinte arquivo:",
+ "Point Properties": "Propriedades do ponto",
+ "Polish": "Polonês",
"Polygon Tool": "Ferramenta Polígono",
"Polygonal Lasso Tool": "Ferramenta Laço Poligonal",
"Portuguese": "Português",
@@ -432,6 +524,7 @@
"Previous Frame": "&Quadro Anterior",
"Properties...": "&Propriedades...",
"QUIT": "SAIR",
+ "Quality:": "Qualidade:",
"Quick Reference": "Referência &Rápida",
"REDO": "REFAZER",
"RGB": "RGB",
@@ -448,10 +541,12 @@
"Recover Session...": "Recuperar Sessão...",
"Rectangle Tool": "Ferramenta Retângulo",
"Rectangular Marquee Tool": "Ferramenta Seleção Retangular",
+ "Red/Blue Tint": "Tonalidade vermelho/azul",
"Redo": "&Refazer",
"Refresh": "Atualizar",
"Refresh Reload Skin": "Atualizar && Recarregar Skin",
"Release Notes": "Notas de Lançamento",
+ "Reload Stock": "Recarregar estoque",
"Remap": "Remapear",
"Remove": "&Remover",
"Remove Frame": "&Remover Quadro",
@@ -461,6 +556,8 @@
"Repeat Last Export": "Repetir &Última Exportação",
"Replace Color": "Substituir Cor",
"Replace Color...": "Substituir Co&r...",
+ "Replace current palette": "Substituir paleta atual",
+ "Replace current range": "Substituir intervalo atual",
"Replace selection": "Substituir seleção",
"Rescan Scripts": "Reescanear Scripts",
"Rescan scripts": "Reescanear scripts",
@@ -485,6 +582,7 @@
"Rows to be added/removed in the bottom side.\nUse a negative number to remove rows.": "Linhas a serem adicionadas/removidas no lado inferior.\nUse um número negativo para remover linhas.",
"Rows to be added/removed in the top side.\nUse a negative number to remove rows.": "Linhas a serem adicionadas/removidas no lado superior.\nUse um número negativo para remover linhas.",
"Run Script": "Executar Script",
+ "Russian": "Russo",
"Same Ink in All Tools": "Mesma Tinta em Todas as Ferramentas",
"Same in all Tools": "Mesma em todas as Ferramentas",
"Sample:": "Amostra:",
@@ -497,6 +595,7 @@
"Save Mask": "Salvar Máscara",
"Save Palette": "Sal&var Paleta",
"Save as Default Palette": "Salvar como Paleta Padrão",
+ "Save as:": "Salvar como:",
"Save to MSK file": "&Salvar para arquivo MSK",
"Screen": "Tela",
"Screen Scaling:": "Escala da Tela:",
@@ -514,6 +613,7 @@
"Scroll to center of canvas": "Rolar para o centro da tela",
"Select": "Sele&cionar",
"Select File": "Selecionar Arquivo",
+ "Select Font": "Selecionar fonte",
"Select Tile": "Selecionar Tile",
"Select Tile (Add)": "Selecionar Tile (Adicionar)",
"Select Tile (Subtract)": "Selecionar Tile (Subtrair)",
@@ -521,6 +621,7 @@
"Selected layers": "Camadas selecionadas",
"Selection": "Seleção",
"Selection Edges": "&Bordas da Seleção",
+ "Selection Tools": "Ferramentas de seleção",
"Selection as Grid": "Seleção como &Grade",
"Set Color Selector: Color Spectrum": "Definir Seletor de Cor: Espectro de Cores",
"Set Color Selector: Color Tint/Shade/Tone": "Definir Seletor de Cor: Tonalidade/Sombra/Tom",
@@ -534,9 +635,11 @@
"Set Loop Section": "Definir &Seção de Loop",
"Set Palette": "Definir Paleta",
"Set Palette Entry Size": "Definir Tamanho da Entrada da Paleta",
+ "Shade": "Sombreamento",
"Shades": "Tons",
"Shading": "Sombreamento",
"Shape:": "Forma:",
+ "Shapes": "Formas",
"Share": "Compartilhar",
"Share...": "Compartilhar...",
"Sheet Type:": "Tipo de Sheet:",
@@ -557,11 +660,13 @@
"Show the timeline automatically\nwhen a new frame or layer is added.": "Mostrar a linha do tempo automaticamente\nquando um novo quadro ou camada é adicionado.",
"Show timeline automatically": "Mostrar linha do tempo automaticamente",
"Simple Ink": "Tinta Simples",
+ "Size": "Tamanho",
"Size:": "Tamanho:",
"Small Size": "&Tamanho Pequeno",
"Snap to Grid": "&Alinhar à Grade",
"Soft Light": "Luz Suave",
"Sort & Gradients": "Ordenar & Gradientes",
+ "Space": "Espaço",
"Spanish": "Espanhol",
"Specific Color": "Cor Específica",
"Spray Speed": "Velocidade do Spray",
@@ -571,6 +676,7 @@
"Sprite Properties": "Propriedades do Sprite",
"Sprite Size": "Tamanho do Sprite",
"Sprite Size...": "&Tamanho do Sprite...",
+ "Square Brush": "Pincel quadrado",
"Subtract from selection\n(Shift+Alt)": "Subtrair da seleção\n(Shift+Alt)",
"Switch Colors": "Alternar Cores",
"Switch Pixel Perfect Mode": "Alternar Modo Pixel Perfeito",
@@ -580,6 +686,8 @@
"TIME": "TEMPO",
"Tag Properties...": "Propriedades da &Tag...",
"Tags": "&Tags",
+ "Text": "Texto",
+ "Text:": "Texto:",
"The 'Stop' button should rewind the animation\nwhere it was started.": "O botão 'Parar' deve rebobinar a animação\npara onde foi iniciada.",
"Theme": "Tema",
"Tile Mode": "Modo de Tile",
@@ -594,7 +702,7 @@
"Toggle Touchbar": "Alternar Touchbar",
"Tolerance:": "Tolerância:",
"Top:": "Superior:",
- "Touchbar": "Touchbar",
+ "Touchbar": "Barra de toque",
"Transform": "Transfor&mar",
"Transparent": "&Transparente",
"Transparent Color": "Cor Transparente",
@@ -602,6 +710,7 @@
"Trim": "&Aparar",
"Trim Sprite": "Aparar Sprite",
"Tutorial": "Tutorial",
+ "Type": "Tipo",
"Type:": "Tipo:",
"UI Elements Scaling:": "Escala dos Elementos da UI:",
"UNDO": "DESFAZER",
@@ -616,19 +725,26 @@
"Use native file dialog": "Usar diálogo de arquivo nativo",
"Use native mouse cursor": "Usar cursor do mouse nativo",
"User Data": "Dados do Usuário",
+ "User Data:": "Dados do usuário:",
"User Interface": "Interface do Usuário",
"Vertical Strip": "Tira Vertical",
"Vertical Symmetry": "Simetria Vertical",
"View": "&Visualizar",
+ "View Tools": "Ferramentas de visualização",
"Visible": "&Visível",
"Visible layers": "Camadas visíveis",
+ "Warning - Important": "Aviso - Importante",
+ "WebP Options": "Opções WebP",
"When it's enabled each time you undo/redo\nthe current frame & layer will be modified\nto focus the undid/redid change.": "Quando ativado, cada vez que você desfaz/refaz\no quadro & camada atual será modificado\npara focar na mudança desfeita/refeita.",
"White": "&Branco",
"Width:": "Largura:",
+ "Win": "Win",
"With this option you can recover your documents\nif the program finalizes unexpectedly.": "Com esta opção você pode recuperar seus documentos\nse o programa finalizar inesperadamente.",
"X:": "X:",
"Y:": "Y:",
"Yes": "&Sim",
+ "You are going to enter in \"Advanced Mode\".": "Você vai entrar em \"Modo avançado\".",
+ "You are using a development version.": "Você está usando uma versão de desenvolvimento.",
"You must restart the program to see your changes to:": "Você deve reiniciar o programa para ver suas alterações em:",
"Zoom 100%": "Zoom 100%",
"Zoom 1600%": "Zoom 1600%",
@@ -646,5 +762,9 @@
"Zoom in": "Aumentar zoom",
"Zoom out": "Diminuir zoom",
"Zoom sliding two fingers up or down": "Zoom deslizando dois dedos para cima ou para baixo",
- "Zoom with scroll wheel": "Zoom com a roda de rolagem"
+ "Zoom with scroll wheel": "Zoom com a roda de rolagem",
+ "colors or less": "cores ou menos",
+ "explaining what you was doing when the program crashed.": "explicando o que você estava fazendo quando o programa travou.",
+ "https://github.com/Veritaware/Besprited/issues": "https://github.com/Veritaware/Besprited/issues",
+ "to a bug report on:": "para um relatório de bug em:"
}
diff --git a/data/languages/ru.json b/data/languages/ru.json
index 93f4e4abf..99c949b9b 100644
--- a/data/languages/ru.json
+++ b/data/languages/ru.json
@@ -1,5 +1,4 @@
{
- "180": "&180",
"# of Columns:": "# столбцов:",
"# of Rows:": "# строк:",
"*\n Left-button: Erase with the background color in `Background' layer\n\n or transparent color in any other layer.\n*\n Right-button: Replace foreground with background color.\n ": "*\n Левая кнопка: Стереть цветом фона на слое `Фон'\n\n или прозрачным цветом на любом другом слое.\n*\n Правая кнопка: Заменить передний план на цвет фона.\n ",
@@ -9,14 +8,23 @@
"- Classic skin graphics introduced in v0.8": "- Классическая тема и графика, представленные в версии 0.8",
"- Lead developer, graphics maintainer": "- Ведущий разработчик, графика и поддержка",
"-------- Recent Paths --------": "-------- Недавние пути --------",
+ "0": "0",
"10 Minutes": "10 минут",
+ "100": "100",
+ "100%": "100%",
"1000%": "1000%",
"15 Minutes": "15 минут",
+ "16": "16",
"16x16": "16x16",
+ "180": "&180",
"2 Minutes": "2 минуты",
+ "200%": "200%",
"25%": "25%",
"2x2": "2x2",
"30 Minutes": "30 минут",
+ "300%": "300%",
+ "32": "32",
+ "400%": "400%",
"4x4": "4x4",
"5 Minutes": "5 минут",
"50%": "50%",
@@ -42,25 +50,35 @@
"Allow non-linear history": "Разрешить нелинейную историю",
"Alpha": "Альфа",
"Alpha Compositing": "Альфа-композитинг",
+ "Alt": "Alt",
"Alternate Timeline": "Альтернативная шкала времени",
"Alternate Toolbar": "Альтернативная панель инструментов",
"Alternate Touchbar": "Альтернативная панель Touchbar",
+ "Angle": "Angle",
"Animated sprite editor pixel art tool": "Редактор анимированных спрайтов и инструмент пиксельной графики",
+ "Animation Direction:": "Направление анимации:",
+ "Animation Loop": "Цикл анимации",
+ "Anti-aliasing filter": "Фильтр сглаживания",
"Apply": "&Применить",
"Apply Zoom": "Применить масштаб",
"Apply to the active frame/layer (the active cel)": "Применить к активному кадру/слою (активной ячейке)",
"Array": "Массив",
"As:": "Как:",
+ "Assigned to:": "Назначено:",
"Authors:": "Авторы:",
"Auto": "Авто",
"Auto Select Layer": "Автовыбор слоя",
"Automatically save recovery data every": "Автоматически сохранять данные восстановления каждые",
+ "Available Fonts:": "Доступные шрифты:",
+ "Available Palettes:": "Доступные палитры:",
"Available Themes": "Доступные темы",
+ "Background": "Фон",
"Background From Layer": "Фон из слоя",
"Background color": "Цвет фона",
"Background from Layer": "&Фон из слоя",
"Background:": "Фон:",
"BackgroundFromLayer": "ФонИзСлоя",
+ "Behind sprite": "Позади спрайта",
"Best fit Index": "Лучшее соответствие индексу",
"Best fit for texture": "Лучшее соответствие для текстуры",
"Black": "&Чёрный",
@@ -75,6 +93,7 @@
"Brush Preview:": "Предпросмотр кисти:",
"Brush Size (in pixels)": "Размер кисти (в пикселях)",
"Brush Type": "Тип кисти",
+ "Brush:": "Кисть:",
"Brush: Custom Brush #1": "Кисть: Пользовательская кисть #1",
"Brush: Custom Brush #2": "Кисть: Пользовательская кисть #2",
"Brush: Custom Brush #3": "Кисть: Пользовательская кисть #3",
@@ -88,6 +107,7 @@
"Brush: Increment Size": "Кисть: Увеличить размер",
"By Columns": "По столбцам",
"By Rows": "По строкам",
+ "By:": "Автор:",
"Cancel": "Отмена",
"Cancel Current Operation": "Отменить текущую операцию",
"Cancel drag and drop": "Отменить перетаскивание",
@@ -101,12 +121,15 @@
"Check this option to enable hardware acceleration": "Отметьте этот вариант для включения аппаратного ускорения",
"Check this option to get\nthis old menus behavior.": "Отметьте этот вариант, чтобы вернуть\nстарое поведение меню.",
"Checked Background": "Клетчатый фон",
+ "Chinese": "Китайский",
+ "Circle Brush": "Круглая кисть",
"Clear": "О&чистить",
"Clear Cel": "Очистить ячейку",
"Close": "&Закрыть",
"Close All": "Закрыть все",
"Close All Files": "Закрыть все файлы",
"Close File": "Закрыть файл",
+ "Cmd": "Cmd",
"Color": "Цвет",
"Color Burn": "Затемнение цвета",
"Color Curve": "&Цветовая кривая",
@@ -116,7 +139,9 @@
"Color Range": "&Диапазон цветов",
"Color Spectrum": "Цветовой спектр",
"Color Tint/Shade/Tone": "Цвет оттенка/тени/тона",
+ "Color Tools": "Инструменты цвета",
"Color+Alpha": "Цвет+Альфа",
+ "Color:": "Цвет:",
"Color: Decrement Background Index": "Цвет: Уменьшить индекс фона",
"Color: Decrement Foreground Index": "Цвет: Уменьшить индекс переднего плана",
"Color: Increment Background Index": "Цвет: Увеличить индекс фона",
@@ -124,9 +149,11 @@
"Colors:": "Цвета:",
"Columns to be added/removed in the left side.\nUse a negative number to remove columns.": "Столбцы, которые будут добавлены/удалены с левой стороны.\nИспользуйте отрицательное число для удаления столбцов.",
"Columns to be added/removed in the right side.\nUse a negative number to remove columns.": "Столбцы, которые будут добавлены/удалены с правой стороны.\nИспользуйте отрицательное число для удаления столбцов.",
+ "Compression:": "Сжатие:",
"Constant Frame Rate": "Постоянная частота кадров",
"Contiguous": "Смежный",
"Contour Tool": "Инструмент контура",
+ "Contours": "Контуры",
"Contract": "&Сжать",
"Contributors": "Участники",
"Convolution Matrix": "Матрица &свертки",
@@ -134,21 +161,29 @@
"Copy Alpha+Color": "Копировать Альфа+Цвет",
"Copy Cel": "Копировать ячейку",
"Copy Merged": "Копировать &слитое",
+ "Crash Report": "Отчёт об ошибке",
"Create Palette from Current Sprite": "Создать палитру из текущего спрайта",
"Create Palette from Current Sprite (Color Quantization)": "Создать палитру из текущего спрайта (квантование цвета)",
+ "Create entries with alpha component": "Создать записи с альфа-компонентом",
+ "Create new palette with": "Создать новую палитру с",
"Crop": "О&брезать",
"Crop Sprite": "Обрезать спрайт",
+ "Ctrl": "Ctrl",
"Current Document": "Текущий документ",
"Current Frame": "Текущий кадр",
"Current Layer": "Текущий слой",
+ "Current layer only": "Только текущий слой",
"Cursor": "Курсор",
"Cursors": "Курсоры",
"Curve Tool": "Инструмент кривой",
"Cut": "Вы&резать",
"Darken": "Затемнение",
+ "Default": "По умолчанию",
"Default Zoom": "Масштаб по умолчанию",
+ "Delete": "Удалить",
"Delete Frame": "Удалить кадр",
"Delete Layer": "Удалить слой",
+ "Delete file, I've already sent it": "Удалить файл, я уже отправил его",
"Depending on the layer (background/transparent),\nthe pasted selection will be adjusted\nautomatically (opaque/transparent)": "В зависимости от слоя (фон/прозрачный),\nвставленное выделение будет автоматически\nскорректировано (непрозрачное/прозрачное)",
"Deselect": "&Снять выделение",
"Deselect Mask": "Снять маску",
@@ -157,9 +192,12 @@
"Developer Console": "Консоль разработчика",
"Difference": "Разница",
"Discard Brush": "Отбросить кисть",
+ "Do it later": "Сделать позже",
"Documentation": "Документация",
+ "Don't show this again": "Больше не показывать",
"Donate": "&Пожертвовать",
"Down": "&Вниз",
+ "Drawing": "Рисование",
"Drop pixels here": "Перетащите пиксели сюда",
"Duplicate": "&Дублировать",
"Duplicate Cel(s)": "&Дублировать ячейку(и)",
@@ -180,11 +218,13 @@
"Edit": "&Редактировать",
"Edit Color": "Редактировать цвет",
"Editor": "Редактор",
+ "Effects": "Эффекты",
"Ellipse Tool": "Инструмент эллипса",
"Elliptical Marquee Tool": "Инструмент овального выделения",
"English": "Английский",
"Erase": "Стереть",
"Eraser Tool": "Инструмент ластик",
+ "Eraser Tools": "Инструменты ластика",
"Exclusion": "Исключение",
"Exit": "В&ыйти",
"Expand": "&Расширить",
@@ -196,6 +236,7 @@
"Export...": "Эк&спорт...",
"Extra paint bucket options": "Дополнительные опции заливки",
"Extras": "&Дополнения",
+ "Extras:": "Дополнительно:",
"Eyedropper": "Пипетка",
"Eyedropper Tool": "Инструмент пипетка",
"FRM+": "КАДР+",
@@ -215,6 +256,10 @@
"Flip Selection Horizontal": "Отразить выделение по горизонтали",
"Flip Selection Vertical": "Отразить выделение по вертикали",
"Flip Vertical": "Отразить по &вертикали",
+ "Folder Name:": "Имя папки:",
+ "Font Size:": "Размер шрифта:",
+ "Font:": "Шрифт:",
+ "Foreground": "Передний план",
"Foreground color": "Цвет переднего плана",
"Frame": "&Кадр",
"Frame Properties": "Свойства кадра",
@@ -225,11 +270,15 @@
"Frame:": "Кадр:",
"Frames:": "Кадры:",
"Freehand trace algorithm": "Алгоритм трассировки от руки",
+ "French": "Французский",
"From:": "От:",
"Full Real-time Brush Preview": "Полный предпросмотр кисти в реальном времени",
"Fullscreen Preview": "&Предпросмотр на весь экран",
+ "GIF Options": "Параметры GIF",
"GPU acceleration": "Аппаратное ускорение (GPU)",
"General": "Общие",
+ "General Options:": "Общие параметры:",
+ "German": "Немецкий",
"Global": "Глобальный",
"Go back one folder": "Вернуться на одну папку назад",
"Go forward one folder": "Перейти на одну папку вперед",
@@ -247,6 +296,7 @@
"Go to Previous Layer": "Перейти к предыдущему слою",
"Go to Previous tab": "Перейти к предыдущей вкладке",
"Go to modified frame/layer": "Перейти к измененному кадру/слою",
+ "Graph": "График",
"Gray": "Серый",
"Gray+Alpha": "Серый+Альфа",
"Grayscale": "&Оттенки серого",
@@ -263,32 +313,45 @@
"Height:": "Высота:",
"Help": "&Справка",
"Hide": "Скрыть",
+ "Hindi": "Хинди",
"Home": "&Домой",
"Horizontal Strip": "Горизонтальная полоса",
"Horizontal Symmetry": "Горизонтальная симметрия",
"Hue": "Оттенок",
+ "Icon": "Значок",
"Ignore Alpha Component": "Игнорировать альфа-компонент",
+ "Image Hint:": "Подсказка изображения:",
+ "Image Preset:": "Предустановка изображения:",
"Import": "&Импорт",
"Import Sprite Sheet": "&Импортировать лист спрайтов",
+ "In front of sprite": "Перед спрайтом",
"Include partial tiles at bottom/right edges": "Включить частичные тайлы на нижних/правых краях",
"Indexed": "&Индексированный",
"Indexed (No Dithering)": "&Индексированный (без дизеринга)",
"Indexed (Ordered Dither)": "Индексированный (упорядоченный &дизеринг)",
+ "Indonesian": "Индонезийский",
"Ink": "Чернила",
+ "Ink:": "Чернила:",
"Inner:": "Внутренний:",
"Insert Text": "Вставить текст",
+ "Interlaced": "Чересстрочный",
+ "Interpolation:": "Интерполяция:",
"Inverse": "&Инверсия",
"Invert": "&Инвертировать",
"Invert Color": "Инвертировать цвет",
"Invert Mask": "Инвертировать маску",
"Italian": "Итальянский",
+ "JPEG Options": "Параметры JPEG",
"JSON Data": "Данные JSON",
"Japanese": "Японский",
"Jumble Tool": "Инструмент перемешивания",
"Jump to": "&Перейти к",
"Keep selection after \"Edit > Clear\" command": "Сохранять выделение после команды \"Правка > Очистить\"",
+ "Key:": "Клавиша:",
+ "Keyboard Shortcut": "Горячая клавиша",
"Keyboard Shortcuts": "Горячие клавиши",
"Keyboard Shortcuts...": "&Горячие клавиши...",
+ "Korean": "Корейский",
"LYR+": "СЛОЙ+",
"LYR<": "СЛОЙ<",
"LYR>": "СЛОЙ>",
@@ -313,6 +376,7 @@
"Line Tool": "Инструмент линия",
"Link Cels": "&Связать ячейки",
"Links Cels": "Связать ячейки",
+ "Load": "Загрузить",
"Load Default Palette": "Загрузить палитру по умолчанию",
"Load Palette": "З&агрузить палитру",
"Load from MSK file": "&Загрузить из файла MSK",
@@ -320,6 +384,10 @@
"Locate Configuration File": "Найти файл конфигурации",
"Locate Crash Folder": "Найти папку с отчетами об ошибках",
"Lock Alpha": "Заблокировать альфа-канал",
+ "Lock Ratio": "Блокировать пропорции",
+ "Loop through tag frames": "Повторять кадры с тегами",
+ "Lossless WebP": "WebP без потерь",
+ "Lossy WebP": "WebP с потерями",
"Luminosity": "Яркость",
"MB": "МБ",
"Magic Wand Tool": "Инструмент волшебная палочка",
@@ -331,14 +399,18 @@
"Medium Size": "&Средний размер",
"Merge Down": "&Объединить вниз",
"Merge Down Layer": "Объединить слой вниз",
+ "Merge Frames": "Объединить кадры",
"Meta:": "Метаданные:",
+ "Method:": "Метод:",
"Mirror Horizontally": "Зеркало по горизонтали",
"Mirror Vertically": "Зеркало по вертикали",
"Mode:": "Режим:",
+ "Modifiers:": "Модификаторы:",
"Modify": "&Изменить",
"Modify Blue Component": "Изменить синюю компоненту",
"Modify Green Component": "Изменить зеленую компоненту",
"Modify Red Component": "Изменить красную компоненту",
+ "Modify Selection": "Изменить выделение",
"Move": "&Переместить",
"Move Cel": "Переместить ячейку",
"Move Selection Boundaries 1 horizontal tile left": "Переместить границы выделения на 1 горизонтальный тайл влево",
@@ -358,6 +430,7 @@
"Move Selection Content 1 vertical tile down": "Переместить содержимое выделения на 1 вертикальный тайл вниз",
"Move Selection Content 1 vertical tile up": "Переместить содержимое выделения на 1 вертикальный тайл вверх",
"Move Tool": "Инструмент перемещения",
+ "Move Tools": "Инструменты перемещения",
"Multiply": "Умножение",
"Name:": "Имя:",
"Negative Black and White": "Негатив черно-белый",
@@ -366,10 +439,13 @@
"New Empty Frame": "Новый &пустой кадр",
"New File": "Новый файл",
"New File...": "Новый файл...",
+ "New Folder": "Новая папка",
"New Frame": "&Новый кадр",
"New Frame Tag": "Новая метка кадра",
+ "New Image Layer": "Новый слой изображения",
"New Layer": "&Новый слой",
"New Layer Set": "Новый набор слоев",
+ "New Set": "Новый набор",
"New Sprite": "Новый спрайт",
"New Sprite From Selection": "Новый спрайт из выделения",
"New Sprite from Selection": "&Новый спрайт из выделения",
@@ -380,9 +456,13 @@
"No": "&Нет",
"None": "&Нет",
"Normal": "Обычный",
+ "Number of colors:": "Количество цветов:",
"OK": "&OK",
+ "Onion Skin:": "Калька:",
"Onion Skinning": "Луковичная шкала",
+ "Opacity": "Непрозрачность",
"Opacity (paint intensity)": "Непрозрачность (интенсивность краски)",
+ "Opacity Step:": "Шаг непрозрачности:",
"Opacity:": "Непрозрачность:",
"Open File...": "Открыть файл...",
"Open Folder": "Открыть &папку",
@@ -393,6 +473,7 @@
"Open With Associated Application": "Открыть с помощью связанного приложения",
"Open generated sprite sheet": "Открыть сгенерированный лист спрайтов",
"Open in Folder": "Открыть в &папке",
+ "Open the following file to debug your compilation:": "Откройте следующий файл для отладки компиляции:",
"Open with OS": "&Открыть с помощью ОС",
"Open...": "&Открыть...",
"Options": "Параметры",
@@ -407,20 +488,31 @@
"Palette Editor": "&Редактор палитры",
"Palette Size": "Раз&мер палитры",
"Palette entry used as\ntransparent color in each\nlayer (only for indexed images).": "Элемент палитры, используемый как\nпрозрачный цвет в каждом\nслое (только для индексированных изображений).",
+ "Palette from Sprite": "Палитра из спрайта",
"Paste": "&Вставить",
"Pattern aligned to destination": "Шаблон выровнен по месту назначения",
"Pattern aligned to source": "Шаблон выровнен по источнику",
"Pencil Tool": "Инструмент карандаш",
+ "Pencil Tools": "Инструменты карандаша",
"Per Tag": "По метке",
+ "Percentage:": "Процент:",
+ "Perfect Traces": "Идеальные следы",
+ "Photo": "Фото",
"Pick foreground color": "Выбрать цвет переднего плана",
"Pick:": "Пипетка:",
+ "Picture": "Картинка",
"Pixel Grid": "&Пиксельная сетка",
"Pixel Grid Color:": "Цвет пиксельной сетки:",
"Pixel Grid Opacity:": "Прозрачность пиксельной сетки:",
"Pixel grid shows up when you zoom a lot": "Пиксельная сетка появляется при большом увеличении",
+ "Pixel-Perfect": "Попиксельно",
"Pixel-perfect": "Пиксельно-точно",
+ "Pixels:": "Пиксели:",
"Play Animation": "&Воспроизвести анимацию",
"Play Animation\n\nShortcut: Enter": "Воспроизвести анимацию\n\nСочетание: Enter",
+ "Please attach the following file:": "Пожалуйста, приложите следующий файл:",
+ "Point Properties": "Свойства точки",
+ "Polish": "Польский",
"Polygon Tool": "Инструмент многоугольник",
"Polygonal Lasso Tool": "Инструмент многоугольное лассо",
"Portuguese": "Португальский",
@@ -432,6 +524,7 @@
"Previous Frame": "&Предыдущий кадр",
"Properties...": "&Свойства...",
"QUIT": "Выйти",
+ "Quality:": "Качество:",
"Quick Reference": "Быстрая &справка",
"REDO": "ПОВТОРИТЬ",
"RGB": "RGB",
@@ -448,10 +541,12 @@
"Recover Session...": "Восстановить сессию...",
"Rectangle Tool": "Инструмент прямоугольник",
"Rectangular Marquee Tool": "Инструмент прямоугольное выделение",
+ "Red/Blue Tint": "Красный/синий оттенок",
"Redo": "&Повторить",
"Refresh": "Обновить",
"Refresh Reload Skin": "&Обновить и перезагрузить тему",
"Release Notes": "Примечания к выпуску",
+ "Reload Stock": "Перезагрузить запас",
"Remap": "Переотобразить",
"Remove": "&Удалить",
"Remove Frame": "&Удалить кадр",
@@ -461,6 +556,8 @@
"Repeat Last Export": "Повторить &последний экспорт",
"Replace Color": "Заменить цвет",
"Replace Color...": "За&менить цвет...",
+ "Replace current palette": "Заменить текущую палитру",
+ "Replace current range": "Заменить текущий диапазон",
"Replace selection": "Заменить выделение",
"Rescan Scripts": "Пересканировать скрипты",
"Rescan scripts": "Пересканировать скрипты",
@@ -485,6 +582,7 @@
"Rows to be added/removed in the bottom side.\nUse a negative number to remove rows.": "Строки, которые будут добавлены/удалены в нижней части.\nИспользуйте отрицательное число для удаления строк.",
"Rows to be added/removed in the top side.\nUse a negative number to remove rows.": "Строки, которые будут добавлены/удалены в верхней части.\nИспользуйте отрицательное число для удаления строк.",
"Run Script": "Запустить скрипт",
+ "Russian": "Русский",
"Same Ink in All Tools": "Одинаковое чернило во всех инструментах",
"Same in all Tools": "Одинаково во всех инструментах",
"Sample:": "Образец:",
@@ -497,6 +595,7 @@
"Save Mask": "Сохранить маску",
"Save Palette": "Со&хранить палитру",
"Save as Default Palette": "Сохранить как палитру по умолчанию",
+ "Save as:": "Сохранить как:",
"Save to MSK file": "&Сохранить в файл MSK",
"Screen": "Экран",
"Screen Scaling:": "Масштабирование экрана:",
@@ -514,6 +613,7 @@
"Scroll to center of canvas": "Прокрутить к центру холста",
"Select": "Вы&делить",
"Select File": "Выбрать файл",
+ "Select Font": "Выбрать шрифт",
"Select Tile": "Выбрать тайл",
"Select Tile (Add)": "Выбрать тайл (добавить)",
"Select Tile (Subtract)": "Выбрать тайл (вычесть)",
@@ -521,6 +621,7 @@
"Selected layers": "Выбранные слои",
"Selection": "Выделение",
"Selection Edges": "&Границы выделения",
+ "Selection Tools": "Инструменты выделения",
"Selection as Grid": "Выдел&ение как сетка",
"Set Color Selector: Color Spectrum": "Установить выбор цвета: Цветовой спектр",
"Set Color Selector: Color Tint/Shade/Tone": "Установить выбор цвета: Оттенок/Тень/Тон",
@@ -534,9 +635,11 @@
"Set Loop Section": "Установить &секцию повторения",
"Set Palette": "Установить палитру",
"Set Palette Entry Size": "Установить размер элемента палитры",
+ "Shade": "Тень",
"Shades": "Оттенки",
"Shading": "Затенение",
"Shape:": "Форма:",
+ "Shapes": "Фигуры",
"Share": "Поделиться",
"Share...": "Поделиться...",
"Sheet Type:": "Тип листа:",
@@ -557,11 +660,13 @@
"Show the timeline automatically\nwhen a new frame or layer is added.": "Автоматически показывать шкалу времени\nпри добавлении нового кадра или слоя.",
"Show timeline automatically": "Автоматически показывать шкалу времени",
"Simple Ink": "Простые чернила",
+ "Size": "Размер",
"Size:": "Размер:",
"Small Size": "&Маленький размер",
"Snap to Grid": "&Привязка к сетке",
"Soft Light": "Мягкий свет",
"Sort & Gradients": "Сортировать и градиенты",
+ "Space": "Пробел",
"Spanish": "Испанский",
"Specific Color": "Конкретный цвет",
"Spray Speed": "Скорость распыления",
@@ -571,6 +676,7 @@
"Sprite Properties": "Свойства спрайта",
"Sprite Size": "Размер спрайта",
"Sprite Size...": "&Размер спрайта...",
+ "Square Brush": "Квадратная кисть",
"Subtract from selection\n(Shift+Alt)": "Вычесть из выделения\n(Shift+Alt)",
"Switch Colors": "Поменять цвета",
"Switch Pixel Perfect Mode": "Переключить режим пиксельной точности",
@@ -580,6 +686,8 @@
"TIME": "ВРЕМЯ",
"Tag Properties...": "Свойства &метки...",
"Tags": "&Метки",
+ "Text": "Текст",
+ "Text:": "Текст:",
"The 'Stop' button should rewind the animation\nwhere it was started.": "Кнопка 'Стоп' должна перемотать анимацию\nк тому месту, где она была запущена.",
"Theme": "Тема",
"Tile Mode": "Режим тайлов",
@@ -602,6 +710,7 @@
"Trim": "&Обрезать",
"Trim Sprite": "Обрезать спрайт",
"Tutorial": "Учебник",
+ "Type": "Тип",
"Type:": "Тип:",
"UI Elements Scaling:": "Масштабирование элементов интерфейса:",
"UNDO": "ОТМЕНИТЬ",
@@ -616,19 +725,26 @@
"Use native file dialog": "Использовать системный диалог выбора файлов",
"Use native mouse cursor": "Использовать системный курсор мыши",
"User Data": "Данные пользователя",
+ "User Data:": "Пользовательские данные:",
"User Interface": "Пользовательский интерфейс",
"Vertical Strip": "Вертикальная полоса",
"Vertical Symmetry": "Вертикальная симметрия",
"View": "&Вид",
+ "View Tools": "Инструменты просмотра",
"Visible": "&Видимый",
"Visible layers": "Видимые слои",
+ "Warning - Important": "Предупреждение - Важно",
+ "WebP Options": "Параметры WebP",
"When it's enabled each time you undo/redo\nthe current frame & layer will be modified\nto focus the undid/redid change.": "Когда эта опция включена, при каждой отмене/повторе\nтекущий кадр и слой будут изменяться,\nчтобы сосредоточиться на отмененном/повторенном изменении.",
"White": "&Белый",
"Width:": "Ширина:",
+ "Win": "Win",
"With this option you can recover your documents\nif the program finalizes unexpectedly.": "С этой опцией вы можете восстановить свои документы,\nесли программа завершится неожиданно.",
"X:": "X:",
"Y:": "Y:",
"Yes": "&Да",
+ "You are going to enter in \"Advanced Mode\".": "Вы собираетесь войти в \"Расширенный режим\".",
+ "You are using a development version.": "Вы используете версию для разработчиков.",
"You must restart the program to see your changes to:": "Вы должны перезапустить программу, чтобы увидеть изменения в:",
"Zoom 100%": "Масштаб 100%",
"Zoom 1600%": "Масштаб 1600%",
@@ -646,5 +762,9 @@
"Zoom in": "Приблизить",
"Zoom out": "Отдалить",
"Zoom sliding two fingers up or down": "Масштабирование скольжением двух пальцев вверх или вниз",
- "Zoom with scroll wheel": "Масштабирование колесиком мыши"
+ "Zoom with scroll wheel": "Масштабирование колесиком мыши",
+ "colors or less": "цветов или меньше",
+ "explaining what you was doing when the program crashed.": "объясняя, что вы делали, когда программа упала.",
+ "https://github.com/Veritaware/Besprited/issues": "https://github.com/Veritaware/Besprited/issues",
+ "to a bug report on:": "к отчёту об ошибке на:"
}
diff --git a/data/languages/zh.json b/data/languages/zh.json
index a17d6b0b1..81eddf70c 100644
--- a/data/languages/zh.json
+++ b/data/languages/zh.json
@@ -1,5 +1,4 @@
{
- "180": "&180",
"# of Columns:": "列数:",
"# of Rows:": "行数:",
"*\n Left-button: Erase with the background color in `Background' layer\n\n or transparent color in any other layer.\n*\n Right-button: Replace foreground with background color.\n ": "*\n 左键:在`背景`图层使用背景色擦除\n\n 或在其他图层使用透明色擦除。\n*\n 右键:用背景色替换前景色。\n ",
@@ -9,14 +8,23 @@
"- Classic skin graphics introduced in v0.8": "- v0.8中引入的经典皮肤和图形",
"- Lead developer, graphics maintainer": "- 首席开发者,图形和维护者",
"-------- Recent Paths --------": "-------- 最近路径 --------",
+ "0": "0",
"10 Minutes": "10分钟",
+ "100": "100",
+ "100%": "100%",
"1000%": "1000%",
"15 Minutes": "15分钟",
+ "16": "16",
"16x16": "16x16",
+ "180": "&180",
"2 Minutes": "2分钟",
+ "200%": "200%",
"25%": "25%",
"2x2": "2x2",
"30 Minutes": "30分钟",
+ "300%": "300%",
+ "32": "32",
+ "400%": "400%",
"4x4": "4x4",
"5 Minutes": "5分钟",
"50%": "50%",
@@ -42,25 +50,35 @@
"Allow non-linear history": "允许非线性历史记录",
"Alpha": "Alpha",
"Alpha Compositing": "Alpha合成",
+ "Alt": "Alt",
"Alternate Timeline": "备用时间轴",
"Alternate Toolbar": "备用工具栏",
"Alternate Touchbar": "备用触控栏",
+ "Angle": "角度",
"Animated sprite editor pixel art tool": "动画精灵编辑器和像素艺术工具",
+ "Animation Direction:": "动画导演:",
+ "Animation Loop": "动画循环",
+ "Anti-aliasing filter": "抗锯齿滤镜",
"Apply": "&应用",
"Apply Zoom": "应用缩放",
"Apply to the active frame/layer (the active cel)": "应用到活动帧/图层(活动的影格)",
"Array": "阵列",
"As:": "保存为:",
+ "Assigned to:": "分配给:",
"Authors:": "作者:",
"Auto": "自动",
"Auto Select Layer": "自动选择图层",
"Automatically save recovery data every": "自动保存恢复数据,每隔",
+ "Available Fonts:": "可用字体:",
+ "Available Palettes:": "可选配色方案:",
"Available Themes": "可用主题",
+ "Background": "背景",
"Background From Layer": "从图层创建背景",
"Background color": "背景色",
"Background from Layer": "&从图层创建背景",
"Background:": "背景:",
"BackgroundFromLayer": "从图层创建背景",
+ "Behind sprite": "精灵背后",
"Best fit Index": "最佳匹配索引",
"Best fit for texture": "最佳纹理匹配",
"Black": "&黑色",
@@ -75,6 +93,7 @@
"Brush Preview:": "画笔预览:",
"Brush Size (in pixels)": "画笔大小(像素)",
"Brush Type": "画笔类型",
+ "Brush:": "刷子:",
"Brush: Custom Brush #1": "画笔:自定义画笔 #1",
"Brush: Custom Brush #2": "画笔:自定义画笔 #2",
"Brush: Custom Brush #3": "画笔:自定义画笔 #3",
@@ -88,6 +107,7 @@
"Brush: Increment Size": "画笔:增加尺寸",
"By Columns": "按列",
"By Rows": "按行",
+ "By:": "经过:",
"Cancel": "取消",
"Cancel Current Operation": "取消当前操作",
"Cancel drag and drop": "取消拖放",
@@ -101,12 +121,15 @@
"Check this option to enable hardware acceleration": "勾选此选项以启用硬件加速",
"Check this option to get\nthis old menus behavior.": "勾选此选项以获得旧菜单行为。",
"Checked Background": "方格背景",
+ "Chinese": "中国人",
+ "Circle Brush": "圆形画笔",
"Clear": "清&除",
"Clear Cel": "清除影格",
"Close": "&关闭",
"Close All": "全部关闭",
"Close All Files": "关闭所有文件",
"Close File": "关闭文件",
+ "Cmd": "Cmd",
"Color": "颜色",
"Color Burn": "颜色加深",
"Color Curve": "&色彩曲线",
@@ -116,7 +139,9 @@
"Color Range": "&颜色范围",
"Color Spectrum": "色谱",
"Color Tint/Shade/Tone": "颜色色调/阴影/色调",
+ "Color Tools": "颜色工具",
"Color+Alpha": "颜色+Alpha",
+ "Color:": "颜色:",
"Color: Decrement Background Index": "颜色:减少背景索引",
"Color: Decrement Foreground Index": "颜色:减少前景索引",
"Color: Increment Background Index": "颜色:增加背景索引",
@@ -124,9 +149,11 @@
"Colors:": "颜色:",
"Columns to be added/removed in the left side.\nUse a negative number to remove columns.": "在左侧添加/删除的列数。\n使用负数来删除列。",
"Columns to be added/removed in the right side.\nUse a negative number to remove columns.": "在右侧添加/删除的列数。\n使用负数来删除列。",
+ "Compression:": "压缩:",
"Constant Frame Rate": "恒定帧率",
"Contiguous": "连续的",
"Contour Tool": "轮廓工具",
+ "Contours": "轮廓",
"Contract": "&收缩",
"Contributors": "贡献者",
"Convolution Matrix": "卷积&矩阵",
@@ -134,21 +161,29 @@
"Copy Alpha+Color": "复制Alpha+颜色",
"Copy Cel": "复制影格",
"Copy Merged": "复制合并",
+ "Crash Report": "事故报告",
"Create Palette from Current Sprite": "从当前精灵创建调色板",
"Create Palette from Current Sprite (Color Quantization)": "从当前精灵创建调色板(颜色量化)",
+ "Create entries with alpha component": "创建带有 alpha 分量的条目",
+ "Create new palette with": "创建新调色板",
"Crop": "裁&剪",
"Crop Sprite": "裁剪精灵",
+ "Ctrl": "Ctrl",
"Current Document": "当前文档",
"Current Frame": "当前帧",
"Current Layer": "当前图层",
+ "Current layer only": "仅限当前层",
"Cursor": "光标",
"Cursors": "光标",
"Curve Tool": "曲线工具",
"Cut": "剪&切",
"Darken": "变暗",
+ "Default": "默认",
"Default Zoom": "默认缩放",
+ "Delete": "删除",
"Delete Frame": "删除帧",
"Delete Layer": "删除图层",
+ "Delete file, I've already sent it": "删除文件,我已经发送了。",
"Depending on the layer (background/transparent),\nthe pasted selection will be adjusted\nautomatically (opaque/transparent)": "根据图层(背景/透明),\n粘贴的选择将自动调整\n(不透明/透明)",
"Deselect": "&取消选择",
"Deselect Mask": "取消选择蒙版",
@@ -157,9 +192,12 @@
"Developer Console": "开发者控制台",
"Difference": "差值",
"Discard Brush": "放弃画笔",
+ "Do it later": "稍后再做",
"Documentation": "文档",
+ "Don't show this again": "不要再次显示此内容",
"Donate": "&捐赠",
"Down": "&下",
+ "Drawing": "绘画",
"Drop pixels here": "将像素拖放到此处",
"Duplicate": "&复制",
"Duplicate Cel(s)": "&复制影格",
@@ -180,11 +218,13 @@
"Edit": "&编辑",
"Edit Color": "编辑颜色",
"Editor": "编辑器",
+ "Effects": "效果",
"Ellipse Tool": "椭圆工具",
"Elliptical Marquee Tool": "椭圆选框工具",
"English": "英语",
"Erase": "擦除",
"Eraser Tool": "橡皮擦工具",
+ "Eraser Tools": "橡皮擦工具",
"Exclusion": "排除",
"Exit": "退&出",
"Expand": "&扩展",
@@ -196,6 +236,7 @@
"Export...": "导&出...",
"Extra paint bucket options": "额外油漆桶选项",
"Extras": "&额外",
+ "Extras:": "附加内容:",
"Eyedropper": "取色器",
"Eyedropper Tool": "取色器工具",
"FRM+": "帧+",
@@ -215,6 +256,10 @@
"Flip Selection Horizontal": "水平翻转选择",
"Flip Selection Vertical": "垂直翻转选择",
"Flip Vertical": "垂直翻&转",
+ "Folder Name:": "文件夹名称:",
+ "Font Size:": "字体大小:",
+ "Font:": "字体:",
+ "Foreground": "前景",
"Foreground color": "前景色",
"Frame": "&帧",
"Frame Properties": "帧属性",
@@ -225,11 +270,15 @@
"Frame:": "帧:",
"Frames:": "帧:",
"Freehand trace algorithm": "自由手绘算法",
+ "French": "法语",
"From:": "从:",
"Full Real-time Brush Preview": "完整实时画笔预览",
"Fullscreen Preview": "全屏预览",
+ "GIF Options": "GIF选项",
"GPU acceleration": "GPU加速",
"General": "通用",
+ "General Options:": "通用选项:",
+ "German": "德语",
"Global": "全局",
"Go back one folder": "返回上一级文件夹",
"Go forward one folder": "前往下一级文件夹",
@@ -247,6 +296,7 @@
"Go to Previous Layer": "转到上一个图层",
"Go to Previous tab": "转到上一个标签页",
"Go to modified frame/layer": "转到已修改的帧/图层",
+ "Graph": "图形",
"Gray": "灰度",
"Gray+Alpha": "灰度+Alpha",
"Grayscale": "&灰度",
@@ -263,32 +313,45 @@
"Height:": "高度:",
"Help": "&帮助",
"Hide": "隐藏",
+ "Hindi": "印地语",
"Home": "&主页",
"Horizontal Strip": "水平条",
"Horizontal Symmetry": "水平对称",
"Hue": "色相",
+ "Icon": "图标",
"Ignore Alpha Component": "忽略Alpha分量",
+ "Image Hint:": "图片提示:",
+ "Image Preset:": "图像预设:",
"Import": "&导入",
"Import Sprite Sheet": "&导入精灵表",
+ "In front of sprite": "在精灵前面",
"Include partial tiles at bottom/right edges": "在底部/右侧边缘包含部分瓷砖",
"Indexed": "&索引",
"Indexed (No Dithering)": "&索引(无抖动)",
"Indexed (Ordered Dither)": "索引(有序&抖动)",
+ "Indonesian": "印度尼西亚",
"Ink": "墨水",
+ "Ink:": "墨水:",
"Inner:": "内部:",
"Insert Text": "插入文本",
+ "Interlaced": "交织",
+ "Interpolation:": "插值:",
"Inverse": "&反选",
"Invert": "&反转",
"Invert Color": "反转颜色",
"Invert Mask": "反转蒙版",
"Italian": "意大利语",
+ "JPEG Options": "JPEG选项",
"JSON Data": "JSON数据",
"Japanese": "日语",
"Jumble Tool": "混合工具",
"Jump to": "&跳转到",
"Keep selection after \"Edit > Clear\" command": "在“编辑 > 清除”命令后保留选择",
+ "Key:": "钥匙:",
+ "Keyboard Shortcut": "键盘快捷键",
"Keyboard Shortcuts": "键盘快捷键",
"Keyboard Shortcuts...": "&键盘快捷键...",
+ "Korean": "韩国人",
"LYR+": "图层+",
"LYR<": "图层<",
"LYR>": "图层>",
@@ -313,6 +376,7 @@
"Line Tool": "直线工具",
"Link Cels": "&链接影格",
"Links Cels": "链接影格",
+ "Load": "加载",
"Load Default Palette": "加载默认调色板",
"Load Palette": "加&载调色板",
"Load from MSK file": "&从MSK文件加载",
@@ -320,6 +384,10 @@
"Locate Configuration File": "定位配置文件",
"Locate Crash Folder": "定位崩溃文件夹",
"Lock Alpha": "锁定Alpha",
+ "Lock Ratio": "锁定比率",
+ "Loop through tag frames": "循环浏览标签帧",
+ "Lossless WebP": "无损 WebP",
+ "Lossy WebP": "有损 WebP",
"Luminosity": "明度",
"MB": "MB",
"Magic Wand Tool": "魔棒工具",
@@ -331,14 +399,18 @@
"Medium Size": "&中尺寸",
"Merge Down": "&向下合并",
"Merge Down Layer": "向下合并图层",
+ "Merge Frames": "合并帧",
"Meta:": "元数据:",
+ "Method:": "方法:",
"Mirror Horizontally": "水平镜像",
"Mirror Vertically": "垂直镜像",
"Mode:": "模式:",
+ "Modifiers:": "修饰语:",
"Modify": "&修改",
"Modify Blue Component": "修改蓝色分量",
"Modify Green Component": "修改绿色分量",
"Modify Red Component": "修改红色分量",
+ "Modify Selection": "修改选择",
"Move": "&移动",
"Move Cel": "移动影格",
"Move Selection Boundaries 1 horizontal tile left": "将选择边界向左移动1个水平瓷砖",
@@ -358,6 +430,7 @@
"Move Selection Content 1 vertical tile down": "将选择内容向下移动1个垂直瓷砖",
"Move Selection Content 1 vertical tile up": "将选择内容向上移动1个垂直瓷砖",
"Move Tool": "移动工具",
+ "Move Tools": "移动工具",
"Multiply": "正片叠底",
"Name:": "名称:",
"Negative Black and White": "负片黑白",
@@ -366,10 +439,13 @@
"New Empty Frame": "新建&空帧",
"New File": "新建文件",
"New File...": "新建文件...",
+ "New Folder": "新建文件夹",
"New Frame": "&新建帧",
"New Frame Tag": "新建帧标记",
+ "New Image Layer": "新图像层",
"New Layer": "&新建图层",
"New Layer Set": "新建图层组",
+ "New Set": "新套装",
"New Sprite": "新建精灵",
"New Sprite From Selection": "从选择新建精灵",
"New Sprite from Selection": "&从选择新建精灵",
@@ -380,9 +456,13 @@
"No": "&否",
"None": "&无",
"Normal": "正常",
+ "Number of colors:": "颜色数量:",
"OK": "&确定",
+ "Onion Skin:": "洋葱皮:",
"Onion Skinning": "洋葱皮",
+ "Opacity": "不透明度",
"Opacity (paint intensity)": "不透明度(绘画强度)",
+ "Opacity Step:": "不透明度步长:",
"Opacity:": "不透明度:",
"Open File...": "打开文件...",
"Open Folder": "打开&文件夹",
@@ -393,6 +473,7 @@
"Open With Associated Application": "用关联的应用程序打开",
"Open generated sprite sheet": "打开生成的精灵表",
"Open in Folder": "在文件夹中打开",
+ "Open the following file to debug your compilation:": "打开以下文件以调试编译过程:",
"Open with OS": "&用操作系统打开",
"Open...": "&打开...",
"Options": "选项",
@@ -407,20 +488,31 @@
"Palette Editor": "&调色板编辑器",
"Palette Size": "调色板大&小",
"Palette entry used as\ntransparent color in each\nlayer (only for indexed images).": "在每个图层中用作\n透明颜色的调色板条目\n(仅适用于索引图像)。",
+ "Palette from Sprite": "雪碧调色板",
"Paste": "&粘贴",
"Pattern aligned to destination": "模式与目标对齐",
"Pattern aligned to source": "模式与源对齐",
"Pencil Tool": "铅笔工具",
+ "Pencil Tools": "铅笔工具",
"Per Tag": "每个标签",
+ "Percentage:": "百分比:",
+ "Perfect Traces": "完美痕迹",
+ "Photo": "照片",
"Pick foreground color": "拾取前景色",
"Pick:": "拾取:",
+ "Picture": "图片",
"Pixel Grid": "&像素网格",
"Pixel Grid Color:": "像素网格颜色:",
"Pixel Grid Opacity:": "像素网格不透明度:",
"Pixel grid shows up when you zoom a lot": "当你放大很多时,显示像素网格",
+ "Pixel-Perfect": "像素级完美",
"Pixel-perfect": "像素完美",
+ "Pixels:": "像素:",
"Play Animation": "&播放动画",
"Play Animation\n\nShortcut: Enter": "播放动画\n\n快捷键:Enter",
+ "Please attach the following file:": "请附上以下文件:",
+ "Point Properties": "点属性",
+ "Polish": "抛光",
"Polygon Tool": "多边形工具",
"Polygonal Lasso Tool": "多边形套索工具",
"Portuguese": "葡萄牙语",
@@ -432,6 +524,7 @@
"Previous Frame": "&上一帧",
"Properties...": "&属性...",
"QUIT": "退出",
+ "Quality:": "质量:",
"Quick Reference": "快速&参考",
"REDO": "重做",
"RGB": "RGB",
@@ -448,10 +541,12 @@
"Recover Session...": "恢复会话...",
"Rectangle Tool": "矩形工具",
"Rectangular Marquee Tool": "矩形选框工具",
+ "Red/Blue Tint": "红/蓝色调",
"Redo": "&重做",
"Refresh": "刷新",
"Refresh Reload Skin": "&刷新并重新加载皮肤",
"Release Notes": "发行说明",
+ "Reload Stock": "重新装弹",
"Remap": "重新映射",
"Remove": "&移除",
"Remove Frame": "&移除帧",
@@ -461,6 +556,8 @@
"Repeat Last Export": "重复&上次导出",
"Replace Color": "替换颜色",
"Replace Color...": "替换&颜色...",
+ "Replace current palette": "替换当前调色板",
+ "Replace current range": "替换当前范围",
"Replace selection": "替换选择",
"Rescan Scripts": "重新扫描脚本",
"Rescan scripts": "重新扫描脚本",
@@ -485,6 +582,7 @@
"Rows to be added/removed in the bottom side.\nUse a negative number to remove rows.": "在底部添加/删除的行数。\n使用负数来删除行。",
"Rows to be added/removed in the top side.\nUse a negative number to remove rows.": "在顶部添加/删除的行数。\n使用负数来删除行。",
"Run Script": "运行脚本",
+ "Russian": "俄语",
"Same Ink in All Tools": "所有工具使用相同的墨水",
"Same in all Tools": "所有工具相同",
"Sample:": "取样:",
@@ -497,6 +595,7 @@
"Save Mask": "保存蒙版",
"Save Palette": "保&存调色板",
"Save as Default Palette": "保存为默认调色板",
+ "Save as:": "另存为:",
"Save to MSK file": "&保存为MSK文件",
"Screen": "屏幕",
"Screen Scaling:": "屏幕缩放:",
@@ -514,6 +613,7 @@
"Scroll to center of canvas": "滚动到画布中心",
"Select": "选&择",
"Select File": "选择文件",
+ "Select Font": "选择字体",
"Select Tile": "选择瓷砖",
"Select Tile (Add)": "选择瓷砖(添加)",
"Select Tile (Subtract)": "选择瓷砖(减去)",
@@ -521,6 +621,7 @@
"Selected layers": "选择的图层",
"Selection": "选择",
"Selection Edges": "&选择边缘",
+ "Selection Tools": "选择工具",
"Selection as Grid": "选择为网格",
"Set Color Selector: Color Spectrum": "设置颜色选择器:色谱",
"Set Color Selector: Color Tint/Shade/Tone": "设置颜色选择器:颜色色调/阴影/色调",
@@ -534,9 +635,11 @@
"Set Loop Section": "设置&循环部分",
"Set Palette": "设置调色板",
"Set Palette Entry Size": "设置调色板条目大小",
+ "Shade": "阴影",
"Shades": "阴影",
"Shading": "阴影",
"Shape:": "形状:",
+ "Shapes": "形状",
"Share": "分享",
"Share...": "分享...",
"Sheet Type:": "表格类型:",
@@ -557,11 +660,13 @@
"Show the timeline automatically\nwhen a new frame or layer is added.": "当添加新帧或图层时\n自动显示时间轴。",
"Show timeline automatically": "自动显示时间轴",
"Simple Ink": "简单墨水",
+ "Size": "尺寸",
"Size:": "大小:",
"Small Size": "&小尺寸",
"Snap to Grid": "&对齐网格",
"Soft Light": "柔光",
"Sort & Gradients": "排序 & 渐变",
+ "Space": "Space",
"Spanish": "西班牙语",
"Specific Color": "特定颜色",
"Spray Speed": "喷枪速度",
@@ -571,6 +676,7 @@
"Sprite Properties": "精灵属性",
"Sprite Size": "精灵大小",
"Sprite Size...": "&精灵大小...",
+ "Square Brush": "方形刷",
"Subtract from selection\n(Shift+Alt)": "从选择中减去\n(Shift+Alt)",
"Switch Colors": "切换颜色",
"Switch Pixel Perfect Mode": "切换像素完美模式",
@@ -580,6 +686,8 @@
"TIME": "时间",
"Tag Properties...": "标记&属性...",
"Tags": "&标记",
+ "Text": "文本",
+ "Text:": "文本:",
"The 'Stop' button should rewind the animation\nwhere it was started.": "“停止”按钮应将动画倒回到开始的位置。",
"Theme": "主题",
"Tile Mode": "平铺模式",
@@ -602,6 +710,7 @@
"Trim": "&裁剪",
"Trim Sprite": "裁剪精灵",
"Tutorial": "教程",
+ "Type": "类型",
"Type:": "类型:",
"UI Elements Scaling:": "UI元素缩放:",
"UNDO": "撤销",
@@ -616,19 +725,26 @@
"Use native file dialog": "使用原生文件对话框",
"Use native mouse cursor": "使用原生鼠标光标",
"User Data": "用户数据",
+ "User Data:": "用户数据:",
"User Interface": "用户界面",
"Vertical Strip": "垂直条",
"Vertical Symmetry": "垂直对称",
"View": "&视图",
+ "View Tools": "查看工具",
"Visible": "&可见",
"Visible layers": "可见图层",
+ "Warning - Important": "警告 - 重要",
+ "WebP Options": "WebP 选项",
"When it's enabled each time you undo/redo\nthe current frame & layer will be modified\nto focus the undid/redid change.": "启用后,每次撤销/重做时,当前帧和图层将被修改,以聚焦于撤销/重做的更改。",
"White": "&白色",
"Width:": "宽度:",
+ "Win": "Win",
"With this option you can recover your documents\nif the program finalizes unexpectedly.": "使用此选项,如果程序意外终止,您可以恢复文档。",
"X:": "X:",
"Y:": "Y:",
"Yes": "&是",
+ "You are going to enter in \"Advanced Mode\".": "您即将进入“高级模式”。",
+ "You are using a development version.": "您使用的是开发版本。",
"You must restart the program to see your changes to:": "您必须重新启动程序以查看更改:",
"Zoom 100%": "缩放100%",
"Zoom 1600%": "缩放1600%",
@@ -646,5 +762,9 @@
"Zoom in": "放大",
"Zoom out": "缩小",
"Zoom sliding two fingers up or down": "用两个手指上下滑动来缩放",
- "Zoom with scroll wheel": "使用滚轮缩放"
-}
+ "Zoom with scroll wheel": "使用滚轮缩放",
+ "colors or less": "颜色或更少",
+ "explaining what you was doing when the program crashed.": "解释一下程序崩溃时你正在做什么。",
+ "https://github.com/Veritaware/Besprited/issues": "https://github.com/Veritaware/Besprited/issues",
+ "to a bug report on:": "提交一份错误报告:"
+}
\ No newline at end of file
diff --git a/data/scripts/examples/http.js b/data/scripts/examples/http.js
index dbc1270f1..7624687c5 100644
--- a/data/scripts/examples/http.js
+++ b/data/scripts/examples/http.js
@@ -1,6 +1,6 @@
const methods = {
init(){
- storage.fetch("https://raw.githubusercontent.com/LibreSprite/LibreSprite/master/README.md", "read_me");
+ storage.fetch("https://raw.githubusercontent.com/Veritaware/Besprited/trunk/README.md", "read_me");
},
read_me_fetch(){
console.log("Read me: " + storage.get("read_me"));
diff --git a/data/skins/classic/sheet.png b/data/skins/classic/sheet.png
index 7575b0178..d6d928987 100644
Binary files a/data/skins/classic/sheet.png and b/data/skins/classic/sheet.png differ
diff --git a/data/skins/default/README.md b/data/skins/default/README.md
index 702f3e34e..9dffef481 100644
--- a/data/skins/default/README.md
+++ b/data/skins/default/README.md
@@ -8,23 +8,23 @@ by BlackRaven#7273(Discord)
### 1. Download the zip file or clone the repository
### 2. Put it in your skin folder
-Open LibreSprite.
+Open Besprited.
Go to *Edit/Preferences/Theme*, you can see there are 2 paths at the top of the *Available Themes* list.
*For example on windows:*
-> -- C:\Users\\AppData\Roaming\Libresprite\data\skins\ --
+> -- C:\Users\\AppData\Roaming\Besprited\data\skins\ --
-> -- C:\Program Files\Libresprite\data\skins\ --
+> -- C:\Program Files\Besprited\data\skins\ --
*or linux:*
-> -- /home//.config/libresprite/data/skins/ --
+> -- /home//.config/besprited/data/skins/ --
-> -- /tmp/.mount_LibreShxiPnk/usr/bin/data/skins/ -- (You should need be root user to modify this directory)
+> -- /tmp/.mount_BespritShxiPnk/usr/bin/data/skins/ -- (You should need be root user to modify this directory)
Choose 1 of them then click *Open Folder*. Copy the file you've just downloaded here and extract it.
### 3. Apply theme
-Open the *Preferences/Theme* dialog again, choose a theme from the list, click *Select* then click *OK*. Restart Libresprite to make the change happen.
+Open the *Preferences/Theme* dialog again, choose a theme from the list, click *Select* then click *OK*. Restart Besprited to make the change happen.
diff --git a/data/skins/default/sheet.png b/data/skins/default/sheet.png
index 21520ef6a..84c89f489 100644
Binary files a/data/skins/default/sheet.png and b/data/skins/default/sheet.png differ
diff --git a/data/splash.ase b/data/splash.ase
index 6ab787d77..ab234e7be 100644
Binary files a/data/splash.ase and b/data/splash.ase differ
diff --git a/data/splash.png b/data/splash.png
index 4e19af01c..de5eef9d2 100644
Binary files a/data/splash.png and b/data/splash.png differ
diff --git a/data/widgets/send_crash.xml b/data/widgets/send_crash.xml
index 9ec639879..eb080a23d 100644
--- a/data/widgets/send_crash.xml
+++ b/data/widgets/send_crash.xml
@@ -8,7 +8,7 @@
-
+
diff --git a/desktop/CMakeLists.txt b/desktop/CMakeLists.txt
index 71a5e3aee..2edad5337 100644
--- a/desktop/CMakeLists.txt
+++ b/desktop/CMakeLists.txt
@@ -8,7 +8,7 @@
if(UNIX AND NOT APPLE)
# Desktop shortcut
- install(FILES libresprite.desktop
+ install(FILES besprited.desktop
DESTINATION share/applications)
# Icons
@@ -16,15 +16,15 @@ if(UNIX AND NOT APPLE)
DESTINATION share)
# Package gallery integration
- install(FILES io.github.libresprite.libresprite.metainfo.xml
+ install(FILES com.veritaware.besprited.metainfo.xml
DESTINATION share/metainfo)
# GNOME Thumbnailer
install(FILES mime/aseprite.xml
DESTINATION share/mime/packages)
- install(PROGRAMS libresprite-thumbnailer
+ install(PROGRAMS besprited-thumbnailer
DESTINATION bin)
- install(FILES gnome/libresprite.thumbnailer
+ install(FILES gnome/besprited.thumbnailer
DESTINATION share/thumbnailers)
# Qt Thumbnailer
diff --git a/desktop/Info.plist b/desktop/Info.plist
index 38170ebad..ff65e09d6 100644
--- a/desktop/Info.plist
+++ b/desktop/Info.plist
@@ -3,7 +3,7 @@
CFBundleName
- LibreSprite
+ Besprited
CFBundleVersion
1.0.0
@@ -15,10 +15,10 @@
1.0.0
CFBundleIdentifier
- libresprite.libresprite.github
+ com.veritaware.besprited
CFBundleIconFile
- libresprite.icns
+ besprited.icns
CFBundlePackageType
APPL
@@ -28,7 +28,7 @@
CFBundleTypeIconFile
- libresprite.icns
+ besprited.icns
CFBundleTypeName
JPEG image
CFBundleTypeRole
@@ -41,7 +41,7 @@
CFBundleTypeIconFile
- libresprite.icns
+ besprited.icns
CFBundleTypeName
PNG image
CFBundleTypeRole
diff --git a/desktop/besprited-thumbnailer b/desktop/besprited-thumbnailer
new file mode 100644
index 000000000..0e6b11272
--- /dev/null
+++ b/desktop/besprited-thumbnailer
@@ -0,0 +1,19 @@
+#!/usr/bin/sh
+
+# LibreSprite Desktop Integration Module
+# Copyright (C) 2016 Gabriel Rauter
+#
+# Licensed under the the MIT License (https://opensource.org/licenses/MIT).
+
+if [ $# -ge 2 -a $# -lt 4 ]; then
+ mkdir -p /tmp/Besprited
+ filename=${1//\//.}$RANDOM
+ if [ $# -eq 2 ]; then
+ besprited -b --frame-range "0,0" $1 --sheet /tmp/Besprited/$filename.png
+ elif [ $# -eq 3 ]; then
+ besprited -b --frame-range "0,0" $1 --shrink-to "$3,$3" --sheet /tmp/Besprited/$filename.png
+ fi
+ mkdir -p $(dirname "$2"); mv /tmp/Besprited/$filename.png $2;
+else
+ echo "Parameters for besprited thumbnailer are: inputfile outputfile [size]"
+fi
diff --git a/desktop/libresprite.desktop b/desktop/besprited.desktop
similarity index 77%
rename from desktop/libresprite.desktop
rename to desktop/besprited.desktop
index 3d43032d5..94be80963 100644
--- a/desktop/libresprite.desktop
+++ b/desktop/besprited.desktop
@@ -1,14 +1,14 @@
[Desktop Entry]
Type=Application
Encoding=UTF-8
-Name=LibreSprite
+Name=Besprited
GenericName=Sprite Editor
Comment=Animated sprite editor & pixel art tool
-Icon=libresprite
+Icon=besprited
Categories=Graphics;2DGraphics;RasterGraphics;
-Exec=libresprite %U
-TryExec=libresprite
+Exec=besprited %U
+TryExec=besprited
Terminal=false
StartupNotify=false
-StartupWMClass=libresprite
+StartupWMClass=besprited
MimeType=image/bmp;image/gif;image/jpeg;image/png;image/x-pcx;image/x-tga;image/vnd.microsoft.icon;video/x-flic;image/webp;image/x-aseprite;
diff --git a/desktop/io.github.libresprite.libresprite.metainfo.xml b/desktop/com.veritaware.besprited.metainfo.xml
similarity index 61%
rename from desktop/io.github.libresprite.libresprite.metainfo.xml
rename to desktop/com.veritaware.besprited.metainfo.xml
index cdb507fff..fffa1f010 100644
--- a/desktop/io.github.libresprite.libresprite.metainfo.xml
+++ b/desktop/com.veritaware.besprited.metainfo.xml
@@ -1,12 +1,12 @@
- io.github.libresprite.libresprite
+ com.veritaware.besprited
CC0-1.0
GPL-2.0
- LibreSprite
+ Besprited
Animated sprite editor and pixel art tool
- LibreSprite lets you create 2D animations for videogames. From sprites, to pixel-art, retro style graphics, and whatever you like about the 8-bit (and 16-bit) era.
+ Besprited lets you create 2D animations for videogames. From sprites, to pixel-art, retro style graphics, and whatever you like about the 8-bit (and 16-bit) era.
It offers the following features:
Real-time animation previews
@@ -19,16 +19,16 @@
Several file types supported for your sprites and animations
- https://libresprite.github.io
- https://github.com/LibreSprite/LibreSprite/issues/
- https://github.com/LibreSprite/LibreSprite/
- https://github.com/LibreSprite/LibreSprite/blob/master/CONTRIBUTING.md
- libresprite.desktop
+ https://github.com/Veritaware/Besprited
+ https://github.com/Veritaware/Besprited/issues/
+ https://github.com/Veritaware/Besprited/
+ https://github.com/Veritaware/Besprited/blob/trunk/CONTRIBUTING.md
+ besprited.desktop
-
+
- libresprite
+ besprited
drawing
@@ -42,7 +42,7 @@
- https://raw.githubusercontent.com/LibreSprite/LibreSprite/master/desktop/screenshot.png
+ https://raw.githubusercontent.com/Veritaware/Besprited/trunk/desktop/screenshot.png
The canvas
diff --git a/desktop/gnome/libresprite.thumbnailer b/desktop/gnome/besprited.thumbnailer
similarity index 69%
rename from desktop/gnome/libresprite.thumbnailer
rename to desktop/gnome/besprited.thumbnailer
index 320b1f212..42da6f38c 100644
--- a/desktop/gnome/libresprite.thumbnailer
+++ b/desktop/gnome/besprited.thumbnailer
@@ -1,4 +1,4 @@
[Thumbnailer Entry]
-TryExec=libresprite-thumbnailer
-Exec=libresprite-thumbnailer %i %o %s
+TryExec=besprited-thumbnailer
+Exec=besprited-thumbnailer %i %o %s
MimeType=image/bmp;image/gif;image/jpeg;image/png;image/x-pcx;image/x-tga;image/vnd.microsoft.icon;video/x-flic;image/webp;image/x-aseprite;
diff --git a/desktop/icons/hicolor/16x16/apps/besprited.png b/desktop/icons/hicolor/16x16/apps/besprited.png
new file mode 100644
index 000000000..a45036eff
Binary files /dev/null and b/desktop/icons/hicolor/16x16/apps/besprited.png differ
diff --git a/desktop/icons/hicolor/16x16/apps/libresprite.png b/desktop/icons/hicolor/16x16/apps/libresprite.png
deleted file mode 100644
index 21a6e0d65..000000000
Binary files a/desktop/icons/hicolor/16x16/apps/libresprite.png and /dev/null differ
diff --git a/desktop/icons/hicolor/256x256/apps/besprited.png b/desktop/icons/hicolor/256x256/apps/besprited.png
new file mode 100644
index 000000000..917d2f211
Binary files /dev/null and b/desktop/icons/hicolor/256x256/apps/besprited.png differ
diff --git a/desktop/icons/hicolor/256x256/apps/libresprite.png b/desktop/icons/hicolor/256x256/apps/libresprite.png
deleted file mode 100644
index 85dd44ed1..000000000
Binary files a/desktop/icons/hicolor/256x256/apps/libresprite.png and /dev/null differ
diff --git a/desktop/icons/hicolor/32x32/apps/besprited.png b/desktop/icons/hicolor/32x32/apps/besprited.png
new file mode 100644
index 000000000..2f0bb11e2
Binary files /dev/null and b/desktop/icons/hicolor/32x32/apps/besprited.png differ
diff --git a/desktop/icons/hicolor/32x32/apps/libresprite.png b/desktop/icons/hicolor/32x32/apps/libresprite.png
deleted file mode 100644
index ad59b0e8e..000000000
Binary files a/desktop/icons/hicolor/32x32/apps/libresprite.png and /dev/null differ
diff --git a/desktop/icons/hicolor/48x48/apps/besprited.png b/desktop/icons/hicolor/48x48/apps/besprited.png
new file mode 100644
index 000000000..512fe1440
Binary files /dev/null and b/desktop/icons/hicolor/48x48/apps/besprited.png differ
diff --git a/desktop/icons/hicolor/48x48/apps/libresprite.png b/desktop/icons/hicolor/48x48/apps/libresprite.png
deleted file mode 100644
index 5550d7d3d..000000000
Binary files a/desktop/icons/hicolor/48x48/apps/libresprite.png and /dev/null differ
diff --git a/desktop/icons/hicolor/64x64/apps/besprited.png b/desktop/icons/hicolor/64x64/apps/besprited.png
new file mode 100644
index 000000000..b30ce5892
Binary files /dev/null and b/desktop/icons/hicolor/64x64/apps/besprited.png differ
diff --git a/desktop/icons/hicolor/64x64/apps/libresprite.png b/desktop/icons/hicolor/64x64/apps/libresprite.png
deleted file mode 100644
index 14750ca07..000000000
Binary files a/desktop/icons/hicolor/64x64/apps/libresprite.png and /dev/null differ
diff --git a/desktop/kde/CMakeLists.txt b/desktop/kde/CMakeLists.txt
index 149855f77..8989a8230 100644
--- a/desktop/kde/CMakeLists.txt
+++ b/desktop/kde/CMakeLists.txt
@@ -5,7 +5,7 @@
cmake_minimum_required(VERSION 4.1)
set(QT_MIN_VERSION "5.2.0")
-project(librespritethumbnail)
+project(bespritedthumbnail)
find_package(ECM REQUIRED NO_MODULE)
set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
set(KDE_INSTALL_DIRS_NO_DEPRECATED, TRUE)
@@ -17,7 +17,7 @@ include(KDECompilerSettings)
find_package(KF5 REQUIRED COMPONENTS KIO)
add_definitions(${QT_DEFINITIONS} -DQT_USE_FAST_CONCATENATION -DQT_USE_FAST_OPERATOR_PLUS)
set(KDE_INSTALL_USE_QT_SYS_PATHS)
-add_library(librespritethumbnail MODULE aseprite_thumb_creator.cpp)
-target_link_libraries(librespritethumbnail KF5::KIOWidgets)
-install(TARGETS librespritethumbnail DESTINATION ${PLUGIN_INSTALL_DIR})
-install(FILES librespritethumbnail.desktop DESTINATION ${SERVICES_INSTALL_DIR})
+add_library(bespritedthumbnail MODULE aseprite_thumb_creator.cpp)
+target_link_libraries(bespritedthumbnail KF5::KIOWidgets)
+install(TARGETS bespritedthumbnail DESTINATION ${PLUGIN_INSTALL_DIR})
+install(FILES bespritedthumbnail.desktop DESTINATION ${SERVICES_INSTALL_DIR})
diff --git a/desktop/kde/librespritethumbnail.desktop b/desktop/kde/bespritedthumbnail.desktop
similarity index 79%
rename from desktop/kde/librespritethumbnail.desktop
rename to desktop/kde/bespritedthumbnail.desktop
index abe0e757e..e9d5eed84 100644
--- a/desktop/kde/librespritethumbnail.desktop
+++ b/desktop/kde/bespritedthumbnail.desktop
@@ -1,8 +1,8 @@
[Desktop Entry]
Type=Service
-Name=LibreSprite Pixel Art
+Name=Besprited Pixel Art
MimeType=image/bmp;image/gif;image/jpeg;image/png;image/x-pcx;image/x-tga;image/vnd.microsoft.icon;video/x-flic;image/webp;image/x-aseprite;
X-KDE-ServiceTypes=ThumbCreator
-X-KDE-Library=librespritethumbnail
+X-KDE-Library=bespritedthumbnail
CacheThumbnail=true
ThumbnailerVersion=1
diff --git a/desktop/libresprite-thumbnailer b/desktop/libresprite-thumbnailer
deleted file mode 100755
index b5f67497f..000000000
--- a/desktop/libresprite-thumbnailer
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/usr/bin/sh
-
-# LibreSprite Desktop Integration Module
-# Copyright (C) 2016 Gabriel Rauter
-#
-# Licensed under the the MIT License (https://opensource.org/licenses/MIT).
-
-if [ $# -ge 2 -a $# -lt 4 ]; then
- mkdir -p /tmp/LibreSprite
- filename=${1//\//.}$RANDOM
- if [ $# -eq 2 ]; then
- libresprite -b --frame-range "0,0" $1 --sheet /tmp/LibreSprite/$filename.png
- elif [ $# -eq 3 ]; then
- libresprite -b --frame-range "0,0" $1 --shrink-to "$3,$3" --sheet /tmp/LibreSprite/$filename.png
- fi
- mkdir -p $(dirname "$2"); mv /tmp/LibreSprite/$filename.png $2;
-else
- echo "Parameters for libresprite thumbnailer are: inputfile outputfile [size]"
-fi
diff --git a/docs/branding.png b/docs/branding.png
new file mode 100644
index 000000000..de8dafd05
Binary files /dev/null and b/docs/branding.png differ
diff --git a/docs/btn_discord.png b/docs/btn_discord.png
new file mode 100644
index 000000000..bed0f2337
Binary files /dev/null and b/docs/btn_discord.png differ
diff --git a/docs/btn_ko-fi.png b/docs/btn_ko-fi.png
new file mode 100644
index 000000000..568b7b955
Binary files /dev/null and b/docs/btn_ko-fi.png differ
diff --git a/docs/sec_1.png b/docs/sec_1.png
new file mode 100644
index 000000000..7242c9ace
Binary files /dev/null and b/docs/sec_1.png differ
diff --git a/docs/sec_2.png b/docs/sec_2.png
new file mode 100644
index 000000000..6cc1b876a
Binary files /dev/null and b/docs/sec_2.png differ
diff --git a/docs/sec_3.png b/docs/sec_3.png
new file mode 100644
index 000000000..e176538c1
Binary files /dev/null and b/docs/sec_3.png differ
diff --git a/emscripten/CMakeLists.txt b/emscripten/CMakeLists.txt
index e72c937dd..608923f1f 100644
--- a/emscripten/CMakeLists.txt
+++ b/emscripten/CMakeLists.txt
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 4.1)
-project(LibreSprite C CXX)
+project(Besprited C CXX)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
@@ -701,9 +701,9 @@ set(SRC_FILES
${SRC}/undo/undo_history.cpp
)
-add_executable(libresprite ${SRC_FILES})
+add_executable(besprited ${SRC_FILES})
-target_link_libraries( libresprite
+target_link_libraries( besprited
SDL2
SDL2_image
SDL2_ttf
diff --git a/emscripten/index.html b/emscripten/index.html
index 0e4e7aff2..577a08ec8 100644
--- a/emscripten/index.html
+++ b/emscripten/index.html
@@ -3,7 +3,7 @@
- LibreSprite 1.2-dev
+ Besprited 1.0-dev