mirror of
https://github.com/Jguer/yay.git
synced 2025-06-25 00:03:32 -04:00
Compare commits
No commits in common. "next" and "v12.3.0" have entirely different histories.
@ -1,26 +0,0 @@
|
|||||||
# Use the jguer/yay-builder image as a parent image with archlinux
|
|
||||||
FROM docker.io/jguer/yay-builder
|
|
||||||
|
|
||||||
# Install extra packages (pacman-contrib and fish)
|
|
||||||
RUN sudo pacman -Syu --noconfirm pacman-contrib fish git-delta openssh bat go
|
|
||||||
|
|
||||||
# Set passwordless sudo for the docker user
|
|
||||||
RUN echo "docker ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers.d/docker
|
|
||||||
|
|
||||||
# Create a non-root user and switch to it
|
|
||||||
USER docker
|
|
||||||
|
|
||||||
# Install xgotext
|
|
||||||
RUN go install github.com/leonelquinteros/gotext/cli/xgotext@latest
|
|
||||||
|
|
||||||
# Add /app/bin to the PATH
|
|
||||||
ENV PATH="/app/bin:$PATH"
|
|
||||||
|
|
||||||
# add /home/docker/go/bin to the PATH
|
|
||||||
ENV PATH="/home/docker/go/bin:$PATH"
|
|
||||||
|
|
||||||
# Set the working directory
|
|
||||||
WORKDIR /workspace
|
|
||||||
|
|
||||||
# Command to run when starting the container
|
|
||||||
CMD ["bash"]
|
|
@ -1,14 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "Existing Dockerfile",
|
|
||||||
"build": {
|
|
||||||
"context": "..",
|
|
||||||
"dockerfile": "../.devcontainer/Dockerfile"
|
|
||||||
},
|
|
||||||
"customizations": {
|
|
||||||
"vscode": {
|
|
||||||
"extensions": [
|
|
||||||
"golang.go"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
15
.github/dependabot.yml
vendored
15
.github/dependabot.yml
vendored
@ -1,15 +0,0 @@
|
|||||||
# To get started with Dependabot version updates, you'll need to specify which
|
|
||||||
# package ecosystems to update and where the package manifests are located.
|
|
||||||
# Please see the documentation for all configuration options:
|
|
||||||
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
|
|
||||||
|
|
||||||
version: 2
|
|
||||||
updates:
|
|
||||||
- package-ecosystem: "gomod" # See documentation for possible values
|
|
||||||
directory: "/" # Location of package manifests
|
|
||||||
schedule:
|
|
||||||
interval: "weekly"
|
|
||||||
groups:
|
|
||||||
go-all:
|
|
||||||
patterns:
|
|
||||||
- '*'
|
|
116
.github/workflows/builder-image.yml
vendored
116
.github/workflows/builder-image.yml
vendored
@ -1,12 +1,12 @@
|
|||||||
name: Builder Image
|
name: Builder image
|
||||||
|
|
||||||
on:
|
on:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: "0 3 * * 1" # Every Monday at 3 AM
|
- cron: "0 3 * * 1"
|
||||||
push:
|
push:
|
||||||
paths:
|
paths:
|
||||||
- "ci.Dockerfile"
|
- "ci.Dockerfile"
|
||||||
- ".github/workflows/builder-image.yml"
|
- "**/builder-image.yml"
|
||||||
|
|
||||||
env:
|
env:
|
||||||
REGISTRY_IMAGE: jguer/yay-builder
|
REGISTRY_IMAGE: jguer/yay-builder
|
||||||
@ -15,129 +15,95 @@ jobs:
|
|||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: true
|
||||||
matrix:
|
matrix:
|
||||||
platform:
|
platform:
|
||||||
- linux/amd64
|
- linux/amd64
|
||||||
- linux/arm/v7
|
- linux/arm/v7
|
||||||
- linux/arm64
|
- linux/arm64
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
- name: Docker meta
|
||||||
|
id: meta
|
||||||
|
uses: docker/metadata-action@v4
|
||||||
|
with:
|
||||||
|
images: ${{ env.REGISTRY_IMAGE }}
|
||||||
|
tags: |
|
||||||
|
type=raw,value=latest
|
||||||
- name: Set up QEMU
|
- name: Set up QEMU
|
||||||
uses: docker/setup-qemu-action@v3
|
uses: docker/setup-qemu-action@v2
|
||||||
|
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v3
|
uses: docker/setup-buildx-action@v2
|
||||||
|
|
||||||
- name: Login to Docker Hub
|
- name: Login to Docker Hub
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v2
|
||||||
with:
|
with:
|
||||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Login to GitHub Container Registry
|
- name: Login to GitHub Container Registry
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v2
|
||||||
with:
|
with:
|
||||||
registry: ghcr.io
|
registry: ghcr.io
|
||||||
username: ${{ github.repository_owner }}
|
username: ${{ github.repository_owner }}
|
||||||
password: ${{ secrets.GITHUB_TOKEN }}
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Extract metadata for Docker
|
|
||||||
id: meta
|
|
||||||
uses: docker/metadata-action@v5
|
|
||||||
with:
|
|
||||||
images: |
|
|
||||||
${{ env.REGISTRY_IMAGE }}
|
|
||||||
ghcr.io/${{ env.REGISTRY_IMAGE }}
|
|
||||||
tags: |
|
|
||||||
type=raw,value=latest
|
|
||||||
type=sha,format=long
|
|
||||||
|
|
||||||
- name: Build and push by digest
|
- name: Build and push by digest
|
||||||
id: build
|
id: build
|
||||||
uses: docker/build-push-action@v5
|
uses: docker/build-push-action@v4
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
file: ci.Dockerfile
|
file: ci.Dockerfile
|
||||||
platforms: ${{ matrix.platform }}
|
platforms: ${{ matrix.platform }}
|
||||||
labels: ${{ steps.meta.outputs.labels }}
|
labels: ${{ steps.meta.outputs.labels }}
|
||||||
outputs: type=image,name=${{ env.REGISTRY_IMAGE }},push-by-digest=true,name-canonical=true,push=true
|
outputs: |
|
||||||
|
type=image,name=${{ env.REGISTRY_IMAGE }},push-by-digest=true,name-canonical=true,push=true
|
||||||
- name: Export digest
|
- name: Export digest
|
||||||
run: |
|
run: |
|
||||||
mkdir -p /tmp/digests
|
mkdir -p /tmp/digests
|
||||||
digest="${{ steps.build.outputs.digest }}"
|
digest="${{ steps.build.outputs.digest }}"
|
||||||
echo -n "$digest" > "/tmp/digests/$(echo "${{ matrix.platform }}" | tr '/' '_')"
|
touch "/tmp/digests/${digest#sha256:}"
|
||||||
|
|
||||||
- name: Upload digest
|
- name: Upload digest
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: digest-${{ matrix.platform == 'linux/amd64' && 'amd64' || matrix.platform == 'linux/arm/v7' && 'armv7' || 'arm64' }}
|
name: digests
|
||||||
path: /tmp/digests/*
|
path: /tmp/digests/*
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
retention-days: 1
|
retention-days: 1
|
||||||
|
|
||||||
merge:
|
merge:
|
||||||
needs: [build]
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
needs:
|
||||||
|
- build
|
||||||
steps:
|
steps:
|
||||||
- name: Download digests
|
- name: Download digests
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
pattern: digest-*
|
name: digests
|
||||||
merge-multiple: true
|
|
||||||
path: /tmp/digests
|
path: /tmp/digests
|
||||||
|
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v3
|
uses: docker/setup-buildx-action@v2
|
||||||
|
- name: Docker meta
|
||||||
|
id: meta
|
||||||
|
uses: docker/metadata-action@v4
|
||||||
|
with:
|
||||||
|
images: ${{ env.REGISTRY_IMAGE }}
|
||||||
|
tags: |
|
||||||
|
type=raw,value=latest
|
||||||
- name: Login to Docker Hub
|
- name: Login to Docker Hub
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v2
|
||||||
with:
|
with:
|
||||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Login to GitHub Container Registry
|
- name: Login to GitHub Container Registry
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v2
|
||||||
with:
|
with:
|
||||||
registry: ghcr.io
|
registry: ghcr.io
|
||||||
username: ${{ github.repository_owner }}
|
username: ${{ github.repository_owner }}
|
||||||
password: ${{ secrets.GITHUB_TOKEN }}
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
- name: Create manifest list and push
|
||||||
- name: Extract metadata for Docker
|
working-directory: /tmp/digests
|
||||||
id: meta
|
|
||||||
uses: docker/metadata-action@v5
|
|
||||||
with:
|
|
||||||
images: |
|
|
||||||
${{ env.REGISTRY_IMAGE }}
|
|
||||||
ghcr.io/${{ env.REGISTRY_IMAGE }}
|
|
||||||
tags: |
|
|
||||||
type=raw,value=latest
|
|
||||||
type=sha,format=short
|
|
||||||
|
|
||||||
- name: Create and push manifest list
|
|
||||||
env:
|
|
||||||
DOCKER_CLI_EXPERIMENTAL: enabled
|
|
||||||
run: |
|
run: |
|
||||||
# Extract Docker Hub tags
|
docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \
|
||||||
DH_TAGS=$(echo '${{ steps.meta.outputs.tags }}' | grep -v "^ghcr.io" | xargs -I {} echo "-t {}")
|
$(printf '${{ env.REGISTRY_IMAGE }}@sha256:%s ' *)
|
||||||
|
|
||||||
# Extract GitHub Container Registry tags
|
|
||||||
GHCR_TAGS=$(echo '${{ steps.meta.outputs.tags }}' | grep "^ghcr.io" | xargs -I {} echo "-t {}")
|
|
||||||
|
|
||||||
# Create a manifest list using the image digests from /tmp/digests/*
|
|
||||||
DIGESTS=$(for file in /tmp/digests/*; do
|
|
||||||
echo -n "${{ env.REGISTRY_IMAGE }}@$(cat $file) "
|
|
||||||
done)
|
|
||||||
|
|
||||||
# Create the manifest list for Docker Hub
|
|
||||||
docker buildx imagetools create $DH_TAGS $DIGESTS
|
|
||||||
|
|
||||||
# Create the manifest list for GitHub Container Registry
|
|
||||||
docker buildx imagetools create $GHCR_TAGS $DIGESTS
|
|
||||||
|
|
||||||
- name: Inspect image
|
- name: Inspect image
|
||||||
run: |
|
run: |
|
||||||
docker buildx imagetools inspect ${{ env.REGISTRY_IMAGE }}:latest
|
docker buildx imagetools inspect ${{ env.REGISTRY_IMAGE }}:${{ steps.meta.outputs.version }}
|
||||||
|
92
.github/workflows/multiarch-build.yml
vendored
92
.github/workflows/multiarch-build.yml
vendored
@ -1,5 +1,4 @@
|
|||||||
name: Build Release
|
name: Build Release
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
tags:
|
tags:
|
||||||
@ -9,7 +8,8 @@ jobs:
|
|||||||
build-releases:
|
build-releases:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
arch: ["linux/amd64 x86_64", "linux/arm/v7 armv7h", "linux/arm64 aarch64"]
|
arch:
|
||||||
|
["linux/amd64 x86_64", "linux/arm/v7 armv7h", "linux/arm64 aarch64"]
|
||||||
name: Build ${{ matrix.arch }}
|
name: Build ${{ matrix.arch }}
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
@ -17,28 +17,24 @@ jobs:
|
|||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
- name: Set up QEMU
|
- name: Set up QEMU
|
||||||
uses: docker/setup-qemu-action@v3
|
uses: docker/setup-qemu-action@v2
|
||||||
|
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v3
|
uses: docker/setup-buildx-action@v2
|
||||||
|
|
||||||
- name: Login to Docker Hub
|
- name: Login to Docker Hub
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v2
|
||||||
with:
|
with:
|
||||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Read info
|
- name: Read info
|
||||||
id: tags
|
id: tags
|
||||||
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT
|
echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\/v/}
|
||||||
echo "TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
|
echo ::set-output name=TAG::${GITHUB_REF/refs\/tags\//}
|
||||||
arch="${{ matrix.arch }}"
|
arch="${{ matrix.arch }}"
|
||||||
echo "PLATFORM=${arch%% *}" >> $GITHUB_OUTPUT
|
echo ::set-output name=PLATFORM::${arch%% *}
|
||||||
echo "ARCH=${arch##* }" >> $GITHUB_OUTPUT
|
echo ::set-output name=ARCH::${arch##* }
|
||||||
|
|
||||||
- name: Build ${{ matrix.arch }} release
|
- name: Build ${{ matrix.arch }} release
|
||||||
run: |
|
run: |
|
||||||
mkdir artifacts
|
mkdir artifacts
|
||||||
@ -49,44 +45,74 @@ jobs:
|
|||||||
-t yay:${{ steps.tags.outputs.arch }} . --load
|
-t yay:${{ steps.tags.outputs.arch }} . --load
|
||||||
make docker-release ARCH=${{ steps.tags.outputs.arch }} VERSION=${{ steps.tags.outputs.version }} PREFIX="/usr"
|
make docker-release ARCH=${{ steps.tags.outputs.arch }} VERSION=${{ steps.tags.outputs.version }} PREFIX="/usr"
|
||||||
mv *.tar.gz artifacts
|
mv *.tar.gz artifacts
|
||||||
|
- uses: actions/upload-artifact@v2
|
||||||
- uses: actions/upload-artifact@v4
|
|
||||||
with:
|
with:
|
||||||
name: yay_${{ steps.tags.outputs.arch }}
|
name: yay_${{ steps.tags.outputs.arch }}
|
||||||
path: artifacts
|
path: artifacts
|
||||||
|
|
||||||
create_release:
|
create_release:
|
||||||
name: Create release from this build
|
name: Create release from this build
|
||||||
needs: [build-releases]
|
needs: [build-releases]
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
permissions:
|
|
||||||
contents: write
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
- name: Read info
|
- name: Read info
|
||||||
id: tags
|
id: tags
|
||||||
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT
|
echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\/v/}
|
||||||
echo "TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
|
echo ::set-output name=TAG::${GITHUB_REF/refs\/tags\//}
|
||||||
|
- uses: actions/download-artifact@v2
|
||||||
- uses: actions/download-artifact@v4
|
|
||||||
with:
|
with:
|
||||||
pattern: yay_*
|
name: yay_x86_64
|
||||||
merge-multiple: true
|
- uses: actions/download-artifact@v2
|
||||||
|
with:
|
||||||
|
name: yay_armv7h
|
||||||
|
- uses: actions/download-artifact@v2
|
||||||
|
with:
|
||||||
|
name: yay_aarch64
|
||||||
- name: Create Release
|
- name: Create Release
|
||||||
|
id: create_release
|
||||||
|
uses: actions/create-release@master
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
run: |
|
with:
|
||||||
gh release create ${{ steps.tags.outputs.tag }} \
|
tag_name: ${{ steps.tags.outputs.tag }}
|
||||||
--title "${{ steps.tags.outputs.tag }}" \
|
release_name: ${{ steps.tags.outputs.tag }}
|
||||||
--generate-notes \
|
draft: false
|
||||||
./yay_${{ steps.tags.outputs.version }}_*.tar.gz
|
prerelease: false
|
||||||
|
- name: Upload x86_64 asset
|
||||||
|
id: upload-release-asset-x86_64
|
||||||
|
uses: actions/upload-release-asset@v1
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
with:
|
||||||
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
||||||
|
asset_path: ./yay_${{ steps.tags.outputs.version }}_x86_64.tar.gz
|
||||||
|
asset_name: yay_${{ steps.tags.outputs.version }}_x86_64.tar.gz
|
||||||
|
asset_content_type: application/tar+gzip
|
||||||
|
- name: Upload armv7h asset
|
||||||
|
id: upload-release-asset-armv7h
|
||||||
|
uses: actions/upload-release-asset@v1
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
with:
|
||||||
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
||||||
|
asset_path: ./yay_${{ steps.tags.outputs.version }}_armv7h.tar.gz
|
||||||
|
asset_name: yay_${{ steps.tags.outputs.version }}_armv7h.tar.gz
|
||||||
|
asset_content_type: application/tar+gzip
|
||||||
|
- name: Upload aarch64 asset
|
||||||
|
id: upload-release-asset-aarch64
|
||||||
|
uses: actions/upload-release-asset@v1
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
with:
|
||||||
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
||||||
|
asset_path: ./yay_${{ steps.tags.outputs.version }}_aarch64.tar.gz
|
||||||
|
asset_name: yay_${{ steps.tags.outputs.version }}_aarch64.tar.gz
|
||||||
|
asset_content_type: application/tar+gzip
|
||||||
- name: Release Notary Action
|
- name: Release Notary Action
|
||||||
uses: docker://aevea/release-notary:latest
|
uses: docker://aevea/release-notary:latest
|
||||||
env:
|
env:
|
||||||
|
2
.github/workflows/testing-git.yml
vendored
2
.github/workflows/testing-git.yml
vendored
@ -12,7 +12,7 @@ jobs:
|
|||||||
name: Lint and test yay (-git)
|
name: Lint and test yay (-git)
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container:
|
container:
|
||||||
image: ghcr.io/jguer/yay-builder:latest
|
image: jguer/yay-builder:latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: actions/cache@v3
|
- uses: actions/cache@v3
|
||||||
|
18
.github/workflows/testing.yml
vendored
18
.github/workflows/testing.yml
vendored
@ -7,7 +7,7 @@ jobs:
|
|||||||
name: Lint and test yay
|
name: Lint and test yay
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container:
|
container:
|
||||||
image: ghcr.io/jguer/yay-builder:latest
|
image: jguer/yay-builder:latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: actions/cache@v3
|
- uses: actions/cache@v3
|
||||||
@ -18,11 +18,10 @@ jobs:
|
|||||||
${{ runner.os }}-go-
|
${{ runner.os }}-go-
|
||||||
- name: Lint
|
- name: Lint
|
||||||
env:
|
env:
|
||||||
GOFLAGS: -buildvcs=false -tags=next
|
GOFLAGS: -buildvcs=false
|
||||||
run: /app/bin/golangci-lint run -v ./...
|
run: /app/bin/golangci-lint run ./...
|
||||||
- name: Run Build and Tests
|
- name: Run Build and Tests
|
||||||
run: make test
|
run: make test
|
||||||
|
|
||||||
- name: Run Integration Tests
|
- name: Run Integration Tests
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
run: |
|
run: |
|
||||||
@ -31,14 +30,3 @@ jobs:
|
|||||||
cp -r ~/go/ /home/yay/go/ &&
|
cp -r ~/go/ /home/yay/go/ &&
|
||||||
chown -R yay:yay /home/yay/go/ &&
|
chown -R yay:yay /home/yay/go/ &&
|
||||||
su yay -c "make test-integration"
|
su yay -c "make test-integration"
|
||||||
- name: Build yay Artifact
|
|
||||||
env:
|
|
||||||
GOFLAGS: -buildvcs=false -tags=next
|
|
||||||
run: make
|
|
||||||
- name: Upload yay Artifact
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: yay
|
|
||||||
path: ./yay
|
|
||||||
if-no-files-found: error
|
|
||||||
overwrite: true
|
|
2
.gitignore
vendored
2
.gitignore
vendored
@ -30,5 +30,3 @@ qemu-*
|
|||||||
*.pprof
|
*.pprof
|
||||||
|
|
||||||
node_modules/
|
node_modules/
|
||||||
xgotext
|
|
||||||
.devcontainer/
|
|
152
.golangci.yml
152
.golangci.yml
@ -1,31 +1,4 @@
|
|||||||
version: "2"
|
linters-settings:
|
||||||
run:
|
|
||||||
go: "1.20"
|
|
||||||
linters:
|
|
||||||
default: none
|
|
||||||
enable:
|
|
||||||
- bodyclose
|
|
||||||
- dogsled
|
|
||||||
- dupl
|
|
||||||
- errcheck
|
|
||||||
- errorlint
|
|
||||||
- gochecknoinits
|
|
||||||
- gocritic
|
|
||||||
- goprintffuncname
|
|
||||||
- gosec
|
|
||||||
- govet
|
|
||||||
- ineffassign
|
|
||||||
- lll
|
|
||||||
- misspell
|
|
||||||
- nakedret
|
|
||||||
- noctx
|
|
||||||
- nolintlint
|
|
||||||
- staticcheck
|
|
||||||
- unconvert
|
|
||||||
- unparam
|
|
||||||
- unused
|
|
||||||
- whitespace
|
|
||||||
settings:
|
|
||||||
dupl:
|
dupl:
|
||||||
threshold: 100
|
threshold: 100
|
||||||
funlen:
|
funlen:
|
||||||
@ -43,52 +16,93 @@ linters:
|
|||||||
- style
|
- style
|
||||||
gocyclo:
|
gocyclo:
|
||||||
min-complexity: 15
|
min-complexity: 15
|
||||||
|
goimports:
|
||||||
|
local-prefixes: github.com/Jguer/yay/v12
|
||||||
|
gomnd:
|
||||||
|
checks:
|
||||||
|
- argument
|
||||||
|
- case
|
||||||
|
- condition
|
||||||
|
- return
|
||||||
|
ignored-numbers:
|
||||||
|
- "0"
|
||||||
|
- "1"
|
||||||
|
- "2"
|
||||||
|
- "3"
|
||||||
|
ignored-functions:
|
||||||
|
- strings.SplitN
|
||||||
|
govet:
|
||||||
|
check-shadowing: true
|
||||||
lll:
|
lll:
|
||||||
line-length: 140
|
line-length: 140
|
||||||
misspell:
|
misspell:
|
||||||
locale: US
|
locale: US
|
||||||
nolintlint:
|
nolintlint:
|
||||||
require-explanation: false
|
allow-unused: false # report any unused nolint directives
|
||||||
require-specific: false
|
require-explanation: false # don't require an explanation for nolint directives
|
||||||
allow-unused: false
|
require-specific: false # don't require nolint directives to be specific about which linter is being skipped
|
||||||
exclusions:
|
|
||||||
generated: lax
|
linters:
|
||||||
presets:
|
# please, do not use `enable-all`: it's deprecated and will be removed soon.
|
||||||
- comments
|
# inverted configuration with `enable-all` and `disable` is not scalable during updates of golangci-lint
|
||||||
- common-false-positives
|
disable-all: true
|
||||||
- legacy
|
|
||||||
- std-error-handling
|
|
||||||
rules:
|
|
||||||
- linters:
|
|
||||||
- dupl
|
|
||||||
- errcheck
|
|
||||||
- errorlint
|
|
||||||
- gochecknoinits
|
|
||||||
- gocritic
|
|
||||||
- godot
|
|
||||||
- govet
|
|
||||||
- lll
|
|
||||||
- revive
|
|
||||||
- staticcheck
|
|
||||||
- wsl
|
|
||||||
path: (.+)_test.go
|
|
||||||
- path: (.+)\.go$
|
|
||||||
text: G204
|
|
||||||
paths:
|
|
||||||
- third_party$
|
|
||||||
- builtin$
|
|
||||||
- examples$
|
|
||||||
formatters:
|
|
||||||
enable:
|
enable:
|
||||||
|
- forbidigo
|
||||||
|
- bodyclose
|
||||||
|
- dogsled
|
||||||
|
- dupl
|
||||||
|
- errorlint
|
||||||
|
- errcheck
|
||||||
|
- exportloopref
|
||||||
|
# - funlen # TOFIX
|
||||||
|
- gochecknoinits
|
||||||
|
# - goconst # TOFIX
|
||||||
|
- gocritic
|
||||||
|
# - gocyclo # TOFIX
|
||||||
- gofmt
|
- gofmt
|
||||||
- goimports
|
- goimports
|
||||||
settings:
|
# - gomnd # TOFIX
|
||||||
goimports:
|
- goprintffuncname
|
||||||
local-prefixes:
|
- gosec
|
||||||
- github.com/Jguer/yay/v12
|
- gosimple
|
||||||
exclusions:
|
- govet
|
||||||
generated: lax
|
- ineffassign
|
||||||
paths:
|
- lll
|
||||||
- third_party$
|
- misspell
|
||||||
- builtin$
|
- nakedret
|
||||||
- examples$
|
- noctx
|
||||||
|
- nolintlint
|
||||||
|
- staticcheck
|
||||||
|
- stylecheck
|
||||||
|
- typecheck
|
||||||
|
- unconvert
|
||||||
|
- unparam
|
||||||
|
- unused
|
||||||
|
- whitespace
|
||||||
|
|
||||||
|
run:
|
||||||
|
go: "1.20"
|
||||||
|
timeout: "10m"
|
||||||
|
forbidigo:
|
||||||
|
forbid:
|
||||||
|
- p: ^fmt\.Print.*$
|
||||||
|
msg: Do not commit print statements.
|
||||||
|
|
||||||
|
issues:
|
||||||
|
exclude-rules:
|
||||||
|
- path: (.+)_test.go
|
||||||
|
linters:
|
||||||
|
- lll
|
||||||
|
- revive
|
||||||
|
- wsl
|
||||||
|
- govet
|
||||||
|
- godot
|
||||||
|
- errcheck
|
||||||
|
- stylecheck
|
||||||
|
- dupl
|
||||||
|
- gocritic
|
||||||
|
- gochecknoinits
|
||||||
|
- errorlint
|
||||||
|
|
||||||
|
exclude:
|
||||||
|
- G204
|
||||||
|
7
.vscode/settings.json
vendored
7
.vscode/settings.json
vendored
@ -1,7 +0,0 @@
|
|||||||
{
|
|
||||||
"go.lintTool": "golangci-lint",
|
|
||||||
"gopls": {
|
|
||||||
"formatting.gofumpt": true,
|
|
||||||
"formatting.local": "github.com/Jguer/yay/v12"
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,4 +1,4 @@
|
|||||||
FROM ghcr.io/jguer/yay-builder:latest
|
FROM docker.io/jguer/yay-builder:latest
|
||||||
LABEL maintainer="Jguer,docker@jguer.space"
|
LABEL maintainer="Jguer,docker@jguer.space"
|
||||||
|
|
||||||
ARG VERSION
|
ARG VERSION
|
||||||
|
9
Makefile
9
Makefile
@ -26,7 +26,8 @@ MOFILES := $(POFILES:.po=.mo)
|
|||||||
|
|
||||||
FLAGS ?= -trimpath -mod=readonly -modcacherw
|
FLAGS ?= -trimpath -mod=readonly -modcacherw
|
||||||
EXTRA_FLAGS ?= -buildmode=pie
|
EXTRA_FLAGS ?= -buildmode=pie
|
||||||
LDFLAGS := -X "main.yayVersion=${VERSION}" -X "main.localePath=${SYSTEMLOCALEPATH}" -linkmode=external -compressdwarf=false
|
LDFLAGS := -X "main.yayVersion=${VERSION}" -X "main.localePath=${SYSTEMLOCALEPATH}" -linkmode=external
|
||||||
|
FLAGS += $(shell pacman -T 'pacman-git' >/dev/null 2>&1 && echo "-tags next")
|
||||||
|
|
||||||
RELEASE_DIR := ${PKGNAME}_${VERSION}_${ARCH}
|
RELEASE_DIR := ${PKGNAME}_${VERSION}_${ARCH}
|
||||||
PACKAGE := $(RELEASE_DIR).tar.gz
|
PACKAGE := $(RELEASE_DIR).tar.gz
|
||||||
@ -69,7 +70,7 @@ docker-release-all:
|
|||||||
make docker-release-aarch64 ARCH=aarch64
|
make docker-release-aarch64 ARCH=aarch64
|
||||||
|
|
||||||
docker-release:
|
docker-release:
|
||||||
docker create --name yay-$(ARCH) yay:${ARCH} /bin/sh
|
docker create --name yay-$(ARCH) yay:${ARCH}
|
||||||
docker cp yay-$(ARCH):/app/${PACKAGE} $(PACKAGE)
|
docker cp yay-$(ARCH):/app/${PACKAGE} $(PACKAGE)
|
||||||
docker container rm yay-$(ARCH)
|
docker container rm yay-$(ARCH)
|
||||||
|
|
||||||
@ -82,7 +83,9 @@ docker-build:
|
|||||||
|
|
||||||
.PHONY: lint
|
.PHONY: lint
|
||||||
lint:
|
lint:
|
||||||
GOFLAGS="$(FLAGS)" golangci-lint run ./...
|
$(GO) vet $(FLAGS) ./...
|
||||||
|
@test -z "$$(gofmt -l $(SOURCES))" || (echo "Files need to be linted. Use make fmt" && false)
|
||||||
|
golangci-lint run ./...
|
||||||
|
|
||||||
.PHONY: fmt
|
.PHONY: fmt
|
||||||
fmt:
|
fmt:
|
||||||
|
31
README.md
31
README.md
@ -30,18 +30,15 @@ Yet Another Yogurt - An AUR Helper Written in Go
|
|||||||
|
|
||||||
If you are migrating from another AUR helper, you can simply install Yay with that helper.
|
If you are migrating from another AUR helper, you can simply install Yay with that helper.
|
||||||
|
|
||||||
> [!WARNING]
|
|
||||||
> We are using `sudo` in these examples, you can switch that out for a different privilege escalation tool.
|
|
||||||
|
|
||||||
### Source
|
### Source
|
||||||
|
|
||||||
The initial installation of Yay can be done by cloning the PKGBUILD and
|
The initial installation of Yay can be done by cloning the PKGBUILD and
|
||||||
building with makepkg:
|
building with makepkg:
|
||||||
|
|
||||||
We make sure we have the `base-devel` package group installed.
|
Before you begin, make sure you have the `base-devel` package group installed.
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
sudo pacman -S --needed git base-devel
|
pacman -S --needed git base-devel
|
||||||
git clone https://aur.archlinux.org/yay.git
|
git clone https://aur.archlinux.org/yay.git
|
||||||
cd yay
|
cd yay
|
||||||
makepkg -si
|
makepkg -si
|
||||||
@ -50,7 +47,7 @@ makepkg -si
|
|||||||
If you want to do all of this at once, we can chain the commands like so:
|
If you want to do all of this at once, we can chain the commands like so:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
sudo pacman -S --needed git base-devel && git clone https://aur.archlinux.org/yay.git && cd yay && makepkg -si
|
pacman -S --needed git base-devel && git clone https://aur.archlinux.org/yay.git && cd yay && makepkg -si
|
||||||
```
|
```
|
||||||
|
|
||||||
### Binary
|
### Binary
|
||||||
@ -59,7 +56,7 @@ If you do not want to compile yay yourself you can use the builds generated by
|
|||||||
GitHub Actions.
|
GitHub Actions.
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
sudo pacman -S --needed git base-devel
|
pacman -S --needed git base-devel
|
||||||
git clone https://aur.archlinux.org/yay-bin.git
|
git clone https://aur.archlinux.org/yay-bin.git
|
||||||
cd yay-bin
|
cd yay-bin
|
||||||
makepkg -si
|
makepkg -si
|
||||||
@ -68,7 +65,7 @@ makepkg -si
|
|||||||
If you want to do all of this at once, we can chain the commands like so:
|
If you want to do all of this at once, we can chain the commands like so:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
sudo pacman -S --needed git base-devel && git clone https://aur.archlinux.org/yay-bin.git && cd yay-bin && makepkg -si
|
pacman -S --needed git base-devel && git clone https://aur.archlinux.org/yay-bin.git && cd yay-bin && makepkg -si
|
||||||
```
|
```
|
||||||
|
|
||||||
### Other distributions
|
### Other distributions
|
||||||
@ -79,8 +76,8 @@ you can simply install yay using pacman (as root):
|
|||||||
```sh
|
```sh
|
||||||
pacman -S --needed git base-devel yay
|
pacman -S --needed git base-devel yay
|
||||||
```
|
```
|
||||||
> [!WARNING]
|
|
||||||
> distributions sometimes lag updating yay on their repositories.
|
⚠️ distributions sometimes lag updating yay on their repositories.
|
||||||
|
|
||||||
## First Use
|
## First Use
|
||||||
|
|
||||||
@ -150,7 +147,7 @@ pacman -S --needed git base-devel yay
|
|||||||
|
|
||||||
- **I know my `-git` package has updates but yay doesn't offer to update it**
|
- **I know my `-git` package has updates but yay doesn't offer to update it**
|
||||||
|
|
||||||
Yay uses a hash cache for development packages. Normally it is updated at the end of the package install with the message `Found git repo`.
|
Yay uses an hash cache for development packages. Normally it is updated at the end of the package install with the message `Found git repo`.
|
||||||
If you transition between aur helpers and did not install the devel package using yay at some point, it is possible it never got added to the cache. `yay -Y --gendb` will fix the current version of every devel package and start checking from there.
|
If you transition between aur helpers and did not install the devel package using yay at some point, it is possible it never got added to the cache. `yay -Y --gendb` will fix the current version of every devel package and start checking from there.
|
||||||
|
|
||||||
- **I want to help out!**
|
- **I want to help out!**
|
||||||
@ -172,14 +169,14 @@ tools.
|
|||||||
|
|
||||||
## Images
|
## Images
|
||||||
|
|
||||||
<p align="center">
|
<p float="left">
|
||||||
<img src="https://raw.githubusercontent.com/Jguer/jguer.github.io/refs/heads/master/yay/yay.png" width="42%">
|
<img src="https://rawcdn.githack.com/Jguer/jguer.github.io/77647f396cb7156fd32e30970dbeaf6d6dc7f983/yay/yay.png" width="42%"/>
|
||||||
<img src="https://raw.githubusercontent.com/Jguer/jguer.github.io/refs/heads/master/yay/yay-s.png" width="42%">
|
<img src="https://rawcdn.githack.com/Jguer/jguer.github.io/77647f396cb7156fd32e30970dbeaf6d6dc7f983/yay/yay-s.png" width="42%"/>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p align="center">
|
<p float="left">
|
||||||
<img src="https://raw.githubusercontent.com/Jguer/jguer.github.io/refs/heads/master/yay/yay-y.png" width="42%">
|
<img src="https://rawcdn.githack.com/Jguer/jguer.github.io/77647f396cb7156fd32e30970dbeaf6d6dc7f983/yay/yay-y.png" width="42%"/>
|
||||||
<img src="https://raw.githubusercontent.com/Jguer/jguer.github.io/refs/heads/master/yay/yay-ps.png" width="42%">
|
<img src="https://rawcdn.githack.com/Jguer/jguer.github.io/77647f396cb7156fd32e30970dbeaf6d6dc7f983/yay/yay-ps.png" width="42%"/>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
### Other AUR helpers/tools
|
### Other AUR helpers/tools
|
||||||
|
13
SECURITY.md
13
SECURITY.md
@ -1,13 +0,0 @@
|
|||||||
# Security Policy
|
|
||||||
|
|
||||||
Thank you for helping keep yay secure!
|
|
||||||
|
|
||||||
## Supported Versions
|
|
||||||
|
|
||||||
We only provide security updates and support for the latest released version of yay. Please ensure you are using the most up-to-date version before reporting vulnerabilities.
|
|
||||||
|
|
||||||
## Reporting a Vulnerability
|
|
||||||
|
|
||||||
If you discover a security vulnerability, please email us at [security@jguer.space](mailto:security@jguer.space). We will respond as quickly as possible and coordinate a fix.
|
|
||||||
|
|
||||||
We appreciate responsible disclosure and your help in making this project safe for everyone.
|
|
@ -1,15 +1,13 @@
|
|||||||
FROM docker.io/ljmf00/archlinux:devel
|
FROM ghcr.io/jguer/archlinuxarm:base-devel
|
||||||
LABEL maintainer="Jguer,docker@jguer.space"
|
LABEL maintainer="Jguer,docker@jguer.space"
|
||||||
|
|
||||||
ENV GO111MODULE=on
|
ENV GO111MODULE=on
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
RUN sed -i '/^\[community\]/,/^\[/ s/^/#/' /etc/pacman.conf
|
|
||||||
|
|
||||||
COPY go.mod .
|
COPY go.mod .
|
||||||
|
|
||||||
RUN pacman-key --init && pacman -Sy && pacman -S --overwrite=* --noconfirm archlinux-keyring && \
|
RUN pacman-key --init && pacman -Sy && pacman -S --overwrite=* --noconfirm archlinux-keyring && \
|
||||||
pacman -Su --overwrite=* --needed --noconfirm pacman doxygen meson asciidoc go git gcc make sudo base-devel && \
|
pacman -Su --overwrite=* --needed --noconfirm doxygen meson asciidoc go git gcc make sudo base-devel && \
|
||||||
rm -rfv /var/cache/pacman/* /var/lib/pacman/sync/* && \
|
rm -rfv /var/cache/pacman/* /var/lib/pacman/sync/* && \
|
||||||
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v2.1.5 && \
|
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.55.2 && \
|
||||||
go mod download
|
go mod download
|
||||||
|
5
clean.go
5
clean.go
@ -55,10 +55,9 @@ func syncClean(ctx context.Context, run *runtime.Runtime, cmdArgs *parser.Argume
|
|||||||
_, removeAll, _ := cmdArgs.GetArg("c", "clean")
|
_, removeAll, _ := cmdArgs.GetArg("c", "clean")
|
||||||
|
|
||||||
for _, v := range run.PacmanConf.CleanMethod {
|
for _, v := range run.PacmanConf.CleanMethod {
|
||||||
switch v {
|
if v == "KeepInstalled" {
|
||||||
case "KeepInstalled":
|
|
||||||
keepInstalled = true
|
keepInstalled = true
|
||||||
case "KeepCurrent":
|
} else if v == "KeepCurrent" {
|
||||||
keepCurrent = true
|
keepCurrent = true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
4
cmd.go
4
cmd.go
@ -54,7 +54,7 @@ If no operation is specified 'yay -Syu' will be performed
|
|||||||
If no operation is specified and targets are provided -Y will be assumed
|
If no operation is specified and targets are provided -Y will be assumed
|
||||||
|
|
||||||
New options:
|
New options:
|
||||||
-N --repo Assume targets are from the repositories
|
--repo Assume targets are from the repositories
|
||||||
-a --aur Assume targets are from the AUR
|
-a --aur Assume targets are from the AUR
|
||||||
|
|
||||||
Permanent configuration options:
|
Permanent configuration options:
|
||||||
@ -130,7 +130,7 @@ show specific options:
|
|||||||
-w --news Print arch news
|
-w --news Print arch news
|
||||||
|
|
||||||
yay specific options:
|
yay specific options:
|
||||||
-c --clean Remove unneeded dependencies (-cc to ignore optdepends)
|
-c --clean Remove unneeded dependencies
|
||||||
--gendb Generates development package DB used for updating
|
--gendb Generates development package DB used for updating
|
||||||
|
|
||||||
getpkgbuild specific options:
|
getpkgbuild specific options:
|
||||||
|
@ -61,8 +61,8 @@ _yay() {
|
|||||||
search unrequired upgrades' 'c e g i k l m n o p s t u')
|
search unrequired upgrades' 'c e g i k l m n o p s t u')
|
||||||
remove=('cascade dbonly nodeps assume-installed nosave print recursive unneeded' 'c n p s u')
|
remove=('cascade dbonly nodeps assume-installed nosave print recursive unneeded' 'c n p s u')
|
||||||
sync=('asdeps asexplicit clean dbonly downloadonly overwrite groups ignore ignoregroup
|
sync=('asdeps asexplicit clean dbonly downloadonly overwrite groups ignore ignoregroup
|
||||||
info list needed nodeps assume-installed print refresh recursive search sysupgrade aur repo'
|
info list needed nodeps assume-installed print refresh recursive search sysupgrade'
|
||||||
'c g i l p s u w y a N')
|
'c g i l p s u w y')
|
||||||
upgrade=('asdeps asexplicit overwrite needed nodeps assume-installed print recursive' 'p')
|
upgrade=('asdeps asexplicit overwrite needed nodeps assume-installed print recursive' 'p')
|
||||||
core=('database files help query remove sync upgrade version' 'D F Q R S U V h')
|
core=('database files help query remove sync upgrade version' 'D F Q R S U V h')
|
||||||
|
|
||||||
|
@ -165,8 +165,8 @@ complete -c $progname -n "$webspecific" -s u -l unvote -d 'Unvote for AUR packag
|
|||||||
complete -c $progname -n "$webspecific" -xa "$listall"
|
complete -c $progname -n "$webspecific" -xa "$listall"
|
||||||
|
|
||||||
# New options
|
# New options
|
||||||
complete -c $progname -n "not $noopt" -s a -l aur -d 'Assume targets are from the AUR' -f
|
complete -c $progname -n "not $noopt" -l repo -d 'Assume targets are from the AUR' -f
|
||||||
complete -c $progname -n "not $noopt" -s N -l repo -d 'Assume targets are from the repositories' -f
|
complete -c $progname -n "not $noopt" -s a -l aur -d 'Assume targets are from the repositories' -f
|
||||||
|
|
||||||
# Yay options
|
# Yay options
|
||||||
complete -c $progname -n "$yayspecific" -s c -l clean -d 'Remove unneeded dependencies' -f
|
complete -c $progname -n "$yayspecific" -s c -l clean -d 'Remove unneeded dependencies' -f
|
||||||
|
@ -23,7 +23,7 @@ _pacman_opts_commands=(
|
|||||||
|
|
||||||
# options for passing to _arguments: options common to all commands
|
# options for passing to _arguments: options common to all commands
|
||||||
_pacman_opts_common=(
|
_pacman_opts_common=(
|
||||||
{-N,--repo}'[Assume targets are from the repositories]'
|
'--repo[Assume targets are from the repositories]'
|
||||||
{-a,--aur}'[Assume targets are from the AUR]'
|
{-a,--aur}'[Assume targets are from the AUR]'
|
||||||
'--aururl[Set an alternative AUR URL]:url'
|
'--aururl[Set an alternative AUR URL]:url'
|
||||||
'--aurrpcurl[Set an alternative URL for the AUR /rpc endpoint]:url'
|
'--aurrpcurl[Set an alternative URL for the AUR /rpc endpoint]:url'
|
||||||
|
@ -63,7 +63,7 @@ Yay will also remove cached data about devel packages.
|
|||||||
|
|
||||||
.SH NEW OPTIONS
|
.SH NEW OPTIONS
|
||||||
.TP
|
.TP
|
||||||
.B \-N, \-\-repo
|
.B \-\-repo
|
||||||
Assume all targets are from the repositories. Additionally Actions such as
|
Assume all targets are from the repositories. Additionally Actions such as
|
||||||
sysupgrade will only act on repository packages.
|
sysupgrade will only act on repository packages.
|
||||||
|
|
||||||
@ -97,10 +97,6 @@ used when migrating to Yay from another AUR helper.
|
|||||||
.B \-c, \-\-clean
|
.B \-c, \-\-clean
|
||||||
Remove unneeded dependencies.
|
Remove unneeded dependencies.
|
||||||
|
|
||||||
.TP
|
|
||||||
.B \-cc
|
|
||||||
Remove unneeded dependencies, including packages optionally required by any other package.
|
|
||||||
|
|
||||||
.SH SHOW OPTIONS (APPLY TO \-P AND \-\-show)
|
.SH SHOW OPTIONS (APPLY TO \-P AND \-\-show)
|
||||||
.TP
|
.TP
|
||||||
.B \-c, \-\-complete
|
.B \-c, \-\-complete
|
||||||
|
40
go.mod
40
go.mod
@ -2,34 +2,42 @@ module github.com/Jguer/yay/v12
|
|||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/Jguer/aur v1.2.3
|
github.com/Jguer/aur v1.2.3
|
||||||
github.com/Jguer/go-alpm/v2 v2.2.2
|
github.com/Jguer/go-alpm/v2 v2.2.1
|
||||||
github.com/Jguer/votar v1.0.0
|
github.com/Jguer/votar v1.0.0
|
||||||
github.com/Morganamilo/go-pacmanconf v0.0.0-20210502114700-cff030e927a5
|
github.com/Morganamilo/go-pacmanconf v0.0.0-20210502114700-cff030e927a5
|
||||||
github.com/Morganamilo/go-srcinfo v1.0.0
|
github.com/Morganamilo/go-srcinfo v1.0.0
|
||||||
github.com/adrg/strutil v0.3.1
|
|
||||||
github.com/bradleyjkemp/cupaloy v2.3.0+incompatible
|
github.com/bradleyjkemp/cupaloy v2.3.0+incompatible
|
||||||
github.com/deckarep/golang-set/v2 v2.8.0
|
github.com/leonelquinteros/gotext v1.5.2
|
||||||
github.com/hashicorp/go-multierror v1.1.1
|
github.com/stretchr/testify v1.8.4
|
||||||
github.com/leonelquinteros/gotext v1.7.2
|
golang.org/x/sys v0.17.0
|
||||||
github.com/stretchr/testify v1.10.0
|
golang.org/x/term v0.17.0
|
||||||
golang.org/x/net v0.41.0
|
golang.org/x/text v0.14.0 // indirect
|
||||||
golang.org/x/sys v0.33.0
|
|
||||||
golang.org/x/term v0.32.0
|
|
||||||
gopkg.in/h2non/gock.v1 v1.1.2
|
gopkg.in/h2non/gock.v1 v1.1.2
|
||||||
)
|
)
|
||||||
|
|
||||||
require (
|
require (
|
||||||
|
github.com/adrg/strutil v0.3.1
|
||||||
github.com/davecgh/go-spew v1.1.1 // indirect
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
||||||
github.com/h2non/parth v0.0.0-20190131123155-b4df798d6542 // indirect
|
github.com/h2non/parth v0.0.0-20190131123155-b4df798d6542 // indirect
|
||||||
github.com/hashicorp/errwrap v1.1.0 // indirect
|
github.com/pkg/errors v0.9.1
|
||||||
github.com/itchyny/gojq v0.12.17 // indirect
|
|
||||||
github.com/itchyny/timefmt-go v0.1.6 // indirect
|
|
||||||
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
|
||||||
github.com/ohler55/ojg v1.26.1 // indirect
|
|
||||||
github.com/pmezard/go-difflib v1.0.0 // indirect
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
||||||
gopkg.in/yaml.v3 v3.0.1 // indirect
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
||||||
)
|
)
|
||||||
|
|
||||||
go 1.23.5
|
require (
|
||||||
|
github.com/deckarep/golang-set/v2 v2.6.0
|
||||||
|
github.com/itchyny/gojq v0.12.14 // indirect
|
||||||
|
github.com/itchyny/timefmt-go v0.1.5 // indirect
|
||||||
|
github.com/ohler55/ojg v1.21.2 // indirect
|
||||||
|
)
|
||||||
|
|
||||||
toolchain go1.24.0
|
require github.com/hashicorp/go-multierror v1.1.1
|
||||||
|
|
||||||
|
require (
|
||||||
|
github.com/hashicorp/errwrap v1.1.0 // indirect
|
||||||
|
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
||||||
|
)
|
||||||
|
|
||||||
|
go 1.21
|
||||||
|
|
||||||
|
toolchain go1.21.6
|
||||||
|
68
go.sum
68
go.sum
@ -1,7 +1,7 @@
|
|||||||
github.com/Jguer/aur v1.2.3 h1:D+OGgLxnAnZnw88DsRvnRQsn0Poxsy9ng7pBcsA0krM=
|
github.com/Jguer/aur v1.2.3 h1:D+OGgLxnAnZnw88DsRvnRQsn0Poxsy9ng7pBcsA0krM=
|
||||||
github.com/Jguer/aur v1.2.3/go.mod h1:Dahvb6L1yr0rR7svyYSDwaRJoQMeyvJblwJ3QH/7CUs=
|
github.com/Jguer/aur v1.2.3/go.mod h1:Dahvb6L1yr0rR7svyYSDwaRJoQMeyvJblwJ3QH/7CUs=
|
||||||
github.com/Jguer/go-alpm/v2 v2.2.2 h1:sPwUoZp1X5Tw6K6Ba1lWvVJfcgVNEGVcxARLBttZnC0=
|
github.com/Jguer/go-alpm/v2 v2.2.1 h1:PMIRKo2lY0wfhN8W8Scc5v82zQeDsTv702CuDiz81sA=
|
||||||
github.com/Jguer/go-alpm/v2 v2.2.2/go.mod h1:lfe8gSe83F/KERaQvEfrSqQ4n+8bES+ZIyKWR/gm3MI=
|
github.com/Jguer/go-alpm/v2 v2.2.1/go.mod h1:lfe8gSe83F/KERaQvEfrSqQ4n+8bES+ZIyKWR/gm3MI=
|
||||||
github.com/Jguer/votar v1.0.0 h1:drPYpV5Py5BeAQS8xezmT6uCEfLzotNjLf5yfmlHKTg=
|
github.com/Jguer/votar v1.0.0 h1:drPYpV5Py5BeAQS8xezmT6uCEfLzotNjLf5yfmlHKTg=
|
||||||
github.com/Jguer/votar v1.0.0/go.mod h1:rc6vgVlTqNjI4nAnPbDTbdxw/N7kXkbB8BcUDjeFbYQ=
|
github.com/Jguer/votar v1.0.0/go.mod h1:rc6vgVlTqNjI4nAnPbDTbdxw/N7kXkbB8BcUDjeFbYQ=
|
||||||
github.com/Morganamilo/go-pacmanconf v0.0.0-20210502114700-cff030e927a5 h1:TMscPjkb1ThXN32LuFY5bEYIcXZx3YlwzhS1GxNpn/c=
|
github.com/Morganamilo/go-pacmanconf v0.0.0-20210502114700-cff030e927a5 h1:TMscPjkb1ThXN32LuFY5bEYIcXZx3YlwzhS1GxNpn/c=
|
||||||
@ -17,8 +17,8 @@ github.com/bradleyjkemp/cupaloy v2.3.0+incompatible/go.mod h1:Au1Xw1sgaJ5iSFktEh
|
|||||||
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
||||||
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
|
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
|
||||||
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
||||||
github.com/deckarep/golang-set/v2 v2.8.0 h1:swm0rlPCmdWn9mESxKOjWk8hXSqoxOp+ZlfuyaAdFlQ=
|
github.com/deckarep/golang-set/v2 v2.6.0 h1:XfcQbWM1LlMB8BsJ8N9vW5ehnnPVIw0je80NsVHagjM=
|
||||||
github.com/deckarep/golang-set/v2 v2.8.0/go.mod h1:VAky9rY/yGXJOLEDv3OMci+7wtDpOF4IN+y82NBOac4=
|
github.com/deckarep/golang-set/v2 v2.6.0/go.mod h1:VAky9rY/yGXJOLEDv3OMci+7wtDpOF4IN+y82NBOac4=
|
||||||
github.com/h2non/parth v0.0.0-20190131123155-b4df798d6542 h1:2VTzZjLZBgl62/EtslCrtky5vbi9dd7HrQPQIx6wqiw=
|
github.com/h2non/parth v0.0.0-20190131123155-b4df798d6542 h1:2VTzZjLZBgl62/EtslCrtky5vbi9dd7HrQPQIx6wqiw=
|
||||||
github.com/h2non/parth v0.0.0-20190131123155-b4df798d6542/go.mod h1:Ow0tF8D4Kplbc8s8sSb3V2oUCygFHVp8gC3Dn6U4MNI=
|
github.com/h2non/parth v0.0.0-20190131123155-b4df798d6542/go.mod h1:Ow0tF8D4Kplbc8s8sSb3V2oUCygFHVp8gC3Dn6U4MNI=
|
||||||
github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4=
|
github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4=
|
||||||
@ -26,39 +26,63 @@ github.com/hashicorp/errwrap v1.1.0 h1:OxrOeh75EUXMY8TBjag2fzXGZ40LB6IKw45YeGUDY
|
|||||||
github.com/hashicorp/errwrap v1.1.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4=
|
github.com/hashicorp/errwrap v1.1.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4=
|
||||||
github.com/hashicorp/go-multierror v1.1.1 h1:H5DkEtf6CXdFp0N0Em5UCwQpXMWke8IA0+lD48awMYo=
|
github.com/hashicorp/go-multierror v1.1.1 h1:H5DkEtf6CXdFp0N0Em5UCwQpXMWke8IA0+lD48awMYo=
|
||||||
github.com/hashicorp/go-multierror v1.1.1/go.mod h1:iw975J/qwKPdAO1clOe2L8331t/9/fmwbPZ6JB6eMoM=
|
github.com/hashicorp/go-multierror v1.1.1/go.mod h1:iw975J/qwKPdAO1clOe2L8331t/9/fmwbPZ6JB6eMoM=
|
||||||
github.com/itchyny/gojq v0.12.17 h1:8av8eGduDb5+rvEdaOO+zQUjA04MS0m3Ps8HiD+fceg=
|
github.com/itchyny/gojq v0.12.14 h1:6k8vVtsrhQSYgSGg827AD+PVVaB1NLXEdX+dda2oZCc=
|
||||||
github.com/itchyny/gojq v0.12.17/go.mod h1:WBrEMkgAfAGO1LUcGOckBl5O726KPp+OlkKug0I/FEY=
|
github.com/itchyny/gojq v0.12.14/go.mod h1:y1G7oO7XkcR1LPZO59KyoCRy08T3j9vDYRV0GgYSS+s=
|
||||||
github.com/itchyny/timefmt-go v0.1.6 h1:ia3s54iciXDdzWzwaVKXZPbiXzxxnv1SPGFfM/myJ5Q=
|
github.com/itchyny/timefmt-go v0.1.5 h1:G0INE2la8S6ru/ZI5JecgyzbbJNs5lG1RcBqa7Jm6GE=
|
||||||
github.com/itchyny/timefmt-go v0.1.6/go.mod h1:RRDZYC5s9ErkjQvTvvU7keJjxUYzIISJGxm9/mAERQg=
|
github.com/itchyny/timefmt-go v0.1.5/go.mod h1:nEP7L+2YmAbT2kZ2HfSs1d8Xtw9LY8D2stDBckWakZ8=
|
||||||
github.com/leonelquinteros/gotext v1.7.2 h1:bDPndU8nt+/kRo1m4l/1OXiiy2v7Z7dfPQ9+YP7G1Mc=
|
github.com/leonelquinteros/gotext v1.5.2 h1:T2y6ebHli+rMBCjcJlHTXyUrgXqsKBhl/ormgvt7lPo=
|
||||||
github.com/leonelquinteros/gotext v1.7.2/go.mod h1:9/haCkm5P7Jay1sxKDGJ5WIg4zkz8oZKw4ekNpALob8=
|
github.com/leonelquinteros/gotext v1.5.2/go.mod h1:AT4NpQrOmyj1L/+hLja6aR0lk81yYYL4ePnj2kp7d6M=
|
||||||
github.com/mitchellh/mapstructure v1.5.0 h1:jeMsZIYE/09sWLaz43PL7Gy6RuMjD2eJVyuac5Z2hdY=
|
github.com/mitchellh/mapstructure v1.5.0 h1:jeMsZIYE/09sWLaz43PL7Gy6RuMjD2eJVyuac5Z2hdY=
|
||||||
github.com/mitchellh/mapstructure v1.5.0/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo=
|
github.com/mitchellh/mapstructure v1.5.0/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo=
|
||||||
github.com/nbio/st v0.0.0-20140626010706-e9e8d9816f32 h1:W6apQkHrMkS0Muv8G/TipAy/FJl/rCYT0+EuS8+Z0z4=
|
github.com/nbio/st v0.0.0-20140626010706-e9e8d9816f32 h1:W6apQkHrMkS0Muv8G/TipAy/FJl/rCYT0+EuS8+Z0z4=
|
||||||
github.com/nbio/st v0.0.0-20140626010706-e9e8d9816f32/go.mod h1:9wM+0iRr9ahx58uYLpLIr5fm8diHn0JbqRycJi6w0Ms=
|
github.com/nbio/st v0.0.0-20140626010706-e9e8d9816f32/go.mod h1:9wM+0iRr9ahx58uYLpLIr5fm8diHn0JbqRycJi6w0Ms=
|
||||||
github.com/ohler55/ojg v1.26.1 h1:J5TaLmVEuvnpVH7JMdT1QdbpJU545Yp6cKiCO4aQILc=
|
github.com/ohler55/ojg v1.21.2 h1:6N3eBqzMQ4lYurweV/H/c3DK0Z2ufj8aZcAj3mhknwM=
|
||||||
github.com/ohler55/ojg v1.26.1/go.mod h1:gQhDVpQLqrmnd2eqGAvJtn+NfKoYJbe/A4Sj3/Vro4o=
|
github.com/ohler55/ojg v1.21.2/go.mod h1:gQhDVpQLqrmnd2eqGAvJtn+NfKoYJbe/A4Sj3/Vro4o=
|
||||||
|
github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
|
||||||
|
github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
|
||||||
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
|
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
|
||||||
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
|
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
|
||||||
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
|
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
|
||||||
github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw=
|
github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw=
|
||||||
|
github.com/stretchr/objx v0.5.0 h1:1zr/of2m5FGMsad5YfcqgdqdWrIhu+EBEJRhR1U7z/c=
|
||||||
github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo=
|
github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo=
|
||||||
github.com/stretchr/objx v0.5.2 h1:xuMeJ0Sdp5ZMRXx/aWO6RZxdr3beISkG5/G/aIRr3pY=
|
|
||||||
github.com/stretchr/objx v0.5.2/go.mod h1:FRsXN1f5AsAjCGJKqEizvkpNtU+EGNCLh3NxZ/8L+MA=
|
|
||||||
github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
|
github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
|
||||||
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
|
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
|
||||||
github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
|
github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
|
||||||
github.com/stretchr/testify v1.7.2/go.mod h1:R6va5+xMeoiuVRoj+gSkQ7d3FALtqAAGI1FQKckRals=
|
github.com/stretchr/testify v1.7.2/go.mod h1:R6va5+xMeoiuVRoj+gSkQ7d3FALtqAAGI1FQKckRals=
|
||||||
github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU=
|
github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU=
|
||||||
|
github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk=
|
||||||
github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo=
|
github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo=
|
||||||
github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA=
|
github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY=
|
||||||
github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
|
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
|
||||||
golang.org/x/net v0.41.0 h1:vBTly1HeNPEn3wtREYfy4GZ/NECgw2Cnl+nK6Nz3uvw=
|
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
|
||||||
golang.org/x/net v0.41.0/go.mod h1:B/K4NNqkfmg07DQYrbwvSluqCJOOXwUjeb/5lOisjbA=
|
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4=
|
||||||
golang.org/x/sys v0.33.0 h1:q3i8TbbEz+JRD9ywIRlyRAQbM0qF7hu24q3teo2hbuw=
|
golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
|
||||||
golang.org/x/sys v0.33.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k=
|
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
|
||||||
golang.org/x/term v0.32.0 h1:DR4lr0TjUs3epypdhTOkMmuF5CDFJ/8pOnbzMZPQ7bg=
|
golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c=
|
||||||
golang.org/x/term v0.32.0/go.mod h1:uZG1FhGx848Sqfsq4/DlJr3xGGsYMu/L5GW4abiaEPQ=
|
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
||||||
|
golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
||||||
|
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
|
||||||
|
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
|
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
|
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
|
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
|
golang.org/x/sys v0.17.0 h1:25cE3gD+tdBA7lp7QfhuV+rJiE9YXTcS3VG1SqssI/Y=
|
||||||
|
golang.org/x/sys v0.17.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
|
||||||
|
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
|
||||||
|
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
|
||||||
|
golang.org/x/term v0.17.0 h1:mkTF7LCd6WGJNL3K1Ad7kwxNfYAW6a8a8QqtMblp/4U=
|
||||||
|
golang.org/x/term v0.17.0/go.mod h1:lLRBjIVuehSbZlaOtGMbcMncT+aqLLLmKrsjNrUguwk=
|
||||||
|
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
|
||||||
|
golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
|
||||||
|
golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ=
|
||||||
|
golang.org/x/text v0.3.8/go.mod h1:E6s5w1FMmriuDzIBO73fBruAKo1PCIq6d2Q6DHfQ8WQ=
|
||||||
|
golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ=
|
||||||
|
golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU=
|
||||||
|
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
|
||||||
|
golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
|
||||||
|
golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc=
|
||||||
|
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
|
||||||
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
|
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
|
||||||
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
||||||
gopkg.in/h2non/gock.v1 v1.1.2 h1:jBbHXgGBK/AoPVfJh5x4r/WxIrElvbLel8TCZkkZJoY=
|
gopkg.in/h2non/gock.v1 v1.1.2 h1:jBbHXgGBK/AoPVfJh5x4r/WxIrElvbLel8TCZkkZJoY=
|
||||||
|
@ -4,7 +4,6 @@ package main
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"errors"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
@ -21,6 +20,7 @@ import (
|
|||||||
|
|
||||||
gosrc "github.com/Morganamilo/go-srcinfo"
|
gosrc "github.com/Morganamilo/go-srcinfo"
|
||||||
"github.com/leonelquinteros/gotext"
|
"github.com/leonelquinteros/gotext"
|
||||||
|
"github.com/pkg/errors"
|
||||||
)
|
)
|
||||||
|
|
||||||
var ErrNoBuildFiles = errors.New(gotext.Get("cannot find PKGBUILD and .SRCINFO in directory"))
|
var ErrNoBuildFiles = errors.New(gotext.Get("cannot find PKGBUILD and .SRCINFO in directory"))
|
||||||
@ -43,10 +43,6 @@ func srcinfoExists(ctx context.Context,
|
|||||||
return fmt.Errorf("unable to generate .SRCINFO: %w - %s", err, stderr)
|
return fmt.Errorf("unable to generate .SRCINFO: %w - %s", err, stderr)
|
||||||
}
|
}
|
||||||
|
|
||||||
if srcinfo == "" {
|
|
||||||
return fmt.Errorf("generated .SRCINFO is empty, check your PKGBUILD for errors")
|
|
||||||
}
|
|
||||||
|
|
||||||
if err := os.WriteFile(srcInfoDir, []byte(srcinfo), 0o600); err != nil {
|
if err := os.WriteFile(srcInfoDir, []byte(srcinfo), 0o600); err != nil {
|
||||||
return fmt.Errorf("unable to write .SRCINFO: %w", err)
|
return fmt.Errorf("unable to write .SRCINFO: %w", err)
|
||||||
}
|
}
|
||||||
@ -78,7 +74,7 @@ func installLocalPKGBUILD(
|
|||||||
|
|
||||||
pkgbuild, err := gosrc.ParseFile(filepath.Join(targetDir, ".SRCINFO"))
|
pkgbuild, err := gosrc.ParseFile(filepath.Join(targetDir, ".SRCINFO"))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("%s: %w", gotext.Get("failed to parse .SRCINFO"), err)
|
return errors.Wrap(err, gotext.Get("failed to parse .SRCINFO"))
|
||||||
}
|
}
|
||||||
|
|
||||||
srcInfos[targetDir] = pkgbuild
|
srcInfos[targetDir] = pkgbuild
|
||||||
|
@ -61,6 +61,8 @@ func TestIntegrationLocalInstall(t *testing.T) {
|
|||||||
"pacman -D -q --asdeps --config /etc/pacman.conf -- dotnet-runtime-6.0 dotnet-sdk-6.0",
|
"pacman -D -q --asdeps --config /etc/pacman.conf -- dotnet-runtime-6.0 dotnet-sdk-6.0",
|
||||||
"makepkg --nobuild -f -C --ignorearch",
|
"makepkg --nobuild -f -C --ignorearch",
|
||||||
"makepkg -c --nobuild --noextract --ignorearch",
|
"makepkg -c --nobuild --noextract --ignorearch",
|
||||||
|
"makepkg --nobuild -f -C --ignorearch",
|
||||||
|
"makepkg -c --nobuild --noextract --ignorearch",
|
||||||
"pacman -U --config /etc/pacman.conf -- /testdir/jellyfin-server-10.8.4-1-x86_64.pkg.tar.zst /testdir/jellyfin-web-10.8.4-1-x86_64.pkg.tar.zst",
|
"pacman -U --config /etc/pacman.conf -- /testdir/jellyfin-server-10.8.4-1-x86_64.pkg.tar.zst /testdir/jellyfin-web-10.8.4-1-x86_64.pkg.tar.zst",
|
||||||
"pacman -D -q --asexplicit --config /etc/pacman.conf -- jellyfin-server jellyfin-web",
|
"pacman -D -q --asexplicit --config /etc/pacman.conf -- jellyfin-server jellyfin-web",
|
||||||
"makepkg --nobuild -f -C --ignorearch",
|
"makepkg --nobuild -f -C --ignorearch",
|
||||||
@ -74,6 +76,7 @@ func TestIntegrationLocalInstall(t *testing.T) {
|
|||||||
"git -C testdata/jfin git reset --hard HEAD",
|
"git -C testdata/jfin git reset --hard HEAD",
|
||||||
"git -C testdata/jfin git merge --no-edit --ff",
|
"git -C testdata/jfin git merge --no-edit --ff",
|
||||||
"makepkg --packagelist",
|
"makepkg --packagelist",
|
||||||
|
"makepkg --packagelist",
|
||||||
}
|
}
|
||||||
|
|
||||||
captureOverride := func(cmd *exec.Cmd) (stdout string, stderr string, err error) {
|
captureOverride := func(cmd *exec.Cmd) (stdout string, stderr string, err error) {
|
||||||
@ -328,6 +331,8 @@ func TestIntegrationLocalInstallNeeded(t *testing.T) {
|
|||||||
"makepkg -c --nobuild --noextract --ignorearch",
|
"makepkg -c --nobuild --noextract --ignorearch",
|
||||||
"makepkg --nobuild -f -C --ignorearch",
|
"makepkg --nobuild -f -C --ignorearch",
|
||||||
"makepkg -c --nobuild --noextract --ignorearch",
|
"makepkg -c --nobuild --noextract --ignorearch",
|
||||||
|
"makepkg --nobuild -f -C --ignorearch",
|
||||||
|
"makepkg -c --nobuild --noextract --ignorearch",
|
||||||
}
|
}
|
||||||
|
|
||||||
wantCapture := []string{
|
wantCapture := []string{
|
||||||
@ -335,6 +340,7 @@ func TestIntegrationLocalInstallNeeded(t *testing.T) {
|
|||||||
"git -C testdata/jfin git reset --hard HEAD",
|
"git -C testdata/jfin git reset --hard HEAD",
|
||||||
"git -C testdata/jfin git merge --no-edit --ff",
|
"git -C testdata/jfin git merge --no-edit --ff",
|
||||||
"makepkg --packagelist",
|
"makepkg --packagelist",
|
||||||
|
"makepkg --packagelist",
|
||||||
}
|
}
|
||||||
|
|
||||||
captureOverride := func(cmd *exec.Cmd) (stdout string, stderr string, err error) {
|
captureOverride := func(cmd *exec.Cmd) (stdout string, stderr string, err error) {
|
||||||
@ -491,6 +497,8 @@ func TestIntegrationLocalInstallGenerateSRCINFO(t *testing.T) {
|
|||||||
"pacman -D -q --asdeps --config /etc/pacman.conf -- dotnet-runtime-6.0 dotnet-sdk-6.0",
|
"pacman -D -q --asdeps --config /etc/pacman.conf -- dotnet-runtime-6.0 dotnet-sdk-6.0",
|
||||||
"makepkg --nobuild -f -C --ignorearch",
|
"makepkg --nobuild -f -C --ignorearch",
|
||||||
"makepkg -c --nobuild --noextract --ignorearch",
|
"makepkg -c --nobuild --noextract --ignorearch",
|
||||||
|
"makepkg --nobuild -f -C --ignorearch",
|
||||||
|
"makepkg -c --nobuild --noextract --ignorearch",
|
||||||
"pacman -U --config /etc/pacman.conf -- /testdir/jellyfin-server-10.8.4-1-x86_64.pkg.tar.zst /testdir/jellyfin-web-10.8.4-1-x86_64.pkg.tar.zst",
|
"pacman -U --config /etc/pacman.conf -- /testdir/jellyfin-server-10.8.4-1-x86_64.pkg.tar.zst /testdir/jellyfin-web-10.8.4-1-x86_64.pkg.tar.zst",
|
||||||
"pacman -D -q --asexplicit --config /etc/pacman.conf -- jellyfin-server jellyfin-web",
|
"pacman -D -q --asexplicit --config /etc/pacman.conf -- jellyfin-server jellyfin-web",
|
||||||
"makepkg --nobuild -f -C --ignorearch",
|
"makepkg --nobuild -f -C --ignorearch",
|
||||||
@ -505,6 +513,7 @@ func TestIntegrationLocalInstallGenerateSRCINFO(t *testing.T) {
|
|||||||
"git -C testdata/jfin git reset --hard HEAD",
|
"git -C testdata/jfin git reset --hard HEAD",
|
||||||
"git -C testdata/jfin git merge --no-edit --ff",
|
"git -C testdata/jfin git merge --no-edit --ff",
|
||||||
"makepkg --packagelist",
|
"makepkg --packagelist",
|
||||||
|
"makepkg --packagelist",
|
||||||
}
|
}
|
||||||
|
|
||||||
captureOverride := func(cmd *exec.Cmd) (stdout string, stderr string, err error) {
|
captureOverride := func(cmd *exec.Cmd) (stdout string, stderr string, err error) {
|
||||||
|
16
main.go
16
main.go
@ -6,7 +6,6 @@ import (
|
|||||||
"os"
|
"os"
|
||||||
"os/exec"
|
"os/exec"
|
||||||
"runtime/debug"
|
"runtime/debug"
|
||||||
"strings"
|
|
||||||
|
|
||||||
"github.com/leonelquinteros/gotext"
|
"github.com/leonelquinteros/gotext"
|
||||||
|
|
||||||
@ -28,12 +27,7 @@ func initGotext() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if lc := os.Getenv("LANGUAGE"); lc != "" {
|
if lc := os.Getenv("LANGUAGE"); lc != "" {
|
||||||
// Split LANGUAGE by ':' and prioritize the first locale
|
gotext.Configure(localePath, lc, "yay")
|
||||||
// Should fix in gotext to support this
|
|
||||||
locales := strings.Split(lc, ":")
|
|
||||||
if len(locales) > 0 && locales[0] != "" {
|
|
||||||
gotext.Configure(localePath, locales[0], "yay")
|
|
||||||
}
|
|
||||||
} else if lc := os.Getenv("LC_ALL"); lc != "" {
|
} else if lc := os.Getenv("LC_ALL"); lc != "" {
|
||||||
gotext.Configure(localePath, lc, "yay")
|
gotext.Configure(localePath, lc, "yay")
|
||||||
} else if lc := os.Getenv("LC_MESSAGES"); lc != "" {
|
} else if lc := os.Getenv("LC_MESSAGES"); lc != "" {
|
||||||
@ -53,9 +47,8 @@ func main() {
|
|||||||
|
|
||||||
defer func() {
|
defer func() {
|
||||||
if rec := recover(); rec != nil {
|
if rec := recover(); rec != nil {
|
||||||
fallbackLog.Errorln("Panic occurred:", rec)
|
fallbackLog.Errorln(rec)
|
||||||
fallbackLog.Errorln("Stack trace:", string(debug.Stack()))
|
debug.PrintStack()
|
||||||
ret = 1
|
|
||||||
}
|
}
|
||||||
|
|
||||||
os.Exit(ret)
|
os.Exit(ret)
|
||||||
@ -129,8 +122,7 @@ func main() {
|
|||||||
|
|
||||||
defer func() {
|
defer func() {
|
||||||
if rec := recover(); rec != nil {
|
if rec := recover(); rec != nil {
|
||||||
fallbackLog.Errorln("Panic occurred in DB operation:", rec)
|
fallbackLog.Errorln(rec, string(debug.Stack()))
|
||||||
fallbackLog.Errorln("Stack trace:", string(debug.Stack()))
|
|
||||||
}
|
}
|
||||||
|
|
||||||
dbExecutor.Cleanup()
|
dbExecutor.Cleanup()
|
||||||
|
@ -2,7 +2,6 @@ package main
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"errors"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
@ -16,6 +15,7 @@ import (
|
|||||||
|
|
||||||
"github.com/Jguer/aur/metadata"
|
"github.com/Jguer/aur/metadata"
|
||||||
"github.com/leonelquinteros/gotext"
|
"github.com/leonelquinteros/gotext"
|
||||||
|
"github.com/pkg/errors"
|
||||||
)
|
)
|
||||||
|
|
||||||
func handleCmd(logger *text.Logger) error {
|
func handleCmd(logger *text.Logger) error {
|
||||||
@ -43,7 +43,7 @@ func handleCmd(logger *text.Logger) error {
|
|||||||
metadata.WithCacheFilePath(
|
metadata.WithCacheFilePath(
|
||||||
filepath.Join(cfg.BuildDir, "aur.json")))
|
filepath.Join(cfg.BuildDir, "aur.json")))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("%s: %w", gotext.Get("failed to retrieve aur Cache"), err)
|
return errors.Wrap(err, gotext.Get("failed to retrieve aur Cache"))
|
||||||
}
|
}
|
||||||
|
|
||||||
grapher := dep.NewGrapher(dbExecutor, aurCache, true, settings.NoConfirm,
|
grapher := dep.NewGrapher(dbExecutor, aurCache, true, settings.NoConfirm,
|
||||||
|
@ -117,7 +117,7 @@ func createAURList(ctx context.Context, client httpRequestDoer, aurURL string, o
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// createRepoList appends Repo packages to completion cache.
|
// CreatePackageList appends Repo packages to completion cache.
|
||||||
func createRepoList(dbExecutor PkgSynchronizer, out io.Writer) error {
|
func createRepoList(dbExecutor PkgSynchronizer, out io.Writer) error {
|
||||||
for _, pkg := range dbExecutor.SyncPackages() {
|
for _, pkg := range dbExecutor.SyncPackages() {
|
||||||
_, err := io.WriteString(out, pkg.Name()+"\t"+pkg.DB().Name()+"\n")
|
_, err := io.WriteString(out, pkg.Name()+"\t"+pkg.DB().Name()+"\n")
|
||||||
|
@ -176,7 +176,7 @@ func (ae *AlpmExecutor) questionCallback() func(question alpm.QuestionAny) {
|
|||||||
return nil
|
return nil
|
||||||
})
|
})
|
||||||
|
|
||||||
str := text.Bold(gotext.Get("There are %[1]d providers available for %[2]s:", size, qp.Dep()))
|
str := text.Bold(gotext.Get("There are %d providers available for %s:", size, qp.Dep()))
|
||||||
|
|
||||||
size = 1
|
size = 1
|
||||||
|
|
||||||
|
@ -37,7 +37,7 @@ func (i *InstallInfo) String() string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
type (
|
type (
|
||||||
Reason uint
|
Reason int
|
||||||
Source int
|
Source int
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -165,6 +165,7 @@ func (g *Grapher) GraphFromTargets(ctx context.Context,
|
|||||||
}
|
}
|
||||||
if pkg != nil {
|
if pkg != nil {
|
||||||
g.GraphSyncPkg(ctx, graph, pkg, nil)
|
g.GraphSyncPkg(ctx, graph, pkg, nil)
|
||||||
|
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -536,13 +537,12 @@ func (g *Grapher) findDepsFromAUR(ctx context.Context,
|
|||||||
}
|
}
|
||||||
|
|
||||||
// remove packages that don't satisfy the dependency
|
// remove packages that don't satisfy the dependency
|
||||||
satisfyingPkgs := make([]aurc.Pkg, 0, len(aurPkgs))
|
for i := 0; i < len(aurPkgs); i++ {
|
||||||
for i := range aurPkgs {
|
if !satisfiesAur(depString, &aurPkgs[i]) {
|
||||||
if satisfiesAur(depString, &aurPkgs[i]) {
|
aurPkgs = append(aurPkgs[:i], aurPkgs[i+1:]...)
|
||||||
satisfyingPkgs = append(satisfyingPkgs, aurPkgs[i])
|
i--
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
aurPkgs = satisfyingPkgs
|
|
||||||
|
|
||||||
if len(aurPkgs) == 0 {
|
if len(aurPkgs) == 0 {
|
||||||
g.logger.Errorln(gotext.Get("No AUR package found for"), " ", depString)
|
g.logger.Errorln(gotext.Get("No AUR package found for"), " ", depString)
|
||||||
@ -723,7 +723,7 @@ func (g *Grapher) provideMenu(dep string, options []aur.Pkg) *aur.Pkg {
|
|||||||
return &options[0]
|
return &options[0]
|
||||||
}
|
}
|
||||||
|
|
||||||
str := text.Bold(gotext.Get("There are %[1]d providers available for %[2]s:", size, dep))
|
str := text.Bold(gotext.Get("There are %d providers available for %s:", size, dep))
|
||||||
str += "\n"
|
str += "\n"
|
||||||
|
|
||||||
size = 1
|
size = 1
|
||||||
@ -804,17 +804,16 @@ func makeAURPKGFromSrcinfo(dbExecutor db.Executor, srcInfo *gosrc.Srcinfo) ([]*a
|
|||||||
Description: getDesc(pkg),
|
Description: getDesc(pkg),
|
||||||
URL: pkg.URL,
|
URL: pkg.URL,
|
||||||
Depends: append(archStringToString(alpmArch, pkg.Depends),
|
Depends: append(archStringToString(alpmArch, pkg.Depends),
|
||||||
archStringToString(alpmArch, srcInfo.Depends)...),
|
archStringToString(alpmArch, srcInfo.Package.Depends)...),
|
||||||
MakeDepends: archStringToString(alpmArch, srcInfo.MakeDepends),
|
MakeDepends: archStringToString(alpmArch, srcInfo.PackageBase.MakeDepends),
|
||||||
CheckDepends: archStringToString(alpmArch, srcInfo.CheckDepends),
|
CheckDepends: archStringToString(alpmArch, srcInfo.PackageBase.CheckDepends),
|
||||||
Conflicts: append(archStringToString(alpmArch, pkg.Conflicts),
|
Conflicts: append(archStringToString(alpmArch, pkg.Conflicts),
|
||||||
archStringToString(alpmArch, srcInfo.Conflicts)...),
|
archStringToString(alpmArch, srcInfo.Package.Conflicts)...),
|
||||||
Provides: append(archStringToString(alpmArch, pkg.Provides),
|
Provides: append(archStringToString(alpmArch, pkg.Provides),
|
||||||
archStringToString(alpmArch, srcInfo.Provides)...),
|
archStringToString(alpmArch, srcInfo.Package.Provides)...),
|
||||||
Replaces: append(archStringToString(alpmArch, pkg.Replaces),
|
Replaces: append(archStringToString(alpmArch, pkg.Replaces),
|
||||||
archStringToString(alpmArch, srcInfo.Replaces)...),
|
archStringToString(alpmArch, srcInfo.Package.Replaces)...),
|
||||||
OptDepends: append(archStringToString(alpmArch, pkg.OptDepends),
|
OptDepends: []string{},
|
||||||
archStringToString(alpmArch, srcInfo.OptDepends)...),
|
|
||||||
Groups: pkg.Groups,
|
Groups: pkg.Groups,
|
||||||
License: pkg.License,
|
License: pkg.License,
|
||||||
Keywords: []string{},
|
Keywords: []string{},
|
||||||
|
@ -17,10 +17,10 @@ type IntRange struct {
|
|||||||
// IntRanges is a slice of IntRange.
|
// IntRanges is a slice of IntRange.
|
||||||
type IntRanges []IntRange
|
type IntRanges []IntRange
|
||||||
|
|
||||||
func makeIntRange(minVal, maxVal int) IntRange {
|
func makeIntRange(min, max int) IntRange {
|
||||||
return IntRange{
|
return IntRange{
|
||||||
min: minVal,
|
min,
|
||||||
max: maxVal,
|
max,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -42,6 +42,24 @@ func (rs IntRanges) Get(n int) bool {
|
|||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Min returns min value between a and b.
|
||||||
|
func Min(a, b int) int {
|
||||||
|
if a < b {
|
||||||
|
return a
|
||||||
|
}
|
||||||
|
|
||||||
|
return b
|
||||||
|
}
|
||||||
|
|
||||||
|
// Max returns max value between a and b.
|
||||||
|
func Max(a, b int) int {
|
||||||
|
if a < b {
|
||||||
|
return b
|
||||||
|
}
|
||||||
|
|
||||||
|
return a
|
||||||
|
}
|
||||||
|
|
||||||
// ParseNumberMenu parses input for number menus split by spaces or commas
|
// ParseNumberMenu parses input for number menus split by spaces or commas
|
||||||
// supports individual selection: 1 2 3 4
|
// supports individual selection: 1 2 3 4
|
||||||
// supports range selections: 1-4 10-20
|
// supports range selections: 1-4 10-20
|
||||||
@ -98,8 +116,8 @@ func ParseNumberMenu(input string) (include, exclude IntRanges,
|
|||||||
num2 = num1
|
num2 = num1
|
||||||
}
|
}
|
||||||
|
|
||||||
mi := min(num1, num2)
|
mi := Min(num1, num2)
|
||||||
ma := max(num1, num2)
|
ma := Max(num1, num2)
|
||||||
|
|
||||||
if !invert {
|
if !invert {
|
||||||
include = append(include, makeIntRange(mi, ma))
|
include = append(include, makeIntRange(mi, ma))
|
||||||
|
@ -64,9 +64,9 @@ func TestParseNumberMenu(t *testing.T) {
|
|||||||
},
|
},
|
||||||
mapset.NewThreadUnsafeSet[string](), mapset.NewThreadUnsafeSet[string](),
|
mapset.NewThreadUnsafeSet[string](), mapset.NewThreadUnsafeSet[string](),
|
||||||
},
|
},
|
||||||
{IntRanges{}, IntRanges{}, mapset.NewThreadUnsafeSet("abort", "all", "none"), mapset.NewThreadUnsafeSet[string]()},
|
{IntRanges{}, IntRanges{}, mapset.NewThreadUnsafeSet[string]("abort", "all", "none"), mapset.NewThreadUnsafeSet[string]()},
|
||||||
{IntRanges{}, IntRanges{}, mapset.NewThreadUnsafeSet("a-b"), mapset.NewThreadUnsafeSet("abort", "a-b")},
|
{IntRanges{}, IntRanges{}, mapset.NewThreadUnsafeSet[string]("a-b"), mapset.NewThreadUnsafeSet[string]("abort", "a-b")},
|
||||||
{IntRanges{}, IntRanges{}, mapset.NewThreadUnsafeSet("-9223372036854775809-9223372036854775809"), mapset.NewThreadUnsafeSet[string]()},
|
{IntRanges{}, IntRanges{}, mapset.NewThreadUnsafeSet[string]("-9223372036854775809-9223372036854775809"), mapset.NewThreadUnsafeSet[string]()},
|
||||||
{IntRanges{
|
{IntRanges{
|
||||||
makeIntRange(1, 1),
|
makeIntRange(1, 1),
|
||||||
makeIntRange(2, 2),
|
makeIntRange(2, 2),
|
||||||
@ -86,7 +86,7 @@ func TestParseNumberMenu(t *testing.T) {
|
|||||||
}, IntRanges{}, mapset.NewThreadUnsafeSet[string](), mapset.NewThreadUnsafeSet[string]()},
|
}, IntRanges{}, mapset.NewThreadUnsafeSet[string](), mapset.NewThreadUnsafeSet[string]()},
|
||||||
{IntRanges{}, IntRanges{}, mapset.NewThreadUnsafeSet[string](), mapset.NewThreadUnsafeSet[string]()},
|
{IntRanges{}, IntRanges{}, mapset.NewThreadUnsafeSet[string](), mapset.NewThreadUnsafeSet[string]()},
|
||||||
{IntRanges{}, IntRanges{}, mapset.NewThreadUnsafeSet[string](), mapset.NewThreadUnsafeSet[string]()},
|
{IntRanges{}, IntRanges{}, mapset.NewThreadUnsafeSet[string](), mapset.NewThreadUnsafeSet[string]()},
|
||||||
{IntRanges{}, IntRanges{}, mapset.NewThreadUnsafeSet("a", "b", "c", "d", "e"), mapset.NewThreadUnsafeSet[string]()},
|
{IntRanges{}, IntRanges{}, mapset.NewThreadUnsafeSet[string]("a", "b", "c", "d", "e"), mapset.NewThreadUnsafeSet[string]()},
|
||||||
}
|
}
|
||||||
|
|
||||||
for n, in := range inputs {
|
for n, in := range inputs {
|
||||||
|
@ -85,13 +85,13 @@ func gitHasDiff(ctx context.Context, cmdBuilder exe.ICmdBuilder, dir string) (bo
|
|||||||
|
|
||||||
return lastseen != upstream, nil
|
return lastseen != upstream, nil
|
||||||
}
|
}
|
||||||
// If AUR_SEEN does not exists, we have never reviewed a diff for this package
|
// If YAY_DIFF_REVIEW does not exists, we have never reviewed a diff for this package
|
||||||
// and should display it.
|
// and should display it.
|
||||||
return true, nil
|
return true, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// Return whether or not we have reviewed a diff yet. It checks for the existence of
|
// Return whether or not we have reviewed a diff yet. It checks for the existence of
|
||||||
// AUR_SEEN in the git ref-list.
|
// YAY_DIFF_REVIEW in the git ref-list.
|
||||||
func gitHasLastSeenRef(ctx context.Context, cmdBuilder exe.ICmdBuilder, dir string) bool {
|
func gitHasLastSeenRef(ctx context.Context, cmdBuilder exe.ICmdBuilder, dir string) bool {
|
||||||
_, _, err := cmdBuilder.Capture(
|
_, _, err := cmdBuilder.Capture(
|
||||||
cmdBuilder.BuildGitCmd(ctx,
|
cmdBuilder.BuildGitCmd(ctx,
|
||||||
@ -100,7 +100,7 @@ func gitHasLastSeenRef(ctx context.Context, cmdBuilder exe.ICmdBuilder, dir stri
|
|||||||
return err == nil
|
return err == nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// Returns the last reviewed hash. If AUR_SEEN exists it will return this hash.
|
// Returns the last reviewed hash. If YAY_DIFF_REVIEW exists it will return this hash.
|
||||||
// If it does not it will return empty tree as no diff have been reviewed yet.
|
// If it does not it will return empty tree as no diff have been reviewed yet.
|
||||||
func getLastSeenHash(ctx context.Context, cmdBuilder exe.ICmdBuilder, dir string) (string, error) {
|
func getLastSeenHash(ctx context.Context, cmdBuilder exe.ICmdBuilder, dir string) (string, error) {
|
||||||
if gitHasLastSeenRef(ctx, cmdBuilder, dir) {
|
if gitHasLastSeenRef(ctx, cmdBuilder, dir) {
|
||||||
@ -119,7 +119,7 @@ func getLastSeenHash(ctx context.Context, cmdBuilder exe.ICmdBuilder, dir string
|
|||||||
return gitEmptyTree, nil
|
return gitEmptyTree, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// Update the AUR_SEEN ref to HEAD. We use this ref to determine which diff were
|
// Update the YAY_DIFF_REVIEW ref to HEAD. We use this ref to determine which diff were
|
||||||
// reviewed by the user.
|
// reviewed by the user.
|
||||||
func gitUpdateSeenRef(ctx context.Context, cmdBuilder exe.ICmdBuilder, dir string) error {
|
func gitUpdateSeenRef(ctx context.Context, cmdBuilder exe.ICmdBuilder, dir string) error {
|
||||||
_, stderr, err := cmdBuilder.Capture(
|
_, stderr, err := cmdBuilder.Capture(
|
||||||
|
@ -289,7 +289,7 @@ func matchesSearch(pkg *aur.Pkg, terms []string) bool {
|
|||||||
desc := strings.ToLower(pkg.Description)
|
desc := strings.ToLower(pkg.Description)
|
||||||
targ := strings.ToLower(pkgN)
|
targ := strings.ToLower(pkgN)
|
||||||
|
|
||||||
if !strings.Contains(name, targ) && !strings.Contains(desc, targ) {
|
if !(strings.Contains(name, targ) || strings.Contains(desc, targ)) {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -37,7 +37,7 @@ func GetVersionDiff(oldVersion, newVersion string) (left, right string) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
for index, char := range oldVersion {
|
for index, char := range oldVersion {
|
||||||
charIsSpecial := !unicode.IsLetter(char) && !unicode.IsNumber(char)
|
charIsSpecial := !(unicode.IsLetter(char) || unicode.IsNumber(char))
|
||||||
|
|
||||||
if (index >= len(newVersion)) || (char != rune(newVersion[index])) {
|
if (index >= len(newVersion)) || (char != rune(newVersion[index])) {
|
||||||
if charIsSpecial {
|
if charIsSpecial {
|
||||||
|
@ -5,7 +5,6 @@ package runtime
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"runtime"
|
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/Morganamilo/go-pacmanconf"
|
"github.com/Morganamilo/go-pacmanconf"
|
||||||
@ -22,19 +21,13 @@ func TestPacmanConf(t *testing.T) {
|
|||||||
absPath, err := filepath.Abs(path)
|
absPath, err := filepath.Abs(path)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
|
|
||||||
// detect the architecture of the system
|
|
||||||
expectedArch := []string{"x86_64"}
|
|
||||||
if runtime.GOARCH == "arm64" {
|
|
||||||
expectedArch = []string{"aarch64"}
|
|
||||||
}
|
|
||||||
|
|
||||||
expectedPacmanConf := &pacmanconf.Config{
|
expectedPacmanConf := &pacmanconf.Config{
|
||||||
RootDir: "/", DBPath: "/var/lib/pacman/",
|
RootDir: "/", DBPath: "/var/lib/pacman/",
|
||||||
CacheDir: []string{"/var/cache/pacman/pkg/"},
|
CacheDir: []string{"/var/cache/pacman/pkg/"},
|
||||||
HookDir: []string{"/etc/pacman.d/hooks/"},
|
HookDir: []string{"/etc/pacman.d/hooks/"},
|
||||||
GPGDir: "/etc/pacman.d/gnupg/", LogFile: "/var/log/pacman.log",
|
GPGDir: "/etc/pacman.d/gnupg/", LogFile: "/var/log/pacman.log",
|
||||||
HoldPkg: []string{"pacman", "glibc"}, IgnorePkg: []string{"xorm"},
|
HoldPkg: []string{"pacman", "glibc"}, IgnorePkg: []string{"xorm"},
|
||||||
IgnoreGroup: []string{"yorm"}, Architecture: expectedArch,
|
IgnoreGroup: []string{"yorm"}, Architecture: []string{"x86_64"},
|
||||||
XferCommand: "/usr/bin/wget --passive-ftp -c -O %o %u",
|
XferCommand: "/usr/bin/wget --passive-ftp -c -O %o %u",
|
||||||
NoUpgrade: []string(nil), NoExtract: []string(nil), CleanMethod: []string{"KeepInstalled"},
|
NoUpgrade: []string(nil), NoExtract: []string(nil), CleanMethod: []string{"KeepInstalled"},
|
||||||
SigLevel: []string{"PackageRequired", "PackageTrustedOnly", "DatabaseOptional", "DatabaseTrustedOnly"},
|
SigLevel: []string{"PackageRequired", "PackageTrustedOnly", "DatabaseOptional", "DatabaseTrustedOnly"},
|
||||||
|
@ -21,8 +21,6 @@ import (
|
|||||||
"github.com/Jguer/aur/rpc"
|
"github.com/Jguer/aur/rpc"
|
||||||
"github.com/Jguer/votar/pkg/vote"
|
"github.com/Jguer/votar/pkg/vote"
|
||||||
"github.com/Morganamilo/go-pacmanconf"
|
"github.com/Morganamilo/go-pacmanconf"
|
||||||
|
|
||||||
"golang.org/x/net/proxy"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
type Runtime struct {
|
type Runtime struct {
|
||||||
@ -41,20 +39,10 @@ func NewRuntime(cfg *settings.Configuration, cmdArgs *parser.Arguments, version
|
|||||||
logger := text.NewLogger(os.Stdout, os.Stderr, os.Stdin, cfg.Debug, "runtime")
|
logger := text.NewLogger(os.Stdout, os.Stderr, os.Stdin, cfg.Debug, "runtime")
|
||||||
runner := exe.NewOSRunner(logger.Child("runner"))
|
runner := exe.NewOSRunner(logger.Child("runner"))
|
||||||
|
|
||||||
transport := http.DefaultTransport.(*http.Transport).Clone()
|
|
||||||
if socks5_proxy := os.Getenv("SOCKS5_PROXY"); socks5_proxy != "" {
|
|
||||||
dialer, err := proxy.SOCKS5("tcp", socks5_proxy, nil, proxy.Direct)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
transport = &http.Transport{Dial: dialer.Dial}
|
|
||||||
}
|
|
||||||
|
|
||||||
httpClient := &http.Client{
|
httpClient := &http.Client{
|
||||||
CheckRedirect: func(req *http.Request, via []*http.Request) error {
|
CheckRedirect: func(req *http.Request, via []*http.Request) error {
|
||||||
return http.ErrUseLastResponse
|
return http.ErrUseLastResponse
|
||||||
},
|
},
|
||||||
Transport: transport,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
userAgent := fmt.Sprintf("Yay/%s", version)
|
userAgent := fmt.Sprintf("Yay/%s", version)
|
||||||
|
@ -169,7 +169,7 @@ func (c *Configuration) handleOption(option, value string) bool {
|
|||||||
c.CombinedUpgrade = boolValue
|
c.CombinedUpgrade = boolValue
|
||||||
case "a", "aur":
|
case "a", "aur":
|
||||||
c.Mode = parser.ModeAUR
|
c.Mode = parser.ModeAUR
|
||||||
case "N", "repo":
|
case "repo":
|
||||||
c.Mode = parser.ModeRepo
|
c.Mode = parser.ModeRepo
|
||||||
case "removemake":
|
case "removemake":
|
||||||
c.RemoveMake = "yes"
|
c.RemoveMake = "yes"
|
||||||
|
@ -173,13 +173,12 @@ func (c *CmdBuilder) deElevateCommand(ctx context.Context, cmd *exec.Cmd) *exec.
|
|||||||
|
|
||||||
if userFound, err := user.Lookup(ogCaller); err == nil {
|
if userFound, err := user.Lookup(ogCaller); err == nil {
|
||||||
cmd.SysProcAttr = &syscall.SysProcAttr{}
|
cmd.SysProcAttr = &syscall.SysProcAttr{}
|
||||||
uid64, errUid := strconv.ParseUint(userFound.Uid, 10, 32)
|
uid, _ := strconv.Atoi(userFound.Uid)
|
||||||
gid64, errGid := strconv.ParseUint(userFound.Gid, 10, 32)
|
gid, _ := strconv.Atoi(userFound.Gid)
|
||||||
if errUid == nil && errGid == nil {
|
cmd.SysProcAttr.Credential = &syscall.Credential{Uid: uint32(uid), Gid: uint32(gid)}
|
||||||
cmd.SysProcAttr.Credential = &syscall.Credential{Uid: uint32(uid64), Gid: uint32(gid64)}
|
|
||||||
return cmd
|
return cmd
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
cmdArgs := []string{
|
cmdArgs := []string{
|
||||||
"--service-type=oneshot",
|
"--service-type=oneshot",
|
||||||
|
@ -25,7 +25,7 @@ func (o *Option) Add(args ...string) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (o *Option) First() string {
|
func (o *Option) First() string {
|
||||||
if len(o.Args) == 0 {
|
if o.Args == nil || len(o.Args) == 0 {
|
||||||
return ""
|
return ""
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -372,7 +372,6 @@ func isArg(arg string) bool {
|
|||||||
case "y", "refresh":
|
case "y", "refresh":
|
||||||
case "x", "regex":
|
case "x", "regex":
|
||||||
case "machinereadable":
|
case "machinereadable":
|
||||||
case "disable-sandbox":
|
|
||||||
// yay options
|
// yay options
|
||||||
case "aururl":
|
case "aururl":
|
||||||
case "aurrpcurl":
|
case "aurrpcurl":
|
||||||
@ -426,7 +425,7 @@ func isArg(arg string) bool {
|
|||||||
case "useask":
|
case "useask":
|
||||||
case "combinedupgrade":
|
case "combinedupgrade":
|
||||||
case "a", "aur":
|
case "a", "aur":
|
||||||
case "N", "repo":
|
case "repo":
|
||||||
case "removemake":
|
case "removemake":
|
||||||
case "noremovemake":
|
case "noremovemake":
|
||||||
case "askremovemake":
|
case "askremovemake":
|
||||||
@ -565,6 +564,7 @@ func (a *Arguments) parseShortOption(arg, param string) (usedNext bool, err erro
|
|||||||
break
|
break
|
||||||
} else {
|
} else {
|
||||||
err = a.AddArg(char)
|
err = a.AddArg(char)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
@ -2,7 +2,6 @@ package build
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"errors"
|
"errors"
|
||||||
"strings"
|
|
||||||
|
|
||||||
"github.com/leonelquinteros/gotext"
|
"github.com/leonelquinteros/gotext"
|
||||||
)
|
)
|
||||||
@ -14,17 +13,13 @@ type FailedIgnoredPkgError struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (e *FailedIgnoredPkgError) Error() string {
|
func (e *FailedIgnoredPkgError) Error() string {
|
||||||
var sb strings.Builder
|
msg := gotext.Get("Failed to install the following packages. Manual intervention is required:")
|
||||||
sb.WriteString(gotext.Get("Failed to install the following packages. Manual intervention is required:"))
|
|
||||||
|
|
||||||
for pkg, err := range e.pkgErrors {
|
for pkg, err := range e.pkgErrors {
|
||||||
sb.WriteString("\n")
|
msg += "\n" + pkg + " - " + err.Error()
|
||||||
sb.WriteString(pkg)
|
|
||||||
sb.WriteString(" - ")
|
|
||||||
sb.WriteString(err.Error())
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return sb.String()
|
return msg
|
||||||
}
|
}
|
||||||
|
|
||||||
type PkgDestNotInListError struct {
|
type PkgDestNotInListError struct {
|
||||||
|
@ -145,20 +145,16 @@ func (installer *Installer) handleLayer(ctx context.Context,
|
|||||||
excluded []string,
|
excluded []string,
|
||||||
) error {
|
) error {
|
||||||
// Install layer
|
// Install layer
|
||||||
nameToBaseMap := make(map[string]string, len(layer))
|
nameToBaseMap := make(map[string]string, 0)
|
||||||
syncDeps, syncExp, syncGroups := mapset.NewThreadUnsafeSet[string](),
|
syncDeps, syncExp, syncGroups := mapset.NewThreadUnsafeSet[string](),
|
||||||
mapset.NewThreadUnsafeSet[string](), mapset.NewThreadUnsafeSet[string]()
|
mapset.NewThreadUnsafeSet[string](), mapset.NewThreadUnsafeSet[string]()
|
||||||
aurDeps, aurExp, aurOrigTargetBases := mapset.NewThreadUnsafeSet[string](),
|
aurDeps, aurExp := mapset.NewThreadUnsafeSet[string](), mapset.NewThreadUnsafeSet[string]()
|
||||||
mapset.NewThreadUnsafeSet[string](), mapset.NewThreadUnsafeSet[string]()
|
|
||||||
|
|
||||||
upgradeSync := false
|
upgradeSync := false
|
||||||
for name, info := range layer {
|
for name, info := range layer {
|
||||||
switch info.Source {
|
switch info.Source {
|
||||||
case dep.AUR, dep.SrcInfo:
|
case dep.AUR, dep.SrcInfo:
|
||||||
nameToBaseMap[name] = *info.AURBase
|
nameToBaseMap[name] = *info.AURBase
|
||||||
if installer.origTargets.Contains(name) {
|
|
||||||
aurOrigTargetBases.Add(*info.AURBase)
|
|
||||||
}
|
|
||||||
|
|
||||||
switch info.Reason {
|
switch info.Reason {
|
||||||
case dep.Explicit:
|
case dep.Explicit:
|
||||||
@ -205,15 +201,14 @@ func (installer *Installer) handleLayer(ctx context.Context,
|
|||||||
}
|
}
|
||||||
|
|
||||||
errAur := installer.installAURPackages(ctx, cmdArgs, aurDeps, aurExp,
|
errAur := installer.installAURPackages(ctx, cmdArgs, aurDeps, aurExp,
|
||||||
aurOrigTargetBases, nameToBaseMap, pkgBuildDirs, true, lastLayer,
|
nameToBaseMap, pkgBuildDirs, true, lastLayer, installer.appendNoConfirm())
|
||||||
installer.appendNoConfirm())
|
|
||||||
|
|
||||||
return errAur
|
return errAur
|
||||||
}
|
}
|
||||||
|
|
||||||
func (installer *Installer) installAURPackages(ctx context.Context,
|
func (installer *Installer) installAURPackages(ctx context.Context,
|
||||||
cmdArgs *parser.Arguments,
|
cmdArgs *parser.Arguments,
|
||||||
aurDepNames, aurExpNames, aurOrigTargetBases mapset.Set[string],
|
aurDepNames, aurExpNames mapset.Set[string],
|
||||||
nameToBase, pkgBuildDirsByBase map[string]string,
|
nameToBase, pkgBuildDirsByBase map[string]string,
|
||||||
installIncompatible bool,
|
installIncompatible bool,
|
||||||
lastLayer bool,
|
lastLayer bool,
|
||||||
@ -224,24 +219,15 @@ func (installer *Installer) installAURPackages(ctx context.Context,
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
builtPkgDests := make(map[string]map[string]string)
|
deps, exps := make([]string, 0, aurDepNames.Cardinality()), make([]string, 0, aurExpNames.Cardinality())
|
||||||
deps := make([]string, 0, aurDepNames.Cardinality())
|
pkgArchives := make([]string, 0, len(exps)+len(deps))
|
||||||
exps := make([]string, 0, aurExpNames.Cardinality())
|
|
||||||
pkgArchives := make([]string, 0, len(all))
|
|
||||||
|
|
||||||
for _, name := range all {
|
for _, name := range all {
|
||||||
base := nameToBase[name]
|
base := nameToBase[name]
|
||||||
dir := pkgBuildDirsByBase[base]
|
dir := pkgBuildDirsByBase[base]
|
||||||
|
|
||||||
pkgdests, ok := builtPkgDests[base]
|
pkgdests, errMake := installer.buildPkg(ctx, dir, base,
|
||||||
if ok {
|
installIncompatible, cmdArgs.ExistsArg("needed"), installer.origTargets.Contains(name))
|
||||||
installer.log.Debugln("skipping built pkgbase", base, "package", name)
|
|
||||||
} else {
|
|
||||||
var errMake error
|
|
||||||
installer.log.Debugln("building pkgbase", base, "package", name)
|
|
||||||
pkgdests, errMake = installer.buildPkg(ctx, dir, base,
|
|
||||||
installIncompatible, cmdArgs.ExistsArg("needed"), aurOrigTargetBases.Contains(base))
|
|
||||||
builtPkgDests[base] = pkgdests
|
|
||||||
if errMake != nil {
|
if errMake != nil {
|
||||||
if !lastLayer {
|
if !lastLayer {
|
||||||
return fmt.Errorf("%s - %w", gotext.Get("error making: %s", base), errMake)
|
return fmt.Errorf("%s - %w", gotext.Get("error making: %s", base), errMake)
|
||||||
@ -251,7 +237,6 @@ func (installer *Installer) installAURPackages(ctx context.Context,
|
|||||||
installer.log.Errorln(gotext.Get("error making: %s", base), "-", errMake)
|
installer.log.Errorln(gotext.Get("error making: %s", base), "-", errMake)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
if len(pkgdests) == 0 {
|
if len(pkgdests) == 0 {
|
||||||
installer.log.Warnln(gotext.Get("nothing to install for %s", text.Cyan(base)))
|
installer.log.Warnln(gotext.Get("nothing to install for %s", text.Cyan(base)))
|
||||||
|
@ -612,18 +612,8 @@ func TestInstaller_CompileFailed(t *testing.T) {
|
|||||||
failed, err := installer.CompileFailedAndIgnored()
|
failed, err := installer.CompileFailedAndIgnored()
|
||||||
if tc.wantErrCompile {
|
if tc.wantErrCompile {
|
||||||
require.Error(td, err)
|
require.Error(td, err)
|
||||||
for key := range failed {
|
assert.ErrorContains(td, err, "yay")
|
||||||
assert.ErrorContains(td, err, key)
|
assert.Len(t, failed, len(tc.targets))
|
||||||
}
|
|
||||||
uniqueBases := make(map[string]struct{})
|
|
||||||
for _, layer := range tc.targets {
|
|
||||||
for _, info := range layer {
|
|
||||||
if info.AURBase != nil {
|
|
||||||
uniqueBases[*info.AURBase] = struct{}{}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
require.Len(td, failed, len(uniqueBases))
|
|
||||||
} else {
|
} else {
|
||||||
require.NoError(td, err)
|
require.NoError(td, err)
|
||||||
}
|
}
|
||||||
@ -706,6 +696,8 @@ func TestInstaller_InstallSplitPackage(t *testing.T) {
|
|||||||
"pacman -D -q --asdeps --config /etc/pacman.conf -- dotnet-runtime-6.0 aspnet-runtime dotnet-sdk-6.0",
|
"pacman -D -q --asdeps --config /etc/pacman.conf -- dotnet-runtime-6.0 aspnet-runtime dotnet-sdk-6.0",
|
||||||
"makepkg --nobuild -f -C --ignorearch",
|
"makepkg --nobuild -f -C --ignorearch",
|
||||||
"makepkg -f -c --noconfirm --noextract --noprepare --holdver --ignorearch",
|
"makepkg -f -c --noconfirm --noextract --noprepare --holdver --ignorearch",
|
||||||
|
"makepkg --nobuild -f -C --ignorearch",
|
||||||
|
"makepkg -c --nobuild --noextract --ignorearch",
|
||||||
"pacman -U --config /etc/pacman.conf -- /testdir/jellyfin-web-10.8.4-1-x86_64.pkg.tar.zst /testdir/jellyfin-server-10.8.4-1-x86_64.pkg.tar.zst",
|
"pacman -U --config /etc/pacman.conf -- /testdir/jellyfin-web-10.8.4-1-x86_64.pkg.tar.zst /testdir/jellyfin-server-10.8.4-1-x86_64.pkg.tar.zst",
|
||||||
"pacman -D -q --asdeps --config /etc/pacman.conf -- jellyfin-server jellyfin-web",
|
"pacman -D -q --asdeps --config /etc/pacman.conf -- jellyfin-server jellyfin-web",
|
||||||
"makepkg --nobuild -f -C --ignorearch",
|
"makepkg --nobuild -f -C --ignorearch",
|
||||||
@ -713,7 +705,7 @@ func TestInstaller_InstallSplitPackage(t *testing.T) {
|
|||||||
"pacman -U --config /etc/pacman.conf -- /testdir/jellyfin-10.8.4-1-x86_64.pkg.tar.zst",
|
"pacman -U --config /etc/pacman.conf -- /testdir/jellyfin-10.8.4-1-x86_64.pkg.tar.zst",
|
||||||
"pacman -D -q --asexplicit --config /etc/pacman.conf -- jellyfin",
|
"pacman -D -q --asexplicit --config /etc/pacman.conf -- jellyfin",
|
||||||
},
|
},
|
||||||
wantCapture: []string{"makepkg --packagelist", "makepkg --packagelist"},
|
wantCapture: []string{"makepkg --packagelist", "makepkg --packagelist", "makepkg --packagelist"},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -134,7 +134,7 @@ func parsePackageList(ctx context.Context, cmdBuilder exe.ICmdBuilder,
|
|||||||
}
|
}
|
||||||
|
|
||||||
lines := strings.Split(stdout, "\n")
|
lines := strings.Split(stdout, "\n")
|
||||||
pkgdests = make(map[string]string, len(lines))
|
pkgdests = make(map[string]string)
|
||||||
|
|
||||||
for _, line := range lines {
|
for _, line := range lines {
|
||||||
if line == "" {
|
if line == "" {
|
||||||
|
@ -1,167 +0,0 @@
|
|||||||
package build
|
|
||||||
|
|
||||||
import (
|
|
||||||
"context"
|
|
||||||
"fmt"
|
|
||||||
"os/exec"
|
|
||||||
"testing"
|
|
||||||
|
|
||||||
"github.com/stretchr/testify/assert"
|
|
||||||
"github.com/stretchr/testify/require"
|
|
||||||
|
|
||||||
"github.com/Jguer/yay/v12/pkg/settings/exe"
|
|
||||||
)
|
|
||||||
|
|
||||||
func TestParsePackageList(t *testing.T) {
|
|
||||||
t.Parallel()
|
|
||||||
|
|
||||||
type testCase struct {
|
|
||||||
desc string
|
|
||||||
mockStdout string
|
|
||||||
mockStderr string
|
|
||||||
mockErr error
|
|
||||||
wantPkgDests map[string]string
|
|
||||||
wantPkgVersion string
|
|
||||||
wantErr bool
|
|
||||||
wantErrText string // Optional: specific error text to check
|
|
||||||
}
|
|
||||||
|
|
||||||
testCases := []testCase{
|
|
||||||
{
|
|
||||||
desc: "Standard package",
|
|
||||||
mockStdout: "/path/to/package-1.2.3-4-x86_64.pkg.tar.zst\n",
|
|
||||||
wantPkgDests: map[string]string{
|
|
||||||
"package": "/path/to/package-1.2.3-4-x86_64.pkg.tar.zst",
|
|
||||||
},
|
|
||||||
wantPkgVersion: "1.2.3-4",
|
|
||||||
wantErr: false,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
desc: "Package with dash in name",
|
|
||||||
mockStdout: "/path/to/package-name-with-dash-1.0.0-1-any.pkg.tar.gz\n",
|
|
||||||
wantPkgDests: map[string]string{
|
|
||||||
"package-name-with-dash": "/path/to/package-name-with-dash-1.0.0-1-any.pkg.tar.gz",
|
|
||||||
},
|
|
||||||
wantPkgVersion: "1.0.0-1",
|
|
||||||
wantErr: false, // This should fail with current logic but pass with regex
|
|
||||||
},
|
|
||||||
{
|
|
||||||
desc: "Multiple packages",
|
|
||||||
mockStdout: "/path/to/pkg1-1.0-1-x86_64.pkg.tar.zst\n/other/path/pkg2-2.5-3-any.pkg.tar.xz\n",
|
|
||||||
wantPkgDests: map[string]string{
|
|
||||||
"pkg1": "/path/to/pkg1-1.0-1-x86_64.pkg.tar.zst",
|
|
||||||
"pkg2": "/other/path/pkg2-2.5-3-any.pkg.tar.xz",
|
|
||||||
},
|
|
||||||
wantPkgVersion: "2.5-3", // Version of the last package processed
|
|
||||||
wantErr: false,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
desc: "Empty input",
|
|
||||||
mockStdout: "",
|
|
||||||
wantErr: true, // Expect NoPkgDestsFoundError
|
|
||||||
},
|
|
||||||
{
|
|
||||||
desc: "Input with only newline",
|
|
||||||
mockStdout: "\n",
|
|
||||||
wantErr: true, // Expect NoPkgDestsFoundError
|
|
||||||
},
|
|
||||||
{
|
|
||||||
desc: "Makepkg error",
|
|
||||||
mockStderr: "makepkg failed",
|
|
||||||
mockErr: fmt.Errorf("exit status 1"),
|
|
||||||
wantErr: true,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
desc: "Malformed filename (too few dashes)",
|
|
||||||
mockStdout: "/path/to/malformed-package.pkg.tar.zst\n",
|
|
||||||
wantErr: true, // Expect "cannot find package name" error
|
|
||||||
},
|
|
||||||
{
|
|
||||||
desc: "Package with epoch",
|
|
||||||
mockStdout: "/path/to/epochpkg-1:2.0.0-1-x86_64.pkg.tar.zst\n",
|
|
||||||
wantPkgDests: map[string]string{
|
|
||||||
"epochpkg": "/path/to/epochpkg-1:2.0.0-1-x86_64.pkg.tar.zst",
|
|
||||||
},
|
|
||||||
wantPkgVersion: "1:2.0.0-1",
|
|
||||||
wantErr: false, // This might fail with current logic
|
|
||||||
},
|
|
||||||
{
|
|
||||||
desc: "Package with .zst extension",
|
|
||||||
mockStdout: "/path/to/zstdpkg-3.3-1-any.pkg.tar.zst\n",
|
|
||||||
wantPkgDests: map[string]string{
|
|
||||||
"zstdpkg": "/path/to/zstdpkg-3.3-1-any.pkg.tar.zst",
|
|
||||||
},
|
|
||||||
wantPkgVersion: "3.3-1",
|
|
||||||
wantErr: false,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
desc: "Package with .gz extension",
|
|
||||||
mockStdout: "/path/to/gzpkg-3.3-1-any.pkg.tar.gz\n",
|
|
||||||
wantPkgDests: map[string]string{
|
|
||||||
"gzpkg": "/path/to/gzpkg-3.3-1-any.pkg.tar.gz",
|
|
||||||
},
|
|
||||||
wantPkgVersion: "3.3-1",
|
|
||||||
wantErr: false,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
desc: "Package with .xz extension",
|
|
||||||
mockStdout: "/path/to/xzpkg-3.3-1-any.pkg.tar.xz\n",
|
|
||||||
wantPkgDests: map[string]string{
|
|
||||||
"xzpkg": "/path/to/xzpkg-3.3-1-any.pkg.tar.xz",
|
|
||||||
},
|
|
||||||
wantPkgVersion: "3.3-1",
|
|
||||||
wantErr: false,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
desc: "Package with .bz2 extension",
|
|
||||||
mockStdout: "/path/to/bz2pkg-3.3-1-any.pkg.tar.bz2\n",
|
|
||||||
wantPkgDests: map[string]string{
|
|
||||||
"bz2pkg": "/path/to/bz2pkg-3.3-1-any.pkg.tar.bz2",
|
|
||||||
},
|
|
||||||
wantPkgVersion: "3.3-1",
|
|
||||||
wantErr: false,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
desc: "Package with .tar extension (uncompressed)",
|
|
||||||
mockStdout: "/path/to/tarpkg-3.3-1-any.pkg.tar\n",
|
|
||||||
wantPkgDests: map[string]string{
|
|
||||||
"tarpkg": "/path/to/tarpkg-3.3-1-any.pkg.tar",
|
|
||||||
},
|
|
||||||
wantPkgVersion: "3.3-1",
|
|
||||||
wantErr: false,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
for _, tc := range testCases {
|
|
||||||
tc := tc // capture range variable
|
|
||||||
t.Run(tc.desc, func(t *testing.T) {
|
|
||||||
t.Parallel()
|
|
||||||
|
|
||||||
mockRunner := &exe.MockRunner{
|
|
||||||
CaptureFn: func(cmd *exec.Cmd) (string, string, error) {
|
|
||||||
// Basic check to ensure the command looks right
|
|
||||||
require.Contains(t, cmd.String(), "--packagelist")
|
|
||||||
return tc.mockStdout, tc.mockStderr, tc.mockErr
|
|
||||||
},
|
|
||||||
}
|
|
||||||
cmdBuilder := &exe.CmdBuilder{Runner: mockRunner} // Simplified for this test
|
|
||||||
|
|
||||||
pkgdests, pkgVersion, err := parsePackageList(context.Background(), cmdBuilder, "/fake/dir")
|
|
||||||
|
|
||||||
if tc.wantErr {
|
|
||||||
assert.Error(t, err)
|
|
||||||
if tc.wantErrText != "" {
|
|
||||||
assert.Contains(t, err.Error(), tc.wantErrText)
|
|
||||||
}
|
|
||||||
// Check for specific error types if needed
|
|
||||||
if tc.desc == "Empty input" || tc.desc == "Input with only newline" {
|
|
||||||
assert.IsType(t, &NoPkgDestsFoundError{}, err)
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
assert.NoError(t, err)
|
|
||||||
assert.Equal(t, tc.wantPkgDests, pkgdests)
|
|
||||||
assert.Equal(t, tc.wantPkgVersion, pkgVersion)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
@ -194,15 +194,14 @@ func (preper *Preparer) PrepareWorkspace(ctx context.Context,
|
|||||||
|
|
||||||
for _, layer := range targets {
|
for _, layer := range targets {
|
||||||
for _, info := range layer {
|
for _, info := range layer {
|
||||||
switch info.Source {
|
if info.Source == dep.AUR {
|
||||||
case dep.AUR:
|
|
||||||
pkgBase := *info.AURBase
|
pkgBase := *info.AURBase
|
||||||
pkgBuildDir := filepath.Join(preper.cfg.BuildDir, pkgBase)
|
pkgBuildDir := filepath.Join(preper.cfg.BuildDir, pkgBase)
|
||||||
if preper.needToCloneAURBase(info, pkgBuildDir) {
|
if preper.needToCloneAURBase(info, pkgBuildDir) {
|
||||||
aurBasesToClone.Add(pkgBase)
|
aurBasesToClone.Add(pkgBase)
|
||||||
}
|
}
|
||||||
pkgBuildDirsByBase[pkgBase] = pkgBuildDir
|
pkgBuildDirsByBase[pkgBase] = pkgBuildDir
|
||||||
case dep.SrcInfo:
|
} else if info.Source == dep.SrcInfo {
|
||||||
pkgBase := *info.AURBase
|
pkgBase := *info.AURBase
|
||||||
pkgBuildDirsByBase[pkgBase] = *info.SrcinfoPath
|
pkgBuildDirsByBase[pkgBase] = *info.SrcinfoPath
|
||||||
}
|
}
|
||||||
|
@ -23,12 +23,12 @@ func SplitDBFromName(pkg string) (db, name string) {
|
|||||||
|
|
||||||
// LessRunes compares two rune values, and returns true if the first argument is lexicographicaly smaller.
|
// LessRunes compares two rune values, and returns true if the first argument is lexicographicaly smaller.
|
||||||
func LessRunes(iRunes, jRunes []rune) bool {
|
func LessRunes(iRunes, jRunes []rune) bool {
|
||||||
maxLen := len(iRunes)
|
max := len(iRunes)
|
||||||
if maxLen > len(jRunes) {
|
if max > len(jRunes) {
|
||||||
maxLen = len(jRunes)
|
max = len(jRunes)
|
||||||
}
|
}
|
||||||
|
|
||||||
for idx := 0; idx < maxLen; idx++ {
|
for idx := 0; idx < max; idx++ {
|
||||||
ir := iRunes[idx]
|
ir := iRunes[idx]
|
||||||
jr := jRunes[idx]
|
jr := jRunes[idx]
|
||||||
|
|
||||||
|
@ -3,6 +3,7 @@ package upgrade
|
|||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"math"
|
||||||
"sort"
|
"sort"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
@ -194,15 +195,14 @@ func (u *UpgradeService) graphToUpSlice(graph *topo.Graph[string, *dep.InstallIn
|
|||||||
parents := graph.ImmediateDependencies(name)
|
parents := graph.ImmediateDependencies(name)
|
||||||
extra := ""
|
extra := ""
|
||||||
if len(parents) > 0 && !info.Upgrade && info.Reason == dep.MakeDep {
|
if len(parents) > 0 && !info.Upgrade && info.Reason == dep.MakeDep {
|
||||||
reducedParents := parents.Slice()[:min(cutOffExtra, len(parents))]
|
reducedParents := parents.Slice()[:int(math.Min(cutOffExtra, float64(len(parents))))]
|
||||||
if len(parents) > cutOffExtra {
|
if len(parents) > cutOffExtra {
|
||||||
reducedParents = append(reducedParents, "...")
|
reducedParents = append(reducedParents, "...")
|
||||||
}
|
}
|
||||||
extra = fmt.Sprintf(" (%s of %s)", dep.ReasonNames[info.Reason], strings.Join(reducedParents, ", "))
|
extra = fmt.Sprintf(" (%s of %s)", dep.ReasonNames[info.Reason], strings.Join(reducedParents, ", "))
|
||||||
}
|
}
|
||||||
|
|
||||||
switch info.Source {
|
if info.Source == dep.AUR {
|
||||||
case dep.AUR:
|
|
||||||
aurRepo := "aur"
|
aurRepo := "aur"
|
||||||
if info.Devel {
|
if info.Devel {
|
||||||
aurRepo = "devel"
|
aurRepo = "devel"
|
||||||
@ -216,7 +216,7 @@ func (u *UpgradeService) graphToUpSlice(graph *topo.Graph[string, *dep.InstallIn
|
|||||||
Reason: alpmReason,
|
Reason: alpmReason,
|
||||||
Extra: extra,
|
Extra: extra,
|
||||||
})
|
})
|
||||||
case dep.Sync:
|
} else if info.Source == dep.Sync {
|
||||||
repoUp.Up = append(repoUp.Up, Upgrade{
|
repoUp.Up = append(repoUp.Up, Upgrade{
|
||||||
Name: name,
|
Name: name,
|
||||||
RemoteVersion: info.Version,
|
RemoteVersion: info.Version,
|
||||||
@ -246,6 +246,10 @@ func (u *UpgradeService) GraphUpgrades(ctx context.Context,
|
|||||||
return graph, err
|
return graph, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if graph.Len() == 0 {
|
||||||
|
return graph, nil
|
||||||
|
}
|
||||||
|
|
||||||
return graph, nil
|
return graph, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -299,37 +303,28 @@ func (u *UpgradeService) UserExcludeUpgrades(graph *topo.Graph[string, *dep.Inst
|
|||||||
// upgrade menu asks you which packages to NOT upgrade so in this case
|
// upgrade menu asks you which packages to NOT upgrade so in this case
|
||||||
// exclude and include are kind of swapped
|
// exclude and include are kind of swapped
|
||||||
exclude, include, otherExclude, otherInclude := intrange.ParseNumberMenu(numbers)
|
exclude, include, otherExclude, otherInclude := intrange.ParseNumberMenu(numbers)
|
||||||
|
isInclude := len(include) == 0 && otherInclude.Cardinality() == 0
|
||||||
// true if user doesn't want to include specific repositories/packages
|
|
||||||
noIncludes := len(include) == 0 && otherInclude.Cardinality() == 0
|
|
||||||
|
|
||||||
// No exclusions or inclusions specified, return early
|
|
||||||
if noIncludes && len(exclude) == 0 && otherExclude.Cardinality() == 0 {
|
|
||||||
return []string{}, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
excluded := make([]string, 0)
|
excluded := make([]string, 0)
|
||||||
for i := range allUp.Up {
|
for i := range allUp.Up {
|
||||||
up := &allUp.Up[i]
|
up := &allUp.Up[i]
|
||||||
upgradeID := len(allUp.Up) - i
|
|
||||||
|
|
||||||
// check if user wants to exclude specific things (true) or include specific things
|
if isInclude && otherExclude.Contains(up.Repository) {
|
||||||
if noIncludes {
|
|
||||||
// exclude repositories mentioned by the user
|
|
||||||
if otherExclude.Contains(up.Repository) {
|
|
||||||
u.log.Debugln("pruning", up.Name)
|
|
||||||
excluded = append(excluded, graph.Prune(up.Name)...)
|
|
||||||
}
|
|
||||||
// exclude packages mentioned by the user
|
|
||||||
if exclude.Get(upgradeID) {
|
|
||||||
u.log.Debugln("pruning", up.Name)
|
u.log.Debugln("pruning", up.Name)
|
||||||
excluded = append(excluded, graph.Prune(up.Name)...)
|
excluded = append(excluded, graph.Prune(up.Name)...)
|
||||||
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
// If the user explicitly wants to include a package/repository, exclude everything else
|
if isInclude && exclude.Get(len(allUp.Up)-i) {
|
||||||
} else if !include.Get(upgradeID) && !otherInclude.Contains(up.Repository) {
|
|
||||||
u.log.Debugln("pruning", up.Name)
|
u.log.Debugln("pruning", up.Name)
|
||||||
excluded = append(excluded, graph.Prune(up.Name)...)
|
excluded = append(excluded, graph.Prune(up.Name)...)
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
if !isInclude && !(include.Get(len(allUp.Up)-i) || otherInclude.Contains(up.Repository)) {
|
||||||
|
u.log.Debugln("pruning", up.Name)
|
||||||
|
excluded = append(excluded, graph.Prune(up.Name)...)
|
||||||
|
continue
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -5,11 +5,12 @@ import (
|
|||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/Jguer/yay/v12/pkg/db"
|
"github.com/Jguer/yay/v12/pkg/db"
|
||||||
|
"github.com/Jguer/yay/v12/pkg/intrange"
|
||||||
"github.com/Jguer/yay/v12/pkg/query"
|
"github.com/Jguer/yay/v12/pkg/query"
|
||||||
"github.com/Jguer/yay/v12/pkg/text"
|
"github.com/Jguer/yay/v12/pkg/text"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Filter decides if specific package should be included in the results.
|
// Filter decides if specific package should be included in theincluded in the results.
|
||||||
type Filter func(*Upgrade) bool
|
type Filter func(*Upgrade) bool
|
||||||
|
|
||||||
// Upgrade type describes a system upgrade.
|
// Upgrade type describes a system upgrade.
|
||||||
@ -38,10 +39,9 @@ func (u UpSlice) Less(i, j int) bool {
|
|||||||
}
|
}
|
||||||
|
|
||||||
for _, db := range u.Repos {
|
for _, db := range u.Repos {
|
||||||
switch db {
|
if db == u.Up[i].Repository {
|
||||||
case u.Up[i].Repository:
|
|
||||||
return true
|
return true
|
||||||
case u.Up[j].Repository:
|
} else if db == u.Up[j].Repository {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -52,27 +52,21 @@ func (u UpSlice) Less(i, j int) bool {
|
|||||||
return text.LessRunes(iRunes, jRunes)
|
return text.LessRunes(iRunes, jRunes)
|
||||||
}
|
}
|
||||||
|
|
||||||
// calculateFormatting calculates formatting parameters for printing upgrades
|
// Print prints the details of the packages to upgrade.
|
||||||
func calculateFormatting(upgrades []Upgrade) (longestName, longestVersion, longestNumber int) {
|
func (u UpSlice) Print(logger *text.Logger) {
|
||||||
for i := range upgrades {
|
longestName, longestVersion := 0, 0
|
||||||
upgrade := &upgrades[i]
|
|
||||||
|
for k := range u.Up {
|
||||||
|
upgrade := &u.Up[k]
|
||||||
packNameLen := len(StylizedNameWithRepository(upgrade))
|
packNameLen := len(StylizedNameWithRepository(upgrade))
|
||||||
packVersion, _ := query.GetVersionDiff(upgrade.LocalVersion, upgrade.RemoteVersion)
|
packVersion, _ := query.GetVersionDiff(upgrade.LocalVersion, upgrade.RemoteVersion)
|
||||||
packVersionLen := len(packVersion)
|
packVersionLen := len(packVersion)
|
||||||
longestName = max(packNameLen, longestName)
|
longestName = intrange.Max(packNameLen, longestName)
|
||||||
longestVersion = max(packVersionLen, longestVersion)
|
longestVersion = intrange.Max(packVersionLen, longestVersion)
|
||||||
}
|
}
|
||||||
|
|
||||||
lenUp := len(upgrades)
|
lenUp := len(u.Up)
|
||||||
longestNumber = len(fmt.Sprintf("%v", lenUp))
|
longestNumber := len(fmt.Sprintf("%v", lenUp))
|
||||||
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
// Print prints the details of the packages to upgrade.
|
|
||||||
func (u UpSlice) Print(logger *text.Logger) {
|
|
||||||
longestName, longestVersion, longestNumber := calculateFormatting(u.Up)
|
|
||||||
|
|
||||||
namePadding := fmt.Sprintf("%%-%ds ", longestName)
|
namePadding := fmt.Sprintf("%%-%ds ", longestName)
|
||||||
versionPadding := fmt.Sprintf("%%-%ds", longestVersion)
|
versionPadding := fmt.Sprintf("%%-%ds", longestVersion)
|
||||||
numberPadding := fmt.Sprintf("%%%dd ", longestNumber)
|
numberPadding := fmt.Sprintf("%%%dd ", longestNumber)
|
||||||
@ -81,8 +75,10 @@ func (u UpSlice) Print(logger *text.Logger) {
|
|||||||
upgrade := &u.Up[k]
|
upgrade := &u.Up[k]
|
||||||
left, right := query.GetVersionDiff(upgrade.LocalVersion, upgrade.RemoteVersion)
|
left, right := query.GetVersionDiff(upgrade.LocalVersion, upgrade.RemoteVersion)
|
||||||
|
|
||||||
logger.Printf(text.Magenta(fmt.Sprintf(numberPadding, len(u.Up)-k)))
|
logger.Printf(text.Magenta(fmt.Sprintf(numberPadding, lenUp-k)))
|
||||||
|
|
||||||
logger.Printf(namePadding, StylizedNameWithRepository(upgrade))
|
logger.Printf(namePadding, StylizedNameWithRepository(upgrade))
|
||||||
|
|
||||||
logger.Printf("%s -> %s\n", fmt.Sprintf(versionPadding, left), right)
|
logger.Printf("%s -> %s\n", fmt.Sprintf(versionPadding, left), right)
|
||||||
if upgrade.Extra != "" {
|
if upgrade.Extra != "" {
|
||||||
logger.Println(strings.Repeat(" ", longestNumber), upgrade.Extra)
|
logger.Println(strings.Repeat(" ", longestNumber), upgrade.Extra)
|
||||||
@ -91,8 +87,19 @@ func (u UpSlice) Print(logger *text.Logger) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (u UpSlice) PrintDeps(logger *text.Logger) {
|
func (u UpSlice) PrintDeps(logger *text.Logger) {
|
||||||
longestName, longestVersion, longestNumber := calculateFormatting(u.PulledDeps)
|
longestName, longestVersion := 0, 0
|
||||||
|
|
||||||
|
for k := range u.PulledDeps {
|
||||||
|
upgrade := &u.PulledDeps[k]
|
||||||
|
packNameLen := len(StylizedNameWithRepository(upgrade))
|
||||||
|
packVersion, _ := query.GetVersionDiff(upgrade.LocalVersion, upgrade.RemoteVersion)
|
||||||
|
packVersionLen := len(packVersion)
|
||||||
|
longestName = intrange.Max(packNameLen, longestName)
|
||||||
|
longestVersion = intrange.Max(packVersionLen, longestVersion)
|
||||||
|
}
|
||||||
|
|
||||||
|
lenUp := len(u.PulledDeps)
|
||||||
|
longestNumber := len(fmt.Sprintf("%v", lenUp))
|
||||||
namePadding := fmt.Sprintf(" %s%%-%ds ", strings.Repeat(" ", longestNumber), longestName)
|
namePadding := fmt.Sprintf(" %s%%-%ds ", strings.Repeat(" ", longestNumber), longestName)
|
||||||
versionPadding := fmt.Sprintf("%%-%ds", longestVersion)
|
versionPadding := fmt.Sprintf("%%-%ds", longestVersion)
|
||||||
|
|
||||||
|
120
po/ca.po
120
po/ca.po
@ -1,10 +1,10 @@
|
|||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# Davidmp <medipas@gmail.com>, 2024
|
# Davidmp <medipas@gmail.com>, 2023
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Last-Translator: Davidmp <medipas@gmail.com>, 2024\n"
|
"Last-Translator: Davidmp <medipas@gmail.com>, 2023\n"
|
||||||
"Language-Team: Catalan (https://app.transifex.com/yay-1/teams/123732/ca/)\n"
|
"Language-Team: Catalan (https://app.transifex.com/yay-1/teams/123732/ca/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
@ -13,22 +13,6 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
"X-Generator: xgotext\n"
|
"X-Generator: xgotext\n"
|
||||||
|
|
||||||
#: clean.go:83
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
"Build directory:"
|
|
||||||
msgstr ""
|
|
||||||
"\n"
|
|
||||||
"Directori de construcció:"
|
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:201 pkg/dep/dep_graph.go:740
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
"Enter a number (default=1): "
|
|
||||||
msgstr ""
|
|
||||||
"\n"
|
|
||||||
"Introduïu un número (per defecte = 1):"
|
|
||||||
|
|
||||||
#: pkg/menus/menu.go:32
|
#: pkg/menus/menu.go:32
|
||||||
msgid " (Build Files Exist)"
|
msgid " (Build Files Exist)"
|
||||||
msgstr "(Els fitxers de compilació ja existeixen)"
|
msgstr "(Els fitxers de compilació ja existeixen)"
|
||||||
@ -65,11 +49,11 @@ msgstr "%s és present."
|
|||||||
msgid "%s is up to date -- skipping"
|
msgid "%s is up to date -- skipping"
|
||||||
msgstr "%s està al dia: s'omet."
|
msgstr "%s està al dia: s'omet."
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:291
|
#: pkg/upgrade/service.go:292
|
||||||
msgid "%s to upgrade/install."
|
msgid "%s to upgrade/install."
|
||||||
msgstr "%s per actualitzar / instal·lar."
|
msgstr "%s per actualitzar / instal·lar."
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:285
|
#: pkg/upgrade/service.go:286
|
||||||
msgid "%s will also be installed for this operation."
|
msgid "%s will also be installed for this operation."
|
||||||
msgstr "%s també s'instal·larà per a aquesta operació."
|
msgstr "%s també s'instal·larà per a aquesta operació."
|
||||||
|
|
||||||
@ -121,11 +105,11 @@ msgstr "(%d/%d) Ha fallat baixar el PKGBUILD: %s"
|
|||||||
msgid "(%d/%d) Parsing SRCINFO: %s"
|
msgid "(%d/%d) Parsing SRCINFO: %s"
|
||||||
msgstr "(%d/%d) S'analitza SRCINFO: %s"
|
msgstr "(%d/%d) S'analitza SRCINFO: %s"
|
||||||
|
|
||||||
#: pkg/query/types.go:103 pkg/query/types.go:72
|
#: pkg/query/types.go:72 pkg/query/types.go:103
|
||||||
msgid "(Installed)"
|
msgid "(Installed)"
|
||||||
msgstr "(Instal·lat)"
|
msgstr "(Instal·lat)"
|
||||||
|
|
||||||
#: pkg/query/types.go:101 pkg/query/types.go:70
|
#: pkg/query/types.go:70 pkg/query/types.go:101
|
||||||
msgid "(Installed: %s)"
|
msgid "(Installed: %s)"
|
||||||
msgstr "(Instal·lat: %s)"
|
msgstr "(Instal·lat: %s)"
|
||||||
|
|
||||||
@ -137,14 +121,14 @@ msgstr "(Orfes)"
|
|||||||
msgid "(Out-of-date: %s)"
|
msgid "(Out-of-date: %s)"
|
||||||
msgstr "(Obsolet: %s)"
|
msgstr "(Obsolet: %s)"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:75
|
|
||||||
msgid "AUR"
|
|
||||||
msgstr "AUR"
|
|
||||||
|
|
||||||
#: print.go:44
|
#: print.go:44
|
||||||
msgid "AUR URL"
|
msgid "AUR URL"
|
||||||
msgstr "URL de l'AUR"
|
msgstr "URL de l'AUR"
|
||||||
|
|
||||||
|
#: pkg/dep/dep_graph.go:75
|
||||||
|
msgid "AUR"
|
||||||
|
msgstr "AUR"
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:58
|
#: pkg/menus/edit_menu.go:58
|
||||||
msgid "Add %s or %s to your environment variables"
|
msgid "Add %s or %s to your environment variables"
|
||||||
msgstr "Afegiu %s o %s a les variables d'entorn."
|
msgstr "Afegiu %s o %s a les variables d'entorn."
|
||||||
@ -161,7 +145,7 @@ msgstr "Comprova'n la dependència"
|
|||||||
msgid "Check Deps"
|
msgid "Check Deps"
|
||||||
msgstr "Comprova les dependències"
|
msgstr "Comprova les dependències"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:89
|
#: pkg/upgrade/service.go:90
|
||||||
msgid "Checking development packages..."
|
msgid "Checking development packages..."
|
||||||
msgstr "Es comproven els paquets de desenvolupament..."
|
msgstr "Es comproven els paquets de desenvolupament..."
|
||||||
|
|
||||||
@ -217,7 +201,7 @@ msgstr "Amb què voleu editar el PKGBUILD?"
|
|||||||
msgid "Error during AUR search: %s\n"
|
msgid "Error during AUR search: %s\n"
|
||||||
msgstr "Error durant la cerca a l'AUR: %s\n"
|
msgstr "Error durant la cerca a l'AUR: %s\n"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:295
|
#: pkg/upgrade/service.go:296
|
||||||
msgid "Excluding packages may cause partial upgrades and break systems"
|
msgid "Excluding packages may cause partial upgrades and break systems"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"L'exclusió de paquets pot provocar actualitzacions parcials i trencar els "
|
"L'exclusió de paquets pot provocar actualitzacions parcials i trencar els "
|
||||||
@ -248,7 +232,7 @@ msgstr "Ha fallat instal·lar els paquets següents. Cal intervenció manual:"
|
|||||||
msgid "First Submitted"
|
msgid "First Submitted"
|
||||||
msgstr "Enviat primer"
|
msgstr "Enviat primer"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:83
|
#: pkg/query/aur_warnings.go:79
|
||||||
msgid "Flagged Out Of Date AUR Packages:"
|
msgid "Flagged Out Of Date AUR Packages:"
|
||||||
msgstr "Paquets de l'AUR obsolets marcats:"
|
msgstr "Paquets de l'AUR obsolets marcats:"
|
||||||
|
|
||||||
@ -304,14 +288,14 @@ msgstr "Dependència de construcció"
|
|||||||
msgid "Make Deps"
|
msgid "Make Deps"
|
||||||
msgstr "Dependències de construcció"
|
msgstr "Dependències de construcció"
|
||||||
|
|
||||||
|
#: pkg/query/aur_warnings.go:71
|
||||||
|
msgid "Missing AUR Debug Packages:"
|
||||||
|
msgstr "Manquen paquets de depuració de l'AUR:"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:79
|
#: pkg/dep/dep_graph.go:79
|
||||||
msgid "Missing"
|
msgid "Missing"
|
||||||
msgstr "Manca"
|
msgstr "Manca"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:75
|
|
||||||
msgid "Missing AUR Debug Packages:"
|
|
||||||
msgstr "Manquen paquets de depuració de l'AUR:"
|
|
||||||
|
|
||||||
#: print.go:31
|
#: print.go:31
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nom"
|
msgstr "Nom"
|
||||||
@ -332,7 +316,7 @@ msgstr "Cap"
|
|||||||
msgid "Optional Deps"
|
msgid "Optional Deps"
|
||||||
msgstr "Dependències opcionals"
|
msgstr "Dependències opcionals"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:79
|
#: pkg/query/aur_warnings.go:75
|
||||||
msgid "Orphan (unmaintained) AUR Packages:"
|
msgid "Orphan (unmaintained) AUR Packages:"
|
||||||
msgstr "Paquets d'AUR orfes (no mantinguts):"
|
msgstr "Paquets d'AUR orfes (no mantinguts):"
|
||||||
|
|
||||||
@ -352,15 +336,15 @@ msgstr "PKGBUILD actualitzat, s'omet la baixada: %s"
|
|||||||
msgid "PKGBUILDs to edit?"
|
msgid "PKGBUILDs to edit?"
|
||||||
msgstr "PKGBUILDs per editar?"
|
msgstr "PKGBUILDs per editar?"
|
||||||
|
|
||||||
#: print.go:61
|
|
||||||
msgid "Package Base"
|
|
||||||
msgstr "Base de paquets"
|
|
||||||
|
|
||||||
#: print.go:60
|
#: print.go:60
|
||||||
msgid "Package Base ID"
|
msgid "Package Base ID"
|
||||||
msgstr "ID de la base de paquets"
|
msgstr "ID de la base de paquets"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:71
|
#: print.go:61
|
||||||
|
msgid "Package Base"
|
||||||
|
msgstr "Base de paquets"
|
||||||
|
|
||||||
|
#: pkg/query/aur_warnings.go:67
|
||||||
msgid "Packages not in AUR:"
|
msgid "Packages not in AUR:"
|
||||||
msgstr "Paquets no a l'AUR:"
|
msgstr "Paquets no a l'AUR:"
|
||||||
|
|
||||||
@ -372,7 +356,7 @@ msgstr "Paquets per a la neteja de la construcció?"
|
|||||||
msgid "Packages to exclude"
|
msgid "Packages to exclude"
|
||||||
msgstr "Paquets per excloure"
|
msgstr "Paquets per excloure"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:294
|
#: pkg/upgrade/service.go:295
|
||||||
msgid "Packages to exclude: (eg: \"1 2 3\", \"1-3\", \"^4\" or repo name)"
|
msgid "Packages to exclude: (eg: \"1 2 3\", \"1-3\", \"^4\" or repo name)"
|
||||||
msgstr "Paquets per excloure: (p. ex.: \"1 2 3\", \"1-3\", \"^4\" o nom del repositori)"
|
msgstr "Paquets per excloure: (p. ex.: \"1 2 3\", \"1-3\", \"^4\" o nom del repositori)"
|
||||||
|
|
||||||
@ -401,23 +385,23 @@ msgstr ""
|
|||||||
msgid "Replaces"
|
msgid "Replaces"
|
||||||
msgstr "Reemplaça"
|
msgstr "Reemplaça"
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:191 print.go:30
|
|
||||||
msgid "Repository"
|
|
||||||
msgstr "Repositori"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:730
|
#: pkg/dep/dep_graph.go:730
|
||||||
msgid "Repository AUR"
|
msgid "Repository AUR"
|
||||||
msgstr "Repositori de l'AUR"
|
msgstr "Repositori de l'AUR"
|
||||||
|
|
||||||
|
#: print.go:30 pkg/db/ialpm/alpm.go:191
|
||||||
|
msgid "Repository"
|
||||||
|
msgstr "Repositori"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:78
|
#: pkg/dep/dep_graph.go:78
|
||||||
msgid "SRCINFO"
|
msgid "SRCINFO"
|
||||||
msgstr "SRCINFO"
|
msgstr "SRCINFO"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:71
|
#: pkg/upgrade/service.go:72
|
||||||
msgid "Searching AUR for updates..."
|
msgid "Searching AUR for updates..."
|
||||||
msgstr "Se cerquen actualitzacions a l'AUR..."
|
msgstr "Se cerquen actualitzacions a l'AUR..."
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:159
|
#: pkg/upgrade/service.go:160
|
||||||
msgid "Searching databases for updates..."
|
msgid "Searching databases for updates..."
|
||||||
msgstr "Se cerquen actualitzacions a les bases de dades..."
|
msgstr "Se cerquen actualitzacions a les bases de dades..."
|
||||||
|
|
||||||
@ -450,8 +434,8 @@ msgid "The following packages are not compatible with your architecture:"
|
|||||||
msgstr "Els paquets següents no són compatibles amb la vostra arquitectura:"
|
msgstr "Els paquets següents no són compatibles amb la vostra arquitectura:"
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:179 pkg/dep/dep_graph.go:726
|
#: pkg/db/ialpm/alpm.go:179 pkg/dep/dep_graph.go:726
|
||||||
msgid "There are %[1]d providers available for %[2]s:"
|
msgid "There are %d providers available for %s:"
|
||||||
msgstr "Hi ha %[1]d proveïdors disponibles per a %[2]s:"
|
msgstr "Hi ha %d proveïdors disponibles per a %s:"
|
||||||
|
|
||||||
#: pkg/settings/exe/cmd_builder.go:258
|
#: pkg/settings/exe/cmd_builder.go:258
|
||||||
msgid "There may be another Pacman instance running. Waiting..."
|
msgid "There may be another Pacman instance running. Waiting..."
|
||||||
@ -506,6 +490,22 @@ msgstr "Versió del yay: v%s"
|
|||||||
msgid "[N]one"
|
msgid "[N]one"
|
||||||
msgstr "Ca[p]"
|
msgstr "Ca[p]"
|
||||||
|
|
||||||
|
#: clean.go:83
|
||||||
|
msgid ""
|
||||||
|
"\n"
|
||||||
|
"Build directory:"
|
||||||
|
msgstr ""
|
||||||
|
"\n"
|
||||||
|
"Directori de construcció:"
|
||||||
|
|
||||||
|
#: pkg/db/ialpm/alpm.go:201 pkg/dep/dep_graph.go:740
|
||||||
|
msgid ""
|
||||||
|
"\n"
|
||||||
|
"Enter a number (default=1): "
|
||||||
|
msgstr ""
|
||||||
|
"\n"
|
||||||
|
"Introduïu un número (per defecte = 1):"
|
||||||
|
|
||||||
#: pkg/settings/errors.go:29
|
#: pkg/settings/errors.go:29
|
||||||
msgid "aborting due to user"
|
msgid "aborting due to user"
|
||||||
msgstr "s'avorta a causa de l'usuari"
|
msgstr "s'avorta a causa de l'usuari"
|
||||||
@ -534,11 +534,11 @@ msgstr "no s'han pogut trobar tots els paquets necessaris"
|
|||||||
msgid "could not find any package archives listed in %s"
|
msgid "could not find any package archives listed in %s"
|
||||||
msgstr "no s'ha pogut trobar cap arxiu de paquets llistat a %s"
|
msgstr "no s'ha pogut trobar cap arxiu de paquets llistat a %s"
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:50 pkg/upgrade/service.go:286
|
#: pkg/sync/build/errors.go:50 pkg/upgrade/service.go:287
|
||||||
msgid "dependency"
|
msgid "dependency"
|
||||||
msgstr "dependència"
|
msgstr "dependència"
|
||||||
|
|
||||||
#: pkg/vcs/vcs.go:100 pkg/vcs/vcs.go:96
|
#: pkg/vcs/vcs.go:96 pkg/vcs/vcs.go:100
|
||||||
msgid "devel check for package failed: '%s' encountered an error"
|
msgid "devel check for package failed: '%s' encountered an error"
|
||||||
msgstr "la comprovació del paquet ha fallat: %s ha trobat un error"
|
msgstr "la comprovació del paquet ha fallat: %s ha trobat un error"
|
||||||
|
|
||||||
@ -648,10 +648,6 @@ msgstr "repositori no vàlid"
|
|||||||
msgid "invalid value: %d is not between %d and %d"
|
msgid "invalid value: %d is not between %d and %d"
|
||||||
msgstr "valor no vàlid: %d no és entre %d i %d"
|
msgstr "valor no vàlid: %d no és entre %d i %d"
|
||||||
|
|
||||||
#: pkg/text/input.go:48
|
|
||||||
msgid "no"
|
|
||||||
msgstr "no"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:110
|
#: pkg/sync/srcinfo/pgp/keys.go:110
|
||||||
msgid "no keys to import"
|
msgid "no keys to import"
|
||||||
msgstr "sense claus per importar"
|
msgstr "sense claus per importar"
|
||||||
@ -664,6 +660,10 @@ msgstr "no s'ha executat cap consulta"
|
|||||||
msgid "no target directories specified"
|
msgid "no target directories specified"
|
||||||
msgstr "no s'han especificat directoris de destinació"
|
msgstr "no s'han especificat directoris de destinació"
|
||||||
|
|
||||||
|
#: pkg/text/input.go:48
|
||||||
|
msgid "no"
|
||||||
|
msgstr "no"
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:242
|
#: pkg/sync/build/installer.go:242
|
||||||
msgid "nothing to install for %s"
|
msgid "nothing to install for %s"
|
||||||
msgstr "no hi ha res per instal·lar per %s"
|
msgstr "no hi ha res per instal·lar per %s"
|
||||||
@ -676,12 +676,6 @@ msgstr "només es pot usar una operació alhora"
|
|||||||
msgid "only one target is allowed"
|
msgid "only one target is allowed"
|
||||||
msgstr "només es permet una destinació"
|
msgstr "només es permet una destinació"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:291
|
|
||||||
msgid "package"
|
|
||||||
msgid_plural "packages"
|
|
||||||
msgstr[0] "paquet"
|
|
||||||
msgstr[1] "paquets"
|
|
||||||
|
|
||||||
#: print.go:187
|
#: print.go:187
|
||||||
msgid "package '%s' was not found"
|
msgid "package '%s' was not found"
|
||||||
msgstr "no s'ha trobat el paquet %s"
|
msgstr "no s'ha trobat el paquet %s"
|
||||||
@ -694,6 +688,12 @@ msgstr "paquet no trobat a l'AUR"
|
|||||||
msgid "package not found in repos"
|
msgid "package not found in repos"
|
||||||
msgstr "paquet no trobat als repositoris"
|
msgstr "paquet no trobat als repositoris"
|
||||||
|
|
||||||
|
#: pkg/upgrade/service.go:292
|
||||||
|
msgid "package"
|
||||||
|
msgid_plural "packages"
|
||||||
|
msgstr[0] "paquet"
|
||||||
|
msgstr[1] "paquets"
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:100
|
#: pkg/sync/srcinfo/pgp/keys.go:100
|
||||||
msgid "problem importing keys"
|
msgid "problem importing keys"
|
||||||
msgstr "problema d'importació de claus"
|
msgstr "problema d'importació de claus"
|
||||||
|
732
po/ca_ES.po
732
po/ca_ES.po
@ -1,732 +0,0 @@
|
|||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Davidmp <medipas@gmail.com>, 2024
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Last-Translator: Davidmp <medipas@gmail.com>, 2024\n"
|
|
||||||
"Language-Team: Catalan (Spain) (https://app.transifex.com/yay-1/teams/123732/ca_ES/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: ca_ES\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
"X-Generator: xgotext\n"
|
|
||||||
|
|
||||||
#: clean.go:83
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
"Build directory:"
|
|
||||||
msgstr ""
|
|
||||||
"\n"
|
|
||||||
"Directori de construcció:"
|
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:201 pkg/dep/dep_graph.go:740
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
"Enter a number (default=1): "
|
|
||||||
msgstr ""
|
|
||||||
"\n"
|
|
||||||
"Introduïu un número (per defecte = 1):"
|
|
||||||
|
|
||||||
#: pkg/menus/menu.go:32
|
|
||||||
msgid " (Build Files Exist)"
|
|
||||||
msgstr "(Els fitxers de compilació ja existeixen)"
|
|
||||||
|
|
||||||
#: pkg/menus/menu.go:27
|
|
||||||
msgid " (Installed)"
|
|
||||||
msgstr "(Instal·lat)"
|
|
||||||
|
|
||||||
#: cmd.go:453
|
|
||||||
msgid " [Installed]"
|
|
||||||
msgstr "[Instal·lat]"
|
|
||||||
|
|
||||||
#: cmd.go:410 vote.go:36
|
|
||||||
msgid " there is nothing to do"
|
|
||||||
msgstr "No hi ha res per fer."
|
|
||||||
|
|
||||||
#: pkg/menus/menu.go:49
|
|
||||||
msgid "%s [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)"
|
|
||||||
msgstr "%s [T]ot [Av]orta [I]nstal·lat [No] instal·lat o (1 2 3, 1-3, ^4)"
|
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:308
|
|
||||||
msgid "%s already made -- skipping build"
|
|
||||||
msgstr "%s ja fet: se n'omet la construcció."
|
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:57
|
|
||||||
msgid "%s is not set"
|
|
||||||
msgstr "%s no està establert."
|
|
||||||
|
|
||||||
#: pkg/settings/exe/cmd_builder.go:257
|
|
||||||
msgid "%s is present."
|
|
||||||
msgstr "%s és present."
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:460 pkg/sync/build/installer.go:305
|
|
||||||
msgid "%s is up to date -- skipping"
|
|
||||||
msgstr "%s està al dia: s'omet."
|
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:291
|
|
||||||
msgid "%s to upgrade/install."
|
|
||||||
msgstr "%s per actualitzar / instal·lar."
|
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:285
|
|
||||||
msgid "%s will also be installed for this operation."
|
|
||||||
msgstr "%s també s'instal·larà per a aquesta operació."
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:124
|
|
||||||
msgid "%s, required by: %s"
|
|
||||||
msgstr "%s, requerit per %s"
|
|
||||||
|
|
||||||
#: pkg/menus/diff_menu.go:49
|
|
||||||
msgid "%s: No changes -- skipping"
|
|
||||||
msgstr "%s: sense canvis, s'omet."
|
|
||||||
|
|
||||||
#: pkg/query/filter.go:22
|
|
||||||
msgid "%s: can't use target with option --aur -- skipping"
|
|
||||||
msgstr "%s: no es pot usar l'objectiu amb l'opció --aur, s'omet."
|
|
||||||
|
|
||||||
#: pkg/query/filter.go:17
|
|
||||||
msgid "%s: can't use target with option --repo -- skipping"
|
|
||||||
msgstr "%s: no es pot usar l'objectiu amb l'opció --repo, s'omet."
|
|
||||||
|
|
||||||
#: pkg/upgrade/sources.go:57
|
|
||||||
msgid "%s: ignoring package upgrade (%s => %s)"
|
|
||||||
msgstr "%s: s'ignora l'actualització del paquet (%s => %s)"
|
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:46
|
|
||||||
msgid "%s: local (%s) is newer than AUR (%s)"
|
|
||||||
msgstr "%s: el paquet local (%s) és més nou que el de l'AUR (%s)"
|
|
||||||
|
|
||||||
#: vote.go:51
|
|
||||||
msgid ""
|
|
||||||
"%s: please set AUR_USERNAME and AUR_PASSWORD environment variables for "
|
|
||||||
"voting"
|
|
||||||
msgstr ""
|
|
||||||
"%s: establiu les variables d'entorn AUR_NOMDUSUARI i AUR_CONTRASENYA per "
|
|
||||||
"votar."
|
|
||||||
|
|
||||||
#: pkg/download/unified.go:192
|
|
||||||
msgid "(%d/%d) Downloaded PKGBUILD from ABS: %s"
|
|
||||||
msgstr "(%d/%d) PKGBUILD baixat de l'ABS: %s"
|
|
||||||
|
|
||||||
#: pkg/download/aur.go:92 pkg/download/unified.go:188
|
|
||||||
msgid "(%d/%d) Downloaded PKGBUILD: %s"
|
|
||||||
msgstr "(%d/%d) PKGBUILD baixat: %s"
|
|
||||||
|
|
||||||
#: pkg/download/aur.go:82
|
|
||||||
msgid "(%d/%d) Failed to download PKGBUILD: %s"
|
|
||||||
msgstr "(%d/%d) Ha fallat baixar el PKGBUILD: %s"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/service.go:109
|
|
||||||
msgid "(%d/%d) Parsing SRCINFO: %s"
|
|
||||||
msgstr "(%d/%d) S'analitza SRCINFO: %s"
|
|
||||||
|
|
||||||
#: pkg/query/types.go:103 pkg/query/types.go:72
|
|
||||||
msgid "(Installed)"
|
|
||||||
msgstr "(Instal·lat)"
|
|
||||||
|
|
||||||
#: pkg/query/types.go:101 pkg/query/types.go:70
|
|
||||||
msgid "(Installed: %s)"
|
|
||||||
msgstr "(Instal·lat: %s)"
|
|
||||||
|
|
||||||
#: pkg/query/types.go:61
|
|
||||||
msgid "(Orphaned)"
|
|
||||||
msgstr "(Orfes)"
|
|
||||||
|
|
||||||
#: pkg/query/types.go:65
|
|
||||||
msgid "(Out-of-date: %s)"
|
|
||||||
msgstr "(Obsolet: %s)"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:75
|
|
||||||
msgid "AUR"
|
|
||||||
msgstr "AUR"
|
|
||||||
|
|
||||||
#: print.go:44
|
|
||||||
msgid "AUR URL"
|
|
||||||
msgstr "URL de l'AUR"
|
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:58
|
|
||||||
msgid "Add %s or %s to your environment variables"
|
|
||||||
msgstr "Afegiu %s o %s a les variables d'entorn."
|
|
||||||
|
|
||||||
#: main.go:60
|
|
||||||
msgid "Avoid running yay as root/sudo."
|
|
||||||
msgstr "Eviteu executar el yay com a root / sudo."
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:63
|
|
||||||
msgid "Check Dependency"
|
|
||||||
msgstr "Comprova'n la dependència"
|
|
||||||
|
|
||||||
#: print.go:41
|
|
||||||
msgid "Check Deps"
|
|
||||||
msgstr "Comprova les dependències"
|
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:89
|
|
||||||
msgid "Checking development packages..."
|
|
||||||
msgstr "Es comproven els paquets de desenvolupament..."
|
|
||||||
|
|
||||||
#: pkg/sync/workdir/clean.go:45
|
|
||||||
msgid "Cleaning (%d/%d): %s"
|
|
||||||
msgstr "Es neteja (%d/%d): %s"
|
|
||||||
|
|
||||||
#: print.go:42
|
|
||||||
msgid "Conflicts With"
|
|
||||||
msgstr "Té conflicte amb"
|
|
||||||
|
|
||||||
#: pkg/menus/clean_menu.go:62
|
|
||||||
msgid "Deleting (%d/%d): %s"
|
|
||||||
msgstr "Se suprimeix (%d/%d): %s"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:61
|
|
||||||
msgid "Dependency"
|
|
||||||
msgstr "Dependència"
|
|
||||||
|
|
||||||
#: print.go:38
|
|
||||||
msgid "Depends On"
|
|
||||||
msgstr "Depèn de"
|
|
||||||
|
|
||||||
#: print.go:33
|
|
||||||
msgid "Description"
|
|
||||||
msgstr "Descripció"
|
|
||||||
|
|
||||||
#: pkg/menus/diff_menu.go:160
|
|
||||||
msgid "Diffs to show?"
|
|
||||||
msgstr "Diferències per mostrar?"
|
|
||||||
|
|
||||||
#: pkg/settings/migrations.go:25
|
|
||||||
msgid "Disable 'provides' setting by default"
|
|
||||||
msgstr "Desactiva la configuració de \"proporciona\" per defecte."
|
|
||||||
|
|
||||||
#: clean.go:78
|
|
||||||
msgid "Do you want to remove ALL AUR packages from cache?"
|
|
||||||
msgstr "Voleu suprimir TOTS els paquets de l'AUR de la memòria cau?"
|
|
||||||
|
|
||||||
#: clean.go:95
|
|
||||||
msgid "Do you want to remove ALL untracked AUR files?"
|
|
||||||
msgstr "Voleu suprimir TOTS els fitxers de l'AUR sense seguiment?"
|
|
||||||
|
|
||||||
#: clean.go:80
|
|
||||||
msgid "Do you want to remove all other AUR packages from cache?"
|
|
||||||
msgstr "Voleu suprimir tots els altres paquets de l'AUR de la memòria cau?"
|
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:61
|
|
||||||
msgid "Edit PKGBUILD with?"
|
|
||||||
msgstr "Amb què voleu editar el PKGBUILD?"
|
|
||||||
|
|
||||||
#: pkg/query/errors.go:13
|
|
||||||
msgid "Error during AUR search: %s\n"
|
|
||||||
msgstr "Error durant la cerca a l'AUR: %s\n"
|
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:295
|
|
||||||
msgid "Excluding packages may cause partial upgrades and break systems"
|
|
||||||
msgstr ""
|
|
||||||
"L'exclusió de paquets pot provocar actualitzacions parcials i trencar els "
|
|
||||||
"sistemes."
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:60
|
|
||||||
msgid "Explicit"
|
|
||||||
msgstr "Explícit"
|
|
||||||
|
|
||||||
#: print.go:91
|
|
||||||
msgid "Explicitly installed packages: %s"
|
|
||||||
msgstr "Paquets instal·lats explícitament: %s"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:437 pkg/dep/dep_graph.go:535
|
|
||||||
msgid "Failed to find AUR package for"
|
|
||||||
msgstr "No s'ha pogut trobar el paquet de l'AUR per a"
|
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:120
|
|
||||||
msgid "Failed to install layer, rolling up to next layer."
|
|
||||||
msgstr "Ha fallat instal·lar la capa. Es passa a la següent."
|
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:16
|
|
||||||
msgid ""
|
|
||||||
"Failed to install the following packages. Manual intervention is required:"
|
|
||||||
msgstr "Ha fallat instal·lar els paquets següents. Cal intervenció manual:"
|
|
||||||
|
|
||||||
#: print.go:45
|
|
||||||
msgid "First Submitted"
|
|
||||||
msgstr "Enviat primer"
|
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:83
|
|
||||||
msgid "Flagged Out Of Date AUR Packages:"
|
|
||||||
msgstr "Paquets de l'AUR obsolets marcats:"
|
|
||||||
|
|
||||||
#: print.go:90
|
|
||||||
msgid "Foreign installed packages: %s"
|
|
||||||
msgstr "Paquets forans instal·lats: %s"
|
|
||||||
|
|
||||||
#: pkg/vcs/vcs.go:144
|
|
||||||
msgid "Found git repo: %s"
|
|
||||||
msgstr "S'ha trobat el repositori git: %s"
|
|
||||||
|
|
||||||
#: vcs.go:72
|
|
||||||
msgid "GenDB finished. No packages were installed"
|
|
||||||
msgstr "GenDB ha acabat. No s'ha instal·lat cap paquet."
|
|
||||||
|
|
||||||
#: print.go:36
|
|
||||||
msgid "Groups"
|
|
||||||
msgstr "Grups"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:88
|
|
||||||
msgid "Import?"
|
|
||||||
msgstr "Ho importo?"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:97
|
|
||||||
msgid "Importing keys with gpg..."
|
|
||||||
msgstr "S'importen claus amb gpg..."
|
|
||||||
|
|
||||||
#: print.go:46
|
|
||||||
msgid "Keywords"
|
|
||||||
msgstr "Paraules clau"
|
|
||||||
|
|
||||||
#: print.go:47
|
|
||||||
msgid "Last Modified"
|
|
||||||
msgstr "Darrera modificació"
|
|
||||||
|
|
||||||
#: print.go:35
|
|
||||||
msgid "Licenses"
|
|
||||||
msgstr "Llicències"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:77
|
|
||||||
msgid "Local"
|
|
||||||
msgstr "Local"
|
|
||||||
|
|
||||||
#: print.go:48
|
|
||||||
msgid "Maintainer"
|
|
||||||
msgstr "Mantenidor"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:62
|
|
||||||
msgid "Make Dependency"
|
|
||||||
msgstr "Dependència de construcció"
|
|
||||||
|
|
||||||
#: print.go:40
|
|
||||||
msgid "Make Deps"
|
|
||||||
msgstr "Dependències de construcció"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:79
|
|
||||||
msgid "Missing"
|
|
||||||
msgstr "Manca"
|
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:75
|
|
||||||
msgid "Missing AUR Debug Packages:"
|
|
||||||
msgstr "Manquen paquets de depuració de l'AUR:"
|
|
||||||
|
|
||||||
#: print.go:31
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nom"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:442 pkg/dep/dep_graph.go:548
|
|
||||||
msgid "No AUR package found for"
|
|
||||||
msgstr "No s'ha trobat cap paquet d'AUR per a"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:182
|
|
||||||
msgid "No package found for"
|
|
||||||
msgstr "No s'ha trobat cap paquet per"
|
|
||||||
|
|
||||||
#: print.go:225
|
|
||||||
msgid "None"
|
|
||||||
msgstr "Cap"
|
|
||||||
|
|
||||||
#: print.go:39
|
|
||||||
msgid "Optional Deps"
|
|
||||||
msgstr "Dependències opcionals"
|
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:79
|
|
||||||
msgid "Orphan (unmaintained) AUR Packages:"
|
|
||||||
msgstr "Paquets d'AUR orfes (no mantinguts):"
|
|
||||||
|
|
||||||
#: print.go:53 print.go:55
|
|
||||||
msgid "Out-of-date"
|
|
||||||
msgstr "Obsolet"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:115
|
|
||||||
msgid "PGP keys need importing:"
|
|
||||||
msgstr "Cal importar claus PGP:"
|
|
||||||
|
|
||||||
#: pkg/sync/workdir/preparer.go:252
|
|
||||||
msgid "PKGBUILD up to date, skipping download: %s"
|
|
||||||
msgstr "PKGBUILD actualitzat, s'omet la baixada: %s"
|
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:130
|
|
||||||
msgid "PKGBUILDs to edit?"
|
|
||||||
msgstr "PKGBUILDs per editar?"
|
|
||||||
|
|
||||||
#: print.go:61
|
|
||||||
msgid "Package Base"
|
|
||||||
msgstr "Base de paquets"
|
|
||||||
|
|
||||||
#: print.go:60
|
|
||||||
msgid "Package Base ID"
|
|
||||||
msgstr "ID de la base de paquets"
|
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:71
|
|
||||||
msgid "Packages not in AUR:"
|
|
||||||
msgstr "Paquets no a l'AUR:"
|
|
||||||
|
|
||||||
#: pkg/menus/clean_menu.go:54
|
|
||||||
msgid "Packages to cleanBuild?"
|
|
||||||
msgstr "Paquets per a la neteja de la construcció?"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:202
|
|
||||||
msgid "Packages to exclude"
|
|
||||||
msgstr "Paquets per excloure"
|
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:294
|
|
||||||
msgid "Packages to exclude: (eg: \"1 2 3\", \"1-3\", \"^4\" or repo name)"
|
|
||||||
msgstr "Paquets per excloure: (p. ex.: \"1 2 3\", \"1-3\", \"^4\" o nom del repositori)"
|
|
||||||
|
|
||||||
#: cmd.go:392
|
|
||||||
msgid "Packages to install (eg: 1 2 3, 1-3 or ^4)"
|
|
||||||
msgstr "Paquets per instal·lar (p. ex.: 1 2 3, 1-3 o ^4)"
|
|
||||||
|
|
||||||
#: print.go:49
|
|
||||||
msgid "Popularity"
|
|
||||||
msgstr "Popularitat"
|
|
||||||
|
|
||||||
#: pkg/menus/diff_menu.go:172 pkg/menus/edit_menu.go:143
|
|
||||||
msgid "Proceed with install?"
|
|
||||||
msgstr "Voleu continuar la instal·lació?"
|
|
||||||
|
|
||||||
#: print.go:37
|
|
||||||
msgid "Provides"
|
|
||||||
msgstr "Proporciona"
|
|
||||||
|
|
||||||
#: pkg/sync/workdir/preparer.go:125
|
|
||||||
msgid "Remove make dependencies after install?"
|
|
||||||
msgstr ""
|
|
||||||
"Suprimeixo les dependències de construcció després de la instal·lació?"
|
|
||||||
|
|
||||||
#: print.go:43
|
|
||||||
msgid "Replaces"
|
|
||||||
msgstr "Reemplaça"
|
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:191 print.go:30
|
|
||||||
msgid "Repository"
|
|
||||||
msgstr "Repositori"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:730
|
|
||||||
msgid "Repository AUR"
|
|
||||||
msgstr "Repositori de l'AUR"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:78
|
|
||||||
msgid "SRCINFO"
|
|
||||||
msgstr "SRCINFO"
|
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:71
|
|
||||||
msgid "Searching AUR for updates..."
|
|
||||||
msgstr "Se cerquen actualitzacions a l'AUR..."
|
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:159
|
|
||||||
msgid "Searching databases for updates..."
|
|
||||||
msgstr "Se cerquen actualitzacions a les bases de dades..."
|
|
||||||
|
|
||||||
#: pkg/query/query_builder.go:214
|
|
||||||
msgid "Showing repo packages only"
|
|
||||||
msgstr "Es mostren només paquets dels repositoris."
|
|
||||||
|
|
||||||
#: print.go:95
|
|
||||||
msgid "Size of pacman cache %s: %s"
|
|
||||||
msgstr "Mida de la memòria cau del pacman %s: %s"
|
|
||||||
|
|
||||||
#: print.go:98
|
|
||||||
msgid "Size of yay cache %s: %s"
|
|
||||||
msgstr "Mida de la memòria cau del yay %s: %s"
|
|
||||||
|
|
||||||
#: print.go:62
|
|
||||||
msgid "Snapshot URL"
|
|
||||||
msgstr "URL de la instantània"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:76
|
|
||||||
msgid "Sync"
|
|
||||||
msgstr "Sincronització"
|
|
||||||
|
|
||||||
#: print.go:100
|
|
||||||
msgid "Ten biggest packages:"
|
|
||||||
msgstr "Els deu paquets més grossos:"
|
|
||||||
|
|
||||||
#: pkg/sync/sync.go:124
|
|
||||||
msgid "The following packages are not compatible with your architecture:"
|
|
||||||
msgstr "Els paquets següents no són compatibles amb la vostra arquitectura:"
|
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:179 pkg/dep/dep_graph.go:726
|
|
||||||
msgid "There are %[1]d providers available for %[2]s:"
|
|
||||||
msgstr "Hi ha %[1]d proveïdors disponibles per a %[2]s:"
|
|
||||||
|
|
||||||
#: pkg/settings/exe/cmd_builder.go:258
|
|
||||||
msgid "There may be another Pacman instance running. Waiting..."
|
|
||||||
msgstr ""
|
|
||||||
"Pot ser que hi hagi una altra instància del Pacman en execució. S'espera..."
|
|
||||||
|
|
||||||
#: print.go:92
|
|
||||||
msgid "Total Size occupied by packages: %s"
|
|
||||||
msgstr "Mida total ocupada pels paquets: %s"
|
|
||||||
|
|
||||||
#: print.go:89
|
|
||||||
msgid "Total installed packages: %s"
|
|
||||||
msgstr "Total de paquets instal·lats: %s"
|
|
||||||
|
|
||||||
#: pkg/sync/sync.go:132
|
|
||||||
msgid "Try to build them anyway?"
|
|
||||||
msgstr "Intento construir-los tanmateix?"
|
|
||||||
|
|
||||||
#: print.go:34
|
|
||||||
msgid "URL"
|
|
||||||
msgstr "URL"
|
|
||||||
|
|
||||||
#: clean.go:194 pkg/menus/clean_menu.go:65 pkg/menus/clean_menu.go:71
|
|
||||||
msgid "Unable to clean:"
|
|
||||||
msgstr "No es pot netejar:"
|
|
||||||
|
|
||||||
#: get.go:42 get.go:74
|
|
||||||
msgid "Unable to find the following packages:"
|
|
||||||
msgstr "No s'han pogut trobar els paquets següents:"
|
|
||||||
|
|
||||||
#: vote.go:20
|
|
||||||
msgid "Unable to handle package vote for: %s. err: %s"
|
|
||||||
msgstr "No es pot gestionar el vot del paquet per a %s. Error: %s"
|
|
||||||
|
|
||||||
#: clean.go:170
|
|
||||||
msgid "Unable to remove %s: %s"
|
|
||||||
msgstr "No es pot suprimir %s: %s"
|
|
||||||
|
|
||||||
#: print.go:32
|
|
||||||
msgid "Version"
|
|
||||||
msgstr "Versió"
|
|
||||||
|
|
||||||
#: print.go:50
|
|
||||||
msgid "Votes"
|
|
||||||
msgstr "Vots"
|
|
||||||
|
|
||||||
#: print.go:87
|
|
||||||
msgid "Yay version v%s"
|
|
||||||
msgstr "Versió del yay: v%s"
|
|
||||||
|
|
||||||
#: pkg/menus/menu.go:49
|
|
||||||
msgid "[N]one"
|
|
||||||
msgstr "Ca[p]"
|
|
||||||
|
|
||||||
#: pkg/settings/errors.go:29
|
|
||||||
msgid "aborting due to user"
|
|
||||||
msgstr "s'avorta a causa de l'usuari"
|
|
||||||
|
|
||||||
#: pkg/settings/parser/parser.go:608
|
|
||||||
msgid "argument '-' specified without input on stdin"
|
|
||||||
msgstr "argument '-' especificat sense entrada a stdin"
|
|
||||||
|
|
||||||
#: local_install.go:26
|
|
||||||
msgid "cannot find PKGBUILD and .SRCINFO in directory"
|
|
||||||
msgstr "no es pot trobar PKGBUILD i SRCINFO al directori"
|
|
||||||
|
|
||||||
#: pkg/sync/build/pkg_archive.go:148
|
|
||||||
msgid "cannot find package name: %v"
|
|
||||||
msgstr "no es pot trobar el nom del paquet: %v"
|
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:30
|
|
||||||
msgid "could not find PKGDEST for: %s"
|
|
||||||
msgstr "no s'ha pogut trobar PKGDEST per a %s"
|
|
||||||
|
|
||||||
#: errors.go:9
|
|
||||||
msgid "could not find all required packages"
|
|
||||||
msgstr "no s'han pogut trobar tots els paquets necessaris"
|
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:61
|
|
||||||
msgid "could not find any package archives listed in %s"
|
|
||||||
msgstr "no s'ha pogut trobar cap arxiu de paquets llistat a %s"
|
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:50 pkg/upgrade/service.go:286
|
|
||||||
msgid "dependency"
|
|
||||||
msgstr "dependència"
|
|
||||||
|
|
||||||
#: pkg/vcs/vcs.go:100 pkg/vcs/vcs.go:96
|
|
||||||
msgid "devel check for package failed: '%s' encountered an error"
|
|
||||||
msgstr "la comprovació del paquet ha fallat: %s ha trobat un error"
|
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:110
|
|
||||||
msgid "editor did not exit successfully, aborting: %s"
|
|
||||||
msgstr "l'editor no ha sortit correctament, s'avorta: %s"
|
|
||||||
|
|
||||||
#: pkg/sync/workdir/aur_source.go:24
|
|
||||||
msgid "error downloading sources: %s"
|
|
||||||
msgstr "error en baixar les fonts: %s"
|
|
||||||
|
|
||||||
#: pkg/download/errors.go:25
|
|
||||||
msgid "error fetching %s: %s"
|
|
||||||
msgstr "error en obtenir %s: %s"
|
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:9
|
|
||||||
msgid "error installing repo packages"
|
|
||||||
msgstr "error en instal·lar paquets dels repositoris"
|
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:266 pkg/sync/build/installer.go:270
|
|
||||||
msgid "error installing:"
|
|
||||||
msgstr "error d'instal·lació:"
|
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:233 pkg/sync/build/installer.go:237
|
|
||||||
msgid "error making: %s"
|
|
||||||
msgstr "error de construcció: %s"
|
|
||||||
|
|
||||||
#: pkg/sync/workdir/merge.go:24
|
|
||||||
msgid "error merging %s: %s"
|
|
||||||
msgstr "error en combinar %s: %s"
|
|
||||||
|
|
||||||
#: pkg/download/unified.go:59
|
|
||||||
msgid "error reading %s"
|
|
||||||
msgstr "error en llegir %s"
|
|
||||||
|
|
||||||
#: sync.go:36
|
|
||||||
msgid "error refreshing databases"
|
|
||||||
msgstr "error en actualitzar les bases de dades"
|
|
||||||
|
|
||||||
#: pkg/sync/workdir/clean.go:51 pkg/sync/workdir/merge.go:17
|
|
||||||
msgid "error resetting %s: %s"
|
|
||||||
msgstr "error en restablir %s: %s"
|
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:53
|
|
||||||
msgid "error updating package install reason to %s"
|
|
||||||
msgstr "error en actualitzar el motiu d'instal·lació del paquet a %s"
|
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:48
|
|
||||||
msgid "explicit"
|
|
||||||
msgstr "explícit"
|
|
||||||
|
|
||||||
#: pkg/settings/errors.go:23
|
|
||||||
msgid "failed to create directory '%s': %s"
|
|
||||||
msgstr "ha fallat crear el directori %s: %s"
|
|
||||||
|
|
||||||
#: pkg/settings/config.go:281
|
|
||||||
msgid "failed to open config file '%s': %s"
|
|
||||||
msgstr "ha fallat obrir el fitxer de configuració %s: %s"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/service.go:114
|
|
||||||
msgid "failed to parse %s -- skipping: %s"
|
|
||||||
msgstr "ha fallat analitzar %s, s'omet: %s"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/service.go:118
|
|
||||||
msgid "failed to parse %s: %s"
|
|
||||||
msgstr "no s'ha pogut analitzar %s: %s"
|
|
||||||
|
|
||||||
#: local_install.go:77
|
|
||||||
msgid "failed to parse .SRCINFO"
|
|
||||||
msgstr "ha fallat analitzar .SRCINFO"
|
|
||||||
|
|
||||||
#: pkg/settings/config.go:291
|
|
||||||
msgid "failed to read config file '%s': %s"
|
|
||||||
msgstr "ha fallat llegir el fitxer de configuració %s: %s"
|
|
||||||
|
|
||||||
#: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73
|
|
||||||
msgid "failed to retrieve aur Cache"
|
|
||||||
msgstr "ha fallat obtenir la cau de l'AUR"
|
|
||||||
|
|
||||||
#: pkg/upgrade/sources.go:27
|
|
||||||
msgid "ignoring package devel upgrade (no AUR info found):"
|
|
||||||
msgstr ""
|
|
||||||
"s'ignora l'actualització del paquet de desenvolupament (no se n'ha trobat "
|
|
||||||
"cap informació a l'AUR):"
|
|
||||||
|
|
||||||
#: pkg/text/errors.go:8
|
|
||||||
msgid "input too long"
|
|
||||||
msgstr "entrada massa llarga"
|
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:222 pkg/dep/dep_graph.go:761
|
|
||||||
msgid "invalid number: %s"
|
|
||||||
msgstr "número no vàlid: %s"
|
|
||||||
|
|
||||||
#: pkg/settings/parser/parser.go:174
|
|
||||||
msgid "invalid option '%s'"
|
|
||||||
msgstr "opció no vàlida: %s"
|
|
||||||
|
|
||||||
#: cmd.go:197
|
|
||||||
msgid "invalid option: '--deps' and '--explicit' may not be used together"
|
|
||||||
msgstr "opció no vàlida: \"--deps\" i \"--explicit\" no es poden usar juntes"
|
|
||||||
|
|
||||||
#: pkg/download/abs.go:22
|
|
||||||
msgid "invalid repository"
|
|
||||||
msgstr "repositori no vàlid"
|
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:227 pkg/dep/dep_graph.go:767
|
|
||||||
msgid "invalid value: %d is not between %d and %d"
|
|
||||||
msgstr "valor no vàlid: %d no és entre %d i %d"
|
|
||||||
|
|
||||||
#: pkg/text/input.go:48
|
|
||||||
msgid "no"
|
|
||||||
msgstr "no"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:110
|
|
||||||
msgid "no keys to import"
|
|
||||||
msgstr "sense claus per importar"
|
|
||||||
|
|
||||||
#: pkg/query/errors.go:20
|
|
||||||
msgid "no query was executed"
|
|
||||||
msgstr "no s'ha executat cap consulta"
|
|
||||||
|
|
||||||
#: local_install.go:66
|
|
||||||
msgid "no target directories specified"
|
|
||||||
msgstr "no s'han especificat directoris de destinació"
|
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:242
|
|
||||||
msgid "nothing to install for %s"
|
|
||||||
msgstr "no hi ha res per instal·lar per %s"
|
|
||||||
|
|
||||||
#: pkg/settings/parser/parser.go:164
|
|
||||||
msgid "only one operation may be used at a time"
|
|
||||||
msgstr "només es pot usar una operació alhora"
|
|
||||||
|
|
||||||
#: pkg/cmd/graph/main.go:70
|
|
||||||
msgid "only one target is allowed"
|
|
||||||
msgstr "només es permet una destinació"
|
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:291
|
|
||||||
msgid "package"
|
|
||||||
msgid_plural "packages"
|
|
||||||
msgstr[0] "paquet"
|
|
||||||
msgstr[1] "paquets"
|
|
||||||
|
|
||||||
#: print.go:187
|
|
||||||
msgid "package '%s' was not found"
|
|
||||||
msgstr "no s'ha trobat el paquet %s"
|
|
||||||
|
|
||||||
#: pkg/download/errors.go:15
|
|
||||||
msgid "package not found in AUR"
|
|
||||||
msgstr "paquet no trobat a l'AUR"
|
|
||||||
|
|
||||||
#: pkg/download/abs.go:23
|
|
||||||
msgid "package not found in repos"
|
|
||||||
msgstr "paquet no trobat als repositoris"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:100
|
|
||||||
msgid "problem importing keys"
|
|
||||||
msgstr "problema d'importació de claus"
|
|
||||||
|
|
||||||
#: clean.go:105
|
|
||||||
msgid "removing AUR packages from cache..."
|
|
||||||
msgstr "se suprimeixen paquets de l'AUR de la memòria cau..."
|
|
||||||
|
|
||||||
#: clean.go:178 pkg/sync/workdir/clean.go:41
|
|
||||||
msgid "removing untracked AUR files from cache..."
|
|
||||||
msgstr ""
|
|
||||||
"se suprimeixen els fitxers de l'AUR sense seguiment de la memòria cau..."
|
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:38
|
|
||||||
msgid "the PKGDEST for %s is listed by makepkg but does not exist: %s"
|
|
||||||
msgstr "el PKGDEST per a %s està llistat per makepkg però no existeix:%s"
|
|
||||||
|
|
||||||
#: pkg/sync/sync.go:45
|
|
||||||
msgid "there is nothing to do"
|
|
||||||
msgstr "No hi ha res per fer."
|
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:247
|
|
||||||
msgid "unable to CreateHandle: %s"
|
|
||||||
msgstr "no se'n pot crear el maneig: %s"
|
|
||||||
|
|
||||||
#: cmd.go:186
|
|
||||||
msgid "unhandled operation"
|
|
||||||
msgstr "operació no manejada"
|
|
||||||
|
|
||||||
#: cmd.go:450
|
|
||||||
msgid "unknown-version"
|
|
||||||
msgstr "versió desconeguda"
|
|
||||||
|
|
||||||
#: pkg/text/input.go:47
|
|
||||||
msgid "yes"
|
|
||||||
msgstr "sí"
|
|
4
po/cs.po
4
po/cs.po
@ -436,8 +436,8 @@ msgid "The following packages are not compatible with your architecture:"
|
|||||||
msgstr "Následující balíčky nejsou kompatibilní s vaší architekturou:"
|
msgstr "Následující balíčky nejsou kompatibilní s vaší architekturou:"
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:179 pkg/dep/dep_graph.go:726
|
#: pkg/db/ialpm/alpm.go:179 pkg/dep/dep_graph.go:726
|
||||||
msgid "There are %[1]d providers available for %[2]s:"
|
msgid "There are %d providers available for %s:"
|
||||||
msgstr "Pro %[2]s je dostupných %[1]d poskytovatelů:"
|
msgstr "Pro %s je dostupných %d poskytovatelů:"
|
||||||
|
|
||||||
#: pkg/settings/exe/cmd_builder.go:258
|
#: pkg/settings/exe/cmd_builder.go:258
|
||||||
msgid "There may be another Pacman instance running. Waiting..."
|
msgid "There may be another Pacman instance running. Waiting..."
|
||||||
|
122
po/de.po
122
po/de.po
@ -9,15 +9,15 @@
|
|||||||
# Lukas Müller (Lukas), 2022
|
# Lukas Müller (Lukas), 2022
|
||||||
# Arne Brücher, 2023
|
# Arne Brücher, 2023
|
||||||
# Ananas 77, 2023
|
# Ananas 77, 2023
|
||||||
# 452f4d2d2d15be3f170375e4fa84f9da_7bd63b3, 2023
|
# Philip H., 2023
|
||||||
# Lukas Esc, 2023
|
# Lukas Esc, 2023
|
||||||
|
# Severin Hamader <severin.hamader@yahoo.de>, 2023
|
||||||
# Manuel Schneider, 2023
|
# Manuel Schneider, 2023
|
||||||
# Marethyu _, 2023
|
# Marethyu _, 2023
|
||||||
# Severin Hamader <severin.hamader@yahoo.de>, 2025
|
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Last-Translator: Severin Hamader <severin.hamader@yahoo.de>, 2025\n"
|
"Last-Translator: Marethyu _, 2023\n"
|
||||||
"Language-Team: German (https://app.transifex.com/yay-1/teams/123732/de/)\n"
|
"Language-Team: German (https://app.transifex.com/yay-1/teams/123732/de/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
@ -26,22 +26,6 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
"X-Generator: xgotext\n"
|
"X-Generator: xgotext\n"
|
||||||
|
|
||||||
#: clean.go:83
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
"Build directory:"
|
|
||||||
msgstr ""
|
|
||||||
"\n"
|
|
||||||
"Build-Verzeichnis:"
|
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:201 pkg/dep/dep_graph.go:740
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
"Enter a number (default=1): "
|
|
||||||
msgstr ""
|
|
||||||
"\n"
|
|
||||||
"Geben Sie eine Zahl ein (Vorgabe=1):"
|
|
||||||
|
|
||||||
#: pkg/menus/menu.go:32
|
#: pkg/menus/menu.go:32
|
||||||
msgid " (Build Files Exist)"
|
msgid " (Build Files Exist)"
|
||||||
msgstr " (Build-Dateien sind vorhanden)"
|
msgstr " (Build-Dateien sind vorhanden)"
|
||||||
@ -80,11 +64,11 @@ msgstr "%s ist vorhanden."
|
|||||||
msgid "%s is up to date -- skipping"
|
msgid "%s is up to date -- skipping"
|
||||||
msgstr "%s ist bereits aktuell -- wird übersprungen"
|
msgstr "%s ist bereits aktuell -- wird übersprungen"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:291
|
#: pkg/upgrade/service.go:292
|
||||||
msgid "%s to upgrade/install."
|
msgid "%s to upgrade/install."
|
||||||
msgstr "%s zu upgraden/installieren."
|
msgstr "%s zu upgraden/installieren."
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:285
|
#: pkg/upgrade/service.go:286
|
||||||
msgid "%s will also be installed for this operation."
|
msgid "%s will also be installed for this operation."
|
||||||
msgstr "%s wird für diesen Vorgang ebenfalls installiert."
|
msgstr "%s wird für diesen Vorgang ebenfalls installiert."
|
||||||
|
|
||||||
@ -135,11 +119,11 @@ msgstr "(%d/%d) Es wurde nicht geschaft PKGBUILD zu aktualisieren: %s"
|
|||||||
msgid "(%d/%d) Parsing SRCINFO: %s"
|
msgid "(%d/%d) Parsing SRCINFO: %s"
|
||||||
msgstr "(%d/%d) SRCINFO geparst: %s"
|
msgstr "(%d/%d) SRCINFO geparst: %s"
|
||||||
|
|
||||||
#: pkg/query/types.go:103 pkg/query/types.go:72
|
#: pkg/query/types.go:72 pkg/query/types.go:103
|
||||||
msgid "(Installed)"
|
msgid "(Installed)"
|
||||||
msgstr "(Installiert)"
|
msgstr "(Installiert)"
|
||||||
|
|
||||||
#: pkg/query/types.go:101 pkg/query/types.go:70
|
#: pkg/query/types.go:70 pkg/query/types.go:101
|
||||||
msgid "(Installed: %s)"
|
msgid "(Installed: %s)"
|
||||||
msgstr "(Installiert: %s)"
|
msgstr "(Installiert: %s)"
|
||||||
|
|
||||||
@ -151,14 +135,14 @@ msgstr "(Verwaist)"
|
|||||||
msgid "(Out-of-date: %s)"
|
msgid "(Out-of-date: %s)"
|
||||||
msgstr "(Veraltet: %s)"
|
msgstr "(Veraltet: %s)"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:75
|
|
||||||
msgid "AUR"
|
|
||||||
msgstr "AUR"
|
|
||||||
|
|
||||||
#: print.go:44
|
#: print.go:44
|
||||||
msgid "AUR URL"
|
msgid "AUR URL"
|
||||||
msgstr "AUR-URL"
|
msgstr "AUR-URL"
|
||||||
|
|
||||||
|
#: pkg/dep/dep_graph.go:75
|
||||||
|
msgid "AUR"
|
||||||
|
msgstr "AUR"
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:58
|
#: pkg/menus/edit_menu.go:58
|
||||||
msgid "Add %s or %s to your environment variables"
|
msgid "Add %s or %s to your environment variables"
|
||||||
msgstr "%s oder %s zu den Umgebungsvariablen hinzufügen"
|
msgstr "%s oder %s zu den Umgebungsvariablen hinzufügen"
|
||||||
@ -175,7 +159,7 @@ msgstr "Überprüfe Abhängigkeiten"
|
|||||||
msgid "Check Deps"
|
msgid "Check Deps"
|
||||||
msgstr "Prüfe Abhängigkeiten"
|
msgstr "Prüfe Abhängigkeiten"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:89
|
#: pkg/upgrade/service.go:90
|
||||||
msgid "Checking development packages..."
|
msgid "Checking development packages..."
|
||||||
msgstr "Prüfe Entwicklungspakete..."
|
msgstr "Prüfe Entwicklungspakete..."
|
||||||
|
|
||||||
@ -231,7 +215,7 @@ msgstr "PKGBUILD editieren mit?"
|
|||||||
msgid "Error during AUR search: %s\n"
|
msgid "Error during AUR search: %s\n"
|
||||||
msgstr "Fehler während AUR-Suche: %s\n"
|
msgstr "Fehler während AUR-Suche: %s\n"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:295
|
#: pkg/upgrade/service.go:296
|
||||||
msgid "Excluding packages may cause partial upgrades and break systems"
|
msgid "Excluding packages may cause partial upgrades and break systems"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Das Ausschließen von Paketen kann zu teilweisen Aktualisierungen führen und "
|
"Das Ausschließen von Paketen kann zu teilweisen Aktualisierungen führen und "
|
||||||
@ -266,7 +250,7 @@ msgstr ""
|
|||||||
msgid "First Submitted"
|
msgid "First Submitted"
|
||||||
msgstr "Erstmals eingereicht"
|
msgstr "Erstmals eingereicht"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:83
|
#: pkg/query/aur_warnings.go:79
|
||||||
msgid "Flagged Out Of Date AUR Packages:"
|
msgid "Flagged Out Of Date AUR Packages:"
|
||||||
msgstr "Als nicht aktuell markierte AUR-Pakete:"
|
msgstr "Als nicht aktuell markierte AUR-Pakete:"
|
||||||
|
|
||||||
@ -322,14 +306,14 @@ msgstr "Erstelle Abhängigkeit."
|
|||||||
msgid "Make Deps"
|
msgid "Make Deps"
|
||||||
msgstr "Abhängigkeiten herstellen"
|
msgstr "Abhängigkeiten herstellen"
|
||||||
|
|
||||||
|
#: pkg/query/aur_warnings.go:71
|
||||||
|
msgid "Missing AUR Debug Packages:"
|
||||||
|
msgstr "Fehlende AUR Debug-Pakete: "
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:79
|
#: pkg/dep/dep_graph.go:79
|
||||||
msgid "Missing"
|
msgid "Missing"
|
||||||
msgstr "Fehlend"
|
msgstr "Fehlend"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:75
|
|
||||||
msgid "Missing AUR Debug Packages:"
|
|
||||||
msgstr "Fehlende AUR Debug-Pakete: "
|
|
||||||
|
|
||||||
#: print.go:31
|
#: print.go:31
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Name"
|
msgstr "Name"
|
||||||
@ -350,7 +334,7 @@ msgstr "Keine"
|
|||||||
msgid "Optional Deps"
|
msgid "Optional Deps"
|
||||||
msgstr "Optionale Abhängigkeiten"
|
msgstr "Optionale Abhängigkeiten"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:79
|
#: pkg/query/aur_warnings.go:75
|
||||||
msgid "Orphan (unmaintained) AUR Packages:"
|
msgid "Orphan (unmaintained) AUR Packages:"
|
||||||
msgstr "Verwaiste (nicht gepflegte) AUR-Pakete:"
|
msgstr "Verwaiste (nicht gepflegte) AUR-Pakete:"
|
||||||
|
|
||||||
@ -370,15 +354,15 @@ msgstr "PKGBUILD ist auf dem neuesten Stand, überspringe Herunterladen: %s"
|
|||||||
msgid "PKGBUILDs to edit?"
|
msgid "PKGBUILDs to edit?"
|
||||||
msgstr "Welche PKGBUILDs editieren?"
|
msgstr "Welche PKGBUILDs editieren?"
|
||||||
|
|
||||||
#: print.go:61
|
|
||||||
msgid "Package Base"
|
|
||||||
msgstr "Paketbasis"
|
|
||||||
|
|
||||||
#: print.go:60
|
#: print.go:60
|
||||||
msgid "Package Base ID"
|
msgid "Package Base ID"
|
||||||
msgstr "Paket-Basis-ID"
|
msgstr "Paket-Basis-ID"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:71
|
#: print.go:61
|
||||||
|
msgid "Package Base"
|
||||||
|
msgstr "Paketbasis"
|
||||||
|
|
||||||
|
#: pkg/query/aur_warnings.go:67
|
||||||
msgid "Packages not in AUR:"
|
msgid "Packages not in AUR:"
|
||||||
msgstr "Pakete nicht im AUR:"
|
msgstr "Pakete nicht im AUR:"
|
||||||
|
|
||||||
@ -390,7 +374,7 @@ msgstr "Pakete neu erstellen?"
|
|||||||
msgid "Packages to exclude"
|
msgid "Packages to exclude"
|
||||||
msgstr "Auszuschließende Pakete"
|
msgstr "Auszuschließende Pakete"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:294
|
#: pkg/upgrade/service.go:295
|
||||||
msgid "Packages to exclude: (eg: \"1 2 3\", \"1-3\", \"^4\" or repo name)"
|
msgid "Packages to exclude: (eg: \"1 2 3\", \"1-3\", \"^4\" or repo name)"
|
||||||
msgstr "Pakete zum Ausschließen: (z.B. \"1 2 3\", \"1-3\", \"^4\" oder Repo-Name)"
|
msgstr "Pakete zum Ausschließen: (z.B. \"1 2 3\", \"1-3\", \"^4\" oder Repo-Name)"
|
||||||
|
|
||||||
@ -418,23 +402,23 @@ msgstr "Abhängigkeiten nach der Installation entfernen?"
|
|||||||
msgid "Replaces"
|
msgid "Replaces"
|
||||||
msgstr "Ersetzt"
|
msgstr "Ersetzt"
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:191 print.go:30
|
|
||||||
msgid "Repository"
|
|
||||||
msgstr "Repository"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:730
|
#: pkg/dep/dep_graph.go:730
|
||||||
msgid "Repository AUR"
|
msgid "Repository AUR"
|
||||||
msgstr "Repository AUR"
|
msgstr "Repository AUR"
|
||||||
|
|
||||||
|
#: print.go:30 pkg/db/ialpm/alpm.go:191
|
||||||
|
msgid "Repository"
|
||||||
|
msgstr "Repository"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:78
|
#: pkg/dep/dep_graph.go:78
|
||||||
msgid "SRCINFO"
|
msgid "SRCINFO"
|
||||||
msgstr "SRCINFO"
|
msgstr "SRCINFO"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:71
|
#: pkg/upgrade/service.go:72
|
||||||
msgid "Searching AUR for updates..."
|
msgid "Searching AUR for updates..."
|
||||||
msgstr "Durchsuche AUR nach Updates..."
|
msgstr "Durchsuche AUR nach Updates..."
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:159
|
#: pkg/upgrade/service.go:160
|
||||||
msgid "Searching databases for updates..."
|
msgid "Searching databases for updates..."
|
||||||
msgstr "Durchsuche Datenbanken nach Updates..."
|
msgstr "Durchsuche Datenbanken nach Updates..."
|
||||||
|
|
||||||
@ -467,8 +451,8 @@ msgid "The following packages are not compatible with your architecture:"
|
|||||||
msgstr "Die folgenden Pakete sind mit Ihrer Architektur inkompatibel:"
|
msgstr "Die folgenden Pakete sind mit Ihrer Architektur inkompatibel:"
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:179 pkg/dep/dep_graph.go:726
|
#: pkg/db/ialpm/alpm.go:179 pkg/dep/dep_graph.go:726
|
||||||
msgid "There are %[1]d providers available for %[2]s:"
|
msgid "There are %d providers available for %s:"
|
||||||
msgstr "Es sind %[1]d Anbieter verfügbar für %[2]s:"
|
msgstr "Es sind %d Anbieter für %s verfügbar:"
|
||||||
|
|
||||||
#: pkg/settings/exe/cmd_builder.go:258
|
#: pkg/settings/exe/cmd_builder.go:258
|
||||||
msgid "There may be another Pacman instance running. Waiting..."
|
msgid "There may be another Pacman instance running. Waiting..."
|
||||||
@ -522,6 +506,22 @@ msgstr "Yay-Version v%s"
|
|||||||
msgid "[N]one"
|
msgid "[N]one"
|
||||||
msgstr "[N] Keine"
|
msgstr "[N] Keine"
|
||||||
|
|
||||||
|
#: clean.go:83
|
||||||
|
msgid ""
|
||||||
|
"\n"
|
||||||
|
"Build directory:"
|
||||||
|
msgstr ""
|
||||||
|
"\n"
|
||||||
|
"Build-Verzeichnis:"
|
||||||
|
|
||||||
|
#: pkg/db/ialpm/alpm.go:201 pkg/dep/dep_graph.go:740
|
||||||
|
msgid ""
|
||||||
|
"\n"
|
||||||
|
"Enter a number (default=1): "
|
||||||
|
msgstr ""
|
||||||
|
"\n"
|
||||||
|
"Geben Sie eine Zahl ein (Vorgabe=1):"
|
||||||
|
|
||||||
#: pkg/settings/errors.go:29
|
#: pkg/settings/errors.go:29
|
||||||
msgid "aborting due to user"
|
msgid "aborting due to user"
|
||||||
msgstr "Abbruch durch den Benutzer"
|
msgstr "Abbruch durch den Benutzer"
|
||||||
@ -550,11 +550,11 @@ msgstr "konnte nicht alle erforderlichen Pakete finden"
|
|||||||
msgid "could not find any package archives listed in %s"
|
msgid "could not find any package archives listed in %s"
|
||||||
msgstr "konnte keine Paketarchive finden ist nicht aufgeführt in %s"
|
msgstr "konnte keine Paketarchive finden ist nicht aufgeführt in %s"
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:50 pkg/upgrade/service.go:286
|
#: pkg/sync/build/errors.go:50 pkg/upgrade/service.go:287
|
||||||
msgid "dependency"
|
msgid "dependency"
|
||||||
msgstr "Abhängigkeit"
|
msgstr "Abhängigkeit"
|
||||||
|
|
||||||
#: pkg/vcs/vcs.go:100 pkg/vcs/vcs.go:96
|
#: pkg/vcs/vcs.go:96 pkg/vcs/vcs.go:100
|
||||||
msgid "devel check for package failed: '%s' encountered an error"
|
msgid "devel check for package failed: '%s' encountered an error"
|
||||||
msgstr "Entwicklungstest fehlgeschlagen für Paket: '%s' Fehler gefunden."
|
msgstr "Entwicklungstest fehlgeschlagen für Paket: '%s' Fehler gefunden."
|
||||||
|
|
||||||
@ -664,10 +664,6 @@ msgstr "Ungültiges Repository"
|
|||||||
msgid "invalid value: %d is not between %d and %d"
|
msgid "invalid value: %d is not between %d and %d"
|
||||||
msgstr "Ungültiger Wert: %d ist nicht zwischen %d und %d"
|
msgstr "Ungültiger Wert: %d ist nicht zwischen %d und %d"
|
||||||
|
|
||||||
#: pkg/text/input.go:48
|
|
||||||
msgid "no"
|
|
||||||
msgstr "nein"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:110
|
#: pkg/sync/srcinfo/pgp/keys.go:110
|
||||||
msgid "no keys to import"
|
msgid "no keys to import"
|
||||||
msgstr "Keine Schlüssel zu importieren"
|
msgstr "Keine Schlüssel zu importieren"
|
||||||
@ -680,6 +676,10 @@ msgstr "Es wurde keine Abfrage ausgeführt"
|
|||||||
msgid "no target directories specified"
|
msgid "no target directories specified"
|
||||||
msgstr "Kein Ziel Verzeichnis angegeben"
|
msgstr "Kein Ziel Verzeichnis angegeben"
|
||||||
|
|
||||||
|
#: pkg/text/input.go:48
|
||||||
|
msgid "no"
|
||||||
|
msgstr "nein"
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:242
|
#: pkg/sync/build/installer.go:242
|
||||||
msgid "nothing to install for %s"
|
msgid "nothing to install for %s"
|
||||||
msgstr "nichts zu installieren für %s"
|
msgstr "nichts zu installieren für %s"
|
||||||
@ -692,12 +692,6 @@ msgstr "Nur eine Operation kann gleichzeitig benutzt werden"
|
|||||||
msgid "only one target is allowed"
|
msgid "only one target is allowed"
|
||||||
msgstr "Nur ein Ziel ist erlaubt"
|
msgstr "Nur ein Ziel ist erlaubt"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:291
|
|
||||||
msgid "package"
|
|
||||||
msgid_plural "packages"
|
|
||||||
msgstr[0] "Paket"
|
|
||||||
msgstr[1] "Pakete"
|
|
||||||
|
|
||||||
#: print.go:187
|
#: print.go:187
|
||||||
msgid "package '%s' was not found"
|
msgid "package '%s' was not found"
|
||||||
msgstr "Paket '%s' konnte nicht gefunden werden"
|
msgstr "Paket '%s' konnte nicht gefunden werden"
|
||||||
@ -710,6 +704,12 @@ msgstr "Paket nicht im AUR gefunden"
|
|||||||
msgid "package not found in repos"
|
msgid "package not found in repos"
|
||||||
msgstr "Paket nicht in den Repos gefunden"
|
msgstr "Paket nicht in den Repos gefunden"
|
||||||
|
|
||||||
|
#: pkg/upgrade/service.go:292
|
||||||
|
msgid "package"
|
||||||
|
msgid_plural "packages"
|
||||||
|
msgstr[0] "Paket"
|
||||||
|
msgstr[1] "Pakete"
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:100
|
#: pkg/sync/srcinfo/pgp/keys.go:100
|
||||||
msgid "problem importing keys"
|
msgid "problem importing keys"
|
||||||
msgstr "Problem beim Importieren der Schlüssel"
|
msgstr "Problem beim Importieren der Schlüssel"
|
||||||
|
106
po/en.po
106
po/en.po
@ -7,19 +7,6 @@ msgstr ""
|
|||||||
"Language: \n"
|
"Language: \n"
|
||||||
"X-Generator: xgotext\n"
|
"X-Generator: xgotext\n"
|
||||||
|
|
||||||
#: clean.go:83
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
"Build directory:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:201
|
|
||||||
#: pkg/dep/dep_graph.go:740
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
"Enter a number (default=1): "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: pkg/menus/menu.go:32
|
#: pkg/menus/menu.go:32
|
||||||
msgid " (Build Files Exist)"
|
msgid " (Build Files Exist)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -58,11 +45,11 @@ msgstr ""
|
|||||||
msgid "%s is up to date -- skipping"
|
msgid "%s is up to date -- skipping"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:291
|
#: pkg/upgrade/service.go:292
|
||||||
msgid "%s to upgrade/install."
|
msgid "%s to upgrade/install."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:285
|
#: pkg/upgrade/service.go:286
|
||||||
msgid "%s will also be installed for this operation."
|
msgid "%s will also be installed for this operation."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -111,13 +98,13 @@ msgstr ""
|
|||||||
msgid "(%d/%d) Parsing SRCINFO: %s"
|
msgid "(%d/%d) Parsing SRCINFO: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/query/types.go:103
|
|
||||||
#: pkg/query/types.go:72
|
#: pkg/query/types.go:72
|
||||||
|
#: pkg/query/types.go:103
|
||||||
msgid "(Installed)"
|
msgid "(Installed)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/query/types.go:101
|
|
||||||
#: pkg/query/types.go:70
|
#: pkg/query/types.go:70
|
||||||
|
#: pkg/query/types.go:101
|
||||||
msgid "(Installed: %s)"
|
msgid "(Installed: %s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -129,14 +116,14 @@ msgstr ""
|
|||||||
msgid "(Out-of-date: %s)"
|
msgid "(Out-of-date: %s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:75
|
|
||||||
msgid "AUR"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: print.go:44
|
#: print.go:44
|
||||||
msgid "AUR URL"
|
msgid "AUR URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: pkg/dep/dep_graph.go:75
|
||||||
|
msgid "AUR"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:58
|
#: pkg/menus/edit_menu.go:58
|
||||||
msgid "Add %s or %s to your environment variables"
|
msgid "Add %s or %s to your environment variables"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -153,7 +140,7 @@ msgstr ""
|
|||||||
msgid "Check Deps"
|
msgid "Check Deps"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:89
|
#: pkg/upgrade/service.go:90
|
||||||
msgid "Checking development packages..."
|
msgid "Checking development packages..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -209,7 +196,7 @@ msgstr ""
|
|||||||
msgid "Error during AUR search: %s\n"
|
msgid "Error during AUR search: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:295
|
#: pkg/upgrade/service.go:296
|
||||||
msgid "Excluding packages may cause partial upgrades and break systems"
|
msgid "Excluding packages may cause partial upgrades and break systems"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -238,7 +225,7 @@ msgstr ""
|
|||||||
msgid "First Submitted"
|
msgid "First Submitted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:83
|
#: pkg/query/aur_warnings.go:79
|
||||||
msgid "Flagged Out Of Date AUR Packages:"
|
msgid "Flagged Out Of Date AUR Packages:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -294,12 +281,12 @@ msgstr ""
|
|||||||
msgid "Make Deps"
|
msgid "Make Deps"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:79
|
#: pkg/query/aur_warnings.go:71
|
||||||
msgid "Missing"
|
msgid "Missing AUR Debug Packages:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:75
|
#: pkg/dep/dep_graph.go:79
|
||||||
msgid "Missing AUR Debug Packages:"
|
msgid "Missing"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: print.go:31
|
#: print.go:31
|
||||||
@ -323,7 +310,7 @@ msgstr ""
|
|||||||
msgid "Optional Deps"
|
msgid "Optional Deps"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:79
|
#: pkg/query/aur_warnings.go:75
|
||||||
msgid "Orphan (unmaintained) AUR Packages:"
|
msgid "Orphan (unmaintained) AUR Packages:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -344,15 +331,15 @@ msgstr ""
|
|||||||
msgid "PKGBUILDs to edit?"
|
msgid "PKGBUILDs to edit?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: print.go:61
|
|
||||||
msgid "Package Base"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: print.go:60
|
#: print.go:60
|
||||||
msgid "Package Base ID"
|
msgid "Package Base ID"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:71
|
#: print.go:61
|
||||||
|
msgid "Package Base"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: pkg/query/aur_warnings.go:67
|
||||||
msgid "Packages not in AUR:"
|
msgid "Packages not in AUR:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -364,7 +351,7 @@ msgstr ""
|
|||||||
msgid "Packages to exclude"
|
msgid "Packages to exclude"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:294
|
#: pkg/upgrade/service.go:295
|
||||||
msgid "Packages to exclude: (eg: \"1 2 3\", \"1-3\", \"^4\" or repo name)"
|
msgid "Packages to exclude: (eg: \"1 2 3\", \"1-3\", \"^4\" or repo name)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -393,24 +380,24 @@ msgstr ""
|
|||||||
msgid "Replaces"
|
msgid "Replaces"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:191
|
|
||||||
#: print.go:30
|
|
||||||
msgid "Repository"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:730
|
#: pkg/dep/dep_graph.go:730
|
||||||
msgid "Repository AUR"
|
msgid "Repository AUR"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: print.go:30
|
||||||
|
#: pkg/db/ialpm/alpm.go:191
|
||||||
|
msgid "Repository"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:78
|
#: pkg/dep/dep_graph.go:78
|
||||||
msgid "SRCINFO"
|
msgid "SRCINFO"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:71
|
#: pkg/upgrade/service.go:72
|
||||||
msgid "Searching AUR for updates..."
|
msgid "Searching AUR for updates..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:159
|
#: pkg/upgrade/service.go:160
|
||||||
msgid "Searching databases for updates..."
|
msgid "Searching databases for updates..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -444,7 +431,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:179
|
#: pkg/db/ialpm/alpm.go:179
|
||||||
#: pkg/dep/dep_graph.go:726
|
#: pkg/dep/dep_graph.go:726
|
||||||
msgid "There are %[1]d providers available for %[2]s:"
|
msgid "There are %d providers available for %s:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/settings/exe/cmd_builder.go:258
|
#: pkg/settings/exe/cmd_builder.go:258
|
||||||
@ -502,6 +489,15 @@ msgstr ""
|
|||||||
msgid "[N]one"
|
msgid "[N]one"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: clean.go:83
|
||||||
|
msgid "\nBuild directory:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: pkg/db/ialpm/alpm.go:201
|
||||||
|
#: pkg/dep/dep_graph.go:740
|
||||||
|
msgid "\nEnter a number (default=1): "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/settings/errors.go:29
|
#: pkg/settings/errors.go:29
|
||||||
msgid "aborting due to user"
|
msgid "aborting due to user"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -531,12 +527,12 @@ msgid "could not find any package archives listed in %s"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:50
|
#: pkg/sync/build/errors.go:50
|
||||||
#: pkg/upgrade/service.go:286
|
#: pkg/upgrade/service.go:287
|
||||||
msgid "dependency"
|
msgid "dependency"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/vcs/vcs.go:100
|
|
||||||
#: pkg/vcs/vcs.go:96
|
#: pkg/vcs/vcs.go:96
|
||||||
|
#: pkg/vcs/vcs.go:100
|
||||||
msgid "devel check for package failed: '%s' encountered an error"
|
msgid "devel check for package failed: '%s' encountered an error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -650,10 +646,6 @@ msgstr ""
|
|||||||
msgid "invalid value: %d is not between %d and %d"
|
msgid "invalid value: %d is not between %d and %d"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/text/input.go:48
|
|
||||||
msgid "no"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:110
|
#: pkg/sync/srcinfo/pgp/keys.go:110
|
||||||
msgid "no keys to import"
|
msgid "no keys to import"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -666,6 +658,10 @@ msgstr ""
|
|||||||
msgid "no target directories specified"
|
msgid "no target directories specified"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: pkg/text/input.go:48
|
||||||
|
msgid "no"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:242
|
#: pkg/sync/build/installer.go:242
|
||||||
msgid "nothing to install for %s"
|
msgid "nothing to install for %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -678,12 +674,6 @@ msgstr ""
|
|||||||
msgid "only one target is allowed"
|
msgid "only one target is allowed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:291
|
|
||||||
msgid "package"
|
|
||||||
msgid_plural "packages"
|
|
||||||
msgstr[0] ""
|
|
||||||
msgstr[1] ""
|
|
||||||
|
|
||||||
#: print.go:187
|
#: print.go:187
|
||||||
msgid "package '%s' was not found"
|
msgid "package '%s' was not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -696,6 +686,12 @@ msgstr ""
|
|||||||
msgid "package not found in repos"
|
msgid "package not found in repos"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: pkg/upgrade/service.go:292
|
||||||
|
msgid "package"
|
||||||
|
msgid_plural "packages"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:100
|
#: pkg/sync/srcinfo/pgp/keys.go:100
|
||||||
msgid "problem importing keys"
|
msgid "problem importing keys"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
11
po/es.po
11
po/es.po
@ -9,11 +9,10 @@
|
|||||||
# brandon galvis, 2023
|
# brandon galvis, 2023
|
||||||
# Angel López, 2023
|
# Angel López, 2023
|
||||||
# C C, 2023
|
# C C, 2023
|
||||||
# Angel Alderete, 2024
|
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Last-Translator: Angel Alderete, 2024\n"
|
"Last-Translator: C C, 2023\n"
|
||||||
"Language-Team: Spanish (https://app.transifex.com/yay-1/teams/123732/es/)\n"
|
"Language-Team: Spanish (https://app.transifex.com/yay-1/teams/123732/es/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
@ -60,11 +59,11 @@ msgstr "%s está actualizado -- ignorando"
|
|||||||
|
|
||||||
#: pkg/upgrade/service.go:292
|
#: pkg/upgrade/service.go:292
|
||||||
msgid "%s to upgrade/install."
|
msgid "%s to upgrade/install."
|
||||||
msgstr "%s por actualizar/instalar"
|
msgstr "por actualizar/instalar"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:286
|
#: pkg/upgrade/service.go:286
|
||||||
msgid "%s will also be installed for this operation."
|
msgid "%s will also be installed for this operation."
|
||||||
msgstr "%s también será instalado para esta operación"
|
msgstr "también será instalado para esta operación"
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:124
|
#: pkg/sync/srcinfo/pgp/keys.go:124
|
||||||
msgid "%s, required by: %s"
|
msgid "%s, required by: %s"
|
||||||
@ -447,8 +446,8 @@ msgid "The following packages are not compatible with your architecture:"
|
|||||||
msgstr "Los siguientes paquetes no son compatibles con su arquitectura:"
|
msgstr "Los siguientes paquetes no son compatibles con su arquitectura:"
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:179 pkg/dep/dep_graph.go:726
|
#: pkg/db/ialpm/alpm.go:179 pkg/dep/dep_graph.go:726
|
||||||
msgid "There are %[1]d providers available for %[2]s:"
|
msgid "There are %d providers available for %s:"
|
||||||
msgstr "Existen %[1]d paquetes que proveen %[2]s:"
|
msgstr "Existen %d paquetes que proveen %s:"
|
||||||
|
|
||||||
#: pkg/settings/exe/cmd_builder.go:258
|
#: pkg/settings/exe/cmd_builder.go:258
|
||||||
msgid "There may be another Pacman instance running. Waiting..."
|
msgid "There may be another Pacman instance running. Waiting..."
|
||||||
|
4
po/eu.po
4
po/eu.po
@ -449,8 +449,8 @@ msgstr "Ondorengo paketeak ez dira zure arkitekturarekin bateragarriak:"
|
|||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:179 pkg/dep/dep_graph.go:726
|
#: pkg/db/ialpm/alpm.go:179 pkg/dep/dep_graph.go:726
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "There are %[1]d providers available for %[2]s:"
|
msgid "There are %d providers available for %s:"
|
||||||
msgstr "%[1]d hornitzaile eskuragarri %[2]s paketearentzat:\n"
|
msgstr "%d hornitzaile eskuragarri %s paketearentzat:\n"
|
||||||
|
|
||||||
#: pkg/settings/exe/cmd_builder.go:258
|
#: pkg/settings/exe/cmd_builder.go:258
|
||||||
msgid "There may be another Pacman instance running. Waiting..."
|
msgid "There may be another Pacman instance running. Waiting..."
|
||||||
|
751
po/fr.po
751
po/fr.po
@ -1,751 +0,0 @@
|
|||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Benjamin Chenebault, 2023
|
|
||||||
# anthony tonitch <d.tonitch@gmail.com>, 2024
|
|
||||||
# Edgar Fournival, 2024
|
|
||||||
# J G, 2024
|
|
||||||
# Mélanie Chauvel <aria@ariasuni.eu>, 2024
|
|
||||||
# Sylvain Bx, 2024
|
|
||||||
# Mathias Brugger, 2024
|
|
||||||
# Léane GRASSER, 2024
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Last-Translator: Léane GRASSER, 2024\n"
|
|
||||||
"Language-Team: French (https://app.transifex.com/yay-1/teams/123732/fr/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: fr\n"
|
|
||||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
|
||||||
"X-Generator: xgotext\n"
|
|
||||||
|
|
||||||
#: clean.go:83
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
"Build directory:"
|
|
||||||
msgstr ""
|
|
||||||
"\n"
|
|
||||||
"Répertoire de compilation :"
|
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:201 pkg/dep/dep_graph.go:740
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
"Enter a number (default=1): "
|
|
||||||
msgstr ""
|
|
||||||
"\n"
|
|
||||||
"Saisissez un nombre (valeur par défaut : 1) :"
|
|
||||||
|
|
||||||
#: pkg/menus/menu.go:32
|
|
||||||
msgid " (Build Files Exist)"
|
|
||||||
msgstr " (Les fichiers de compilation existent)"
|
|
||||||
|
|
||||||
#: pkg/menus/menu.go:27
|
|
||||||
msgid " (Installed)"
|
|
||||||
msgstr " (Installé)"
|
|
||||||
|
|
||||||
#: cmd.go:453
|
|
||||||
msgid " [Installed]"
|
|
||||||
msgstr " [Installé]"
|
|
||||||
|
|
||||||
#: cmd.go:410 vote.go:36
|
|
||||||
msgid " there is nothing to do"
|
|
||||||
msgstr " il n'y a rien à faire"
|
|
||||||
|
|
||||||
#: pkg/menus/menu.go:49
|
|
||||||
msgid "%s [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)"
|
|
||||||
msgstr "%s [A]Tous [Ab]Annuler [I]nstallés [No]nInstallés ou (1 2 3, 1-3, ^4)"
|
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:308
|
|
||||||
msgid "%s already made -- skipping build"
|
|
||||||
msgstr "%s déjà créé -- compilation ignorée"
|
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:57
|
|
||||||
msgid "%s is not set"
|
|
||||||
msgstr "%s n'est pas définie"
|
|
||||||
|
|
||||||
#: pkg/settings/exe/cmd_builder.go:257
|
|
||||||
msgid "%s is present."
|
|
||||||
msgstr "%s existe."
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:460 pkg/sync/build/installer.go:305
|
|
||||||
msgid "%s is up to date -- skipping"
|
|
||||||
msgstr "%s est à jour -- ignoré"
|
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:291
|
|
||||||
msgid "%s to upgrade/install."
|
|
||||||
msgstr "%s à mettre à jour ou à installer."
|
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:285
|
|
||||||
msgid "%s will also be installed for this operation."
|
|
||||||
msgstr "%s à installer pour effectuer cette opération."
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:124
|
|
||||||
msgid "%s, required by: %s"
|
|
||||||
msgstr "%s, nécessaire pour : %s"
|
|
||||||
|
|
||||||
#: pkg/menus/diff_menu.go:49
|
|
||||||
msgid "%s: No changes -- skipping"
|
|
||||||
msgstr "%s : Aucun changement -- ignoré"
|
|
||||||
|
|
||||||
#: pkg/query/filter.go:22
|
|
||||||
msgid "%s: can't use target with option --aur -- skipping"
|
|
||||||
msgstr "%s : la cible est incompatible avec l'option --aur -- ignoré"
|
|
||||||
|
|
||||||
#: pkg/query/filter.go:17
|
|
||||||
msgid "%s: can't use target with option --repo -- skipping"
|
|
||||||
msgstr "%s : la cible est incompatible avec l'option --repo -- ignoré"
|
|
||||||
|
|
||||||
#: pkg/upgrade/sources.go:57
|
|
||||||
msgid "%s: ignoring package upgrade (%s => %s)"
|
|
||||||
msgstr "%s : mise à jour du paquet ignorée (%s => %s)"
|
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:46
|
|
||||||
msgid "%s: local (%s) is newer than AUR (%s)"
|
|
||||||
msgstr ""
|
|
||||||
"%s : le paquet local (%s) est plus récent que le paquet disponible sur l'AUR"
|
|
||||||
" (%s)"
|
|
||||||
|
|
||||||
#: vote.go:51
|
|
||||||
msgid ""
|
|
||||||
"%s: please set AUR_USERNAME and AUR_PASSWORD environment variables for "
|
|
||||||
"voting"
|
|
||||||
msgstr ""
|
|
||||||
"%s : définissez les variables d'environnement AUR_USERNAME et AUR_PASSWORD "
|
|
||||||
"avant de pouvoir voter"
|
|
||||||
|
|
||||||
#: pkg/download/unified.go:192
|
|
||||||
msgid "(%d/%d) Downloaded PKGBUILD from ABS: %s"
|
|
||||||
msgstr "(%d/%d) PKGBUILD téléchargé depuis l'ABS : %s"
|
|
||||||
|
|
||||||
#: pkg/download/aur.go:92 pkg/download/unified.go:188
|
|
||||||
msgid "(%d/%d) Downloaded PKGBUILD: %s"
|
|
||||||
msgstr "(%d/%d) PKGBUILD téléchargé : %s"
|
|
||||||
|
|
||||||
#: pkg/download/aur.go:82
|
|
||||||
msgid "(%d/%d) Failed to download PKGBUILD: %s"
|
|
||||||
msgstr "(%d/%d) Échec du téléchargement du PKGBUILD : %s"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/service.go:109
|
|
||||||
msgid "(%d/%d) Parsing SRCINFO: %s"
|
|
||||||
msgstr "(%d/%d) Analyse du SRCINFO : %s"
|
|
||||||
|
|
||||||
#: pkg/query/types.go:103 pkg/query/types.go:72
|
|
||||||
msgid "(Installed)"
|
|
||||||
msgstr "(Installé)"
|
|
||||||
|
|
||||||
#: pkg/query/types.go:101 pkg/query/types.go:70
|
|
||||||
msgid "(Installed: %s)"
|
|
||||||
msgstr "(Installé : %s)"
|
|
||||||
|
|
||||||
#: pkg/query/types.go:61
|
|
||||||
msgid "(Orphaned)"
|
|
||||||
msgstr "(Orphelin)"
|
|
||||||
|
|
||||||
#: pkg/query/types.go:65
|
|
||||||
msgid "(Out-of-date: %s)"
|
|
||||||
msgstr "(Obsolète : %s)"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:75
|
|
||||||
msgid "AUR"
|
|
||||||
msgstr "AUR"
|
|
||||||
|
|
||||||
#: print.go:44
|
|
||||||
msgid "AUR URL"
|
|
||||||
msgstr "URL sur l'AUR"
|
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:58
|
|
||||||
msgid "Add %s or %s to your environment variables"
|
|
||||||
msgstr "Ajoutez %s ou %s à vos variables d'environnement"
|
|
||||||
|
|
||||||
#: main.go:60
|
|
||||||
msgid "Avoid running yay as root/sudo."
|
|
||||||
msgstr "Évitez d'exécuter yay en tant que root ou via sudo."
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:63
|
|
||||||
msgid "Check Dependency"
|
|
||||||
msgstr "Dépendance de vérification"
|
|
||||||
|
|
||||||
#: print.go:41
|
|
||||||
msgid "Check Deps"
|
|
||||||
msgstr "Dépendances vérif."
|
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:89
|
|
||||||
msgid "Checking development packages..."
|
|
||||||
msgstr "Vérification des paquets de développement…"
|
|
||||||
|
|
||||||
#: pkg/sync/workdir/clean.go:45
|
|
||||||
msgid "Cleaning (%d/%d): %s"
|
|
||||||
msgstr "Nettoyage (%d/%d) : %s"
|
|
||||||
|
|
||||||
#: print.go:42
|
|
||||||
msgid "Conflicts With"
|
|
||||||
msgstr "Est en conflit avec"
|
|
||||||
|
|
||||||
#: pkg/menus/clean_menu.go:62
|
|
||||||
msgid "Deleting (%d/%d): %s"
|
|
||||||
msgstr "Suppression (%d/%d) : %s"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:61
|
|
||||||
msgid "Dependency"
|
|
||||||
msgstr "Dépendance"
|
|
||||||
|
|
||||||
#: print.go:38
|
|
||||||
msgid "Depends On"
|
|
||||||
msgstr "Dépend de"
|
|
||||||
|
|
||||||
#: print.go:33
|
|
||||||
msgid "Description"
|
|
||||||
msgstr "Description"
|
|
||||||
|
|
||||||
#: pkg/menus/diff_menu.go:160
|
|
||||||
msgid "Diffs to show?"
|
|
||||||
msgstr "Diffs à afficher ?"
|
|
||||||
|
|
||||||
#: pkg/settings/migrations.go:25
|
|
||||||
msgid "Disable 'provides' setting by default"
|
|
||||||
msgstr "Désactiver par défaut le paramètre \"provides\""
|
|
||||||
|
|
||||||
#: clean.go:78
|
|
||||||
msgid "Do you want to remove ALL AUR packages from cache?"
|
|
||||||
msgstr "Voulez-vous supprimer TOUS les paquets de l'AUR dans le cache ?"
|
|
||||||
|
|
||||||
#: clean.go:95
|
|
||||||
msgid "Do you want to remove ALL untracked AUR files?"
|
|
||||||
msgstr ""
|
|
||||||
"Voulez-vous supprimer TOUS les fichiers non suivis des paquets de l'AUR ?"
|
|
||||||
|
|
||||||
#: clean.go:80
|
|
||||||
msgid "Do you want to remove all other AUR packages from cache?"
|
|
||||||
msgstr ""
|
|
||||||
"Voulez-vous supprimer tous les autres paquets de l'AUR dans le cache ?"
|
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:61
|
|
||||||
msgid "Edit PKGBUILD with?"
|
|
||||||
msgstr "Modifier le PKGBUILD avec ?"
|
|
||||||
|
|
||||||
#: pkg/query/errors.go:13
|
|
||||||
msgid "Error during AUR search: %s\n"
|
|
||||||
msgstr "Erreur lors de la recherche dans l'AUR : %s\n"
|
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:295
|
|
||||||
msgid "Excluding packages may cause partial upgrades and break systems"
|
|
||||||
msgstr ""
|
|
||||||
"L'exclusion de paquets peut mener à une mise à jour partielle de votre "
|
|
||||||
"système et pourrait le casser"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:60
|
|
||||||
msgid "Explicit"
|
|
||||||
msgstr "Explicite"
|
|
||||||
|
|
||||||
#: print.go:91
|
|
||||||
msgid "Explicitly installed packages: %s"
|
|
||||||
msgstr "Paquets installés explicitement : %s"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:437 pkg/dep/dep_graph.go:535
|
|
||||||
msgid "Failed to find AUR package for"
|
|
||||||
msgstr "Impossible de trouver un paquet sur l'AUR correspondant à"
|
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:120
|
|
||||||
msgid "Failed to install layer, rolling up to next layer."
|
|
||||||
msgstr "Échec de l'installation de la couche, passage à la couche suivante."
|
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:16
|
|
||||||
msgid ""
|
|
||||||
"Failed to install the following packages. Manual intervention is required:"
|
|
||||||
msgstr ""
|
|
||||||
"Échec de l'installation des paquets suivants. Une intervention manuelle est "
|
|
||||||
"requise :"
|
|
||||||
|
|
||||||
#: print.go:45
|
|
||||||
msgid "First Submitted"
|
|
||||||
msgstr "Envoyé le"
|
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:83
|
|
||||||
msgid "Flagged Out Of Date AUR Packages:"
|
|
||||||
msgstr "Paquets de l'AUR marqués comme obsolètes :"
|
|
||||||
|
|
||||||
#: print.go:90
|
|
||||||
msgid "Foreign installed packages: %s"
|
|
||||||
msgstr "Paquets étrangers installés : %s"
|
|
||||||
|
|
||||||
#: pkg/vcs/vcs.go:144
|
|
||||||
msgid "Found git repo: %s"
|
|
||||||
msgstr "Dépôt Git trouvé : %s"
|
|
||||||
|
|
||||||
#: vcs.go:72
|
|
||||||
msgid "GenDB finished. No packages were installed"
|
|
||||||
msgstr "GenDB terminé. Aucun paquet n'a été installé"
|
|
||||||
|
|
||||||
#: print.go:36
|
|
||||||
msgid "Groups"
|
|
||||||
msgstr "Groupes"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:88
|
|
||||||
msgid "Import?"
|
|
||||||
msgstr "Importer ?"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:97
|
|
||||||
msgid "Importing keys with gpg..."
|
|
||||||
msgstr "Importation des clés avec gpg…"
|
|
||||||
|
|
||||||
#: print.go:46
|
|
||||||
msgid "Keywords"
|
|
||||||
msgstr "Mots-clés"
|
|
||||||
|
|
||||||
#: print.go:47
|
|
||||||
msgid "Last Modified"
|
|
||||||
msgstr "Modifié le"
|
|
||||||
|
|
||||||
#: print.go:35
|
|
||||||
msgid "Licenses"
|
|
||||||
msgstr "Licences"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:77
|
|
||||||
msgid "Local"
|
|
||||||
msgstr "Local"
|
|
||||||
|
|
||||||
#: print.go:48
|
|
||||||
msgid "Maintainer"
|
|
||||||
msgstr "Mainteneur"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:62
|
|
||||||
msgid "Make Dependency"
|
|
||||||
msgstr "Dépendance de création"
|
|
||||||
|
|
||||||
#: print.go:40
|
|
||||||
msgid "Make Deps"
|
|
||||||
msgstr "Dépendances créat."
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:79
|
|
||||||
msgid "Missing"
|
|
||||||
msgstr "Manquant"
|
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:75
|
|
||||||
msgid "Missing AUR Debug Packages:"
|
|
||||||
msgstr "Paquets de débogage de l'AUR manquants :"
|
|
||||||
|
|
||||||
#: print.go:31
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nom"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:442 pkg/dep/dep_graph.go:548
|
|
||||||
msgid "No AUR package found for"
|
|
||||||
msgstr "Aucun paquet trouvé sur l'AUR correspondant à"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:182
|
|
||||||
msgid "No package found for"
|
|
||||||
msgstr "Aucun paquet trouvé correspondant à"
|
|
||||||
|
|
||||||
#: print.go:225
|
|
||||||
msgid "None"
|
|
||||||
msgstr "--"
|
|
||||||
|
|
||||||
#: print.go:39
|
|
||||||
msgid "Optional Deps"
|
|
||||||
msgstr "Dépendances opt."
|
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:79
|
|
||||||
msgid "Orphan (unmaintained) AUR Packages:"
|
|
||||||
msgstr "Paquets de l'AUR orphelins (non maintenus) :"
|
|
||||||
|
|
||||||
#: print.go:53 print.go:55
|
|
||||||
msgid "Out-of-date"
|
|
||||||
msgstr "Obsolète"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:115
|
|
||||||
msgid "PGP keys need importing:"
|
|
||||||
msgstr "Des clés PGP doivent être importées :"
|
|
||||||
|
|
||||||
#: pkg/sync/workdir/preparer.go:252
|
|
||||||
msgid "PKGBUILD up to date, skipping download: %s"
|
|
||||||
msgstr "PKGBUILD à jour, téléchargement ignoré : %s"
|
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:130
|
|
||||||
msgid "PKGBUILDs to edit?"
|
|
||||||
msgstr "PKGBUILDs à modifier ?"
|
|
||||||
|
|
||||||
#: print.go:61
|
|
||||||
msgid "Package Base"
|
|
||||||
msgstr "Paquet base"
|
|
||||||
|
|
||||||
#: print.go:60
|
|
||||||
msgid "Package Base ID"
|
|
||||||
msgstr "ID du paquet base"
|
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:71
|
|
||||||
msgid "Packages not in AUR:"
|
|
||||||
msgstr "Paquets absents de l'AUR :"
|
|
||||||
|
|
||||||
#: pkg/menus/clean_menu.go:54
|
|
||||||
msgid "Packages to cleanBuild?"
|
|
||||||
msgstr "Paquets à cleanBuild ?"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:202
|
|
||||||
msgid "Packages to exclude"
|
|
||||||
msgstr "Paquets à exclure"
|
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:294
|
|
||||||
msgid "Packages to exclude: (eg: \"1 2 3\", \"1-3\", \"^4\" or repo name)"
|
|
||||||
msgstr "Paquets à exclure : (ex. « 1 2 3 », « 1-3 », « ^4 » ou noms de dépôt)"
|
|
||||||
|
|
||||||
#: cmd.go:392
|
|
||||||
msgid "Packages to install (eg: 1 2 3, 1-3 or ^4)"
|
|
||||||
msgstr "Paquets à installer (ex. 1 2 3, 1-3 ou ^4)"
|
|
||||||
|
|
||||||
#: print.go:49
|
|
||||||
msgid "Popularity"
|
|
||||||
msgstr "Popularité"
|
|
||||||
|
|
||||||
#: pkg/menus/diff_menu.go:172 pkg/menus/edit_menu.go:143
|
|
||||||
msgid "Proceed with install?"
|
|
||||||
msgstr "Procéder à l'installation ?"
|
|
||||||
|
|
||||||
#: print.go:37
|
|
||||||
msgid "Provides"
|
|
||||||
msgstr "Fournit"
|
|
||||||
|
|
||||||
#: pkg/sync/workdir/preparer.go:125
|
|
||||||
msgid "Remove make dependencies after install?"
|
|
||||||
msgstr "Supprimer les dépendances de création après l'installation ?"
|
|
||||||
|
|
||||||
#: print.go:43
|
|
||||||
msgid "Replaces"
|
|
||||||
msgstr "Remplace"
|
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:191 print.go:30
|
|
||||||
msgid "Repository"
|
|
||||||
msgstr "Dépôt"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:730
|
|
||||||
msgid "Repository AUR"
|
|
||||||
msgstr "Dépôt AUR"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:78
|
|
||||||
msgid "SRCINFO"
|
|
||||||
msgstr "SRCINFO"
|
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:71
|
|
||||||
msgid "Searching AUR for updates..."
|
|
||||||
msgstr "Recherche des mises à jour sur l'AUR…"
|
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:159
|
|
||||||
msgid "Searching databases for updates..."
|
|
||||||
msgstr "Recherche des mises à jour dans les bases de données…"
|
|
||||||
|
|
||||||
#: pkg/query/query_builder.go:214
|
|
||||||
msgid "Showing repo packages only"
|
|
||||||
msgstr "Affichage uniquement des paquets provenant des dépôts"
|
|
||||||
|
|
||||||
#: print.go:95
|
|
||||||
msgid "Size of pacman cache %s: %s"
|
|
||||||
msgstr "Taille du cache de pacman %s : %s"
|
|
||||||
|
|
||||||
#: print.go:98
|
|
||||||
msgid "Size of yay cache %s: %s"
|
|
||||||
msgstr "Taille du cache de yay %s : %s"
|
|
||||||
|
|
||||||
#: print.go:62
|
|
||||||
msgid "Snapshot URL"
|
|
||||||
msgstr "URL de l'instantané"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:76
|
|
||||||
msgid "Sync"
|
|
||||||
msgstr "Sync"
|
|
||||||
|
|
||||||
#: print.go:100
|
|
||||||
msgid "Ten biggest packages:"
|
|
||||||
msgstr "Les dix paquets les plus lourds :"
|
|
||||||
|
|
||||||
#: pkg/sync/sync.go:124
|
|
||||||
msgid "The following packages are not compatible with your architecture:"
|
|
||||||
msgstr "Les paquets suivants sont incompatibles avec votre architecture :"
|
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:179 pkg/dep/dep_graph.go:726
|
|
||||||
msgid "There are %[1]d providers available for %[2]s:"
|
|
||||||
msgstr "%[1]d paquets fournissant %[2]s sont disponibles :"
|
|
||||||
|
|
||||||
#: pkg/settings/exe/cmd_builder.go:258
|
|
||||||
msgid "There may be another Pacman instance running. Waiting..."
|
|
||||||
msgstr ""
|
|
||||||
"Il semblerait qu'une autre instance de Pacman soit en cours d'exécution. En "
|
|
||||||
"attente…"
|
|
||||||
|
|
||||||
#: print.go:92
|
|
||||||
msgid "Total Size occupied by packages: %s"
|
|
||||||
msgstr "Taille totale occupée par les paquets : %s"
|
|
||||||
|
|
||||||
#: print.go:89
|
|
||||||
msgid "Total installed packages: %s"
|
|
||||||
msgstr "Nombre de paquets installés : %s"
|
|
||||||
|
|
||||||
#: pkg/sync/sync.go:132
|
|
||||||
msgid "Try to build them anyway?"
|
|
||||||
msgstr "Essayer quand même de les compiler ?"
|
|
||||||
|
|
||||||
#: print.go:34
|
|
||||||
msgid "URL"
|
|
||||||
msgstr "URL"
|
|
||||||
|
|
||||||
#: clean.go:194 pkg/menus/clean_menu.go:65 pkg/menus/clean_menu.go:71
|
|
||||||
msgid "Unable to clean:"
|
|
||||||
msgstr "Impossible de nettoyer :"
|
|
||||||
|
|
||||||
#: get.go:42 get.go:74
|
|
||||||
msgid "Unable to find the following packages:"
|
|
||||||
msgstr "Impossible de trouver les paquets suivants :"
|
|
||||||
|
|
||||||
#: vote.go:20
|
|
||||||
msgid "Unable to handle package vote for: %s. err: %s"
|
|
||||||
msgstr "Impossible de gérer le vote pour : %s. Erreur : %s"
|
|
||||||
|
|
||||||
#: clean.go:170
|
|
||||||
msgid "Unable to remove %s: %s"
|
|
||||||
msgstr "Impossible de supprimer %s : %s"
|
|
||||||
|
|
||||||
#: print.go:32
|
|
||||||
msgid "Version"
|
|
||||||
msgstr "Version"
|
|
||||||
|
|
||||||
#: print.go:50
|
|
||||||
msgid "Votes"
|
|
||||||
msgstr "Votes"
|
|
||||||
|
|
||||||
#: print.go:87
|
|
||||||
msgid "Yay version v%s"
|
|
||||||
msgstr "Yay version v%s"
|
|
||||||
|
|
||||||
#: pkg/menus/menu.go:49
|
|
||||||
msgid "[N]one"
|
|
||||||
msgstr "[N]Aucun"
|
|
||||||
|
|
||||||
#: pkg/settings/errors.go:29
|
|
||||||
msgid "aborting due to user"
|
|
||||||
msgstr "abandon dû à l'utilisateur"
|
|
||||||
|
|
||||||
#: pkg/settings/parser/parser.go:608
|
|
||||||
msgid "argument '-' specified without input on stdin"
|
|
||||||
msgstr "argument '-' spécifié et aucune entrée dans stdin"
|
|
||||||
|
|
||||||
#: local_install.go:26
|
|
||||||
msgid "cannot find PKGBUILD and .SRCINFO in directory"
|
|
||||||
msgstr ""
|
|
||||||
"impossible de trouver les fichiers PKGBUILD et .SRCINFO dans le répertoire"
|
|
||||||
|
|
||||||
#: pkg/sync/build/pkg_archive.go:148
|
|
||||||
msgid "cannot find package name: %v"
|
|
||||||
msgstr "impossible de trouver le nom de paquet : %v"
|
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:30
|
|
||||||
msgid "could not find PKGDEST for: %s"
|
|
||||||
msgstr "impossible de trouver le PKGDEST pour : %s"
|
|
||||||
|
|
||||||
#: errors.go:9
|
|
||||||
msgid "could not find all required packages"
|
|
||||||
msgstr "impossible de trouver tous les paquets requis"
|
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:61
|
|
||||||
msgid "could not find any package archives listed in %s"
|
|
||||||
msgstr "aucune archive de paquet trouvée parmi celles listées dans %s"
|
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:50 pkg/upgrade/service.go:286
|
|
||||||
msgid "dependency"
|
|
||||||
msgstr "dépendance"
|
|
||||||
|
|
||||||
#: pkg/vcs/vcs.go:100 pkg/vcs/vcs.go:96
|
|
||||||
msgid "devel check for package failed: '%s' encountered an error"
|
|
||||||
msgstr ""
|
|
||||||
"échec de la vérification du paquet de développement : '%s' a rencontré une "
|
|
||||||
"erreur"
|
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:110
|
|
||||||
msgid "editor did not exit successfully, aborting: %s"
|
|
||||||
msgstr "l'éditeur ne s'est pas terminé avec succès, abandon : %s"
|
|
||||||
|
|
||||||
#: pkg/sync/workdir/aur_source.go:24
|
|
||||||
msgid "error downloading sources: %s"
|
|
||||||
msgstr "erreur lors du téléchargement des sources : %s"
|
|
||||||
|
|
||||||
#: pkg/download/errors.go:25
|
|
||||||
msgid "error fetching %s: %s"
|
|
||||||
msgstr "erreur lors de la récupération de %s : %s"
|
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:9
|
|
||||||
msgid "error installing repo packages"
|
|
||||||
msgstr "erreur lors de l'installation des paquets provenant des dépôts"
|
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:266 pkg/sync/build/installer.go:270
|
|
||||||
msgid "error installing:"
|
|
||||||
msgstr "erreur lors de l'installation de :"
|
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:233 pkg/sync/build/installer.go:237
|
|
||||||
msgid "error making: %s"
|
|
||||||
msgstr "erreur lors de la compilation de : %s"
|
|
||||||
|
|
||||||
#: pkg/sync/workdir/merge.go:24
|
|
||||||
msgid "error merging %s: %s"
|
|
||||||
msgstr "erreur lors de la fusion (%s) : %s"
|
|
||||||
|
|
||||||
#: pkg/download/unified.go:59
|
|
||||||
msgid "error reading %s"
|
|
||||||
msgstr "erreur lors de la lecture de %s"
|
|
||||||
|
|
||||||
#: sync.go:36
|
|
||||||
msgid "error refreshing databases"
|
|
||||||
msgstr "erreur lors de l'actualisation des bases de données"
|
|
||||||
|
|
||||||
#: pkg/sync/workdir/clean.go:51 pkg/sync/workdir/merge.go:17
|
|
||||||
msgid "error resetting %s: %s"
|
|
||||||
msgstr "erreur lors de la réinitialisation de %s : %s"
|
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:53
|
|
||||||
msgid "error updating package install reason to %s"
|
|
||||||
msgstr ""
|
|
||||||
"erreur lors de la modification du motif d'installation du paquet en « %s »"
|
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:48
|
|
||||||
msgid "explicit"
|
|
||||||
msgstr "explicite"
|
|
||||||
|
|
||||||
#: pkg/settings/errors.go:23
|
|
||||||
msgid "failed to create directory '%s': %s"
|
|
||||||
msgstr "échec de la création du répertoire '%s' : %s"
|
|
||||||
|
|
||||||
#: pkg/settings/config.go:281
|
|
||||||
msgid "failed to open config file '%s': %s"
|
|
||||||
msgstr "échec de l'ouverture du fichier de configuration '%s' : %s"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/service.go:114
|
|
||||||
msgid "failed to parse %s -- skipping: %s"
|
|
||||||
msgstr "échec de l'analyse de %s -- ignoré : %s"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/service.go:118
|
|
||||||
msgid "failed to parse %s: %s"
|
|
||||||
msgstr "échec de l'analyse de %s : %s"
|
|
||||||
|
|
||||||
#: local_install.go:77
|
|
||||||
msgid "failed to parse .SRCINFO"
|
|
||||||
msgstr "échec de l'analyse du .SRCINFO"
|
|
||||||
|
|
||||||
#: pkg/settings/config.go:291
|
|
||||||
msgid "failed to read config file '%s': %s"
|
|
||||||
msgstr "échec de la lecture du fichier de configuration '%s' : %s"
|
|
||||||
|
|
||||||
#: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73
|
|
||||||
msgid "failed to retrieve aur Cache"
|
|
||||||
msgstr "échec de la récupération du cache AUR"
|
|
||||||
|
|
||||||
#: pkg/upgrade/sources.go:27
|
|
||||||
msgid "ignoring package devel upgrade (no AUR info found):"
|
|
||||||
msgstr ""
|
|
||||||
"mise à jour du paquet de développement ignorée (infos AUR introuvables) :"
|
|
||||||
|
|
||||||
#: pkg/text/errors.go:8
|
|
||||||
msgid "input too long"
|
|
||||||
msgstr "entrée trop longue"
|
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:222 pkg/dep/dep_graph.go:761
|
|
||||||
msgid "invalid number: %s"
|
|
||||||
msgstr "nombre invalide : %s"
|
|
||||||
|
|
||||||
#: pkg/settings/parser/parser.go:174
|
|
||||||
msgid "invalid option '%s'"
|
|
||||||
msgstr "option '%s' invalide"
|
|
||||||
|
|
||||||
#: cmd.go:197
|
|
||||||
msgid "invalid option: '--deps' and '--explicit' may not be used together"
|
|
||||||
msgstr ""
|
|
||||||
"option invalide : '--deps' et '--explicit' ne peuvent pas être utilisés "
|
|
||||||
"ensemble"
|
|
||||||
|
|
||||||
#: pkg/download/abs.go:22
|
|
||||||
msgid "invalid repository"
|
|
||||||
msgstr "dépôt invalide"
|
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:227 pkg/dep/dep_graph.go:767
|
|
||||||
msgid "invalid value: %d is not between %d and %d"
|
|
||||||
msgstr "valeur invalide : %d n'est pas entre %d et %d"
|
|
||||||
|
|
||||||
#: pkg/text/input.go:48
|
|
||||||
msgid "no"
|
|
||||||
msgstr "non"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:110
|
|
||||||
msgid "no keys to import"
|
|
||||||
msgstr "aucune clé à importer"
|
|
||||||
|
|
||||||
#: pkg/query/errors.go:20
|
|
||||||
msgid "no query was executed"
|
|
||||||
msgstr "aucune requête n'a été exécutée"
|
|
||||||
|
|
||||||
#: local_install.go:66
|
|
||||||
msgid "no target directories specified"
|
|
||||||
msgstr "aucun répertoire cible spécifié"
|
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:242
|
|
||||||
msgid "nothing to install for %s"
|
|
||||||
msgstr "rien à installer pour %s"
|
|
||||||
|
|
||||||
#: pkg/settings/parser/parser.go:164
|
|
||||||
msgid "only one operation may be used at a time"
|
|
||||||
msgstr "une seule opération peut être réalisée à la fois"
|
|
||||||
|
|
||||||
#: pkg/cmd/graph/main.go:70
|
|
||||||
msgid "only one target is allowed"
|
|
||||||
msgstr "une seule cible est autorisée"
|
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:291
|
|
||||||
msgid "package"
|
|
||||||
msgid_plural "packages"
|
|
||||||
msgstr[0] "paquet"
|
|
||||||
msgstr[1] "paquets"
|
|
||||||
msgstr[2] "paquets"
|
|
||||||
|
|
||||||
#: print.go:187
|
|
||||||
msgid "package '%s' was not found"
|
|
||||||
msgstr "le paquet '%s' est introuvable"
|
|
||||||
|
|
||||||
#: pkg/download/errors.go:15
|
|
||||||
msgid "package not found in AUR"
|
|
||||||
msgstr "paquet introuvable dans l'AUR"
|
|
||||||
|
|
||||||
#: pkg/download/abs.go:23
|
|
||||||
msgid "package not found in repos"
|
|
||||||
msgstr "paquet introuvable dans les dépôts"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:100
|
|
||||||
msgid "problem importing keys"
|
|
||||||
msgstr "erreur lors de l'importation des clés"
|
|
||||||
|
|
||||||
#: clean.go:105
|
|
||||||
msgid "removing AUR packages from cache..."
|
|
||||||
msgstr "suppression des paquets de l'AUR du cache…"
|
|
||||||
|
|
||||||
#: clean.go:178 pkg/sync/workdir/clean.go:41
|
|
||||||
msgid "removing untracked AUR files from cache..."
|
|
||||||
msgstr ""
|
|
||||||
"suppression des fichiers non suivis dans les paquets de l'AUR en cache…"
|
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:38
|
|
||||||
msgid "the PKGDEST for %s is listed by makepkg but does not exist: %s"
|
|
||||||
msgstr "le PKGDEST pour %s est listé par makepkg mais n'existe pas : %s"
|
|
||||||
|
|
||||||
#: pkg/sync/sync.go:45
|
|
||||||
msgid "there is nothing to do"
|
|
||||||
msgstr "il n'y a rien à faire"
|
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:247
|
|
||||||
msgid "unable to CreateHandle: %s"
|
|
||||||
msgstr "impossible de CreateHandle : %s"
|
|
||||||
|
|
||||||
#: cmd.go:186
|
|
||||||
msgid "unhandled operation"
|
|
||||||
msgstr "opération non gérée"
|
|
||||||
|
|
||||||
#: cmd.go:450
|
|
||||||
msgid "unknown-version"
|
|
||||||
msgstr "version-inconnue"
|
|
||||||
|
|
||||||
#: pkg/text/input.go:47
|
|
||||||
msgid "yes"
|
|
||||||
msgstr "oui"
|
|
412
po/fr_FR.po
412
po/fr_FR.po
@ -1,42 +1,28 @@
|
|||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# J G, 2021
|
# J G, 2021
|
||||||
|
# Oliver Conzen, 2021
|
||||||
|
# Galiley, 2022
|
||||||
|
# Khoyo - <khoyobegenn@gmail.com>, 2022
|
||||||
# Mr Strik3, 2022
|
# Mr Strik3, 2022
|
||||||
# Mélanie Chauvel <aria@ariasuni.eu>, 2023
|
# Sylvain Bx, 2023
|
||||||
|
# Mélanie Chauvel <perso@hack-libre.org>, 2023
|
||||||
# Maxime Demolin, 2023
|
# Maxime Demolin, 2023
|
||||||
# Mathias Brugger, 2023
|
# Mathias Brugger, 2023
|
||||||
# Sylvain Bx, 2023
|
|
||||||
# Bertrand Junqua, 2024
|
|
||||||
# Barsanuphe, 2024
|
|
||||||
# Léane GRASSER, 2024
|
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Last-Translator: Léane GRASSER, 2024\n"
|
"Last-Translator: Mathias Brugger, 2023\n"
|
||||||
"Language-Team: French (France) (https://app.transifex.com/yay-1/teams/123732/fr_FR/)\n"
|
"Language-Team: French (France) (https://app.transifex.com/yay-1/teams/123732/"
|
||||||
|
"fr_FR/)\n"
|
||||||
|
"Language: fr_FR\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Language: fr_FR\n"
|
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % "
|
||||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
"1000000 == 0 ? 1 : 2;\n"
|
||||||
"X-Generator: xgotext\n"
|
"X-Generator: xgotext\n"
|
||||||
|
|
||||||
#: clean.go:83
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
"Build directory:"
|
|
||||||
msgstr ""
|
|
||||||
"\n"
|
|
||||||
"Répertoire de compilation :"
|
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:201 pkg/dep/dep_graph.go:740
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
"Enter a number (default=1): "
|
|
||||||
msgstr ""
|
|
||||||
"\n"
|
|
||||||
"Saisissez un nombre (valeur par défaut : 1) :"
|
|
||||||
|
|
||||||
#: pkg/menus/menu.go:32
|
#: pkg/menus/menu.go:32
|
||||||
msgid " (Build Files Exist)"
|
msgid " (Build Files Exist)"
|
||||||
msgstr "(Les fichiers de compilation existent)"
|
msgstr "(Les fichiers de compilation existent)"
|
||||||
@ -59,85 +45,85 @@ msgstr "%s [A]Tous [Ab]Annuler [I]nstallés [No]nInstallés ou (1 2 3, 1-3, ^4)"
|
|||||||
|
|
||||||
#: pkg/sync/build/installer.go:308
|
#: pkg/sync/build/installer.go:308
|
||||||
msgid "%s already made -- skipping build"
|
msgid "%s already made -- skipping build"
|
||||||
msgstr "%s déjà créé -- compilation ignorée"
|
msgstr "%s déjà créé -- compilation évitée"
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:57
|
#: pkg/menus/edit_menu.go:57
|
||||||
msgid "%s is not set"
|
msgid "%s is not set"
|
||||||
msgstr "%s n'est pas définie"
|
msgstr "%s n'est pas défini"
|
||||||
|
|
||||||
#: pkg/settings/exe/cmd_builder.go:257
|
#: pkg/settings/exe/cmd_builder.go:257
|
||||||
msgid "%s is present."
|
msgid "%s is present."
|
||||||
msgstr "%s existe."
|
msgstr "%s est présent."
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:460 pkg/sync/build/installer.go:305
|
#: pkg/dep/dep_graph.go:460 pkg/sync/build/installer.go:305
|
||||||
msgid "%s is up to date -- skipping"
|
msgid "%s is up to date -- skipping"
|
||||||
msgstr "%s est à jour -- ignoré"
|
msgstr "%s est à jour -- omission"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:291
|
#: pkg/upgrade/service.go:292
|
||||||
msgid "%s to upgrade/install."
|
msgid "%s to upgrade/install."
|
||||||
msgstr "%s à mettre à jour ou à installer."
|
msgstr "à mettre à jours/installer."
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:285
|
#: pkg/upgrade/service.go:286
|
||||||
msgid "%s will also be installed for this operation."
|
msgid "%s will also be installed for this operation."
|
||||||
msgstr "%s à installer pour effectuer cette opération."
|
msgstr "Va aussi être installé pour cette opération."
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:124
|
#: pkg/sync/srcinfo/pgp/keys.go:124
|
||||||
msgid "%s, required by: %s"
|
msgid "%s, required by: %s"
|
||||||
msgstr "%s, nécessaire pour : %s"
|
msgstr "%s, requis par : %s"
|
||||||
|
|
||||||
#: pkg/menus/diff_menu.go:49
|
#: pkg/menus/diff_menu.go:49
|
||||||
msgid "%s: No changes -- skipping"
|
msgid "%s: No changes -- skipping"
|
||||||
msgstr "%s : Aucun changement -- ignoré"
|
msgstr "%s : Aucun changement -- omission"
|
||||||
|
|
||||||
#: pkg/query/filter.go:22
|
#: pkg/query/filter.go:22
|
||||||
msgid "%s: can't use target with option --aur -- skipping"
|
msgid "%s: can't use target with option --aur -- skipping"
|
||||||
msgstr "%s : la cible est incompatible avec l'option --aur -- ignoré"
|
msgstr "%s : impossible d'utiliser la cible avec l'option --aur -- omission"
|
||||||
|
|
||||||
#: pkg/query/filter.go:17
|
#: pkg/query/filter.go:17
|
||||||
msgid "%s: can't use target with option --repo -- skipping"
|
msgid "%s: can't use target with option --repo -- skipping"
|
||||||
msgstr "%s : la cible est incompatible avec l'option --repo -- ignoré"
|
msgstr "%s : impossible d'utiliser la cible avec l'option --repo -- omission"
|
||||||
|
|
||||||
#: pkg/upgrade/sources.go:57
|
#: pkg/upgrade/sources.go:57
|
||||||
msgid "%s: ignoring package upgrade (%s => %s)"
|
msgid "%s: ignoring package upgrade (%s => %s)"
|
||||||
msgstr "%s : mise à jour du paquet ignorée (%s => %s)"
|
msgstr "%s : mise à jour du paquet ignorée (%s => %s)"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:46
|
#: pkg/query/aur_warnings.go:46
|
||||||
msgid "%s: local (%s) is newer than AUR (%s)"
|
msgid "%s: local (%s) is newer than AUR (%s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"%s : le paquet local (%s) est plus récent que le paquet disponible sur l'AUR"
|
"%s : le paquet local (%s) est plus récent que le paquet disponible sur AUR "
|
||||||
"(%s)"
|
"(%s)"
|
||||||
|
|
||||||
#: vote.go:51
|
#: vote.go:51
|
||||||
msgid ""
|
msgid ""
|
||||||
"%s: please set AUR_USERNAME and AUR_PASSWORD environment variables for "
|
"%s: please set AUR_USERNAME and AUR_PASSWORD environment variables for voting"
|
||||||
"voting"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"%s : définissez les variables d'environnement AUR_USERNAME et AUR_PASSWORD "
|
"%s : veuillez définir les variables d'environnement AUR_USERNAME et "
|
||||||
"avant de pouvoir voter"
|
"AUR_PASSWORD pour voter"
|
||||||
|
|
||||||
#: pkg/download/unified.go:192
|
#: pkg/download/unified.go:192
|
||||||
msgid "(%d/%d) Downloaded PKGBUILD from ABS: %s"
|
msgid "(%d/%d) Downloaded PKGBUILD from ABS: %s"
|
||||||
msgstr "(%d/%d) PKGBUILD téléchargé depuis l'ABS : %s"
|
msgstr "(%d/%d) Téléchargement du PKGBUILD depuis ABS : %s"
|
||||||
|
|
||||||
#: pkg/download/aur.go:92 pkg/download/unified.go:188
|
#: pkg/download/aur.go:92 pkg/download/unified.go:188
|
||||||
msgid "(%d/%d) Downloaded PKGBUILD: %s"
|
msgid "(%d/%d) Downloaded PKGBUILD: %s"
|
||||||
msgstr "(%d/%d) PKGBUILD téléchargé : %s"
|
msgstr "(%d/%d) PKGBUILD téléchargé : %s"
|
||||||
|
|
||||||
#: pkg/download/aur.go:82
|
#: pkg/download/aur.go:82
|
||||||
|
#, fuzzy
|
||||||
msgid "(%d/%d) Failed to download PKGBUILD: %s"
|
msgid "(%d/%d) Failed to download PKGBUILD: %s"
|
||||||
msgstr "(%d/%d) Échec du téléchargement du PKGBUILD : %s"
|
msgstr "(%d/%d) PKGBUILD téléchargé : %s"
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/service.go:109
|
#: pkg/sync/srcinfo/service.go:109
|
||||||
msgid "(%d/%d) Parsing SRCINFO: %s"
|
msgid "(%d/%d) Parsing SRCINFO: %s"
|
||||||
msgstr "(%d/%d) Analyse du SRCINFO : %s"
|
msgstr "(%d/%d) Lecture de SRCINFO : %s"
|
||||||
|
|
||||||
#: pkg/query/types.go:103 pkg/query/types.go:72
|
#: pkg/query/types.go:72 pkg/query/types.go:103
|
||||||
msgid "(Installed)"
|
msgid "(Installed)"
|
||||||
msgstr "(Installé)"
|
msgstr "(Installé)"
|
||||||
|
|
||||||
#: pkg/query/types.go:101 pkg/query/types.go:70
|
#: pkg/query/types.go:70 pkg/query/types.go:101
|
||||||
msgid "(Installed: %s)"
|
msgid "(Installed: %s)"
|
||||||
msgstr "(Installé : %s)"
|
msgstr "(Installé : %s)"
|
||||||
|
|
||||||
#: pkg/query/types.go:61
|
#: pkg/query/types.go:61
|
||||||
msgid "(Orphaned)"
|
msgid "(Orphaned)"
|
||||||
@ -145,47 +131,47 @@ msgstr "(Orphelin)"
|
|||||||
|
|
||||||
#: pkg/query/types.go:65
|
#: pkg/query/types.go:65
|
||||||
msgid "(Out-of-date: %s)"
|
msgid "(Out-of-date: %s)"
|
||||||
msgstr "(Obsolète : %s)"
|
msgstr "(Obsolète : %s)"
|
||||||
|
|
||||||
|
#: print.go:44
|
||||||
|
msgid "AUR URL"
|
||||||
|
msgstr "URL AUR"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:75
|
#: pkg/dep/dep_graph.go:75
|
||||||
msgid "AUR"
|
msgid "AUR"
|
||||||
msgstr "AUR"
|
msgstr "AUR"
|
||||||
|
|
||||||
#: print.go:44
|
|
||||||
msgid "AUR URL"
|
|
||||||
msgstr "URL sur l'AUR"
|
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:58
|
#: pkg/menus/edit_menu.go:58
|
||||||
msgid "Add %s or %s to your environment variables"
|
msgid "Add %s or %s to your environment variables"
|
||||||
msgstr "Ajoutez %s ou %s à vos variables d'environnement"
|
msgstr "Ajoutez %s ou %s à vos variables d'environnement"
|
||||||
|
|
||||||
#: main.go:60
|
#: main.go:60
|
||||||
msgid "Avoid running yay as root/sudo."
|
msgid "Avoid running yay as root/sudo."
|
||||||
msgstr "Évitez d'exécuter yay en tant que root ou via sudo."
|
msgstr "Évitez d'utiliser yay en tant que root ou via sudo."
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:63
|
#: pkg/dep/dep_graph.go:63
|
||||||
msgid "Check Dependency"
|
msgid "Check Dependency"
|
||||||
msgstr "Dépendance de vérification"
|
msgstr "Vérifier la dépendance"
|
||||||
|
|
||||||
#: print.go:41
|
#: print.go:41
|
||||||
msgid "Check Deps"
|
msgid "Check Deps"
|
||||||
msgstr "Dépendances vérif."
|
msgstr "Vérification des dépendances"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:89
|
#: pkg/upgrade/service.go:90
|
||||||
msgid "Checking development packages..."
|
msgid "Checking development packages..."
|
||||||
msgstr "Vérification des paquets de développement…"
|
msgstr "Vérification des paquets de développement..."
|
||||||
|
|
||||||
#: pkg/sync/workdir/clean.go:45
|
#: pkg/sync/workdir/clean.go:45
|
||||||
msgid "Cleaning (%d/%d): %s"
|
msgid "Cleaning (%d/%d): %s"
|
||||||
msgstr "Nettoyage (%d/%d) : %s"
|
msgstr "Nettoyage (%d/%d) : %s"
|
||||||
|
|
||||||
#: print.go:42
|
#: print.go:42
|
||||||
msgid "Conflicts With"
|
msgid "Conflicts With"
|
||||||
msgstr "Est en conflit avec"
|
msgstr "En conflit avec"
|
||||||
|
|
||||||
#: pkg/menus/clean_menu.go:62
|
#: pkg/menus/clean_menu.go:62
|
||||||
msgid "Deleting (%d/%d): %s"
|
msgid "Deleting (%d/%d): %s"
|
||||||
msgstr "Suppression (%d/%d) : %s"
|
msgstr "Suppression (%d/%d) : %s"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:61
|
#: pkg/dep/dep_graph.go:61
|
||||||
msgid "Dependency"
|
msgid "Dependency"
|
||||||
@ -201,39 +187,37 @@ msgstr "Description"
|
|||||||
|
|
||||||
#: pkg/menus/diff_menu.go:160
|
#: pkg/menus/diff_menu.go:160
|
||||||
msgid "Diffs to show?"
|
msgid "Diffs to show?"
|
||||||
msgstr "Diffs à afficher ?"
|
msgstr "Afficher les diffs ?"
|
||||||
|
|
||||||
#: pkg/settings/migrations.go:25
|
#: pkg/settings/migrations.go:25
|
||||||
msgid "Disable 'provides' setting by default"
|
msgid "Disable 'provides' setting by default"
|
||||||
msgstr "Désactiver par défaut le paramètre \"provides\""
|
msgstr "Désactiver le paramètre 'fourni' par défaut"
|
||||||
|
|
||||||
#: clean.go:78
|
#: clean.go:78
|
||||||
msgid "Do you want to remove ALL AUR packages from cache?"
|
msgid "Do you want to remove ALL AUR packages from cache?"
|
||||||
msgstr "Voulez-vous supprimer TOUS les paquets de l'AUR dans le cache ?"
|
msgstr "Voulez-vous supprimer TOUS les paquets AUR du cache ?"
|
||||||
|
|
||||||
#: clean.go:95
|
#: clean.go:95
|
||||||
msgid "Do you want to remove ALL untracked AUR files?"
|
msgid "Do you want to remove ALL untracked AUR files?"
|
||||||
msgstr ""
|
msgstr "Voulez-vous supprimer TOUS les fichiers AUR non suivis ?"
|
||||||
"Voulez-vous supprimer TOUS les fichiers non suivis des paquets de l'AUR ?"
|
|
||||||
|
|
||||||
#: clean.go:80
|
#: clean.go:80
|
||||||
msgid "Do you want to remove all other AUR packages from cache?"
|
msgid "Do you want to remove all other AUR packages from cache?"
|
||||||
msgstr ""
|
msgstr "Voulez-vous supprimer tous les autres paquets AUR du cache ?"
|
||||||
"Voulez-vous supprimer tous les autres paquets de l'AUR dans le cache ?"
|
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:61
|
#: pkg/menus/edit_menu.go:61
|
||||||
msgid "Edit PKGBUILD with?"
|
msgid "Edit PKGBUILD with?"
|
||||||
msgstr "Modifier le PKGBUILD avec ?"
|
msgstr "Édition du PKGBUILD avec ?"
|
||||||
|
|
||||||
#: pkg/query/errors.go:13
|
#: pkg/query/errors.go:13
|
||||||
msgid "Error during AUR search: %s\n"
|
msgid "Error during AUR search: %s\n"
|
||||||
msgstr "Erreur lors de la recherche dans l'AUR : %s\n"
|
msgstr "Erreur durant la recherche AUR : %s\n"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:295
|
#: pkg/upgrade/service.go:296
|
||||||
msgid "Excluding packages may cause partial upgrades and break systems"
|
msgid "Excluding packages may cause partial upgrades and break systems"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"L'exclusion de paquets peut mener à une mise à jour partielle de votre "
|
"Exclure des paquets peut causer une mise à jour partielle et casser le "
|
||||||
"système et pourrait le casser"
|
"système."
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:60
|
#: pkg/dep/dep_graph.go:60
|
||||||
msgid "Explicit"
|
msgid "Explicit"
|
||||||
@ -241,42 +225,43 @@ msgstr "Explicite"
|
|||||||
|
|
||||||
#: print.go:91
|
#: print.go:91
|
||||||
msgid "Explicitly installed packages: %s"
|
msgid "Explicitly installed packages: %s"
|
||||||
msgstr "Paquets installés explicitement : %s"
|
msgstr "Paquets installés explicitement : %s"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:437 pkg/dep/dep_graph.go:535
|
#: pkg/dep/dep_graph.go:437 pkg/dep/dep_graph.go:535
|
||||||
msgid "Failed to find AUR package for"
|
msgid "Failed to find AUR package for"
|
||||||
msgstr "Impossible de trouver un paquet sur l'AUR correspondant à"
|
msgstr "Impossible de trouver un paquet AUR correspondant pour"
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:120
|
#: pkg/sync/build/installer.go:120
|
||||||
msgid "Failed to install layer, rolling up to next layer."
|
msgid "Failed to install layer, rolling up to next layer."
|
||||||
msgstr "Échec de l'installation de la couche, passage à la couche suivante."
|
msgstr ""
|
||||||
|
"Impossible d'installer la couche nécessaire, direction la couche suivante."
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:16
|
#: pkg/sync/build/errors.go:16
|
||||||
msgid ""
|
msgid ""
|
||||||
"Failed to install the following packages. Manual intervention is required:"
|
"Failed to install the following packages. Manual intervention is required:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Échec de l'installation des paquets suivants. Une intervention manuelle est "
|
"Impossible d’installer les paquets suivants. Une intervention manuelle est "
|
||||||
"requise :"
|
"requise :"
|
||||||
|
|
||||||
#: print.go:45
|
#: print.go:45
|
||||||
msgid "First Submitted"
|
msgid "First Submitted"
|
||||||
msgstr "Envoyé le"
|
msgstr "Premier envoi"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:83
|
#: pkg/query/aur_warnings.go:79
|
||||||
msgid "Flagged Out Of Date AUR Packages:"
|
msgid "Flagged Out Of Date AUR Packages:"
|
||||||
msgstr "Paquets de l'AUR marqués comme obsolètes :"
|
msgstr "Paquets AUR marqués comme obsolètes :"
|
||||||
|
|
||||||
#: print.go:90
|
#: print.go:90
|
||||||
msgid "Foreign installed packages: %s"
|
msgid "Foreign installed packages: %s"
|
||||||
msgstr "Paquets étrangers installés : %s"
|
msgstr "Paquets étrangers installés : %s"
|
||||||
|
|
||||||
#: pkg/vcs/vcs.go:144
|
#: pkg/vcs/vcs.go:144
|
||||||
msgid "Found git repo: %s"
|
msgid "Found git repo: %s"
|
||||||
msgstr "Dépôt Git trouvé : %s"
|
msgstr "Dépôt git trouvé : %s"
|
||||||
|
|
||||||
#: vcs.go:72
|
#: vcs.go:72
|
||||||
msgid "GenDB finished. No packages were installed"
|
msgid "GenDB finished. No packages were installed"
|
||||||
msgstr "GenDB terminé. Aucun paquet n'a été installé"
|
msgstr "GenDB terminée. Aucun package installé"
|
||||||
|
|
||||||
#: print.go:36
|
#: print.go:36
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
@ -284,11 +269,11 @@ msgstr "Groupes"
|
|||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:88
|
#: pkg/sync/srcinfo/pgp/keys.go:88
|
||||||
msgid "Import?"
|
msgid "Import?"
|
||||||
msgstr "Importer ?"
|
msgstr "Import ?"
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:97
|
#: pkg/sync/srcinfo/pgp/keys.go:97
|
||||||
msgid "Importing keys with gpg..."
|
msgid "Importing keys with gpg..."
|
||||||
msgstr "Importation des clés avec gpg…"
|
msgstr "Import des clés avec gpg..."
|
||||||
|
|
||||||
#: print.go:46
|
#: print.go:46
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
@ -296,7 +281,7 @@ msgstr "Mots-clés"
|
|||||||
|
|
||||||
#: print.go:47
|
#: print.go:47
|
||||||
msgid "Last Modified"
|
msgid "Last Modified"
|
||||||
msgstr "Modifié le"
|
msgstr "Dernières modifications"
|
||||||
|
|
||||||
#: print.go:35
|
#: print.go:35
|
||||||
msgid "Licenses"
|
msgid "Licenses"
|
||||||
@ -312,43 +297,44 @@ msgstr "Mainteneur"
|
|||||||
|
|
||||||
#: pkg/dep/dep_graph.go:62
|
#: pkg/dep/dep_graph.go:62
|
||||||
msgid "Make Dependency"
|
msgid "Make Dependency"
|
||||||
msgstr "Dépendance de création"
|
msgstr "Dépendance de construction"
|
||||||
|
|
||||||
#: print.go:40
|
#: print.go:40
|
||||||
msgid "Make Deps"
|
msgid "Make Deps"
|
||||||
msgstr "Dépendances créat."
|
msgstr "Construction des dépendances"
|
||||||
|
|
||||||
|
#: pkg/query/aur_warnings.go:71
|
||||||
|
msgid "Missing AUR Debug Packages:"
|
||||||
|
msgstr "Paquets de débogage AUR manquants :"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:79
|
#: pkg/dep/dep_graph.go:79
|
||||||
msgid "Missing"
|
msgid "Missing"
|
||||||
msgstr "Manquant"
|
msgstr "Manquant"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:75
|
|
||||||
msgid "Missing AUR Debug Packages:"
|
|
||||||
msgstr "Paquets de débogage de l'AUR manquants :"
|
|
||||||
|
|
||||||
#: print.go:31
|
#: print.go:31
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nom"
|
msgstr "Nom"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:442 pkg/dep/dep_graph.go:548
|
#: pkg/dep/dep_graph.go:442 pkg/dep/dep_graph.go:548
|
||||||
msgid "No AUR package found for"
|
msgid "No AUR package found for"
|
||||||
msgstr "Aucun paquet trouvé sur l'AUR correspondant à"
|
msgstr "Pas de paquet AUR trouvé pour"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:182
|
#: pkg/dep/dep_graph.go:182
|
||||||
|
#, fuzzy
|
||||||
msgid "No package found for"
|
msgid "No package found for"
|
||||||
msgstr "Aucun paquet trouvé correspondant à"
|
msgstr "Pas de paquet AUR trouvé pour"
|
||||||
|
|
||||||
#: print.go:225
|
#: print.go:225
|
||||||
msgid "None"
|
msgid "None"
|
||||||
msgstr "--"
|
msgstr "Aucun"
|
||||||
|
|
||||||
#: print.go:39
|
#: print.go:39
|
||||||
msgid "Optional Deps"
|
msgid "Optional Deps"
|
||||||
msgstr "Dépendances opt."
|
msgstr "Dépendances optionnelles"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:79
|
#: pkg/query/aur_warnings.go:75
|
||||||
msgid "Orphan (unmaintained) AUR Packages:"
|
msgid "Orphan (unmaintained) AUR Packages:"
|
||||||
msgstr "Paquets de l'AUR orphelins (non maintenus) :"
|
msgstr "Paquets AUR orphelins (non maintenus) :"
|
||||||
|
|
||||||
#: print.go:53 print.go:55
|
#: print.go:53 print.go:55
|
||||||
msgid "Out-of-date"
|
msgid "Out-of-date"
|
||||||
@ -356,43 +342,43 @@ msgstr "Obsolète"
|
|||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:115
|
#: pkg/sync/srcinfo/pgp/keys.go:115
|
||||||
msgid "PGP keys need importing:"
|
msgid "PGP keys need importing:"
|
||||||
msgstr "Des clés PGP doivent être importées :"
|
msgstr "Clés PGP dont l'import est nécessaire :"
|
||||||
|
|
||||||
#: pkg/sync/workdir/preparer.go:252
|
#: pkg/sync/workdir/preparer.go:252
|
||||||
msgid "PKGBUILD up to date, skipping download: %s"
|
msgid "PKGBUILD up to date, skipping download: %s"
|
||||||
msgstr "PKGBUILD à jour, téléchargement ignoré : %s"
|
msgstr "PKGBUILD à jour, omission du téléchargement : %s"
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:130
|
#: pkg/menus/edit_menu.go:130
|
||||||
msgid "PKGBUILDs to edit?"
|
msgid "PKGBUILDs to edit?"
|
||||||
msgstr "PKGBUILDs à modifier ?"
|
msgstr "PKGBUILDs à modifier ?"
|
||||||
|
|
||||||
#: print.go:61
|
|
||||||
msgid "Package Base"
|
|
||||||
msgstr "Paquet base"
|
|
||||||
|
|
||||||
#: print.go:60
|
#: print.go:60
|
||||||
msgid "Package Base ID"
|
msgid "Package Base ID"
|
||||||
msgstr "ID du paquet base"
|
msgstr "Package Base ID"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:71
|
#: print.go:61
|
||||||
|
msgid "Package Base"
|
||||||
|
msgstr "Base des paquets"
|
||||||
|
|
||||||
|
#: pkg/query/aur_warnings.go:67
|
||||||
msgid "Packages not in AUR:"
|
msgid "Packages not in AUR:"
|
||||||
msgstr "Paquets absents de l'AUR :"
|
msgstr "Paquets absents de AUR :"
|
||||||
|
|
||||||
#: pkg/menus/clean_menu.go:54
|
#: pkg/menus/clean_menu.go:54
|
||||||
msgid "Packages to cleanBuild?"
|
msgid "Packages to cleanBuild?"
|
||||||
msgstr "Paquets à cleanBuild ?"
|
msgstr "Paquets à nettoyer avant compilation (cleanBuild) ?"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:202
|
#: pkg/dep/dep_graph.go:202
|
||||||
msgid "Packages to exclude"
|
msgid "Packages to exclude"
|
||||||
msgstr "Paquets à exclure"
|
msgstr "Paquets à exclure"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:294
|
#: pkg/upgrade/service.go:295
|
||||||
msgid "Packages to exclude: (eg: \"1 2 3\", \"1-3\", \"^4\" or repo name)"
|
msgid "Packages to exclude: (eg: \"1 2 3\", \"1-3\", \"^4\" or repo name)"
|
||||||
msgstr "Paquets à exclure : (ex. « 1 2 3 », « 1-3 », « ^4 » ou noms de dépôt)"
|
msgstr "Paquets à exclure : (ex. \"1 2 3\", \"1-3\", \"^4\" ou nom du dépôt)"
|
||||||
|
|
||||||
#: cmd.go:392
|
#: cmd.go:392
|
||||||
msgid "Packages to install (eg: 1 2 3, 1-3 or ^4)"
|
msgid "Packages to install (eg: 1 2 3, 1-3 or ^4)"
|
||||||
msgstr "Paquets à installer (ex. 1 2 3, 1-3 ou ^4)"
|
msgstr "Paquets à installer (ex. 1 2 3, 1-3 or ^4)"
|
||||||
|
|
||||||
#: print.go:49
|
#: print.go:49
|
||||||
msgid "Popularity"
|
msgid "Popularity"
|
||||||
@ -400,7 +386,7 @@ msgstr "Popularité"
|
|||||||
|
|
||||||
#: pkg/menus/diff_menu.go:172 pkg/menus/edit_menu.go:143
|
#: pkg/menus/diff_menu.go:172 pkg/menus/edit_menu.go:143
|
||||||
msgid "Proceed with install?"
|
msgid "Proceed with install?"
|
||||||
msgstr "Procéder à l'installation ?"
|
msgstr "Poursuivre l'installation ?"
|
||||||
|
|
||||||
#: print.go:37
|
#: print.go:37
|
||||||
msgid "Provides"
|
msgid "Provides"
|
||||||
@ -408,43 +394,44 @@ msgstr "Fournit"
|
|||||||
|
|
||||||
#: pkg/sync/workdir/preparer.go:125
|
#: pkg/sync/workdir/preparer.go:125
|
||||||
msgid "Remove make dependencies after install?"
|
msgid "Remove make dependencies after install?"
|
||||||
msgstr "Supprimer les dépendances de création après l'installation ?"
|
msgstr ""
|
||||||
|
"Supprimer les dépendances nécessaires à la compilation après l'installation ?"
|
||||||
|
|
||||||
#: print.go:43
|
#: print.go:43
|
||||||
msgid "Replaces"
|
msgid "Replaces"
|
||||||
msgstr "Remplace"
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:191 print.go:30
|
|
||||||
msgid "Repository"
|
|
||||||
msgstr "Dépôt"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:730
|
#: pkg/dep/dep_graph.go:730
|
||||||
msgid "Repository AUR"
|
msgid "Repository AUR"
|
||||||
msgstr "Dépôt AUR"
|
msgstr "Dépôt AUR"
|
||||||
|
|
||||||
|
#: print.go:30 pkg/db/ialpm/alpm.go:191
|
||||||
|
msgid "Repository"
|
||||||
|
msgstr "Dépôt"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:78
|
#: pkg/dep/dep_graph.go:78
|
||||||
msgid "SRCINFO"
|
msgid "SRCINFO"
|
||||||
msgstr "SRCINFO"
|
msgstr "SRCINFO"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:71
|
#: pkg/upgrade/service.go:72
|
||||||
msgid "Searching AUR for updates..."
|
msgid "Searching AUR for updates..."
|
||||||
msgstr "Recherche des mises à jour sur l'AUR…"
|
msgstr "Recherche des mises à jour AUR..."
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:159
|
#: pkg/upgrade/service.go:160
|
||||||
msgid "Searching databases for updates..."
|
msgid "Searching databases for updates..."
|
||||||
msgstr "Recherche des mises à jour dans les bases de données…"
|
msgstr "Recherche de mises à jour dans les bases de données..."
|
||||||
|
|
||||||
#: pkg/query/query_builder.go:214
|
#: pkg/query/query_builder.go:214
|
||||||
msgid "Showing repo packages only"
|
msgid "Showing repo packages only"
|
||||||
msgstr "Affichage uniquement des paquets provenant des dépôts"
|
msgstr "Affichage des dépôts des paquets uniquement"
|
||||||
|
|
||||||
#: print.go:95
|
#: print.go:95
|
||||||
msgid "Size of pacman cache %s: %s"
|
msgid "Size of pacman cache %s: %s"
|
||||||
msgstr "Taille du cache de pacman %s : %s"
|
msgstr "Taille du cache de pacman %s: %s"
|
||||||
|
|
||||||
#: print.go:98
|
#: print.go:98
|
||||||
msgid "Size of yay cache %s: %s"
|
msgid "Size of yay cache %s: %s"
|
||||||
msgstr "Taille du cache de yay %s : %s"
|
msgstr "Taille du cache de yay %s:%s"
|
||||||
|
|
||||||
#: print.go:62
|
#: print.go:62
|
||||||
msgid "Snapshot URL"
|
msgid "Snapshot URL"
|
||||||
@ -452,37 +439,35 @@ msgstr "URL de l'instantané"
|
|||||||
|
|
||||||
#: pkg/dep/dep_graph.go:76
|
#: pkg/dep/dep_graph.go:76
|
||||||
msgid "Sync"
|
msgid "Sync"
|
||||||
msgstr "Sync"
|
msgstr "Synchroniser"
|
||||||
|
|
||||||
#: print.go:100
|
#: print.go:100
|
||||||
msgid "Ten biggest packages:"
|
msgid "Ten biggest packages:"
|
||||||
msgstr "Les dix paquets les plus lourds :"
|
msgstr "Dix plus gros paquets :"
|
||||||
|
|
||||||
#: pkg/sync/sync.go:124
|
#: pkg/sync/sync.go:124
|
||||||
msgid "The following packages are not compatible with your architecture:"
|
msgid "The following packages are not compatible with your architecture:"
|
||||||
msgstr "Les paquets suivants sont incompatibles avec votre architecture :"
|
msgstr "Les paquets suivants ne sont pas compatibles avec votre architecture :"
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:179 pkg/dep/dep_graph.go:726
|
#: pkg/db/ialpm/alpm.go:179 pkg/dep/dep_graph.go:726
|
||||||
msgid "There are %[1]d providers available for %[2]s:"
|
msgid "There are %d providers available for %s:"
|
||||||
msgstr "%[1]d paquets fournissant %[2]s sont disponibles :"
|
msgstr "Il y a %d paquets fournissant %s disponibles :"
|
||||||
|
|
||||||
#: pkg/settings/exe/cmd_builder.go:258
|
#: pkg/settings/exe/cmd_builder.go:258
|
||||||
msgid "There may be another Pacman instance running. Waiting..."
|
msgid "There may be another Pacman instance running. Waiting..."
|
||||||
msgstr ""
|
msgstr "Il y a probablement une autre instance Pacman en cours. Attente..."
|
||||||
"Il semblerait qu'une autre instance de Pacman soit en cours d'exécution. En "
|
|
||||||
"attente…"
|
|
||||||
|
|
||||||
#: print.go:92
|
#: print.go:92
|
||||||
msgid "Total Size occupied by packages: %s"
|
msgid "Total Size occupied by packages: %s"
|
||||||
msgstr "Taille totale occupée par les paquets : %s"
|
msgstr "Taille totale occupée par les paquets : %s"
|
||||||
|
|
||||||
#: print.go:89
|
#: print.go:89
|
||||||
msgid "Total installed packages: %s"
|
msgid "Total installed packages: %s"
|
||||||
msgstr "Nombre de paquets installés : %s"
|
msgstr "Nombre total de paquets installés :%s"
|
||||||
|
|
||||||
#: pkg/sync/sync.go:132
|
#: pkg/sync/sync.go:132
|
||||||
msgid "Try to build them anyway?"
|
msgid "Try to build them anyway?"
|
||||||
msgstr "Essayer quand même de les compiler ?"
|
msgstr "Essayer de les compiler quand même ?"
|
||||||
|
|
||||||
#: print.go:34
|
#: print.go:34
|
||||||
msgid "URL"
|
msgid "URL"
|
||||||
@ -490,19 +475,19 @@ msgstr "URL"
|
|||||||
|
|
||||||
#: clean.go:194 pkg/menus/clean_menu.go:65 pkg/menus/clean_menu.go:71
|
#: clean.go:194 pkg/menus/clean_menu.go:65 pkg/menus/clean_menu.go:71
|
||||||
msgid "Unable to clean:"
|
msgid "Unable to clean:"
|
||||||
msgstr "Impossible de nettoyer :"
|
msgstr "Impossible de nettoyer :"
|
||||||
|
|
||||||
#: get.go:42 get.go:74
|
#: get.go:42 get.go:74
|
||||||
msgid "Unable to find the following packages:"
|
msgid "Unable to find the following packages:"
|
||||||
msgstr "Impossible de trouver les paquets suivants :"
|
msgstr "Impossible de trouver les paquets suivants :"
|
||||||
|
|
||||||
#: vote.go:20
|
#: vote.go:20
|
||||||
msgid "Unable to handle package vote for: %s. err: %s"
|
msgid "Unable to handle package vote for: %s. err: %s"
|
||||||
msgstr "Impossible de gérer le vote pour : %s. Erreur : %s"
|
msgstr "Impossible de traiter le vote pour le paquet :%s. Erreur :%s"
|
||||||
|
|
||||||
#: clean.go:170
|
#: clean.go:170
|
||||||
msgid "Unable to remove %s: %s"
|
msgid "Unable to remove %s: %s"
|
||||||
msgstr "Impossible de supprimer %s : %s"
|
msgstr "Impossible de supprimer %s: %s "
|
||||||
|
|
||||||
#: print.go:32
|
#: print.go:32
|
||||||
msgid "Version"
|
msgid "Version"
|
||||||
@ -520,26 +505,42 @@ msgstr "Yay version v%s"
|
|||||||
msgid "[N]one"
|
msgid "[N]one"
|
||||||
msgstr "[N]Aucun"
|
msgstr "[N]Aucun"
|
||||||
|
|
||||||
|
#: clean.go:83
|
||||||
|
msgid ""
|
||||||
|
"\n"
|
||||||
|
"Build directory:"
|
||||||
|
msgstr ""
|
||||||
|
"\n"
|
||||||
|
"Répertoire de compilation :"
|
||||||
|
|
||||||
|
#: pkg/db/ialpm/alpm.go:201 pkg/dep/dep_graph.go:740
|
||||||
|
msgid ""
|
||||||
|
"\n"
|
||||||
|
"Enter a number (default=1): "
|
||||||
|
msgstr ""
|
||||||
|
"\n"
|
||||||
|
"Entrer un numéro (1 par défaut) : "
|
||||||
|
|
||||||
#: pkg/settings/errors.go:29
|
#: pkg/settings/errors.go:29
|
||||||
msgid "aborting due to user"
|
msgid "aborting due to user"
|
||||||
msgstr "abandon dû à l'utilisateur"
|
msgstr "abandon dû à l'utilisateur"
|
||||||
|
|
||||||
#: pkg/settings/parser/parser.go:608
|
#: pkg/settings/parser/parser.go:608
|
||||||
msgid "argument '-' specified without input on stdin"
|
msgid "argument '-' specified without input on stdin"
|
||||||
msgstr "argument '-' spécifié et aucune entrée dans stdin"
|
msgstr ""
|
||||||
|
" argument '-' spécifié sans fournir de donnée via l'entrée standard stdin"
|
||||||
|
|
||||||
#: local_install.go:26
|
#: local_install.go:26
|
||||||
msgid "cannot find PKGBUILD and .SRCINFO in directory"
|
msgid "cannot find PKGBUILD and .SRCINFO in directory"
|
||||||
msgstr ""
|
msgstr "impossible de trouver le PKGBUILD and .SRCINFO dans le répertoire"
|
||||||
"impossible de trouver les fichiers PKGBUILD et .SRCINFO dans le répertoire"
|
|
||||||
|
|
||||||
#: pkg/sync/build/pkg_archive.go:148
|
#: pkg/sync/build/pkg_archive.go:148
|
||||||
msgid "cannot find package name: %v"
|
msgid "cannot find package name: %v"
|
||||||
msgstr "impossible de trouver le nom de paquet : %v"
|
msgstr "impossible de trouver le paquet : %v"
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:30
|
#: pkg/sync/build/errors.go:30
|
||||||
msgid "could not find PKGDEST for: %s"
|
msgid "could not find PKGDEST for: %s"
|
||||||
msgstr "impossible de trouver le PKGDEST pour : %s"
|
msgstr "impossible de trouver PKGDEST pour : %s"
|
||||||
|
|
||||||
#: errors.go:9
|
#: errors.go:9
|
||||||
msgid "could not find all required packages"
|
msgid "could not find all required packages"
|
||||||
@ -547,62 +548,61 @@ msgstr "impossible de trouver tous les paquets requis"
|
|||||||
|
|
||||||
#: pkg/sync/build/errors.go:61
|
#: pkg/sync/build/errors.go:61
|
||||||
msgid "could not find any package archives listed in %s"
|
msgid "could not find any package archives listed in %s"
|
||||||
msgstr "aucune archive de paquet trouvée parmi celles listées dans %s"
|
msgstr "impossible de trouver d’archive pour les paquets listés dans %s"
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:50 pkg/upgrade/service.go:286
|
#: pkg/sync/build/errors.go:50 pkg/upgrade/service.go:287
|
||||||
msgid "dependency"
|
msgid "dependency"
|
||||||
msgstr "dépendance"
|
msgstr "dépendance"
|
||||||
|
|
||||||
#: pkg/vcs/vcs.go:100 pkg/vcs/vcs.go:96
|
#: pkg/vcs/vcs.go:96 pkg/vcs/vcs.go:100
|
||||||
msgid "devel check for package failed: '%s' encountered an error"
|
msgid "devel check for package failed: '%s' encountered an error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"échec de la vérification du paquet de développement : '%s' a rencontré une "
|
"échec du contrôle de développement pour le paquet : %s a rencontré une erreur"
|
||||||
"erreur"
|
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:110
|
#: pkg/menus/edit_menu.go:110
|
||||||
msgid "editor did not exit successfully, aborting: %s"
|
msgid "editor did not exit successfully, aborting: %s"
|
||||||
msgstr "l'éditeur ne s'est pas terminé avec succès, abandon : %s"
|
msgstr "l'éditeur de texte n'a pas été quitté correctement, annulation : %s"
|
||||||
|
|
||||||
#: pkg/sync/workdir/aur_source.go:24
|
#: pkg/sync/workdir/aur_source.go:24
|
||||||
msgid "error downloading sources: %s"
|
msgid "error downloading sources: %s"
|
||||||
msgstr "erreur lors du téléchargement des sources : %s"
|
msgstr "erreur lors du téléchargement des sources : %s"
|
||||||
|
|
||||||
#: pkg/download/errors.go:25
|
#: pkg/download/errors.go:25
|
||||||
msgid "error fetching %s: %s"
|
msgid "error fetching %s: %s"
|
||||||
msgstr "erreur lors de la récupération de %s : %s"
|
msgstr "erreur lors de la récupération %s : %s"
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:9
|
#: pkg/sync/build/errors.go:9
|
||||||
msgid "error installing repo packages"
|
msgid "error installing repo packages"
|
||||||
msgstr "erreur lors de l'installation des paquets provenant des dépôts"
|
msgstr "erreur à l'installation des dépôts des paquets"
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:266 pkg/sync/build/installer.go:270
|
#: pkg/sync/build/installer.go:266 pkg/sync/build/installer.go:270
|
||||||
msgid "error installing:"
|
msgid "error installing:"
|
||||||
msgstr "erreur lors de l'installation de :"
|
msgstr "erreur à l'installation:"
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:233 pkg/sync/build/installer.go:237
|
#: pkg/sync/build/installer.go:233 pkg/sync/build/installer.go:237
|
||||||
msgid "error making: %s"
|
msgid "error making: %s"
|
||||||
msgstr "erreur lors de la compilation de : %s"
|
msgstr "erreur lors de la construction : %s"
|
||||||
|
|
||||||
#: pkg/sync/workdir/merge.go:24
|
#: pkg/sync/workdir/merge.go:24
|
||||||
msgid "error merging %s: %s"
|
msgid "error merging %s: %s"
|
||||||
msgstr "erreur lors de la fusion (%s) : %s"
|
msgstr "erreur lors de la fusion %s : %s"
|
||||||
|
|
||||||
#: pkg/download/unified.go:59
|
#: pkg/download/unified.go:59
|
||||||
msgid "error reading %s"
|
msgid "error reading %s"
|
||||||
msgstr "erreur lors de la lecture de %s"
|
msgstr "erreur lors de la lecture : %s"
|
||||||
|
|
||||||
#: sync.go:36
|
#: sync.go:36
|
||||||
msgid "error refreshing databases"
|
msgid "error refreshing databases"
|
||||||
msgstr "erreur lors de l'actualisation des bases de données"
|
msgstr "erreur lors de la mise à jour des bases de données"
|
||||||
|
|
||||||
#: pkg/sync/workdir/clean.go:51 pkg/sync/workdir/merge.go:17
|
#: pkg/sync/workdir/clean.go:51 pkg/sync/workdir/merge.go:17
|
||||||
msgid "error resetting %s: %s"
|
msgid "error resetting %s: %s"
|
||||||
msgstr "erreur lors de la réinitialisation de %s : %s"
|
msgstr "erreur lors de la réinitialisation %s : %s"
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:53
|
#: pkg/sync/build/errors.go:53
|
||||||
msgid "error updating package install reason to %s"
|
msgid "error updating package install reason to %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"erreur lors de la modification du motif d'installation du paquet en « %s »"
|
"erreur lors de la mise à jour de la raison d'installation du paquet vers %s"
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:48
|
#: pkg/sync/build/errors.go:48
|
||||||
msgid "explicit"
|
msgid "explicit"
|
||||||
@ -610,36 +610,37 @@ msgstr "explicite"
|
|||||||
|
|
||||||
#: pkg/settings/errors.go:23
|
#: pkg/settings/errors.go:23
|
||||||
msgid "failed to create directory '%s': %s"
|
msgid "failed to create directory '%s': %s"
|
||||||
msgstr "échec de la création du répertoire '%s' : %s"
|
msgstr "impossible de créer le répertoire '%s' : %s"
|
||||||
|
|
||||||
#: pkg/settings/config.go:281
|
#: pkg/settings/config.go:281
|
||||||
msgid "failed to open config file '%s': %s"
|
msgid "failed to open config file '%s': %s"
|
||||||
msgstr "échec de l'ouverture du fichier de configuration '%s' : %s"
|
msgstr "échec lors de l'ouverture du fichier de configuration '%s' : %s"
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/service.go:114
|
#: pkg/sync/srcinfo/service.go:114
|
||||||
msgid "failed to parse %s -- skipping: %s"
|
msgid "failed to parse %s -- skipping: %s"
|
||||||
msgstr "échec de l'analyse de %s -- ignoré : %s"
|
msgstr "échec lors de la lecture %s -- omission : %s"
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/service.go:118
|
#: pkg/sync/srcinfo/service.go:118
|
||||||
msgid "failed to parse %s: %s"
|
msgid "failed to parse %s: %s"
|
||||||
msgstr "échec de l'analyse de %s : %s"
|
msgstr "échec lors de la lecture %s : %s"
|
||||||
|
|
||||||
#: local_install.go:77
|
#: local_install.go:77
|
||||||
msgid "failed to parse .SRCINFO"
|
msgid "failed to parse .SRCINFO"
|
||||||
msgstr "échec de l'analyse du .SRCINFO"
|
msgstr "impossible d'analyser le .SRCINFO"
|
||||||
|
|
||||||
#: pkg/settings/config.go:291
|
#: pkg/settings/config.go:291
|
||||||
msgid "failed to read config file '%s': %s"
|
msgid "failed to read config file '%s': %s"
|
||||||
msgstr "échec de la lecture du fichier de configuration '%s' : %s"
|
msgstr "échec lors de la lecture du fichier de configuration '%s' : %s"
|
||||||
|
|
||||||
#: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73
|
#: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73
|
||||||
msgid "failed to retrieve aur Cache"
|
msgid "failed to retrieve aur Cache"
|
||||||
msgstr "échec de la récupération du cache AUR"
|
msgstr "impossible de récupérer le cache AUR"
|
||||||
|
|
||||||
#: pkg/upgrade/sources.go:27
|
#: pkg/upgrade/sources.go:27
|
||||||
msgid "ignoring package devel upgrade (no AUR info found):"
|
msgid "ignoring package devel upgrade (no AUR info found):"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"mise à jour du paquet de développement ignorée (infos AUR introuvables) :"
|
"Yay va ignorer les mise à jours de paquet de développement (Pas d'info AUR "
|
||||||
|
"trouvée):"
|
||||||
|
|
||||||
#: pkg/text/errors.go:8
|
#: pkg/text/errors.go:8
|
||||||
msgid "input too long"
|
msgid "input too long"
|
||||||
@ -647,29 +648,25 @@ msgstr "entrée trop longue"
|
|||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:222 pkg/dep/dep_graph.go:761
|
#: pkg/db/ialpm/alpm.go:222 pkg/dep/dep_graph.go:761
|
||||||
msgid "invalid number: %s"
|
msgid "invalid number: %s"
|
||||||
msgstr "nombre invalide : %s"
|
msgstr "nombre invalide : %s"
|
||||||
|
|
||||||
#: pkg/settings/parser/parser.go:174
|
#: pkg/settings/parser/parser.go:174
|
||||||
msgid "invalid option '%s'"
|
msgid "invalid option '%s'"
|
||||||
msgstr "option '%s' invalide"
|
msgstr "option invalide '%s'"
|
||||||
|
|
||||||
#: cmd.go:197
|
#: cmd.go:197
|
||||||
msgid "invalid option: '--deps' and '--explicit' may not be used together"
|
msgid "invalid option: '--deps' and '--explicit' may not be used together"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"option invalide : '--deps' et '--explicit' ne peuvent pas être utilisés "
|
"paramètres incorrects : '--deps' et '--explicit' ne devaient pas être "
|
||||||
"ensemble"
|
"utilisés ensemble"
|
||||||
|
|
||||||
#: pkg/download/abs.go:22
|
#: pkg/download/abs.go:22
|
||||||
msgid "invalid repository"
|
msgid "invalid repository"
|
||||||
msgstr "dépôt invalide"
|
msgstr "référentiel invalide"
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:227 pkg/dep/dep_graph.go:767
|
#: pkg/db/ialpm/alpm.go:227 pkg/dep/dep_graph.go:767
|
||||||
msgid "invalid value: %d is not between %d and %d"
|
msgid "invalid value: %d is not between %d and %d"
|
||||||
msgstr "valeur invalide : %d n'est pas entre %d et %d"
|
msgstr "valeur invalide : %d n'est pas entre %d et %d"
|
||||||
|
|
||||||
#: pkg/text/input.go:48
|
|
||||||
msgid "no"
|
|
||||||
msgstr "non"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:110
|
#: pkg/sync/srcinfo/pgp/keys.go:110
|
||||||
msgid "no keys to import"
|
msgid "no keys to import"
|
||||||
@ -681,7 +678,11 @@ msgstr "aucune requête n'a été exécutée"
|
|||||||
|
|
||||||
#: local_install.go:66
|
#: local_install.go:66
|
||||||
msgid "no target directories specified"
|
msgid "no target directories specified"
|
||||||
msgstr "aucun répertoire cible spécifié"
|
msgstr "pas de répertoire cible spécifié"
|
||||||
|
|
||||||
|
#: pkg/text/input.go:48
|
||||||
|
msgid "no"
|
||||||
|
msgstr "non"
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:242
|
#: pkg/sync/build/installer.go:242
|
||||||
msgid "nothing to install for %s"
|
msgid "nothing to install for %s"
|
||||||
@ -693,51 +694,50 @@ msgstr "une seule opération peut être réalisée à la fois"
|
|||||||
|
|
||||||
#: pkg/cmd/graph/main.go:70
|
#: pkg/cmd/graph/main.go:70
|
||||||
msgid "only one target is allowed"
|
msgid "only one target is allowed"
|
||||||
msgstr "une seule cible est autorisée"
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:291
|
#: print.go:187
|
||||||
|
msgid "package '%s' was not found"
|
||||||
|
msgstr "paquet '%s' n'a pas été trouvé"
|
||||||
|
|
||||||
|
#: pkg/download/errors.go:15
|
||||||
|
msgid "package not found in AUR"
|
||||||
|
msgstr "paquet non trouvé dans AUR"
|
||||||
|
|
||||||
|
#: pkg/download/abs.go:23
|
||||||
|
msgid "package not found in repos"
|
||||||
|
msgstr "paquet non trouvé dans les référentiels"
|
||||||
|
|
||||||
|
#: pkg/upgrade/service.go:292
|
||||||
msgid "package"
|
msgid "package"
|
||||||
msgid_plural "packages"
|
msgid_plural "packages"
|
||||||
msgstr[0] "paquet"
|
msgstr[0] "paquet"
|
||||||
msgstr[1] "paquets"
|
msgstr[1] "paquets"
|
||||||
msgstr[2] "paquets"
|
msgstr[2] "paquets"
|
||||||
|
|
||||||
#: print.go:187
|
|
||||||
msgid "package '%s' was not found"
|
|
||||||
msgstr "le paquet '%s' est introuvable"
|
|
||||||
|
|
||||||
#: pkg/download/errors.go:15
|
|
||||||
msgid "package not found in AUR"
|
|
||||||
msgstr "paquet introuvable dans l'AUR"
|
|
||||||
|
|
||||||
#: pkg/download/abs.go:23
|
|
||||||
msgid "package not found in repos"
|
|
||||||
msgstr "paquet introuvable dans les dépôts"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:100
|
#: pkg/sync/srcinfo/pgp/keys.go:100
|
||||||
msgid "problem importing keys"
|
msgid "problem importing keys"
|
||||||
msgstr "erreur lors de l'importation des clés"
|
msgstr "erreur lors de l'import des clés"
|
||||||
|
|
||||||
#: clean.go:105
|
#: clean.go:105
|
||||||
msgid "removing AUR packages from cache..."
|
msgid "removing AUR packages from cache..."
|
||||||
msgstr "suppression des paquets de l'AUR du cache…"
|
msgstr "suppression des paquets AUR du cache..."
|
||||||
|
|
||||||
#: clean.go:178 pkg/sync/workdir/clean.go:41
|
#: clean.go:178 pkg/sync/workdir/clean.go:41
|
||||||
msgid "removing untracked AUR files from cache..."
|
msgid "removing untracked AUR files from cache..."
|
||||||
msgstr ""
|
msgstr "suppression des fichiers AUR non suivis du cache..."
|
||||||
"suppression des fichiers non suivis dans les paquets de l'AUR en cache…"
|
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:38
|
#: pkg/sync/build/errors.go:38
|
||||||
msgid "the PKGDEST for %s is listed by makepkg but does not exist: %s"
|
msgid "the PKGDEST for %s is listed by makepkg but does not exist: %s"
|
||||||
msgstr "le PKGDEST pour %s est listé par makepkg mais n'existe pas : %s"
|
msgstr "le fchier PKGDEST pour %s est listé par makepkg mais n'existe pas : %s"
|
||||||
|
|
||||||
#: pkg/sync/sync.go:45
|
#: pkg/sync/sync.go:45
|
||||||
msgid "there is nothing to do"
|
msgid "there is nothing to do"
|
||||||
msgstr "il n'y a rien à faire"
|
msgstr "il n’y a rien à faire"
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:247
|
#: pkg/db/ialpm/alpm.go:247
|
||||||
msgid "unable to CreateHandle: %s"
|
msgid "unable to CreateHandle: %s"
|
||||||
msgstr "impossible de CreateHandle : %s"
|
msgstr "impossible de créer le répertoire : %s"
|
||||||
|
|
||||||
#: cmd.go:186
|
#: cmd.go:186
|
||||||
msgid "unhandled operation"
|
msgid "unhandled operation"
|
||||||
@ -745,7 +745,7 @@ msgstr "opération non gérée"
|
|||||||
|
|
||||||
#: cmd.go:450
|
#: cmd.go:450
|
||||||
msgid "unknown-version"
|
msgid "unknown-version"
|
||||||
msgstr "version-inconnue"
|
msgstr "version inconnue"
|
||||||
|
|
||||||
#: pkg/text/input.go:47
|
#: pkg/text/input.go:47
|
||||||
msgid "yes"
|
msgid "yes"
|
||||||
|
33
po/he.po
33
po/he.po
@ -1,17 +1,17 @@
|
|||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# lavi landa, 2024
|
# Yaron Shahrabani <sh.yaron@gmail.com>, 2023
|
||||||
# Yaron Shahrabani <sh.yaron@gmail.com>, 2024
|
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>, 2024\n"
|
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>, 2023\n"
|
||||||
"Language-Team: Hebrew (https://app.transifex.com/yay-1/teams/123732/he/)\n"
|
"Language-Team: Hebrew (https://app.transifex.com/yay-1/teams/123732/he/)\n"
|
||||||
|
"Language: he\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Language: he\n"
|
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % "
|
||||||
"Plural-Forms: nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;\n"
|
"1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n"
|
||||||
"X-Generator: xgotext\n"
|
"X-Generator: xgotext\n"
|
||||||
|
|
||||||
#: pkg/menus/menu.go:32
|
#: pkg/menus/menu.go:32
|
||||||
@ -32,8 +32,7 @@ msgstr "אין מטרות לביצוע"
|
|||||||
|
|
||||||
#: pkg/menus/menu.go:49
|
#: pkg/menus/menu.go:49
|
||||||
msgid "%s [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)"
|
msgid "%s [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)"
|
||||||
msgstr ""
|
msgstr "%s [A]-הכול [Ab]-ביטול [I]-מותקנות [No]-לא מותקנות או (1 2 3, 1-3, ^4)"
|
||||||
"%s [A]-הכול [Ab]-ביטול [I]-מותקנות [No]-לא מותקנות או (1 2 3, 1-3, ^4)"
|
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:308
|
#: pkg/sync/build/installer.go:308
|
||||||
msgid "%s already made -- skipping build"
|
msgid "%s already made -- skipping build"
|
||||||
@ -85,8 +84,7 @@ msgstr "%s: מקומית (%s) חדשה יותר מ־AUR (%s)"
|
|||||||
|
|
||||||
#: vote.go:51
|
#: vote.go:51
|
||||||
msgid ""
|
msgid ""
|
||||||
"%s: please set AUR_USERNAME and AUR_PASSWORD environment variables for "
|
"%s: please set AUR_USERNAME and AUR_PASSWORD environment variables for voting"
|
||||||
"voting"
|
|
||||||
msgstr "%s: נא להגדיר את משתני הסביבה AUR_USERNAME ו־AUR_PASSWORD כדי להצביע"
|
msgstr "%s: נא להגדיר את משתני הסביבה AUR_USERNAME ו־AUR_PASSWORD כדי להצביע"
|
||||||
|
|
||||||
#: pkg/download/unified.go:192
|
#: pkg/download/unified.go:192
|
||||||
@ -98,8 +96,9 @@ msgid "(%d/%d) Downloaded PKGBUILD: %s"
|
|||||||
msgstr "(%d/%d) PKGBUILD שירד: %s"
|
msgstr "(%d/%d) PKGBUILD שירד: %s"
|
||||||
|
|
||||||
#: pkg/download/aur.go:82
|
#: pkg/download/aur.go:82
|
||||||
|
#, fuzzy
|
||||||
msgid "(%d/%d) Failed to download PKGBUILD: %s"
|
msgid "(%d/%d) Failed to download PKGBUILD: %s"
|
||||||
msgstr "(%d/%d) הורדת PKGBUILD נכשלה: %s"
|
msgstr "(%d/%d) PKGBUILD שירד: %s"
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/service.go:109
|
#: pkg/sync/srcinfo/service.go:109
|
||||||
msgid "(%d/%d) Parsing SRCINFO: %s"
|
msgid "(%d/%d) Parsing SRCINFO: %s"
|
||||||
@ -244,7 +243,7 @@ msgstr "נמצא מאגר git: %s"
|
|||||||
|
|
||||||
#: vcs.go:72
|
#: vcs.go:72
|
||||||
msgid "GenDB finished. No packages were installed"
|
msgid "GenDB finished. No packages were installed"
|
||||||
msgstr "GenDB הסתיים. לא הותקנו חבילות"
|
msgstr "יצירת מסד הנתונים (GenDB) הסתיימה. לא הותקנו חבילות"
|
||||||
|
|
||||||
#: print.go:36
|
#: print.go:36
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
@ -303,8 +302,9 @@ msgid "No AUR package found for"
|
|||||||
msgstr "לא נמצאה חבילת AUR עבור"
|
msgstr "לא נמצאה חבילת AUR עבור"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:182
|
#: pkg/dep/dep_graph.go:182
|
||||||
|
#, fuzzy
|
||||||
msgid "No package found for"
|
msgid "No package found for"
|
||||||
msgstr "לא נמצאה חבילה עבור"
|
msgstr "לא נמצאה חבילת AUR עבור"
|
||||||
|
|
||||||
#: print.go:225
|
#: print.go:225
|
||||||
msgid "None"
|
msgid "None"
|
||||||
@ -380,7 +380,7 @@ msgstr "להסיר תלויות בנייה לאחר ההתקנה?"
|
|||||||
|
|
||||||
#: print.go:43
|
#: print.go:43
|
||||||
msgid "Replaces"
|
msgid "Replaces"
|
||||||
msgstr "מחליפה"
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:730
|
#: pkg/dep/dep_graph.go:730
|
||||||
msgid "Repository AUR"
|
msgid "Repository AUR"
|
||||||
@ -431,8 +431,8 @@ msgid "The following packages are not compatible with your architecture:"
|
|||||||
msgstr "החבילות הבאות אינן תואמות לארכיטקטורת המעבד שלך:"
|
msgstr "החבילות הבאות אינן תואמות לארכיטקטורת המעבד שלך:"
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:179 pkg/dep/dep_graph.go:726
|
#: pkg/db/ialpm/alpm.go:179 pkg/dep/dep_graph.go:726
|
||||||
msgid "There are %[1]d providers available for %[2]s:"
|
msgid "There are %d providers available for %s:"
|
||||||
msgstr "יש %[1]d ספקים זמינים עבור %[2]s:"
|
msgstr "יש %d ספקים זמינים עבור %s:"
|
||||||
|
|
||||||
#: pkg/settings/exe/cmd_builder.go:258
|
#: pkg/settings/exe/cmd_builder.go:258
|
||||||
msgid "There may be another Pacman instance running. Waiting..."
|
msgid "There may be another Pacman instance running. Waiting..."
|
||||||
@ -668,7 +668,7 @@ msgstr "אפשר להשתמש בפעולה אחת בכל רגע נתון"
|
|||||||
|
|
||||||
#: pkg/cmd/graph/main.go:70
|
#: pkg/cmd/graph/main.go:70
|
||||||
msgid "only one target is allowed"
|
msgid "only one target is allowed"
|
||||||
msgstr "מותר רק יעד אחד"
|
msgstr ""
|
||||||
|
|
||||||
#: print.go:187
|
#: print.go:187
|
||||||
msgid "package '%s' was not found"
|
msgid "package '%s' was not found"
|
||||||
@ -688,6 +688,7 @@ msgid_plural "packages"
|
|||||||
msgstr[0] "חבילה"
|
msgstr[0] "חבילה"
|
||||||
msgstr[1] "חבילות"
|
msgstr[1] "חבילות"
|
||||||
msgstr[2] "חבילות"
|
msgstr[2] "חבילות"
|
||||||
|
msgstr[3] "חבילות"
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:100
|
#: pkg/sync/srcinfo/pgp/keys.go:100
|
||||||
msgid "problem importing keys"
|
msgid "problem importing keys"
|
||||||
|
726
po/he_IL.po
726
po/he_IL.po
@ -1,726 +0,0 @@
|
|||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Yaron Shahrabani <sh.yaron@gmail.com>, 2024
|
|
||||||
# lavi landa, 2024
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Last-Translator: lavi landa, 2024\n"
|
|
||||||
"Language-Team: Hebrew (Israel) (https://app.transifex.com/yay-1/teams/123732/he_IL/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: he_IL\n"
|
|
||||||
"Plural-Forms: nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;\n"
|
|
||||||
"X-Generator: xgotext\n"
|
|
||||||
|
|
||||||
#: pkg/menus/menu.go:32
|
|
||||||
msgid " (Build Files Exist)"
|
|
||||||
msgstr " (קיימים קובצי בנייה)"
|
|
||||||
|
|
||||||
#: pkg/menus/menu.go:27
|
|
||||||
msgid " (Installed)"
|
|
||||||
msgstr " (מותקנת)"
|
|
||||||
|
|
||||||
#: cmd.go:453
|
|
||||||
msgid " [Installed]"
|
|
||||||
msgstr " [מותקנת]"
|
|
||||||
|
|
||||||
#: cmd.go:410 vote.go:36
|
|
||||||
msgid " there is nothing to do"
|
|
||||||
msgstr "אין מטרות לביצוע"
|
|
||||||
|
|
||||||
#: pkg/menus/menu.go:49
|
|
||||||
msgid "%s [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)"
|
|
||||||
msgstr ""
|
|
||||||
"%s [A]-הכול [Ab]-ביטול [I]-מותקנות [No]-לא מותקנות או (1 2 3, 1-3, ^4)"
|
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:308
|
|
||||||
msgid "%s already made -- skipping build"
|
|
||||||
msgstr "%s כבר נבנתה -- לא תיבנה שוב"
|
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:57
|
|
||||||
msgid "%s is not set"
|
|
||||||
msgstr "%s לא מוגדר"
|
|
||||||
|
|
||||||
#: pkg/settings/exe/cmd_builder.go:257
|
|
||||||
msgid "%s is present."
|
|
||||||
msgstr "%s קיימת."
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:460 pkg/sync/build/installer.go:305
|
|
||||||
msgid "%s is up to date -- skipping"
|
|
||||||
msgstr "%s עדכנית -- מדלגים"
|
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:292
|
|
||||||
msgid "%s to upgrade/install."
|
|
||||||
msgstr "%s לשדרוג/התקנה."
|
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:286
|
|
||||||
msgid "%s will also be installed for this operation."
|
|
||||||
msgstr "גם %s תותקן לשם הפעולה הזאת."
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:124
|
|
||||||
msgid "%s, required by: %s"
|
|
||||||
msgstr "%s, נדרשה ע״י: %s"
|
|
||||||
|
|
||||||
#: pkg/menus/diff_menu.go:49
|
|
||||||
msgid "%s: No changes -- skipping"
|
|
||||||
msgstr "%s: אין שינויים -- מדלגים"
|
|
||||||
|
|
||||||
#: pkg/query/filter.go:22
|
|
||||||
msgid "%s: can't use target with option --aur -- skipping"
|
|
||||||
msgstr "%s: אי אפשר להשתמש ביעד עם האפשרות --aur -- מדלגים"
|
|
||||||
|
|
||||||
#: pkg/query/filter.go:17
|
|
||||||
msgid "%s: can't use target with option --repo -- skipping"
|
|
||||||
msgstr "%s: אי אפשר להשתמש ביעד עם האפשרות --repo -- מדלגים"
|
|
||||||
|
|
||||||
#: pkg/upgrade/sources.go:57
|
|
||||||
msgid "%s: ignoring package upgrade (%s => %s)"
|
|
||||||
msgstr "%s: מתעלמים משדרוג חבילה (%s => %s)"
|
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:46
|
|
||||||
msgid "%s: local (%s) is newer than AUR (%s)"
|
|
||||||
msgstr "%s: מקומית (%s) חדשה יותר מ־AUR (%s)"
|
|
||||||
|
|
||||||
#: vote.go:51
|
|
||||||
msgid ""
|
|
||||||
"%s: please set AUR_USERNAME and AUR_PASSWORD environment variables for "
|
|
||||||
"voting"
|
|
||||||
msgstr "%s: נא להגדיר את משתני הסביבה AUR_USERNAME ו־AUR_PASSWORD כדי להצביע"
|
|
||||||
|
|
||||||
#: pkg/download/unified.go:192
|
|
||||||
msgid "(%d/%d) Downloaded PKGBUILD from ABS: %s"
|
|
||||||
msgstr "(%d/%d) PKGBUILD ירד מ־ABS: %s"
|
|
||||||
|
|
||||||
#: pkg/download/aur.go:92 pkg/download/unified.go:188
|
|
||||||
msgid "(%d/%d) Downloaded PKGBUILD: %s"
|
|
||||||
msgstr "(%d/%d) PKGBUILD שירד: %s"
|
|
||||||
|
|
||||||
#: pkg/download/aur.go:82
|
|
||||||
msgid "(%d/%d) Failed to download PKGBUILD: %s"
|
|
||||||
msgstr "(%d/%d) לא הצליח להוריד PKGBUILD: %s"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/service.go:109
|
|
||||||
msgid "(%d/%d) Parsing SRCINFO: %s"
|
|
||||||
msgstr "(%d/%d) מתבצע פענוח של SRCINFO: %s"
|
|
||||||
|
|
||||||
#: pkg/query/types.go:72 pkg/query/types.go:103
|
|
||||||
msgid "(Installed)"
|
|
||||||
msgstr "(מותקנת)"
|
|
||||||
|
|
||||||
#: pkg/query/types.go:70 pkg/query/types.go:101
|
|
||||||
msgid "(Installed: %s)"
|
|
||||||
msgstr "(מותקנת: %s)"
|
|
||||||
|
|
||||||
#: pkg/query/types.go:61
|
|
||||||
msgid "(Orphaned)"
|
|
||||||
msgstr "(יתומה)"
|
|
||||||
|
|
||||||
#: pkg/query/types.go:65
|
|
||||||
msgid "(Out-of-date: %s)"
|
|
||||||
msgstr "(לא עדכנית: %s)"
|
|
||||||
|
|
||||||
#: print.go:44
|
|
||||||
msgid "AUR URL"
|
|
||||||
msgstr "כתובת AUR"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:75
|
|
||||||
msgid "AUR"
|
|
||||||
msgstr "AUR"
|
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:58
|
|
||||||
msgid "Add %s or %s to your environment variables"
|
|
||||||
msgstr "יש להוסיף %s או %s למשתני הסביבה שלך"
|
|
||||||
|
|
||||||
#: main.go:60
|
|
||||||
msgid "Avoid running yay as root/sudo."
|
|
||||||
msgstr "כדאי להימנע מהפעלה תחת root/sudo."
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:63
|
|
||||||
msgid "Check Dependency"
|
|
||||||
msgstr "בדיקת תלות"
|
|
||||||
|
|
||||||
#: print.go:41
|
|
||||||
msgid "Check Deps"
|
|
||||||
msgstr "בדיקת תלויות"
|
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:90
|
|
||||||
msgid "Checking development packages..."
|
|
||||||
msgstr "חבילות הפיתוח נבדקות…"
|
|
||||||
|
|
||||||
#: pkg/sync/workdir/clean.go:45
|
|
||||||
msgid "Cleaning (%d/%d): %s"
|
|
||||||
msgstr "מתבצע ניקיון (%d/%d): %s"
|
|
||||||
|
|
||||||
#: print.go:42
|
|
||||||
msgid "Conflicts With"
|
|
||||||
msgstr "סותר את"
|
|
||||||
|
|
||||||
#: pkg/menus/clean_menu.go:62
|
|
||||||
msgid "Deleting (%d/%d): %s"
|
|
||||||
msgstr "מתבצעת מחיקה (%d/%d): %s"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:61
|
|
||||||
msgid "Dependency"
|
|
||||||
msgstr "תלות"
|
|
||||||
|
|
||||||
#: print.go:38
|
|
||||||
msgid "Depends On"
|
|
||||||
msgstr "תלויה ב־"
|
|
||||||
|
|
||||||
#: print.go:33
|
|
||||||
msgid "Description"
|
|
||||||
msgstr "תיאור"
|
|
||||||
|
|
||||||
#: pkg/menus/diff_menu.go:160
|
|
||||||
msgid "Diffs to show?"
|
|
||||||
msgstr "הבדלים להצגה?"
|
|
||||||
|
|
||||||
#: pkg/settings/migrations.go:25
|
|
||||||
msgid "Disable 'provides' setting by default"
|
|
||||||
msgstr "להשבית את הגדרת ‚provides’ (מספקת) כברירת מחדל"
|
|
||||||
|
|
||||||
#: clean.go:78
|
|
||||||
msgid "Do you want to remove ALL AUR packages from cache?"
|
|
||||||
msgstr "להסיר את כל חבילות ה־AUR מהמטמון?"
|
|
||||||
|
|
||||||
#: clean.go:95
|
|
||||||
msgid "Do you want to remove ALL untracked AUR files?"
|
|
||||||
msgstr "להסיר את כל קובצי ה־AUR שאינם במעקב?"
|
|
||||||
|
|
||||||
#: clean.go:80
|
|
||||||
msgid "Do you want to remove all other AUR packages from cache?"
|
|
||||||
msgstr "להסיר את כל חבילות ה־AUR האחרות מהמטמון?"
|
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:61
|
|
||||||
msgid "Edit PKGBUILD with?"
|
|
||||||
msgstr "לערוך את PKGBUILD עם?"
|
|
||||||
|
|
||||||
#: pkg/query/errors.go:13
|
|
||||||
msgid "Error during AUR search: %s\n"
|
|
||||||
msgstr "שגיאה בחיפוש AUR: %s\n"
|
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:296
|
|
||||||
msgid "Excluding packages may cause partial upgrades and break systems"
|
|
||||||
msgstr "החרגת חבילות עשויה להוביל לשדרוג חלקי ולפגוע במערכות"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:60
|
|
||||||
msgid "Explicit"
|
|
||||||
msgstr "מפורש"
|
|
||||||
|
|
||||||
#: print.go:91
|
|
||||||
msgid "Explicitly installed packages: %s"
|
|
||||||
msgstr "חבילות שהותקנו מפורשות: %s"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:437 pkg/dep/dep_graph.go:535
|
|
||||||
msgid "Failed to find AUR package for"
|
|
||||||
msgstr "נכשל האיתור בחבילת AUR עבור"
|
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:120
|
|
||||||
msgid "Failed to install layer, rolling up to next layer."
|
|
||||||
msgstr "התקנת השכבה נכשלה, מתבצעת התקדמות לשכבה הבאה."
|
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:16
|
|
||||||
msgid ""
|
|
||||||
"Failed to install the following packages. Manual intervention is required:"
|
|
||||||
msgstr "התקנת החבילות הבאות נכשלה. נדרשת התערבות ידנית:"
|
|
||||||
|
|
||||||
#: print.go:45
|
|
||||||
msgid "First Submitted"
|
|
||||||
msgstr "הוגשה לראשונה"
|
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:79
|
|
||||||
msgid "Flagged Out Of Date AUR Packages:"
|
|
||||||
msgstr "חבילות AUR שסומנו כלא עדכניות:"
|
|
||||||
|
|
||||||
#: print.go:90
|
|
||||||
msgid "Foreign installed packages: %s"
|
|
||||||
msgstr "חבילות זרות מותקנות: %s"
|
|
||||||
|
|
||||||
#: pkg/vcs/vcs.go:144
|
|
||||||
msgid "Found git repo: %s"
|
|
||||||
msgstr "נמצא מאגר git: %s"
|
|
||||||
|
|
||||||
#: vcs.go:72
|
|
||||||
msgid "GenDB finished. No packages were installed"
|
|
||||||
msgstr "יצירת מסד הנתונים (GenDB) הסתיימה. לא הותקנו חבילות"
|
|
||||||
|
|
||||||
#: print.go:36
|
|
||||||
msgid "Groups"
|
|
||||||
msgstr "קבוצות"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:88
|
|
||||||
msgid "Import?"
|
|
||||||
msgstr "לייבא?"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:97
|
|
||||||
msgid "Importing keys with gpg..."
|
|
||||||
msgstr "מתבצע ייבוא מפתחות עם gpg…"
|
|
||||||
|
|
||||||
#: print.go:46
|
|
||||||
msgid "Keywords"
|
|
||||||
msgstr "מילות מפתח"
|
|
||||||
|
|
||||||
#: print.go:47
|
|
||||||
msgid "Last Modified"
|
|
||||||
msgstr "שינוי אחרון"
|
|
||||||
|
|
||||||
#: print.go:35
|
|
||||||
msgid "Licenses"
|
|
||||||
msgstr "רישיונות"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:77
|
|
||||||
msgid "Local"
|
|
||||||
msgstr "מקומי"
|
|
||||||
|
|
||||||
#: print.go:48
|
|
||||||
msgid "Maintainer"
|
|
||||||
msgstr "תחזוקה"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:62
|
|
||||||
msgid "Make Dependency"
|
|
||||||
msgstr "תלות בנייה"
|
|
||||||
|
|
||||||
#: print.go:40
|
|
||||||
msgid "Make Deps"
|
|
||||||
msgstr "תלויות בנייה"
|
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:71
|
|
||||||
msgid "Missing AUR Debug Packages:"
|
|
||||||
msgstr "חבילות ניפוי שגיאות חסרות ב־AUR:"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:79
|
|
||||||
msgid "Missing"
|
|
||||||
msgstr "חסרות"
|
|
||||||
|
|
||||||
#: print.go:31
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "שם"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:442 pkg/dep/dep_graph.go:548
|
|
||||||
msgid "No AUR package found for"
|
|
||||||
msgstr "לא נמצאה חבילת AUR עבור"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:182
|
|
||||||
msgid "No package found for"
|
|
||||||
msgstr "לא נמצאה חבילה עבור"
|
|
||||||
|
|
||||||
#: print.go:225
|
|
||||||
msgid "None"
|
|
||||||
msgstr "ללא"
|
|
||||||
|
|
||||||
#: print.go:39
|
|
||||||
msgid "Optional Deps"
|
|
||||||
msgstr "תלויות רשות"
|
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:75
|
|
||||||
msgid "Orphan (unmaintained) AUR Packages:"
|
|
||||||
msgstr "חבילות AUR יתומות (לא מתוחזקות):"
|
|
||||||
|
|
||||||
#: print.go:53 print.go:55
|
|
||||||
msgid "Out-of-date"
|
|
||||||
msgstr "לא עדכניות"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:115
|
|
||||||
msgid "PGP keys need importing:"
|
|
||||||
msgstr "מפתחות PGP שיש לייבא:"
|
|
||||||
|
|
||||||
#: pkg/sync/workdir/preparer.go:252
|
|
||||||
msgid "PKGBUILD up to date, skipping download: %s"
|
|
||||||
msgstr "PKGBUILD עדכני, לא תתבצע הורדה: %s"
|
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:130
|
|
||||||
msgid "PKGBUILDs to edit?"
|
|
||||||
msgstr "קובצי PKGBUILD לעריכה?"
|
|
||||||
|
|
||||||
#: print.go:60
|
|
||||||
msgid "Package Base ID"
|
|
||||||
msgstr "מזהה בסיס החבילה"
|
|
||||||
|
|
||||||
#: print.go:61
|
|
||||||
msgid "Package Base"
|
|
||||||
msgstr "בסיס חבילה"
|
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:67
|
|
||||||
msgid "Packages not in AUR:"
|
|
||||||
msgstr "חבילות שאינן ב־AUR:"
|
|
||||||
|
|
||||||
#: pkg/menus/clean_menu.go:54
|
|
||||||
msgid "Packages to cleanBuild?"
|
|
||||||
msgstr "חבילות לבנייה מההתחלה (cleanBuild)?"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:202
|
|
||||||
msgid "Packages to exclude"
|
|
||||||
msgstr "חבילות להחרגה"
|
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:295
|
|
||||||
msgid "Packages to exclude: (eg: \"1 2 3\", \"1-3\", \"^4\" or repo name)"
|
|
||||||
msgstr "חבילות שיוחרגו: (למשל: „1 2 3”, „1-3”, „^4” או שם המאגר)"
|
|
||||||
|
|
||||||
#: cmd.go:392
|
|
||||||
msgid "Packages to install (eg: 1 2 3, 1-3 or ^4)"
|
|
||||||
msgstr "חבילות להתקנה (למשל: 1 2 3, 1-3 או ^4)"
|
|
||||||
|
|
||||||
#: print.go:49
|
|
||||||
msgid "Popularity"
|
|
||||||
msgstr "פופולריות"
|
|
||||||
|
|
||||||
#: pkg/menus/diff_menu.go:172 pkg/menus/edit_menu.go:143
|
|
||||||
msgid "Proceed with install?"
|
|
||||||
msgstr "להמשיך בהתקנה?"
|
|
||||||
|
|
||||||
#: print.go:37
|
|
||||||
msgid "Provides"
|
|
||||||
msgstr "מספקת"
|
|
||||||
|
|
||||||
#: pkg/sync/workdir/preparer.go:125
|
|
||||||
msgid "Remove make dependencies after install?"
|
|
||||||
msgstr "להסיר תלויות בנייה לאחר ההתקנה?"
|
|
||||||
|
|
||||||
#: print.go:43
|
|
||||||
msgid "Replaces"
|
|
||||||
msgstr "מחליף"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:730
|
|
||||||
msgid "Repository AUR"
|
|
||||||
msgstr "מאגר AUR"
|
|
||||||
|
|
||||||
#: print.go:30 pkg/db/ialpm/alpm.go:191
|
|
||||||
msgid "Repository"
|
|
||||||
msgstr "מאגר"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:78
|
|
||||||
msgid "SRCINFO"
|
|
||||||
msgstr "SRCINFO"
|
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:72
|
|
||||||
msgid "Searching AUR for updates..."
|
|
||||||
msgstr "מתבצע חיפוש אחר עדכונים ב־AUR…"
|
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:160
|
|
||||||
msgid "Searching databases for updates..."
|
|
||||||
msgstr "מתבצע חיפוש אחר עדכונים במסדי הנתונים…"
|
|
||||||
|
|
||||||
#: pkg/query/query_builder.go:214
|
|
||||||
msgid "Showing repo packages only"
|
|
||||||
msgstr "מוצגות חבילות מאגר בלבד"
|
|
||||||
|
|
||||||
#: print.go:95
|
|
||||||
msgid "Size of pacman cache %s: %s"
|
|
||||||
msgstr "גודל המטמון של pacman %s: %s"
|
|
||||||
|
|
||||||
#: print.go:98
|
|
||||||
msgid "Size of yay cache %s: %s"
|
|
||||||
msgstr "גודל המטמון של yay %s: %s"
|
|
||||||
|
|
||||||
#: print.go:62
|
|
||||||
msgid "Snapshot URL"
|
|
||||||
msgstr "כתובת לכידה"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:76
|
|
||||||
msgid "Sync"
|
|
||||||
msgstr "סנכרון"
|
|
||||||
|
|
||||||
#: print.go:100
|
|
||||||
msgid "Ten biggest packages:"
|
|
||||||
msgstr "עשרת החבילות הגדולות:"
|
|
||||||
|
|
||||||
#: pkg/sync/sync.go:124
|
|
||||||
msgid "The following packages are not compatible with your architecture:"
|
|
||||||
msgstr "החבילות הבאות אינן תואמות לארכיטקטורת המעבד שלך:"
|
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:179 pkg/dep/dep_graph.go:726
|
|
||||||
msgid "There are %[1]d providers available for %[2]s:"
|
|
||||||
msgstr "יש %[1]d ספקים זמינים עבור %[2]s:"
|
|
||||||
|
|
||||||
#: pkg/settings/exe/cmd_builder.go:258
|
|
||||||
msgid "There may be another Pacman instance running. Waiting..."
|
|
||||||
msgstr "יכול להיות שעוד מופע של Pacman פעיל. ממתינים…"
|
|
||||||
|
|
||||||
#: print.go:92
|
|
||||||
msgid "Total Size occupied by packages: %s"
|
|
||||||
msgstr "הגודל הכולל שתופסות החבילות: %s"
|
|
||||||
|
|
||||||
#: print.go:89
|
|
||||||
msgid "Total installed packages: %s"
|
|
||||||
msgstr "סך כל החבילות המותקנות: %s"
|
|
||||||
|
|
||||||
#: pkg/sync/sync.go:132
|
|
||||||
msgid "Try to build them anyway?"
|
|
||||||
msgstr "לנסות לבנות אותן בכל מקרה?"
|
|
||||||
|
|
||||||
#: print.go:34
|
|
||||||
msgid "URL"
|
|
||||||
msgstr "כתובת"
|
|
||||||
|
|
||||||
#: clean.go:194 pkg/menus/clean_menu.go:65 pkg/menus/clean_menu.go:71
|
|
||||||
msgid "Unable to clean:"
|
|
||||||
msgstr "לא ניתן לפנות:"
|
|
||||||
|
|
||||||
#: get.go:42 get.go:74
|
|
||||||
msgid "Unable to find the following packages:"
|
|
||||||
msgstr "לא ניתן למצוא את החבילות הבאות:"
|
|
||||||
|
|
||||||
#: vote.go:20
|
|
||||||
msgid "Unable to handle package vote for: %s. err: %s"
|
|
||||||
msgstr "לא ניתן לטפל בהצבעות חבילה עבור: %s. שגיאה: %s"
|
|
||||||
|
|
||||||
#: clean.go:170
|
|
||||||
msgid "Unable to remove %s: %s"
|
|
||||||
msgstr "לא ניתן להסיר את %s: %s"
|
|
||||||
|
|
||||||
#: print.go:32
|
|
||||||
msgid "Version"
|
|
||||||
msgstr "גרסה"
|
|
||||||
|
|
||||||
#: print.go:50
|
|
||||||
msgid "Votes"
|
|
||||||
msgstr "הצבעות"
|
|
||||||
|
|
||||||
#: print.go:87
|
|
||||||
msgid "Yay version v%s"
|
|
||||||
msgstr "Yay גרסה v%s"
|
|
||||||
|
|
||||||
#: pkg/menus/menu.go:49
|
|
||||||
msgid "[N]one"
|
|
||||||
msgstr "[N]-כלום"
|
|
||||||
|
|
||||||
#: clean.go:83
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
"Build directory:"
|
|
||||||
msgstr ""
|
|
||||||
"\n"
|
|
||||||
"תיקיית בנייה:"
|
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:201 pkg/dep/dep_graph.go:740
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
"Enter a number (default=1): "
|
|
||||||
msgstr ""
|
|
||||||
"\n"
|
|
||||||
"נא להקליד מספר (ברירת מחדל=1): "
|
|
||||||
|
|
||||||
#: pkg/settings/errors.go:29
|
|
||||||
msgid "aborting due to user"
|
|
||||||
msgstr "בוטל לבקשת המשתמש"
|
|
||||||
|
|
||||||
#: pkg/settings/parser/parser.go:608
|
|
||||||
msgid "argument '-' specified without input on stdin"
|
|
||||||
msgstr "סופק המשתנה ‚-’ ללא שום קלט ל־stdin"
|
|
||||||
|
|
||||||
#: local_install.go:26
|
|
||||||
msgid "cannot find PKGBUILD and .SRCINFO in directory"
|
|
||||||
msgstr "לא ניתן לאתר PKGBUILD ו־.SRCINFO בתיקייה"
|
|
||||||
|
|
||||||
#: pkg/sync/build/pkg_archive.go:148
|
|
||||||
msgid "cannot find package name: %v"
|
|
||||||
msgstr "לא ניתן למצוא את שם החבילה: %v"
|
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:30
|
|
||||||
msgid "could not find PKGDEST for: %s"
|
|
||||||
msgstr "לא ניתן למצוא PKGDEST עבור: %s"
|
|
||||||
|
|
||||||
#: errors.go:9
|
|
||||||
msgid "could not find all required packages"
|
|
||||||
msgstr "לא ניתן למצוא את כל החבילות הנחוצות"
|
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:61
|
|
||||||
msgid "could not find any package archives listed in %s"
|
|
||||||
msgstr "לא ניתן למצוא ארכיוני חבילות כלשהם שמופיעים תחת %s"
|
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:50 pkg/upgrade/service.go:287
|
|
||||||
msgid "dependency"
|
|
||||||
msgstr "תלות"
|
|
||||||
|
|
||||||
#: pkg/vcs/vcs.go:96 pkg/vcs/vcs.go:100
|
|
||||||
msgid "devel check for package failed: '%s' encountered an error"
|
|
||||||
msgstr "בדיקת פיתוח לחבילה נכשלה: ‚%s’ נתקל בשגיאה"
|
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:110
|
|
||||||
msgid "editor did not exit successfully, aborting: %s"
|
|
||||||
msgstr "העורך לא יצא כמו שצריך, הפעולה מבוטלת: %s"
|
|
||||||
|
|
||||||
#: pkg/sync/workdir/aur_source.go:24
|
|
||||||
msgid "error downloading sources: %s"
|
|
||||||
msgstr "שגיאה בהורדת קוד מקור: %s"
|
|
||||||
|
|
||||||
#: pkg/download/errors.go:25
|
|
||||||
msgid "error fetching %s: %s"
|
|
||||||
msgstr "שגיאה במשיכת %s: %s"
|
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:9
|
|
||||||
msgid "error installing repo packages"
|
|
||||||
msgstr "שגיאה בהתקנת חבילות מאגר"
|
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:266 pkg/sync/build/installer.go:270
|
|
||||||
msgid "error installing:"
|
|
||||||
msgstr "שגיאה בהתקנה:"
|
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:233 pkg/sync/build/installer.go:237
|
|
||||||
msgid "error making: %s"
|
|
||||||
msgstr "שגיאה בבנייה: %s"
|
|
||||||
|
|
||||||
#: pkg/sync/workdir/merge.go:24
|
|
||||||
msgid "error merging %s: %s"
|
|
||||||
msgstr "שגיאה במיזוג %s: %s"
|
|
||||||
|
|
||||||
#: pkg/download/unified.go:59
|
|
||||||
msgid "error reading %s"
|
|
||||||
msgstr "שגיאה בקריאת %s"
|
|
||||||
|
|
||||||
#: sync.go:36
|
|
||||||
msgid "error refreshing databases"
|
|
||||||
msgstr "שגיאה ברענון מסדי נתונים"
|
|
||||||
|
|
||||||
#: pkg/sync/workdir/clean.go:51 pkg/sync/workdir/merge.go:17
|
|
||||||
msgid "error resetting %s: %s"
|
|
||||||
msgstr "שגיאה באיפוס %s: %s"
|
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:53
|
|
||||||
msgid "error updating package install reason to %s"
|
|
||||||
msgstr "שגיאה בעדכון סיבת התקנת החבילה לכדי %s"
|
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:48
|
|
||||||
msgid "explicit"
|
|
||||||
msgstr "מפורש"
|
|
||||||
|
|
||||||
#: pkg/settings/errors.go:23
|
|
||||||
msgid "failed to create directory '%s': %s"
|
|
||||||
msgstr "יצירת התיקייה ‚%s’ נכשלה: %s"
|
|
||||||
|
|
||||||
#: pkg/settings/config.go:281
|
|
||||||
msgid "failed to open config file '%s': %s"
|
|
||||||
msgstr "פתיחת קובץ ההגדרות ‚%s’ נכשלה: %s"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/service.go:114
|
|
||||||
msgid "failed to parse %s -- skipping: %s"
|
|
||||||
msgstr "הפענוח של %s נכשל -- מדלגים: %s"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/service.go:118
|
|
||||||
msgid "failed to parse %s: %s"
|
|
||||||
msgstr "הפענוח של %s נכשל: %s"
|
|
||||||
|
|
||||||
#: local_install.go:77
|
|
||||||
msgid "failed to parse .SRCINFO"
|
|
||||||
msgstr "פענוח ה־.SRCINFO נכשל"
|
|
||||||
|
|
||||||
#: pkg/settings/config.go:291
|
|
||||||
msgid "failed to read config file '%s': %s"
|
|
||||||
msgstr "קריאת קובץ ההגדרות ‚%s’ נכשלה: %s"
|
|
||||||
|
|
||||||
#: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73
|
|
||||||
msgid "failed to retrieve aur Cache"
|
|
||||||
msgstr "משיכת המטמון של ה־aur נכשלה"
|
|
||||||
|
|
||||||
#: pkg/upgrade/sources.go:27
|
|
||||||
msgid "ignoring package devel upgrade (no AUR info found):"
|
|
||||||
msgstr "התעלמות משדרוג חבילת פיתוח (devel - לא נמצאו פרטים ב־AUR):"
|
|
||||||
|
|
||||||
#: pkg/text/errors.go:8
|
|
||||||
msgid "input too long"
|
|
||||||
msgstr "הקלט ארוך מדי"
|
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:222 pkg/dep/dep_graph.go:761
|
|
||||||
msgid "invalid number: %s"
|
|
||||||
msgstr "מס׳ שגוי: %s"
|
|
||||||
|
|
||||||
#: pkg/settings/parser/parser.go:174
|
|
||||||
msgid "invalid option '%s'"
|
|
||||||
msgstr "האפשרות ‚%s’ שגויה"
|
|
||||||
|
|
||||||
#: cmd.go:197
|
|
||||||
msgid "invalid option: '--deps' and '--explicit' may not be used together"
|
|
||||||
msgstr "אפשרות שגויה: אסור להשתמש ב־‚--deps' וב־‚--explicit’ יחד"
|
|
||||||
|
|
||||||
#: pkg/download/abs.go:22
|
|
||||||
msgid "invalid repository"
|
|
||||||
msgstr "מאגר שגוי"
|
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:227 pkg/dep/dep_graph.go:767
|
|
||||||
msgid "invalid value: %d is not between %d and %d"
|
|
||||||
msgstr "ערך שגוי: %d לא בין %d לבין %d"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:110
|
|
||||||
msgid "no keys to import"
|
|
||||||
msgstr "אין מפתחות לייבוא"
|
|
||||||
|
|
||||||
#: pkg/query/errors.go:20
|
|
||||||
msgid "no query was executed"
|
|
||||||
msgstr "לא הופעלה שאילתה"
|
|
||||||
|
|
||||||
#: local_install.go:66
|
|
||||||
msgid "no target directories specified"
|
|
||||||
msgstr "לא צוינו תיקיות יעד"
|
|
||||||
|
|
||||||
#: pkg/text/input.go:48
|
|
||||||
msgid "no"
|
|
||||||
msgstr "לא"
|
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:242
|
|
||||||
msgid "nothing to install for %s"
|
|
||||||
msgstr "אין מה להתקין עבור %s"
|
|
||||||
|
|
||||||
#: pkg/settings/parser/parser.go:164
|
|
||||||
msgid "only one operation may be used at a time"
|
|
||||||
msgstr "אפשר להשתמש בפעולה אחת בכל רגע נתון"
|
|
||||||
|
|
||||||
#: pkg/cmd/graph/main.go:70
|
|
||||||
msgid "only one target is allowed"
|
|
||||||
msgstr "מותר רק יעד אחד"
|
|
||||||
|
|
||||||
#: print.go:187
|
|
||||||
msgid "package '%s' was not found"
|
|
||||||
msgstr "החבילה ‚%s’ נכשלה"
|
|
||||||
|
|
||||||
#: pkg/download/errors.go:15
|
|
||||||
msgid "package not found in AUR"
|
|
||||||
msgstr "החבילה לא נמצאה ב־AUR"
|
|
||||||
|
|
||||||
#: pkg/download/abs.go:23
|
|
||||||
msgid "package not found in repos"
|
|
||||||
msgstr "החבילה לא נמצאה במאגרים"
|
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:292
|
|
||||||
msgid "package"
|
|
||||||
msgid_plural "packages"
|
|
||||||
msgstr[0] "חבילה"
|
|
||||||
msgstr[1] "חבילות"
|
|
||||||
msgstr[2] "חבילות"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:100
|
|
||||||
msgid "problem importing keys"
|
|
||||||
msgstr "תקלה בייבוא מפתחות"
|
|
||||||
|
|
||||||
#: clean.go:105
|
|
||||||
msgid "removing AUR packages from cache..."
|
|
||||||
msgstr "חבילות AUR נמחקות מהמטמון…"
|
|
||||||
|
|
||||||
#: clean.go:178 pkg/sync/workdir/clean.go:41
|
|
||||||
msgid "removing untracked AUR files from cache..."
|
|
||||||
msgstr "קובצי AUR שאינם במעקב נמחקים מהמטמון…"
|
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:38
|
|
||||||
msgid "the PKGDEST for %s is listed by makepkg but does not exist: %s"
|
|
||||||
msgstr "ה־PKGDEST עבור %s מוצג על ידי makepkg אך אינו קיים: %s"
|
|
||||||
|
|
||||||
#: pkg/sync/sync.go:45
|
|
||||||
msgid "there is nothing to do"
|
|
||||||
msgstr "אין מטרות לביצוע"
|
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:247
|
|
||||||
msgid "unable to CreateHandle: %s"
|
|
||||||
msgstr "לא ניתן ליצור כינוי (CreateHandle): %s"
|
|
||||||
|
|
||||||
#: cmd.go:186
|
|
||||||
msgid "unhandled operation"
|
|
||||||
msgstr "פעולה שלא טופלה"
|
|
||||||
|
|
||||||
#: cmd.go:450
|
|
||||||
msgid "unknown-version"
|
|
||||||
msgstr "גרסה-לא-ידועה"
|
|
||||||
|
|
||||||
#: pkg/text/input.go:47
|
|
||||||
msgid "yes"
|
|
||||||
msgstr "כן"
|
|
274
po/hu.po
274
po/hu.po
@ -2,11 +2,11 @@
|
|||||||
# Translators:
|
# Translators:
|
||||||
# Szigeti Péter, 2021
|
# Szigeti Péter, 2021
|
||||||
# Gergő Kasza, 2022
|
# Gergő Kasza, 2022
|
||||||
# summoner001, 2025
|
# summoner, 2024
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Last-Translator: summoner001, 2025\n"
|
"Last-Translator: summoner, 2024\n"
|
||||||
"Language-Team: Hungarian (https://app.transifex.com/yay-1/teams/123732/hu/)\n"
|
"Language-Team: Hungarian (https://app.transifex.com/yay-1/teams/123732/hu/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
@ -15,25 +15,9 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
"X-Generator: xgotext\n"
|
"X-Generator: xgotext\n"
|
||||||
|
|
||||||
#: clean.go:83
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
"Build directory:"
|
|
||||||
msgstr ""
|
|
||||||
"\n"
|
|
||||||
"Összeállítási könyvtár:"
|
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:201 pkg/dep/dep_graph.go:740
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
"Enter a number (default=1): "
|
|
||||||
msgstr ""
|
|
||||||
"\n"
|
|
||||||
"Írjon be egy számot (alapértelmezett=1): "
|
|
||||||
|
|
||||||
#: pkg/menus/menu.go:32
|
#: pkg/menus/menu.go:32
|
||||||
msgid " (Build Files Exist)"
|
msgid " (Build Files Exist)"
|
||||||
msgstr " (Összeállítási fájlok léteznek)"
|
msgstr " (Build fájlok léteznek)"
|
||||||
|
|
||||||
#: pkg/menus/menu.go:27
|
#: pkg/menus/menu.go:27
|
||||||
msgid " (Installed)"
|
msgid " (Installed)"
|
||||||
@ -50,12 +34,12 @@ msgstr " nincs tennivaló"
|
|||||||
#: pkg/menus/menu.go:49
|
#: pkg/menus/menu.go:49
|
||||||
msgid "%s [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)"
|
msgid "%s [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"%s [A]Összes [Ab]Megszakítás [I]Telepített [No]Nem telepített, vagy (1 2 3, "
|
"%s [A]Minden [Ab]Megszakítás [I]Telepített [No]Nem Telepített, vagy (1 2 3, "
|
||||||
"1-3, ^4)"
|
"1-3, ^4)"
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:308
|
#: pkg/sync/build/installer.go:308
|
||||||
msgid "%s already made -- skipping build"
|
msgid "%s already made -- skipping build"
|
||||||
msgstr "%s már kész -- összeállítás kihagyása"
|
msgstr "%s már kész -- építés kihagyása"
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:57
|
#: pkg/menus/edit_menu.go:57
|
||||||
msgid "%s is not set"
|
msgid "%s is not set"
|
||||||
@ -69,17 +53,17 @@ msgstr "%s létezik."
|
|||||||
msgid "%s is up to date -- skipping"
|
msgid "%s is up to date -- skipping"
|
||||||
msgstr "%s naprakész -- kihagyás"
|
msgstr "%s naprakész -- kihagyás"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:291
|
#: pkg/upgrade/service.go:292
|
||||||
msgid "%s to upgrade/install."
|
msgid "%s to upgrade/install."
|
||||||
msgstr "%s a frissítéshez/telepítéshez."
|
msgstr "%s a frissítéshez/telepítéshez."
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:285
|
#: pkg/upgrade/service.go:286
|
||||||
msgid "%s will also be installed for this operation."
|
msgid "%s will also be installed for this operation."
|
||||||
msgstr "%s is telepítve lesz ehhez a művelethez."
|
msgstr "%s is telepítve lesz ehhez a művelethez."
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:124
|
#: pkg/sync/srcinfo/pgp/keys.go:124
|
||||||
msgid "%s, required by: %s"
|
msgid "%s, required by: %s"
|
||||||
msgstr "%s, szükséges ehhez: %s"
|
msgstr "%s, Kell ehhez: %s"
|
||||||
|
|
||||||
#: pkg/menus/diff_menu.go:49
|
#: pkg/menus/diff_menu.go:49
|
||||||
msgid "%s: No changes -- skipping"
|
msgid "%s: No changes -- skipping"
|
||||||
@ -106,8 +90,8 @@ msgid ""
|
|||||||
"%s: please set AUR_USERNAME and AUR_PASSWORD environment variables for "
|
"%s: please set AUR_USERNAME and AUR_PASSWORD environment variables for "
|
||||||
"voting"
|
"voting"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"%s: állítsa be az AUR_USERNAME és AUR_PASSWORD környezeti változókat a "
|
"%s: kérjük, állítsd be az AUR_USERNAME és AUR_PASSWORD környezeti változókat"
|
||||||
"szavazáshoz"
|
" a szavazáshoz"
|
||||||
|
|
||||||
#: pkg/download/unified.go:192
|
#: pkg/download/unified.go:192
|
||||||
msgid "(%d/%d) Downloaded PKGBUILD from ABS: %s"
|
msgid "(%d/%d) Downloaded PKGBUILD from ABS: %s"
|
||||||
@ -125,37 +109,37 @@ msgstr "(%d/%d) Nem sikerült letölteni a PKGBUILD-et: %s"
|
|||||||
msgid "(%d/%d) Parsing SRCINFO: %s"
|
msgid "(%d/%d) Parsing SRCINFO: %s"
|
||||||
msgstr "(%d/%d) SRCINFO vizsgálata: %s"
|
msgstr "(%d/%d) SRCINFO vizsgálata: %s"
|
||||||
|
|
||||||
#: pkg/query/types.go:103 pkg/query/types.go:72
|
#: pkg/query/types.go:72 pkg/query/types.go:103
|
||||||
msgid "(Installed)"
|
msgid "(Installed)"
|
||||||
msgstr "(Telepítve)"
|
msgstr "(Telepítve)"
|
||||||
|
|
||||||
#: pkg/query/types.go:101 pkg/query/types.go:70
|
#: pkg/query/types.go:70 pkg/query/types.go:101
|
||||||
msgid "(Installed: %s)"
|
msgid "(Installed: %s)"
|
||||||
msgstr "(Telepítve: %s)"
|
msgstr "(Telepítve: %s)"
|
||||||
|
|
||||||
#: pkg/query/types.go:61
|
#: pkg/query/types.go:61
|
||||||
msgid "(Orphaned)"
|
msgid "(Orphaned)"
|
||||||
msgstr "(Elárvult)"
|
msgstr "(Árva)"
|
||||||
|
|
||||||
#: pkg/query/types.go:65
|
#: pkg/query/types.go:65
|
||||||
msgid "(Out-of-date: %s)"
|
msgid "(Out-of-date: %s)"
|
||||||
msgstr "(Elavult: %s)"
|
msgstr "(Elavult: %s)"
|
||||||
|
|
||||||
|
#: print.go:44
|
||||||
|
msgid "AUR URL"
|
||||||
|
msgstr "AUR URL"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:75
|
#: pkg/dep/dep_graph.go:75
|
||||||
msgid "AUR"
|
msgid "AUR"
|
||||||
msgstr "AUR"
|
msgstr "AUR"
|
||||||
|
|
||||||
#: print.go:44
|
|
||||||
msgid "AUR URL"
|
|
||||||
msgstr "AUR webcím"
|
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:58
|
#: pkg/menus/edit_menu.go:58
|
||||||
msgid "Add %s or %s to your environment variables"
|
msgid "Add %s or %s to your environment variables"
|
||||||
msgstr "Állítsa be a(z) %s vagy a(z) %s környezeti változót"
|
msgstr "Állítsd be az %s vagy a %s környezeti változót"
|
||||||
|
|
||||||
#: main.go:60
|
#: main.go:60
|
||||||
msgid "Avoid running yay as root/sudo."
|
msgid "Avoid running yay as root/sudo."
|
||||||
msgstr "Ne futtassa a yay-t root-ként/sudo-val."
|
msgstr "Ne futtasd a yay-t root-ként/sudo-val."
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:63
|
#: pkg/dep/dep_graph.go:63
|
||||||
msgid "Check Dependency"
|
msgid "Check Dependency"
|
||||||
@ -165,7 +149,7 @@ msgstr "Függőség ellenőrzése"
|
|||||||
msgid "Check Deps"
|
msgid "Check Deps"
|
||||||
msgstr "Függőségek ellenőrzése"
|
msgstr "Függőségek ellenőrzése"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:89
|
#: pkg/upgrade/service.go:90
|
||||||
msgid "Checking development packages..."
|
msgid "Checking development packages..."
|
||||||
msgstr "Fejlesztői csomagok ellenőrzése..."
|
msgstr "Fejlesztői csomagok ellenőrzése..."
|
||||||
|
|
||||||
@ -175,7 +159,7 @@ msgstr "Tisztítás (%d/%d): %s"
|
|||||||
|
|
||||||
#: print.go:42
|
#: print.go:42
|
||||||
msgid "Conflicts With"
|
msgid "Conflicts With"
|
||||||
msgstr "Ütközik ezzel"
|
msgstr "Ütközik Ezzel"
|
||||||
|
|
||||||
#: pkg/menus/clean_menu.go:62
|
#: pkg/menus/clean_menu.go:62
|
||||||
msgid "Deleting (%d/%d): %s"
|
msgid "Deleting (%d/%d): %s"
|
||||||
@ -187,7 +171,7 @@ msgstr "Függőség"
|
|||||||
|
|
||||||
#: print.go:38
|
#: print.go:38
|
||||||
msgid "Depends On"
|
msgid "Depends On"
|
||||||
msgstr "Függ ettől"
|
msgstr "Függ Tőle"
|
||||||
|
|
||||||
#: print.go:33
|
#: print.go:33
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
@ -195,35 +179,35 @@ msgstr "Leírás"
|
|||||||
|
|
||||||
#: pkg/menus/diff_menu.go:160
|
#: pkg/menus/diff_menu.go:160
|
||||||
msgid "Diffs to show?"
|
msgid "Diffs to show?"
|
||||||
msgstr "Összehasonlítások megjelenítése?"
|
msgstr "Diff-ek mutatása?"
|
||||||
|
|
||||||
#: pkg/settings/migrations.go:25
|
#: pkg/settings/migrations.go:25
|
||||||
msgid "Disable 'provides' setting by default"
|
msgid "Disable 'provides' setting by default"
|
||||||
msgstr "A „provides” opció alapértelmezett kikapcsolása"
|
msgstr "A 'provides' opció alapértelmezett kikapcsolása"
|
||||||
|
|
||||||
#: clean.go:78
|
#: clean.go:78
|
||||||
msgid "Do you want to remove ALL AUR packages from cache?"
|
msgid "Do you want to remove ALL AUR packages from cache?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Biztosan el akarja távolítani az ÖSSZES AUR csomagot a gyorsítótárból?"
|
"Biztosan el akarod távolítani az ÖSSZES AUR csomagot a gyorsítótárból?"
|
||||||
|
|
||||||
#: clean.go:95
|
#: clean.go:95
|
||||||
msgid "Do you want to remove ALL untracked AUR files?"
|
msgid "Do you want to remove ALL untracked AUR files?"
|
||||||
msgstr "Biztosan el akarja távolítani az ÖSSZES nem követett AUR fájlt?"
|
msgstr "Biztosan el akarod távolítani az ÖSSZES nem követett AUR fájlt?"
|
||||||
|
|
||||||
#: clean.go:80
|
#: clean.go:80
|
||||||
msgid "Do you want to remove all other AUR packages from cache?"
|
msgid "Do you want to remove all other AUR packages from cache?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Biztosan el akarja távolítani az összes többi AUR csomagot a gyorsítótárból?"
|
"Biztosan el akarod távolítani az összes többi AUR csomagot a gyorsítótárból?"
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:61
|
#: pkg/menus/edit_menu.go:61
|
||||||
msgid "Edit PKGBUILD with?"
|
msgid "Edit PKGBUILD with?"
|
||||||
msgstr "Mivel szerkeszti a PKGBUILD-et?"
|
msgstr "Mivel szerkesszük a PKGBUILD-et?"
|
||||||
|
|
||||||
#: pkg/query/errors.go:13
|
#: pkg/query/errors.go:13
|
||||||
msgid "Error during AUR search: %s\n"
|
msgid "Error during AUR search: %s\n"
|
||||||
msgstr "Hiba történt az AUR-ban való keresés közben: %s\n"
|
msgstr "Hiba történt az AUR-ban való keresés közben: %s\n"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:295
|
#: pkg/upgrade/service.go:296
|
||||||
msgid "Excluding packages may cause partial upgrades and break systems"
|
msgid "Excluding packages may cause partial upgrades and break systems"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"A csomagok kizárása részleges frissítéseket és rendszertöréseket okozhat"
|
"A csomagok kizárása részleges frissítéseket és rendszertöréseket okozhat"
|
||||||
@ -238,7 +222,7 @@ msgstr "Kifejezetten telepített csomagok: %s"
|
|||||||
|
|
||||||
#: pkg/dep/dep_graph.go:437 pkg/dep/dep_graph.go:535
|
#: pkg/dep/dep_graph.go:437 pkg/dep/dep_graph.go:535
|
||||||
msgid "Failed to find AUR package for"
|
msgid "Failed to find AUR package for"
|
||||||
msgstr "Nem sikerült megtalálni a következőhöz tartozó AUR-csomagot:"
|
msgstr "Nem sikerült megtalálni a következőhöz tartozó AUR-csomagot"
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:120
|
#: pkg/sync/build/installer.go:120
|
||||||
msgid "Failed to install layer, rolling up to next layer."
|
msgid "Failed to install layer, rolling up to next layer."
|
||||||
@ -252,11 +236,11 @@ msgstr ""
|
|||||||
|
|
||||||
#: print.go:45
|
#: print.go:45
|
||||||
msgid "First Submitted"
|
msgid "First Submitted"
|
||||||
msgstr "Először beküldve"
|
msgstr "Először Beküldve"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:83
|
#: pkg/query/aur_warnings.go:79
|
||||||
msgid "Flagged Out Of Date AUR Packages:"
|
msgid "Flagged Out Of Date AUR Packages:"
|
||||||
msgstr "Elavultnak jelölt AUR csomagok:"
|
msgstr "Elavultnak Jelölt AUR Csomagok:"
|
||||||
|
|
||||||
#: print.go:90
|
#: print.go:90
|
||||||
msgid "Foreign installed packages: %s"
|
msgid "Foreign installed packages: %s"
|
||||||
@ -264,7 +248,7 @@ msgstr "Idegen telepített csomagok: %s"
|
|||||||
|
|
||||||
#: pkg/vcs/vcs.go:144
|
#: pkg/vcs/vcs.go:144
|
||||||
msgid "Found git repo: %s"
|
msgid "Found git repo: %s"
|
||||||
msgstr "Git-tároló találat: %s"
|
msgstr "Git repo találat: %s"
|
||||||
|
|
||||||
#: vcs.go:72
|
#: vcs.go:72
|
||||||
msgid "GenDB finished. No packages were installed"
|
msgid "GenDB finished. No packages were installed"
|
||||||
@ -288,7 +272,7 @@ msgstr "Kulcsszavak"
|
|||||||
|
|
||||||
#: print.go:47
|
#: print.go:47
|
||||||
msgid "Last Modified"
|
msgid "Last Modified"
|
||||||
msgstr "Utoljára módosítva"
|
msgstr "Utoljára Módosítva"
|
||||||
|
|
||||||
#: print.go:35
|
#: print.go:35
|
||||||
msgid "Licenses"
|
msgid "Licenses"
|
||||||
@ -304,31 +288,31 @@ msgstr "Karbantartó"
|
|||||||
|
|
||||||
#: pkg/dep/dep_graph.go:62
|
#: pkg/dep/dep_graph.go:62
|
||||||
msgid "Make Dependency"
|
msgid "Make Dependency"
|
||||||
msgstr "Fordítási függőség"
|
msgstr "Make Függőség"
|
||||||
|
|
||||||
#: print.go:40
|
#: print.go:40
|
||||||
msgid "Make Deps"
|
msgid "Make Deps"
|
||||||
msgstr "Fordítási függőségek"
|
msgstr "Make Függőségek"
|
||||||
|
|
||||||
|
#: pkg/query/aur_warnings.go:71
|
||||||
|
msgid "Missing AUR Debug Packages:"
|
||||||
|
msgstr "Hiányzó AUR Debug Csomagok:"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:79
|
#: pkg/dep/dep_graph.go:79
|
||||||
msgid "Missing"
|
msgid "Missing"
|
||||||
msgstr "Hiányzik"
|
msgstr "Hiányzik"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:75
|
|
||||||
msgid "Missing AUR Debug Packages:"
|
|
||||||
msgstr "Hiányzó AUR-hibakereső-csomagok:"
|
|
||||||
|
|
||||||
#: print.go:31
|
#: print.go:31
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Név"
|
msgstr "Név"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:442 pkg/dep/dep_graph.go:548
|
#: pkg/dep/dep_graph.go:442 pkg/dep/dep_graph.go:548
|
||||||
msgid "No AUR package found for"
|
msgid "No AUR package found for"
|
||||||
msgstr "Nem található AUR-csomag a következőhöz:"
|
msgstr "Nem található AUR csomag a következőhöz"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:182
|
#: pkg/dep/dep_graph.go:182
|
||||||
msgid "No package found for"
|
msgid "No package found for"
|
||||||
msgstr "Nem található csomag a következőhöz:"
|
msgstr "Nem található csomag a következőhöz"
|
||||||
|
|
||||||
#: print.go:225
|
#: print.go:225
|
||||||
msgid "None"
|
msgid "None"
|
||||||
@ -336,11 +320,11 @@ msgstr "Semmi"
|
|||||||
|
|
||||||
#: print.go:39
|
#: print.go:39
|
||||||
msgid "Optional Deps"
|
msgid "Optional Deps"
|
||||||
msgstr "Nem kötelező függőségek"
|
msgstr "Opcionális Függőségek"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:79
|
#: pkg/query/aur_warnings.go:75
|
||||||
msgid "Orphan (unmaintained) AUR Packages:"
|
msgid "Orphan (unmaintained) AUR Packages:"
|
||||||
msgstr "Árva (nem karbantartott) AUR-csomagok:"
|
msgstr "Árva (nem karbantartott) AUR csomagok:"
|
||||||
|
|
||||||
#: print.go:53 print.go:55
|
#: print.go:53 print.go:55
|
||||||
msgid "Out-of-date"
|
msgid "Out-of-date"
|
||||||
@ -358,34 +342,33 @@ msgstr "A PKGBUILD naprakész, a letöltés kihagyása: %s"
|
|||||||
msgid "PKGBUILDs to edit?"
|
msgid "PKGBUILDs to edit?"
|
||||||
msgstr "PKGBUILD-ek szerkesztése?"
|
msgstr "PKGBUILD-ek szerkesztése?"
|
||||||
|
|
||||||
#: print.go:61
|
|
||||||
msgid "Package Base"
|
|
||||||
msgstr "Csomag alapja"
|
|
||||||
|
|
||||||
#: print.go:60
|
#: print.go:60
|
||||||
msgid "Package Base ID"
|
msgid "Package Base ID"
|
||||||
msgstr "Csomag alapjának azonosítója"
|
msgstr "Csomag Bázis ID-ja"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:71
|
#: print.go:61
|
||||||
|
msgid "Package Base"
|
||||||
|
msgstr "Csomag Bázis"
|
||||||
|
|
||||||
|
#: pkg/query/aur_warnings.go:67
|
||||||
msgid "Packages not in AUR:"
|
msgid "Packages not in AUR:"
|
||||||
msgstr "A csomag nincs az AUR-ban:"
|
msgstr "A csomag nincs az AUR-ban:"
|
||||||
|
|
||||||
#: pkg/menus/clean_menu.go:54
|
#: pkg/menus/clean_menu.go:54
|
||||||
msgid "Packages to cleanBuild?"
|
msgid "Packages to cleanBuild?"
|
||||||
msgstr "Csomagok a tiszta összeállításhoz?"
|
msgstr "Csomagok a cleanBuild-hez?"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:202
|
#: pkg/dep/dep_graph.go:202
|
||||||
msgid "Packages to exclude"
|
msgid "Packages to exclude"
|
||||||
msgstr "Kizárandó csomagok"
|
msgstr "Kizárandó csomagok"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:294
|
#: pkg/upgrade/service.go:295
|
||||||
msgid "Packages to exclude: (eg: \"1 2 3\", \"1-3\", \"^4\" or repo name)"
|
msgid "Packages to exclude: (eg: \"1 2 3\", \"1-3\", \"^4\" or repo name)"
|
||||||
msgstr ""
|
msgstr "Kihagyni kívánt csomagok: (pl.: \"1 2 3\", \"1-3\", \"^4\" vagy repo név)"
|
||||||
"Kihagyni kívánt csomagok: (például: „1 2 3”, „1-3”, „^4”, vagy tároló név)"
|
|
||||||
|
|
||||||
#: cmd.go:392
|
#: cmd.go:392
|
||||||
msgid "Packages to install (eg: 1 2 3, 1-3 or ^4)"
|
msgid "Packages to install (eg: 1 2 3, 1-3 or ^4)"
|
||||||
msgstr "Telepítendő csomagok (például: „1 2 3”, „1-3” vagy „^4”)"
|
msgstr "Telepítendő csomagok (pl.: \"1 2 3\", \"1-3\" vagy \"^4\")"
|
||||||
|
|
||||||
#: print.go:49
|
#: print.go:49
|
||||||
msgid "Popularity"
|
msgid "Popularity"
|
||||||
@ -393,7 +376,7 @@ msgstr "Népszerűség"
|
|||||||
|
|
||||||
#: pkg/menus/diff_menu.go:172 pkg/menus/edit_menu.go:143
|
#: pkg/menus/diff_menu.go:172 pkg/menus/edit_menu.go:143
|
||||||
msgid "Proceed with install?"
|
msgid "Proceed with install?"
|
||||||
msgstr "Folytatja a telepítést?"
|
msgstr "Folytatod a telepítést?"
|
||||||
|
|
||||||
#: print.go:37
|
#: print.go:37
|
||||||
msgid "Provides"
|
msgid "Provides"
|
||||||
@ -401,47 +384,47 @@ msgstr "Szolgáltatók"
|
|||||||
|
|
||||||
#: pkg/sync/workdir/preparer.go:125
|
#: pkg/sync/workdir/preparer.go:125
|
||||||
msgid "Remove make dependencies after install?"
|
msgid "Remove make dependencies after install?"
|
||||||
msgstr "Fordítási függőségek eltávolítása a telepítés után?"
|
msgstr "Eltávolítod a Make függőségeket a telepítés után?"
|
||||||
|
|
||||||
#: print.go:43
|
#: print.go:43
|
||||||
msgid "Replaces"
|
msgid "Replaces"
|
||||||
msgstr "Cserék"
|
msgstr "Cserék"
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:191 print.go:30
|
|
||||||
msgid "Repository"
|
|
||||||
msgstr "Tároló"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:730
|
#: pkg/dep/dep_graph.go:730
|
||||||
msgid "Repository AUR"
|
msgid "Repository AUR"
|
||||||
msgstr "AUR-tároló"
|
msgstr "AUR tároló"
|
||||||
|
|
||||||
|
#: print.go:30 pkg/db/ialpm/alpm.go:191
|
||||||
|
msgid "Repository"
|
||||||
|
msgstr "Tároló"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:78
|
#: pkg/dep/dep_graph.go:78
|
||||||
msgid "SRCINFO"
|
msgid "SRCINFO"
|
||||||
msgstr "SRCINFO"
|
msgstr "SRCINFO"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:71
|
#: pkg/upgrade/service.go:72
|
||||||
msgid "Searching AUR for updates..."
|
msgid "Searching AUR for updates..."
|
||||||
msgstr "Frissítések keresése az AUR-ban..."
|
msgstr "Frissítések keresése az AUR-ban..."
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:159
|
#: pkg/upgrade/service.go:160
|
||||||
msgid "Searching databases for updates..."
|
msgid "Searching databases for updates..."
|
||||||
msgstr "Frissítések keresése az adatbázisokban..."
|
msgstr "Frissítések keresése az adatbázisokban..."
|
||||||
|
|
||||||
#: pkg/query/query_builder.go:214
|
#: pkg/query/query_builder.go:214
|
||||||
msgid "Showing repo packages only"
|
msgid "Showing repo packages only"
|
||||||
msgstr "Csak a tároló csomagjainak megjelenítése"
|
msgstr "Csak a repo csomagok megjelenítése"
|
||||||
|
|
||||||
#: print.go:95
|
#: print.go:95
|
||||||
msgid "Size of pacman cache %s: %s"
|
msgid "Size of pacman cache %s: %s"
|
||||||
msgstr "A pacman gyorsítótárának mérete %s: %s"
|
msgstr "A pacman gyorsítótár mérete %s: %s"
|
||||||
|
|
||||||
#: print.go:98
|
#: print.go:98
|
||||||
msgid "Size of yay cache %s: %s"
|
msgid "Size of yay cache %s: %s"
|
||||||
msgstr "A yay gyorsítótárának mérete %s: %s"
|
msgstr "A yay gyorsítótár mérete %s: %s"
|
||||||
|
|
||||||
#: print.go:62
|
#: print.go:62
|
||||||
msgid "Snapshot URL"
|
msgid "Snapshot URL"
|
||||||
msgstr "Pillanatkép webcíme"
|
msgstr "Pillanatnyi állapot URL"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:76
|
#: pkg/dep/dep_graph.go:76
|
||||||
msgid "Sync"
|
msgid "Sync"
|
||||||
@ -449,23 +432,23 @@ msgstr "Szinkronizálás"
|
|||||||
|
|
||||||
#: print.go:100
|
#: print.go:100
|
||||||
msgid "Ten biggest packages:"
|
msgid "Ten biggest packages:"
|
||||||
msgstr "A tíz legnagyobb csomag:"
|
msgstr "Tíz legnagyobb csomag:"
|
||||||
|
|
||||||
#: pkg/sync/sync.go:124
|
#: pkg/sync/sync.go:124
|
||||||
msgid "The following packages are not compatible with your architecture:"
|
msgid "The following packages are not compatible with your architecture:"
|
||||||
msgstr "Az alábbi csomagok nem kompatibilisek a processzor architektúrájával:"
|
msgstr "Az alábbi csomagok nem kompatibilisek a processzor architektúráddal:"
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:179 pkg/dep/dep_graph.go:726
|
#: pkg/db/ialpm/alpm.go:179 pkg/dep/dep_graph.go:726
|
||||||
msgid "There are %[1]d providers available for %[2]s:"
|
msgid "There are %d providers available for %s:"
|
||||||
msgstr "%[1]d szolgáltató érhető el a következőhöz: %[2]d:"
|
msgstr "%d szolgáltató áll rendelkezésre a(z) %s -hoz(-hez):"
|
||||||
|
|
||||||
#: pkg/settings/exe/cmd_builder.go:258
|
#: pkg/settings/exe/cmd_builder.go:258
|
||||||
msgid "There may be another Pacman instance running. Waiting..."
|
msgid "There may be another Pacman instance running. Waiting..."
|
||||||
msgstr "Lehet, hogy már fut a pacman. Várjon..."
|
msgstr "Lehet, hogy már fut a Pacman. Várunk..."
|
||||||
|
|
||||||
#: print.go:92
|
#: print.go:92
|
||||||
msgid "Total Size occupied by packages: %s"
|
msgid "Total Size occupied by packages: %s"
|
||||||
msgstr "Csomagok által elfoglalt összes hely: %s"
|
msgstr "Csomagok által foglalt összes hely: %s"
|
||||||
|
|
||||||
#: print.go:89
|
#: print.go:89
|
||||||
msgid "Total installed packages: %s"
|
msgid "Total installed packages: %s"
|
||||||
@ -473,11 +456,11 @@ msgstr "Összes telepített csomag: %s"
|
|||||||
|
|
||||||
#: pkg/sync/sync.go:132
|
#: pkg/sync/sync.go:132
|
||||||
msgid "Try to build them anyway?"
|
msgid "Try to build them anyway?"
|
||||||
msgstr "Mégis megpróbálja összeállítani őket?"
|
msgstr "Mégis megpróbálod build-elni őket?"
|
||||||
|
|
||||||
#: print.go:34
|
#: print.go:34
|
||||||
msgid "URL"
|
msgid "URL"
|
||||||
msgstr "Webcím"
|
msgstr "URL"
|
||||||
|
|
||||||
#: clean.go:194 pkg/menus/clean_menu.go:65 pkg/menus/clean_menu.go:71
|
#: clean.go:194 pkg/menus/clean_menu.go:65 pkg/menus/clean_menu.go:71
|
||||||
msgid "Unable to clean:"
|
msgid "Unable to clean:"
|
||||||
@ -512,13 +495,29 @@ msgstr "Yay v%s verzió"
|
|||||||
msgid "[N]one"
|
msgid "[N]one"
|
||||||
msgstr "[N]semmi"
|
msgstr "[N]semmi"
|
||||||
|
|
||||||
|
#: clean.go:83
|
||||||
|
msgid ""
|
||||||
|
"\n"
|
||||||
|
"Build directory:"
|
||||||
|
msgstr ""
|
||||||
|
"\n"
|
||||||
|
"Build könyvtár:"
|
||||||
|
|
||||||
|
#: pkg/db/ialpm/alpm.go:201 pkg/dep/dep_graph.go:740
|
||||||
|
msgid ""
|
||||||
|
"\n"
|
||||||
|
"Enter a number (default=1): "
|
||||||
|
msgstr ""
|
||||||
|
"\n"
|
||||||
|
"Írj be egy számot (alapértelmezett=1): "
|
||||||
|
|
||||||
#: pkg/settings/errors.go:29
|
#: pkg/settings/errors.go:29
|
||||||
msgid "aborting due to user"
|
msgid "aborting due to user"
|
||||||
msgstr "a felhasználó kérésére megszakítva"
|
msgstr "felhasználó kérésére megszakítva"
|
||||||
|
|
||||||
#: pkg/settings/parser/parser.go:608
|
#: pkg/settings/parser/parser.go:608
|
||||||
msgid "argument '-' specified without input on stdin"
|
msgid "argument '-' specified without input on stdin"
|
||||||
msgstr "„-” argumentum lett megadva az stdin bemenete nélkül"
|
msgstr "'-' argumentum lett megadva az stdin bemenete nélkül"
|
||||||
|
|
||||||
#: local_install.go:26
|
#: local_install.go:26
|
||||||
msgid "cannot find PKGBUILD and .SRCINFO in directory"
|
msgid "cannot find PKGBUILD and .SRCINFO in directory"
|
||||||
@ -526,7 +525,7 @@ msgstr "nem található a PKGBUILD és az .SRCINFO a könyvtárban"
|
|||||||
|
|
||||||
#: pkg/sync/build/pkg_archive.go:148
|
#: pkg/sync/build/pkg_archive.go:148
|
||||||
msgid "cannot find package name: %v"
|
msgid "cannot find package name: %v"
|
||||||
msgstr "nem található a csomagnév: %v"
|
msgstr "csomag név nem található: %v"
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:30
|
#: pkg/sync/build/errors.go:30
|
||||||
msgid "could not find PKGDEST for: %s"
|
msgid "could not find PKGDEST for: %s"
|
||||||
@ -538,16 +537,15 @@ msgstr "nem sikerült megtalálni minden szükséges csomagot"
|
|||||||
|
|
||||||
#: pkg/sync/build/errors.go:61
|
#: pkg/sync/build/errors.go:61
|
||||||
msgid "could not find any package archives listed in %s"
|
msgid "could not find any package archives listed in %s"
|
||||||
msgstr ""
|
msgstr "nem sikerült megtalálni egyetlen csomagarchívumot sem a %s listában"
|
||||||
"nem sikerült megtalálni egyetlen csomagarchívumot sem a(z) %s listában"
|
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:50 pkg/upgrade/service.go:286
|
#: pkg/sync/build/errors.go:50 pkg/upgrade/service.go:287
|
||||||
msgid "dependency"
|
msgid "dependency"
|
||||||
msgstr "függőség"
|
msgstr "függőség"
|
||||||
|
|
||||||
#: pkg/vcs/vcs.go:100 pkg/vcs/vcs.go:96
|
#: pkg/vcs/vcs.go:96 pkg/vcs/vcs.go:100
|
||||||
msgid "devel check for package failed: '%s' encountered an error"
|
msgid "devel check for package failed: '%s' encountered an error"
|
||||||
msgstr "a csomag devel ellenőrzése nem sikerült: „%s” hibát észlelt"
|
msgstr "a csomag devel ellenőrzése nem sikerült: '%s' hibát észlelt"
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:110
|
#: pkg/menus/edit_menu.go:110
|
||||||
msgid "editor did not exit successfully, aborting: %s"
|
msgid "editor did not exit successfully, aborting: %s"
|
||||||
@ -559,11 +557,11 @@ msgstr "hiba a forrásfájlok letöltése közben: %s"
|
|||||||
|
|
||||||
#: pkg/download/errors.go:25
|
#: pkg/download/errors.go:25
|
||||||
msgid "error fetching %s: %s"
|
msgid "error fetching %s: %s"
|
||||||
msgstr "hiba a(z) %s letöltése közben: %s"
|
msgstr "hiba %s letöltése közben: %s"
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:9
|
#: pkg/sync/build/errors.go:9
|
||||||
msgid "error installing repo packages"
|
msgid "error installing repo packages"
|
||||||
msgstr "hiba a tárolóból származó csomagok telepítése közben"
|
msgstr "hiba a repo csomagok telepítése közben"
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:266 pkg/sync/build/installer.go:270
|
#: pkg/sync/build/installer.go:266 pkg/sync/build/installer.go:270
|
||||||
msgid "error installing:"
|
msgid "error installing:"
|
||||||
@ -571,15 +569,15 @@ msgstr "hiba telepítés közben:"
|
|||||||
|
|
||||||
#: pkg/sync/build/installer.go:233 pkg/sync/build/installer.go:237
|
#: pkg/sync/build/installer.go:233 pkg/sync/build/installer.go:237
|
||||||
msgid "error making: %s"
|
msgid "error making: %s"
|
||||||
msgstr "fordítási hiba: %s"
|
msgstr "make hiba: %s"
|
||||||
|
|
||||||
#: pkg/sync/workdir/merge.go:24
|
#: pkg/sync/workdir/merge.go:24
|
||||||
msgid "error merging %s: %s"
|
msgid "error merging %s: %s"
|
||||||
msgstr "hiba a(z) %s beolvasztása közben: %s"
|
msgstr "hiba %s merge-elése közben: %s"
|
||||||
|
|
||||||
#: pkg/download/unified.go:59
|
#: pkg/download/unified.go:59
|
||||||
msgid "error reading %s"
|
msgid "error reading %s"
|
||||||
msgstr "hiba a(z) %s olvasása közben"
|
msgstr "hiba %s olvasása közben"
|
||||||
|
|
||||||
#: sync.go:36
|
#: sync.go:36
|
||||||
msgid "error refreshing databases"
|
msgid "error refreshing databases"
|
||||||
@ -587,11 +585,11 @@ msgstr "hiba az adatbázisok frissítése közben"
|
|||||||
|
|
||||||
#: pkg/sync/workdir/clean.go:51 pkg/sync/workdir/merge.go:17
|
#: pkg/sync/workdir/clean.go:51 pkg/sync/workdir/merge.go:17
|
||||||
msgid "error resetting %s: %s"
|
msgid "error resetting %s: %s"
|
||||||
msgstr "hiba a(z) %s visszaállítása közben: %s"
|
msgstr "hiba visszaállítás közben %s: %s"
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:53
|
#: pkg/sync/build/errors.go:53
|
||||||
msgid "error updating package install reason to %s"
|
msgid "error updating package install reason to %s"
|
||||||
msgstr "hiba történt a csomag frissítése közben, a telepítés oka %s"
|
msgstr "hiba történt a csomag frissítése közben a telepítés oka %s"
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:48
|
#: pkg/sync/build/errors.go:48
|
||||||
msgid "explicit"
|
msgid "explicit"
|
||||||
@ -599,15 +597,15 @@ msgstr "kifejezett"
|
|||||||
|
|
||||||
#: pkg/settings/errors.go:23
|
#: pkg/settings/errors.go:23
|
||||||
msgid "failed to create directory '%s': %s"
|
msgid "failed to create directory '%s': %s"
|
||||||
msgstr "nem sikerült létrehozni a könyvtárat „%s”: %s"
|
msgstr "nem sikerült létrehozni a könyvtárat '%s': %s"
|
||||||
|
|
||||||
#: pkg/settings/config.go:281
|
#: pkg/settings/config.go:281
|
||||||
msgid "failed to open config file '%s': %s"
|
msgid "failed to open config file '%s': %s"
|
||||||
msgstr "nem sikerült megnyitni a könyvtárat „%s”: %s"
|
msgstr "nem sikerült megnyitni a könyvtárat '%s': %s"
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/service.go:114
|
#: pkg/sync/srcinfo/service.go:114
|
||||||
msgid "failed to parse %s -- skipping: %s"
|
msgid "failed to parse %s -- skipping: %s"
|
||||||
msgstr "nem sikerült elemezni a következőt: %s -- kihagyás: %s"
|
msgstr "nem sikerült elemezni %s -- kihagyás: %s"
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/service.go:118
|
#: pkg/sync/srcinfo/service.go:118
|
||||||
msgid "failed to parse %s: %s"
|
msgid "failed to parse %s: %s"
|
||||||
@ -619,21 +617,21 @@ msgstr "nem sikerült elemezni az .SRCINFO-t"
|
|||||||
|
|
||||||
#: pkg/settings/config.go:291
|
#: pkg/settings/config.go:291
|
||||||
msgid "failed to read config file '%s': %s"
|
msgid "failed to read config file '%s': %s"
|
||||||
msgstr "sikerült olvasni a config fájlt „%s”: %s"
|
msgstr "sikerült olvasni a config fájlt '%s': %s"
|
||||||
|
|
||||||
#: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73
|
#: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73
|
||||||
msgid "failed to retrieve aur Cache"
|
msgid "failed to retrieve aur Cache"
|
||||||
msgstr "nem sikerült lekérni az AUR gyorsítótárát"
|
msgstr "nem sikerült lekérni az AUR gyorsítótárat"
|
||||||
|
|
||||||
#: pkg/upgrade/sources.go:27
|
#: pkg/upgrade/sources.go:27
|
||||||
msgid "ignoring package devel upgrade (no AUR info found):"
|
msgid "ignoring package devel upgrade (no AUR info found):"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"figyelmen kívül hagyja a fejlesztői csomag frissítését (nem talált AUR-"
|
"figyelmen kívül hagyja a devel csomag frissítését (nem talált AUR-"
|
||||||
"információt):"
|
"információt):"
|
||||||
|
|
||||||
#: pkg/text/errors.go:8
|
#: pkg/text/errors.go:8
|
||||||
msgid "input too long"
|
msgid "input too long"
|
||||||
msgstr "a bemenet túl hosszú"
|
msgstr "bemenet túl hosszú"
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:222 pkg/dep/dep_graph.go:761
|
#: pkg/db/ialpm/alpm.go:222 pkg/dep/dep_graph.go:761
|
||||||
msgid "invalid number: %s"
|
msgid "invalid number: %s"
|
||||||
@ -641,11 +639,11 @@ msgstr "érvénytelen szám: %s"
|
|||||||
|
|
||||||
#: pkg/settings/parser/parser.go:174
|
#: pkg/settings/parser/parser.go:174
|
||||||
msgid "invalid option '%s'"
|
msgid "invalid option '%s'"
|
||||||
msgstr "érvénytelen opció: „%s”"
|
msgstr "érvénytelen opció '%s'"
|
||||||
|
|
||||||
#: cmd.go:197
|
#: cmd.go:197
|
||||||
msgid "invalid option: '--deps' and '--explicit' may not be used together"
|
msgid "invalid option: '--deps' and '--explicit' may not be used together"
|
||||||
msgstr "érvénytelen opció: „--deps” és „--explicit” nem használható egyszerre"
|
msgstr "érvénytelen opció: '--deps' és '--explicit' nem használható egyszerre"
|
||||||
|
|
||||||
#: pkg/download/abs.go:22
|
#: pkg/download/abs.go:22
|
||||||
msgid "invalid repository"
|
msgid "invalid repository"
|
||||||
@ -653,11 +651,7 @@ msgstr "érvénytelen tároló"
|
|||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:227 pkg/dep/dep_graph.go:767
|
#: pkg/db/ialpm/alpm.go:227 pkg/dep/dep_graph.go:767
|
||||||
msgid "invalid value: %d is not between %d and %d"
|
msgid "invalid value: %d is not between %d and %d"
|
||||||
msgstr "érvénytelen érték: %d, az érték nem %d és %d között van"
|
msgstr "érvénytelen érték: %d nem %d és %d között van"
|
||||||
|
|
||||||
#: pkg/text/input.go:48
|
|
||||||
msgid "no"
|
|
||||||
msgstr "nem"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:110
|
#: pkg/sync/srcinfo/pgp/keys.go:110
|
||||||
msgid "no keys to import"
|
msgid "no keys to import"
|
||||||
@ -671,9 +665,13 @@ msgstr "nem történt lekérdezés"
|
|||||||
msgid "no target directories specified"
|
msgid "no target directories specified"
|
||||||
msgstr "nincs megadva célkönyvtár"
|
msgstr "nincs megadva célkönyvtár"
|
||||||
|
|
||||||
|
#: pkg/text/input.go:48
|
||||||
|
msgid "no"
|
||||||
|
msgstr "nem"
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:242
|
#: pkg/sync/build/installer.go:242
|
||||||
msgid "nothing to install for %s"
|
msgid "nothing to install for %s"
|
||||||
msgstr "nincs mit telepíteni ehhez: %s"
|
msgstr "nincs mit telepíteni a(z) %s -hoz/hez"
|
||||||
|
|
||||||
#: pkg/settings/parser/parser.go:164
|
#: pkg/settings/parser/parser.go:164
|
||||||
msgid "only one operation may be used at a time"
|
msgid "only one operation may be used at a time"
|
||||||
@ -683,24 +681,24 @@ msgstr "egyszerre csak egy művelet használható"
|
|||||||
msgid "only one target is allowed"
|
msgid "only one target is allowed"
|
||||||
msgstr "csak egy cél engedélyezett"
|
msgstr "csak egy cél engedélyezett"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:291
|
#: print.go:187
|
||||||
|
msgid "package '%s' was not found"
|
||||||
|
msgstr "a(z) '%s' csomag nem található"
|
||||||
|
|
||||||
|
#: pkg/download/errors.go:15
|
||||||
|
msgid "package not found in AUR"
|
||||||
|
msgstr "csomag nem található az AUR-ban"
|
||||||
|
|
||||||
|
#: pkg/download/abs.go:23
|
||||||
|
msgid "package not found in repos"
|
||||||
|
msgstr "csomag nem található a repo-kban"
|
||||||
|
|
||||||
|
#: pkg/upgrade/service.go:292
|
||||||
msgid "package"
|
msgid "package"
|
||||||
msgid_plural "packages"
|
msgid_plural "packages"
|
||||||
msgstr[0] "csomag"
|
msgstr[0] "csomag"
|
||||||
msgstr[1] "csomagok"
|
msgstr[1] "csomagok"
|
||||||
|
|
||||||
#: print.go:187
|
|
||||||
msgid "package '%s' was not found"
|
|
||||||
msgstr "a(z) „%s” csomag nem található"
|
|
||||||
|
|
||||||
#: pkg/download/errors.go:15
|
|
||||||
msgid "package not found in AUR"
|
|
||||||
msgstr "a csomag nem található az AUR-ban"
|
|
||||||
|
|
||||||
#: pkg/download/abs.go:23
|
|
||||||
msgid "package not found in repos"
|
|
||||||
msgstr "a csomag nem található a tárolókban"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:100
|
#: pkg/sync/srcinfo/pgp/keys.go:100
|
||||||
msgid "problem importing keys"
|
msgid "problem importing keys"
|
||||||
msgstr "hiba a kulcsok importálása közben"
|
msgstr "hiba a kulcsok importálása közben"
|
||||||
@ -731,7 +729,7 @@ msgstr "nem kezelt művelet"
|
|||||||
|
|
||||||
#: cmd.go:450
|
#: cmd.go:450
|
||||||
msgid "unknown-version"
|
msgid "unknown-version"
|
||||||
msgstr "ismeretlen verzió"
|
msgstr "ismeretlen-verzió"
|
||||||
|
|
||||||
#: pkg/text/input.go:47
|
#: pkg/text/input.go:47
|
||||||
msgid "yes"
|
msgid "yes"
|
||||||
|
141
po/id.po
141
po/id.po
@ -1,7 +1,6 @@
|
|||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# Ludovico, 2022
|
# Ludovico, 2022
|
||||||
# Alif Fathur, 2024
|
|
||||||
# Linerly <linerly@proton.me>, 2024
|
# Linerly <linerly@proton.me>, 2024
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -15,25 +14,9 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Generator: xgotext\n"
|
"X-Generator: xgotext\n"
|
||||||
|
|
||||||
#: clean.go:83
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
"Build directory:"
|
|
||||||
msgstr ""
|
|
||||||
"\n"
|
|
||||||
"Direktori build:"
|
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:201 pkg/dep/dep_graph.go:740
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
"Enter a number (default=1): "
|
|
||||||
msgstr ""
|
|
||||||
"\n"
|
|
||||||
"Masukkan sebuah nomor (bawaan=1):"
|
|
||||||
|
|
||||||
#: pkg/menus/menu.go:32
|
#: pkg/menus/menu.go:32
|
||||||
msgid " (Build Files Exist)"
|
msgid " (Build Files Exist)"
|
||||||
msgstr "(File build Sudah Ada)"
|
msgstr "(File Pembangunan Sudah Ada)"
|
||||||
|
|
||||||
#: pkg/menus/menu.go:27
|
#: pkg/menus/menu.go:27
|
||||||
msgid " (Installed)"
|
msgid " (Installed)"
|
||||||
@ -50,16 +33,16 @@ msgstr "tidak ada yang dapat dilakukan"
|
|||||||
#: pkg/menus/menu.go:49
|
#: pkg/menus/menu.go:49
|
||||||
msgid "%s [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)"
|
msgid "%s [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"%s [A]Semua [Ab]Batalkan [I]Terpasang [No]Belum terpasang atau (1 2 3, 1-3, "
|
"%s [A]Semua [Ab]Batalkan [I]Terpasang [No]BelumTerpasang atau (1 2 3, 1-3, "
|
||||||
"^4)"
|
"^4)"
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:308
|
#: pkg/sync/build/installer.go:308
|
||||||
msgid "%s already made -- skipping build"
|
msgid "%s already made -- skipping build"
|
||||||
msgstr "%s sudah dibuat -- melewatkan proses build"
|
msgstr "%s sudah dibuat -- melewatkan pembangunan"
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:57
|
#: pkg/menus/edit_menu.go:57
|
||||||
msgid "%s is not set"
|
msgid "%s is not set"
|
||||||
msgstr "%s belum diatur"
|
msgstr "%s tidak diatur"
|
||||||
|
|
||||||
#: pkg/settings/exe/cmd_builder.go:257
|
#: pkg/settings/exe/cmd_builder.go:257
|
||||||
msgid "%s is present."
|
msgid "%s is present."
|
||||||
@ -69,11 +52,11 @@ msgstr "%s sudah ada."
|
|||||||
msgid "%s is up to date -- skipping"
|
msgid "%s is up to date -- skipping"
|
||||||
msgstr "%s sudah yang terbaru -- melewatkan"
|
msgstr "%s sudah yang terbaru -- melewatkan"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:291
|
#: pkg/upgrade/service.go:292
|
||||||
msgid "%s to upgrade/install."
|
msgid "%s to upgrade/install."
|
||||||
msgstr "%s untuk diupgrade/dipasang."
|
msgstr "%s untuk ditingkatkan/pasang."
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:285
|
#: pkg/upgrade/service.go:286
|
||||||
msgid "%s will also be installed for this operation."
|
msgid "%s will also be installed for this operation."
|
||||||
msgstr "%s juga akan dipasang untuk tindakan ini."
|
msgstr "%s juga akan dipasang untuk tindakan ini."
|
||||||
|
|
||||||
@ -95,7 +78,7 @@ msgstr "%s: tidak dapat menggunakan target dengan opsi --repo -- melewatkan"
|
|||||||
|
|
||||||
#: pkg/upgrade/sources.go:57
|
#: pkg/upgrade/sources.go:57
|
||||||
msgid "%s: ignoring package upgrade (%s => %s)"
|
msgid "%s: ignoring package upgrade (%s => %s)"
|
||||||
msgstr "%s: mengabaikan pengupgradean paket (%s => %s)"
|
msgstr "%s: mengabaikan peningkatan paket (%s => %s)"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:46
|
#: pkg/query/aur_warnings.go:46
|
||||||
msgid "%s: local (%s) is newer than AUR (%s)"
|
msgid "%s: local (%s) is newer than AUR (%s)"
|
||||||
@ -106,12 +89,12 @@ msgid ""
|
|||||||
"%s: please set AUR_USERNAME and AUR_PASSWORD environment variables for "
|
"%s: please set AUR_USERNAME and AUR_PASSWORD environment variables for "
|
||||||
"voting"
|
"voting"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"%s: seilahkan atur variabel environment AUR_USERNAME dan AUR_PASSWORD untuk "
|
"%s: mohon tetapkan variabel lingkungan AUR_USERNAME dan AUR_PASSWORD untuk "
|
||||||
"pemungutan suara"
|
"pemungutan suara"
|
||||||
|
|
||||||
#: pkg/download/unified.go:192
|
#: pkg/download/unified.go:192
|
||||||
msgid "(%d/%d) Downloaded PKGBUILD from ABS: %s"
|
msgid "(%d/%d) Downloaded PKGBUILD from ABS: %s"
|
||||||
msgstr "(%d/%d) PKGBUILD diunduh dari ABS: %s"
|
msgstr "(%d/%d) PKGBUILD terunduh dari ABS: %s"
|
||||||
|
|
||||||
#: pkg/download/aur.go:92 pkg/download/unified.go:188
|
#: pkg/download/aur.go:92 pkg/download/unified.go:188
|
||||||
msgid "(%d/%d) Downloaded PKGBUILD: %s"
|
msgid "(%d/%d) Downloaded PKGBUILD: %s"
|
||||||
@ -125,33 +108,33 @@ msgstr "(%d/%d) Gagal mengunduh PKGBUILD: %s"
|
|||||||
msgid "(%d/%d) Parsing SRCINFO: %s"
|
msgid "(%d/%d) Parsing SRCINFO: %s"
|
||||||
msgstr "(%d/%d) Menguraikan SRCINFO: %s"
|
msgstr "(%d/%d) Menguraikan SRCINFO: %s"
|
||||||
|
|
||||||
#: pkg/query/types.go:103 pkg/query/types.go:72
|
#: pkg/query/types.go:72 pkg/query/types.go:103
|
||||||
msgid "(Installed)"
|
msgid "(Installed)"
|
||||||
msgstr "(Terpasang)"
|
msgstr "(Terpasang)"
|
||||||
|
|
||||||
#: pkg/query/types.go:101 pkg/query/types.go:70
|
#: pkg/query/types.go:70 pkg/query/types.go:101
|
||||||
msgid "(Installed: %s)"
|
msgid "(Installed: %s)"
|
||||||
msgstr "(Terpasang: %s)"
|
msgstr "(Terpasang: %s)"
|
||||||
|
|
||||||
#: pkg/query/types.go:61
|
#: pkg/query/types.go:61
|
||||||
msgid "(Orphaned)"
|
msgid "(Orphaned)"
|
||||||
msgstr "(Ditinggalkan)"
|
msgstr "(Tertinggal)"
|
||||||
|
|
||||||
#: pkg/query/types.go:65
|
#: pkg/query/types.go:65
|
||||||
msgid "(Out-of-date: %s)"
|
msgid "(Out-of-date: %s)"
|
||||||
msgstr "(Kedaluwarsa: %s)"
|
msgstr "(Kedaluwarsa: %s)"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:75
|
|
||||||
msgid "AUR"
|
|
||||||
msgstr "AUR"
|
|
||||||
|
|
||||||
#: print.go:44
|
#: print.go:44
|
||||||
msgid "AUR URL"
|
msgid "AUR URL"
|
||||||
msgstr "URL AUR"
|
msgstr "URL AUR"
|
||||||
|
|
||||||
|
#: pkg/dep/dep_graph.go:75
|
||||||
|
msgid "AUR"
|
||||||
|
msgstr "AUR"
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:58
|
#: pkg/menus/edit_menu.go:58
|
||||||
msgid "Add %s or %s to your environment variables"
|
msgid "Add %s or %s to your environment variables"
|
||||||
msgstr "Tambahkan %s atau %s ke variabel environment Anda"
|
msgstr "Tambahkan %s atau %s ke variabel lingkungan Anda"
|
||||||
|
|
||||||
#: main.go:60
|
#: main.go:60
|
||||||
msgid "Avoid running yay as root/sudo."
|
msgid "Avoid running yay as root/sudo."
|
||||||
@ -159,13 +142,13 @@ msgstr "Hindari menjalankan yay sebagai root/sudo."
|
|||||||
|
|
||||||
#: pkg/dep/dep_graph.go:63
|
#: pkg/dep/dep_graph.go:63
|
||||||
msgid "Check Dependency"
|
msgid "Check Dependency"
|
||||||
msgstr "Periksa dependensi"
|
msgstr "Periksa Ketergantungan"
|
||||||
|
|
||||||
#: print.go:41
|
#: print.go:41
|
||||||
msgid "Check Deps"
|
msgid "Check Deps"
|
||||||
msgstr "Periksa Ketergantungan"
|
msgstr "Periksa Ketergantungan"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:89
|
#: pkg/upgrade/service.go:90
|
||||||
msgid "Checking development packages..."
|
msgid "Checking development packages..."
|
||||||
msgstr "Memeriksa paket-paket pengembangan..."
|
msgstr "Memeriksa paket-paket pengembangan..."
|
||||||
|
|
||||||
@ -221,7 +204,7 @@ msgstr "Edit PKGBUILD dengan?"
|
|||||||
msgid "Error during AUR search: %s\n"
|
msgid "Error during AUR search: %s\n"
|
||||||
msgstr "Terjadi kesalahan melakukan pencarian AUR: %s\n"
|
msgstr "Terjadi kesalahan melakukan pencarian AUR: %s\n"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:295
|
#: pkg/upgrade/service.go:296
|
||||||
msgid "Excluding packages may cause partial upgrades and break systems"
|
msgid "Excluding packages may cause partial upgrades and break systems"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Tidak menyertakan paket dapat menyebabkan peningkatan parsial dan merusak "
|
"Tidak menyertakan paket dapat menyebabkan peningkatan parsial dan merusak "
|
||||||
@ -252,7 +235,7 @@ msgstr "Gagal memasang paket berikut. Intervensi manual dibutuhkan:"
|
|||||||
msgid "First Submitted"
|
msgid "First Submitted"
|
||||||
msgstr "Pengiriman Pertama"
|
msgstr "Pengiriman Pertama"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:83
|
#: pkg/query/aur_warnings.go:79
|
||||||
msgid "Flagged Out Of Date AUR Packages:"
|
msgid "Flagged Out Of Date AUR Packages:"
|
||||||
msgstr "Paket AUR Yang Ditandai Sebagai Kedaluwarsa:"
|
msgstr "Paket AUR Yang Ditandai Sebagai Kedaluwarsa:"
|
||||||
|
|
||||||
@ -308,14 +291,14 @@ msgstr "Ketergantungan Make"
|
|||||||
msgid "Make Deps"
|
msgid "Make Deps"
|
||||||
msgstr "Dependensi Make"
|
msgstr "Dependensi Make"
|
||||||
|
|
||||||
|
#: pkg/query/aur_warnings.go:71
|
||||||
|
msgid "Missing AUR Debug Packages:"
|
||||||
|
msgstr "Paket Debug AUR Yang Tidak Ditemukan:"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:79
|
#: pkg/dep/dep_graph.go:79
|
||||||
msgid "Missing"
|
msgid "Missing"
|
||||||
msgstr "Tidak Ditemukan"
|
msgstr "Tidak Ditemukan"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:75
|
|
||||||
msgid "Missing AUR Debug Packages:"
|
|
||||||
msgstr "Paket Debug AUR Yang Tidak Ditemukan:"
|
|
||||||
|
|
||||||
#: print.go:31
|
#: print.go:31
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nama"
|
msgstr "Nama"
|
||||||
@ -336,7 +319,7 @@ msgstr "Tidak Ada"
|
|||||||
msgid "Optional Deps"
|
msgid "Optional Deps"
|
||||||
msgstr "Dependensi Opsional"
|
msgstr "Dependensi Opsional"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:79
|
#: pkg/query/aur_warnings.go:75
|
||||||
msgid "Orphan (unmaintained) AUR Packages:"
|
msgid "Orphan (unmaintained) AUR Packages:"
|
||||||
msgstr "Paket AUR Tersendiri (tidak dipelihara):"
|
msgstr "Paket AUR Tersendiri (tidak dipelihara):"
|
||||||
|
|
||||||
@ -356,15 +339,15 @@ msgstr "PKGBUILD sudah terbaru, melewati pengunduhan: %s"
|
|||||||
msgid "PKGBUILDs to edit?"
|
msgid "PKGBUILDs to edit?"
|
||||||
msgstr "PKGBUILD apa saja untuk diedit?"
|
msgstr "PKGBUILD apa saja untuk diedit?"
|
||||||
|
|
||||||
#: print.go:61
|
|
||||||
msgid "Package Base"
|
|
||||||
msgstr "Basis Paket"
|
|
||||||
|
|
||||||
#: print.go:60
|
#: print.go:60
|
||||||
msgid "Package Base ID"
|
msgid "Package Base ID"
|
||||||
msgstr "ID Basis Paket"
|
msgstr "ID Basis Paket"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:71
|
#: print.go:61
|
||||||
|
msgid "Package Base"
|
||||||
|
msgstr "Basis Paket"
|
||||||
|
|
||||||
|
#: pkg/query/aur_warnings.go:67
|
||||||
msgid "Packages not in AUR:"
|
msgid "Packages not in AUR:"
|
||||||
msgstr "Paket yang tidak ada di AUR:"
|
msgstr "Paket yang tidak ada di AUR:"
|
||||||
|
|
||||||
@ -376,7 +359,7 @@ msgstr "Paket-paket di bangunBersih?"
|
|||||||
msgid "Packages to exclude"
|
msgid "Packages to exclude"
|
||||||
msgstr "Paket untuk tidak disertakan"
|
msgstr "Paket untuk tidak disertakan"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:294
|
#: pkg/upgrade/service.go:295
|
||||||
msgid "Packages to exclude: (eg: \"1 2 3\", \"1-3\", \"^4\" or repo name)"
|
msgid "Packages to exclude: (eg: \"1 2 3\", \"1-3\", \"^4\" or repo name)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Paket-paket yang tidak disertakan: (mis: \"1 2 3\", \"1-3\", \"^4\", atau "
|
"Paket-paket yang tidak disertakan: (mis: \"1 2 3\", \"1-3\", \"^4\", atau "
|
||||||
@ -392,7 +375,7 @@ msgstr "Popularitas"
|
|||||||
|
|
||||||
#: pkg/menus/diff_menu.go:172 pkg/menus/edit_menu.go:143
|
#: pkg/menus/diff_menu.go:172 pkg/menus/edit_menu.go:143
|
||||||
msgid "Proceed with install?"
|
msgid "Proceed with install?"
|
||||||
msgstr "Lanjutkan dengan instalasi?"
|
msgstr "Lanjutkan dengan pemasangan?"
|
||||||
|
|
||||||
#: print.go:37
|
#: print.go:37
|
||||||
msgid "Provides"
|
msgid "Provides"
|
||||||
@ -406,25 +389,25 @@ msgstr "Hapus dependensi make setelah pemasangan?"
|
|||||||
msgid "Replaces"
|
msgid "Replaces"
|
||||||
msgstr "Menggantikan"
|
msgstr "Menggantikan"
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:191 print.go:30
|
|
||||||
msgid "Repository"
|
|
||||||
msgstr "Repositori"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:730
|
#: pkg/dep/dep_graph.go:730
|
||||||
msgid "Repository AUR"
|
msgid "Repository AUR"
|
||||||
msgstr "Repositori AUR"
|
msgstr "Repositori AUR"
|
||||||
|
|
||||||
|
#: print.go:30 pkg/db/ialpm/alpm.go:191
|
||||||
|
msgid "Repository"
|
||||||
|
msgstr "Repositori"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:78
|
#: pkg/dep/dep_graph.go:78
|
||||||
msgid "SRCINFO"
|
msgid "SRCINFO"
|
||||||
msgstr "SRCINFO"
|
msgstr "SRCINFO"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:71
|
#: pkg/upgrade/service.go:72
|
||||||
msgid "Searching AUR for updates..."
|
msgid "Searching AUR for updates..."
|
||||||
msgstr "Mencari AUR untuk pembaruan..."
|
msgstr "Mencari AUR untuk pembaruan..."
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:159
|
#: pkg/upgrade/service.go:160
|
||||||
msgid "Searching databases for updates..."
|
msgid "Searching databases for updates..."
|
||||||
msgstr "Mencari database untuk pembaruan..."
|
msgstr "Mencari basis data untuk pembaruan..."
|
||||||
|
|
||||||
#: pkg/query/query_builder.go:214
|
#: pkg/query/query_builder.go:214
|
||||||
msgid "Showing repo packages only"
|
msgid "Showing repo packages only"
|
||||||
@ -455,8 +438,8 @@ msgid "The following packages are not compatible with your architecture:"
|
|||||||
msgstr "Paket-paket berikut ini tidak kompatibel dengan arsitektur Anda:"
|
msgstr "Paket-paket berikut ini tidak kompatibel dengan arsitektur Anda:"
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:179 pkg/dep/dep_graph.go:726
|
#: pkg/db/ialpm/alpm.go:179 pkg/dep/dep_graph.go:726
|
||||||
msgid "There are %[1]d providers available for %[2]s:"
|
msgid "There are %d providers available for %s:"
|
||||||
msgstr "Tersedia %[1]d penyedia untuk %[2]s:"
|
msgstr "Tersedia %d penyedia untuk %s:"
|
||||||
|
|
||||||
#: pkg/settings/exe/cmd_builder.go:258
|
#: pkg/settings/exe/cmd_builder.go:258
|
||||||
msgid "There may be another Pacman instance running. Waiting..."
|
msgid "There may be another Pacman instance running. Waiting..."
|
||||||
@ -510,6 +493,22 @@ msgstr "Yay versi v%s"
|
|||||||
msgid "[N]one"
|
msgid "[N]one"
|
||||||
msgstr "[T]idak Ada"
|
msgstr "[T]idak Ada"
|
||||||
|
|
||||||
|
#: clean.go:83
|
||||||
|
msgid ""
|
||||||
|
"\n"
|
||||||
|
"Build directory:"
|
||||||
|
msgstr ""
|
||||||
|
"\n"
|
||||||
|
"Direktori pembangunan:"
|
||||||
|
|
||||||
|
#: pkg/db/ialpm/alpm.go:201 pkg/dep/dep_graph.go:740
|
||||||
|
msgid ""
|
||||||
|
"\n"
|
||||||
|
"Enter a number (default=1): "
|
||||||
|
msgstr ""
|
||||||
|
"\n"
|
||||||
|
"Masukkan sebuah nomor (bawaan=1):"
|
||||||
|
|
||||||
#: pkg/settings/errors.go:29
|
#: pkg/settings/errors.go:29
|
||||||
msgid "aborting due to user"
|
msgid "aborting due to user"
|
||||||
msgstr "membatalkan karena pengguna"
|
msgstr "membatalkan karena pengguna"
|
||||||
@ -538,11 +537,11 @@ msgstr "tidak dapat menemukan semua paket yang dibutuhkan"
|
|||||||
msgid "could not find any package archives listed in %s"
|
msgid "could not find any package archives listed in %s"
|
||||||
msgstr "tidak dapat mencari paket arsip apa pun yang terdaftar di %s"
|
msgstr "tidak dapat mencari paket arsip apa pun yang terdaftar di %s"
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:50 pkg/upgrade/service.go:286
|
#: pkg/sync/build/errors.go:50 pkg/upgrade/service.go:287
|
||||||
msgid "dependency"
|
msgid "dependency"
|
||||||
msgstr "ketergantungan"
|
msgstr "ketergantungan"
|
||||||
|
|
||||||
#: pkg/vcs/vcs.go:100 pkg/vcs/vcs.go:96
|
#: pkg/vcs/vcs.go:96 pkg/vcs/vcs.go:100
|
||||||
msgid "devel check for package failed: '%s' encountered an error"
|
msgid "devel check for package failed: '%s' encountered an error"
|
||||||
msgstr "pemeriksaan devel untuk paket gagal: '%s' mengalami sebuah kesalahan"
|
msgstr "pemeriksaan devel untuk paket gagal: '%s' mengalami sebuah kesalahan"
|
||||||
|
|
||||||
@ -652,10 +651,6 @@ msgstr "repositori tidak valid"
|
|||||||
msgid "invalid value: %d is not between %d and %d"
|
msgid "invalid value: %d is not between %d and %d"
|
||||||
msgstr "nilai tidak valid: %d tidak di antara %d dan %d"
|
msgstr "nilai tidak valid: %d tidak di antara %d dan %d"
|
||||||
|
|
||||||
#: pkg/text/input.go:48
|
|
||||||
msgid "no"
|
|
||||||
msgstr "tidak"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:110
|
#: pkg/sync/srcinfo/pgp/keys.go:110
|
||||||
msgid "no keys to import"
|
msgid "no keys to import"
|
||||||
msgstr "tidak ada kunci-kunci untuk diimpor"
|
msgstr "tidak ada kunci-kunci untuk diimpor"
|
||||||
@ -668,6 +663,10 @@ msgstr "tidak ada pencarian yang dilakukan"
|
|||||||
msgid "no target directories specified"
|
msgid "no target directories specified"
|
||||||
msgstr "tidak ada sasaran direktori yang ditetapkan"
|
msgstr "tidak ada sasaran direktori yang ditetapkan"
|
||||||
|
|
||||||
|
#: pkg/text/input.go:48
|
||||||
|
msgid "no"
|
||||||
|
msgstr "tidak"
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:242
|
#: pkg/sync/build/installer.go:242
|
||||||
msgid "nothing to install for %s"
|
msgid "nothing to install for %s"
|
||||||
msgstr "tidka ada yang untuk dipasang untuk %s"
|
msgstr "tidka ada yang untuk dipasang untuk %s"
|
||||||
@ -680,11 +679,6 @@ msgstr "hanya satu operasi yang dapat digunakan"
|
|||||||
msgid "only one target is allowed"
|
msgid "only one target is allowed"
|
||||||
msgstr "hanya satu target yang diperbolehkan"
|
msgstr "hanya satu target yang diperbolehkan"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:291
|
|
||||||
msgid "package"
|
|
||||||
msgid_plural "packages"
|
|
||||||
msgstr[0] "paket"
|
|
||||||
|
|
||||||
#: print.go:187
|
#: print.go:187
|
||||||
msgid "package '%s' was not found"
|
msgid "package '%s' was not found"
|
||||||
msgstr "paket '%s' tidak ditemukan"
|
msgstr "paket '%s' tidak ditemukan"
|
||||||
@ -697,6 +691,11 @@ msgstr "paket tidak ditemukan di AUR"
|
|||||||
msgid "package not found in repos"
|
msgid "package not found in repos"
|
||||||
msgstr "paket tidak ditemukan di repositori"
|
msgstr "paket tidak ditemukan di repositori"
|
||||||
|
|
||||||
|
#: pkg/upgrade/service.go:292
|
||||||
|
msgid "package"
|
||||||
|
msgid_plural "packages"
|
||||||
|
msgstr[0] "paket"
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:100
|
#: pkg/sync/srcinfo/pgp/keys.go:100
|
||||||
msgid "problem importing keys"
|
msgid "problem importing keys"
|
||||||
msgstr "terjadi masalah mengimpor kunci-kunci"
|
msgstr "terjadi masalah mengimpor kunci-kunci"
|
||||||
|
122
po/it_IT.po
122
po/it_IT.po
@ -4,11 +4,11 @@
|
|||||||
# Giulio Terigi, 2022
|
# Giulio Terigi, 2022
|
||||||
# Simone Dotto <simonedotto@protonmail.com>, 2022
|
# Simone Dotto <simonedotto@protonmail.com>, 2022
|
||||||
# jheitz223, 2023
|
# jheitz223, 2023
|
||||||
# Vincenzo Reale <vinx.reale@gmail.com>, 2024
|
# Vincenzo Reale <vinx.reale@gmail.com>, 2023
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>, 2024\n"
|
"Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>, 2023\n"
|
||||||
"Language-Team: Italian (Italy) (https://app.transifex.com/yay-1/teams/123732/it_IT/)\n"
|
"Language-Team: Italian (Italy) (https://app.transifex.com/yay-1/teams/123732/it_IT/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
@ -17,22 +17,6 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||||
"X-Generator: xgotext\n"
|
"X-Generator: xgotext\n"
|
||||||
|
|
||||||
#: clean.go:83
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
"Build directory:"
|
|
||||||
msgstr ""
|
|
||||||
"\n"
|
|
||||||
"Cartella di compilazione:"
|
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:201 pkg/dep/dep_graph.go:740
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
"Enter a number (default=1): "
|
|
||||||
msgstr ""
|
|
||||||
"\n"
|
|
||||||
"Inserisci un numero (predefinito=1) "
|
|
||||||
|
|
||||||
#: pkg/menus/menu.go:32
|
#: pkg/menus/menu.go:32
|
||||||
msgid " (Build Files Exist)"
|
msgid " (Build Files Exist)"
|
||||||
msgstr " (I file di compilazione sono già presenti)"
|
msgstr " (I file di compilazione sono già presenti)"
|
||||||
@ -70,11 +54,11 @@ msgstr "%s è presente."
|
|||||||
msgid "%s is up to date -- skipping"
|
msgid "%s is up to date -- skipping"
|
||||||
msgstr "%s è aggiornato -- ignorato"
|
msgstr "%s è aggiornato -- ignorato"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:291
|
#: pkg/upgrade/service.go:292
|
||||||
msgid "%s to upgrade/install."
|
msgid "%s to upgrade/install."
|
||||||
msgstr "%s da aggiornare/installare."
|
msgstr "%s da aggiornare/installare."
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:285
|
#: pkg/upgrade/service.go:286
|
||||||
msgid "%s will also be installed for this operation."
|
msgid "%s will also be installed for this operation."
|
||||||
msgstr "%s sarà inoltre installato per questa operazione."
|
msgstr "%s sarà inoltre installato per questa operazione."
|
||||||
|
|
||||||
@ -126,11 +110,11 @@ msgstr "(%d/%d) Scaricamento PKGBUILD non riuscito: %s"
|
|||||||
msgid "(%d/%d) Parsing SRCINFO: %s"
|
msgid "(%d/%d) Parsing SRCINFO: %s"
|
||||||
msgstr "(%d/%d) Analisi SRCINFO: %s"
|
msgstr "(%d/%d) Analisi SRCINFO: %s"
|
||||||
|
|
||||||
#: pkg/query/types.go:103 pkg/query/types.go:72
|
#: pkg/query/types.go:72 pkg/query/types.go:103
|
||||||
msgid "(Installed)"
|
msgid "(Installed)"
|
||||||
msgstr "(Installato)"
|
msgstr "(Installato)"
|
||||||
|
|
||||||
#: pkg/query/types.go:101 pkg/query/types.go:70
|
#: pkg/query/types.go:70 pkg/query/types.go:101
|
||||||
msgid "(Installed: %s)"
|
msgid "(Installed: %s)"
|
||||||
msgstr "(Installato: %s)"
|
msgstr "(Installato: %s)"
|
||||||
|
|
||||||
@ -142,14 +126,14 @@ msgstr "(Orfano)"
|
|||||||
msgid "(Out-of-date: %s)"
|
msgid "(Out-of-date: %s)"
|
||||||
msgstr "(Obsoleto: %s)"
|
msgstr "(Obsoleto: %s)"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:75
|
|
||||||
msgid "AUR"
|
|
||||||
msgstr "AUR"
|
|
||||||
|
|
||||||
#: print.go:44
|
#: print.go:44
|
||||||
msgid "AUR URL"
|
msgid "AUR URL"
|
||||||
msgstr "URL di AUR"
|
msgstr "URL di AUR"
|
||||||
|
|
||||||
|
#: pkg/dep/dep_graph.go:75
|
||||||
|
msgid "AUR"
|
||||||
|
msgstr "AUR"
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:58
|
#: pkg/menus/edit_menu.go:58
|
||||||
msgid "Add %s or %s to your environment variables"
|
msgid "Add %s or %s to your environment variables"
|
||||||
msgstr "Aggiungi %s o %s alle tue variabili d'ambiente"
|
msgstr "Aggiungi %s o %s alle tue variabili d'ambiente"
|
||||||
@ -166,7 +150,7 @@ msgstr "Controllo dipendenza"
|
|||||||
msgid "Check Deps"
|
msgid "Check Deps"
|
||||||
msgstr "Controllo dipendenze"
|
msgstr "Controllo dipendenze"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:89
|
#: pkg/upgrade/service.go:90
|
||||||
msgid "Checking development packages..."
|
msgid "Checking development packages..."
|
||||||
msgstr "Verifica dei pacchetti di sviluppo in corso..."
|
msgstr "Verifica dei pacchetti di sviluppo in corso..."
|
||||||
|
|
||||||
@ -222,7 +206,7 @@ msgstr "Con cosa modificare il PKGBUILD?"
|
|||||||
msgid "Error during AUR search: %s\n"
|
msgid "Error during AUR search: %s\n"
|
||||||
msgstr "Errore durante la ricerca in AUR: %s\n"
|
msgstr "Errore durante la ricerca in AUR: %s\n"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:295
|
#: pkg/upgrade/service.go:296
|
||||||
msgid "Excluding packages may cause partial upgrades and break systems"
|
msgid "Excluding packages may cause partial upgrades and break systems"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"L'esclusione di pacchetti potrebbe causare aggiornamenti parziali e "
|
"L'esclusione di pacchetti potrebbe causare aggiornamenti parziali e "
|
||||||
@ -256,7 +240,7 @@ msgstr ""
|
|||||||
msgid "First Submitted"
|
msgid "First Submitted"
|
||||||
msgstr "Primo invio"
|
msgstr "Primo invio"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:83
|
#: pkg/query/aur_warnings.go:79
|
||||||
msgid "Flagged Out Of Date AUR Packages:"
|
msgid "Flagged Out Of Date AUR Packages:"
|
||||||
msgstr "Pacchetti AUR con flag obsoleto:"
|
msgstr "Pacchetti AUR con flag obsoleto:"
|
||||||
|
|
||||||
@ -312,14 +296,14 @@ msgstr "Dipendenza Make"
|
|||||||
msgid "Make Deps"
|
msgid "Make Deps"
|
||||||
msgstr "Make dipendenze"
|
msgstr "Make dipendenze"
|
||||||
|
|
||||||
|
#: pkg/query/aur_warnings.go:71
|
||||||
|
msgid "Missing AUR Debug Packages:"
|
||||||
|
msgstr "Pacchetti AUR di debug mancanti:"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:79
|
#: pkg/dep/dep_graph.go:79
|
||||||
msgid "Missing"
|
msgid "Missing"
|
||||||
msgstr "Mancante"
|
msgstr "Mancante"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:75
|
|
||||||
msgid "Missing AUR Debug Packages:"
|
|
||||||
msgstr "Pacchetti AUR di debug mancanti:"
|
|
||||||
|
|
||||||
#: print.go:31
|
#: print.go:31
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nome"
|
msgstr "Nome"
|
||||||
@ -340,7 +324,7 @@ msgstr "Nessuno"
|
|||||||
msgid "Optional Deps"
|
msgid "Optional Deps"
|
||||||
msgstr "Dipendenze opzionali"
|
msgstr "Dipendenze opzionali"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:79
|
#: pkg/query/aur_warnings.go:75
|
||||||
msgid "Orphan (unmaintained) AUR Packages:"
|
msgid "Orphan (unmaintained) AUR Packages:"
|
||||||
msgstr "Pacchetti AUR orfani (non mantenuti):"
|
msgstr "Pacchetti AUR orfani (non mantenuti):"
|
||||||
|
|
||||||
@ -360,15 +344,15 @@ msgstr "PKGBUILD aggiornato, scaricamento ignorato: %s"
|
|||||||
msgid "PKGBUILDs to edit?"
|
msgid "PKGBUILDs to edit?"
|
||||||
msgstr "Quali PKGBUILD modificare?"
|
msgstr "Quali PKGBUILD modificare?"
|
||||||
|
|
||||||
#: print.go:61
|
|
||||||
msgid "Package Base"
|
|
||||||
msgstr "Pacchetto base"
|
|
||||||
|
|
||||||
#: print.go:60
|
#: print.go:60
|
||||||
msgid "Package Base ID"
|
msgid "Package Base ID"
|
||||||
msgstr "ID pacchetto base"
|
msgstr "ID pacchetto base"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:71
|
#: print.go:61
|
||||||
|
msgid "Package Base"
|
||||||
|
msgstr "Pacchetto base"
|
||||||
|
|
||||||
|
#: pkg/query/aur_warnings.go:67
|
||||||
msgid "Packages not in AUR:"
|
msgid "Packages not in AUR:"
|
||||||
msgstr "Pacchetti non in AUR:"
|
msgstr "Pacchetti non in AUR:"
|
||||||
|
|
||||||
@ -380,7 +364,7 @@ msgstr "Pacchetti da compilare in modo pulito?"
|
|||||||
msgid "Packages to exclude"
|
msgid "Packages to exclude"
|
||||||
msgstr "Pacchetti da escludere"
|
msgstr "Pacchetti da escludere"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:294
|
#: pkg/upgrade/service.go:295
|
||||||
msgid "Packages to exclude: (eg: \"1 2 3\", \"1-3\", \"^4\" or repo name)"
|
msgid "Packages to exclude: (eg: \"1 2 3\", \"1-3\", \"^4\" or repo name)"
|
||||||
msgstr "Pacchetti da escludere: (es: \"1 2 3\", \"1-3\", \"^4\" o il nome del repo)"
|
msgstr "Pacchetti da escludere: (es: \"1 2 3\", \"1-3\", \"^4\" o il nome del repo)"
|
||||||
|
|
||||||
@ -408,23 +392,23 @@ msgstr "Rimuovere le dipendenze di make dopo l'installazione?"
|
|||||||
msgid "Replaces"
|
msgid "Replaces"
|
||||||
msgstr "Sostituisce"
|
msgstr "Sostituisce"
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:191 print.go:30
|
|
||||||
msgid "Repository"
|
|
||||||
msgstr "Repository"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:730
|
#: pkg/dep/dep_graph.go:730
|
||||||
msgid "Repository AUR"
|
msgid "Repository AUR"
|
||||||
msgstr "Repository AUR"
|
msgstr "Repository AUR"
|
||||||
|
|
||||||
|
#: print.go:30 pkg/db/ialpm/alpm.go:191
|
||||||
|
msgid "Repository"
|
||||||
|
msgstr "Repository"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:78
|
#: pkg/dep/dep_graph.go:78
|
||||||
msgid "SRCINFO"
|
msgid "SRCINFO"
|
||||||
msgstr "SRCINFO"
|
msgstr "SRCINFO"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:71
|
#: pkg/upgrade/service.go:72
|
||||||
msgid "Searching AUR for updates..."
|
msgid "Searching AUR for updates..."
|
||||||
msgstr "Ricerca di aggiornamenti su AUR in corso..."
|
msgstr "Ricerca di aggiornamenti su AUR in corso..."
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:159
|
#: pkg/upgrade/service.go:160
|
||||||
msgid "Searching databases for updates..."
|
msgid "Searching databases for updates..."
|
||||||
msgstr "Ricerca di aggiornamenti nei database in corso..."
|
msgstr "Ricerca di aggiornamenti nei database in corso..."
|
||||||
|
|
||||||
@ -457,8 +441,8 @@ msgid "The following packages are not compatible with your architecture:"
|
|||||||
msgstr "I seguenti pacchetti non sono compatibili con la tua architettura:"
|
msgstr "I seguenti pacchetti non sono compatibili con la tua architettura:"
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:179 pkg/dep/dep_graph.go:726
|
#: pkg/db/ialpm/alpm.go:179 pkg/dep/dep_graph.go:726
|
||||||
msgid "There are %[1]d providers available for %[2]s:"
|
msgid "There are %d providers available for %s:"
|
||||||
msgstr "Ci sono %[1]d fornitori disponibili per %[2]s:"
|
msgstr "Ci sono %d fornitori disponibili per %s:"
|
||||||
|
|
||||||
#: pkg/settings/exe/cmd_builder.go:258
|
#: pkg/settings/exe/cmd_builder.go:258
|
||||||
msgid "There may be another Pacman instance running. Waiting..."
|
msgid "There may be another Pacman instance running. Waiting..."
|
||||||
@ -513,6 +497,22 @@ msgstr "Versione di yay v%s"
|
|||||||
msgid "[N]one"
|
msgid "[N]one"
|
||||||
msgstr "[N]essuno"
|
msgstr "[N]essuno"
|
||||||
|
|
||||||
|
#: clean.go:83
|
||||||
|
msgid ""
|
||||||
|
"\n"
|
||||||
|
"Build directory:"
|
||||||
|
msgstr ""
|
||||||
|
"\n"
|
||||||
|
"Cartella di compilazione:"
|
||||||
|
|
||||||
|
#: pkg/db/ialpm/alpm.go:201 pkg/dep/dep_graph.go:740
|
||||||
|
msgid ""
|
||||||
|
"\n"
|
||||||
|
"Enter a number (default=1): "
|
||||||
|
msgstr ""
|
||||||
|
"\n"
|
||||||
|
"Inserisci un numero (predefinito=1) "
|
||||||
|
|
||||||
#: pkg/settings/errors.go:29
|
#: pkg/settings/errors.go:29
|
||||||
msgid "aborting due to user"
|
msgid "aborting due to user"
|
||||||
msgstr "interruzione su richiesta dell'utente in corso"
|
msgstr "interruzione su richiesta dell'utente in corso"
|
||||||
@ -541,11 +541,11 @@ msgstr "impossibile trovare tutti i pacchetti richiesti"
|
|||||||
msgid "could not find any package archives listed in %s"
|
msgid "could not find any package archives listed in %s"
|
||||||
msgstr "impossibile trovare alcun archivio di pacchetti elencato in %s"
|
msgstr "impossibile trovare alcun archivio di pacchetti elencato in %s"
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:50 pkg/upgrade/service.go:286
|
#: pkg/sync/build/errors.go:50 pkg/upgrade/service.go:287
|
||||||
msgid "dependency"
|
msgid "dependency"
|
||||||
msgstr "dipendenza"
|
msgstr "dipendenza"
|
||||||
|
|
||||||
#: pkg/vcs/vcs.go:100 pkg/vcs/vcs.go:96
|
#: pkg/vcs/vcs.go:96 pkg/vcs/vcs.go:100
|
||||||
msgid "devel check for package failed: '%s' encountered an error"
|
msgid "devel check for package failed: '%s' encountered an error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"devel check non riuscito per il pacchetto: '%s' ha riscontrato un errore"
|
"devel check non riuscito per il pacchetto: '%s' ha riscontrato un errore"
|
||||||
@ -659,10 +659,6 @@ msgstr "repository non valido"
|
|||||||
msgid "invalid value: %d is not between %d and %d"
|
msgid "invalid value: %d is not between %d and %d"
|
||||||
msgstr "valore non valido: %d non è compreso tra %d e %d"
|
msgstr "valore non valido: %d non è compreso tra %d e %d"
|
||||||
|
|
||||||
#: pkg/text/input.go:48
|
|
||||||
msgid "no"
|
|
||||||
msgstr "no"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:110
|
#: pkg/sync/srcinfo/pgp/keys.go:110
|
||||||
msgid "no keys to import"
|
msgid "no keys to import"
|
||||||
msgstr "nessuna chiave da importare"
|
msgstr "nessuna chiave da importare"
|
||||||
@ -675,6 +671,10 @@ msgstr "nessuna richiesta è stata eseguita"
|
|||||||
msgid "no target directories specified"
|
msgid "no target directories specified"
|
||||||
msgstr "nessuna cartella di destinazione specificata"
|
msgstr "nessuna cartella di destinazione specificata"
|
||||||
|
|
||||||
|
#: pkg/text/input.go:48
|
||||||
|
msgid "no"
|
||||||
|
msgstr "no"
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:242
|
#: pkg/sync/build/installer.go:242
|
||||||
msgid "nothing to install for %s"
|
msgid "nothing to install for %s"
|
||||||
msgstr "nulla da installare per %s"
|
msgstr "nulla da installare per %s"
|
||||||
@ -687,13 +687,6 @@ msgstr "è possibile eseguire una sola operazione alla volta"
|
|||||||
msgid "only one target is allowed"
|
msgid "only one target is allowed"
|
||||||
msgstr "è permessa solo una destinazione"
|
msgstr "è permessa solo una destinazione"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:291
|
|
||||||
msgid "package"
|
|
||||||
msgid_plural "packages"
|
|
||||||
msgstr[0] "pacchetto"
|
|
||||||
msgstr[1] "pacchetti"
|
|
||||||
msgstr[2] "pacchetti"
|
|
||||||
|
|
||||||
#: print.go:187
|
#: print.go:187
|
||||||
msgid "package '%s' was not found"
|
msgid "package '%s' was not found"
|
||||||
msgstr "il pacchetto '%s' non è stato trovato"
|
msgstr "il pacchetto '%s' non è stato trovato"
|
||||||
@ -706,6 +699,13 @@ msgstr "pacchetto non trovato su AUR"
|
|||||||
msgid "package not found in repos"
|
msgid "package not found in repos"
|
||||||
msgstr "pacchetto non trovato nei repository"
|
msgstr "pacchetto non trovato nei repository"
|
||||||
|
|
||||||
|
#: pkg/upgrade/service.go:292
|
||||||
|
msgid "package"
|
||||||
|
msgid_plural "packages"
|
||||||
|
msgstr[0] "pacchetto"
|
||||||
|
msgstr[1] "pacchetti"
|
||||||
|
msgstr[2] "pacchetti"
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:100
|
#: pkg/sync/srcinfo/pgp/keys.go:100
|
||||||
msgid "problem importing keys"
|
msgid "problem importing keys"
|
||||||
msgstr "problema durante l'importazione delle chiavi"
|
msgstr "problema durante l'importazione delle chiavi"
|
||||||
|
4
po/ja.po
4
po/ja.po
@ -450,8 +450,8 @@ msgstr ""
|
|||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:179 pkg/dep/dep_graph.go:726
|
#: pkg/db/ialpm/alpm.go:179 pkg/dep/dep_graph.go:726
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "There are %[1]d providers available for %[2]s:"
|
msgid "There are %d providers available for %s:"
|
||||||
msgstr "%[1]d 個のパッケージが %[2]s を提供しています:\n"
|
msgstr "%d 個のパッケージが %s を提供しています:\n"
|
||||||
|
|
||||||
#: pkg/settings/exe/cmd_builder.go:258
|
#: pkg/settings/exe/cmd_builder.go:258
|
||||||
msgid "There may be another Pacman instance running. Waiting..."
|
msgid "There may be another Pacman instance running. Waiting..."
|
||||||
|
137
po/ko.po
137
po/ko.po
@ -1,35 +1,19 @@
|
|||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# J G, 2021
|
# J G, 2021
|
||||||
# Junghee Lee <daemul72@gmail.com>, 2025
|
# JungHee Lee <daemul72@gmail.com>, 2023
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Last-Translator: Junghee Lee <daemul72@gmail.com>, 2025\n"
|
"Last-Translator: JungHee Lee <daemul72@gmail.com>, 2023\n"
|
||||||
"Language-Team: Korean (https://app.transifex.com/yay-1/teams/123732/ko/)\n"
|
"Language-Team: Korean (https://app.transifex.com/yay-1/teams/123732/ko/)\n"
|
||||||
|
"Language: ko\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Language: ko\n"
|
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Generator: xgotext\n"
|
"X-Generator: xgotext\n"
|
||||||
|
|
||||||
#: clean.go:83
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
"Build directory:"
|
|
||||||
msgstr ""
|
|
||||||
"\n"
|
|
||||||
"빌드 디렉터리:"
|
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:201 pkg/dep/dep_graph.go:740
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
"Enter a number (default=1): "
|
|
||||||
msgstr ""
|
|
||||||
"\n"
|
|
||||||
"숫자를 입력하세요 (기본값=1): "
|
|
||||||
|
|
||||||
#: pkg/menus/menu.go:32
|
#: pkg/menus/menu.go:32
|
||||||
msgid " (Build Files Exist)"
|
msgid " (Build Files Exist)"
|
||||||
msgstr " (빌드 파일 존재)"
|
msgstr " (빌드 파일 존재)"
|
||||||
@ -66,11 +50,11 @@ msgstr "%s가 존재합니다."
|
|||||||
msgid "%s is up to date -- skipping"
|
msgid "%s is up to date -- skipping"
|
||||||
msgstr "%s 최신 버전임 -- 건너뛰는 중"
|
msgstr "%s 최신 버전임 -- 건너뛰는 중"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:291
|
#: pkg/upgrade/service.go:292
|
||||||
msgid "%s to upgrade/install."
|
msgid "%s to upgrade/install."
|
||||||
msgstr "업그레이드/설치하려면 %s 선택합니다."
|
msgstr "업그레이드/설치하려면 %s 선택합니다."
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:285
|
#: pkg/upgrade/service.go:286
|
||||||
msgid "%s will also be installed for this operation."
|
msgid "%s will also be installed for this operation."
|
||||||
msgstr "이 작업을 위해 %s 또한 설치됩니다."
|
msgstr "이 작업을 위해 %s 또한 설치됩니다."
|
||||||
|
|
||||||
@ -100,8 +84,7 @@ msgstr "%s: 로컬 (%s) 버전이 AUR (%s)보다 높음"
|
|||||||
|
|
||||||
#: vote.go:51
|
#: vote.go:51
|
||||||
msgid ""
|
msgid ""
|
||||||
"%s: please set AUR_USERNAME and AUR_PASSWORD environment variables for "
|
"%s: please set AUR_USERNAME and AUR_PASSWORD environment variables for voting"
|
||||||
"voting"
|
|
||||||
msgstr "%s: 투표를 위해 AUR_USERNAME 및 AUR_PASSWORD 환경 변수를 설정하십시오"
|
msgstr "%s: 투표를 위해 AUR_USERNAME 및 AUR_PASSWORD 환경 변수를 설정하십시오"
|
||||||
|
|
||||||
#: pkg/download/unified.go:192
|
#: pkg/download/unified.go:192
|
||||||
@ -113,18 +96,19 @@ msgid "(%d/%d) Downloaded PKGBUILD: %s"
|
|||||||
msgstr "(%d/%d) PKGBUILD 다운로드됨: %s"
|
msgstr "(%d/%d) PKGBUILD 다운로드됨: %s"
|
||||||
|
|
||||||
#: pkg/download/aur.go:82
|
#: pkg/download/aur.go:82
|
||||||
|
#, fuzzy
|
||||||
msgid "(%d/%d) Failed to download PKGBUILD: %s"
|
msgid "(%d/%d) Failed to download PKGBUILD: %s"
|
||||||
msgstr "(%d/%d) PKGBUILD 다운로드에 실패함: %s"
|
msgstr "(%d/%d) PKGBUILD 다운로드됨: %s"
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/service.go:109
|
#: pkg/sync/srcinfo/service.go:109
|
||||||
msgid "(%d/%d) Parsing SRCINFO: %s"
|
msgid "(%d/%d) Parsing SRCINFO: %s"
|
||||||
msgstr "(%d/%d) SRCINFO 분석하는 중: %s"
|
msgstr "(%d/%d) SRCINFO 분석하는 중: %s"
|
||||||
|
|
||||||
#: pkg/query/types.go:103 pkg/query/types.go:72
|
#: pkg/query/types.go:72 pkg/query/types.go:103
|
||||||
msgid "(Installed)"
|
msgid "(Installed)"
|
||||||
msgstr "(설치됨)"
|
msgstr "(설치됨)"
|
||||||
|
|
||||||
#: pkg/query/types.go:101 pkg/query/types.go:70
|
#: pkg/query/types.go:70 pkg/query/types.go:101
|
||||||
msgid "(Installed: %s)"
|
msgid "(Installed: %s)"
|
||||||
msgstr "(설치됨: %s)"
|
msgstr "(설치됨: %s)"
|
||||||
|
|
||||||
@ -136,14 +120,14 @@ msgstr "(고립됨)"
|
|||||||
msgid "(Out-of-date: %s)"
|
msgid "(Out-of-date: %s)"
|
||||||
msgstr "(오래됨: %s)"
|
msgstr "(오래됨: %s)"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:75
|
|
||||||
msgid "AUR"
|
|
||||||
msgstr "AUR"
|
|
||||||
|
|
||||||
#: print.go:44
|
#: print.go:44
|
||||||
msgid "AUR URL"
|
msgid "AUR URL"
|
||||||
msgstr "AUR URL"
|
msgstr "AUR URL"
|
||||||
|
|
||||||
|
#: pkg/dep/dep_graph.go:75
|
||||||
|
msgid "AUR"
|
||||||
|
msgstr "AUR"
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:58
|
#: pkg/menus/edit_menu.go:58
|
||||||
msgid "Add %s or %s to your environment variables"
|
msgid "Add %s or %s to your environment variables"
|
||||||
msgstr "%s 또는 %s를 환경 변수에 추가합니다"
|
msgstr "%s 또는 %s를 환경 변수에 추가합니다"
|
||||||
@ -160,7 +144,7 @@ msgstr "종속성 확인"
|
|||||||
msgid "Check Deps"
|
msgid "Check Deps"
|
||||||
msgstr "종속성 확인"
|
msgstr "종속성 확인"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:89
|
#: pkg/upgrade/service.go:90
|
||||||
msgid "Checking development packages..."
|
msgid "Checking development packages..."
|
||||||
msgstr "개발 패키지 확인하는 중..."
|
msgstr "개발 패키지 확인하는 중..."
|
||||||
|
|
||||||
@ -216,7 +200,7 @@ msgstr "다음으로 PKGBUILD를 편집하시겠습니까?"
|
|||||||
msgid "Error during AUR search: %s\n"
|
msgid "Error during AUR search: %s\n"
|
||||||
msgstr "AUR 검색 중 오류: %s\n"
|
msgstr "AUR 검색 중 오류: %s\n"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:295
|
#: pkg/upgrade/service.go:296
|
||||||
msgid "Excluding packages may cause partial upgrades and break systems"
|
msgid "Excluding packages may cause partial upgrades and break systems"
|
||||||
msgstr "패키지를 제외하면 부분 업그레이드 및 시스템 중단이 발생할 수 있습니다."
|
msgstr "패키지를 제외하면 부분 업그레이드 및 시스템 중단이 발생할 수 있습니다."
|
||||||
|
|
||||||
@ -245,7 +229,7 @@ msgstr "다음 패키지를 설치하지 못했습니다. 수동 개입이 필
|
|||||||
msgid "First Submitted"
|
msgid "First Submitted"
|
||||||
msgstr "처음 제출됨"
|
msgstr "처음 제출됨"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:83
|
#: pkg/query/aur_warnings.go:79
|
||||||
msgid "Flagged Out Of Date AUR Packages:"
|
msgid "Flagged Out Of Date AUR Packages:"
|
||||||
msgstr "오래된 AUR 패키지로 플래그 지정됨:"
|
msgstr "오래된 AUR 패키지로 플래그 지정됨:"
|
||||||
|
|
||||||
@ -301,14 +285,14 @@ msgstr "종속성 만들기"
|
|||||||
msgid "Make Deps"
|
msgid "Make Deps"
|
||||||
msgstr "종속성 만들기"
|
msgstr "종속성 만들기"
|
||||||
|
|
||||||
|
#: pkg/query/aur_warnings.go:71
|
||||||
|
msgid "Missing AUR Debug Packages:"
|
||||||
|
msgstr "누락된 AUR 디버그 패키지:"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:79
|
#: pkg/dep/dep_graph.go:79
|
||||||
msgid "Missing"
|
msgid "Missing"
|
||||||
msgstr "누락됨"
|
msgstr "누락됨"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:75
|
|
||||||
msgid "Missing AUR Debug Packages:"
|
|
||||||
msgstr "누락된 AUR 디버그 패키지:"
|
|
||||||
|
|
||||||
#: print.go:31
|
#: print.go:31
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "이름"
|
msgstr "이름"
|
||||||
@ -318,8 +302,9 @@ msgid "No AUR package found for"
|
|||||||
msgstr "다음에 대한 AUR 패키지를 찾을 수 없음"
|
msgstr "다음에 대한 AUR 패키지를 찾을 수 없음"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:182
|
#: pkg/dep/dep_graph.go:182
|
||||||
|
#, fuzzy
|
||||||
msgid "No package found for"
|
msgid "No package found for"
|
||||||
msgstr "다음 패키지를 찾을 수 없음:"
|
msgstr "다음에 대한 AUR 패키지를 찾을 수 없음"
|
||||||
|
|
||||||
#: print.go:225
|
#: print.go:225
|
||||||
msgid "None"
|
msgid "None"
|
||||||
@ -329,7 +314,7 @@ msgstr "없음"
|
|||||||
msgid "Optional Deps"
|
msgid "Optional Deps"
|
||||||
msgstr "선택적 종속성"
|
msgstr "선택적 종속성"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:79
|
#: pkg/query/aur_warnings.go:75
|
||||||
msgid "Orphan (unmaintained) AUR Packages:"
|
msgid "Orphan (unmaintained) AUR Packages:"
|
||||||
msgstr "고립 (유지 관리되지 않는) AUR 패키지:"
|
msgstr "고립 (유지 관리되지 않는) AUR 패키지:"
|
||||||
|
|
||||||
@ -349,15 +334,15 @@ msgstr "PKGBUILD 최신 버전임, 다운로드 건너뛰는 중: %s"
|
|||||||
msgid "PKGBUILDs to edit?"
|
msgid "PKGBUILDs to edit?"
|
||||||
msgstr "PKGBUILD를 편집하시겠습니까?"
|
msgstr "PKGBUILD를 편집하시겠습니까?"
|
||||||
|
|
||||||
#: print.go:61
|
|
||||||
msgid "Package Base"
|
|
||||||
msgstr "패키지 베이스"
|
|
||||||
|
|
||||||
#: print.go:60
|
#: print.go:60
|
||||||
msgid "Package Base ID"
|
msgid "Package Base ID"
|
||||||
msgstr "패키지 베이스 ID"
|
msgstr "패키지 베이스 ID"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:71
|
#: print.go:61
|
||||||
|
msgid "Package Base"
|
||||||
|
msgstr "패키지 베이스"
|
||||||
|
|
||||||
|
#: pkg/query/aur_warnings.go:67
|
||||||
msgid "Packages not in AUR:"
|
msgid "Packages not in AUR:"
|
||||||
msgstr "AUR에 없는 패키지:"
|
msgstr "AUR에 없는 패키지:"
|
||||||
|
|
||||||
@ -369,7 +354,7 @@ msgstr "cleanBuild할 패키지는 무엇인가요?"
|
|||||||
msgid "Packages to exclude"
|
msgid "Packages to exclude"
|
||||||
msgstr "제외할 패키지"
|
msgstr "제외할 패키지"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:294
|
#: pkg/upgrade/service.go:295
|
||||||
msgid "Packages to exclude: (eg: \"1 2 3\", \"1-3\", \"^4\" or repo name)"
|
msgid "Packages to exclude: (eg: \"1 2 3\", \"1-3\", \"^4\" or repo name)"
|
||||||
msgstr "제외할 패키지: (예: \"1 2 3\", \"1-3\", \"^4\" 혹은 저장소 이름)"
|
msgstr "제외할 패키지: (예: \"1 2 3\", \"1-3\", \"^4\" 혹은 저장소 이름)"
|
||||||
|
|
||||||
@ -395,25 +380,25 @@ msgstr "설치 후 make 종속성을 제거하시겠습니까?"
|
|||||||
|
|
||||||
#: print.go:43
|
#: print.go:43
|
||||||
msgid "Replaces"
|
msgid "Replaces"
|
||||||
msgstr "교체하기"
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:191 print.go:30
|
|
||||||
msgid "Repository"
|
|
||||||
msgstr "저장소"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:730
|
#: pkg/dep/dep_graph.go:730
|
||||||
msgid "Repository AUR"
|
msgid "Repository AUR"
|
||||||
msgstr "저장소 AUR"
|
msgstr "저장소 AUR"
|
||||||
|
|
||||||
|
#: print.go:30 pkg/db/ialpm/alpm.go:191
|
||||||
|
msgid "Repository"
|
||||||
|
msgstr "저장소"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:78
|
#: pkg/dep/dep_graph.go:78
|
||||||
msgid "SRCINFO"
|
msgid "SRCINFO"
|
||||||
msgstr "SRCINFO"
|
msgstr "SRCINFO"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:71
|
#: pkg/upgrade/service.go:72
|
||||||
msgid "Searching AUR for updates..."
|
msgid "Searching AUR for updates..."
|
||||||
msgstr "AUR에서 업데이트 검색하는 중..."
|
msgstr "AUR에서 업데이트 검색하는 중..."
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:159
|
#: pkg/upgrade/service.go:160
|
||||||
msgid "Searching databases for updates..."
|
msgid "Searching databases for updates..."
|
||||||
msgstr "데이터베이스에서 업데이트 검색하는 중..."
|
msgstr "데이터베이스에서 업데이트 검색하는 중..."
|
||||||
|
|
||||||
@ -446,8 +431,8 @@ msgid "The following packages are not compatible with your architecture:"
|
|||||||
msgstr "다음 패키지는 이 컴퓨터의 아키텍처와 호환되지 않음:"
|
msgstr "다음 패키지는 이 컴퓨터의 아키텍처와 호환되지 않음:"
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:179 pkg/dep/dep_graph.go:726
|
#: pkg/db/ialpm/alpm.go:179 pkg/dep/dep_graph.go:726
|
||||||
msgid "There are %[1]d providers available for %[2]s:"
|
msgid "There are %d providers available for %s:"
|
||||||
msgstr "%[2]s에 대해 %[1]d개의 의존성 충족 패키지가 있습니다:"
|
msgstr "%s에 사용할 수 있는 %d개 공급자가 있습니다:"
|
||||||
|
|
||||||
#: pkg/settings/exe/cmd_builder.go:258
|
#: pkg/settings/exe/cmd_builder.go:258
|
||||||
msgid "There may be another Pacman instance running. Waiting..."
|
msgid "There may be another Pacman instance running. Waiting..."
|
||||||
@ -501,13 +486,29 @@ msgstr "Yay 버전 v%s"
|
|||||||
msgid "[N]one"
|
msgid "[N]one"
|
||||||
msgstr "[N]안함"
|
msgstr "[N]안함"
|
||||||
|
|
||||||
|
#: clean.go:83
|
||||||
|
msgid ""
|
||||||
|
"\n"
|
||||||
|
"Build directory:"
|
||||||
|
msgstr ""
|
||||||
|
"\n"
|
||||||
|
"빌드 디렉터리:"
|
||||||
|
|
||||||
|
#: pkg/db/ialpm/alpm.go:201 pkg/dep/dep_graph.go:740
|
||||||
|
msgid ""
|
||||||
|
"\n"
|
||||||
|
"Enter a number (default=1): "
|
||||||
|
msgstr ""
|
||||||
|
"\n"
|
||||||
|
"숫자를 입력하세요 (기본값=1): "
|
||||||
|
|
||||||
#: pkg/settings/errors.go:29
|
#: pkg/settings/errors.go:29
|
||||||
msgid "aborting due to user"
|
msgid "aborting due to user"
|
||||||
msgstr "사용자에 의해 중단됨"
|
msgstr "사용자로 인해 중단됨"
|
||||||
|
|
||||||
#: pkg/settings/parser/parser.go:608
|
#: pkg/settings/parser/parser.go:608
|
||||||
msgid "argument '-' specified without input on stdin"
|
msgid "argument '-' specified without input on stdin"
|
||||||
msgstr "stdin에 대한 입력없이 독립변수 '-' 지정됨"
|
msgstr "stdin에 대한 입력 없이 지정된 인자 '-'"
|
||||||
|
|
||||||
#: local_install.go:26
|
#: local_install.go:26
|
||||||
msgid "cannot find PKGBUILD and .SRCINFO in directory"
|
msgid "cannot find PKGBUILD and .SRCINFO in directory"
|
||||||
@ -529,11 +530,11 @@ msgstr "필요한 패키지를 모두 찾을 수 없음"
|
|||||||
msgid "could not find any package archives listed in %s"
|
msgid "could not find any package archives listed in %s"
|
||||||
msgstr "%s에 나열된 패키지 아카이브를 찾을 수 없음"
|
msgstr "%s에 나열된 패키지 아카이브를 찾을 수 없음"
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:50 pkg/upgrade/service.go:286
|
#: pkg/sync/build/errors.go:50 pkg/upgrade/service.go:287
|
||||||
msgid "dependency"
|
msgid "dependency"
|
||||||
msgstr "종속성"
|
msgstr "종속성"
|
||||||
|
|
||||||
#: pkg/vcs/vcs.go:100 pkg/vcs/vcs.go:96
|
#: pkg/vcs/vcs.go:96 pkg/vcs/vcs.go:100
|
||||||
msgid "devel check for package failed: '%s' encountered an error"
|
msgid "devel check for package failed: '%s' encountered an error"
|
||||||
msgstr "패키지에 대한 devel 확인 실패함: '%s'에 하나의 오류가 발생했습니다"
|
msgstr "패키지에 대한 devel 확인 실패함: '%s'에 하나의 오류가 발생했습니다"
|
||||||
|
|
||||||
@ -641,10 +642,6 @@ msgstr "잘못된 저장소"
|
|||||||
msgid "invalid value: %d is not between %d and %d"
|
msgid "invalid value: %d is not between %d and %d"
|
||||||
msgstr "잘못된 값: %d가 %d와 %d 사이에 있지 않음"
|
msgstr "잘못된 값: %d가 %d와 %d 사이에 있지 않음"
|
||||||
|
|
||||||
#: pkg/text/input.go:48
|
|
||||||
msgid "no"
|
|
||||||
msgstr "아니요"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:110
|
#: pkg/sync/srcinfo/pgp/keys.go:110
|
||||||
msgid "no keys to import"
|
msgid "no keys to import"
|
||||||
msgstr "가져올 키 없음"
|
msgstr "가져올 키 없음"
|
||||||
@ -657,6 +654,10 @@ msgstr "실행된 쿼리가 없습니다"
|
|||||||
msgid "no target directories specified"
|
msgid "no target directories specified"
|
||||||
msgstr "지정된 대상 디렉터리가 없습니다"
|
msgstr "지정된 대상 디렉터리가 없습니다"
|
||||||
|
|
||||||
|
#: pkg/text/input.go:48
|
||||||
|
msgid "no"
|
||||||
|
msgstr "아니요"
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:242
|
#: pkg/sync/build/installer.go:242
|
||||||
msgid "nothing to install for %s"
|
msgid "nothing to install for %s"
|
||||||
msgstr "%s 용으로 설치할 항목 없음"
|
msgstr "%s 용으로 설치할 항목 없음"
|
||||||
@ -667,12 +668,7 @@ msgstr "한번에 한 작업만 쓸 수 있음"
|
|||||||
|
|
||||||
#: pkg/cmd/graph/main.go:70
|
#: pkg/cmd/graph/main.go:70
|
||||||
msgid "only one target is allowed"
|
msgid "only one target is allowed"
|
||||||
msgstr "하나의 대상만 허용됩니다"
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:291
|
|
||||||
msgid "package"
|
|
||||||
msgid_plural "packages"
|
|
||||||
msgstr[0] "패키지"
|
|
||||||
|
|
||||||
#: print.go:187
|
#: print.go:187
|
||||||
msgid "package '%s' was not found"
|
msgid "package '%s' was not found"
|
||||||
@ -686,6 +682,11 @@ msgstr "AUR에서 패키지를 찾을 수 없습니다"
|
|||||||
msgid "package not found in repos"
|
msgid "package not found in repos"
|
||||||
msgstr "저장소에서 패키지를 찾을 수 없습니다"
|
msgstr "저장소에서 패키지를 찾을 수 없습니다"
|
||||||
|
|
||||||
|
#: pkg/upgrade/service.go:292
|
||||||
|
msgid "package"
|
||||||
|
msgid_plural "packages"
|
||||||
|
msgstr[0] "패키지"
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:100
|
#: pkg/sync/srcinfo/pgp/keys.go:100
|
||||||
msgid "problem importing keys"
|
msgid "problem importing keys"
|
||||||
msgstr "키 가져오는 중 오류"
|
msgstr "키 가져오는 중 오류"
|
||||||
|
742
po/pl.po
742
po/pl.po
@ -1,742 +0,0 @@
|
|||||||
#
|
|
||||||
# Translators:
|
|
||||||
# J G, 2021
|
|
||||||
# Oskar <me@medzik.dev>, 2022
|
|
||||||
# A_Salata, 2024
|
|
||||||
# SMT Broadcast, 2024
|
|
||||||
# Chair n, 2024
|
|
||||||
# Paweł Bernaciak, 2024
|
|
||||||
# Mariusz Bubak, 2024
|
|
||||||
# Bartłomiej Konecki, 2024
|
|
||||||
# Tadeusz Magura-Witkowski, 2024
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Last-Translator: Tadeusz Magura-Witkowski, 2024\n"
|
|
||||||
"Language-Team: Polish (https://app.transifex.com/yay-1/teams/123732/pl/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: pl\n"
|
|
||||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
|
||||||
"X-Generator: xgotext\n"
|
|
||||||
|
|
||||||
#: clean.go:83
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
"Build directory:"
|
|
||||||
msgstr ""
|
|
||||||
"\n"
|
|
||||||
"Folder kompilacji:"
|
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:201 pkg/dep/dep_graph.go:740
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
"Enter a number (default=1): "
|
|
||||||
msgstr ""
|
|
||||||
"\n"
|
|
||||||
"Wybierz wartość (domyślnie=1): "
|
|
||||||
|
|
||||||
#: pkg/menus/menu.go:32
|
|
||||||
msgid " (Build Files Exist)"
|
|
||||||
msgstr "(Pliki Budowy Istnieją)"
|
|
||||||
|
|
||||||
#: pkg/menus/menu.go:27
|
|
||||||
msgid " (Installed)"
|
|
||||||
msgstr " (zainstalowano)"
|
|
||||||
|
|
||||||
#: cmd.go:453
|
|
||||||
msgid " [Installed]"
|
|
||||||
msgstr " [zainstalowano]"
|
|
||||||
|
|
||||||
#: cmd.go:410 vote.go:36
|
|
||||||
msgid " there is nothing to do"
|
|
||||||
msgstr " nic nie pozostało do zrobienia"
|
|
||||||
|
|
||||||
#: pkg/menus/menu.go:49
|
|
||||||
msgid "%s [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)"
|
|
||||||
msgstr ""
|
|
||||||
"%s [A]Wszystkie [Ab]Anuluj [I]Zainstalowane [No]Nie zainstalowane lub (1 2 "
|
|
||||||
"3, 1-3, ^4)"
|
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:308
|
|
||||||
msgid "%s already made -- skipping build"
|
|
||||||
msgstr "%s już jest zbudowany - pomijam budowanie"
|
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:57
|
|
||||||
msgid "%s is not set"
|
|
||||||
msgstr "%s jest nieokreślony"
|
|
||||||
|
|
||||||
#: pkg/settings/exe/cmd_builder.go:257
|
|
||||||
msgid "%s is present."
|
|
||||||
msgstr "%s jest już obecny."
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:460 pkg/sync/build/installer.go:305
|
|
||||||
msgid "%s is up to date -- skipping"
|
|
||||||
msgstr "%s jest aktualny - pomijam"
|
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:291
|
|
||||||
msgid "%s to upgrade/install."
|
|
||||||
msgstr "%s by zaktualizować/zainstalować."
|
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:285
|
|
||||||
msgid "%s will also be installed for this operation."
|
|
||||||
msgstr "%s również zostanie zainstalowanie w ramach operacji."
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:124
|
|
||||||
msgid "%s, required by: %s"
|
|
||||||
msgstr "%s, wymagane przez: %s"
|
|
||||||
|
|
||||||
#: pkg/menus/diff_menu.go:49
|
|
||||||
msgid "%s: No changes -- skipping"
|
|
||||||
msgstr "%s: Bez zmian - pomijam"
|
|
||||||
|
|
||||||
#: pkg/query/filter.go:22
|
|
||||||
msgid "%s: can't use target with option --aur -- skipping"
|
|
||||||
msgstr "%s: nie jest dostępny z --aur - pomijam"
|
|
||||||
|
|
||||||
#: pkg/query/filter.go:17
|
|
||||||
msgid "%s: can't use target with option --repo -- skipping"
|
|
||||||
msgstr "%s: nie jest dostępny z --repo - pomijam"
|
|
||||||
|
|
||||||
#: pkg/upgrade/sources.go:57
|
|
||||||
msgid "%s: ignoring package upgrade (%s => %s)"
|
|
||||||
msgstr "%s: ignoruję aktualizację paczki (%s => %s)"
|
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:46
|
|
||||||
msgid "%s: local (%s) is newer than AUR (%s)"
|
|
||||||
msgstr "%s: wersja lokalna (%s) jest nowsza niż ta z AUR (%s)"
|
|
||||||
|
|
||||||
#: vote.go:51
|
|
||||||
msgid ""
|
|
||||||
"%s: please set AUR_USERNAME and AUR_PASSWORD environment variables for "
|
|
||||||
"voting"
|
|
||||||
msgstr ""
|
|
||||||
"%s: wprowadź proszę zmienne środowiskowe AUR_USERNAME oraz AUR_PASSWORD by "
|
|
||||||
"móc głosować"
|
|
||||||
|
|
||||||
#: pkg/download/unified.go:192
|
|
||||||
msgid "(%d/%d) Downloaded PKGBUILD from ABS: %s"
|
|
||||||
msgstr "(%d/%d) Ściągnięto PKGBUILD z ABS-u: %s"
|
|
||||||
|
|
||||||
#: pkg/download/aur.go:92 pkg/download/unified.go:188
|
|
||||||
msgid "(%d/%d) Downloaded PKGBUILD: %s"
|
|
||||||
msgstr "(%d/%d) Pobrany PKGBUILD: %s"
|
|
||||||
|
|
||||||
#: pkg/download/aur.go:82
|
|
||||||
msgid "(%d/%d) Failed to download PKGBUILD: %s"
|
|
||||||
msgstr "(%d/%d) Nie udało się pobrać PKGBUILD: %s"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/service.go:109
|
|
||||||
msgid "(%d/%d) Parsing SRCINFO: %s"
|
|
||||||
msgstr "(%d/%d) Przetwarzam SRCINFO: %s"
|
|
||||||
|
|
||||||
#: pkg/query/types.go:103 pkg/query/types.go:72
|
|
||||||
msgid "(Installed)"
|
|
||||||
msgstr "(zainstalowano)"
|
|
||||||
|
|
||||||
#: pkg/query/types.go:101 pkg/query/types.go:70
|
|
||||||
msgid "(Installed: %s)"
|
|
||||||
msgstr "(Zainstalowano: %s)"
|
|
||||||
|
|
||||||
#: pkg/query/types.go:61
|
|
||||||
msgid "(Orphaned)"
|
|
||||||
msgstr "(osierocony)"
|
|
||||||
|
|
||||||
#: pkg/query/types.go:65
|
|
||||||
msgid "(Out-of-date: %s)"
|
|
||||||
msgstr "(Nieaktualny od: %s)"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:75
|
|
||||||
msgid "AUR"
|
|
||||||
msgstr "AUR"
|
|
||||||
|
|
||||||
#: print.go:44
|
|
||||||
msgid "AUR URL"
|
|
||||||
msgstr "AUR URL"
|
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:58
|
|
||||||
msgid "Add %s or %s to your environment variables"
|
|
||||||
msgstr "Dodaj %s lub %s do zmiennych środowiskowych"
|
|
||||||
|
|
||||||
#: main.go:60
|
|
||||||
msgid "Avoid running yay as root/sudo."
|
|
||||||
msgstr "Unikaj uruchamiania yay jako root lub z sudo."
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:63
|
|
||||||
msgid "Check Dependency"
|
|
||||||
msgstr "Sprawdzanie Zależności"
|
|
||||||
|
|
||||||
#: print.go:41
|
|
||||||
msgid "Check Deps"
|
|
||||||
msgstr "Sprawdź zależności"
|
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:89
|
|
||||||
msgid "Checking development packages..."
|
|
||||||
msgstr "Sprawdzanie paczek w wersjach rozwojowych..."
|
|
||||||
|
|
||||||
#: pkg/sync/workdir/clean.go:45
|
|
||||||
msgid "Cleaning (%d/%d): %s"
|
|
||||||
msgstr "Czyszczenie (%d/%d): %s"
|
|
||||||
|
|
||||||
#: print.go:42
|
|
||||||
msgid "Conflicts With"
|
|
||||||
msgstr "Koliduje z"
|
|
||||||
|
|
||||||
#: pkg/menus/clean_menu.go:62
|
|
||||||
msgid "Deleting (%d/%d): %s"
|
|
||||||
msgstr "Usuwanie (%d/%d): %s"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:61
|
|
||||||
msgid "Dependency"
|
|
||||||
msgstr "Zależność"
|
|
||||||
|
|
||||||
#: print.go:38
|
|
||||||
msgid "Depends On"
|
|
||||||
msgstr "Zależy od"
|
|
||||||
|
|
||||||
#: print.go:33
|
|
||||||
msgid "Description"
|
|
||||||
msgstr "Opis"
|
|
||||||
|
|
||||||
#: pkg/menus/diff_menu.go:160
|
|
||||||
msgid "Diffs to show?"
|
|
||||||
msgstr "Pokazać różnice?"
|
|
||||||
|
|
||||||
#: pkg/settings/migrations.go:25
|
|
||||||
msgid "Disable 'provides' setting by default"
|
|
||||||
msgstr "Domyślnie wyłącza ustawienie 'provides' "
|
|
||||||
|
|
||||||
#: clean.go:78
|
|
||||||
msgid "Do you want to remove ALL AUR packages from cache?"
|
|
||||||
msgstr "Czy chcesz usunąć WSZYSTKIE paczki AUR z pamięci podręcznej?"
|
|
||||||
|
|
||||||
#: clean.go:95
|
|
||||||
msgid "Do you want to remove ALL untracked AUR files?"
|
|
||||||
msgstr "Czy chcesz usunąć WSZYSTKIE nieśledzone pliki AUR?"
|
|
||||||
|
|
||||||
#: clean.go:80
|
|
||||||
msgid "Do you want to remove all other AUR packages from cache?"
|
|
||||||
msgstr "Czy chcesz usunąć wszystkie inne paczki AUR z pamięci podręczniej?"
|
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:61
|
|
||||||
msgid "Edit PKGBUILD with?"
|
|
||||||
msgstr "Edytor PKGBUILD-ów?"
|
|
||||||
|
|
||||||
#: pkg/query/errors.go:13
|
|
||||||
msgid "Error during AUR search: %s\n"
|
|
||||||
msgstr "Błąd podczas wyszukiwania w AUR: %s\n"
|
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:295
|
|
||||||
msgid "Excluding packages may cause partial upgrades and break systems"
|
|
||||||
msgstr ""
|
|
||||||
"Wykluczanie pakietów może spowodować częściową aktualizacje i uszkodzenie "
|
|
||||||
"systemu"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:60
|
|
||||||
msgid "Explicit"
|
|
||||||
msgstr "Jawne"
|
|
||||||
|
|
||||||
#: print.go:91
|
|
||||||
msgid "Explicitly installed packages: %s"
|
|
||||||
msgstr "Jawnie zainstalowane paczki: %s"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:437 pkg/dep/dep_graph.go:535
|
|
||||||
msgid "Failed to find AUR package for"
|
|
||||||
msgstr "Nie znaleziono pakietu AUR dla"
|
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:120
|
|
||||||
msgid "Failed to install layer, rolling up to next layer."
|
|
||||||
msgstr ""
|
|
||||||
"Niepowodzenie zainstalowania warstwy, przewijanie do następnej warstwy"
|
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:16
|
|
||||||
msgid ""
|
|
||||||
"Failed to install the following packages. Manual intervention is required:"
|
|
||||||
msgstr ""
|
|
||||||
"Nie udało sie zainstalować następujących pakietów. Wymagana interwencja "
|
|
||||||
"użytkownika:"
|
|
||||||
|
|
||||||
#: print.go:45
|
|
||||||
msgid "First Submitted"
|
|
||||||
msgstr "Zamieszczono po raz pierwszy"
|
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:83
|
|
||||||
msgid "Flagged Out Of Date AUR Packages:"
|
|
||||||
msgstr "Paczki AUR oznaczone jako nieaktualne:"
|
|
||||||
|
|
||||||
#: print.go:90
|
|
||||||
msgid "Foreign installed packages: %s"
|
|
||||||
msgstr "Obce zainstalowane pakiety: %s"
|
|
||||||
|
|
||||||
#: pkg/vcs/vcs.go:144
|
|
||||||
msgid "Found git repo: %s"
|
|
||||||
msgstr "Znaleziono repozytorium git: %s"
|
|
||||||
|
|
||||||
#: vcs.go:72
|
|
||||||
msgid "GenDB finished. No packages were installed"
|
|
||||||
msgstr "Zakończono GenDB. Nie zainstalowano żadnych paczek"
|
|
||||||
|
|
||||||
#: print.go:36
|
|
||||||
msgid "Groups"
|
|
||||||
msgstr "Grupy"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:88
|
|
||||||
msgid "Import?"
|
|
||||||
msgstr "Zaimportować?"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:97
|
|
||||||
msgid "Importing keys with gpg..."
|
|
||||||
msgstr "Importowanie kluczy przy użyciu gpg..."
|
|
||||||
|
|
||||||
#: print.go:46
|
|
||||||
msgid "Keywords"
|
|
||||||
msgstr "Słowa kluczowe"
|
|
||||||
|
|
||||||
#: print.go:47
|
|
||||||
msgid "Last Modified"
|
|
||||||
msgstr "Ostatnio zmodyfikowano"
|
|
||||||
|
|
||||||
#: print.go:35
|
|
||||||
msgid "Licenses"
|
|
||||||
msgstr "Licencje"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:77
|
|
||||||
msgid "Local"
|
|
||||||
msgstr "Lokalne"
|
|
||||||
|
|
||||||
#: print.go:48
|
|
||||||
msgid "Maintainer"
|
|
||||||
msgstr "Opiekun"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:62
|
|
||||||
msgid "Make Dependency"
|
|
||||||
msgstr "Zależność Budowania"
|
|
||||||
|
|
||||||
#: print.go:40
|
|
||||||
msgid "Make Deps"
|
|
||||||
msgstr "Zbuduj zależności"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:79
|
|
||||||
msgid "Missing"
|
|
||||||
msgstr "Zaginiony"
|
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:75
|
|
||||||
msgid "Missing AUR Debug Packages:"
|
|
||||||
msgstr "Brakujące Debugowe Pakiety AUR:"
|
|
||||||
|
|
||||||
#: print.go:31
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nazwa"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:442 pkg/dep/dep_graph.go:548
|
|
||||||
msgid "No AUR package found for"
|
|
||||||
msgstr "Nie znaleziono pakietu AUR dla"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:182
|
|
||||||
msgid "No package found for"
|
|
||||||
msgstr "Nie znaleziono pakietu dla"
|
|
||||||
|
|
||||||
#: print.go:225
|
|
||||||
msgid "None"
|
|
||||||
msgstr "Brak"
|
|
||||||
|
|
||||||
#: print.go:39
|
|
||||||
msgid "Optional Deps"
|
|
||||||
msgstr "Opcjonalne zależności"
|
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:79
|
|
||||||
msgid "Orphan (unmaintained) AUR Packages:"
|
|
||||||
msgstr "Osierocone (nieutrzymywane) pakiety AUR:"
|
|
||||||
|
|
||||||
#: print.go:53 print.go:55
|
|
||||||
msgid "Out-of-date"
|
|
||||||
msgstr "Nieaktualne"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:115
|
|
||||||
msgid "PGP keys need importing:"
|
|
||||||
msgstr "Klucze PGP wymagające zaimportowania:"
|
|
||||||
|
|
||||||
#: pkg/sync/workdir/preparer.go:252
|
|
||||||
msgid "PKGBUILD up to date, skipping download: %s"
|
|
||||||
msgstr "PKGBUILD jest aktualny, pomijam pobieranie: %s"
|
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:130
|
|
||||||
msgid "PKGBUILDs to edit?"
|
|
||||||
msgstr "Edytować PKGBUILD-y?"
|
|
||||||
|
|
||||||
#: print.go:61
|
|
||||||
msgid "Package Base"
|
|
||||||
msgstr "Podstawa Paczki"
|
|
||||||
|
|
||||||
#: print.go:60
|
|
||||||
msgid "Package Base ID"
|
|
||||||
msgstr "ID Podstawy Paczki"
|
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:71
|
|
||||||
msgid "Packages not in AUR:"
|
|
||||||
msgstr "Pakiety nie występujace w AUR:"
|
|
||||||
|
|
||||||
#: pkg/menus/clean_menu.go:54
|
|
||||||
msgid "Packages to cleanBuild?"
|
|
||||||
msgstr "Paczki do zbudowania od zera?"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:202
|
|
||||||
msgid "Packages to exclude"
|
|
||||||
msgstr "Pakiety do wykluczenia"
|
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:294
|
|
||||||
msgid "Packages to exclude: (eg: \"1 2 3\", \"1-3\", \"^4\" or repo name)"
|
|
||||||
msgstr "Wykluczone paczki: (np.: \"1 2 3\", \"1-3\", \"^4\" lub nazwa repozytorium)"
|
|
||||||
|
|
||||||
#: cmd.go:392
|
|
||||||
msgid "Packages to install (eg: 1 2 3, 1-3 or ^4)"
|
|
||||||
msgstr "Paczki do zainstalowania (np.: 1 2 3, 1-3 or ^4)"
|
|
||||||
|
|
||||||
#: print.go:49
|
|
||||||
msgid "Popularity"
|
|
||||||
msgstr "Popularność"
|
|
||||||
|
|
||||||
#: pkg/menus/diff_menu.go:172 pkg/menus/edit_menu.go:143
|
|
||||||
msgid "Proceed with install?"
|
|
||||||
msgstr "Kontynuować instalację?"
|
|
||||||
|
|
||||||
#: print.go:37
|
|
||||||
msgid "Provides"
|
|
||||||
msgstr "Dostarcza"
|
|
||||||
|
|
||||||
#: pkg/sync/workdir/preparer.go:125
|
|
||||||
msgid "Remove make dependencies after install?"
|
|
||||||
msgstr "Usunąć zależności potrzebne do zbudowania po instalacji?"
|
|
||||||
|
|
||||||
#: print.go:43
|
|
||||||
msgid "Replaces"
|
|
||||||
msgstr "Zastępuje"
|
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:191 print.go:30
|
|
||||||
msgid "Repository"
|
|
||||||
msgstr "Repozytorium"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:730
|
|
||||||
msgid "Repository AUR"
|
|
||||||
msgstr "Repozytorium AUR"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:78
|
|
||||||
msgid "SRCINFO"
|
|
||||||
msgstr "SRCINFO"
|
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:71
|
|
||||||
msgid "Searching AUR for updates..."
|
|
||||||
msgstr "Przeszukuję AUR za aktualizacjami..."
|
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:159
|
|
||||||
msgid "Searching databases for updates..."
|
|
||||||
msgstr "Przeszukuję bazy danych za aktualizacjami..."
|
|
||||||
|
|
||||||
#: pkg/query/query_builder.go:214
|
|
||||||
msgid "Showing repo packages only"
|
|
||||||
msgstr "Pokazuję tylko paczki z repozytoriów"
|
|
||||||
|
|
||||||
#: print.go:95
|
|
||||||
msgid "Size of pacman cache %s: %s"
|
|
||||||
msgstr "Rozmiar pamięci podręcznej Pacmana %s: %s"
|
|
||||||
|
|
||||||
#: print.go:98
|
|
||||||
msgid "Size of yay cache %s: %s"
|
|
||||||
msgstr "Rozmiar pamięci podręcznej yay %s: %s"
|
|
||||||
|
|
||||||
#: print.go:62
|
|
||||||
msgid "Snapshot URL"
|
|
||||||
msgstr "URL Snapshota"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:76
|
|
||||||
msgid "Sync"
|
|
||||||
msgstr "Synchronizacja"
|
|
||||||
|
|
||||||
#: print.go:100
|
|
||||||
msgid "Ten biggest packages:"
|
|
||||||
msgstr "Dziesięć największych paczek:"
|
|
||||||
|
|
||||||
#: pkg/sync/sync.go:124
|
|
||||||
msgid "The following packages are not compatible with your architecture:"
|
|
||||||
msgstr "Te paczki nie są kompatybilne z architekturą Twojego systemu:"
|
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:179 pkg/dep/dep_graph.go:726
|
|
||||||
msgid "There are %[1]d providers available for %[2]s:"
|
|
||||||
msgstr "Jest %[1]d możliwych źródeł dla %[2]s:"
|
|
||||||
|
|
||||||
#: pkg/settings/exe/cmd_builder.go:258
|
|
||||||
msgid "There may be another Pacman instance running. Waiting..."
|
|
||||||
msgstr "Prawdopodobnie działa teraz inna instancja Pacmana. Czekam..."
|
|
||||||
|
|
||||||
#: print.go:92
|
|
||||||
msgid "Total Size occupied by packages: %s"
|
|
||||||
msgstr "Łączny rozmiar zajmowany przez paczki: %s"
|
|
||||||
|
|
||||||
#: print.go:89
|
|
||||||
msgid "Total installed packages: %s"
|
|
||||||
msgstr "Łączna liczba zainstalowanych paczek: %s"
|
|
||||||
|
|
||||||
#: pkg/sync/sync.go:132
|
|
||||||
msgid "Try to build them anyway?"
|
|
||||||
msgstr "Spróbować je zbudować mimo wszystko?"
|
|
||||||
|
|
||||||
#: print.go:34
|
|
||||||
msgid "URL"
|
|
||||||
msgstr "URL"
|
|
||||||
|
|
||||||
#: clean.go:194 pkg/menus/clean_menu.go:65 pkg/menus/clean_menu.go:71
|
|
||||||
msgid "Unable to clean:"
|
|
||||||
msgstr "Nie można sprzątnąć:"
|
|
||||||
|
|
||||||
#: get.go:42 get.go:74
|
|
||||||
msgid "Unable to find the following packages:"
|
|
||||||
msgstr "Nie udało się znaleźć następujących paczek:"
|
|
||||||
|
|
||||||
#: vote.go:20
|
|
||||||
msgid "Unable to handle package vote for: %s. err: %s"
|
|
||||||
msgstr "Nie udało się obsłużyć oceny pakietu dla: %s. err: %s"
|
|
||||||
|
|
||||||
#: clean.go:170
|
|
||||||
msgid "Unable to remove %s: %s"
|
|
||||||
msgstr "Nie udało się usunąć %s: %s"
|
|
||||||
|
|
||||||
#: print.go:32
|
|
||||||
msgid "Version"
|
|
||||||
msgstr "Wersja"
|
|
||||||
|
|
||||||
#: print.go:50
|
|
||||||
msgid "Votes"
|
|
||||||
msgstr "Głosów"
|
|
||||||
|
|
||||||
#: print.go:87
|
|
||||||
msgid "Yay version v%s"
|
|
||||||
msgstr "Wersja yaya v%s"
|
|
||||||
|
|
||||||
#: pkg/menus/menu.go:49
|
|
||||||
msgid "[N]one"
|
|
||||||
msgstr "[N]ic"
|
|
||||||
|
|
||||||
#: pkg/settings/errors.go:29
|
|
||||||
msgid "aborting due to user"
|
|
||||||
msgstr "przerwane przez użytkownika"
|
|
||||||
|
|
||||||
#: pkg/settings/parser/parser.go:608
|
|
||||||
msgid "argument '-' specified without input on stdin"
|
|
||||||
msgstr "argument '-' określony bez danych wejściowych"
|
|
||||||
|
|
||||||
#: local_install.go:26
|
|
||||||
msgid "cannot find PKGBUILD and .SRCINFO in directory"
|
|
||||||
msgstr "nie znaleziono PKGBUILD i .SRCINFO w katalogu"
|
|
||||||
|
|
||||||
#: pkg/sync/build/pkg_archive.go:148
|
|
||||||
msgid "cannot find package name: %v"
|
|
||||||
msgstr "nie odnalazłem paczki: %v"
|
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:30
|
|
||||||
msgid "could not find PKGDEST for: %s"
|
|
||||||
msgstr "nie odnalazłem PKGDEST dla: %s"
|
|
||||||
|
|
||||||
#: errors.go:9
|
|
||||||
msgid "could not find all required packages"
|
|
||||||
msgstr "nie znaleziono wszystkich wymaganych pakietów"
|
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:61
|
|
||||||
msgid "could not find any package archives listed in %s"
|
|
||||||
msgstr "nie udało się znaleźć żadnych archiwów pakietów z listy %s"
|
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:50 pkg/upgrade/service.go:286
|
|
||||||
msgid "dependency"
|
|
||||||
msgstr "zależność"
|
|
||||||
|
|
||||||
#: pkg/vcs/vcs.go:100 pkg/vcs/vcs.go:96
|
|
||||||
msgid "devel check for package failed: '%s' encountered an error"
|
|
||||||
msgstr "błąd sprawdzania wersji rozwojowej: '%s' napotkało na błąd"
|
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:110
|
|
||||||
msgid "editor did not exit successfully, aborting: %s"
|
|
||||||
msgstr "edytor nie zamknął się poprawnie, anuluję: %s"
|
|
||||||
|
|
||||||
#: pkg/sync/workdir/aur_source.go:24
|
|
||||||
msgid "error downloading sources: %s"
|
|
||||||
msgstr "błąd ściągania źródeł: %s"
|
|
||||||
|
|
||||||
#: pkg/download/errors.go:25
|
|
||||||
msgid "error fetching %s: %s"
|
|
||||||
msgstr "błąd podczas ściągania %s: %s"
|
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:9
|
|
||||||
msgid "error installing repo packages"
|
|
||||||
msgstr "błąd podczas instalowania paczek z repozytorium"
|
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:266 pkg/sync/build/installer.go:270
|
|
||||||
msgid "error installing:"
|
|
||||||
msgstr "Błąd podczas instalacji:"
|
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:233 pkg/sync/build/installer.go:237
|
|
||||||
msgid "error making: %s"
|
|
||||||
msgstr "błąd podczas budowania: %s"
|
|
||||||
|
|
||||||
#: pkg/sync/workdir/merge.go:24
|
|
||||||
msgid "error merging %s: %s"
|
|
||||||
msgstr "błąd podczas scalania %s: %s"
|
|
||||||
|
|
||||||
#: pkg/download/unified.go:59
|
|
||||||
msgid "error reading %s"
|
|
||||||
msgstr "błąd podczas odczytywania %s"
|
|
||||||
|
|
||||||
#: sync.go:36
|
|
||||||
msgid "error refreshing databases"
|
|
||||||
msgstr "błąd odświeżania baz danych"
|
|
||||||
|
|
||||||
#: pkg/sync/workdir/clean.go:51 pkg/sync/workdir/merge.go:17
|
|
||||||
msgid "error resetting %s: %s"
|
|
||||||
msgstr "błąd podczas resetowania %s: %s"
|
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:53
|
|
||||||
msgid "error updating package install reason to %s"
|
|
||||||
msgstr "Nie udało się zaktualizować pakietu z przyczyny %s"
|
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:48
|
|
||||||
msgid "explicit"
|
|
||||||
msgstr "jawne"
|
|
||||||
|
|
||||||
#: pkg/settings/errors.go:23
|
|
||||||
msgid "failed to create directory '%s': %s"
|
|
||||||
msgstr "nie udało się stworzyć katalogu '%s': %s"
|
|
||||||
|
|
||||||
#: pkg/settings/config.go:281
|
|
||||||
msgid "failed to open config file '%s': %s"
|
|
||||||
msgstr "nie udało się otwarcie pliku konfiguracyjnego '%s': %s"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/service.go:114
|
|
||||||
msgid "failed to parse %s -- skipping: %s"
|
|
||||||
msgstr "nie udało się przetworzyć %s - pomijam: %s"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/service.go:118
|
|
||||||
msgid "failed to parse %s: %s"
|
|
||||||
msgstr "nie udało się przetworzyć %s: %s"
|
|
||||||
|
|
||||||
#: local_install.go:77
|
|
||||||
msgid "failed to parse .SRCINFO"
|
|
||||||
msgstr "nie udało się przetworzyć .SRCINFO"
|
|
||||||
|
|
||||||
#: pkg/settings/config.go:291
|
|
||||||
msgid "failed to read config file '%s': %s"
|
|
||||||
msgstr "nie udało się odczytać pliku konfiguracyjnego '%s': %s"
|
|
||||||
|
|
||||||
#: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73
|
|
||||||
msgid "failed to retrieve aur Cache"
|
|
||||||
msgstr "Nie udało się pozyskać pamięci podręcznej AUR"
|
|
||||||
|
|
||||||
#: pkg/upgrade/sources.go:27
|
|
||||||
msgid "ignoring package devel upgrade (no AUR info found):"
|
|
||||||
msgstr "ignorowanie aktualizacji wersji rozwojowej (brak informacji w AUR):"
|
|
||||||
|
|
||||||
#: pkg/text/errors.go:8
|
|
||||||
msgid "input too long"
|
|
||||||
msgstr "zbyt długie dane wejściowe"
|
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:222 pkg/dep/dep_graph.go:761
|
|
||||||
msgid "invalid number: %s"
|
|
||||||
msgstr "niepoprawna liczba: %s"
|
|
||||||
|
|
||||||
#: pkg/settings/parser/parser.go:174
|
|
||||||
msgid "invalid option '%s'"
|
|
||||||
msgstr "niepoprawna opcja '%s'"
|
|
||||||
|
|
||||||
#: cmd.go:197
|
|
||||||
msgid "invalid option: '--deps' and '--explicit' may not be used together"
|
|
||||||
msgstr "niepoprawna opcja: '--deps' i '--explicit' nie mogą być razem używane"
|
|
||||||
|
|
||||||
#: pkg/download/abs.go:22
|
|
||||||
msgid "invalid repository"
|
|
||||||
msgstr "błędne repozytorium"
|
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:227 pkg/dep/dep_graph.go:767
|
|
||||||
msgid "invalid value: %d is not between %d and %d"
|
|
||||||
msgstr "niepoprawna wartość: %d nie jest pomiędzy %d a %d"
|
|
||||||
|
|
||||||
#: pkg/text/input.go:48
|
|
||||||
msgid "no"
|
|
||||||
msgstr "nie"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:110
|
|
||||||
msgid "no keys to import"
|
|
||||||
msgstr "brak kluczy do zaimportowania"
|
|
||||||
|
|
||||||
#: pkg/query/errors.go:20
|
|
||||||
msgid "no query was executed"
|
|
||||||
msgstr "nie uruchomiono żadnego polecenia"
|
|
||||||
|
|
||||||
#: local_install.go:66
|
|
||||||
msgid "no target directories specified"
|
|
||||||
msgstr "Nie określono folderu docelowego"
|
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:242
|
|
||||||
msgid "nothing to install for %s"
|
|
||||||
msgstr "Nic do instalowania dla %s"
|
|
||||||
|
|
||||||
#: pkg/settings/parser/parser.go:164
|
|
||||||
msgid "only one operation may be used at a time"
|
|
||||||
msgstr "tylko jedna operacja może być zadana na raz"
|
|
||||||
|
|
||||||
#: pkg/cmd/graph/main.go:70
|
|
||||||
msgid "only one target is allowed"
|
|
||||||
msgstr "dozwolony jest tylko jeden cel"
|
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:291
|
|
||||||
msgid "package"
|
|
||||||
msgid_plural "packages"
|
|
||||||
msgstr[0] "pakiet"
|
|
||||||
msgstr[1] "pakietów"
|
|
||||||
msgstr[2] "pakietów"
|
|
||||||
msgstr[3] "pakiety"
|
|
||||||
|
|
||||||
#: print.go:187
|
|
||||||
msgid "package '%s' was not found"
|
|
||||||
msgstr "paczka '%s' nie została odnaleziona"
|
|
||||||
|
|
||||||
#: pkg/download/errors.go:15
|
|
||||||
msgid "package not found in AUR"
|
|
||||||
msgstr "nie znaleziono pakietu w AUR"
|
|
||||||
|
|
||||||
#: pkg/download/abs.go:23
|
|
||||||
msgid "package not found in repos"
|
|
||||||
msgstr "Nie znaleziono paczki w repozytoriach"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:100
|
|
||||||
msgid "problem importing keys"
|
|
||||||
msgstr "błąd importowania kluczy"
|
|
||||||
|
|
||||||
#: clean.go:105
|
|
||||||
msgid "removing AUR packages from cache..."
|
|
||||||
msgstr "usuwanie paczek z AUR z pamięci podręcznej..."
|
|
||||||
|
|
||||||
#: clean.go:178 pkg/sync/workdir/clean.go:41
|
|
||||||
msgid "removing untracked AUR files from cache..."
|
|
||||||
msgstr "usuwanie nieśledzonych plików z AUR z pamięci podręcznej..."
|
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:38
|
|
||||||
msgid "the PKGDEST for %s is listed by makepkg but does not exist: %s"
|
|
||||||
msgstr "PKGDEST dla %s jest wyszczególniony w makepkg, ale nie istnieje: %s"
|
|
||||||
|
|
||||||
#: pkg/sync/sync.go:45
|
|
||||||
msgid "there is nothing to do"
|
|
||||||
msgstr "Nie ma nic do zrobienia"
|
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:247
|
|
||||||
msgid "unable to CreateHandle: %s"
|
|
||||||
msgstr "błąd w CreateHandle: %s"
|
|
||||||
|
|
||||||
#: cmd.go:186
|
|
||||||
msgid "unhandled operation"
|
|
||||||
msgstr "nieobsłużona operacja"
|
|
||||||
|
|
||||||
#: cmd.go:450
|
|
||||||
msgid "unknown-version"
|
|
||||||
msgstr "nieznana-wersja"
|
|
||||||
|
|
||||||
#: pkg/text/input.go:47
|
|
||||||
msgid "yes"
|
|
||||||
msgstr "tak"
|
|
401
po/pl_PL.po
401
po/pl_PL.po
@ -1,44 +1,22 @@
|
|||||||
#
|
|
||||||
# Translators:
|
|
||||||
# J G, 2021
|
|
||||||
# Paweł Bernaciak, 2022
|
|
||||||
# Chair n, 2022
|
|
||||||
# A_Salata, 2022
|
|
||||||
# SMT Broadcast, 2022
|
|
||||||
# Bartłomiej Konecki, 2023
|
|
||||||
# Mariusz Bubak, 2023
|
|
||||||
# Tadeusz Magura-Witkowski, 2024
|
|
||||||
#
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Last-Translator: Tadeusz Magura-Witkowski, 2024\n"
|
"Project-Id-Version: \n"
|
||||||
"Language-Team: Polish (Poland) (https://app.transifex.com/yay-1/teams/123732/pl_PL/)\n"
|
"POT-Creation-Date: \n"
|
||||||
|
"PO-Revision-Date: 2020-06-14 14:42+0200\n"
|
||||||
|
"Last-Translator: Althorion <althorion@protonmail.com>\n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"Language: pl_PL\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Language: pl_PL\n"
|
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 "
|
||||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
"|| n%100>14) ? 1 : 2);\n"
|
||||||
"X-Generator: xgotext\n"
|
"X-Generator: Poedit 2.3\n"
|
||||||
|
|
||||||
#: clean.go:83
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
"Build directory:"
|
|
||||||
msgstr ""
|
|
||||||
"\n"
|
|
||||||
"Folder kompilacji:"
|
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:201 pkg/dep/dep_graph.go:740
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
"Enter a number (default=1): "
|
|
||||||
msgstr ""
|
|
||||||
"\n"
|
|
||||||
"Wybierz wartość (domyślnie=1): "
|
|
||||||
|
|
||||||
#: pkg/menus/menu.go:32
|
#: pkg/menus/menu.go:32
|
||||||
|
#, fuzzy
|
||||||
msgid " (Build Files Exist)"
|
msgid " (Build Files Exist)"
|
||||||
msgstr "(Pliki Budowy Istnieją)"
|
msgstr " (ściągnięto pliki źródłowe)"
|
||||||
|
|
||||||
#: pkg/menus/menu.go:27
|
#: pkg/menus/menu.go:27
|
||||||
msgid " (Installed)"
|
msgid " (Installed)"
|
||||||
@ -74,13 +52,14 @@ msgstr "%s jest już obecny."
|
|||||||
msgid "%s is up to date -- skipping"
|
msgid "%s is up to date -- skipping"
|
||||||
msgstr "%s jest aktualny - pomijam"
|
msgstr "%s jest aktualny - pomijam"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:291
|
#: pkg/upgrade/service.go:292
|
||||||
|
#, fuzzy
|
||||||
msgid "%s to upgrade/install."
|
msgid "%s to upgrade/install."
|
||||||
msgstr "%s do aktualizacji/instalacji."
|
msgstr "Paczki do aktualizacji."
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:285
|
#: pkg/upgrade/service.go:286
|
||||||
msgid "%s will also be installed for this operation."
|
msgid "%s will also be installed for this operation."
|
||||||
msgstr "%s również zostanie zainstalowanie w ramach operacji."
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:124
|
#: pkg/sync/srcinfo/pgp/keys.go:124
|
||||||
msgid "%s, required by: %s"
|
msgid "%s, required by: %s"
|
||||||
@ -108,52 +87,52 @@ msgstr "%s: wersja lokalna (%s) jest nowsza niż ta z AUR (%s)"
|
|||||||
|
|
||||||
#: vote.go:51
|
#: vote.go:51
|
||||||
msgid ""
|
msgid ""
|
||||||
"%s: please set AUR_USERNAME and AUR_PASSWORD environment variables for "
|
"%s: please set AUR_USERNAME and AUR_PASSWORD environment variables for voting"
|
||||||
"voting"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"%s: wprowadź proszę zmienne środowiskowe AUR_USERNAME oraz AUR_PASSWORD by "
|
|
||||||
"móc głosować"
|
|
||||||
|
|
||||||
#: pkg/download/unified.go:192
|
#: pkg/download/unified.go:192
|
||||||
msgid "(%d/%d) Downloaded PKGBUILD from ABS: %s"
|
msgid "(%d/%d) Downloaded PKGBUILD from ABS: %s"
|
||||||
msgstr "(%d/%d) Pobrano PKGBUILD z ABS-u: %s"
|
msgstr "(%d/%d) Ściągnięto PKGBUILD z ABS-u: %s"
|
||||||
|
|
||||||
#: pkg/download/aur.go:92 pkg/download/unified.go:188
|
#: pkg/download/aur.go:92 pkg/download/unified.go:188
|
||||||
|
#, fuzzy
|
||||||
msgid "(%d/%d) Downloaded PKGBUILD: %s"
|
msgid "(%d/%d) Downloaded PKGBUILD: %s"
|
||||||
msgstr "(%d/%d) Pobrany PKGBUILD: %s"
|
msgstr "(%d/%d) Ściągnięto PKGBUILD z ABS-u: %s"
|
||||||
|
|
||||||
#: pkg/download/aur.go:82
|
#: pkg/download/aur.go:82
|
||||||
|
#, fuzzy
|
||||||
msgid "(%d/%d) Failed to download PKGBUILD: %s"
|
msgid "(%d/%d) Failed to download PKGBUILD: %s"
|
||||||
msgstr "(%d/%d) Nie udało się pobrać PKGBUILD: %s"
|
msgstr "(%d/%d) Ściągnięto PKGBUILD z ABS-u: %s"
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/service.go:109
|
#: pkg/sync/srcinfo/service.go:109
|
||||||
msgid "(%d/%d) Parsing SRCINFO: %s"
|
msgid "(%d/%d) Parsing SRCINFO: %s"
|
||||||
msgstr "(%d/%d) Przetwarzam SRCINFO: %s"
|
msgstr "(%d/%d) Przetwarzam SRCINFO: %s"
|
||||||
|
|
||||||
#: pkg/query/types.go:103 pkg/query/types.go:72
|
#: pkg/query/types.go:72 pkg/query/types.go:103
|
||||||
msgid "(Installed)"
|
msgid "(Installed)"
|
||||||
msgstr "(Zainstalowana)"
|
msgstr "(zainstalowano)"
|
||||||
|
|
||||||
#: pkg/query/types.go:101 pkg/query/types.go:70
|
#: pkg/query/types.go:70 pkg/query/types.go:101
|
||||||
msgid "(Installed: %s)"
|
msgid "(Installed: %s)"
|
||||||
msgstr "(Zainstalowano: %s)"
|
msgstr "(Zainstalowano: %s)"
|
||||||
|
|
||||||
#: pkg/query/types.go:61
|
#: pkg/query/types.go:61
|
||||||
msgid "(Orphaned)"
|
msgid "(Orphaned)"
|
||||||
msgstr "(Osierocona)"
|
msgstr "(osierocony)"
|
||||||
|
|
||||||
#: pkg/query/types.go:65
|
#: pkg/query/types.go:65
|
||||||
msgid "(Out-of-date: %s)"
|
msgid "(Out-of-date: %s)"
|
||||||
msgstr "(Nieaktualny od: %s)"
|
msgstr "(Nieaktualny od: %s)"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:75
|
|
||||||
msgid "AUR"
|
|
||||||
msgstr "AUR"
|
|
||||||
|
|
||||||
#: print.go:44
|
#: print.go:44
|
||||||
msgid "AUR URL"
|
msgid "AUR URL"
|
||||||
msgstr "AUR URL"
|
msgstr "AUR URL"
|
||||||
|
|
||||||
|
#: pkg/dep/dep_graph.go:75
|
||||||
|
#, fuzzy
|
||||||
|
msgid "AUR"
|
||||||
|
msgstr "URL"
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:58
|
#: pkg/menus/edit_menu.go:58
|
||||||
msgid "Add %s or %s to your environment variables"
|
msgid "Add %s or %s to your environment variables"
|
||||||
msgstr "Dodaj %s lub %s do zmiennych środowiskowych"
|
msgstr "Dodaj %s lub %s do zmiennych środowiskowych"
|
||||||
@ -163,14 +142,15 @@ msgid "Avoid running yay as root/sudo."
|
|||||||
msgstr "Unikaj uruchamiania yay jako root lub z sudo."
|
msgstr "Unikaj uruchamiania yay jako root lub z sudo."
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:63
|
#: pkg/dep/dep_graph.go:63
|
||||||
|
#, fuzzy
|
||||||
msgid "Check Dependency"
|
msgid "Check Dependency"
|
||||||
msgstr "Sprawdzanie Zależności"
|
msgstr "Sprawdź zależności"
|
||||||
|
|
||||||
#: print.go:41
|
#: print.go:41
|
||||||
msgid "Check Deps"
|
msgid "Check Deps"
|
||||||
msgstr "Sprawdź zależności"
|
msgstr "Sprawdź zależności"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:89
|
#: pkg/upgrade/service.go:90
|
||||||
msgid "Checking development packages..."
|
msgid "Checking development packages..."
|
||||||
msgstr "Sprawdzanie paczek w wersjach rozwojowych..."
|
msgstr "Sprawdzanie paczek w wersjach rozwojowych..."
|
||||||
|
|
||||||
@ -187,8 +167,9 @@ msgid "Deleting (%d/%d): %s"
|
|||||||
msgstr "Usuwanie (%d/%d): %s"
|
msgstr "Usuwanie (%d/%d): %s"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:61
|
#: pkg/dep/dep_graph.go:61
|
||||||
|
#, fuzzy
|
||||||
msgid "Dependency"
|
msgid "Dependency"
|
||||||
msgstr "Zależność"
|
msgstr "Zależy od"
|
||||||
|
|
||||||
#: print.go:38
|
#: print.go:38
|
||||||
msgid "Depends On"
|
msgid "Depends On"
|
||||||
@ -204,7 +185,7 @@ msgstr "Pokazać różnice?"
|
|||||||
|
|
||||||
#: pkg/settings/migrations.go:25
|
#: pkg/settings/migrations.go:25
|
||||||
msgid "Disable 'provides' setting by default"
|
msgid "Disable 'provides' setting by default"
|
||||||
msgstr "Domyślnie wyłącza ustawienie 'provides' "
|
msgstr ""
|
||||||
|
|
||||||
#: clean.go:78
|
#: clean.go:78
|
||||||
msgid "Do you want to remove ALL AUR packages from cache?"
|
msgid "Do you want to remove ALL AUR packages from cache?"
|
||||||
@ -226,47 +207,44 @@ msgstr "Edytor PKGBUILD-ów?"
|
|||||||
msgid "Error during AUR search: %s\n"
|
msgid "Error during AUR search: %s\n"
|
||||||
msgstr "Błąd podczas wyszukiwania w AUR: %s\n"
|
msgstr "Błąd podczas wyszukiwania w AUR: %s\n"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:295
|
#: pkg/upgrade/service.go:296
|
||||||
msgid "Excluding packages may cause partial upgrades and break systems"
|
msgid "Excluding packages may cause partial upgrades and break systems"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Wykluczanie pakietów może spowodować częściową aktualizacje i uszkodzenie "
|
|
||||||
"systemu"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:60
|
#: pkg/dep/dep_graph.go:60
|
||||||
msgid "Explicit"
|
msgid "Explicit"
|
||||||
msgstr "Jawne"
|
msgstr ""
|
||||||
|
|
||||||
#: print.go:91
|
#: print.go:91
|
||||||
msgid "Explicitly installed packages: %s"
|
msgid "Explicitly installed packages: %s"
|
||||||
msgstr "Jawnie zainstalowane paczki: %s"
|
msgstr "Jawnie zainstalowane paczki: %s"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:437 pkg/dep/dep_graph.go:535
|
#: pkg/dep/dep_graph.go:437 pkg/dep/dep_graph.go:535
|
||||||
|
#, fuzzy
|
||||||
msgid "Failed to find AUR package for"
|
msgid "Failed to find AUR package for"
|
||||||
msgstr "Nie znaleziono pakietu AUR dla"
|
msgstr "Paczki AUR oznaczone jako nieaktualne:"
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:120
|
#: pkg/sync/build/installer.go:120
|
||||||
msgid "Failed to install layer, rolling up to next layer."
|
msgid "Failed to install layer, rolling up to next layer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Niepowodzenie zainstalowania warstwy, przewijanie do następnej warstwy"
|
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:16
|
#: pkg/sync/build/errors.go:16
|
||||||
msgid ""
|
msgid ""
|
||||||
"Failed to install the following packages. Manual intervention is required:"
|
"Failed to install the following packages. Manual intervention is required:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Nie udało sie zainstalować następujących pakietów. Wymagana interwencja "
|
|
||||||
"użytkownika:"
|
|
||||||
|
|
||||||
#: print.go:45
|
#: print.go:45
|
||||||
msgid "First Submitted"
|
msgid "First Submitted"
|
||||||
msgstr "Zamieszczono po raz pierwszy"
|
msgstr "Zamieszczono po raz pierwszy"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:83
|
#: pkg/query/aur_warnings.go:79
|
||||||
msgid "Flagged Out Of Date AUR Packages:"
|
msgid "Flagged Out Of Date AUR Packages:"
|
||||||
msgstr "Paczki AUR oznaczone jako nieaktualne:"
|
msgstr "Paczki AUR oznaczone jako nieaktualne:"
|
||||||
|
|
||||||
#: print.go:90
|
#: print.go:90
|
||||||
|
#, fuzzy
|
||||||
msgid "Foreign installed packages: %s"
|
msgid "Foreign installed packages: %s"
|
||||||
msgstr "Obce zainstalowane pakiety: %s"
|
msgstr "Łączna liczba zainstalowanych zewnętrznych paczek: %s"
|
||||||
|
|
||||||
#: pkg/vcs/vcs.go:144
|
#: pkg/vcs/vcs.go:144
|
||||||
msgid "Found git repo: %s"
|
msgid "Found git repo: %s"
|
||||||
@ -281,6 +259,7 @@ msgid "Groups"
|
|||||||
msgstr "Grupy"
|
msgstr "Grupy"
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:88
|
#: pkg/sync/srcinfo/pgp/keys.go:88
|
||||||
|
#, fuzzy
|
||||||
msgid "Import?"
|
msgid "Import?"
|
||||||
msgstr "Zaimportować?"
|
msgstr "Zaimportować?"
|
||||||
|
|
||||||
@ -302,27 +281,29 @@ msgstr "Licencje"
|
|||||||
|
|
||||||
#: pkg/dep/dep_graph.go:77
|
#: pkg/dep/dep_graph.go:77
|
||||||
msgid "Local"
|
msgid "Local"
|
||||||
msgstr "Lokalne"
|
msgstr ""
|
||||||
|
|
||||||
#: print.go:48
|
#: print.go:48
|
||||||
msgid "Maintainer"
|
msgid "Maintainer"
|
||||||
msgstr "Opiekun"
|
msgstr "Opiekun"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:62
|
#: pkg/dep/dep_graph.go:62
|
||||||
|
#, fuzzy
|
||||||
msgid "Make Dependency"
|
msgid "Make Dependency"
|
||||||
msgstr "Zależność Budowania"
|
msgstr "Zbuduj zależności"
|
||||||
|
|
||||||
#: print.go:40
|
#: print.go:40
|
||||||
msgid "Make Deps"
|
msgid "Make Deps"
|
||||||
msgstr "Zbuduj zależności"
|
msgstr "Zbuduj zależności"
|
||||||
|
|
||||||
|
#: pkg/query/aur_warnings.go:71
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Missing AUR Debug Packages:"
|
||||||
|
msgstr "Brakujące paczki z AUR:"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:79
|
#: pkg/dep/dep_graph.go:79
|
||||||
msgid "Missing"
|
msgid "Missing"
|
||||||
msgstr "Zaginiony"
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:75
|
|
||||||
msgid "Missing AUR Debug Packages:"
|
|
||||||
msgstr "Brakujące Debugowe Pakiety AUR:"
|
|
||||||
|
|
||||||
#: print.go:31
|
#: print.go:31
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
@ -330,11 +311,11 @@ msgstr "Nazwa"
|
|||||||
|
|
||||||
#: pkg/dep/dep_graph.go:442 pkg/dep/dep_graph.go:548
|
#: pkg/dep/dep_graph.go:442 pkg/dep/dep_graph.go:548
|
||||||
msgid "No AUR package found for"
|
msgid "No AUR package found for"
|
||||||
msgstr "Nie znaleziono pakietu AUR dla"
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:182
|
#: pkg/dep/dep_graph.go:182
|
||||||
msgid "No package found for"
|
msgid "No package found for"
|
||||||
msgstr "Nie znaleziono pakietu dla"
|
msgstr ""
|
||||||
|
|
||||||
#: print.go:225
|
#: print.go:225
|
||||||
msgid "None"
|
msgid "None"
|
||||||
@ -344,9 +325,10 @@ msgstr "Brak"
|
|||||||
msgid "Optional Deps"
|
msgid "Optional Deps"
|
||||||
msgstr "Opcjonalne zależności"
|
msgstr "Opcjonalne zależności"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:79
|
#: pkg/query/aur_warnings.go:75
|
||||||
|
#, fuzzy
|
||||||
msgid "Orphan (unmaintained) AUR Packages:"
|
msgid "Orphan (unmaintained) AUR Packages:"
|
||||||
msgstr "Osierocone (nieutrzymywane) pakiety AUR:"
|
msgstr "Osierocone paczki z AUR:"
|
||||||
|
|
||||||
#: print.go:53 print.go:55
|
#: print.go:53 print.go:55
|
||||||
msgid "Out-of-date"
|
msgid "Out-of-date"
|
||||||
@ -357,36 +339,41 @@ msgid "PGP keys need importing:"
|
|||||||
msgstr "Klucze PGP wymagające zaimportowania:"
|
msgstr "Klucze PGP wymagające zaimportowania:"
|
||||||
|
|
||||||
#: pkg/sync/workdir/preparer.go:252
|
#: pkg/sync/workdir/preparer.go:252
|
||||||
|
#, fuzzy
|
||||||
msgid "PKGBUILD up to date, skipping download: %s"
|
msgid "PKGBUILD up to date, skipping download: %s"
|
||||||
msgstr "PKGBUILD jest aktualny, pomijam pobieranie: %s"
|
msgstr "Aktualny PKGBUILD, pomijam (%d/%d): %s"
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:130
|
#: pkg/menus/edit_menu.go:130
|
||||||
msgid "PKGBUILDs to edit?"
|
msgid "PKGBUILDs to edit?"
|
||||||
msgstr "Edytować PKGBUILD-y?"
|
msgstr "Edytować PKGBUILD-y?"
|
||||||
|
|
||||||
#: print.go:61
|
|
||||||
msgid "Package Base"
|
|
||||||
msgstr "Podstawa Paczki"
|
|
||||||
|
|
||||||
#: print.go:60
|
#: print.go:60
|
||||||
|
#, fuzzy
|
||||||
msgid "Package Base ID"
|
msgid "Package Base ID"
|
||||||
msgstr "ID Podstawy Paczki"
|
msgstr "Package Base ID"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:71
|
#: print.go:61
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Package Base"
|
||||||
|
msgstr "Package Base"
|
||||||
|
|
||||||
|
#: pkg/query/aur_warnings.go:67
|
||||||
msgid "Packages not in AUR:"
|
msgid "Packages not in AUR:"
|
||||||
msgstr "Pakiety nie występujace w AUR:"
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/menus/clean_menu.go:54
|
#: pkg/menus/clean_menu.go:54
|
||||||
msgid "Packages to cleanBuild?"
|
msgid "Packages to cleanBuild?"
|
||||||
msgstr "Paczki do zbudowania od zera?"
|
msgstr "Paczki do zbudowania od zera?"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:202
|
#: pkg/dep/dep_graph.go:202
|
||||||
|
#, fuzzy
|
||||||
msgid "Packages to exclude"
|
msgid "Packages to exclude"
|
||||||
msgstr "Pakiety do wykluczenia"
|
msgstr "Paczki do aktualizacji."
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:294
|
#: pkg/upgrade/service.go:295
|
||||||
msgid "Packages to exclude: (eg: \"1 2 3\", \"1-3\", \"^4\" or repo name)"
|
msgid "Packages to exclude: (eg: \"1 2 3\", \"1-3\", \"^4\" or repo name)"
|
||||||
msgstr "Wykluczone paczki: (np.: \"1 2 3\", \"1-3\", \"^4\" lub nazwa repozytorium)"
|
msgstr ""
|
||||||
|
"Wykluczone paczki: (np.: \"1 2 3\", \"1-3\", \"^4\" lub nazwa repozytorium)"
|
||||||
|
|
||||||
#: cmd.go:392
|
#: cmd.go:392
|
||||||
msgid "Packages to install (eg: 1 2 3, 1-3 or ^4)"
|
msgid "Packages to install (eg: 1 2 3, 1-3 or ^4)"
|
||||||
@ -410,25 +397,25 @@ msgstr "Usunąć zależności potrzebne do zbudowania po instalacji?"
|
|||||||
|
|
||||||
#: print.go:43
|
#: print.go:43
|
||||||
msgid "Replaces"
|
msgid "Replaces"
|
||||||
msgstr "Zastępuje"
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:191 print.go:30
|
|
||||||
msgid "Repository"
|
|
||||||
msgstr "Repozytorium"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:730
|
#: pkg/dep/dep_graph.go:730
|
||||||
msgid "Repository AUR"
|
msgid "Repository AUR"
|
||||||
msgstr "Repozytorium AUR"
|
msgstr "Repozytorium AUR"
|
||||||
|
|
||||||
|
#: print.go:30 pkg/db/ialpm/alpm.go:191
|
||||||
|
msgid "Repository"
|
||||||
|
msgstr "Repozytorium"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:78
|
#: pkg/dep/dep_graph.go:78
|
||||||
msgid "SRCINFO"
|
msgid "SRCINFO"
|
||||||
msgstr "SRCINFO"
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:71
|
#: pkg/upgrade/service.go:72
|
||||||
msgid "Searching AUR for updates..."
|
msgid "Searching AUR for updates..."
|
||||||
msgstr "Przeszukuję AUR za aktualizacjami..."
|
msgstr "Przeszukuję AUR za aktualizacjami..."
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:159
|
#: pkg/upgrade/service.go:160
|
||||||
msgid "Searching databases for updates..."
|
msgid "Searching databases for updates..."
|
||||||
msgstr "Przeszukuję bazy danych za aktualizacjami..."
|
msgstr "Przeszukuję bazy danych za aktualizacjami..."
|
||||||
|
|
||||||
@ -437,20 +424,23 @@ msgid "Showing repo packages only"
|
|||||||
msgstr "Pokazuję tylko paczki z repozytoriów"
|
msgstr "Pokazuję tylko paczki z repozytoriów"
|
||||||
|
|
||||||
#: print.go:95
|
#: print.go:95
|
||||||
|
#, fuzzy
|
||||||
msgid "Size of pacman cache %s: %s"
|
msgid "Size of pacman cache %s: %s"
|
||||||
msgstr "Rozmiar pamięci podręcznej Pacmana %s: %s"
|
msgstr "nie udało się przetworzyć %s: %s"
|
||||||
|
|
||||||
#: print.go:98
|
#: print.go:98
|
||||||
|
#, fuzzy
|
||||||
msgid "Size of yay cache %s: %s"
|
msgid "Size of yay cache %s: %s"
|
||||||
msgstr "Rozmiar pamięci podręcznej yay %s: %s"
|
msgstr "nie udało się przetworzyć %s: %s"
|
||||||
|
|
||||||
#: print.go:62
|
#: print.go:62
|
||||||
|
#, fuzzy
|
||||||
msgid "Snapshot URL"
|
msgid "Snapshot URL"
|
||||||
msgstr "URL Snapshota"
|
msgstr "Snapshot URL"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:76
|
#: pkg/dep/dep_graph.go:76
|
||||||
msgid "Sync"
|
msgid "Sync"
|
||||||
msgstr "Synchronizacja"
|
msgstr ""
|
||||||
|
|
||||||
#: print.go:100
|
#: print.go:100
|
||||||
msgid "Ten biggest packages:"
|
msgid "Ten biggest packages:"
|
||||||
@ -461,8 +451,9 @@ msgid "The following packages are not compatible with your architecture:"
|
|||||||
msgstr "Te paczki nie są kompatybilne z architekturą Twojego systemu:"
|
msgstr "Te paczki nie są kompatybilne z architekturą Twojego systemu:"
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:179 pkg/dep/dep_graph.go:726
|
#: pkg/db/ialpm/alpm.go:179 pkg/dep/dep_graph.go:726
|
||||||
msgid "There are %[1]d providers available for %[2]s:"
|
#, fuzzy
|
||||||
msgstr "Jest %[1]d możliwych źródeł dla %[2]s:"
|
msgid "There are %d providers available for %s:"
|
||||||
|
msgstr "Jest %d możliwych źródeł dla %s:\n"
|
||||||
|
|
||||||
#: pkg/settings/exe/cmd_builder.go:258
|
#: pkg/settings/exe/cmd_builder.go:258
|
||||||
msgid "There may be another Pacman instance running. Waiting..."
|
msgid "There may be another Pacman instance running. Waiting..."
|
||||||
@ -485,20 +476,22 @@ msgid "URL"
|
|||||||
msgstr "URL"
|
msgstr "URL"
|
||||||
|
|
||||||
#: clean.go:194 pkg/menus/clean_menu.go:65 pkg/menus/clean_menu.go:71
|
#: clean.go:194 pkg/menus/clean_menu.go:65 pkg/menus/clean_menu.go:71
|
||||||
|
#, fuzzy
|
||||||
msgid "Unable to clean:"
|
msgid "Unable to clean:"
|
||||||
msgstr "Nie można sprzątnąć:"
|
msgstr "błąd przy CreateHandle: %s"
|
||||||
|
|
||||||
#: get.go:42 get.go:74
|
#: get.go:42 get.go:74
|
||||||
msgid "Unable to find the following packages:"
|
msgid "Unable to find the following packages:"
|
||||||
msgstr "Nie udało się znaleźć następujących paczek:"
|
msgstr ""
|
||||||
|
|
||||||
#: vote.go:20
|
#: vote.go:20
|
||||||
msgid "Unable to handle package vote for: %s. err: %s"
|
msgid "Unable to handle package vote for: %s. err: %s"
|
||||||
msgstr "Nie udało się obsłużyć oceny pakietu dla: %s. err: %s"
|
msgstr ""
|
||||||
|
|
||||||
#: clean.go:170
|
#: clean.go:170
|
||||||
|
#, fuzzy
|
||||||
msgid "Unable to remove %s: %s"
|
msgid "Unable to remove %s: %s"
|
||||||
msgstr "Nie udało się usunąć %s: %s"
|
msgstr "nie udało się przetworzyć %s: %s"
|
||||||
|
|
||||||
#: print.go:32
|
#: print.go:32
|
||||||
msgid "Version"
|
msgid "Version"
|
||||||
@ -510,11 +503,28 @@ msgstr "Głosów"
|
|||||||
|
|
||||||
#: print.go:87
|
#: print.go:87
|
||||||
msgid "Yay version v%s"
|
msgid "Yay version v%s"
|
||||||
msgstr "Wersja yay v%s"
|
msgstr "Wersja yaya v%s"
|
||||||
|
|
||||||
#: pkg/menus/menu.go:49
|
#: pkg/menus/menu.go:49
|
||||||
|
#, fuzzy
|
||||||
msgid "[N]one"
|
msgid "[N]one"
|
||||||
msgstr "[N]ic"
|
msgstr "[N]Żadne"
|
||||||
|
|
||||||
|
#: clean.go:83
|
||||||
|
msgid ""
|
||||||
|
"\n"
|
||||||
|
"Build directory:"
|
||||||
|
msgstr ""
|
||||||
|
"\n"
|
||||||
|
"Folder kompilacji:"
|
||||||
|
|
||||||
|
#: pkg/db/ialpm/alpm.go:201 pkg/dep/dep_graph.go:740
|
||||||
|
msgid ""
|
||||||
|
"\n"
|
||||||
|
"Enter a number (default=1): "
|
||||||
|
msgstr ""
|
||||||
|
"\n"
|
||||||
|
"Wybierz wartość (domyślnie=1): "
|
||||||
|
|
||||||
#: pkg/settings/errors.go:29
|
#: pkg/settings/errors.go:29
|
||||||
msgid "aborting due to user"
|
msgid "aborting due to user"
|
||||||
@ -522,11 +532,11 @@ msgstr "przerwane przez użytkownika"
|
|||||||
|
|
||||||
#: pkg/settings/parser/parser.go:608
|
#: pkg/settings/parser/parser.go:608
|
||||||
msgid "argument '-' specified without input on stdin"
|
msgid "argument '-' specified without input on stdin"
|
||||||
msgstr "argument '-' określony bez danych wejściowych"
|
msgstr ""
|
||||||
|
|
||||||
#: local_install.go:26
|
#: local_install.go:26
|
||||||
msgid "cannot find PKGBUILD and .SRCINFO in directory"
|
msgid "cannot find PKGBUILD and .SRCINFO in directory"
|
||||||
msgstr "nie znaleziono PKGBUILD i .SRCINFO w katalogu"
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/sync/build/pkg_archive.go:148
|
#: pkg/sync/build/pkg_archive.go:148
|
||||||
msgid "cannot find package name: %v"
|
msgid "cannot find package name: %v"
|
||||||
@ -537,20 +547,22 @@ msgid "could not find PKGDEST for: %s"
|
|||||||
msgstr "nie odnalazłem PKGDEST dla: %s"
|
msgstr "nie odnalazłem PKGDEST dla: %s"
|
||||||
|
|
||||||
#: errors.go:9
|
#: errors.go:9
|
||||||
|
#, fuzzy
|
||||||
msgid "could not find all required packages"
|
msgid "could not find all required packages"
|
||||||
msgstr "nie znaleziono wszystkich wymaganych pakietów"
|
msgstr "Nie znaleziono następujących zadanych paczek:"
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:61
|
#: pkg/sync/build/errors.go:61
|
||||||
msgid "could not find any package archives listed in %s"
|
msgid "could not find any package archives listed in %s"
|
||||||
msgstr "nie udało się znaleźć żadnych archiwów pakietów z listy %s"
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:50 pkg/upgrade/service.go:286
|
#: pkg/sync/build/errors.go:50 pkg/upgrade/service.go:287
|
||||||
|
#, fuzzy
|
||||||
msgid "dependency"
|
msgid "dependency"
|
||||||
msgstr "zależność"
|
msgstr "Zależy od"
|
||||||
|
|
||||||
#: pkg/vcs/vcs.go:100 pkg/vcs/vcs.go:96
|
#: pkg/vcs/vcs.go:96 pkg/vcs/vcs.go:100
|
||||||
msgid "devel check for package failed: '%s' encountered an error"
|
msgid "devel check for package failed: '%s' encountered an error"
|
||||||
msgstr "błąd sprawdzania wersji rozwojowej: '%s' napotkało na błąd"
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:110
|
#: pkg/menus/edit_menu.go:110
|
||||||
msgid "editor did not exit successfully, aborting: %s"
|
msgid "editor did not exit successfully, aborting: %s"
|
||||||
@ -569,8 +581,9 @@ msgid "error installing repo packages"
|
|||||||
msgstr "błąd podczas instalowania paczek z repozytorium"
|
msgstr "błąd podczas instalowania paczek z repozytorium"
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:266 pkg/sync/build/installer.go:270
|
#: pkg/sync/build/installer.go:266 pkg/sync/build/installer.go:270
|
||||||
|
#, fuzzy
|
||||||
msgid "error installing:"
|
msgid "error installing:"
|
||||||
msgstr "Błąd podczas instalacji:"
|
msgstr "błąd podczas instalowania paczek z repozytorium"
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:233 pkg/sync/build/installer.go:237
|
#: pkg/sync/build/installer.go:233 pkg/sync/build/installer.go:237
|
||||||
msgid "error making: %s"
|
msgid "error making: %s"
|
||||||
@ -594,15 +607,15 @@ msgstr "błąd podczas resetowania %s: %s"
|
|||||||
|
|
||||||
#: pkg/sync/build/errors.go:53
|
#: pkg/sync/build/errors.go:53
|
||||||
msgid "error updating package install reason to %s"
|
msgid "error updating package install reason to %s"
|
||||||
msgstr "błąd podczas ustawiania przyczyny instalacji pakietu na %s"
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:48
|
#: pkg/sync/build/errors.go:48
|
||||||
msgid "explicit"
|
msgid "explicit"
|
||||||
msgstr "jawne"
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/settings/errors.go:23
|
#: pkg/settings/errors.go:23
|
||||||
msgid "failed to create directory '%s': %s"
|
msgid "failed to create directory '%s': %s"
|
||||||
msgstr "nie udało się stworzyć katalogu '%s': %s"
|
msgstr "nie udało się stworzyć katalogu konfiguracyjnego '%s': %s"
|
||||||
|
|
||||||
#: pkg/settings/config.go:281
|
#: pkg/settings/config.go:281
|
||||||
msgid "failed to open config file '%s': %s"
|
msgid "failed to open config file '%s': %s"
|
||||||
@ -617,8 +630,9 @@ msgid "failed to parse %s: %s"
|
|||||||
msgstr "nie udało się przetworzyć %s: %s"
|
msgstr "nie udało się przetworzyć %s: %s"
|
||||||
|
|
||||||
#: local_install.go:77
|
#: local_install.go:77
|
||||||
|
#, fuzzy
|
||||||
msgid "failed to parse .SRCINFO"
|
msgid "failed to parse .SRCINFO"
|
||||||
msgstr "nie udało się przetworzyć .SRCINFO"
|
msgstr "nie udało się przetworzyć %s: %s"
|
||||||
|
|
||||||
#: pkg/settings/config.go:291
|
#: pkg/settings/config.go:291
|
||||||
msgid "failed to read config file '%s': %s"
|
msgid "failed to read config file '%s': %s"
|
||||||
@ -626,11 +640,12 @@ msgstr "nie udało się odczytać pliku konfiguracyjnego '%s': %s"
|
|||||||
|
|
||||||
#: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73
|
#: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73
|
||||||
msgid "failed to retrieve aur Cache"
|
msgid "failed to retrieve aur Cache"
|
||||||
msgstr "Nie udało się pozyskać pamięci podręcznej AUR"
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/upgrade/sources.go:27
|
#: pkg/upgrade/sources.go:27
|
||||||
|
#, fuzzy
|
||||||
msgid "ignoring package devel upgrade (no AUR info found):"
|
msgid "ignoring package devel upgrade (no AUR info found):"
|
||||||
msgstr "ignorowanie aktualizacji wersji rozwojowej (brak informacji w AUR):"
|
msgstr "%s: ignoruję aktualizację paczki (%s => %s)"
|
||||||
|
|
||||||
#: pkg/text/errors.go:8
|
#: pkg/text/errors.go:8
|
||||||
msgid "input too long"
|
msgid "input too long"
|
||||||
@ -646,35 +661,36 @@ msgstr "niepoprawna opcja '%s'"
|
|||||||
|
|
||||||
#: cmd.go:197
|
#: cmd.go:197
|
||||||
msgid "invalid option: '--deps' and '--explicit' may not be used together"
|
msgid "invalid option: '--deps' and '--explicit' may not be used together"
|
||||||
msgstr "niepoprawna opcja: '--deps' i '--explicit' nie mogą być razem używane"
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/download/abs.go:22
|
#: pkg/download/abs.go:22
|
||||||
|
#, fuzzy
|
||||||
msgid "invalid repository"
|
msgid "invalid repository"
|
||||||
msgstr "Nieprawidłowe repozytorium"
|
msgstr "Repozytorium"
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:227 pkg/dep/dep_graph.go:767
|
#: pkg/db/ialpm/alpm.go:227 pkg/dep/dep_graph.go:767
|
||||||
msgid "invalid value: %d is not between %d and %d"
|
msgid "invalid value: %d is not between %d and %d"
|
||||||
msgstr "niepoprawna wartość: %d nie jest pomiędzy %d a %d"
|
msgstr "niepoprawna wartość: %d nie jest pomiędzy %d a %d"
|
||||||
|
|
||||||
#: pkg/text/input.go:48
|
|
||||||
msgid "no"
|
|
||||||
msgstr "nie"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:110
|
#: pkg/sync/srcinfo/pgp/keys.go:110
|
||||||
msgid "no keys to import"
|
msgid "no keys to import"
|
||||||
msgstr "brak kluczy do zaimportowania"
|
msgstr "brak kluczy do zaimportowania"
|
||||||
|
|
||||||
#: pkg/query/errors.go:20
|
#: pkg/query/errors.go:20
|
||||||
msgid "no query was executed"
|
msgid "no query was executed"
|
||||||
msgstr "nie uruchomiono żadnego polecenia"
|
msgstr ""
|
||||||
|
|
||||||
#: local_install.go:66
|
#: local_install.go:66
|
||||||
msgid "no target directories specified"
|
msgid "no target directories specified"
|
||||||
msgstr "Nie określono folderu docelowego"
|
msgstr ""
|
||||||
|
|
||||||
|
#: pkg/text/input.go:48
|
||||||
|
msgid "no"
|
||||||
|
msgstr "nie"
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:242
|
#: pkg/sync/build/installer.go:242
|
||||||
msgid "nothing to install for %s"
|
msgid "nothing to install for %s"
|
||||||
msgstr "Nic do instalowania dla %s"
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/settings/parser/parser.go:164
|
#: pkg/settings/parser/parser.go:164
|
||||||
msgid "only one operation may be used at a time"
|
msgid "only one operation may be used at a time"
|
||||||
@ -682,27 +698,29 @@ msgstr "tylko jedna operacja może być zadana na raz"
|
|||||||
|
|
||||||
#: pkg/cmd/graph/main.go:70
|
#: pkg/cmd/graph/main.go:70
|
||||||
msgid "only one target is allowed"
|
msgid "only one target is allowed"
|
||||||
msgstr "dozwolony jest tylko jeden cel"
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:291
|
|
||||||
msgid "package"
|
|
||||||
msgid_plural "packages"
|
|
||||||
msgstr[0] "pakiet"
|
|
||||||
msgstr[1] "pakietów"
|
|
||||||
msgstr[2] "pakietów"
|
|
||||||
msgstr[3] "pakiety"
|
|
||||||
|
|
||||||
#: print.go:187
|
#: print.go:187
|
||||||
msgid "package '%s' was not found"
|
msgid "package '%s' was not found"
|
||||||
msgstr "paczka '%s' nie została odnaleziona"
|
msgstr "paczka '%s' nie została odnaleziona"
|
||||||
|
|
||||||
#: pkg/download/errors.go:15
|
#: pkg/download/errors.go:15
|
||||||
|
#, fuzzy
|
||||||
msgid "package not found in AUR"
|
msgid "package not found in AUR"
|
||||||
msgstr "Nie znaleziono paczki w AUR"
|
msgstr "paczka '%s' nie została odnaleziona"
|
||||||
|
|
||||||
#: pkg/download/abs.go:23
|
#: pkg/download/abs.go:23
|
||||||
|
#, fuzzy
|
||||||
msgid "package not found in repos"
|
msgid "package not found in repos"
|
||||||
msgstr "Nie znaleziono paczki w repozytoriach"
|
msgstr "paczka '%s' nie została odnaleziona"
|
||||||
|
|
||||||
|
#: pkg/upgrade/service.go:292
|
||||||
|
#, fuzzy
|
||||||
|
msgid "package"
|
||||||
|
msgid_plural "packages"
|
||||||
|
msgstr[0] "Package Base"
|
||||||
|
msgstr[1] "Package Base"
|
||||||
|
msgstr[2] "Package Base"
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:100
|
#: pkg/sync/srcinfo/pgp/keys.go:100
|
||||||
msgid "problem importing keys"
|
msgid "problem importing keys"
|
||||||
@ -721,12 +739,14 @@ msgid "the PKGDEST for %s is listed by makepkg but does not exist: %s"
|
|||||||
msgstr "PKGDEST dla %s jest wyszczególniony w makepkg, ale nie istnieje: %s"
|
msgstr "PKGDEST dla %s jest wyszczególniony w makepkg, ale nie istnieje: %s"
|
||||||
|
|
||||||
#: pkg/sync/sync.go:45
|
#: pkg/sync/sync.go:45
|
||||||
|
#, fuzzy
|
||||||
msgid "there is nothing to do"
|
msgid "there is nothing to do"
|
||||||
msgstr "Nie ma nic do zrobienia"
|
msgstr " nic nie pozostało do zrobienia"
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:247
|
#: pkg/db/ialpm/alpm.go:247
|
||||||
|
#, fuzzy
|
||||||
msgid "unable to CreateHandle: %s"
|
msgid "unable to CreateHandle: %s"
|
||||||
msgstr "błąd w CreateHandle: %s"
|
msgstr "błąd przy CreateHandle: %s"
|
||||||
|
|
||||||
#: cmd.go:186
|
#: cmd.go:186
|
||||||
msgid "unhandled operation"
|
msgid "unhandled operation"
|
||||||
@ -739,3 +759,94 @@ msgstr "nieznana-wersja"
|
|||||||
#: pkg/text/input.go:47
|
#: pkg/text/input.go:47
|
||||||
msgid "yes"
|
msgid "yes"
|
||||||
msgstr "tak"
|
msgstr "tak"
|
||||||
|
|
||||||
|
#~ msgid " (Target"
|
||||||
|
#~ msgstr " (Cel"
|
||||||
|
|
||||||
|
#~ msgid " (Wanted by: "
|
||||||
|
#~ msgstr " (Zależność od: "
|
||||||
|
|
||||||
|
#~ msgid " Input too long"
|
||||||
|
#~ msgstr " Zbyt długie dane wejściowe"
|
||||||
|
|
||||||
|
#~ msgid "Installing %s will remove:"
|
||||||
|
#~ msgstr "Zainstalowanie %s usunie:"
|
||||||
|
|
||||||
|
#~ msgid "%s already downloaded -- use -f to overwrite"
|
||||||
|
#~ msgstr "%s już jest ściągnięty - użyj -f aby nadpisać"
|
||||||
|
|
||||||
|
#~ msgid "%s and %s unset"
|
||||||
|
#~ msgstr "%s i %s są nieokreślone"
|
||||||
|
|
||||||
|
#~ msgid "%s not satisfied, flushing install queue"
|
||||||
|
#~ msgstr "%s nie spełniony, czyszczę kolejkę instalacji"
|
||||||
|
|
||||||
|
#~ msgid "Checking for conflicts..."
|
||||||
|
#~ msgstr "Sprawdzanie konfliktów..."
|
||||||
|
|
||||||
|
#~ msgid "Checking for inner conflicts..."
|
||||||
|
#~ msgstr "Sprawdzanie konfliktów wewnętrznych..."
|
||||||
|
|
||||||
|
#~ msgid "Conflicting packages will have to be confirmed manually"
|
||||||
|
#~ msgstr "Kolidujące paczki muszą być zatwierdzone ręcznie"
|
||||||
|
|
||||||
|
#~ msgid "Downloaded PKGBUILD (%d/%d): %s"
|
||||||
|
#~ msgstr "Ściągnięto PKGBUILD (%d/%d): %s"
|
||||||
|
|
||||||
|
#~ msgid "Missing ABS packages:"
|
||||||
|
#~ msgstr "Brakujące paczki z ABS-a:"
|
||||||
|
|
||||||
|
#~ msgid "Querying AUR..."
|
||||||
|
#~ msgstr "Odpytuję AUR..."
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ "Inner conflicts found:"
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ "Znalezione wewnętrzne konflikty:"
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ "Package conflicts found:"
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "\n"
|
||||||
|
#~ "Znalezione kolidujące paczki:"
|
||||||
|
|
||||||
|
#~ msgid "error cloning %s: %s"
|
||||||
|
#~ msgstr "błąd klonowania %s: %s"
|
||||||
|
|
||||||
|
#~ msgid "error during AUR search: %s"
|
||||||
|
#~ msgstr "błąd podczas przeszukiwania AUR: %s"
|
||||||
|
|
||||||
|
#~ msgid "failed to create BuildDir directory '%s': %s"
|
||||||
|
#~ msgstr "nie udało się stworzyć katalogu kompilacji '%s': %s"
|
||||||
|
|
||||||
|
#~ msgid "failed to get pkgbuild: %s: %s"
|
||||||
|
#~ msgstr "nie udało się ściągnąć PKGBUILD-a: %s: %s"
|
||||||
|
|
||||||
|
#, fuzzy
|
||||||
|
#~ msgid "failed to link %s: %s"
|
||||||
|
#~ msgstr "nie udało się linkowanie %s: %s"
|
||||||
|
|
||||||
|
#~ msgid "failed to open vcs file '%s': %s"
|
||||||
|
#~ msgstr "nie udało się otworzyć pliku VCS '%s': %s"
|
||||||
|
|
||||||
|
#~ msgid "failed to read vcs file '%s': %s"
|
||||||
|
#~ msgstr "nie udało się odczytać pliku VCS '%s': %s"
|
||||||
|
|
||||||
|
#~ msgid "invalid sort mode. Fix with yay -Y --bottomup --save"
|
||||||
|
#~ msgstr "niepoprawny tryb sortowania. Napraw przez yay -Y --bottomup --save"
|
||||||
|
|
||||||
|
#~ msgid "no packages match search"
|
||||||
|
#~ msgstr "żadne paczki nie pasują do zapytania"
|
||||||
|
|
||||||
|
#~ msgid "package conflicts can not be resolved with noconfirm, aborting"
|
||||||
|
#~ msgstr "kolizji paczek nie da się rozwiązać przez noconfirm, anuluję"
|
||||||
|
|
||||||
|
#, fuzzy
|
||||||
|
#~ msgid "refusing to install AUR packages as root, aborting"
|
||||||
|
#~ msgstr "nie będę instalować paczek z AUR jako root, anuluję"
|
||||||
|
|
||||||
|
#~ msgid "failed to create cache directory '%s': %s"
|
||||||
|
#~ msgstr "nie udało się stworzyć katalogu pamięci podręczniej '%s': %s"
|
||||||
|
121
po/pt.po
121
po/pt.po
@ -3,11 +3,10 @@
|
|||||||
# J G, 2021
|
# J G, 2021
|
||||||
# Eduardo Ervideira, 2023
|
# Eduardo Ervideira, 2023
|
||||||
# Hugo Carvalho <hugokarvalho@hotmail.com>, 2023
|
# Hugo Carvalho <hugokarvalho@hotmail.com>, 2023
|
||||||
# Matheus Calegaro <iflops@live.com>, 2024
|
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Last-Translator: Matheus Calegaro <iflops@live.com>, 2024\n"
|
"Last-Translator: Hugo Carvalho <hugokarvalho@hotmail.com>, 2023\n"
|
||||||
"Language-Team: Portuguese (https://app.transifex.com/yay-1/teams/123732/pt/)\n"
|
"Language-Team: Portuguese (https://app.transifex.com/yay-1/teams/123732/pt/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
@ -16,22 +15,6 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||||
"X-Generator: xgotext\n"
|
"X-Generator: xgotext\n"
|
||||||
|
|
||||||
#: clean.go:83
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
"Build directory:"
|
|
||||||
msgstr ""
|
|
||||||
"\n"
|
|
||||||
"Diretório de compilação:"
|
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:201 pkg/dep/dep_graph.go:740
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
"Enter a number (default=1): "
|
|
||||||
msgstr ""
|
|
||||||
"\n"
|
|
||||||
"Introduza um número (por padrão=1): "
|
|
||||||
|
|
||||||
#: pkg/menus/menu.go:32
|
#: pkg/menus/menu.go:32
|
||||||
msgid " (Build Files Exist)"
|
msgid " (Build Files Exist)"
|
||||||
msgstr " (Existem ficheiros de compilação)"
|
msgstr " (Existem ficheiros de compilação)"
|
||||||
@ -69,11 +52,11 @@ msgstr "%s está presente."
|
|||||||
msgid "%s is up to date -- skipping"
|
msgid "%s is up to date -- skipping"
|
||||||
msgstr "%s está atualizado -- a ignorar"
|
msgstr "%s está atualizado -- a ignorar"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:291
|
#: pkg/upgrade/service.go:292
|
||||||
msgid "%s to upgrade/install."
|
msgid "%s to upgrade/install."
|
||||||
msgstr "%s a atualizar/instalar."
|
msgstr "%s a atualizar/instalar."
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:285
|
#: pkg/upgrade/service.go:286
|
||||||
msgid "%s will also be installed for this operation."
|
msgid "%s will also be installed for this operation."
|
||||||
msgstr "%s também será instalado para esta operação."
|
msgstr "%s também será instalado para esta operação."
|
||||||
|
|
||||||
@ -126,11 +109,11 @@ msgstr "(%d/%d) Falha ao transferir PKGBUILD: %s"
|
|||||||
msgid "(%d/%d) Parsing SRCINFO: %s"
|
msgid "(%d/%d) Parsing SRCINFO: %s"
|
||||||
msgstr "(%d/%d) Analisando SRCINFO: %s"
|
msgstr "(%d/%d) Analisando SRCINFO: %s"
|
||||||
|
|
||||||
#: pkg/query/types.go:103 pkg/query/types.go:72
|
#: pkg/query/types.go:72 pkg/query/types.go:103
|
||||||
msgid "(Installed)"
|
msgid "(Installed)"
|
||||||
msgstr "(Instalado)"
|
msgstr "(Instalado)"
|
||||||
|
|
||||||
#: pkg/query/types.go:101 pkg/query/types.go:70
|
#: pkg/query/types.go:70 pkg/query/types.go:101
|
||||||
msgid "(Installed: %s)"
|
msgid "(Installed: %s)"
|
||||||
msgstr "(Instalado: %s)"
|
msgstr "(Instalado: %s)"
|
||||||
|
|
||||||
@ -142,14 +125,14 @@ msgstr "(Orfão)"
|
|||||||
msgid "(Out-of-date: %s)"
|
msgid "(Out-of-date: %s)"
|
||||||
msgstr "(Desatualizado: %s)"
|
msgstr "(Desatualizado: %s)"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:75
|
|
||||||
msgid "AUR"
|
|
||||||
msgstr "AUR"
|
|
||||||
|
|
||||||
#: print.go:44
|
#: print.go:44
|
||||||
msgid "AUR URL"
|
msgid "AUR URL"
|
||||||
msgstr "URL AUR"
|
msgstr "URL AUR"
|
||||||
|
|
||||||
|
#: pkg/dep/dep_graph.go:75
|
||||||
|
msgid "AUR"
|
||||||
|
msgstr "AUR"
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:58
|
#: pkg/menus/edit_menu.go:58
|
||||||
msgid "Add %s or %s to your environment variables"
|
msgid "Add %s or %s to your environment variables"
|
||||||
msgstr "Adicione %s ou %s às suas variáveis de ambiente"
|
msgstr "Adicione %s ou %s às suas variáveis de ambiente"
|
||||||
@ -166,7 +149,7 @@ msgstr "Verificar dependências"
|
|||||||
msgid "Check Deps"
|
msgid "Check Deps"
|
||||||
msgstr "Dependências de verificação"
|
msgstr "Dependências de verificação"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:89
|
#: pkg/upgrade/service.go:90
|
||||||
msgid "Checking development packages..."
|
msgid "Checking development packages..."
|
||||||
msgstr "A verificar pacotes de desenvolvimento..."
|
msgstr "A verificar pacotes de desenvolvimento..."
|
||||||
|
|
||||||
@ -222,7 +205,7 @@ msgstr "Editar PKGBUILD com?"
|
|||||||
msgid "Error during AUR search: %s\n"
|
msgid "Error during AUR search: %s\n"
|
||||||
msgstr "Erro durante a pesquisa AUR: %s\n"
|
msgstr "Erro durante a pesquisa AUR: %s\n"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:295
|
#: pkg/upgrade/service.go:296
|
||||||
msgid "Excluding packages may cause partial upgrades and break systems"
|
msgid "Excluding packages may cause partial upgrades and break systems"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"A exclusão de pacotes pode causar atualizações parciais e quebra de sistemas"
|
"A exclusão de pacotes pode causar atualizações parciais e quebra de sistemas"
|
||||||
@ -253,7 +236,7 @@ msgstr ""
|
|||||||
msgid "First Submitted"
|
msgid "First Submitted"
|
||||||
msgstr "Primeira submissão"
|
msgstr "Primeira submissão"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:83
|
#: pkg/query/aur_warnings.go:79
|
||||||
msgid "Flagged Out Of Date AUR Packages:"
|
msgid "Flagged Out Of Date AUR Packages:"
|
||||||
msgstr "Pacotes AUR marcados como desatualizados:"
|
msgstr "Pacotes AUR marcados como desatualizados:"
|
||||||
|
|
||||||
@ -309,14 +292,14 @@ msgstr "Criar dependências"
|
|||||||
msgid "Make Deps"
|
msgid "Make Deps"
|
||||||
msgstr "Dependências Make"
|
msgstr "Dependências Make"
|
||||||
|
|
||||||
|
#: pkg/query/aur_warnings.go:71
|
||||||
|
msgid "Missing AUR Debug Packages:"
|
||||||
|
msgstr "Pacotes de depuração AUR em falta:"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:79
|
#: pkg/dep/dep_graph.go:79
|
||||||
msgid "Missing"
|
msgid "Missing"
|
||||||
msgstr "Em falta"
|
msgstr "Em falta"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:75
|
|
||||||
msgid "Missing AUR Debug Packages:"
|
|
||||||
msgstr "Pacotes de depuração AUR em falta:"
|
|
||||||
|
|
||||||
#: print.go:31
|
#: print.go:31
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nome"
|
msgstr "Nome"
|
||||||
@ -337,7 +320,7 @@ msgstr "Nenhum"
|
|||||||
msgid "Optional Deps"
|
msgid "Optional Deps"
|
||||||
msgstr "Dependências opcionais"
|
msgstr "Dependências opcionais"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:79
|
#: pkg/query/aur_warnings.go:75
|
||||||
msgid "Orphan (unmaintained) AUR Packages:"
|
msgid "Orphan (unmaintained) AUR Packages:"
|
||||||
msgstr "Pacotes AUR órfãos (não mantidos):"
|
msgstr "Pacotes AUR órfãos (não mantidos):"
|
||||||
|
|
||||||
@ -357,15 +340,15 @@ msgstr "PKGBUILD atualizado, a ignorar a transferência: %s"
|
|||||||
msgid "PKGBUILDs to edit?"
|
msgid "PKGBUILDs to edit?"
|
||||||
msgstr "PKGBUILDs a editar?"
|
msgstr "PKGBUILDs a editar?"
|
||||||
|
|
||||||
#: print.go:61
|
|
||||||
msgid "Package Base"
|
|
||||||
msgstr "Pacote Base"
|
|
||||||
|
|
||||||
#: print.go:60
|
#: print.go:60
|
||||||
msgid "Package Base ID"
|
msgid "Package Base ID"
|
||||||
msgstr "ID do Pacote Base"
|
msgstr "ID do Pacote Base"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:71
|
#: print.go:61
|
||||||
|
msgid "Package Base"
|
||||||
|
msgstr "Pacote Base"
|
||||||
|
|
||||||
|
#: pkg/query/aur_warnings.go:67
|
||||||
msgid "Packages not in AUR:"
|
msgid "Packages not in AUR:"
|
||||||
msgstr "Pacotes que não estão no AUR:"
|
msgstr "Pacotes que não estão no AUR:"
|
||||||
|
|
||||||
@ -377,7 +360,7 @@ msgstr "Pacotes a compilar a limpo?"
|
|||||||
msgid "Packages to exclude"
|
msgid "Packages to exclude"
|
||||||
msgstr "Pacotes a excluir"
|
msgstr "Pacotes a excluir"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:294
|
#: pkg/upgrade/service.go:295
|
||||||
msgid "Packages to exclude: (eg: \"1 2 3\", \"1-3\", \"^4\" or repo name)"
|
msgid "Packages to exclude: (eg: \"1 2 3\", \"1-3\", \"^4\" or repo name)"
|
||||||
msgstr "Pacotes a excluir: (eg: \"1 2 3\", \"1-3\", \"^4\" or repo name)"
|
msgstr "Pacotes a excluir: (eg: \"1 2 3\", \"1-3\", \"^4\" or repo name)"
|
||||||
|
|
||||||
@ -405,23 +388,23 @@ msgstr "Remover as dependências de make pós-instalação?"
|
|||||||
msgid "Replaces"
|
msgid "Replaces"
|
||||||
msgstr "Substitui"
|
msgstr "Substitui"
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:191 print.go:30
|
|
||||||
msgid "Repository"
|
|
||||||
msgstr "Repositório"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:730
|
#: pkg/dep/dep_graph.go:730
|
||||||
msgid "Repository AUR"
|
msgid "Repository AUR"
|
||||||
msgstr "Repositório AUR"
|
msgstr "Repositório AUR"
|
||||||
|
|
||||||
|
#: print.go:30 pkg/db/ialpm/alpm.go:191
|
||||||
|
msgid "Repository"
|
||||||
|
msgstr "Repositório"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:78
|
#: pkg/dep/dep_graph.go:78
|
||||||
msgid "SRCINFO"
|
msgid "SRCINFO"
|
||||||
msgstr "SRCINFO"
|
msgstr "SRCINFO"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:71
|
#: pkg/upgrade/service.go:72
|
||||||
msgid "Searching AUR for updates..."
|
msgid "Searching AUR for updates..."
|
||||||
msgstr "A procurar atualizações na AUR..."
|
msgstr "A procurar atualizações na AUR..."
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:159
|
#: pkg/upgrade/service.go:160
|
||||||
msgid "Searching databases for updates..."
|
msgid "Searching databases for updates..."
|
||||||
msgstr "A procurar atualizações nos repositórios..."
|
msgstr "A procurar atualizações nos repositórios..."
|
||||||
|
|
||||||
@ -454,8 +437,8 @@ msgid "The following packages are not compatible with your architecture:"
|
|||||||
msgstr "Os seguintes pacotes não são compatíveis com a sua arquitetura:"
|
msgstr "Os seguintes pacotes não são compatíveis com a sua arquitetura:"
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:179 pkg/dep/dep_graph.go:726
|
#: pkg/db/ialpm/alpm.go:179 pkg/dep/dep_graph.go:726
|
||||||
msgid "There are %[1]d providers available for %[2]s:"
|
msgid "There are %d providers available for %s:"
|
||||||
msgstr "Existem %[1]d provedores disponíveis para %[2]s:"
|
msgstr "Existem %d provedores disponíveis para %s:"
|
||||||
|
|
||||||
#: pkg/settings/exe/cmd_builder.go:258
|
#: pkg/settings/exe/cmd_builder.go:258
|
||||||
msgid "There may be another Pacman instance running. Waiting..."
|
msgid "There may be another Pacman instance running. Waiting..."
|
||||||
@ -509,6 +492,22 @@ msgstr "Versão Yay v%s"
|
|||||||
msgid "[N]one"
|
msgid "[N]one"
|
||||||
msgstr "[N]enhum"
|
msgstr "[N]enhum"
|
||||||
|
|
||||||
|
#: clean.go:83
|
||||||
|
msgid ""
|
||||||
|
"\n"
|
||||||
|
"Build directory:"
|
||||||
|
msgstr ""
|
||||||
|
"\n"
|
||||||
|
"Diretório de compilação:"
|
||||||
|
|
||||||
|
#: pkg/db/ialpm/alpm.go:201 pkg/dep/dep_graph.go:740
|
||||||
|
msgid ""
|
||||||
|
"\n"
|
||||||
|
"Enter a number (default=1): "
|
||||||
|
msgstr ""
|
||||||
|
"\n"
|
||||||
|
"Introduza um número (por padrão=1): "
|
||||||
|
|
||||||
#: pkg/settings/errors.go:29
|
#: pkg/settings/errors.go:29
|
||||||
msgid "aborting due to user"
|
msgid "aborting due to user"
|
||||||
msgstr "a abortar por opção do utilizador"
|
msgstr "a abortar por opção do utilizador"
|
||||||
@ -537,11 +536,11 @@ msgstr "não foi possível localizar todos os pacotes necessários"
|
|||||||
msgid "could not find any package archives listed in %s"
|
msgid "could not find any package archives listed in %s"
|
||||||
msgstr "não foi possível localizar nenhum arquivo de pacotes listados em %s"
|
msgstr "não foi possível localizar nenhum arquivo de pacotes listados em %s"
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:50 pkg/upgrade/service.go:286
|
#: pkg/sync/build/errors.go:50 pkg/upgrade/service.go:287
|
||||||
msgid "dependency"
|
msgid "dependency"
|
||||||
msgstr "dependência"
|
msgstr "dependência"
|
||||||
|
|
||||||
#: pkg/vcs/vcs.go:100 pkg/vcs/vcs.go:96
|
#: pkg/vcs/vcs.go:96 pkg/vcs/vcs.go:100
|
||||||
msgid "devel check for package failed: '%s' encountered an error"
|
msgid "devel check for package failed: '%s' encountered an error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"falha na pesquisa por pacotes de desenvolvimento: '%s' encontrou um erro"
|
"falha na pesquisa por pacotes de desenvolvimento: '%s' encontrou um erro"
|
||||||
@ -653,10 +652,6 @@ msgstr "repositório inválido"
|
|||||||
msgid "invalid value: %d is not between %d and %d"
|
msgid "invalid value: %d is not between %d and %d"
|
||||||
msgstr "valor inválido: %d não está entre %d e %d"
|
msgstr "valor inválido: %d não está entre %d e %d"
|
||||||
|
|
||||||
#: pkg/text/input.go:48
|
|
||||||
msgid "no"
|
|
||||||
msgstr "não"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:110
|
#: pkg/sync/srcinfo/pgp/keys.go:110
|
||||||
msgid "no keys to import"
|
msgid "no keys to import"
|
||||||
msgstr "nenhuma chave a importar"
|
msgstr "nenhuma chave a importar"
|
||||||
@ -669,6 +664,10 @@ msgstr "nenhuma análise foi executada"
|
|||||||
msgid "no target directories specified"
|
msgid "no target directories specified"
|
||||||
msgstr "nenhum diretório de destino especificado"
|
msgstr "nenhum diretório de destino especificado"
|
||||||
|
|
||||||
|
#: pkg/text/input.go:48
|
||||||
|
msgid "no"
|
||||||
|
msgstr "não"
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:242
|
#: pkg/sync/build/installer.go:242
|
||||||
msgid "nothing to install for %s"
|
msgid "nothing to install for %s"
|
||||||
msgstr "nada a instalar para %s"
|
msgstr "nada a instalar para %s"
|
||||||
@ -681,13 +680,6 @@ msgstr "apenas uma operação pode ser utilizada ao mesmo tempo"
|
|||||||
msgid "only one target is allowed"
|
msgid "only one target is allowed"
|
||||||
msgstr "apenas um destino é permitido"
|
msgstr "apenas um destino é permitido"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:291
|
|
||||||
msgid "package"
|
|
||||||
msgid_plural "packages"
|
|
||||||
msgstr[0] "pacote"
|
|
||||||
msgstr[1] "pacotes"
|
|
||||||
msgstr[2] "pacotes"
|
|
||||||
|
|
||||||
#: print.go:187
|
#: print.go:187
|
||||||
msgid "package '%s' was not found"
|
msgid "package '%s' was not found"
|
||||||
msgstr "pacote '%s' não foi encontrado"
|
msgstr "pacote '%s' não foi encontrado"
|
||||||
@ -700,6 +692,13 @@ msgstr "pacote não encontrado no AUR"
|
|||||||
msgid "package not found in repos"
|
msgid "package not found in repos"
|
||||||
msgstr "pacote não encontrado nos repositórios"
|
msgstr "pacote não encontrado nos repositórios"
|
||||||
|
|
||||||
|
#: pkg/upgrade/service.go:292
|
||||||
|
msgid "package"
|
||||||
|
msgid_plural "packages"
|
||||||
|
msgstr[0] "pacote"
|
||||||
|
msgstr[1] "pacotes"
|
||||||
|
msgstr[2] "pacotes"
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:100
|
#: pkg/sync/srcinfo/pgp/keys.go:100
|
||||||
msgid "problem importing keys"
|
msgid "problem importing keys"
|
||||||
msgstr "problema ao importar chaves"
|
msgstr "problema ao importar chaves"
|
||||||
|
121
po/pt_BR.po
121
po/pt_BR.po
@ -7,11 +7,10 @@
|
|||||||
# Fernando Macedo, 2023
|
# Fernando Macedo, 2023
|
||||||
# Felipe Avelar, 2023
|
# Felipe Avelar, 2023
|
||||||
# Lucas Miranda <Liddack@outlook.com>, 2023
|
# Lucas Miranda <Liddack@outlook.com>, 2023
|
||||||
# Matheus Calegaro <iflops@live.com>, 2024
|
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Last-Translator: Matheus Calegaro <iflops@live.com>, 2024\n"
|
"Last-Translator: Lucas Miranda <Liddack@outlook.com>, 2023\n"
|
||||||
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/yay-1/teams/123732/pt_BR/)\n"
|
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/yay-1/teams/123732/pt_BR/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
@ -20,22 +19,6 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||||
"X-Generator: xgotext\n"
|
"X-Generator: xgotext\n"
|
||||||
|
|
||||||
#: clean.go:83
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
"Build directory:"
|
|
||||||
msgstr ""
|
|
||||||
"\n"
|
|
||||||
"Diretório de compilação:"
|
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:201 pkg/dep/dep_graph.go:740
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
"Enter a number (default=1): "
|
|
||||||
msgstr ""
|
|
||||||
"\n"
|
|
||||||
"Digite um número (padrão=1): "
|
|
||||||
|
|
||||||
#: pkg/menus/menu.go:32
|
#: pkg/menus/menu.go:32
|
||||||
msgid " (Build Files Exist)"
|
msgid " (Build Files Exist)"
|
||||||
msgstr " (Arquivos de Build Existem)"
|
msgstr " (Arquivos de Build Existem)"
|
||||||
@ -73,11 +56,11 @@ msgstr "%s está presente."
|
|||||||
msgid "%s is up to date -- skipping"
|
msgid "%s is up to date -- skipping"
|
||||||
msgstr "%s está atualizado -- pulando"
|
msgstr "%s está atualizado -- pulando"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:291
|
#: pkg/upgrade/service.go:292
|
||||||
msgid "%s to upgrade/install."
|
msgid "%s to upgrade/install."
|
||||||
msgstr "%s para atualizar/instalar."
|
msgstr "%s para atualizar/instalar."
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:285
|
#: pkg/upgrade/service.go:286
|
||||||
msgid "%s will also be installed for this operation."
|
msgid "%s will also be installed for this operation."
|
||||||
msgstr "%s também será instalado para essa operação."
|
msgstr "%s também será instalado para essa operação."
|
||||||
|
|
||||||
@ -131,11 +114,11 @@ msgstr "(%d/%d) Falha ao baixar PKGBUILD: %s"
|
|||||||
msgid "(%d/%d) Parsing SRCINFO: %s"
|
msgid "(%d/%d) Parsing SRCINFO: %s"
|
||||||
msgstr "(%d/%d) Analisando SRCINFO: %s"
|
msgstr "(%d/%d) Analisando SRCINFO: %s"
|
||||||
|
|
||||||
#: pkg/query/types.go:103 pkg/query/types.go:72
|
#: pkg/query/types.go:72 pkg/query/types.go:103
|
||||||
msgid "(Installed)"
|
msgid "(Installed)"
|
||||||
msgstr "(Instalado)"
|
msgstr "(Instalado)"
|
||||||
|
|
||||||
#: pkg/query/types.go:101 pkg/query/types.go:70
|
#: pkg/query/types.go:70 pkg/query/types.go:101
|
||||||
msgid "(Installed: %s)"
|
msgid "(Installed: %s)"
|
||||||
msgstr "(Instalado: %s)"
|
msgstr "(Instalado: %s)"
|
||||||
|
|
||||||
@ -147,14 +130,14 @@ msgstr "(Órfão)"
|
|||||||
msgid "(Out-of-date: %s)"
|
msgid "(Out-of-date: %s)"
|
||||||
msgstr "(Desatualizado: %s)"
|
msgstr "(Desatualizado: %s)"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:75
|
|
||||||
msgid "AUR"
|
|
||||||
msgstr "AUR"
|
|
||||||
|
|
||||||
#: print.go:44
|
#: print.go:44
|
||||||
msgid "AUR URL"
|
msgid "AUR URL"
|
||||||
msgstr "URL do AUR"
|
msgstr "URL do AUR"
|
||||||
|
|
||||||
|
#: pkg/dep/dep_graph.go:75
|
||||||
|
msgid "AUR"
|
||||||
|
msgstr "AUR"
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:58
|
#: pkg/menus/edit_menu.go:58
|
||||||
msgid "Add %s or %s to your environment variables"
|
msgid "Add %s or %s to your environment variables"
|
||||||
msgstr "Adicione %s ou %s às suas variáveis de ambiente"
|
msgstr "Adicione %s ou %s às suas variáveis de ambiente"
|
||||||
@ -171,7 +154,7 @@ msgstr "Verificar dependências"
|
|||||||
msgid "Check Deps"
|
msgid "Check Deps"
|
||||||
msgstr "Dependências de verificação"
|
msgstr "Dependências de verificação"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:89
|
#: pkg/upgrade/service.go:90
|
||||||
msgid "Checking development packages..."
|
msgid "Checking development packages..."
|
||||||
msgstr "Verificando pacotes em desenvolvimento..."
|
msgstr "Verificando pacotes em desenvolvimento..."
|
||||||
|
|
||||||
@ -227,7 +210,7 @@ msgstr "Editar PKGBUILD com?"
|
|||||||
msgid "Error during AUR search: %s\n"
|
msgid "Error during AUR search: %s\n"
|
||||||
msgstr "Erro durante a busca no AUR: %s\n"
|
msgstr "Erro durante a busca no AUR: %s\n"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:295
|
#: pkg/upgrade/service.go:296
|
||||||
msgid "Excluding packages may cause partial upgrades and break systems"
|
msgid "Excluding packages may cause partial upgrades and break systems"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"A exclusão de pacotes pode causar atualizações parciais e quebrar sistemas"
|
"A exclusão de pacotes pode causar atualizações parciais e quebrar sistemas"
|
||||||
@ -258,7 +241,7 @@ msgstr ""
|
|||||||
msgid "First Submitted"
|
msgid "First Submitted"
|
||||||
msgstr "Primeira submissão"
|
msgstr "Primeira submissão"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:83
|
#: pkg/query/aur_warnings.go:79
|
||||||
msgid "Flagged Out Of Date AUR Packages:"
|
msgid "Flagged Out Of Date AUR Packages:"
|
||||||
msgstr "Pacotes AUR marcados como desatualizados:"
|
msgstr "Pacotes AUR marcados como desatualizados:"
|
||||||
|
|
||||||
@ -314,14 +297,14 @@ msgstr "Criar dependências"
|
|||||||
msgid "Make Deps"
|
msgid "Make Deps"
|
||||||
msgstr "Dependências Make"
|
msgstr "Dependências Make"
|
||||||
|
|
||||||
|
#: pkg/query/aur_warnings.go:71
|
||||||
|
msgid "Missing AUR Debug Packages:"
|
||||||
|
msgstr "Pacotes de debug do AUR em falta:"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:79
|
#: pkg/dep/dep_graph.go:79
|
||||||
msgid "Missing"
|
msgid "Missing"
|
||||||
msgstr "Em falta"
|
msgstr "Em falta"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:75
|
|
||||||
msgid "Missing AUR Debug Packages:"
|
|
||||||
msgstr "Pacotes de debug do AUR em falta:"
|
|
||||||
|
|
||||||
#: print.go:31
|
#: print.go:31
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nome"
|
msgstr "Nome"
|
||||||
@ -342,7 +325,7 @@ msgstr "Nenhum"
|
|||||||
msgid "Optional Deps"
|
msgid "Optional Deps"
|
||||||
msgstr "Depêndencias Opcionais"
|
msgstr "Depêndencias Opcionais"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:79
|
#: pkg/query/aur_warnings.go:75
|
||||||
msgid "Orphan (unmaintained) AUR Packages:"
|
msgid "Orphan (unmaintained) AUR Packages:"
|
||||||
msgstr "Pacotes AUR órfãos (não mantidos):"
|
msgstr "Pacotes AUR órfãos (não mantidos):"
|
||||||
|
|
||||||
@ -362,15 +345,15 @@ msgstr "PKGBUILD atualizado, ignorando a transferência: %s"
|
|||||||
msgid "PKGBUILDs to edit?"
|
msgid "PKGBUILDs to edit?"
|
||||||
msgstr "PKGBUILDs a serem editados?"
|
msgstr "PKGBUILDs a serem editados?"
|
||||||
|
|
||||||
#: print.go:61
|
|
||||||
msgid "Package Base"
|
|
||||||
msgstr "Pacotes Base"
|
|
||||||
|
|
||||||
#: print.go:60
|
#: print.go:60
|
||||||
msgid "Package Base ID"
|
msgid "Package Base ID"
|
||||||
msgstr "ID do Pacote Base"
|
msgstr "ID do Pacote Base"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:71
|
#: print.go:61
|
||||||
|
msgid "Package Base"
|
||||||
|
msgstr "Pacotes Base"
|
||||||
|
|
||||||
|
#: pkg/query/aur_warnings.go:67
|
||||||
msgid "Packages not in AUR:"
|
msgid "Packages not in AUR:"
|
||||||
msgstr "Pacotes que não estão no AUR:"
|
msgstr "Pacotes que não estão no AUR:"
|
||||||
|
|
||||||
@ -382,7 +365,7 @@ msgstr "Limpar e construir quais pacotes?"
|
|||||||
msgid "Packages to exclude"
|
msgid "Packages to exclude"
|
||||||
msgstr "Pacotes a excluir"
|
msgstr "Pacotes a excluir"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:294
|
#: pkg/upgrade/service.go:295
|
||||||
msgid "Packages to exclude: (eg: \"1 2 3\", \"1-3\", \"^4\" or repo name)"
|
msgid "Packages to exclude: (eg: \"1 2 3\", \"1-3\", \"^4\" or repo name)"
|
||||||
msgstr "Pacotes a excluir: (ex: \"1 2 3\", \"1-3\", \"^4\" ou nome do repositório)"
|
msgstr "Pacotes a excluir: (ex: \"1 2 3\", \"1-3\", \"^4\" ou nome do repositório)"
|
||||||
|
|
||||||
@ -410,23 +393,23 @@ msgstr "Remover dependências make após a instalação?"
|
|||||||
msgid "Replaces"
|
msgid "Replaces"
|
||||||
msgstr "Substitui"
|
msgstr "Substitui"
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:191 print.go:30
|
|
||||||
msgid "Repository"
|
|
||||||
msgstr "Repositório"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:730
|
#: pkg/dep/dep_graph.go:730
|
||||||
msgid "Repository AUR"
|
msgid "Repository AUR"
|
||||||
msgstr "Repositório AUR"
|
msgstr "Repositório AUR"
|
||||||
|
|
||||||
|
#: print.go:30 pkg/db/ialpm/alpm.go:191
|
||||||
|
msgid "Repository"
|
||||||
|
msgstr "Repositório"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:78
|
#: pkg/dep/dep_graph.go:78
|
||||||
msgid "SRCINFO"
|
msgid "SRCINFO"
|
||||||
msgstr "SRCINFO"
|
msgstr "SRCINFO"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:71
|
#: pkg/upgrade/service.go:72
|
||||||
msgid "Searching AUR for updates..."
|
msgid "Searching AUR for updates..."
|
||||||
msgstr "Procurando atualizações no AUR..."
|
msgstr "Procurando atualizações no AUR..."
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:159
|
#: pkg/upgrade/service.go:160
|
||||||
msgid "Searching databases for updates..."
|
msgid "Searching databases for updates..."
|
||||||
msgstr "Procurando atualizações nos bancos de dados..."
|
msgstr "Procurando atualizações nos bancos de dados..."
|
||||||
|
|
||||||
@ -459,8 +442,8 @@ msgid "The following packages are not compatible with your architecture:"
|
|||||||
msgstr "Os seguintes pacotes não são compatíveis com a sua arquitetura:"
|
msgstr "Os seguintes pacotes não são compatíveis com a sua arquitetura:"
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:179 pkg/dep/dep_graph.go:726
|
#: pkg/db/ialpm/alpm.go:179 pkg/dep/dep_graph.go:726
|
||||||
msgid "There are %[1]d providers available for %[2]s:"
|
msgid "There are %d providers available for %s:"
|
||||||
msgstr "Existem %[1]d provedores disponíveis para %[2]s:"
|
msgstr "Existem %d fornecedores disponíveis para %s:"
|
||||||
|
|
||||||
#: pkg/settings/exe/cmd_builder.go:258
|
#: pkg/settings/exe/cmd_builder.go:258
|
||||||
msgid "There may be another Pacman instance running. Waiting..."
|
msgid "There may be another Pacman instance running. Waiting..."
|
||||||
@ -514,6 +497,22 @@ msgstr "Versão do Yay v%s"
|
|||||||
msgid "[N]one"
|
msgid "[N]one"
|
||||||
msgstr "[N]Nenhum"
|
msgstr "[N]Nenhum"
|
||||||
|
|
||||||
|
#: clean.go:83
|
||||||
|
msgid ""
|
||||||
|
"\n"
|
||||||
|
"Build directory:"
|
||||||
|
msgstr ""
|
||||||
|
"\n"
|
||||||
|
"Diretório de build:"
|
||||||
|
|
||||||
|
#: pkg/db/ialpm/alpm.go:201 pkg/dep/dep_graph.go:740
|
||||||
|
msgid ""
|
||||||
|
"\n"
|
||||||
|
"Enter a number (default=1): "
|
||||||
|
msgstr ""
|
||||||
|
"\n"
|
||||||
|
"Digite um número (padrão=1): "
|
||||||
|
|
||||||
#: pkg/settings/errors.go:29
|
#: pkg/settings/errors.go:29
|
||||||
msgid "aborting due to user"
|
msgid "aborting due to user"
|
||||||
msgstr "abortando devido ao usuário"
|
msgstr "abortando devido ao usuário"
|
||||||
@ -542,11 +541,11 @@ msgstr "não foi possível localizar todos os pacotes necessários"
|
|||||||
msgid "could not find any package archives listed in %s"
|
msgid "could not find any package archives listed in %s"
|
||||||
msgstr "não foi possível localizar nenhum arquivo de pacotes listados em %s"
|
msgstr "não foi possível localizar nenhum arquivo de pacotes listados em %s"
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:50 pkg/upgrade/service.go:286
|
#: pkg/sync/build/errors.go:50 pkg/upgrade/service.go:287
|
||||||
msgid "dependency"
|
msgid "dependency"
|
||||||
msgstr "dependência"
|
msgstr "dependência"
|
||||||
|
|
||||||
#: pkg/vcs/vcs.go:100 pkg/vcs/vcs.go:96
|
#: pkg/vcs/vcs.go:96 pkg/vcs/vcs.go:100
|
||||||
msgid "devel check for package failed: '%s' encountered an error"
|
msgid "devel check for package failed: '%s' encountered an error"
|
||||||
msgstr "a busca por pacotes devel falhou: '%s' encontrou um erro"
|
msgstr "a busca por pacotes devel falhou: '%s' encontrou um erro"
|
||||||
|
|
||||||
@ -658,10 +657,6 @@ msgstr "repositório inválido"
|
|||||||
msgid "invalid value: %d is not between %d and %d"
|
msgid "invalid value: %d is not between %d and %d"
|
||||||
msgstr "valor inválido: %d não está entre %d e %d"
|
msgstr "valor inválido: %d não está entre %d e %d"
|
||||||
|
|
||||||
#: pkg/text/input.go:48
|
|
||||||
msgid "no"
|
|
||||||
msgstr "não"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:110
|
#: pkg/sync/srcinfo/pgp/keys.go:110
|
||||||
msgid "no keys to import"
|
msgid "no keys to import"
|
||||||
msgstr "nenhuma chave para ser importada"
|
msgstr "nenhuma chave para ser importada"
|
||||||
@ -674,6 +669,10 @@ msgstr "nenhuma busca foi executada"
|
|||||||
msgid "no target directories specified"
|
msgid "no target directories specified"
|
||||||
msgstr "nenhum diretório de destino especificado"
|
msgstr "nenhum diretório de destino especificado"
|
||||||
|
|
||||||
|
#: pkg/text/input.go:48
|
||||||
|
msgid "no"
|
||||||
|
msgstr "não"
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:242
|
#: pkg/sync/build/installer.go:242
|
||||||
msgid "nothing to install for %s"
|
msgid "nothing to install for %s"
|
||||||
msgstr "nada a instalar para %s"
|
msgstr "nada a instalar para %s"
|
||||||
@ -686,13 +685,6 @@ msgstr "somente uma operação pode ser utilizada de cada vez"
|
|||||||
msgid "only one target is allowed"
|
msgid "only one target is allowed"
|
||||||
msgstr "apenas um destino é permitido"
|
msgstr "apenas um destino é permitido"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:291
|
|
||||||
msgid "package"
|
|
||||||
msgid_plural "packages"
|
|
||||||
msgstr[0] "pacote"
|
|
||||||
msgstr[1] "pacotes"
|
|
||||||
msgstr[2] "pacotes"
|
|
||||||
|
|
||||||
#: print.go:187
|
#: print.go:187
|
||||||
msgid "package '%s' was not found"
|
msgid "package '%s' was not found"
|
||||||
msgstr "pacote '%s' não foi encontrado"
|
msgstr "pacote '%s' não foi encontrado"
|
||||||
@ -705,6 +697,13 @@ msgstr "pacote não encontrado no AUR"
|
|||||||
msgid "package not found in repos"
|
msgid "package not found in repos"
|
||||||
msgstr "pacote não encontrado nos repositórios"
|
msgstr "pacote não encontrado nos repositórios"
|
||||||
|
|
||||||
|
#: pkg/upgrade/service.go:292
|
||||||
|
msgid "package"
|
||||||
|
msgid_plural "packages"
|
||||||
|
msgstr[0] "pacote"
|
||||||
|
msgstr[1] "pacotes"
|
||||||
|
msgstr[2] "pacotes"
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:100
|
#: pkg/sync/srcinfo/pgp/keys.go:100
|
||||||
msgid "problem importing keys"
|
msgid "problem importing keys"
|
||||||
msgstr "problema ao importar as chaves"
|
msgstr "problema ao importar as chaves"
|
||||||
|
151
po/ru.po
151
po/ru.po
@ -1,41 +1,25 @@
|
|||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
|
# Ravenso BlacK, 2022
|
||||||
# Vladislav Zenkov, 2022
|
# Vladislav Zenkov, 2022
|
||||||
# Kira Malinova, 2023
|
# Kira Malinova, 2023
|
||||||
# Victor Golovanenko <drygdryg2014@yandex.ru>, 2023
|
# Victor Golovanenko <drygdryg2014@yandex.ru>, 2023
|
||||||
# Dancheg97 F, 2023
|
# Dancheg97 F, 2023
|
||||||
# falixfresh, 2023
|
# falixkamishin falixx, 2023
|
||||||
# Ravenso BlacK, 2023
|
|
||||||
# Vladislav Grechannik, 2024
|
|
||||||
# Vladimir Yerilov, 2025
|
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Last-Translator: Vladimir Yerilov, 2025\n"
|
"Last-Translator: falixkamishin falixx, 2023\n"
|
||||||
"Language-Team: Russian (https://app.transifex.com/yay-1/teams/123732/ru/)\n"
|
"Language-Team: Russian (https://app.transifex.com/yay-1/teams/123732/ru/)\n"
|
||||||
|
"Language: ru\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Language: ru\n"
|
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
"n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || "
|
||||||
|
"(n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||||
"X-Generator: xgotext\n"
|
"X-Generator: xgotext\n"
|
||||||
|
|
||||||
#: clean.go:83
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
"Build directory:"
|
|
||||||
msgstr ""
|
|
||||||
"\n"
|
|
||||||
"Каталог сборки:"
|
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:201 pkg/dep/dep_graph.go:740
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
"Enter a number (default=1): "
|
|
||||||
msgstr ""
|
|
||||||
"\n"
|
|
||||||
"Введите номер (по умолчанию=1):"
|
|
||||||
|
|
||||||
#: pkg/menus/menu.go:32
|
#: pkg/menus/menu.go:32
|
||||||
msgid " (Build Files Exist)"
|
msgid " (Build Files Exist)"
|
||||||
msgstr " (Файлы сборки существуют)"
|
msgstr " (Файлы сборки существуют)"
|
||||||
@ -73,11 +57,11 @@ msgstr "%s уже существует."
|
|||||||
msgid "%s is up to date -- skipping"
|
msgid "%s is up to date -- skipping"
|
||||||
msgstr "%s обновлён -- пропуск"
|
msgstr "%s обновлён -- пропуск"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:291
|
#: pkg/upgrade/service.go:292
|
||||||
msgid "%s to upgrade/install."
|
msgid "%s to upgrade/install."
|
||||||
msgstr "обновить/установить."
|
msgstr "обновить/установить."
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:285
|
#: pkg/upgrade/service.go:286
|
||||||
msgid "%s will also be installed for this operation."
|
msgid "%s will also be installed for this operation."
|
||||||
msgstr "также будет установлен для этой операции."
|
msgstr "также будет установлен для этой операции."
|
||||||
|
|
||||||
@ -107,8 +91,7 @@ msgstr "%s: локальный пакет (%s) новее, чем в AUR (%s)"
|
|||||||
|
|
||||||
#: vote.go:51
|
#: vote.go:51
|
||||||
msgid ""
|
msgid ""
|
||||||
"%s: please set AUR_USERNAME and AUR_PASSWORD environment variables for "
|
"%s: please set AUR_USERNAME and AUR_PASSWORD environment variables for voting"
|
||||||
"voting"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"%s: пожалуйста, укажите AUR_USERNAME и AUR_PASSWORD переменной среды для "
|
"%s: пожалуйста, укажите AUR_USERNAME и AUR_PASSWORD переменной среды для "
|
||||||
"голосования"
|
"голосования"
|
||||||
@ -122,18 +105,19 @@ msgid "(%d/%d) Downloaded PKGBUILD: %s"
|
|||||||
msgstr "(%d/%d) Загружен PKGBUILD: %s"
|
msgstr "(%d/%d) Загружен PKGBUILD: %s"
|
||||||
|
|
||||||
#: pkg/download/aur.go:82
|
#: pkg/download/aur.go:82
|
||||||
|
#, fuzzy
|
||||||
msgid "(%d/%d) Failed to download PKGBUILD: %s"
|
msgid "(%d/%d) Failed to download PKGBUILD: %s"
|
||||||
msgstr "(%d/%d) Не удалось загрузить PKGBUILD:"
|
msgstr "(%d/%d) Не удалось загрузить PKGBUILD: %s"
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/service.go:109
|
#: pkg/sync/srcinfo/service.go:109
|
||||||
msgid "(%d/%d) Parsing SRCINFO: %s"
|
msgid "(%d/%d) Parsing SRCINFO: %s"
|
||||||
msgstr "(%d/%d) Анализ SRCINFO: %s"
|
msgstr "(%d/%d) Анализ SRCINFO: %s"
|
||||||
|
|
||||||
#: pkg/query/types.go:103 pkg/query/types.go:72
|
#: pkg/query/types.go:72 pkg/query/types.go:103
|
||||||
msgid "(Installed)"
|
msgid "(Installed)"
|
||||||
msgstr "(Установлено)"
|
msgstr "(Установлено)"
|
||||||
|
|
||||||
#: pkg/query/types.go:101 pkg/query/types.go:70
|
#: pkg/query/types.go:70 pkg/query/types.go:101
|
||||||
msgid "(Installed: %s)"
|
msgid "(Installed: %s)"
|
||||||
msgstr "(Установлено: %s)"
|
msgstr "(Установлено: %s)"
|
||||||
|
|
||||||
@ -145,14 +129,14 @@ msgstr "(Осиротевший)"
|
|||||||
msgid "(Out-of-date: %s)"
|
msgid "(Out-of-date: %s)"
|
||||||
msgstr "(Устарел: %s)"
|
msgstr "(Устарел: %s)"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:75
|
|
||||||
msgid "AUR"
|
|
||||||
msgstr "AUR"
|
|
||||||
|
|
||||||
#: print.go:44
|
#: print.go:44
|
||||||
msgid "AUR URL"
|
msgid "AUR URL"
|
||||||
msgstr "Ссылка на AUR"
|
msgstr "Ссылка на AUR"
|
||||||
|
|
||||||
|
#: pkg/dep/dep_graph.go:75
|
||||||
|
msgid "AUR"
|
||||||
|
msgstr "AUR"
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:58
|
#: pkg/menus/edit_menu.go:58
|
||||||
msgid "Add %s or %s to your environment variables"
|
msgid "Add %s or %s to your environment variables"
|
||||||
msgstr "Добавьте %s или %s в переменные среды"
|
msgstr "Добавьте %s или %s в переменные среды"
|
||||||
@ -169,7 +153,7 @@ msgstr "Проверка зависимости"
|
|||||||
msgid "Check Deps"
|
msgid "Check Deps"
|
||||||
msgstr "Зависимости, требуемые для проверки"
|
msgstr "Зависимости, требуемые для проверки"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:89
|
#: pkg/upgrade/service.go:90
|
||||||
msgid "Checking development packages..."
|
msgid "Checking development packages..."
|
||||||
msgstr "Проверка пакетов разработки..."
|
msgstr "Проверка пакетов разработки..."
|
||||||
|
|
||||||
@ -225,7 +209,7 @@ msgstr "Отредактировать PKGBUILD?"
|
|||||||
msgid "Error during AUR search: %s\n"
|
msgid "Error during AUR search: %s\n"
|
||||||
msgstr "Ошибка поиска в AUR: %s\n"
|
msgstr "Ошибка поиска в AUR: %s\n"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:295
|
#: pkg/upgrade/service.go:296
|
||||||
msgid "Excluding packages may cause partial upgrades and break systems"
|
msgid "Excluding packages may cause partial upgrades and break systems"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Исключение пакетов может привести к частичному обновлению и сломать систему"
|
"Исключение пакетов может привести к частичному обновлению и сломать систему"
|
||||||
@ -256,7 +240,7 @@ msgstr ""
|
|||||||
msgid "First Submitted"
|
msgid "First Submitted"
|
||||||
msgstr "Впервые представленный"
|
msgstr "Впервые представленный"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:83
|
#: pkg/query/aur_warnings.go:79
|
||||||
msgid "Flagged Out Of Date AUR Packages:"
|
msgid "Flagged Out Of Date AUR Packages:"
|
||||||
msgstr "Пакеты AUR, помеченные как устаревшие:"
|
msgstr "Пакеты AUR, помеченные как устаревшие:"
|
||||||
|
|
||||||
@ -312,14 +296,14 @@ msgstr "Создание зависимости"
|
|||||||
msgid "Make Deps"
|
msgid "Make Deps"
|
||||||
msgstr "Зависимости, требуемые для сборки"
|
msgstr "Зависимости, требуемые для сборки"
|
||||||
|
|
||||||
|
#: pkg/query/aur_warnings.go:71
|
||||||
|
msgid "Missing AUR Debug Packages:"
|
||||||
|
msgstr "Отсутствующие в AUR пакеты для отладки:"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:79
|
#: pkg/dep/dep_graph.go:79
|
||||||
msgid "Missing"
|
msgid "Missing"
|
||||||
msgstr "Отсутствующие"
|
msgstr "Отсутствующие"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:75
|
|
||||||
msgid "Missing AUR Debug Packages:"
|
|
||||||
msgstr "Отсутствующие в AUR пакеты для отладки:"
|
|
||||||
|
|
||||||
#: print.go:31
|
#: print.go:31
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Название"
|
msgstr "Название"
|
||||||
@ -329,8 +313,9 @@ msgid "No AUR package found for"
|
|||||||
msgstr "Не найден пакет AUR для"
|
msgstr "Не найден пакет AUR для"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:182
|
#: pkg/dep/dep_graph.go:182
|
||||||
|
#, fuzzy
|
||||||
msgid "No package found for"
|
msgid "No package found for"
|
||||||
msgstr "Не найден пакет для"
|
msgstr "Не найден пакет AUR для"
|
||||||
|
|
||||||
#: print.go:225
|
#: print.go:225
|
||||||
msgid "None"
|
msgid "None"
|
||||||
@ -340,7 +325,7 @@ msgstr "Нет"
|
|||||||
msgid "Optional Deps"
|
msgid "Optional Deps"
|
||||||
msgstr "Дополнительные зависимости"
|
msgstr "Дополнительные зависимости"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:79
|
#: pkg/query/aur_warnings.go:75
|
||||||
msgid "Orphan (unmaintained) AUR Packages:"
|
msgid "Orphan (unmaintained) AUR Packages:"
|
||||||
msgstr "Осиротевшие (неподдерживаемые) пакеты AUR:"
|
msgstr "Осиротевшие (неподдерживаемые) пакеты AUR:"
|
||||||
|
|
||||||
@ -360,15 +345,15 @@ msgstr "PKGBUILD находится в актуальном состоянии,
|
|||||||
msgid "PKGBUILDs to edit?"
|
msgid "PKGBUILDs to edit?"
|
||||||
msgstr "Отредактировать PKGBUILD?"
|
msgstr "Отредактировать PKGBUILD?"
|
||||||
|
|
||||||
#: print.go:61
|
|
||||||
msgid "Package Base"
|
|
||||||
msgstr "Базовый пакет"
|
|
||||||
|
|
||||||
#: print.go:60
|
#: print.go:60
|
||||||
msgid "Package Base ID"
|
msgid "Package Base ID"
|
||||||
msgstr "Идентификатор пакета"
|
msgstr "Идентификатор пакета"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:71
|
#: print.go:61
|
||||||
|
msgid "Package Base"
|
||||||
|
msgstr "Базовый пакет"
|
||||||
|
|
||||||
|
#: pkg/query/aur_warnings.go:67
|
||||||
msgid "Packages not in AUR:"
|
msgid "Packages not in AUR:"
|
||||||
msgstr "Пакет не найден в AUR:"
|
msgstr "Пакет не найден в AUR:"
|
||||||
|
|
||||||
@ -380,9 +365,11 @@ msgstr "Пакеты для чистой сборки?"
|
|||||||
msgid "Packages to exclude"
|
msgid "Packages to exclude"
|
||||||
msgstr "Пакеты для исключения"
|
msgstr "Пакеты для исключения"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:294
|
#: pkg/upgrade/service.go:295
|
||||||
msgid "Packages to exclude: (eg: \"1 2 3\", \"1-3\", \"^4\" or repo name)"
|
msgid "Packages to exclude: (eg: \"1 2 3\", \"1-3\", \"^4\" or repo name)"
|
||||||
msgstr "Исключить пакеты: (напр.: \"1 2 3\", \"1-3\", \"^4\" или название репозитория)"
|
msgstr ""
|
||||||
|
"Исключить пакеты: (напр.: \"1 2 3\", \"1-3\", \"^4\" или название "
|
||||||
|
"репозитория)"
|
||||||
|
|
||||||
#: cmd.go:392
|
#: cmd.go:392
|
||||||
msgid "Packages to install (eg: 1 2 3, 1-3 or ^4)"
|
msgid "Packages to install (eg: 1 2 3, 1-3 or ^4)"
|
||||||
@ -406,25 +393,25 @@ msgstr "Удалить зависимости сборки после устан
|
|||||||
|
|
||||||
#: print.go:43
|
#: print.go:43
|
||||||
msgid "Replaces"
|
msgid "Replaces"
|
||||||
msgstr "Заменяет"
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:191 print.go:30
|
|
||||||
msgid "Repository"
|
|
||||||
msgstr "Репозиторий"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:730
|
#: pkg/dep/dep_graph.go:730
|
||||||
msgid "Repository AUR"
|
msgid "Repository AUR"
|
||||||
msgstr "Репозиторий AUR"
|
msgstr "Репозиторий AUR"
|
||||||
|
|
||||||
|
#: print.go:30 pkg/db/ialpm/alpm.go:191
|
||||||
|
msgid "Repository"
|
||||||
|
msgstr "Репозиторий"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:78
|
#: pkg/dep/dep_graph.go:78
|
||||||
msgid "SRCINFO"
|
msgid "SRCINFO"
|
||||||
msgstr "SRCINFO"
|
msgstr "SRCINFO"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:71
|
#: pkg/upgrade/service.go:72
|
||||||
msgid "Searching AUR for updates..."
|
msgid "Searching AUR for updates..."
|
||||||
msgstr "Поиск обновлений пакетов AUR..."
|
msgstr "Поиск обновлений пакетов AUR..."
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:159
|
#: pkg/upgrade/service.go:160
|
||||||
msgid "Searching databases for updates..."
|
msgid "Searching databases for updates..."
|
||||||
msgstr "Поиск обновлений в базах данных..."
|
msgstr "Поиск обновлений в базах данных..."
|
||||||
|
|
||||||
@ -457,8 +444,8 @@ msgid "The following packages are not compatible with your architecture:"
|
|||||||
msgstr "Следующие пакеты несовместимы с вашей архитектурой:"
|
msgstr "Следующие пакеты несовместимы с вашей архитектурой:"
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:179 pkg/dep/dep_graph.go:726
|
#: pkg/db/ialpm/alpm.go:179 pkg/dep/dep_graph.go:726
|
||||||
msgid "There are %[1]d providers available for %[2]s:"
|
msgid "There are %d providers available for %s:"
|
||||||
msgstr "%[2]s доступен в %[1]d источниках:"
|
msgstr "Существует %d пакетов которые удволетворяют %s"
|
||||||
|
|
||||||
#: pkg/settings/exe/cmd_builder.go:258
|
#: pkg/settings/exe/cmd_builder.go:258
|
||||||
msgid "There may be another Pacman instance running. Waiting..."
|
msgid "There may be another Pacman instance running. Waiting..."
|
||||||
@ -512,6 +499,22 @@ msgstr "Версия Yay: v%s"
|
|||||||
msgid "[N]one"
|
msgid "[N]one"
|
||||||
msgstr "[Н]ет"
|
msgstr "[Н]ет"
|
||||||
|
|
||||||
|
#: clean.go:83
|
||||||
|
msgid ""
|
||||||
|
"\n"
|
||||||
|
"Build directory:"
|
||||||
|
msgstr ""
|
||||||
|
"\n"
|
||||||
|
"Каталог сборки:"
|
||||||
|
|
||||||
|
#: pkg/db/ialpm/alpm.go:201 pkg/dep/dep_graph.go:740
|
||||||
|
msgid ""
|
||||||
|
"\n"
|
||||||
|
"Enter a number (default=1): "
|
||||||
|
msgstr ""
|
||||||
|
"\n"
|
||||||
|
"Введите номер (по умлчанию=1):"
|
||||||
|
|
||||||
#: pkg/settings/errors.go:29
|
#: pkg/settings/errors.go:29
|
||||||
msgid "aborting due to user"
|
msgid "aborting due to user"
|
||||||
msgstr "прервано пользователем"
|
msgstr "прервано пользователем"
|
||||||
@ -540,11 +543,11 @@ msgstr "не удалось найти все необходимые пакет
|
|||||||
msgid "could not find any package archives listed in %s"
|
msgid "could not find any package archives listed in %s"
|
||||||
msgstr "Не удалось найти архивы пакетов в %s"
|
msgstr "Не удалось найти архивы пакетов в %s"
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:50 pkg/upgrade/service.go:286
|
#: pkg/sync/build/errors.go:50 pkg/upgrade/service.go:287
|
||||||
msgid "dependency"
|
msgid "dependency"
|
||||||
msgstr "зависимости"
|
msgstr "зависимости"
|
||||||
|
|
||||||
#: pkg/vcs/vcs.go:100 pkg/vcs/vcs.go:96
|
#: pkg/vcs/vcs.go:96 pkg/vcs/vcs.go:100
|
||||||
msgid "devel check for package failed: '%s' encountered an error"
|
msgid "devel check for package failed: '%s' encountered an error"
|
||||||
msgstr "проверка пакета '%s' не завершена из-за ошибки"
|
msgstr "проверка пакета '%s' не завершена из-за ошибки"
|
||||||
|
|
||||||
@ -654,10 +657,6 @@ msgstr "недействительный репозиторий"
|
|||||||
msgid "invalid value: %d is not between %d and %d"
|
msgid "invalid value: %d is not between %d and %d"
|
||||||
msgstr "неверное значение: %d не в промежутке между %d и %d "
|
msgstr "неверное значение: %d не в промежутке между %d и %d "
|
||||||
|
|
||||||
#: pkg/text/input.go:48
|
|
||||||
msgid "no"
|
|
||||||
msgstr "нет"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:110
|
#: pkg/sync/srcinfo/pgp/keys.go:110
|
||||||
msgid "no keys to import"
|
msgid "no keys to import"
|
||||||
msgstr "нет ключей для импорта"
|
msgstr "нет ключей для импорта"
|
||||||
@ -670,6 +669,10 @@ msgstr "запрос не был выполнен"
|
|||||||
msgid "no target directories specified"
|
msgid "no target directories specified"
|
||||||
msgstr "не выбраны целевые директории"
|
msgstr "не выбраны целевые директории"
|
||||||
|
|
||||||
|
#: pkg/text/input.go:48
|
||||||
|
msgid "no"
|
||||||
|
msgstr "нет"
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:242
|
#: pkg/sync/build/installer.go:242
|
||||||
msgid "nothing to install for %s"
|
msgid "nothing to install for %s"
|
||||||
msgstr "нечего установить из %s"
|
msgstr "нечего установить из %s"
|
||||||
@ -680,15 +683,7 @@ msgstr "только одна операция может быть вызван
|
|||||||
|
|
||||||
#: pkg/cmd/graph/main.go:70
|
#: pkg/cmd/graph/main.go:70
|
||||||
msgid "only one target is allowed"
|
msgid "only one target is allowed"
|
||||||
msgstr "разрешена только одна цель"
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:291
|
|
||||||
msgid "package"
|
|
||||||
msgid_plural "packages"
|
|
||||||
msgstr[0] "пакет"
|
|
||||||
msgstr[1] "пакеты"
|
|
||||||
msgstr[2] "пакеты"
|
|
||||||
msgstr[3] "пакеты"
|
|
||||||
|
|
||||||
#: print.go:187
|
#: print.go:187
|
||||||
msgid "package '%s' was not found"
|
msgid "package '%s' was not found"
|
||||||
@ -702,6 +697,14 @@ msgstr "пакет не найден в AUR"
|
|||||||
msgid "package not found in repos"
|
msgid "package not found in repos"
|
||||||
msgstr "пакет не найден в репозиториях"
|
msgstr "пакет не найден в репозиториях"
|
||||||
|
|
||||||
|
#: pkg/upgrade/service.go:292
|
||||||
|
msgid "package"
|
||||||
|
msgid_plural "packages"
|
||||||
|
msgstr[0] "пакет"
|
||||||
|
msgstr[1] "пакеты"
|
||||||
|
msgstr[2] "пакеты"
|
||||||
|
msgstr[3] "пакеты"
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:100
|
#: pkg/sync/srcinfo/pgp/keys.go:100
|
||||||
msgid "problem importing keys"
|
msgid "problem importing keys"
|
||||||
msgstr "проблема импортирования ключей"
|
msgstr "проблема импортирования ключей"
|
||||||
|
298
po/ru_RU.po
298
po/ru_RU.po
@ -4,44 +4,21 @@
|
|||||||
# makvasm, 2021
|
# makvasm, 2021
|
||||||
# antsif.a, 2022
|
# antsif.a, 2022
|
||||||
# Demir Yerli, 2022
|
# Demir Yerli, 2022
|
||||||
# Антон Карасев <uselessfire@gmail.com>, 2023
|
|
||||||
# Ravenso BlacK, 2024
|
|
||||||
# Victor Golovanenko <drygdryg2014@yandex.ru>, 2024
|
|
||||||
# Vladislav Zenkov, 2024
|
|
||||||
# falixfresh, 2024
|
|
||||||
# Kira Malinova, 2024
|
|
||||||
# Dancheg97 F, 2024
|
|
||||||
# Vladislav Grechannik, 2024
|
|
||||||
# ratijas, 2024
|
|
||||||
# Vladimir Yerilov, 2025
|
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Last-Translator: Vladimir Yerilov, 2025\n"
|
"Last-Translator: Demir Yerli, 2022\n"
|
||||||
"Language-Team: Russian (Russia) (https://app.transifex.com/yay-1/teams/123732/ru_RU/)\n"
|
"Language-Team: Russian (Russia) (https://www.transifex.com/yay-1/"
|
||||||
|
"teams/123732/ru_RU/)\n"
|
||||||
|
"Language: ru_RU\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Language: ru_RU\n"
|
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
"n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || "
|
||||||
|
"(n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||||
"X-Generator: xgotext\n"
|
"X-Generator: xgotext\n"
|
||||||
|
|
||||||
#: clean.go:83
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
"Build directory:"
|
|
||||||
msgstr ""
|
|
||||||
"\n"
|
|
||||||
"Каталог сборки:"
|
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:201 pkg/dep/dep_graph.go:740
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
"Enter a number (default=1): "
|
|
||||||
msgstr ""
|
|
||||||
"\n"
|
|
||||||
"Введите номер (по умолчанию = 1): "
|
|
||||||
|
|
||||||
#: pkg/menus/menu.go:32
|
#: pkg/menus/menu.go:32
|
||||||
msgid " (Build Files Exist)"
|
msgid " (Build Files Exist)"
|
||||||
msgstr " (файлы сборки существуют)"
|
msgstr " (файлы сборки существуют)"
|
||||||
@ -80,13 +57,14 @@ msgstr "%s уже существует."
|
|||||||
msgid "%s is up to date -- skipping"
|
msgid "%s is up to date -- skipping"
|
||||||
msgstr "%sобновлён до последней версии --- пропуск"
|
msgstr "%sобновлён до последней версии --- пропуск"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:291
|
#: pkg/upgrade/service.go:292
|
||||||
|
#, fuzzy
|
||||||
msgid "%s to upgrade/install."
|
msgid "%s to upgrade/install."
|
||||||
msgstr "%s обновить/установить."
|
msgstr "Пакеты для обновления."
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:285
|
#: pkg/upgrade/service.go:286
|
||||||
msgid "%s will also be installed for this operation."
|
msgid "%s will also be installed for this operation."
|
||||||
msgstr "%s также будет установлен для этой операции."
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:124
|
#: pkg/sync/srcinfo/pgp/keys.go:124
|
||||||
msgid "%s, required by: %s"
|
msgid "%s, required by: %s"
|
||||||
@ -114,11 +92,8 @@ msgstr "%s: локальная версия (%s) новее, чем в AUR (%s)"
|
|||||||
|
|
||||||
#: vote.go:51
|
#: vote.go:51
|
||||||
msgid ""
|
msgid ""
|
||||||
"%s: please set AUR_USERNAME and AUR_PASSWORD environment variables for "
|
"%s: please set AUR_USERNAME and AUR_PASSWORD environment variables for voting"
|
||||||
"voting"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"пожалуйста, укажите AUR_USERNAME и AUR_PASSWORD в переменных среды для "
|
|
||||||
"возможности голосовать"
|
|
||||||
|
|
||||||
#: pkg/download/unified.go:192
|
#: pkg/download/unified.go:192
|
||||||
msgid "(%d/%d) Downloaded PKGBUILD from ABS: %s"
|
msgid "(%d/%d) Downloaded PKGBUILD from ABS: %s"
|
||||||
@ -129,18 +104,19 @@ msgid "(%d/%d) Downloaded PKGBUILD: %s"
|
|||||||
msgstr "(%d/%d) Скачан PKGBUILD: %s"
|
msgstr "(%d/%d) Скачан PKGBUILD: %s"
|
||||||
|
|
||||||
#: pkg/download/aur.go:82
|
#: pkg/download/aur.go:82
|
||||||
|
#, fuzzy
|
||||||
msgid "(%d/%d) Failed to download PKGBUILD: %s"
|
msgid "(%d/%d) Failed to download PKGBUILD: %s"
|
||||||
msgstr "(%d/%d) Не удалось загрузить PKGBUILD:"
|
msgstr "(%d/%d) Скачан PKGBUILD: %s"
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/service.go:109
|
#: pkg/sync/srcinfo/service.go:109
|
||||||
msgid "(%d/%d) Parsing SRCINFO: %s"
|
msgid "(%d/%d) Parsing SRCINFO: %s"
|
||||||
msgstr "(%d/%d) Анализ SRCINFO: %s"
|
msgstr "(%d/%d) Анализ SRCINFO: %s"
|
||||||
|
|
||||||
#: pkg/query/types.go:103 pkg/query/types.go:72
|
#: pkg/query/types.go:72 pkg/query/types.go:103
|
||||||
msgid "(Installed)"
|
msgid "(Installed)"
|
||||||
msgstr "(установлено)"
|
msgstr "(установлено)"
|
||||||
|
|
||||||
#: pkg/query/types.go:101 pkg/query/types.go:70
|
#: pkg/query/types.go:70 pkg/query/types.go:101
|
||||||
msgid "(Installed: %s)"
|
msgid "(Installed: %s)"
|
||||||
msgstr "(установлено: %s)"
|
msgstr "(установлено: %s)"
|
||||||
|
|
||||||
@ -152,14 +128,15 @@ msgstr "(сирота в AUR)"
|
|||||||
msgid "(Out-of-date: %s)"
|
msgid "(Out-of-date: %s)"
|
||||||
msgstr "(устарел: %s)"
|
msgstr "(устарел: %s)"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:75
|
|
||||||
msgid "AUR"
|
|
||||||
msgstr "AUR"
|
|
||||||
|
|
||||||
#: print.go:44
|
#: print.go:44
|
||||||
msgid "AUR URL"
|
msgid "AUR URL"
|
||||||
msgstr "AUR URL"
|
msgstr "AUR URL"
|
||||||
|
|
||||||
|
#: pkg/dep/dep_graph.go:75
|
||||||
|
#, fuzzy
|
||||||
|
msgid "AUR"
|
||||||
|
msgstr "URL"
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:58
|
#: pkg/menus/edit_menu.go:58
|
||||||
msgid "Add %s or %s to your environment variables"
|
msgid "Add %s or %s to your environment variables"
|
||||||
msgstr "Добавьте %s или %s в переменные окружения"
|
msgstr "Добавьте %s или %s в переменные окружения"
|
||||||
@ -169,14 +146,15 @@ msgid "Avoid running yay as root/sudo."
|
|||||||
msgstr "Не запускайте yay от имени root/sudo."
|
msgstr "Не запускайте yay от имени root/sudo."
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:63
|
#: pkg/dep/dep_graph.go:63
|
||||||
|
#, fuzzy
|
||||||
msgid "Check Dependency"
|
msgid "Check Dependency"
|
||||||
msgstr "Проверка зависимости"
|
msgstr "Зависимости проверки"
|
||||||
|
|
||||||
#: print.go:41
|
#: print.go:41
|
||||||
msgid "Check Deps"
|
msgid "Check Deps"
|
||||||
msgstr "Зависимости проверки"
|
msgstr "Зависимости проверки"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:89
|
#: pkg/upgrade/service.go:90
|
||||||
msgid "Checking development packages..."
|
msgid "Checking development packages..."
|
||||||
msgstr "Проверка пакетов в разработке (-git, -svn и т. п.)..."
|
msgstr "Проверка пакетов в разработке (-git, -svn и т. п.)..."
|
||||||
|
|
||||||
@ -193,8 +171,9 @@ msgid "Deleting (%d/%d): %s"
|
|||||||
msgstr "Удаление (%d/%d): %s"
|
msgstr "Удаление (%d/%d): %s"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:61
|
#: pkg/dep/dep_graph.go:61
|
||||||
|
#, fuzzy
|
||||||
msgid "Dependency"
|
msgid "Dependency"
|
||||||
msgstr "Зависимость"
|
msgstr "Зависит от"
|
||||||
|
|
||||||
#: print.go:38
|
#: print.go:38
|
||||||
msgid "Depends On"
|
msgid "Depends On"
|
||||||
@ -210,7 +189,7 @@ msgstr "Показать изменения?"
|
|||||||
|
|
||||||
#: pkg/settings/migrations.go:25
|
#: pkg/settings/migrations.go:25
|
||||||
msgid "Disable 'provides' setting by default"
|
msgid "Disable 'provides' setting by default"
|
||||||
msgstr "Отключите настройку 'обеспечивает' по умолчанию"
|
msgstr ""
|
||||||
|
|
||||||
#: clean.go:78
|
#: clean.go:78
|
||||||
msgid "Do you want to remove ALL AUR packages from cache?"
|
msgid "Do you want to remove ALL AUR packages from cache?"
|
||||||
@ -232,38 +211,37 @@ msgstr "Отредактировать PKGBUILD?"
|
|||||||
msgid "Error during AUR search: %s\n"
|
msgid "Error during AUR search: %s\n"
|
||||||
msgstr "Ошибка поиска в AUR: %s\n"
|
msgstr "Ошибка поиска в AUR: %s\n"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:295
|
#: pkg/upgrade/service.go:296
|
||||||
msgid "Excluding packages may cause partial upgrades and break systems"
|
msgid "Excluding packages may cause partial upgrades and break systems"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Исключение пакетов может привести к частичным обновлениям и поломкам системы"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:60
|
#: pkg/dep/dep_graph.go:60
|
||||||
msgid "Explicit"
|
msgid "Explicit"
|
||||||
msgstr "Явно"
|
msgstr ""
|
||||||
|
|
||||||
#: print.go:91
|
#: print.go:91
|
||||||
msgid "Explicitly installed packages: %s"
|
msgid "Explicitly installed packages: %s"
|
||||||
msgstr "Пакеты, установленные по запросу пользователя: %s"
|
msgstr "Пакеты, установленные по запросу пользователя: %s"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:437 pkg/dep/dep_graph.go:535
|
#: pkg/dep/dep_graph.go:437 pkg/dep/dep_graph.go:535
|
||||||
|
#, fuzzy
|
||||||
msgid "Failed to find AUR package for"
|
msgid "Failed to find AUR package for"
|
||||||
msgstr "Не удалось найти пакет AUR для"
|
msgstr "Пакеты AUR, помеченные как устаревшие:"
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:120
|
#: pkg/sync/build/installer.go:120
|
||||||
msgid "Failed to install layer, rolling up to next layer."
|
msgid "Failed to install layer, rolling up to next layer."
|
||||||
msgstr "Ошибка установки слоя, переход на следующий слой."
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:16
|
#: pkg/sync/build/errors.go:16
|
||||||
msgid ""
|
msgid ""
|
||||||
"Failed to install the following packages. Manual intervention is required:"
|
"Failed to install the following packages. Manual intervention is required:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Не удалось установить следующие пакеты. Необходимо ручное вмешательство:"
|
|
||||||
|
|
||||||
#: print.go:45
|
#: print.go:45
|
||||||
msgid "First Submitted"
|
msgid "First Submitted"
|
||||||
msgstr "Впервые загружен на AUR"
|
msgstr "Впервые загружен на AUR"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:83
|
#: pkg/query/aur_warnings.go:79
|
||||||
msgid "Flagged Out Of Date AUR Packages:"
|
msgid "Flagged Out Of Date AUR Packages:"
|
||||||
msgstr "Пакеты AUR, помеченные как устаревшие:"
|
msgstr "Пакеты AUR, помеченные как устаревшие:"
|
||||||
|
|
||||||
@ -305,39 +283,42 @@ msgstr "Лицензии"
|
|||||||
|
|
||||||
#: pkg/dep/dep_graph.go:77
|
#: pkg/dep/dep_graph.go:77
|
||||||
msgid "Local"
|
msgid "Local"
|
||||||
msgstr "Локальный"
|
msgstr ""
|
||||||
|
|
||||||
#: print.go:48
|
#: print.go:48
|
||||||
msgid "Maintainer"
|
msgid "Maintainer"
|
||||||
msgstr "Сопровождающий"
|
msgstr "Сопровождающий"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:62
|
#: pkg/dep/dep_graph.go:62
|
||||||
|
#, fuzzy
|
||||||
msgid "Make Dependency"
|
msgid "Make Dependency"
|
||||||
msgstr "Зависимость сборки"
|
msgstr "Зависимости сборки"
|
||||||
|
|
||||||
#: print.go:40
|
#: print.go:40
|
||||||
msgid "Make Deps"
|
msgid "Make Deps"
|
||||||
msgstr "Зависимости сборки"
|
msgstr "Зависимости сборки"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:79
|
#: pkg/query/aur_warnings.go:71
|
||||||
msgid "Missing"
|
|
||||||
msgstr "Отсутствующие"
|
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:75
|
|
||||||
msgid "Missing AUR Debug Packages:"
|
msgid "Missing AUR Debug Packages:"
|
||||||
msgstr "Отсутствующие в AUR пакеты для отладки:"
|
msgstr "Отсутствующие в AUR пакеты для отладки:"
|
||||||
|
|
||||||
|
#: pkg/dep/dep_graph.go:79
|
||||||
|
msgid "Missing"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: print.go:31
|
#: print.go:31
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Название"
|
msgstr "Название"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:442 pkg/dep/dep_graph.go:548
|
#: pkg/dep/dep_graph.go:442 pkg/dep/dep_graph.go:548
|
||||||
|
#, fuzzy
|
||||||
msgid "No AUR package found for"
|
msgid "No AUR package found for"
|
||||||
msgstr "Не найден пакет AUR для"
|
msgstr "пакет не найден в репозиториях"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:182
|
#: pkg/dep/dep_graph.go:182
|
||||||
|
#, fuzzy
|
||||||
msgid "No package found for"
|
msgid "No package found for"
|
||||||
msgstr "Не найден пакет для"
|
msgstr "пакет не найден в репозиториях"
|
||||||
|
|
||||||
#: print.go:225
|
#: print.go:225
|
||||||
msgid "None"
|
msgid "None"
|
||||||
@ -347,9 +328,10 @@ msgstr "Нет"
|
|||||||
msgid "Optional Deps"
|
msgid "Optional Deps"
|
||||||
msgstr "Факультативные зависимости"
|
msgstr "Факультативные зависимости"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:79
|
#: pkg/query/aur_warnings.go:75
|
||||||
|
#, fuzzy
|
||||||
msgid "Orphan (unmaintained) AUR Packages:"
|
msgid "Orphan (unmaintained) AUR Packages:"
|
||||||
msgstr "Брошенные (без сопровождающего) пакеты AUR:"
|
msgstr "Пакеты-сироты AUR без сопровождающего:"
|
||||||
|
|
||||||
#: print.go:53 print.go:55
|
#: print.go:53 print.go:55
|
||||||
msgid "Out-of-date"
|
msgid "Out-of-date"
|
||||||
@ -360,36 +342,41 @@ msgid "PGP keys need importing:"
|
|||||||
msgstr "Ключи PGP, требующие импорта:"
|
msgstr "Ключи PGP, требующие импорта:"
|
||||||
|
|
||||||
#: pkg/sync/workdir/preparer.go:252
|
#: pkg/sync/workdir/preparer.go:252
|
||||||
|
#, fuzzy
|
||||||
msgid "PKGBUILD up to date, skipping download: %s"
|
msgid "PKGBUILD up to date, skipping download: %s"
|
||||||
msgstr "Актуальный PKGBUILD, пропуск загрузки"
|
msgstr "PKGBUILD обновлён, пропуск (%d/%d): %s"
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:130
|
#: pkg/menus/edit_menu.go:130
|
||||||
msgid "PKGBUILDs to edit?"
|
msgid "PKGBUILDs to edit?"
|
||||||
msgstr "Отредактировать PKGBUILD?"
|
msgstr "Отредактировать PKGBUILD?"
|
||||||
|
|
||||||
#: print.go:61
|
|
||||||
msgid "Package Base"
|
|
||||||
msgstr "Группа пакетов"
|
|
||||||
|
|
||||||
#: print.go:60
|
#: print.go:60
|
||||||
msgid "Package Base ID"
|
msgid "Package Base ID"
|
||||||
msgstr "ID группы пакетов"
|
msgstr "ID группы пакетов"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:71
|
#: print.go:61
|
||||||
|
msgid "Package Base"
|
||||||
|
msgstr "Группа пакетов"
|
||||||
|
|
||||||
|
#: pkg/query/aur_warnings.go:67
|
||||||
|
#, fuzzy
|
||||||
msgid "Packages not in AUR:"
|
msgid "Packages not in AUR:"
|
||||||
msgstr "Пакет не найден в AUR:"
|
msgstr "пакет не найден в AUR"
|
||||||
|
|
||||||
#: pkg/menus/clean_menu.go:54
|
#: pkg/menus/clean_menu.go:54
|
||||||
msgid "Packages to cleanBuild?"
|
msgid "Packages to cleanBuild?"
|
||||||
msgstr "Пакеты, для которых требуется очистить кэш сборки?"
|
msgstr "Пакеты, для которых требуется очистить кэш сборки?"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:202
|
#: pkg/dep/dep_graph.go:202
|
||||||
|
#, fuzzy
|
||||||
msgid "Packages to exclude"
|
msgid "Packages to exclude"
|
||||||
msgstr "Пакеты для исключения"
|
msgstr "Пакеты для обновления."
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:294
|
#: pkg/upgrade/service.go:295
|
||||||
msgid "Packages to exclude: (eg: \"1 2 3\", \"1-3\", \"^4\" or repo name)"
|
msgid "Packages to exclude: (eg: \"1 2 3\", \"1-3\", \"^4\" or repo name)"
|
||||||
msgstr "Пакеты для исключения: (пример: \"1 2 3\", \"1-3\", \"^4\" или имя в репозитории)"
|
msgstr ""
|
||||||
|
"Пакеты для исключения: (пример: \"1 2 3\", \"1-3\", \"^4\" или имя в "
|
||||||
|
"репозитории)"
|
||||||
|
|
||||||
#: cmd.go:392
|
#: cmd.go:392
|
||||||
msgid "Packages to install (eg: 1 2 3, 1-3 or ^4)"
|
msgid "Packages to install (eg: 1 2 3, 1-3 or ^4)"
|
||||||
@ -413,25 +400,25 @@ msgstr "Удалить зависимости для сборки после у
|
|||||||
|
|
||||||
#: print.go:43
|
#: print.go:43
|
||||||
msgid "Replaces"
|
msgid "Replaces"
|
||||||
msgstr "Заменяет"
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:191 print.go:30
|
|
||||||
msgid "Repository"
|
|
||||||
msgstr "Репозиторий"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:730
|
#: pkg/dep/dep_graph.go:730
|
||||||
msgid "Repository AUR"
|
msgid "Repository AUR"
|
||||||
msgstr "Репозиторий AUR"
|
msgstr "Репозиторий AUR"
|
||||||
|
|
||||||
|
#: print.go:30 pkg/db/ialpm/alpm.go:191
|
||||||
|
msgid "Repository"
|
||||||
|
msgstr "Репозиторий"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:78
|
#: pkg/dep/dep_graph.go:78
|
||||||
msgid "SRCINFO"
|
msgid "SRCINFO"
|
||||||
msgstr "SRCINFO"
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:71
|
#: pkg/upgrade/service.go:72
|
||||||
msgid "Searching AUR for updates..."
|
msgid "Searching AUR for updates..."
|
||||||
msgstr "Поиск обновлений в AUR..."
|
msgstr "Поиск обновлений в AUR..."
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:159
|
#: pkg/upgrade/service.go:160
|
||||||
msgid "Searching databases for updates..."
|
msgid "Searching databases for updates..."
|
||||||
msgstr "Поиск обновлений в базе данных..."
|
msgstr "Поиск обновлений в базе данных..."
|
||||||
|
|
||||||
@ -441,11 +428,11 @@ msgstr "Показываются только пакеты из репозито
|
|||||||
|
|
||||||
#: print.go:95
|
#: print.go:95
|
||||||
msgid "Size of pacman cache %s: %s"
|
msgid "Size of pacman cache %s: %s"
|
||||||
msgstr "Размер кэша \"pacman\""
|
msgstr "Размер кэша \"pacman\" %s: %s"
|
||||||
|
|
||||||
#: print.go:98
|
#: print.go:98
|
||||||
msgid "Size of yay cache %s: %s"
|
msgid "Size of yay cache %s: %s"
|
||||||
msgstr "Размер кэша \"yay\""
|
msgstr "Размер кэша \"yay\" %s: %s"
|
||||||
|
|
||||||
#: print.go:62
|
#: print.go:62
|
||||||
msgid "Snapshot URL"
|
msgid "Snapshot URL"
|
||||||
@ -453,7 +440,7 @@ msgstr "URL архива"
|
|||||||
|
|
||||||
#: pkg/dep/dep_graph.go:76
|
#: pkg/dep/dep_graph.go:76
|
||||||
msgid "Sync"
|
msgid "Sync"
|
||||||
msgstr "Синхронизация"
|
msgstr ""
|
||||||
|
|
||||||
#: print.go:100
|
#: print.go:100
|
||||||
msgid "Ten biggest packages:"
|
msgid "Ten biggest packages:"
|
||||||
@ -464,8 +451,8 @@ msgid "The following packages are not compatible with your architecture:"
|
|||||||
msgstr "Следующие пакеты несовместимы с архитектурой вашего процессора:"
|
msgstr "Следующие пакеты несовместимы с архитектурой вашего процессора:"
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:179 pkg/dep/dep_graph.go:726
|
#: pkg/db/ialpm/alpm.go:179 pkg/dep/dep_graph.go:726
|
||||||
msgid "There are %[1]d providers available for %[2]s:"
|
msgid "There are %d providers available for %s:"
|
||||||
msgstr "%[2]s доступен в %[1]d источниках:"
|
msgstr "Существует %d пакетов которые удволетворяют %s"
|
||||||
|
|
||||||
#: pkg/settings/exe/cmd_builder.go:258
|
#: pkg/settings/exe/cmd_builder.go:258
|
||||||
msgid "There may be another Pacman instance running. Waiting..."
|
msgid "There may be another Pacman instance running. Waiting..."
|
||||||
@ -497,11 +484,12 @@ msgstr "Не удалось найти следующие пакеты:"
|
|||||||
|
|
||||||
#: vote.go:20
|
#: vote.go:20
|
||||||
msgid "Unable to handle package vote for: %s. err: %s"
|
msgid "Unable to handle package vote for: %s. err: %s"
|
||||||
msgstr "Не удалось обработать голосование за: %s. ошибка: %s"
|
msgstr ""
|
||||||
|
|
||||||
#: clean.go:170
|
#: clean.go:170
|
||||||
|
#, fuzzy
|
||||||
msgid "Unable to remove %s: %s"
|
msgid "Unable to remove %s: %s"
|
||||||
msgstr "Не удается удалить %s: %s"
|
msgstr "ошибка при анализе %s: %s"
|
||||||
|
|
||||||
#: print.go:32
|
#: print.go:32
|
||||||
msgid "Version"
|
msgid "Version"
|
||||||
@ -519,17 +507,33 @@ msgstr "Yay версии v%s"
|
|||||||
msgid "[N]one"
|
msgid "[N]one"
|
||||||
msgstr "[N]Нет"
|
msgstr "[N]Нет"
|
||||||
|
|
||||||
|
#: clean.go:83
|
||||||
|
msgid ""
|
||||||
|
"\n"
|
||||||
|
"Build directory:"
|
||||||
|
msgstr ""
|
||||||
|
"\n"
|
||||||
|
"Каталог сборки:"
|
||||||
|
|
||||||
|
#: pkg/db/ialpm/alpm.go:201 pkg/dep/dep_graph.go:740
|
||||||
|
msgid ""
|
||||||
|
"\n"
|
||||||
|
"Enter a number (default=1): "
|
||||||
|
msgstr ""
|
||||||
|
"\n"
|
||||||
|
"Введите номер (по умолчанию = 1): "
|
||||||
|
|
||||||
#: pkg/settings/errors.go:29
|
#: pkg/settings/errors.go:29
|
||||||
msgid "aborting due to user"
|
msgid "aborting due to user"
|
||||||
msgstr "прерывание по запросу пользователя"
|
msgstr "прерывание по запросу пользователя"
|
||||||
|
|
||||||
#: pkg/settings/parser/parser.go:608
|
#: pkg/settings/parser/parser.go:608
|
||||||
msgid "argument '-' specified without input on stdin"
|
msgid "argument '-' specified without input on stdin"
|
||||||
msgstr "аргумент '-' задан без ввода из stdin"
|
msgstr ""
|
||||||
|
|
||||||
#: local_install.go:26
|
#: local_install.go:26
|
||||||
msgid "cannot find PKGBUILD and .SRCINFO in directory"
|
msgid "cannot find PKGBUILD and .SRCINFO in directory"
|
||||||
msgstr "не удалось найти PKGBUILD и .SRCINFO в каталоге"
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/sync/build/pkg_archive.go:148
|
#: pkg/sync/build/pkg_archive.go:148
|
||||||
msgid "cannot find package name: %v"
|
msgid "cannot find package name: %v"
|
||||||
@ -540,18 +544,20 @@ msgid "could not find PKGDEST for: %s"
|
|||||||
msgstr "невозможно найти файл PKGDEST для: %s"
|
msgstr "невозможно найти файл PKGDEST для: %s"
|
||||||
|
|
||||||
#: errors.go:9
|
#: errors.go:9
|
||||||
|
#, fuzzy
|
||||||
msgid "could not find all required packages"
|
msgid "could not find all required packages"
|
||||||
msgstr "не удалось найти все необходимые пакеты"
|
msgstr "Невозможно найти все требуемые пакеты:"
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:61
|
#: pkg/sync/build/errors.go:61
|
||||||
msgid "could not find any package archives listed in %s"
|
msgid "could not find any package archives listed in %s"
|
||||||
msgstr "Не удалось найти архивы пакетов в %s"
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:50 pkg/upgrade/service.go:286
|
#: pkg/sync/build/errors.go:50 pkg/upgrade/service.go:287
|
||||||
|
#, fuzzy
|
||||||
msgid "dependency"
|
msgid "dependency"
|
||||||
msgstr "зависимость"
|
msgstr "Зависит от"
|
||||||
|
|
||||||
#: pkg/vcs/vcs.go:100 pkg/vcs/vcs.go:96
|
#: pkg/vcs/vcs.go:96 pkg/vcs/vcs.go:100
|
||||||
msgid "devel check for package failed: '%s' encountered an error"
|
msgid "devel check for package failed: '%s' encountered an error"
|
||||||
msgstr "Проверка для пакета '%s' не закончилась успехом"
|
msgstr "Проверка для пакета '%s' не закончилась успехом"
|
||||||
|
|
||||||
@ -572,8 +578,9 @@ msgid "error installing repo packages"
|
|||||||
msgstr "ошибка установки пакетов из репозиториев"
|
msgstr "ошибка установки пакетов из репозиториев"
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:266 pkg/sync/build/installer.go:270
|
#: pkg/sync/build/installer.go:266 pkg/sync/build/installer.go:270
|
||||||
|
#, fuzzy
|
||||||
msgid "error installing:"
|
msgid "error installing:"
|
||||||
msgstr "ошибка установки:"
|
msgstr "ошибка установки пакетов из репозиториев"
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:233 pkg/sync/build/installer.go:237
|
#: pkg/sync/build/installer.go:233 pkg/sync/build/installer.go:237
|
||||||
msgid "error making: %s"
|
msgid "error making: %s"
|
||||||
@ -596,12 +603,14 @@ msgid "error resetting %s: %s"
|
|||||||
msgstr "ошибка сброса %s: %s"
|
msgstr "ошибка сброса %s: %s"
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:53
|
#: pkg/sync/build/errors.go:53
|
||||||
|
#, fuzzy
|
||||||
msgid "error updating package install reason to %s"
|
msgid "error updating package install reason to %s"
|
||||||
msgstr "ошибка изменения причины установки пакета на %s"
|
msgstr ""
|
||||||
|
"ошибка при изменении причины установки пакета на \"явно установленный\":"
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:48
|
#: pkg/sync/build/errors.go:48
|
||||||
msgid "explicit"
|
msgid "explicit"
|
||||||
msgstr "явно"
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/settings/errors.go:23
|
#: pkg/settings/errors.go:23
|
||||||
msgid "failed to create directory '%s': %s"
|
msgid "failed to create directory '%s': %s"
|
||||||
@ -620,8 +629,9 @@ msgid "failed to parse %s: %s"
|
|||||||
msgstr "ошибка при анализе %s: %s"
|
msgstr "ошибка при анализе %s: %s"
|
||||||
|
|
||||||
#: local_install.go:77
|
#: local_install.go:77
|
||||||
|
#, fuzzy
|
||||||
msgid "failed to parse .SRCINFO"
|
msgid "failed to parse .SRCINFO"
|
||||||
msgstr "ошибка при анализе .SRCINFO"
|
msgstr "ошибка при анализе %s: %s"
|
||||||
|
|
||||||
#: pkg/settings/config.go:291
|
#: pkg/settings/config.go:291
|
||||||
msgid "failed to read config file '%s': %s"
|
msgid "failed to read config file '%s': %s"
|
||||||
@ -629,11 +639,12 @@ msgstr "ошибка чтения файла конфигурации '%s': %s"
|
|||||||
|
|
||||||
#: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73
|
#: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73
|
||||||
msgid "failed to retrieve aur Cache"
|
msgid "failed to retrieve aur Cache"
|
||||||
msgstr "не удалось получить кэш AUR"
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/upgrade/sources.go:27
|
#: pkg/upgrade/sources.go:27
|
||||||
|
#, fuzzy
|
||||||
msgid "ignoring package devel upgrade (no AUR info found):"
|
msgid "ignoring package devel upgrade (no AUR info found):"
|
||||||
msgstr "Игнорирование обновления пакета devel (информация об AUR не найдена):"
|
msgstr "%s: пропуск обновления пакета (%s => %s)"
|
||||||
|
|
||||||
#: pkg/text/errors.go:8
|
#: pkg/text/errors.go:8
|
||||||
msgid "input too long"
|
msgid "input too long"
|
||||||
@ -661,10 +672,6 @@ msgstr "недействительный репозиторий"
|
|||||||
msgid "invalid value: %d is not between %d and %d"
|
msgid "invalid value: %d is not between %d and %d"
|
||||||
msgstr "некорректное значение: %d не лежит между %d и %d"
|
msgstr "некорректное значение: %d не лежит между %d и %d"
|
||||||
|
|
||||||
#: pkg/text/input.go:48
|
|
||||||
msgid "no"
|
|
||||||
msgstr "нет"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:110
|
#: pkg/sync/srcinfo/pgp/keys.go:110
|
||||||
msgid "no keys to import"
|
msgid "no keys to import"
|
||||||
msgstr "нет ключей для импорта"
|
msgstr "нет ключей для импорта"
|
||||||
@ -675,11 +682,15 @@ msgstr "запрос не был выполнен"
|
|||||||
|
|
||||||
#: local_install.go:66
|
#: local_install.go:66
|
||||||
msgid "no target directories specified"
|
msgid "no target directories specified"
|
||||||
msgstr "не выбраны целевые директории"
|
msgstr ""
|
||||||
|
|
||||||
|
#: pkg/text/input.go:48
|
||||||
|
msgid "no"
|
||||||
|
msgstr "нет"
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:242
|
#: pkg/sync/build/installer.go:242
|
||||||
msgid "nothing to install for %s"
|
msgid "nothing to install for %s"
|
||||||
msgstr "нечего установить из %s"
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/settings/parser/parser.go:164
|
#: pkg/settings/parser/parser.go:164
|
||||||
msgid "only one operation may be used at a time"
|
msgid "only one operation may be used at a time"
|
||||||
@ -687,15 +698,7 @@ msgstr "только одна операция может быть вызван
|
|||||||
|
|
||||||
#: pkg/cmd/graph/main.go:70
|
#: pkg/cmd/graph/main.go:70
|
||||||
msgid "only one target is allowed"
|
msgid "only one target is allowed"
|
||||||
msgstr "разрешена только одна цель"
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:291
|
|
||||||
msgid "package"
|
|
||||||
msgid_plural "packages"
|
|
||||||
msgstr[0] "пакет"
|
|
||||||
msgstr[1] "пакеты"
|
|
||||||
msgstr[2] "пакеты"
|
|
||||||
msgstr[3] "пакеты"
|
|
||||||
|
|
||||||
#: print.go:187
|
#: print.go:187
|
||||||
msgid "package '%s' was not found"
|
msgid "package '%s' was not found"
|
||||||
@ -709,6 +712,15 @@ msgstr "пакет не найден в AUR"
|
|||||||
msgid "package not found in repos"
|
msgid "package not found in repos"
|
||||||
msgstr "пакет не найден в репозиториях"
|
msgstr "пакет не найден в репозиториях"
|
||||||
|
|
||||||
|
#: pkg/upgrade/service.go:292
|
||||||
|
#, fuzzy
|
||||||
|
msgid "package"
|
||||||
|
msgid_plural "packages"
|
||||||
|
msgstr[0] "Группа пакетов"
|
||||||
|
msgstr[1] "Группа пакетов"
|
||||||
|
msgstr[2] "Группа пакетов"
|
||||||
|
msgstr[3] "Группа пакетов"
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:100
|
#: pkg/sync/srcinfo/pgp/keys.go:100
|
||||||
msgid "problem importing keys"
|
msgid "problem importing keys"
|
||||||
msgstr "проблема импортирования ключей"
|
msgstr "проблема импортирования ключей"
|
||||||
@ -726,8 +738,9 @@ msgid "the PKGDEST for %s is listed by makepkg but does not exist: %s"
|
|||||||
msgstr "файл PKGDEST для %s означен в выводе makepkg, но не существует: %s"
|
msgstr "файл PKGDEST для %s означен в выводе makepkg, но не существует: %s"
|
||||||
|
|
||||||
#: pkg/sync/sync.go:45
|
#: pkg/sync/sync.go:45
|
||||||
|
#, fuzzy
|
||||||
msgid "there is nothing to do"
|
msgid "there is nothing to do"
|
||||||
msgstr "делать больше нечего"
|
msgstr "делать нечего"
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:247
|
#: pkg/db/ialpm/alpm.go:247
|
||||||
msgid "unable to CreateHandle: %s"
|
msgid "unable to CreateHandle: %s"
|
||||||
@ -744,3 +757,46 @@ msgstr "неизвестная версия"
|
|||||||
#: pkg/text/input.go:47
|
#: pkg/text/input.go:47
|
||||||
msgid "yes"
|
msgid "yes"
|
||||||
msgstr "да"
|
msgstr "да"
|
||||||
|
|
||||||
|
#~ msgid " (Target"
|
||||||
|
#~ msgstr " (Цель"
|
||||||
|
|
||||||
|
#~ msgid " (Wanted by: "
|
||||||
|
#~ msgstr " (Требуется пакету: "
|
||||||
|
|
||||||
|
#~ msgid "%s not satisfied, flushing install queue"
|
||||||
|
#~ msgstr "%s не удовлетворена, очистка очереди установки"
|
||||||
|
|
||||||
|
#~ msgid "Checking for conflicts..."
|
||||||
|
#~ msgstr "Проверка конфликтов..."
|
||||||
|
|
||||||
|
#~ msgid "Checking for inner conflicts..."
|
||||||
|
#~ msgstr "Проверка внутренних конфликтов..."
|
||||||
|
|
||||||
|
#~ msgid "Conflicting packages will have to be confirmed manually"
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "Подтверждение удаления конфликтующих пакетов должно быть выполнено вручную"
|
||||||
|
|
||||||
|
#~ msgid "Inner conflicts found:"
|
||||||
|
#~ msgstr "Обнаружены внутренние конфликты:"
|
||||||
|
|
||||||
|
#~ msgid "Installing %s will remove:"
|
||||||
|
#~ msgstr "Установка %s приведёт к удалению:"
|
||||||
|
|
||||||
|
#~ msgid "Missing AUR Packages:"
|
||||||
|
#~ msgstr "Отсутствующие в AUR пакеты:"
|
||||||
|
|
||||||
|
#~ msgid "Package conflicts found:"
|
||||||
|
#~ msgstr "Обнаружены конфликты пакетов:"
|
||||||
|
|
||||||
|
#~ msgid "Querying AUR..."
|
||||||
|
#~ msgstr "Выполнение запроса в AUR..."
|
||||||
|
|
||||||
|
#~ msgid "error updating package install reason to dependency"
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "ошибка при изменении причины установки пакета на \"установленный как "
|
||||||
|
#~ "зависимость\":"
|
||||||
|
|
||||||
|
#~ msgid "package conflicts can not be resolved with noconfirm, aborting"
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "конфликты пакетов не могут быть разрешены опцией noconfirm, прерывание"
|
||||||
|
737
po/sk.po
737
po/sk.po
@ -1,737 +0,0 @@
|
|||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Matej Mrenica, 2022
|
|
||||||
# Peter Cyprich, 2024
|
|
||||||
# Michal Fusatý, 2024
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Last-Translator: Michal Fusatý, 2024\n"
|
|
||||||
"Language-Team: Slovak (https://app.transifex.com/yay-1/teams/123732/sk/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: sk\n"
|
|
||||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
|
|
||||||
"X-Generator: xgotext\n"
|
|
||||||
|
|
||||||
#: clean.go:83
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
"Build directory:"
|
|
||||||
msgstr ""
|
|
||||||
"\n"
|
|
||||||
"Adresár zostavenia:"
|
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:201 pkg/dep/dep_graph.go:740
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
"Enter a number (default=1): "
|
|
||||||
msgstr ""
|
|
||||||
"\n"
|
|
||||||
"Zadajte číslo (predvolené=1):"
|
|
||||||
|
|
||||||
#: pkg/menus/menu.go:32
|
|
||||||
msgid " (Build Files Exist)"
|
|
||||||
msgstr "(Súbory na zostavenie existujú)"
|
|
||||||
|
|
||||||
#: pkg/menus/menu.go:27
|
|
||||||
msgid " (Installed)"
|
|
||||||
msgstr "(Nainštalované)"
|
|
||||||
|
|
||||||
#: cmd.go:453
|
|
||||||
msgid " [Installed]"
|
|
||||||
msgstr "[Nainštalované]"
|
|
||||||
|
|
||||||
#: cmd.go:410 vote.go:36
|
|
||||||
msgid " there is nothing to do"
|
|
||||||
msgstr "nie je čo robiť"
|
|
||||||
|
|
||||||
#: pkg/menus/menu.go:49
|
|
||||||
msgid "%s [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)"
|
|
||||||
msgstr ""
|
|
||||||
"%s [A]Všetko [Ab]Zrušiť [I]Nainštalované [No]Nenainštalované alebo (1 2 3, "
|
|
||||||
"1-3, ^4)"
|
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:308
|
|
||||||
msgid "%s already made -- skipping build"
|
|
||||||
msgstr "%s už vytvorené -- preskočenie zostavenia"
|
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:57
|
|
||||||
msgid "%s is not set"
|
|
||||||
msgstr "%s nie je nastavené"
|
|
||||||
|
|
||||||
#: pkg/settings/exe/cmd_builder.go:257
|
|
||||||
msgid "%s is present."
|
|
||||||
msgstr "%s je prítomný."
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:460 pkg/sync/build/installer.go:305
|
|
||||||
msgid "%s is up to date -- skipping"
|
|
||||||
msgstr "%s je aktuálny -- preskakujem"
|
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:291
|
|
||||||
msgid "%s to upgrade/install."
|
|
||||||
msgstr "%s na aktualizáciu/inštaláciu."
|
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:285
|
|
||||||
msgid "%s will also be installed for this operation."
|
|
||||||
msgstr "%sbude tiež nainštalovaný pre túto operáciu."
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:124
|
|
||||||
msgid "%s, required by: %s"
|
|
||||||
msgstr "%s, vyžaduje: %s"
|
|
||||||
|
|
||||||
#: pkg/menus/diff_menu.go:49
|
|
||||||
msgid "%s: No changes -- skipping"
|
|
||||||
msgstr "%s Žiadne zmeny -- preskakujem"
|
|
||||||
|
|
||||||
#: pkg/query/filter.go:22
|
|
||||||
msgid "%s: can't use target with option --aur -- skipping"
|
|
||||||
msgstr "%snemožno použiť cieľ s voľbou --aur -- preskakujem"
|
|
||||||
|
|
||||||
#: pkg/query/filter.go:17
|
|
||||||
msgid "%s: can't use target with option --repo -- skipping"
|
|
||||||
msgstr "%s nemožno použiť cieľ s voľbou --repo -- preskakujem"
|
|
||||||
|
|
||||||
#: pkg/upgrade/sources.go:57
|
|
||||||
msgid "%s: ignoring package upgrade (%s => %s)"
|
|
||||||
msgstr "%s ignorujem aktualizáciu balíčka (%s => %s)"
|
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:46
|
|
||||||
msgid "%s: local (%s) is newer than AUR (%s)"
|
|
||||||
msgstr "%s lokálne (%s) je novšie ako AUR (%s)"
|
|
||||||
|
|
||||||
#: vote.go:51
|
|
||||||
msgid ""
|
|
||||||
"%s: please set AUR_USERNAME and AUR_PASSWORD environment variables for "
|
|
||||||
"voting"
|
|
||||||
msgstr ""
|
|
||||||
"%s prosím nastavte premenné prostredia AUR_USERNAME (používateľské meno AUR)"
|
|
||||||
" a AUR_PASSWORD (heslo AUR) pre hlasovanie"
|
|
||||||
|
|
||||||
#: pkg/download/unified.go:192
|
|
||||||
msgid "(%d/%d) Downloaded PKGBUILD from ABS: %s"
|
|
||||||
msgstr "(%d/%d) Stiahnuté PKGBUILD z ABS: %s"
|
|
||||||
|
|
||||||
#: pkg/download/aur.go:92 pkg/download/unified.go:188
|
|
||||||
msgid "(%d/%d) Downloaded PKGBUILD: %s"
|
|
||||||
msgstr "(%d/%d) Stiahnuté PKGBUILD: %s"
|
|
||||||
|
|
||||||
#: pkg/download/aur.go:82
|
|
||||||
msgid "(%d/%d) Failed to download PKGBUILD: %s"
|
|
||||||
msgstr "(%d/%d) Nepodarilo sa stiahnuť PKGBUILD: %s"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/service.go:109
|
|
||||||
msgid "(%d/%d) Parsing SRCINFO: %s"
|
|
||||||
msgstr "(%d/%d) Analýza SRCINFO: %s"
|
|
||||||
|
|
||||||
#: pkg/query/types.go:103 pkg/query/types.go:72
|
|
||||||
msgid "(Installed)"
|
|
||||||
msgstr "(Nainštalované)"
|
|
||||||
|
|
||||||
#: pkg/query/types.go:101 pkg/query/types.go:70
|
|
||||||
msgid "(Installed: %s)"
|
|
||||||
msgstr "(Nainštalované: %s)"
|
|
||||||
|
|
||||||
#: pkg/query/types.go:61
|
|
||||||
msgid "(Orphaned)"
|
|
||||||
msgstr "(Osirotené)"
|
|
||||||
|
|
||||||
#: pkg/query/types.go:65
|
|
||||||
msgid "(Out-of-date: %s)"
|
|
||||||
msgstr "(Zastarané: %s)"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:75
|
|
||||||
msgid "AUR"
|
|
||||||
msgstr "AUR"
|
|
||||||
|
|
||||||
#: print.go:44
|
|
||||||
msgid "AUR URL"
|
|
||||||
msgstr "AUR URL"
|
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:58
|
|
||||||
msgid "Add %s or %s to your environment variables"
|
|
||||||
msgstr "Pridajte %s or %s do vašich premenných prostredia"
|
|
||||||
|
|
||||||
#: main.go:60
|
|
||||||
msgid "Avoid running yay as root/sudo."
|
|
||||||
msgstr "Vyhnite sa spúšťaniu yay ako root/sudo."
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:63
|
|
||||||
msgid "Check Dependency"
|
|
||||||
msgstr "Skontrolovať závislosti"
|
|
||||||
|
|
||||||
#: print.go:41
|
|
||||||
msgid "Check Deps"
|
|
||||||
msgstr "Skontrolovať závislosti"
|
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:89
|
|
||||||
msgid "Checking development packages..."
|
|
||||||
msgstr "Kontrolujem balíčky vývoja..."
|
|
||||||
|
|
||||||
#: pkg/sync/workdir/clean.go:45
|
|
||||||
msgid "Cleaning (%d/%d): %s"
|
|
||||||
msgstr "Čiestenie (%d/%d): %s"
|
|
||||||
|
|
||||||
#: print.go:42
|
|
||||||
msgid "Conflicts With"
|
|
||||||
msgstr "Konflikty s"
|
|
||||||
|
|
||||||
#: pkg/menus/clean_menu.go:62
|
|
||||||
msgid "Deleting (%d/%d): %s"
|
|
||||||
msgstr "Mazanie (%d/%d): %s"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:61
|
|
||||||
msgid "Dependency"
|
|
||||||
msgstr "Závislosť"
|
|
||||||
|
|
||||||
#: print.go:38
|
|
||||||
msgid "Depends On"
|
|
||||||
msgstr "Závisí na"
|
|
||||||
|
|
||||||
#: print.go:33
|
|
||||||
msgid "Description"
|
|
||||||
msgstr "Popis"
|
|
||||||
|
|
||||||
#: pkg/menus/diff_menu.go:160
|
|
||||||
msgid "Diffs to show?"
|
|
||||||
msgstr "Rozdiely na zobrazenie?"
|
|
||||||
|
|
||||||
#: pkg/settings/migrations.go:25
|
|
||||||
msgid "Disable 'provides' setting by default"
|
|
||||||
msgstr "Predvolene zrušiť nastavenie 'provides'"
|
|
||||||
|
|
||||||
#: clean.go:78
|
|
||||||
msgid "Do you want to remove ALL AUR packages from cache?"
|
|
||||||
msgstr "Chcete odstrániť VŠETKY balíky AUR z vyrovnávacej pamäte?"
|
|
||||||
|
|
||||||
#: clean.go:95
|
|
||||||
msgid "Do you want to remove ALL untracked AUR files?"
|
|
||||||
msgstr "Chcete odstrániť VŠETKY nesledované súbory AUR?"
|
|
||||||
|
|
||||||
#: clean.go:80
|
|
||||||
msgid "Do you want to remove all other AUR packages from cache?"
|
|
||||||
msgstr "Chcete odstrániť všetky ostatné balíky AUR z vyrovnávacej pamäte?"
|
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:61
|
|
||||||
msgid "Edit PKGBUILD with?"
|
|
||||||
msgstr "Upraviť PKGBUILD s?"
|
|
||||||
|
|
||||||
#: pkg/query/errors.go:13
|
|
||||||
msgid "Error during AUR search: %s\n"
|
|
||||||
msgstr "Chyba počas vyhľadávania AUR: %s\n"
|
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:295
|
|
||||||
msgid "Excluding packages may cause partial upgrades and break systems"
|
|
||||||
msgstr ""
|
|
||||||
"Vynechanie balíčkov môže spôsobiť čiastočné vylepšienia a zničiť systém"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:60
|
|
||||||
msgid "Explicit"
|
|
||||||
msgstr "Explicitne"
|
|
||||||
|
|
||||||
#: print.go:91
|
|
||||||
msgid "Explicitly installed packages: %s"
|
|
||||||
msgstr "Explicitne nainštalované balíky: %s"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:437 pkg/dep/dep_graph.go:535
|
|
||||||
msgid "Failed to find AUR package for"
|
|
||||||
msgstr "Nepodarilo sa nájsť AUR balíček "
|
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:120
|
|
||||||
msgid "Failed to install layer, rolling up to next layer."
|
|
||||||
msgstr "Nepodarilo sa nainštalovať vrstvu, presúvam sa na ďalšiu vrstvu"
|
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:16
|
|
||||||
msgid ""
|
|
||||||
"Failed to install the following packages. Manual intervention is required:"
|
|
||||||
msgstr ""
|
|
||||||
"Nepodarilo sa nainštalovať nasledovné balíčky. Je potrebná manuálna "
|
|
||||||
"interakcia: "
|
|
||||||
|
|
||||||
#: print.go:45
|
|
||||||
msgid "First Submitted"
|
|
||||||
msgstr "Prvý krát predložené"
|
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:83
|
|
||||||
msgid "Flagged Out Of Date AUR Packages:"
|
|
||||||
msgstr "Balíčky AUR označené ako neaktuálne:"
|
|
||||||
|
|
||||||
#: print.go:90
|
|
||||||
msgid "Foreign installed packages: %s"
|
|
||||||
msgstr "Cudzie nainšťalované balíčky: %s"
|
|
||||||
|
|
||||||
#: pkg/vcs/vcs.go:144
|
|
||||||
msgid "Found git repo: %s"
|
|
||||||
msgstr "Nájdený git repozitár: %s"
|
|
||||||
|
|
||||||
#: vcs.go:72
|
|
||||||
msgid "GenDB finished. No packages were installed"
|
|
||||||
msgstr "GenDB dokončené. Žiadne balíčky neboli nainštalované"
|
|
||||||
|
|
||||||
#: print.go:36
|
|
||||||
msgid "Groups"
|
|
||||||
msgstr "Skupiny"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:88
|
|
||||||
msgid "Import?"
|
|
||||||
msgstr "Importovať?"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:97
|
|
||||||
msgid "Importing keys with gpg..."
|
|
||||||
msgstr "Importovanie kľúčov pomocou gpg..."
|
|
||||||
|
|
||||||
#: print.go:46
|
|
||||||
msgid "Keywords"
|
|
||||||
msgstr "Kľúčové slová"
|
|
||||||
|
|
||||||
#: print.go:47
|
|
||||||
msgid "Last Modified"
|
|
||||||
msgstr "Naposledy upravené"
|
|
||||||
|
|
||||||
#: print.go:35
|
|
||||||
msgid "Licenses"
|
|
||||||
msgstr "Licencie"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:77
|
|
||||||
msgid "Local"
|
|
||||||
msgstr "Lokálne"
|
|
||||||
|
|
||||||
#: print.go:48
|
|
||||||
msgid "Maintainer"
|
|
||||||
msgstr "Správca"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:62
|
|
||||||
msgid "Make Dependency"
|
|
||||||
msgstr "Spraviť závislosť"
|
|
||||||
|
|
||||||
#: print.go:40
|
|
||||||
msgid "Make Deps"
|
|
||||||
msgstr "Spraviť závislosť"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:79
|
|
||||||
msgid "Missing"
|
|
||||||
msgstr "Chýbajúce"
|
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:75
|
|
||||||
msgid "Missing AUR Debug Packages:"
|
|
||||||
msgstr "Chýbajúce AUR balíčky na ladenie: "
|
|
||||||
|
|
||||||
#: print.go:31
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Názov"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:442 pkg/dep/dep_graph.go:548
|
|
||||||
msgid "No AUR package found for"
|
|
||||||
msgstr "Nenašiel sa AUR balíček pre "
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:182
|
|
||||||
msgid "No package found for"
|
|
||||||
msgstr "Nenašiel sa balíček pre "
|
|
||||||
|
|
||||||
#: print.go:225
|
|
||||||
msgid "None"
|
|
||||||
msgstr "Žiadne"
|
|
||||||
|
|
||||||
#: print.go:39
|
|
||||||
msgid "Optional Deps"
|
|
||||||
msgstr "Voliteľné závislosti"
|
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:79
|
|
||||||
msgid "Orphan (unmaintained) AUR Packages:"
|
|
||||||
msgstr "Osirotené (neudržiavané) balíčky AUR: "
|
|
||||||
|
|
||||||
#: print.go:53 print.go:55
|
|
||||||
msgid "Out-of-date"
|
|
||||||
msgstr "Zastarané"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:115
|
|
||||||
msgid "PGP keys need importing:"
|
|
||||||
msgstr "PGP kľúče potrebujú importovať:"
|
|
||||||
|
|
||||||
#: pkg/sync/workdir/preparer.go:252
|
|
||||||
msgid "PKGBUILD up to date, skipping download: %s"
|
|
||||||
msgstr "PKGBUILD aktuálne, preskakujem sťahovanie: %s"
|
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:130
|
|
||||||
msgid "PKGBUILDs to edit?"
|
|
||||||
msgstr "PKGBUILDy na editáciu?"
|
|
||||||
|
|
||||||
#: print.go:61
|
|
||||||
msgid "Package Base"
|
|
||||||
msgstr "Základ balíčka"
|
|
||||||
|
|
||||||
#: print.go:60
|
|
||||||
msgid "Package Base ID"
|
|
||||||
msgstr "ID Základu balíčka"
|
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:71
|
|
||||||
msgid "Packages not in AUR:"
|
|
||||||
msgstr "Balíčky, ktoré nie sú v AUR:"
|
|
||||||
|
|
||||||
#: pkg/menus/clean_menu.go:54
|
|
||||||
msgid "Packages to cleanBuild?"
|
|
||||||
msgstr "Balíčky, ktoré vybudovať nanovo?"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:202
|
|
||||||
msgid "Packages to exclude"
|
|
||||||
msgstr "Balíčky, ktoré vynechať"
|
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:294
|
|
||||||
msgid "Packages to exclude: (eg: \"1 2 3\", \"1-3\", \"^4\" or repo name)"
|
|
||||||
msgstr ""
|
|
||||||
"Balíčky, ktoré vynechať: (napr.: \"1 2 3\", \"1-3\" \"^4\" alebo názov "
|
|
||||||
"repozitára)"
|
|
||||||
|
|
||||||
#: cmd.go:392
|
|
||||||
msgid "Packages to install (eg: 1 2 3, 1-3 or ^4)"
|
|
||||||
msgstr "Balíčky na inštaláciu (napr: 1 2 3, 1-3 or ^4)"
|
|
||||||
|
|
||||||
#: print.go:49
|
|
||||||
msgid "Popularity"
|
|
||||||
msgstr "Popularita"
|
|
||||||
|
|
||||||
#: pkg/menus/diff_menu.go:172 pkg/menus/edit_menu.go:143
|
|
||||||
msgid "Proceed with install?"
|
|
||||||
msgstr "Pokračovať s inštaláciou?"
|
|
||||||
|
|
||||||
#: print.go:37
|
|
||||||
msgid "Provides"
|
|
||||||
msgstr "Poskytuje"
|
|
||||||
|
|
||||||
#: pkg/sync/workdir/preparer.go:125
|
|
||||||
msgid "Remove make dependencies after install?"
|
|
||||||
msgstr "Odstrániť make závislosti po inštalácií?"
|
|
||||||
|
|
||||||
#: print.go:43
|
|
||||||
msgid "Replaces"
|
|
||||||
msgstr "Nahrádza"
|
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:191 print.go:30
|
|
||||||
msgid "Repository"
|
|
||||||
msgstr "Repozitár"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:730
|
|
||||||
msgid "Repository AUR"
|
|
||||||
msgstr "Repozitár AUR"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:78
|
|
||||||
msgid "SRCINFO"
|
|
||||||
msgstr "SRCINFO"
|
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:71
|
|
||||||
msgid "Searching AUR for updates..."
|
|
||||||
msgstr "Vyhľadávanie aktualizácií v AUR..."
|
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:159
|
|
||||||
msgid "Searching databases for updates..."
|
|
||||||
msgstr "Vyhľadávanie aktualizácií v databázach..."
|
|
||||||
|
|
||||||
#: pkg/query/query_builder.go:214
|
|
||||||
msgid "Showing repo packages only"
|
|
||||||
msgstr "Zobrazenie iba repo balíčkov"
|
|
||||||
|
|
||||||
#: print.go:95
|
|
||||||
msgid "Size of pacman cache %s: %s"
|
|
||||||
msgstr "Veľkosť pacman cache %s: %s"
|
|
||||||
|
|
||||||
#: print.go:98
|
|
||||||
msgid "Size of yay cache %s: %s"
|
|
||||||
msgstr "Veľkosť yay cache %s: %s"
|
|
||||||
|
|
||||||
#: print.go:62
|
|
||||||
msgid "Snapshot URL"
|
|
||||||
msgstr "URL Snapshotu"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:76
|
|
||||||
msgid "Sync"
|
|
||||||
msgstr "Synchronizácia"
|
|
||||||
|
|
||||||
#: print.go:100
|
|
||||||
msgid "Ten biggest packages:"
|
|
||||||
msgstr "Desať najväčších balíčkov:"
|
|
||||||
|
|
||||||
#: pkg/sync/sync.go:124
|
|
||||||
msgid "The following packages are not compatible with your architecture:"
|
|
||||||
msgstr "Nasledovné balíčky nie sú kompatibilné s vašou architektúrou: "
|
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:179 pkg/dep/dep_graph.go:726
|
|
||||||
msgid "There are %[1]d providers available for %[2]s:"
|
|
||||||
msgstr ""
|
|
||||||
"Existuje/existujú %d poskytovateľ/poskytovatelia/poskytovateľov pre %s: "
|
|
||||||
|
|
||||||
#: pkg/settings/exe/cmd_builder.go:258
|
|
||||||
msgid "There may be another Pacman instance running. Waiting..."
|
|
||||||
msgstr "Môže byť spustená ďalšia inštancia Pacmana. Čakanie..."
|
|
||||||
|
|
||||||
#: print.go:92
|
|
||||||
msgid "Total Size occupied by packages: %s"
|
|
||||||
msgstr "Celková veľkosť obsadená balíčkami: %s"
|
|
||||||
|
|
||||||
#: print.go:89
|
|
||||||
msgid "Total installed packages: %s"
|
|
||||||
msgstr "Celkový počet nainštalovaných balíčkov: %s"
|
|
||||||
|
|
||||||
#: pkg/sync/sync.go:132
|
|
||||||
msgid "Try to build them anyway?"
|
|
||||||
msgstr "Pokúsiť sa ich zostaviť aj tak?"
|
|
||||||
|
|
||||||
#: print.go:34
|
|
||||||
msgid "URL"
|
|
||||||
msgstr "URL"
|
|
||||||
|
|
||||||
#: clean.go:194 pkg/menus/clean_menu.go:65 pkg/menus/clean_menu.go:71
|
|
||||||
msgid "Unable to clean:"
|
|
||||||
msgstr "Nepodarilo sa vyčistiť:"
|
|
||||||
|
|
||||||
#: get.go:42 get.go:74
|
|
||||||
msgid "Unable to find the following packages:"
|
|
||||||
msgstr "Nie je možné nájsť nasledujúce balíčky:"
|
|
||||||
|
|
||||||
#: vote.go:20
|
|
||||||
msgid "Unable to handle package vote for: %s. err: %s"
|
|
||||||
msgstr "Nie je možné spracovať hlasovanie o balíku pre: %s. err: %s"
|
|
||||||
|
|
||||||
#: clean.go:170
|
|
||||||
msgid "Unable to remove %s: %s"
|
|
||||||
msgstr "Nepodarilo sa odstrániť %s: %s"
|
|
||||||
|
|
||||||
#: print.go:32
|
|
||||||
msgid "Version"
|
|
||||||
msgstr "Verzia"
|
|
||||||
|
|
||||||
#: print.go:50
|
|
||||||
msgid "Votes"
|
|
||||||
msgstr "Hlasy"
|
|
||||||
|
|
||||||
#: print.go:87
|
|
||||||
msgid "Yay version v%s"
|
|
||||||
msgstr "Verzia Yay v%s"
|
|
||||||
|
|
||||||
#: pkg/menus/menu.go:49
|
|
||||||
msgid "[N]one"
|
|
||||||
msgstr "[N]Žiadne"
|
|
||||||
|
|
||||||
#: pkg/settings/errors.go:29
|
|
||||||
msgid "aborting due to user"
|
|
||||||
msgstr "prerušenie kvôli používateľovi"
|
|
||||||
|
|
||||||
#: pkg/settings/parser/parser.go:608
|
|
||||||
msgid "argument '-' specified without input on stdin"
|
|
||||||
msgstr "argument \"-\" špecifikovaný bez vstupu alebo štandardného vstupu"
|
|
||||||
|
|
||||||
#: local_install.go:26
|
|
||||||
msgid "cannot find PKGBUILD and .SRCINFO in directory"
|
|
||||||
msgstr "nepodarilo sa nájsť PKGBUILD a .SRCINFO v adresári"
|
|
||||||
|
|
||||||
#: pkg/sync/build/pkg_archive.go:148
|
|
||||||
msgid "cannot find package name: %v"
|
|
||||||
msgstr "nepodarilo sa nájsť názov balíčku: %v"
|
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:30
|
|
||||||
msgid "could not find PKGDEST for: %s"
|
|
||||||
msgstr "nemožno nájsť PKGDEST pre: %s"
|
|
||||||
|
|
||||||
#: errors.go:9
|
|
||||||
msgid "could not find all required packages"
|
|
||||||
msgstr "nemožno nájsť všetky potrebné balíčky"
|
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:61
|
|
||||||
msgid "could not find any package archives listed in %s"
|
|
||||||
msgstr "nemožno nájst žiadne archívy balíčkov uvedené v %s"
|
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:50 pkg/upgrade/service.go:286
|
|
||||||
msgid "dependency"
|
|
||||||
msgstr "závislosť"
|
|
||||||
|
|
||||||
#: pkg/vcs/vcs.go:100 pkg/vcs/vcs.go:96
|
|
||||||
msgid "devel check for package failed: '%s' encountered an error"
|
|
||||||
msgstr "nepodarilo sa skontrolovať vývoj pre balíček: '%s' postihla chyba"
|
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:110
|
|
||||||
msgid "editor did not exit successfully, aborting: %s"
|
|
||||||
msgstr "editor nebol úspešne ukončený, ruším: %s"
|
|
||||||
|
|
||||||
#: pkg/sync/workdir/aur_source.go:24
|
|
||||||
msgid "error downloading sources: %s"
|
|
||||||
msgstr "chyba pri sťahovaní zdrojov: %s"
|
|
||||||
|
|
||||||
#: pkg/download/errors.go:25
|
|
||||||
msgid "error fetching %s: %s"
|
|
||||||
msgstr "načítanie chýb %s: %s"
|
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:9
|
|
||||||
msgid "error installing repo packages"
|
|
||||||
msgstr "chyba pri inštalácií balíčkov z repozitára"
|
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:266 pkg/sync/build/installer.go:270
|
|
||||||
msgid "error installing:"
|
|
||||||
msgstr "chyba pri inštalovaní:"
|
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:233 pkg/sync/build/installer.go:237
|
|
||||||
msgid "error making: %s"
|
|
||||||
msgstr "chyba vytvárania: %s"
|
|
||||||
|
|
||||||
#: pkg/sync/workdir/merge.go:24
|
|
||||||
msgid "error merging %s: %s"
|
|
||||||
msgstr "chyba pri zlúčení %s: %s"
|
|
||||||
|
|
||||||
#: pkg/download/unified.go:59
|
|
||||||
msgid "error reading %s"
|
|
||||||
msgstr "chyba čítania %s"
|
|
||||||
|
|
||||||
#: sync.go:36
|
|
||||||
msgid "error refreshing databases"
|
|
||||||
msgstr "chyba obnovenia databáz"
|
|
||||||
|
|
||||||
#: pkg/sync/workdir/clean.go:51 pkg/sync/workdir/merge.go:17
|
|
||||||
msgid "error resetting %s: %s"
|
|
||||||
msgstr "chyba resetovania %s: %s"
|
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:53
|
|
||||||
msgid "error updating package install reason to %s"
|
|
||||||
msgstr "chyba pri aktualizácii dôvodu inštalácie balíka na %s"
|
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:48
|
|
||||||
msgid "explicit"
|
|
||||||
msgstr "explicitné"
|
|
||||||
|
|
||||||
#: pkg/settings/errors.go:23
|
|
||||||
msgid "failed to create directory '%s': %s"
|
|
||||||
msgstr "nepodarilo sa vytvoriť adresár '%s': %s"
|
|
||||||
|
|
||||||
#: pkg/settings/config.go:281
|
|
||||||
msgid "failed to open config file '%s': %s"
|
|
||||||
msgstr "nepodarilo sa otvoriť konfiguračný súbor '%s': %s"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/service.go:114
|
|
||||||
msgid "failed to parse %s -- skipping: %s"
|
|
||||||
msgstr "nepodarilo sa analyzovať %s -- preskakujem: %s"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/service.go:118
|
|
||||||
msgid "failed to parse %s: %s"
|
|
||||||
msgstr "nepodarilo sa analyzovať %s: %s"
|
|
||||||
|
|
||||||
#: local_install.go:77
|
|
||||||
msgid "failed to parse .SRCINFO"
|
|
||||||
msgstr "nepodarilo sa analyzovať .SRCINFO"
|
|
||||||
|
|
||||||
#: pkg/settings/config.go:291
|
|
||||||
msgid "failed to read config file '%s': %s"
|
|
||||||
msgstr "nepodarilo sa prečítať konfiguračný súbor '%s': %s"
|
|
||||||
|
|
||||||
#: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73
|
|
||||||
msgid "failed to retrieve aur Cache"
|
|
||||||
msgstr "nepodarilo sa získať aur cache"
|
|
||||||
|
|
||||||
#: pkg/upgrade/sources.go:27
|
|
||||||
msgid "ignoring package devel upgrade (no AUR info found):"
|
|
||||||
msgstr "ignorujem aktualizáciu balíčka vývoja (nenašli sa AUR informácie):"
|
|
||||||
|
|
||||||
#: pkg/text/errors.go:8
|
|
||||||
msgid "input too long"
|
|
||||||
msgstr "vstup príliš dlhý"
|
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:222 pkg/dep/dep_graph.go:761
|
|
||||||
msgid "invalid number: %s"
|
|
||||||
msgstr "neplatné číslo: %s"
|
|
||||||
|
|
||||||
#: pkg/settings/parser/parser.go:174
|
|
||||||
msgid "invalid option '%s'"
|
|
||||||
msgstr "neplatná možnosť '%s'"
|
|
||||||
|
|
||||||
#: cmd.go:197
|
|
||||||
msgid "invalid option: '--deps' and '--explicit' may not be used together"
|
|
||||||
msgstr "neplatná možnosť: '--deps' a '--explicit' nemôže byť použité spolu"
|
|
||||||
|
|
||||||
#: pkg/download/abs.go:22
|
|
||||||
msgid "invalid repository"
|
|
||||||
msgstr "neplatný repozitár"
|
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:227 pkg/dep/dep_graph.go:767
|
|
||||||
msgid "invalid value: %d is not between %d and %d"
|
|
||||||
msgstr "neplatná hodnota: %d nie je mezdi %d a %d"
|
|
||||||
|
|
||||||
#: pkg/text/input.go:48
|
|
||||||
msgid "no"
|
|
||||||
msgstr "nie"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:110
|
|
||||||
msgid "no keys to import"
|
|
||||||
msgstr "žiadne kľúče na importovanie"
|
|
||||||
|
|
||||||
#: pkg/query/errors.go:20
|
|
||||||
msgid "no query was executed"
|
|
||||||
msgstr "nebola vykonaná žiadna požiadavka"
|
|
||||||
|
|
||||||
#: local_install.go:66
|
|
||||||
msgid "no target directories specified"
|
|
||||||
msgstr "nie sú špecifikované žiadne adresáre"
|
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:242
|
|
||||||
msgid "nothing to install for %s"
|
|
||||||
msgstr "nie je čo inštalovať pre %s"
|
|
||||||
|
|
||||||
#: pkg/settings/parser/parser.go:164
|
|
||||||
msgid "only one operation may be used at a time"
|
|
||||||
msgstr "naraz môže byť použitá iba jedna operácia"
|
|
||||||
|
|
||||||
#: pkg/cmd/graph/main.go:70
|
|
||||||
msgid "only one target is allowed"
|
|
||||||
msgstr "je povolený iba jeden cieľ"
|
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:291
|
|
||||||
msgid "package"
|
|
||||||
msgid_plural "packages"
|
|
||||||
msgstr[0] "balíček"
|
|
||||||
msgstr[1] "balíčkov"
|
|
||||||
msgstr[2] "balíčkov"
|
|
||||||
msgstr[3] "balíčky"
|
|
||||||
|
|
||||||
#: print.go:187
|
|
||||||
msgid "package '%s' was not found"
|
|
||||||
msgstr "balíček '%s' sa nenašiel"
|
|
||||||
|
|
||||||
#: pkg/download/errors.go:15
|
|
||||||
msgid "package not found in AUR"
|
|
||||||
msgstr "balíček sa nenašiel v AUR"
|
|
||||||
|
|
||||||
#: pkg/download/abs.go:23
|
|
||||||
msgid "package not found in repos"
|
|
||||||
msgstr "balíček sa nenašiel v repozitároch"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:100
|
|
||||||
msgid "problem importing keys"
|
|
||||||
msgstr "problém s importom kľúčov"
|
|
||||||
|
|
||||||
#: clean.go:105
|
|
||||||
msgid "removing AUR packages from cache..."
|
|
||||||
msgstr "odstraňujem balíčky AUR z cache..."
|
|
||||||
|
|
||||||
#: clean.go:178 pkg/sync/workdir/clean.go:41
|
|
||||||
msgid "removing untracked AUR files from cache..."
|
|
||||||
msgstr "odstraňujem nesledované AUR balíčky z cache..."
|
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:38
|
|
||||||
msgid "the PKGDEST for %s is listed by makepkg but does not exist: %s"
|
|
||||||
msgstr "PKGDEST pre %s je uvedený v makepkg, ale neexistuje %s"
|
|
||||||
|
|
||||||
#: pkg/sync/sync.go:45
|
|
||||||
msgid "there is nothing to do"
|
|
||||||
msgstr "nie je čo urobiť"
|
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:247
|
|
||||||
msgid "unable to CreateHandle: %s"
|
|
||||||
msgstr "nepodarilo sa CreateHandle: %s"
|
|
||||||
|
|
||||||
#: cmd.go:186
|
|
||||||
msgid "unhandled operation"
|
|
||||||
msgstr "neošetrená operácia"
|
|
||||||
|
|
||||||
#: cmd.go:450
|
|
||||||
msgid "unknown-version"
|
|
||||||
msgstr "neznáma-verzia"
|
|
||||||
|
|
||||||
#: pkg/text/input.go:47
|
|
||||||
msgid "yes"
|
|
||||||
msgstr "áno"
|
|
120
po/sv.po
120
po/sv.po
@ -2,11 +2,11 @@
|
|||||||
# Translators:
|
# Translators:
|
||||||
# J G, 2021
|
# J G, 2021
|
||||||
# August Wikerfors, 2023
|
# August Wikerfors, 2023
|
||||||
# Luna Jernberg <droidbittin@gmail.com>, 2024
|
# Luna Jernberg <bittin@cafe8bitar.se>, 2023
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Last-Translator: Luna Jernberg <droidbittin@gmail.com>, 2024\n"
|
"Last-Translator: Luna Jernberg <bittin@cafe8bitar.se>, 2023\n"
|
||||||
"Language-Team: Swedish (https://app.transifex.com/yay-1/teams/123732/sv/)\n"
|
"Language-Team: Swedish (https://app.transifex.com/yay-1/teams/123732/sv/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
@ -15,22 +15,6 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
"X-Generator: xgotext\n"
|
"X-Generator: xgotext\n"
|
||||||
|
|
||||||
#: clean.go:83
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
"Build directory:"
|
|
||||||
msgstr ""
|
|
||||||
"\n"
|
|
||||||
"Byggkatalog:"
|
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:201 pkg/dep/dep_graph.go:740
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
"Enter a number (default=1): "
|
|
||||||
msgstr ""
|
|
||||||
"\n"
|
|
||||||
"Ange ett nummer: (standard = 1): "
|
|
||||||
|
|
||||||
#: pkg/menus/menu.go:32
|
#: pkg/menus/menu.go:32
|
||||||
msgid " (Build Files Exist)"
|
msgid " (Build Files Exist)"
|
||||||
msgstr " (Byggfiler finns)"
|
msgstr " (Byggfiler finns)"
|
||||||
@ -69,11 +53,11 @@ msgstr "%s finns."
|
|||||||
msgid "%s is up to date -- skipping"
|
msgid "%s is up to date -- skipping"
|
||||||
msgstr "%s är ajour -- hoppar över"
|
msgstr "%s är ajour -- hoppar över"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:291
|
#: pkg/upgrade/service.go:292
|
||||||
msgid "%s to upgrade/install."
|
msgid "%s to upgrade/install."
|
||||||
msgstr "%s att uppgradera/installera."
|
msgstr "%s att uppgradera/installera."
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:285
|
#: pkg/upgrade/service.go:286
|
||||||
msgid "%s will also be installed for this operation."
|
msgid "%s will also be installed for this operation."
|
||||||
msgstr "%s kommer också att installeras för denna operation."
|
msgstr "%s kommer också att installeras för denna operation."
|
||||||
|
|
||||||
@ -125,11 +109,11 @@ msgstr "(%d/%d) Misslyckades att ladda ner PKGBUILD: %s"
|
|||||||
msgid "(%d/%d) Parsing SRCINFO: %s"
|
msgid "(%d/%d) Parsing SRCINFO: %s"
|
||||||
msgstr "(%d/%d) Tolkar SRCINFO: %s"
|
msgstr "(%d/%d) Tolkar SRCINFO: %s"
|
||||||
|
|
||||||
#: pkg/query/types.go:103 pkg/query/types.go:72
|
#: pkg/query/types.go:72 pkg/query/types.go:103
|
||||||
msgid "(Installed)"
|
msgid "(Installed)"
|
||||||
msgstr "(Installerad)"
|
msgstr "(Installerad)"
|
||||||
|
|
||||||
#: pkg/query/types.go:101 pkg/query/types.go:70
|
#: pkg/query/types.go:70 pkg/query/types.go:101
|
||||||
msgid "(Installed: %s)"
|
msgid "(Installed: %s)"
|
||||||
msgstr "(Installerade: %s)"
|
msgstr "(Installerade: %s)"
|
||||||
|
|
||||||
@ -141,14 +125,14 @@ msgstr "(Övergiven)"
|
|||||||
msgid "(Out-of-date: %s)"
|
msgid "(Out-of-date: %s)"
|
||||||
msgstr "(Föråldrade: %s)"
|
msgstr "(Föråldrade: %s)"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:75
|
|
||||||
msgid "AUR"
|
|
||||||
msgstr "AUR"
|
|
||||||
|
|
||||||
#: print.go:44
|
#: print.go:44
|
||||||
msgid "AUR URL"
|
msgid "AUR URL"
|
||||||
msgstr "AUR-webbadress"
|
msgstr "AUR-webbadress"
|
||||||
|
|
||||||
|
#: pkg/dep/dep_graph.go:75
|
||||||
|
msgid "AUR"
|
||||||
|
msgstr "AUR"
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:58
|
#: pkg/menus/edit_menu.go:58
|
||||||
msgid "Add %s or %s to your environment variables"
|
msgid "Add %s or %s to your environment variables"
|
||||||
msgstr "Lägg till %s eller %s bland dina miljövariabler"
|
msgstr "Lägg till %s eller %s bland dina miljövariabler"
|
||||||
@ -165,7 +149,7 @@ msgstr "Kontrollberoende"
|
|||||||
msgid "Check Deps"
|
msgid "Check Deps"
|
||||||
msgstr "Kontrollberoenden"
|
msgstr "Kontrollberoenden"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:89
|
#: pkg/upgrade/service.go:90
|
||||||
msgid "Checking development packages..."
|
msgid "Checking development packages..."
|
||||||
msgstr "Kontrollerar utvecklingspaket..."
|
msgstr "Kontrollerar utvecklingspaket..."
|
||||||
|
|
||||||
@ -221,7 +205,7 @@ msgstr "Redigera PKGBUILD med?"
|
|||||||
msgid "Error during AUR search: %s\n"
|
msgid "Error during AUR search: %s\n"
|
||||||
msgstr "Fel vid AUR-sökning: %s\n"
|
msgstr "Fel vid AUR-sökning: %s\n"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:295
|
#: pkg/upgrade/service.go:296
|
||||||
msgid "Excluding packages may cause partial upgrades and break systems"
|
msgid "Excluding packages may cause partial upgrades and break systems"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Att exkludera paket kan orsaka partiella uppgraderingar och ha sönder system"
|
"Att exkludera paket kan orsaka partiella uppgraderingar och ha sönder system"
|
||||||
@ -251,7 +235,7 @@ msgstr "Misslyckades att bygga följande paket. Manuell intervention krävs:"
|
|||||||
msgid "First Submitted"
|
msgid "First Submitted"
|
||||||
msgstr "Först skapad"
|
msgstr "Först skapad"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:83
|
#: pkg/query/aur_warnings.go:79
|
||||||
msgid "Flagged Out Of Date AUR Packages:"
|
msgid "Flagged Out Of Date AUR Packages:"
|
||||||
msgstr "AUR-paket markerade som föråldrade:"
|
msgstr "AUR-paket markerade som föråldrade:"
|
||||||
|
|
||||||
@ -307,14 +291,14 @@ msgstr "Byggberoende"
|
|||||||
msgid "Make Deps"
|
msgid "Make Deps"
|
||||||
msgstr "Byggberoenden"
|
msgstr "Byggberoenden"
|
||||||
|
|
||||||
|
#: pkg/query/aur_warnings.go:71
|
||||||
|
msgid "Missing AUR Debug Packages:"
|
||||||
|
msgstr "Saknar AUR-felsökningspaket:"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:79
|
#: pkg/dep/dep_graph.go:79
|
||||||
msgid "Missing"
|
msgid "Missing"
|
||||||
msgstr "Saknas"
|
msgstr "Saknas"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:75
|
|
||||||
msgid "Missing AUR Debug Packages:"
|
|
||||||
msgstr "Saknar AUR-felsökningspaket:"
|
|
||||||
|
|
||||||
#: print.go:31
|
#: print.go:31
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Namn"
|
msgstr "Namn"
|
||||||
@ -335,7 +319,7 @@ msgstr "Inga"
|
|||||||
msgid "Optional Deps"
|
msgid "Optional Deps"
|
||||||
msgstr "Valfria beroenden"
|
msgstr "Valfria beroenden"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:79
|
#: pkg/query/aur_warnings.go:75
|
||||||
msgid "Orphan (unmaintained) AUR Packages:"
|
msgid "Orphan (unmaintained) AUR Packages:"
|
||||||
msgstr "Föräldralösa (icke underhållna) AUR paket:"
|
msgstr "Föräldralösa (icke underhållna) AUR paket:"
|
||||||
|
|
||||||
@ -355,15 +339,15 @@ msgstr "PKGBUILD uppdaterad, hoppar över nedladdning: %s"
|
|||||||
msgid "PKGBUILDs to edit?"
|
msgid "PKGBUILDs to edit?"
|
||||||
msgstr "Redigera PKGBUILD-filer?"
|
msgstr "Redigera PKGBUILD-filer?"
|
||||||
|
|
||||||
#: print.go:61
|
|
||||||
msgid "Package Base"
|
|
||||||
msgstr "Grundpaket"
|
|
||||||
|
|
||||||
#: print.go:60
|
#: print.go:60
|
||||||
msgid "Package Base ID"
|
msgid "Package Base ID"
|
||||||
msgstr "Grundpakets-ID"
|
msgstr "Grundpakets-ID"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:71
|
#: print.go:61
|
||||||
|
msgid "Package Base"
|
||||||
|
msgstr "Grundpaket"
|
||||||
|
|
||||||
|
#: pkg/query/aur_warnings.go:67
|
||||||
msgid "Packages not in AUR:"
|
msgid "Packages not in AUR:"
|
||||||
msgstr "Paket som inte finns i AUR:"
|
msgstr "Paket som inte finns i AUR:"
|
||||||
|
|
||||||
@ -375,7 +359,7 @@ msgstr "Bygg paket rent (cleanBuild)?"
|
|||||||
msgid "Packages to exclude"
|
msgid "Packages to exclude"
|
||||||
msgstr "Paket att exkludera"
|
msgstr "Paket att exkludera"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:294
|
#: pkg/upgrade/service.go:295
|
||||||
msgid "Packages to exclude: (eg: \"1 2 3\", \"1-3\", \"^4\" or repo name)"
|
msgid "Packages to exclude: (eg: \"1 2 3\", \"1-3\", \"^4\" or repo name)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Paket att hoppa över: (t.ex: \"1 2 3\", \"1-3\", \"^4\" eller "
|
"Paket att hoppa över: (t.ex: \"1 2 3\", \"1-3\", \"^4\" eller "
|
||||||
@ -405,23 +389,23 @@ msgstr "Ta bort byggberoenden efter installation?"
|
|||||||
msgid "Replaces"
|
msgid "Replaces"
|
||||||
msgstr "Ersätter"
|
msgstr "Ersätter"
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:191 print.go:30
|
|
||||||
msgid "Repository"
|
|
||||||
msgstr "Centralkatalog"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:730
|
#: pkg/dep/dep_graph.go:730
|
||||||
msgid "Repository AUR"
|
msgid "Repository AUR"
|
||||||
msgstr "Centralkatalog AUR"
|
msgstr "Centralkatalog AUR"
|
||||||
|
|
||||||
|
#: print.go:30 pkg/db/ialpm/alpm.go:191
|
||||||
|
msgid "Repository"
|
||||||
|
msgstr "Centralkatalog"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:78
|
#: pkg/dep/dep_graph.go:78
|
||||||
msgid "SRCINFO"
|
msgid "SRCINFO"
|
||||||
msgstr "SRCINFO"
|
msgstr "SRCINFO"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:71
|
#: pkg/upgrade/service.go:72
|
||||||
msgid "Searching AUR for updates..."
|
msgid "Searching AUR for updates..."
|
||||||
msgstr "Söker efter uppdateringar på AUR..."
|
msgstr "Söker efter uppdateringar på AUR..."
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:159
|
#: pkg/upgrade/service.go:160
|
||||||
msgid "Searching databases for updates..."
|
msgid "Searching databases for updates..."
|
||||||
msgstr "Söker efter uppdateringar i databaserna..."
|
msgstr "Söker efter uppdateringar i databaserna..."
|
||||||
|
|
||||||
@ -454,8 +438,8 @@ msgid "The following packages are not compatible with your architecture:"
|
|||||||
msgstr "Följande paket stöds inte av din arkitektur:"
|
msgstr "Följande paket stöds inte av din arkitektur:"
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:179 pkg/dep/dep_graph.go:726
|
#: pkg/db/ialpm/alpm.go:179 pkg/dep/dep_graph.go:726
|
||||||
msgid "There are %[1]d providers available for %[2]s:"
|
msgid "There are %d providers available for %s:"
|
||||||
msgstr "Det finns %[1]d tillhandahållare tillgängliga för %[2]s:"
|
msgstr "Det finns %d tillgängliga tillhandahållare för %s:"
|
||||||
|
|
||||||
#: pkg/settings/exe/cmd_builder.go:258
|
#: pkg/settings/exe/cmd_builder.go:258
|
||||||
msgid "There may be another Pacman instance running. Waiting..."
|
msgid "There may be another Pacman instance running. Waiting..."
|
||||||
@ -509,6 +493,22 @@ msgstr "Yay-version v%s"
|
|||||||
msgid "[N]one"
|
msgid "[N]one"
|
||||||
msgstr "[N]Inga"
|
msgstr "[N]Inga"
|
||||||
|
|
||||||
|
#: clean.go:83
|
||||||
|
msgid ""
|
||||||
|
"\n"
|
||||||
|
"Build directory:"
|
||||||
|
msgstr ""
|
||||||
|
"\n"
|
||||||
|
"Byggkatalog:"
|
||||||
|
|
||||||
|
#: pkg/db/ialpm/alpm.go:201 pkg/dep/dep_graph.go:740
|
||||||
|
msgid ""
|
||||||
|
"\n"
|
||||||
|
"Enter a number (default=1): "
|
||||||
|
msgstr ""
|
||||||
|
"\n"
|
||||||
|
"Ange ett nummer: (standard = 1): "
|
||||||
|
|
||||||
#: pkg/settings/errors.go:29
|
#: pkg/settings/errors.go:29
|
||||||
msgid "aborting due to user"
|
msgid "aborting due to user"
|
||||||
msgstr "avbryter på grund av användare"
|
msgstr "avbryter på grund av användare"
|
||||||
@ -537,11 +537,11 @@ msgstr "kunde inte hitta alla paket som krävs"
|
|||||||
msgid "could not find any package archives listed in %s"
|
msgid "could not find any package archives listed in %s"
|
||||||
msgstr "kunde inte hitta några paketarkiv listade i %s"
|
msgstr "kunde inte hitta några paketarkiv listade i %s"
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:50 pkg/upgrade/service.go:286
|
#: pkg/sync/build/errors.go:50 pkg/upgrade/service.go:287
|
||||||
msgid "dependency"
|
msgid "dependency"
|
||||||
msgstr "beroende"
|
msgstr "beroende"
|
||||||
|
|
||||||
#: pkg/vcs/vcs.go:100 pkg/vcs/vcs.go:96
|
#: pkg/vcs/vcs.go:96 pkg/vcs/vcs.go:100
|
||||||
msgid "devel check for package failed: '%s' encountered an error"
|
msgid "devel check for package failed: '%s' encountered an error"
|
||||||
msgstr "Utvecklings koll för paket misslyckades '%s' stötte på ett fel"
|
msgstr "Utvecklings koll för paket misslyckades '%s' stötte på ett fel"
|
||||||
|
|
||||||
@ -650,10 +650,6 @@ msgstr "ogiltig centralkatalog"
|
|||||||
msgid "invalid value: %d is not between %d and %d"
|
msgid "invalid value: %d is not between %d and %d"
|
||||||
msgstr "ogiltigt värde: %d är inte mellan %d och %d"
|
msgstr "ogiltigt värde: %d är inte mellan %d och %d"
|
||||||
|
|
||||||
#: pkg/text/input.go:48
|
|
||||||
msgid "no"
|
|
||||||
msgstr "nej"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:110
|
#: pkg/sync/srcinfo/pgp/keys.go:110
|
||||||
msgid "no keys to import"
|
msgid "no keys to import"
|
||||||
msgstr "inga nycklar att importera"
|
msgstr "inga nycklar att importera"
|
||||||
@ -666,6 +662,10 @@ msgstr "ingen fråga utfördes"
|
|||||||
msgid "no target directories specified"
|
msgid "no target directories specified"
|
||||||
msgstr "inga målkataloger specificerade"
|
msgstr "inga målkataloger specificerade"
|
||||||
|
|
||||||
|
#: pkg/text/input.go:48
|
||||||
|
msgid "no"
|
||||||
|
msgstr "nej"
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:242
|
#: pkg/sync/build/installer.go:242
|
||||||
msgid "nothing to install for %s"
|
msgid "nothing to install for %s"
|
||||||
msgstr "inget att installera för %s"
|
msgstr "inget att installera för %s"
|
||||||
@ -678,12 +678,6 @@ msgstr "bara en operation går att utföra åt gången"
|
|||||||
msgid "only one target is allowed"
|
msgid "only one target is allowed"
|
||||||
msgstr "endast ett mål är tillåtet"
|
msgstr "endast ett mål är tillåtet"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:291
|
|
||||||
msgid "package"
|
|
||||||
msgid_plural "packages"
|
|
||||||
msgstr[0] "paket"
|
|
||||||
msgstr[1] "paket"
|
|
||||||
|
|
||||||
#: print.go:187
|
#: print.go:187
|
||||||
msgid "package '%s' was not found"
|
msgid "package '%s' was not found"
|
||||||
msgstr "paketet '%s' kunde inte hittas"
|
msgstr "paketet '%s' kunde inte hittas"
|
||||||
@ -696,6 +690,12 @@ msgstr "paketet hittades inte i AUR"
|
|||||||
msgid "package not found in repos"
|
msgid "package not found in repos"
|
||||||
msgstr "paketet hittades inte i centralkatalogerna"
|
msgstr "paketet hittades inte i centralkatalogerna"
|
||||||
|
|
||||||
|
#: pkg/upgrade/service.go:292
|
||||||
|
msgid "package"
|
||||||
|
msgid_plural "packages"
|
||||||
|
msgstr[0] "paket"
|
||||||
|
msgstr[1] "paket"
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:100
|
#: pkg/sync/srcinfo/pgp/keys.go:100
|
||||||
msgid "problem importing keys"
|
msgid "problem importing keys"
|
||||||
msgstr "ett problem uppstod vid nyckelimporten"
|
msgstr "ett problem uppstod vid nyckelimporten"
|
||||||
|
4
po/tr.po
4
po/tr.po
@ -438,8 +438,8 @@ msgid "The following packages are not compatible with your architecture:"
|
|||||||
msgstr "Aşağıdaki paketler sistem mimarin ile uyumlu değil:"
|
msgstr "Aşağıdaki paketler sistem mimarin ile uyumlu değil:"
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:179 pkg/dep/dep_graph.go:726
|
#: pkg/db/ialpm/alpm.go:179 pkg/dep/dep_graph.go:726
|
||||||
msgid "There are %[1]d providers available for %[2]s:"
|
msgid "There are %d providers available for %s:"
|
||||||
msgstr "%[2]s için %[1]d sağlayıcı bulunuyor:"
|
msgstr "%s için %d sağlayıcı bulunuyor:"
|
||||||
|
|
||||||
#: pkg/settings/exe/cmd_builder.go:258
|
#: pkg/settings/exe/cmd_builder.go:258
|
||||||
msgid "There may be another Pacman instance running. Waiting..."
|
msgid "There may be another Pacman instance running. Waiting..."
|
||||||
|
308
po/uk.po
308
po/uk.po
@ -1,38 +1,22 @@
|
|||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# Volodymyr Markiv <vov4uk21@gmail.com>, 2021
|
# Volodymyr Markiv <vov4uk21@gmail.com>, 2021
|
||||||
# Igor Lukyanov, 2023
|
# Andrii Lytvyn, 2022
|
||||||
# Andrii Lytvyn, 2023
|
|
||||||
# null null, 2023
|
|
||||||
# Andrii Yermak, 2024
|
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Last-Translator: Andrii Yermak, 2024\n"
|
"Last-Translator: Andrii Lytvyn, 2022\n"
|
||||||
"Language-Team: Ukrainian (https://app.transifex.com/yay-1/teams/123732/uk/)\n"
|
"Language-Team: Ukrainian (https://www.transifex.com/yay-1/teams/123732/uk/)\n"
|
||||||
|
"Language: uk\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Language: uk\n"
|
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != "
|
||||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
|
"11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % "
|
||||||
|
"100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || "
|
||||||
|
"(n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
|
||||||
"X-Generator: xgotext\n"
|
"X-Generator: xgotext\n"
|
||||||
|
|
||||||
#: clean.go:83
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
"Build directory:"
|
|
||||||
msgstr ""
|
|
||||||
"\n"
|
|
||||||
"Каталог збірки:"
|
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:201 pkg/dep/dep_graph.go:740
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
"Enter a number (default=1): "
|
|
||||||
msgstr ""
|
|
||||||
"\n"
|
|
||||||
"Введіть число (типово=1):"
|
|
||||||
|
|
||||||
#: pkg/menus/menu.go:32
|
#: pkg/menus/menu.go:32
|
||||||
msgid " (Build Files Exist)"
|
msgid " (Build Files Exist)"
|
||||||
msgstr "(Файли Збірки Існують)"
|
msgstr "(Файли Збірки Існують)"
|
||||||
@ -70,13 +54,14 @@ msgstr "%s вже існує."
|
|||||||
msgid "%s is up to date -- skipping"
|
msgid "%s is up to date -- skipping"
|
||||||
msgstr "%s є актуальним -- пропуск"
|
msgstr "%s є актуальним -- пропуск"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:291
|
#: pkg/upgrade/service.go:292
|
||||||
|
#, fuzzy
|
||||||
msgid "%s to upgrade/install."
|
msgid "%s to upgrade/install."
|
||||||
msgstr "%s для оновлення/встановлення."
|
msgstr "Пакунки для оновлення."
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:285
|
#: pkg/upgrade/service.go:286
|
||||||
msgid "%s will also be installed for this operation."
|
msgid "%s will also be installed for this operation."
|
||||||
msgstr "%s також буде встановлено для цієї операції."
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:124
|
#: pkg/sync/srcinfo/pgp/keys.go:124
|
||||||
msgid "%s, required by: %s"
|
msgid "%s, required by: %s"
|
||||||
@ -96,7 +81,7 @@ msgstr "%s: не вдалося застосувати ціль з параме
|
|||||||
|
|
||||||
#: pkg/upgrade/sources.go:57
|
#: pkg/upgrade/sources.go:57
|
||||||
msgid "%s: ignoring package upgrade (%s => %s)"
|
msgid "%s: ignoring package upgrade (%s => %s)"
|
||||||
msgstr "%s: ігнорування оновлення пакунка ( %s => %s)"
|
msgstr "%s: ігнорування оновлення пакета ( %s => %s)"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:46
|
#: pkg/query/aur_warnings.go:46
|
||||||
msgid "%s: local (%s) is newer than AUR (%s)"
|
msgid "%s: local (%s) is newer than AUR (%s)"
|
||||||
@ -104,11 +89,8 @@ msgstr "%s: встановлений пакунок (%s) новіший ніж
|
|||||||
|
|
||||||
#: vote.go:51
|
#: vote.go:51
|
||||||
msgid ""
|
msgid ""
|
||||||
"%s: please set AUR_USERNAME and AUR_PASSWORD environment variables for "
|
"%s: please set AUR_USERNAME and AUR_PASSWORD environment variables for voting"
|
||||||
"voting"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"%s: будь ласка встановіть змінні середовища AUR_USERNAME та AUR_PASSWORD для"
|
|
||||||
" цього голосування"
|
|
||||||
|
|
||||||
#: pkg/download/unified.go:192
|
#: pkg/download/unified.go:192
|
||||||
msgid "(%d/%d) Downloaded PKGBUILD from ABS: %s"
|
msgid "(%d/%d) Downloaded PKGBUILD from ABS: %s"
|
||||||
@ -119,18 +101,19 @@ msgid "(%d/%d) Downloaded PKGBUILD: %s"
|
|||||||
msgstr "(%d/%d) Завантажено PKGBUILD: %s"
|
msgstr "(%d/%d) Завантажено PKGBUILD: %s"
|
||||||
|
|
||||||
#: pkg/download/aur.go:82
|
#: pkg/download/aur.go:82
|
||||||
|
#, fuzzy
|
||||||
msgid "(%d/%d) Failed to download PKGBUILD: %s"
|
msgid "(%d/%d) Failed to download PKGBUILD: %s"
|
||||||
msgstr "(%d/%d) Не вдалося завантажити PKGBUILD: %s"
|
msgstr "(%d/%d) Завантажено PKGBUILD: %s"
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/service.go:109
|
#: pkg/sync/srcinfo/service.go:109
|
||||||
msgid "(%d/%d) Parsing SRCINFO: %s"
|
msgid "(%d/%d) Parsing SRCINFO: %s"
|
||||||
msgstr "(%d/%d) Аналіз SRCINFO: %s"
|
msgstr "(%d/%d) Аналіз SRCINFO: %s"
|
||||||
|
|
||||||
#: pkg/query/types.go:103 pkg/query/types.go:72
|
#: pkg/query/types.go:72 pkg/query/types.go:103
|
||||||
msgid "(Installed)"
|
msgid "(Installed)"
|
||||||
msgstr "(Встановлено)"
|
msgstr "(Встановлено)"
|
||||||
|
|
||||||
#: pkg/query/types.go:101 pkg/query/types.go:70
|
#: pkg/query/types.go:70 pkg/query/types.go:101
|
||||||
msgid "(Installed: %s)"
|
msgid "(Installed: %s)"
|
||||||
msgstr "(Встановлено: %s)"
|
msgstr "(Встановлено: %s)"
|
||||||
|
|
||||||
@ -142,33 +125,35 @@ msgstr "(Осиротілий)"
|
|||||||
msgid "(Out-of-date: %s)"
|
msgid "(Out-of-date: %s)"
|
||||||
msgstr "(Застарілий: %s)"
|
msgstr "(Застарілий: %s)"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:75
|
|
||||||
msgid "AUR"
|
|
||||||
msgstr "AUR"
|
|
||||||
|
|
||||||
#: print.go:44
|
#: print.go:44
|
||||||
msgid "AUR URL"
|
msgid "AUR URL"
|
||||||
msgstr "AUR URL"
|
msgstr "AUR URL"
|
||||||
|
|
||||||
|
#: pkg/dep/dep_graph.go:75
|
||||||
|
#, fuzzy
|
||||||
|
msgid "AUR"
|
||||||
|
msgstr "URL"
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:58
|
#: pkg/menus/edit_menu.go:58
|
||||||
msgid "Add %s or %s to your environment variables"
|
msgid "Add %s or %s to your environment variables"
|
||||||
msgstr "Додайте %s або %s до змінних середовища"
|
msgstr "Додайте %s або %s до змінних середовища"
|
||||||
|
|
||||||
#: main.go:60
|
#: main.go:60
|
||||||
msgid "Avoid running yay as root/sudo."
|
msgid "Avoid running yay as root/sudo."
|
||||||
msgstr "Не запускайте yay від імені root/sudo."
|
msgstr "Не запускайте yay як root/sudo."
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:63
|
#: pkg/dep/dep_graph.go:63
|
||||||
|
#, fuzzy
|
||||||
msgid "Check Dependency"
|
msgid "Check Dependency"
|
||||||
msgstr "Перевірити залежності"
|
msgstr "Залежності Перевірки"
|
||||||
|
|
||||||
#: print.go:41
|
#: print.go:41
|
||||||
msgid "Check Deps"
|
msgid "Check Deps"
|
||||||
msgstr "Залежності Перевірки"
|
msgstr "Залежності Перевірки"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:89
|
#: pkg/upgrade/service.go:90
|
||||||
msgid "Checking development packages..."
|
msgid "Checking development packages..."
|
||||||
msgstr "Перевірка пакунків розробки..."
|
msgstr "Перевірка пакетів розробки..."
|
||||||
|
|
||||||
#: pkg/sync/workdir/clean.go:45
|
#: pkg/sync/workdir/clean.go:45
|
||||||
msgid "Cleaning (%d/%d): %s"
|
msgid "Cleaning (%d/%d): %s"
|
||||||
@ -183,8 +168,9 @@ msgid "Deleting (%d/%d): %s"
|
|||||||
msgstr "Видалення (%d/%d): %s"
|
msgstr "Видалення (%d/%d): %s"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:61
|
#: pkg/dep/dep_graph.go:61
|
||||||
|
#, fuzzy
|
||||||
msgid "Dependency"
|
msgid "Dependency"
|
||||||
msgstr "Залежність"
|
msgstr "Залежить Від"
|
||||||
|
|
||||||
#: print.go:38
|
#: print.go:38
|
||||||
msgid "Depends On"
|
msgid "Depends On"
|
||||||
@ -200,7 +186,7 @@ msgstr "Показати зміни?"
|
|||||||
|
|
||||||
#: pkg/settings/migrations.go:25
|
#: pkg/settings/migrations.go:25
|
||||||
msgid "Disable 'provides' setting by default"
|
msgid "Disable 'provides' setting by default"
|
||||||
msgstr "Вимкнути параметр 'provides' за замовчуванням"
|
msgstr ""
|
||||||
|
|
||||||
#: clean.go:78
|
#: clean.go:78
|
||||||
msgid "Do you want to remove ALL AUR packages from cache?"
|
msgid "Do you want to remove ALL AUR packages from cache?"
|
||||||
@ -222,43 +208,43 @@ msgstr "Редагувати PKGBUILD за допомогою?"
|
|||||||
msgid "Error during AUR search: %s\n"
|
msgid "Error during AUR search: %s\n"
|
||||||
msgstr "Помилка під час пошуку у AUR: %s\n"
|
msgstr "Помилка під час пошуку у AUR: %s\n"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:295
|
#: pkg/upgrade/service.go:296
|
||||||
msgid "Excluding packages may cause partial upgrades and break systems"
|
msgid "Excluding packages may cause partial upgrades and break systems"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Виключення пакетів може привести до часткового оновлення та зламати систему "
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:60
|
#: pkg/dep/dep_graph.go:60
|
||||||
msgid "Explicit"
|
msgid "Explicit"
|
||||||
msgstr "Явно"
|
msgstr ""
|
||||||
|
|
||||||
#: print.go:91
|
#: print.go:91
|
||||||
msgid "Explicitly installed packages: %s"
|
msgid "Explicitly installed packages: %s"
|
||||||
msgstr "Явно встановлені пакунки: %s"
|
msgstr "Явно встановлені пакунки: %s"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:437 pkg/dep/dep_graph.go:535
|
#: pkg/dep/dep_graph.go:437 pkg/dep/dep_graph.go:535
|
||||||
|
#, fuzzy
|
||||||
msgid "Failed to find AUR package for"
|
msgid "Failed to find AUR package for"
|
||||||
msgstr "Не вдалося знайти AUR пакет для"
|
msgstr "Пакунки з AUR, що позначені як застарілі:"
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:120
|
#: pkg/sync/build/installer.go:120
|
||||||
msgid "Failed to install layer, rolling up to next layer."
|
msgid "Failed to install layer, rolling up to next layer."
|
||||||
msgstr "Не вдалося встановити шар, перекочуємось до наступного шару."
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:16
|
#: pkg/sync/build/errors.go:16
|
||||||
msgid ""
|
msgid ""
|
||||||
"Failed to install the following packages. Manual intervention is required:"
|
"Failed to install the following packages. Manual intervention is required:"
|
||||||
msgstr "Не вдалося встановити наступні пакети. Необхідне ручне втручання:"
|
msgstr ""
|
||||||
|
|
||||||
#: print.go:45
|
#: print.go:45
|
||||||
msgid "First Submitted"
|
msgid "First Submitted"
|
||||||
msgstr "Вперше Завантажений"
|
msgstr "Вперше Завантажений"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:83
|
#: pkg/query/aur_warnings.go:79
|
||||||
msgid "Flagged Out Of Date AUR Packages:"
|
msgid "Flagged Out Of Date AUR Packages:"
|
||||||
msgstr "Пакунки з AUR, що позначені як застарілі:"
|
msgstr "Пакунки з AUR, що позначені як застарілі:"
|
||||||
|
|
||||||
#: print.go:90
|
#: print.go:90
|
||||||
msgid "Foreign installed packages: %s"
|
msgid "Foreign installed packages: %s"
|
||||||
msgstr "Сторонні встановлені пакунки: %s"
|
msgstr "Сторонні встановлені пакети: %s"
|
||||||
|
|
||||||
#: pkg/vcs/vcs.go:144
|
#: pkg/vcs/vcs.go:144
|
||||||
msgid "Found git repo: %s"
|
msgid "Found git repo: %s"
|
||||||
@ -294,39 +280,42 @@ msgstr "Ліцензії"
|
|||||||
|
|
||||||
#: pkg/dep/dep_graph.go:77
|
#: pkg/dep/dep_graph.go:77
|
||||||
msgid "Local"
|
msgid "Local"
|
||||||
msgstr "Локальний"
|
msgstr ""
|
||||||
|
|
||||||
#: print.go:48
|
#: print.go:48
|
||||||
msgid "Maintainer"
|
msgid "Maintainer"
|
||||||
msgstr "Супроводжувач"
|
msgstr "Супроводжувач"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:62
|
#: pkg/dep/dep_graph.go:62
|
||||||
|
#, fuzzy
|
||||||
msgid "Make Dependency"
|
msgid "Make Dependency"
|
||||||
msgstr "Зібрати залежність"
|
msgstr "Залежності Збірки"
|
||||||
|
|
||||||
#: print.go:40
|
#: print.go:40
|
||||||
msgid "Make Deps"
|
msgid "Make Deps"
|
||||||
msgstr "Залежності Збірки"
|
msgstr "Залежності Збірки"
|
||||||
|
|
||||||
|
#: pkg/query/aur_warnings.go:71
|
||||||
|
msgid "Missing AUR Debug Packages:"
|
||||||
|
msgstr "Відсутні пакети налагодження AUR:"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:79
|
#: pkg/dep/dep_graph.go:79
|
||||||
msgid "Missing"
|
msgid "Missing"
|
||||||
msgstr "Нестачає"
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:75
|
|
||||||
msgid "Missing AUR Debug Packages:"
|
|
||||||
msgstr "Відсутні налагоджувальні пакунки з AUR:"
|
|
||||||
|
|
||||||
#: print.go:31
|
#: print.go:31
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Ім'я"
|
msgstr "Ім'я"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:442 pkg/dep/dep_graph.go:548
|
#: pkg/dep/dep_graph.go:442 pkg/dep/dep_graph.go:548
|
||||||
|
#, fuzzy
|
||||||
msgid "No AUR package found for"
|
msgid "No AUR package found for"
|
||||||
msgstr "Не знайдено AUR пакету для"
|
msgstr "пакунок не знайдено в репозиторіях"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:182
|
#: pkg/dep/dep_graph.go:182
|
||||||
|
#, fuzzy
|
||||||
msgid "No package found for"
|
msgid "No package found for"
|
||||||
msgstr "Пакунок не знайдено для"
|
msgstr "пакунок не знайдено в репозиторіях"
|
||||||
|
|
||||||
#: print.go:225
|
#: print.go:225
|
||||||
msgid "None"
|
msgid "None"
|
||||||
@ -336,9 +325,10 @@ msgstr "Ні"
|
|||||||
msgid "Optional Deps"
|
msgid "Optional Deps"
|
||||||
msgstr "Необов'язкові Залежності"
|
msgstr "Необов'язкові Залежності"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:79
|
#: pkg/query/aur_warnings.go:75
|
||||||
|
#, fuzzy
|
||||||
msgid "Orphan (unmaintained) AUR Packages:"
|
msgid "Orphan (unmaintained) AUR Packages:"
|
||||||
msgstr "Сирі (що не супроводжуються) AUR Пакети:"
|
msgstr "Осиротілі пакунки AUR:"
|
||||||
|
|
||||||
#: print.go:53 print.go:55
|
#: print.go:53 print.go:55
|
||||||
msgid "Out-of-date"
|
msgid "Out-of-date"
|
||||||
@ -349,37 +339,40 @@ msgid "PGP keys need importing:"
|
|||||||
msgstr "Необхідно імпортувати ключі PGP:"
|
msgstr "Необхідно імпортувати ключі PGP:"
|
||||||
|
|
||||||
#: pkg/sync/workdir/preparer.go:252
|
#: pkg/sync/workdir/preparer.go:252
|
||||||
|
#, fuzzy
|
||||||
msgid "PKGBUILD up to date, skipping download: %s"
|
msgid "PKGBUILD up to date, skipping download: %s"
|
||||||
msgstr "PKGBUILD оновлений, пропускаємо завантаження: %s"
|
msgstr "PKGBUILD актуальний, пропуск (%d/%d): %s"
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:130
|
#: pkg/menus/edit_menu.go:130
|
||||||
msgid "PKGBUILDs to edit?"
|
msgid "PKGBUILDs to edit?"
|
||||||
msgstr "Редагувати PKGBUILDs?"
|
msgstr "Редагувати PKGBUILDs?"
|
||||||
|
|
||||||
#: print.go:61
|
|
||||||
msgid "Package Base"
|
|
||||||
msgstr "Група Пакунків"
|
|
||||||
|
|
||||||
#: print.go:60
|
#: print.go:60
|
||||||
msgid "Package Base ID"
|
msgid "Package Base ID"
|
||||||
msgstr "ID Групи Пакунків"
|
msgstr "ID Групи Пакунків"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:71
|
#: print.go:61
|
||||||
|
msgid "Package Base"
|
||||||
|
msgstr "Група Пакунків"
|
||||||
|
|
||||||
|
#: pkg/query/aur_warnings.go:67
|
||||||
|
#, fuzzy
|
||||||
msgid "Packages not in AUR:"
|
msgid "Packages not in AUR:"
|
||||||
msgstr "Пакети не в AUR:"
|
msgstr "пакунок не знайдено в AUR"
|
||||||
|
|
||||||
#: pkg/menus/clean_menu.go:54
|
#: pkg/menus/clean_menu.go:54
|
||||||
msgid "Packages to cleanBuild?"
|
msgid "Packages to cleanBuild?"
|
||||||
msgstr "Пакунки для чистої збірки?"
|
msgstr "Пакети для чистої збірки?"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:202
|
#: pkg/dep/dep_graph.go:202
|
||||||
|
#, fuzzy
|
||||||
msgid "Packages to exclude"
|
msgid "Packages to exclude"
|
||||||
msgstr "Пакети для виключення"
|
msgstr "Пакунки для оновлення."
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:294
|
#: pkg/upgrade/service.go:295
|
||||||
msgid "Packages to exclude: (eg: \"1 2 3\", \"1-3\", \"^4\" or repo name)"
|
msgid "Packages to exclude: (eg: \"1 2 3\", \"1-3\", \"^4\" or repo name)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Пакунки, які потрібно виключити: (наприклад, \"1 2 3\", \"1-3\", \"^4\" або "
|
"Пакети, які потрібно виключити: (наприклад, \"1 2 3\", \"1-3\", \"^4\" або "
|
||||||
"назва репозиторію)"
|
"назва репозиторію)"
|
||||||
|
|
||||||
#: cmd.go:392
|
#: cmd.go:392
|
||||||
@ -404,25 +397,25 @@ msgstr "Видалити залежності збірки після встан
|
|||||||
|
|
||||||
#: print.go:43
|
#: print.go:43
|
||||||
msgid "Replaces"
|
msgid "Replaces"
|
||||||
msgstr "Замінює"
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:191 print.go:30
|
|
||||||
msgid "Repository"
|
|
||||||
msgstr "Репозиторій"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:730
|
#: pkg/dep/dep_graph.go:730
|
||||||
msgid "Repository AUR"
|
msgid "Repository AUR"
|
||||||
msgstr "Репозиторій AUR"
|
msgstr "Репозиторій AUR"
|
||||||
|
|
||||||
|
#: print.go:30 pkg/db/ialpm/alpm.go:191
|
||||||
|
msgid "Repository"
|
||||||
|
msgstr "Репозиторій"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:78
|
#: pkg/dep/dep_graph.go:78
|
||||||
msgid "SRCINFO"
|
msgid "SRCINFO"
|
||||||
msgstr "SRCINFO"
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:71
|
#: pkg/upgrade/service.go:72
|
||||||
msgid "Searching AUR for updates..."
|
msgid "Searching AUR for updates..."
|
||||||
msgstr "Пошук оновлень у AUR..."
|
msgstr "Пошук оновлень у AUR..."
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:159
|
#: pkg/upgrade/service.go:160
|
||||||
msgid "Searching databases for updates..."
|
msgid "Searching databases for updates..."
|
||||||
msgstr "Пошук оновлень у базах даних..."
|
msgstr "Пошук оновлень у базах даних..."
|
||||||
|
|
||||||
@ -444,19 +437,19 @@ msgstr "URL знімка"
|
|||||||
|
|
||||||
#: pkg/dep/dep_graph.go:76
|
#: pkg/dep/dep_graph.go:76
|
||||||
msgid "Sync"
|
msgid "Sync"
|
||||||
msgstr "Синхронізувати"
|
msgstr ""
|
||||||
|
|
||||||
#: print.go:100
|
#: print.go:100
|
||||||
msgid "Ten biggest packages:"
|
msgid "Ten biggest packages:"
|
||||||
msgstr "Десять найбільших пакунків:"
|
msgstr "Десять найбільших пакетів:"
|
||||||
|
|
||||||
#: pkg/sync/sync.go:124
|
#: pkg/sync/sync.go:124
|
||||||
msgid "The following packages are not compatible with your architecture:"
|
msgid "The following packages are not compatible with your architecture:"
|
||||||
msgstr "Наступні пакунки не сумісні з вашою архітектурою:"
|
msgstr "Наступні пакети не сумісні з вашою архітектурою:"
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:179 pkg/dep/dep_graph.go:726
|
#: pkg/db/ialpm/alpm.go:179 pkg/dep/dep_graph.go:726
|
||||||
msgid "There are %[1]d providers available for %[2]s:"
|
msgid "There are %d providers available for %s:"
|
||||||
msgstr "Існує %[1]d постачальників для %[2]s:"
|
msgstr "Існує %d постачальників для %s:"
|
||||||
|
|
||||||
#: pkg/settings/exe/cmd_builder.go:258
|
#: pkg/settings/exe/cmd_builder.go:258
|
||||||
msgid "There may be another Pacman instance running. Waiting..."
|
msgid "There may be another Pacman instance running. Waiting..."
|
||||||
@ -464,11 +457,11 @@ msgstr "Можливо, запущено інший екземпляр Pacman.
|
|||||||
|
|
||||||
#: print.go:92
|
#: print.go:92
|
||||||
msgid "Total Size occupied by packages: %s"
|
msgid "Total Size occupied by packages: %s"
|
||||||
msgstr "Загальний розмір, зайнятий пакунками: %s"
|
msgstr "Загальний розмір, зайнятий пакетами: %s"
|
||||||
|
|
||||||
#: print.go:89
|
#: print.go:89
|
||||||
msgid "Total installed packages: %s"
|
msgid "Total installed packages: %s"
|
||||||
msgstr "Загальна кількість встановлених пакунків: %s"
|
msgstr "Загальна кількість встановлених пакетів: %s"
|
||||||
|
|
||||||
#: pkg/sync/sync.go:132
|
#: pkg/sync/sync.go:132
|
||||||
msgid "Try to build them anyway?"
|
msgid "Try to build them anyway?"
|
||||||
@ -484,15 +477,16 @@ msgstr "Неможливо очистити:"
|
|||||||
|
|
||||||
#: get.go:42 get.go:74
|
#: get.go:42 get.go:74
|
||||||
msgid "Unable to find the following packages:"
|
msgid "Unable to find the following packages:"
|
||||||
msgstr "Не вдалося знайти наступні пакунки:"
|
msgstr "Не вдалося знайти такі пакети:"
|
||||||
|
|
||||||
#: vote.go:20
|
#: vote.go:20
|
||||||
msgid "Unable to handle package vote for: %s. err: %s"
|
msgid "Unable to handle package vote for: %s. err: %s"
|
||||||
msgstr "Неможливо обробити голос за пакет: %s. помилка: %s"
|
msgstr ""
|
||||||
|
|
||||||
#: clean.go:170
|
#: clean.go:170
|
||||||
|
#, fuzzy
|
||||||
msgid "Unable to remove %s: %s"
|
msgid "Unable to remove %s: %s"
|
||||||
msgstr "Неможливо видалити %s: %s"
|
msgstr "не вдалося проаналізувати %s: %s"
|
||||||
|
|
||||||
#: print.go:32
|
#: print.go:32
|
||||||
msgid "Version"
|
msgid "Version"
|
||||||
@ -510,17 +504,33 @@ msgstr "Версія Yay v%s"
|
|||||||
msgid "[N]one"
|
msgid "[N]one"
|
||||||
msgstr "[N]Ні"
|
msgstr "[N]Ні"
|
||||||
|
|
||||||
|
#: clean.go:83
|
||||||
|
msgid ""
|
||||||
|
"\n"
|
||||||
|
"Build directory:"
|
||||||
|
msgstr ""
|
||||||
|
"\n"
|
||||||
|
"Каталог збірки:"
|
||||||
|
|
||||||
|
#: pkg/db/ialpm/alpm.go:201 pkg/dep/dep_graph.go:740
|
||||||
|
msgid ""
|
||||||
|
"\n"
|
||||||
|
"Enter a number (default=1): "
|
||||||
|
msgstr ""
|
||||||
|
"\n"
|
||||||
|
"Введіть число (типово=1):"
|
||||||
|
|
||||||
#: pkg/settings/errors.go:29
|
#: pkg/settings/errors.go:29
|
||||||
msgid "aborting due to user"
|
msgid "aborting due to user"
|
||||||
msgstr "зупинка через користувача"
|
msgstr "зупинка через користувача"
|
||||||
|
|
||||||
#: pkg/settings/parser/parser.go:608
|
#: pkg/settings/parser/parser.go:608
|
||||||
msgid "argument '-' specified without input on stdin"
|
msgid "argument '-' specified without input on stdin"
|
||||||
msgstr "аргумент '-' вказаний без вводу у stdin"
|
msgstr ""
|
||||||
|
|
||||||
#: local_install.go:26
|
#: local_install.go:26
|
||||||
msgid "cannot find PKGBUILD and .SRCINFO in directory"
|
msgid "cannot find PKGBUILD and .SRCINFO in directory"
|
||||||
msgstr "не вдалося знайти PKGBUILD та .SRCINFO в директорії"
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/sync/build/pkg_archive.go:148
|
#: pkg/sync/build/pkg_archive.go:148
|
||||||
msgid "cannot find package name: %v"
|
msgid "cannot find package name: %v"
|
||||||
@ -531,18 +541,20 @@ msgid "could not find PKGDEST for: %s"
|
|||||||
msgstr "не вдалося знайти PKGDEST для: %s"
|
msgstr "не вдалося знайти PKGDEST для: %s"
|
||||||
|
|
||||||
#: errors.go:9
|
#: errors.go:9
|
||||||
|
#, fuzzy
|
||||||
msgid "could not find all required packages"
|
msgid "could not find all required packages"
|
||||||
msgstr "не знайдені всі необхідні пакунки"
|
msgstr "Не вдалося знайти всі необхідні пакунки:"
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:61
|
#: pkg/sync/build/errors.go:61
|
||||||
msgid "could not find any package archives listed in %s"
|
msgid "could not find any package archives listed in %s"
|
||||||
msgstr "не знайдено жодного пакунку з перелічених у %s"
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:50 pkg/upgrade/service.go:286
|
#: pkg/sync/build/errors.go:50 pkg/upgrade/service.go:287
|
||||||
|
#, fuzzy
|
||||||
msgid "dependency"
|
msgid "dependency"
|
||||||
msgstr "залежність"
|
msgstr "Залежить Від"
|
||||||
|
|
||||||
#: pkg/vcs/vcs.go:100 pkg/vcs/vcs.go:96
|
#: pkg/vcs/vcs.go:96 pkg/vcs/vcs.go:100
|
||||||
msgid "devel check for package failed: '%s' encountered an error"
|
msgid "devel check for package failed: '%s' encountered an error"
|
||||||
msgstr "розробницька перевірка пакунку не вдалася: '%s' сталася помилка"
|
msgstr "розробницька перевірка пакунку не вдалася: '%s' сталася помилка"
|
||||||
|
|
||||||
@ -560,11 +572,12 @@ msgstr "помилка отримання %s: %s"
|
|||||||
|
|
||||||
#: pkg/sync/build/errors.go:9
|
#: pkg/sync/build/errors.go:9
|
||||||
msgid "error installing repo packages"
|
msgid "error installing repo packages"
|
||||||
msgstr "помилка встановлення пакунку з репозиторіїв"
|
msgstr "помалка встановлення пакунку з репозиторіїв"
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:266 pkg/sync/build/installer.go:270
|
#: pkg/sync/build/installer.go:266 pkg/sync/build/installer.go:270
|
||||||
|
#, fuzzy
|
||||||
msgid "error installing:"
|
msgid "error installing:"
|
||||||
msgstr "помилка встановлення:"
|
msgstr "помалка встановлення пакунку з репозиторіїв"
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:233 pkg/sync/build/installer.go:237
|
#: pkg/sync/build/installer.go:233 pkg/sync/build/installer.go:237
|
||||||
msgid "error making: %s"
|
msgid "error making: %s"
|
||||||
@ -587,12 +600,13 @@ msgid "error resetting %s: %s"
|
|||||||
msgstr "помилка скидання %s: %s"
|
msgstr "помилка скидання %s: %s"
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:53
|
#: pkg/sync/build/errors.go:53
|
||||||
|
#, fuzzy
|
||||||
msgid "error updating package install reason to %s"
|
msgid "error updating package install reason to %s"
|
||||||
msgstr "помилка оновлення причини встановлення пакунка для %s"
|
msgstr "помилка оновлення причини встановлення пакунка на 'явно встановлено'"
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:48
|
#: pkg/sync/build/errors.go:48
|
||||||
msgid "explicit"
|
msgid "explicit"
|
||||||
msgstr "явно"
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/settings/errors.go:23
|
#: pkg/settings/errors.go:23
|
||||||
msgid "failed to create directory '%s': %s"
|
msgid "failed to create directory '%s': %s"
|
||||||
@ -611,8 +625,9 @@ msgid "failed to parse %s: %s"
|
|||||||
msgstr "не вдалося проаналізувати %s: %s"
|
msgstr "не вдалося проаналізувати %s: %s"
|
||||||
|
|
||||||
#: local_install.go:77
|
#: local_install.go:77
|
||||||
|
#, fuzzy
|
||||||
msgid "failed to parse .SRCINFO"
|
msgid "failed to parse .SRCINFO"
|
||||||
msgstr "не вдалося проаналізувати .SRCINFO"
|
msgstr "не вдалося проаналізувати %s: %s"
|
||||||
|
|
||||||
#: pkg/settings/config.go:291
|
#: pkg/settings/config.go:291
|
||||||
msgid "failed to read config file '%s': %s"
|
msgid "failed to read config file '%s': %s"
|
||||||
@ -620,11 +635,12 @@ msgstr "не вдалося прочитати конфігураційний ф
|
|||||||
|
|
||||||
#: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73
|
#: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73
|
||||||
msgid "failed to retrieve aur Cache"
|
msgid "failed to retrieve aur Cache"
|
||||||
msgstr "не вдалося отримати кеш AUR"
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/upgrade/sources.go:27
|
#: pkg/upgrade/sources.go:27
|
||||||
|
#, fuzzy
|
||||||
msgid "ignoring package devel upgrade (no AUR info found):"
|
msgid "ignoring package devel upgrade (no AUR info found):"
|
||||||
msgstr "ігноруємо оновлення розробки пакунка (нема інформації в AUR):"
|
msgstr "%s: ігнорування оновлення пакета ( %s => %s)"
|
||||||
|
|
||||||
#: pkg/text/errors.go:8
|
#: pkg/text/errors.go:8
|
||||||
msgid "input too long"
|
msgid "input too long"
|
||||||
@ -651,10 +667,6 @@ msgstr "недійсний репозиторій"
|
|||||||
msgid "invalid value: %d is not between %d and %d"
|
msgid "invalid value: %d is not between %d and %d"
|
||||||
msgstr "некоректне значення: %d не знаходиться між %d та %d"
|
msgstr "некоректне значення: %d не знаходиться між %d та %d"
|
||||||
|
|
||||||
#: pkg/text/input.go:48
|
|
||||||
msgid "no"
|
|
||||||
msgstr "ні"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:110
|
#: pkg/sync/srcinfo/pgp/keys.go:110
|
||||||
msgid "no keys to import"
|
msgid "no keys to import"
|
||||||
msgstr "нема ключів для імпорту"
|
msgstr "нема ключів для імпорту"
|
||||||
@ -665,11 +677,15 @@ msgstr "запит не виконано"
|
|||||||
|
|
||||||
#: local_install.go:66
|
#: local_install.go:66
|
||||||
msgid "no target directories specified"
|
msgid "no target directories specified"
|
||||||
msgstr "цільова директорія не вказана"
|
msgstr ""
|
||||||
|
|
||||||
|
#: pkg/text/input.go:48
|
||||||
|
msgid "no"
|
||||||
|
msgstr "ні"
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:242
|
#: pkg/sync/build/installer.go:242
|
||||||
msgid "nothing to install for %s"
|
msgid "nothing to install for %s"
|
||||||
msgstr "нема чого встановити для %s"
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/settings/parser/parser.go:164
|
#: pkg/settings/parser/parser.go:164
|
||||||
msgid "only one operation may be used at a time"
|
msgid "only one operation may be used at a time"
|
||||||
@ -677,15 +693,7 @@ msgstr "одночасно можна використовувати лише о
|
|||||||
|
|
||||||
#: pkg/cmd/graph/main.go:70
|
#: pkg/cmd/graph/main.go:70
|
||||||
msgid "only one target is allowed"
|
msgid "only one target is allowed"
|
||||||
msgstr "дозволена лише одна ціль"
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:291
|
|
||||||
msgid "package"
|
|
||||||
msgid_plural "packages"
|
|
||||||
msgstr[0] "пакунок"
|
|
||||||
msgstr[1] "пакунки"
|
|
||||||
msgstr[2] "пакунків"
|
|
||||||
msgstr[3] "пакунків"
|
|
||||||
|
|
||||||
#: print.go:187
|
#: print.go:187
|
||||||
msgid "package '%s' was not found"
|
msgid "package '%s' was not found"
|
||||||
@ -699,13 +707,22 @@ msgstr "пакунок не знайдено в AUR"
|
|||||||
msgid "package not found in repos"
|
msgid "package not found in repos"
|
||||||
msgstr "пакунок не знайдено в репозиторіях"
|
msgstr "пакунок не знайдено в репозиторіях"
|
||||||
|
|
||||||
|
#: pkg/upgrade/service.go:292
|
||||||
|
#, fuzzy
|
||||||
|
msgid "package"
|
||||||
|
msgid_plural "packages"
|
||||||
|
msgstr[0] "Група Пакунків"
|
||||||
|
msgstr[1] "Група Пакунків"
|
||||||
|
msgstr[2] "Група Пакунків"
|
||||||
|
msgstr[3] "Група Пакунків"
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:100
|
#: pkg/sync/srcinfo/pgp/keys.go:100
|
||||||
msgid "problem importing keys"
|
msgid "problem importing keys"
|
||||||
msgstr "проблема імпортування ключів"
|
msgstr "проблема імпортування ключів"
|
||||||
|
|
||||||
#: clean.go:105
|
#: clean.go:105
|
||||||
msgid "removing AUR packages from cache..."
|
msgid "removing AUR packages from cache..."
|
||||||
msgstr "видалення пакунків AUR з кешу..."
|
msgstr "видалення пакетів AUR з кешу..."
|
||||||
|
|
||||||
#: clean.go:178 pkg/sync/workdir/clean.go:41
|
#: clean.go:178 pkg/sync/workdir/clean.go:41
|
||||||
msgid "removing untracked AUR files from cache..."
|
msgid "removing untracked AUR files from cache..."
|
||||||
@ -716,8 +733,9 @@ msgid "the PKGDEST for %s is listed by makepkg but does not exist: %s"
|
|||||||
msgstr "PKGDEST для %s перераховано makepkg, але не існує: %s"
|
msgstr "PKGDEST для %s перераховано makepkg, але не існує: %s"
|
||||||
|
|
||||||
#: pkg/sync/sync.go:45
|
#: pkg/sync/sync.go:45
|
||||||
|
#, fuzzy
|
||||||
msgid "there is nothing to do"
|
msgid "there is nothing to do"
|
||||||
msgstr "нема чого робити"
|
msgstr "тут нічого робити"
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:247
|
#: pkg/db/ialpm/alpm.go:247
|
||||||
msgid "unable to CreateHandle: %s"
|
msgid "unable to CreateHandle: %s"
|
||||||
@ -734,3 +752,43 @@ msgstr "невідома версія"
|
|||||||
#: pkg/text/input.go:47
|
#: pkg/text/input.go:47
|
||||||
msgid "yes"
|
msgid "yes"
|
||||||
msgstr "так"
|
msgstr "так"
|
||||||
|
|
||||||
|
#~ msgid " (Target"
|
||||||
|
#~ msgstr "(Ціль"
|
||||||
|
|
||||||
|
#~ msgid " (Wanted by: "
|
||||||
|
#~ msgstr "(Треба пакунку:"
|
||||||
|
|
||||||
|
#~ msgid "%s not satisfied, flushing install queue"
|
||||||
|
#~ msgstr "%s не задоволено, очищення черги встановлення"
|
||||||
|
|
||||||
|
#~ msgid "Checking for conflicts..."
|
||||||
|
#~ msgstr "Перевірка на наявність конфліктів..."
|
||||||
|
|
||||||
|
#~ msgid "Checking for inner conflicts..."
|
||||||
|
#~ msgstr "Перевірка на внутрішні конфлікти..."
|
||||||
|
|
||||||
|
#~ msgid "Conflicting packages will have to be confirmed manually"
|
||||||
|
#~ msgstr "Конфліктні пакети потрібно буде підтвердити вручну"
|
||||||
|
|
||||||
|
#~ msgid "Inner conflicts found:"
|
||||||
|
#~ msgstr "Виявлено внутрішні конфлікти:"
|
||||||
|
|
||||||
|
#~ msgid "Installing %s will remove:"
|
||||||
|
#~ msgstr "Встановлення %s видалить:"
|
||||||
|
|
||||||
|
#~ msgid "Missing AUR Packages:"
|
||||||
|
#~ msgstr "Відсутні пакунки з AUR:"
|
||||||
|
|
||||||
|
#~ msgid "Package conflicts found:"
|
||||||
|
#~ msgstr "Виявлено конфлікти пакунків:"
|
||||||
|
|
||||||
|
#~ msgid "Querying AUR..."
|
||||||
|
#~ msgstr "Запит AUR..."
|
||||||
|
|
||||||
|
#~ msgid "error updating package install reason to dependency"
|
||||||
|
#~ msgstr "помилка оновлення причини встановлення пакунка на 'залежність'"
|
||||||
|
|
||||||
|
#~ msgid "package conflicts can not be resolved with noconfirm, aborting"
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "конфлікти пакетів не можна вирішити за допомогою noconfirm, переривання"
|
||||||
|
151
po/zh_CN.po
151
po/zh_CN.po
@ -8,13 +8,10 @@
|
|||||||
# lakejason0 <sunliyuan200402@outlook.com>, 2023
|
# lakejason0 <sunliyuan200402@outlook.com>, 2023
|
||||||
# Alex Wang, 2023
|
# Alex Wang, 2023
|
||||||
# Xuekai Deng, 2024
|
# Xuekai Deng, 2024
|
||||||
# CloverGit, 2024
|
|
||||||
# qsdwindows <2687267056@qq.com>, 2025
|
|
||||||
# Haowen Shi, 2025
|
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Last-Translator: Haowen Shi, 2025\n"
|
"Last-Translator: Xuekai Deng, 2024\n"
|
||||||
"Language-Team: Chinese (China) (https://app.transifex.com/yay-1/teams/123732/zh_CN/)\n"
|
"Language-Team: Chinese (China) (https://app.transifex.com/yay-1/teams/123732/zh_CN/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
@ -23,22 +20,6 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Generator: xgotext\n"
|
"X-Generator: xgotext\n"
|
||||||
|
|
||||||
#: clean.go:83
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
"Build directory:"
|
|
||||||
msgstr ""
|
|
||||||
"\n"
|
|
||||||
"构建目录:"
|
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:201 pkg/dep/dep_graph.go:740
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
"Enter a number (default=1): "
|
|
||||||
msgstr ""
|
|
||||||
"\n"
|
|
||||||
"输入数字 (默认=1): "
|
|
||||||
|
|
||||||
#: pkg/menus/menu.go:32
|
#: pkg/menus/menu.go:32
|
||||||
msgid " (Build Files Exist)"
|
msgid " (Build Files Exist)"
|
||||||
msgstr " (构建文件已存在)"
|
msgstr " (构建文件已存在)"
|
||||||
@ -75,11 +56,11 @@ msgstr "%s 存在。"
|
|||||||
msgid "%s is up to date -- skipping"
|
msgid "%s is up to date -- skipping"
|
||||||
msgstr "%s 是最新的 -- 跳过"
|
msgstr "%s 是最新的 -- 跳过"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:291
|
#: pkg/upgrade/service.go:292
|
||||||
msgid "%s to upgrade/install."
|
msgid "%s to upgrade/install."
|
||||||
msgstr "%s 将被升级/安装。"
|
msgstr "%s 个要进行升级/安装的包。"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:285
|
#: pkg/upgrade/service.go:286
|
||||||
msgid "%s will also be installed for this operation."
|
msgid "%s will also be installed for this operation."
|
||||||
msgstr "%s 也会为此操作而被安装。"
|
msgstr "%s 也会为此操作而被安装。"
|
||||||
|
|
||||||
@ -129,30 +110,30 @@ msgstr "(%d/%d) 下载PKGBUILD失败"
|
|||||||
msgid "(%d/%d) Parsing SRCINFO: %s"
|
msgid "(%d/%d) Parsing SRCINFO: %s"
|
||||||
msgstr "(%d/%d) 正在解析 SRCINFO: %s"
|
msgstr "(%d/%d) 正在解析 SRCINFO: %s"
|
||||||
|
|
||||||
#: pkg/query/types.go:103 pkg/query/types.go:72
|
#: pkg/query/types.go:72 pkg/query/types.go:103
|
||||||
msgid "(Installed)"
|
msgid "(Installed)"
|
||||||
msgstr "(已安装)"
|
msgstr "(已安装)"
|
||||||
|
|
||||||
#: pkg/query/types.go:101 pkg/query/types.go:70
|
#: pkg/query/types.go:70 pkg/query/types.go:101
|
||||||
msgid "(Installed: %s)"
|
msgid "(Installed: %s)"
|
||||||
msgstr "(已安装: %s)"
|
msgstr "(已安装: %s)"
|
||||||
|
|
||||||
#: pkg/query/types.go:61
|
#: pkg/query/types.go:61
|
||||||
msgid "(Orphaned)"
|
msgid "(Orphaned)"
|
||||||
msgstr "(孤包)"
|
msgstr "(孤儿包)"
|
||||||
|
|
||||||
#: pkg/query/types.go:65
|
#: pkg/query/types.go:65
|
||||||
msgid "(Out-of-date: %s)"
|
msgid "(Out-of-date: %s)"
|
||||||
msgstr "(过时的: %s)"
|
msgstr "(过时的: %s)"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:75
|
|
||||||
msgid "AUR"
|
|
||||||
msgstr "AUR"
|
|
||||||
|
|
||||||
#: print.go:44
|
#: print.go:44
|
||||||
msgid "AUR URL"
|
msgid "AUR URL"
|
||||||
msgstr "AUR URL"
|
msgstr "AUR URL"
|
||||||
|
|
||||||
|
#: pkg/dep/dep_graph.go:75
|
||||||
|
msgid "AUR"
|
||||||
|
msgstr "AUR"
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:58
|
#: pkg/menus/edit_menu.go:58
|
||||||
msgid "Add %s or %s to your environment variables"
|
msgid "Add %s or %s to your environment variables"
|
||||||
msgstr "将 %s 或 %s 添加到你的环境变量"
|
msgstr "将 %s 或 %s 添加到你的环境变量"
|
||||||
@ -169,7 +150,7 @@ msgstr "作为检查依赖安装"
|
|||||||
msgid "Check Deps"
|
msgid "Check Deps"
|
||||||
msgstr "检查依赖"
|
msgstr "检查依赖"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:89
|
#: pkg/upgrade/service.go:90
|
||||||
msgid "Checking development packages..."
|
msgid "Checking development packages..."
|
||||||
msgstr "正在检查开发包..."
|
msgstr "正在检查开发包..."
|
||||||
|
|
||||||
@ -191,7 +172,7 @@ msgstr "作为依赖安装"
|
|||||||
|
|
||||||
#: print.go:38
|
#: print.go:38
|
||||||
msgid "Depends On"
|
msgid "Depends On"
|
||||||
msgstr "依赖以下包"
|
msgstr "依赖于"
|
||||||
|
|
||||||
#: print.go:33
|
#: print.go:33
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
@ -225,7 +206,7 @@ msgstr "使用什么来编辑 PKGBUILD?"
|
|||||||
msgid "Error during AUR search: %s\n"
|
msgid "Error during AUR search: %s\n"
|
||||||
msgstr "搜索 AUR 时出错: %s\n"
|
msgstr "搜索 AUR 时出错: %s\n"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:295
|
#: pkg/upgrade/service.go:296
|
||||||
msgid "Excluding packages may cause partial upgrades and break systems"
|
msgid "Excluding packages may cause partial upgrades and break systems"
|
||||||
msgstr "排除软件包可能会导致不完整的升级并破坏系统"
|
msgstr "排除软件包可能会导致不完整的升级并破坏系统"
|
||||||
|
|
||||||
@ -254,7 +235,7 @@ msgstr "无法安装以下软件包, 需要手动介入处理:"
|
|||||||
msgid "First Submitted"
|
msgid "First Submitted"
|
||||||
msgstr "首次提交"
|
msgstr "首次提交"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:83
|
#: pkg/query/aur_warnings.go:79
|
||||||
msgid "Flagged Out Of Date AUR Packages:"
|
msgid "Flagged Out Of Date AUR Packages:"
|
||||||
msgstr "标记为过时的 AUR 软件包:"
|
msgstr "标记为过时的 AUR 软件包:"
|
||||||
|
|
||||||
@ -280,7 +261,7 @@ msgstr "导入?"
|
|||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:97
|
#: pkg/sync/srcinfo/pgp/keys.go:97
|
||||||
msgid "Importing keys with gpg..."
|
msgid "Importing keys with gpg..."
|
||||||
msgstr "正在导入 GPG 密钥..."
|
msgstr "正在用 gpg 导入密钥..."
|
||||||
|
|
||||||
#: print.go:46
|
#: print.go:46
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
@ -304,31 +285,31 @@ msgstr "维护者"
|
|||||||
|
|
||||||
#: pkg/dep/dep_graph.go:62
|
#: pkg/dep/dep_graph.go:62
|
||||||
msgid "Make Dependency"
|
msgid "Make Dependency"
|
||||||
msgstr "作为构建依赖安装"
|
msgstr "作为生成依赖安装"
|
||||||
|
|
||||||
#: print.go:40
|
#: print.go:40
|
||||||
msgid "Make Deps"
|
msgid "Make Deps"
|
||||||
msgstr "构建依赖"
|
msgstr "生成依赖"
|
||||||
|
|
||||||
|
#: pkg/query/aur_warnings.go:71
|
||||||
|
msgid "Missing AUR Debug Packages:"
|
||||||
|
msgstr "缺少 AUR 调试包:"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:79
|
#: pkg/dep/dep_graph.go:79
|
||||||
msgid "Missing"
|
msgid "Missing"
|
||||||
msgstr "缺少"
|
msgstr "缺少"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:75
|
|
||||||
msgid "Missing AUR Debug Packages:"
|
|
||||||
msgstr "缺少 AUR 调试包:"
|
|
||||||
|
|
||||||
#: print.go:31
|
#: print.go:31
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "名称"
|
msgstr "名称"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:442 pkg/dep/dep_graph.go:548
|
#: pkg/dep/dep_graph.go:442 pkg/dep/dep_graph.go:548
|
||||||
msgid "No AUR package found for"
|
msgid "No AUR package found for"
|
||||||
msgstr "找不到 AUR 包"
|
msgstr "未找到 AUR 软件包"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:182
|
#: pkg/dep/dep_graph.go:182
|
||||||
msgid "No package found for"
|
msgid "No package found for"
|
||||||
msgstr "找不到包"
|
msgstr "未找到包"
|
||||||
|
|
||||||
#: print.go:225
|
#: print.go:225
|
||||||
msgid "None"
|
msgid "None"
|
||||||
@ -338,9 +319,9 @@ msgstr "没有"
|
|||||||
msgid "Optional Deps"
|
msgid "Optional Deps"
|
||||||
msgstr "可选依赖"
|
msgstr "可选依赖"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:79
|
#: pkg/query/aur_warnings.go:75
|
||||||
msgid "Orphan (unmaintained) AUR Packages:"
|
msgid "Orphan (unmaintained) AUR Packages:"
|
||||||
msgstr "孤包 (无人维护) 的 AUR 软件包:"
|
msgstr "孤儿 (无人维护) 的 AUR 软件包:"
|
||||||
|
|
||||||
#: print.go:53 print.go:55
|
#: print.go:53 print.go:55
|
||||||
msgid "Out-of-date"
|
msgid "Out-of-date"
|
||||||
@ -358,27 +339,27 @@ msgstr "PKGBUILD 是最新的,跳过下载: %s"
|
|||||||
msgid "PKGBUILDs to edit?"
|
msgid "PKGBUILDs to edit?"
|
||||||
msgstr "要编辑哪些 PKGBUILD?"
|
msgstr "要编辑哪些 PKGBUILD?"
|
||||||
|
|
||||||
#: print.go:61
|
|
||||||
msgid "Package Base"
|
|
||||||
msgstr "基本包"
|
|
||||||
|
|
||||||
#: print.go:60
|
#: print.go:60
|
||||||
msgid "Package Base ID"
|
msgid "Package Base ID"
|
||||||
msgstr "基本包 ID"
|
msgstr "包基础 ID"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:71
|
#: print.go:61
|
||||||
|
msgid "Package Base"
|
||||||
|
msgstr "包基础"
|
||||||
|
|
||||||
|
#: pkg/query/aur_warnings.go:67
|
||||||
msgid "Packages not in AUR:"
|
msgid "Packages not in AUR:"
|
||||||
msgstr "不在 AUR 中的软件包:"
|
msgstr "不在 AUR 中的软件包:"
|
||||||
|
|
||||||
#: pkg/menus/clean_menu.go:54
|
#: pkg/menus/clean_menu.go:54
|
||||||
msgid "Packages to cleanBuild?"
|
msgid "Packages to cleanBuild?"
|
||||||
msgstr "清理哪些包的构建文件?"
|
msgstr "清理哪些软件包的构建文件?"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:202
|
#: pkg/dep/dep_graph.go:202
|
||||||
msgid "Packages to exclude"
|
msgid "Packages to exclude"
|
||||||
msgstr "要排除的软件包"
|
msgstr "要排除的软件包"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:294
|
#: pkg/upgrade/service.go:295
|
||||||
msgid "Packages to exclude: (eg: \"1 2 3\", \"1-3\", \"^4\" or repo name)"
|
msgid "Packages to exclude: (eg: \"1 2 3\", \"1-3\", \"^4\" or repo name)"
|
||||||
msgstr "要排除的包: (示例: \"1 2 3\", \"1-3\", \"^4\" 或软件库名称)"
|
msgstr "要排除的包: (示例: \"1 2 3\", \"1-3\", \"^4\" 或软件库名称)"
|
||||||
|
|
||||||
@ -400,31 +381,31 @@ msgstr "提供"
|
|||||||
|
|
||||||
#: pkg/sync/workdir/preparer.go:125
|
#: pkg/sync/workdir/preparer.go:125
|
||||||
msgid "Remove make dependencies after install?"
|
msgid "Remove make dependencies after install?"
|
||||||
msgstr "安装后删除构建依赖?"
|
msgstr "安装后删除生成依赖?"
|
||||||
|
|
||||||
#: print.go:43
|
#: print.go:43
|
||||||
msgid "Replaces"
|
msgid "Replaces"
|
||||||
msgstr "替换"
|
msgstr "替换"
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:191 print.go:30
|
|
||||||
msgid "Repository"
|
|
||||||
msgstr "软件库"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:730
|
#: pkg/dep/dep_graph.go:730
|
||||||
msgid "Repository AUR"
|
msgid "Repository AUR"
|
||||||
msgstr "AUR 软件库"
|
msgstr "AUR 软件库"
|
||||||
|
|
||||||
|
#: print.go:30 pkg/db/ialpm/alpm.go:191
|
||||||
|
msgid "Repository"
|
||||||
|
msgstr "软件库"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:78
|
#: pkg/dep/dep_graph.go:78
|
||||||
msgid "SRCINFO"
|
msgid "SRCINFO"
|
||||||
msgstr "SRCINFO"
|
msgstr "SRCINFO"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:71
|
#: pkg/upgrade/service.go:72
|
||||||
msgid "Searching AUR for updates..."
|
msgid "Searching AUR for updates..."
|
||||||
msgstr "正在搜索 AUR 更新..."
|
msgstr "正在搜索 AUR 以获取更新..."
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:159
|
#: pkg/upgrade/service.go:160
|
||||||
msgid "Searching databases for updates..."
|
msgid "Searching databases for updates..."
|
||||||
msgstr "正在搜索数据库更新..."
|
msgstr "正在搜索数据库以获取更新..."
|
||||||
|
|
||||||
#: pkg/query/query_builder.go:214
|
#: pkg/query/query_builder.go:214
|
||||||
msgid "Showing repo packages only"
|
msgid "Showing repo packages only"
|
||||||
@ -455,8 +436,8 @@ msgid "The following packages are not compatible with your architecture:"
|
|||||||
msgstr "下列软件包与你的系统架构不兼容:"
|
msgstr "下列软件包与你的系统架构不兼容:"
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:179 pkg/dep/dep_graph.go:726
|
#: pkg/db/ialpm/alpm.go:179 pkg/dep/dep_graph.go:726
|
||||||
msgid "There are %[1]d providers available for %[2]s:"
|
msgid "There are %d providers available for %s:"
|
||||||
msgstr "对于 %[2] 有 %[1]d 个结果:"
|
msgstr "有 %d 个提供者可用于 %s:"
|
||||||
|
|
||||||
#: pkg/settings/exe/cmd_builder.go:258
|
#: pkg/settings/exe/cmd_builder.go:258
|
||||||
msgid "There may be another Pacman instance running. Waiting..."
|
msgid "There may be another Pacman instance running. Waiting..."
|
||||||
@ -510,9 +491,25 @@ msgstr "Yay 版本 v%s"
|
|||||||
msgid "[N]one"
|
msgid "[N]one"
|
||||||
msgstr "[N]没有"
|
msgstr "[N]没有"
|
||||||
|
|
||||||
|
#: clean.go:83
|
||||||
|
msgid ""
|
||||||
|
"\n"
|
||||||
|
"Build directory:"
|
||||||
|
msgstr ""
|
||||||
|
"\n"
|
||||||
|
"构建目录:"
|
||||||
|
|
||||||
|
#: pkg/db/ialpm/alpm.go:201 pkg/dep/dep_graph.go:740
|
||||||
|
msgid ""
|
||||||
|
"\n"
|
||||||
|
"Enter a number (default=1): "
|
||||||
|
msgstr ""
|
||||||
|
"\n"
|
||||||
|
"输入数字 (默认=1): "
|
||||||
|
|
||||||
#: pkg/settings/errors.go:29
|
#: pkg/settings/errors.go:29
|
||||||
msgid "aborting due to user"
|
msgid "aborting due to user"
|
||||||
msgstr "用户自行终止"
|
msgstr "由于用户而中止"
|
||||||
|
|
||||||
#: pkg/settings/parser/parser.go:608
|
#: pkg/settings/parser/parser.go:608
|
||||||
msgid "argument '-' specified without input on stdin"
|
msgid "argument '-' specified without input on stdin"
|
||||||
@ -538,11 +535,11 @@ msgstr "无法找到所有必需的软件包"
|
|||||||
msgid "could not find any package archives listed in %s"
|
msgid "could not find any package archives listed in %s"
|
||||||
msgstr "在 %s 中无法找到任何软件包存档"
|
msgstr "在 %s 中无法找到任何软件包存档"
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:50 pkg/upgrade/service.go:286
|
#: pkg/sync/build/errors.go:50 pkg/upgrade/service.go:287
|
||||||
msgid "dependency"
|
msgid "dependency"
|
||||||
msgstr "作为依赖安装"
|
msgstr "作为依赖安装"
|
||||||
|
|
||||||
#: pkg/vcs/vcs.go:100 pkg/vcs/vcs.go:96
|
#: pkg/vcs/vcs.go:96 pkg/vcs/vcs.go:100
|
||||||
msgid "devel check for package failed: '%s' encountered an error"
|
msgid "devel check for package failed: '%s' encountered an error"
|
||||||
msgstr "软件包的开发检查失败: '%s' 遇到了错误"
|
msgstr "软件包的开发检查失败: '%s' 遇到了错误"
|
||||||
|
|
||||||
@ -588,7 +585,7 @@ msgstr "重置 %s 时出错: %s"
|
|||||||
|
|
||||||
#: pkg/sync/build/errors.go:53
|
#: pkg/sync/build/errors.go:53
|
||||||
msgid "error updating package install reason to %s"
|
msgid "error updating package install reason to %s"
|
||||||
msgstr "更新软件包时因 %s 出错"
|
msgstr "更新软件包安装原因至 %s 时出错"
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:48
|
#: pkg/sync/build/errors.go:48
|
||||||
msgid "explicit"
|
msgid "explicit"
|
||||||
@ -650,10 +647,6 @@ msgstr "无效软件库"
|
|||||||
msgid "invalid value: %d is not between %d and %d"
|
msgid "invalid value: %d is not between %d and %d"
|
||||||
msgstr "无效值: %d 不在 %d 和 %d 之间"
|
msgstr "无效值: %d 不在 %d 和 %d 之间"
|
||||||
|
|
||||||
#: pkg/text/input.go:48
|
|
||||||
msgid "no"
|
|
||||||
msgstr "no"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:110
|
#: pkg/sync/srcinfo/pgp/keys.go:110
|
||||||
msgid "no keys to import"
|
msgid "no keys to import"
|
||||||
msgstr "没有要导入的密钥"
|
msgstr "没有要导入的密钥"
|
||||||
@ -666,6 +659,10 @@ msgstr "没有查询被执行"
|
|||||||
msgid "no target directories specified"
|
msgid "no target directories specified"
|
||||||
msgstr "未指定目标目录"
|
msgstr "未指定目标目录"
|
||||||
|
|
||||||
|
#: pkg/text/input.go:48
|
||||||
|
msgid "no"
|
||||||
|
msgstr "no"
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:242
|
#: pkg/sync/build/installer.go:242
|
||||||
msgid "nothing to install for %s"
|
msgid "nothing to install for %s"
|
||||||
msgstr "%s 没有需要安装的依赖软件包"
|
msgstr "%s 没有需要安装的依赖软件包"
|
||||||
@ -678,11 +675,6 @@ msgstr "一次只能使用一项操作"
|
|||||||
msgid "only one target is allowed"
|
msgid "only one target is allowed"
|
||||||
msgstr "仅允许一个目标"
|
msgstr "仅允许一个目标"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:291
|
|
||||||
msgid "package"
|
|
||||||
msgid_plural "packages"
|
|
||||||
msgstr[0] "软件包"
|
|
||||||
|
|
||||||
#: print.go:187
|
#: print.go:187
|
||||||
msgid "package '%s' was not found"
|
msgid "package '%s' was not found"
|
||||||
msgstr "找不到软件包 '%s'"
|
msgstr "找不到软件包 '%s'"
|
||||||
@ -695,6 +687,11 @@ msgstr "AUR 中找不到软件包"
|
|||||||
msgid "package not found in repos"
|
msgid "package not found in repos"
|
||||||
msgstr "软件库中找不到软件包"
|
msgstr "软件库中找不到软件包"
|
||||||
|
|
||||||
|
#: pkg/upgrade/service.go:292
|
||||||
|
msgid "package"
|
||||||
|
msgid_plural "packages"
|
||||||
|
msgstr[0] "软件包"
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:100
|
#: pkg/sync/srcinfo/pgp/keys.go:100
|
||||||
msgid "problem importing keys"
|
msgid "problem importing keys"
|
||||||
msgstr "导入密钥时出现问题"
|
msgstr "导入密钥时出现问题"
|
||||||
|
325
po/zh_TW.po
325
po/zh_TW.po
@ -2,37 +2,20 @@
|
|||||||
# Translators:
|
# Translators:
|
||||||
# J G, 2022
|
# J G, 2022
|
||||||
# lakejason0 <sunliyuan200402@outlook.com>, 2023
|
# lakejason0 <sunliyuan200402@outlook.com>, 2023
|
||||||
# Kisaragi Hiu <flyingfeather1501@gmail.com>, 2023
|
# 如月飛羽 <flyingfeather1501@gmail.com>, 2023
|
||||||
# Oliver Tzeng, 2025
|
|
||||||
# zangmen hsu(neko_0xff) <chzang55@gmail.com>, 2025
|
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Last-Translator: zangmen hsu(neko_0xff) <chzang55@gmail.com>, 2025\n"
|
"Last-Translator: 如月飛羽 <flyingfeather1501@gmail.com>, 2023\n"
|
||||||
"Language-Team: Chinese (Taiwan) (https://app.transifex.com/yay-1/teams/123732/zh_TW/)\n"
|
"Language-Team: Chinese (Taiwan) (https://app.transifex.com/yay-1/"
|
||||||
|
"teams/123732/zh_TW/)\n"
|
||||||
|
"Language: zh_TW\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Language: zh_TW\n"
|
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Generator: xgotext\n"
|
"X-Generator: xgotext\n"
|
||||||
|
|
||||||
#: clean.go:83
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
"Build directory:"
|
|
||||||
msgstr ""
|
|
||||||
"\n"
|
|
||||||
"編譯資料夾:"
|
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:201 pkg/dep/dep_graph.go:740
|
|
||||||
msgid ""
|
|
||||||
"\n"
|
|
||||||
"Enter a number (default=1): "
|
|
||||||
msgstr ""
|
|
||||||
"\n"
|
|
||||||
"輸入數字 (預設=1): "
|
|
||||||
|
|
||||||
#: pkg/menus/menu.go:32
|
#: pkg/menus/menu.go:32
|
||||||
msgid " (Build Files Exist)"
|
msgid " (Build Files Exist)"
|
||||||
msgstr " (編譯檔案已存在)"
|
msgstr " (編譯檔案已存在)"
|
||||||
@ -69,13 +52,14 @@ msgstr "%s 存在。"
|
|||||||
msgid "%s is up to date -- skipping"
|
msgid "%s is up to date -- skipping"
|
||||||
msgstr "%s 是最新的 -- 跳過"
|
msgstr "%s 是最新的 -- 跳過"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:291
|
#: pkg/upgrade/service.go:292
|
||||||
|
#, fuzzy
|
||||||
msgid "%s to upgrade/install."
|
msgid "%s to upgrade/install."
|
||||||
msgstr "%s 個要升級/安裝的套件。"
|
msgstr "個要升級/安裝的軟體包。"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:285
|
#: pkg/upgrade/service.go:286
|
||||||
msgid "%s will also be installed for this operation."
|
msgid "%s will also be installed for this operation."
|
||||||
msgstr "%s 也會為此操作被安裝。 "
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:124
|
#: pkg/sync/srcinfo/pgp/keys.go:124
|
||||||
msgid "%s, required by: %s"
|
msgid "%s, required by: %s"
|
||||||
@ -95,7 +79,7 @@ msgstr "%s: 不能將目標與選項 --repo 一起使用 -- 跳過"
|
|||||||
|
|
||||||
#: pkg/upgrade/sources.go:57
|
#: pkg/upgrade/sources.go:57
|
||||||
msgid "%s: ignoring package upgrade (%s => %s)"
|
msgid "%s: ignoring package upgrade (%s => %s)"
|
||||||
msgstr "%s: 忽略套件包升級 (%s => %s)"
|
msgstr "%s: 忽略軟體包升級 (%s => %s)"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:46
|
#: pkg/query/aur_warnings.go:46
|
||||||
msgid "%s: local (%s) is newer than AUR (%s)"
|
msgid "%s: local (%s) is newer than AUR (%s)"
|
||||||
@ -103,31 +87,31 @@ msgstr "%s: 本機 (%s) 比 AUR (%s) 更新"
|
|||||||
|
|
||||||
#: vote.go:51
|
#: vote.go:51
|
||||||
msgid ""
|
msgid ""
|
||||||
"%s: please set AUR_USERNAME and AUR_PASSWORD environment variables for "
|
"%s: please set AUR_USERNAME and AUR_PASSWORD environment variables for voting"
|
||||||
"voting"
|
|
||||||
msgstr "%s: 請設定 AUR_USERNAME 與 AUR_PASSWORD 環境變數以進行投票"
|
msgstr "%s: 請設定 AUR_USERNAME 與 AUR_PASSWORD 環境變數以進行投票"
|
||||||
|
|
||||||
#: pkg/download/unified.go:192
|
#: pkg/download/unified.go:192
|
||||||
msgid "(%d/%d) Downloaded PKGBUILD from ABS: %s"
|
msgid "(%d/%d) Downloaded PKGBUILD from ABS: %s"
|
||||||
msgstr "(%d/%d) 從 ABS 下載了 PKGBUILD:%s"
|
msgstr "(%d/%d) 從 ABS 下載了 PKGBUILD: %s"
|
||||||
|
|
||||||
#: pkg/download/aur.go:92 pkg/download/unified.go:188
|
#: pkg/download/aur.go:92 pkg/download/unified.go:188
|
||||||
msgid "(%d/%d) Downloaded PKGBUILD: %s"
|
msgid "(%d/%d) Downloaded PKGBUILD: %s"
|
||||||
msgstr "(%d/%d) 下載了 PKGBUILD:%s"
|
msgstr "(%d/%d) 下載了 PKGBUILD: %s"
|
||||||
|
|
||||||
#: pkg/download/aur.go:82
|
#: pkg/download/aur.go:82
|
||||||
|
#, fuzzy
|
||||||
msgid "(%d/%d) Failed to download PKGBUILD: %s"
|
msgid "(%d/%d) Failed to download PKGBUILD: %s"
|
||||||
msgstr "(%d/%d)下載 PKGBUILD 時失敗:%s"
|
msgstr "(%d/%d) 下載了 PKGBUILD: %s"
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/service.go:109
|
#: pkg/sync/srcinfo/service.go:109
|
||||||
msgid "(%d/%d) Parsing SRCINFO: %s"
|
msgid "(%d/%d) Parsing SRCINFO: %s"
|
||||||
msgstr "(%d/%d) 正在解析 SRCINFO:%s"
|
msgstr "(%d/%d) 正在解析 SRCINFO: %s"
|
||||||
|
|
||||||
#: pkg/query/types.go:103 pkg/query/types.go:72
|
#: pkg/query/types.go:72 pkg/query/types.go:103
|
||||||
msgid "(Installed)"
|
msgid "(Installed)"
|
||||||
msgstr "(已安裝)"
|
msgstr "(已安裝)"
|
||||||
|
|
||||||
#: pkg/query/types.go:101 pkg/query/types.go:70
|
#: pkg/query/types.go:70 pkg/query/types.go:101
|
||||||
msgid "(Installed: %s)"
|
msgid "(Installed: %s)"
|
||||||
msgstr "(已安裝: %s)"
|
msgstr "(已安裝: %s)"
|
||||||
|
|
||||||
@ -139,17 +123,17 @@ msgstr "(棄置)"
|
|||||||
msgid "(Out-of-date: %s)"
|
msgid "(Out-of-date: %s)"
|
||||||
msgstr "(過期的: %s)"
|
msgstr "(過期的: %s)"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:75
|
|
||||||
msgid "AUR"
|
|
||||||
msgstr "AUR"
|
|
||||||
|
|
||||||
#: print.go:44
|
#: print.go:44
|
||||||
msgid "AUR URL"
|
msgid "AUR URL"
|
||||||
msgstr "AUR 網址"
|
msgstr "AUR 網址"
|
||||||
|
|
||||||
|
#: pkg/dep/dep_graph.go:75
|
||||||
|
msgid "AUR"
|
||||||
|
msgstr "AUR"
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:58
|
#: pkg/menus/edit_menu.go:58
|
||||||
msgid "Add %s or %s to your environment variables"
|
msgid "Add %s or %s to your environment variables"
|
||||||
msgstr "將 %s 或 %s 添加到環境變數中"
|
msgstr "將 %s 或 %s 添加到你的環境變數"
|
||||||
|
|
||||||
#: main.go:60
|
#: main.go:60
|
||||||
msgid "Avoid running yay as root/sudo."
|
msgid "Avoid running yay as root/sudo."
|
||||||
@ -163,9 +147,9 @@ msgstr "作為檢查依賴安裝"
|
|||||||
msgid "Check Deps"
|
msgid "Check Deps"
|
||||||
msgstr "檢查依賴"
|
msgstr "檢查依賴"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:89
|
#: pkg/upgrade/service.go:90
|
||||||
msgid "Checking development packages..."
|
msgid "Checking development packages..."
|
||||||
msgstr "正在檢查開發套件包..."
|
msgstr "正在檢查開發軟體包..."
|
||||||
|
|
||||||
#: pkg/sync/workdir/clean.go:45
|
#: pkg/sync/workdir/clean.go:45
|
||||||
msgid "Cleaning (%d/%d): %s"
|
msgid "Cleaning (%d/%d): %s"
|
||||||
@ -201,7 +185,7 @@ msgstr "預設停用「provides」設定"
|
|||||||
|
|
||||||
#: clean.go:78
|
#: clean.go:78
|
||||||
msgid "Do you want to remove ALL AUR packages from cache?"
|
msgid "Do you want to remove ALL AUR packages from cache?"
|
||||||
msgstr "您是否要從快取中刪除所有 AUR 套件包?"
|
msgstr "您是否要從快取中刪除所有 AUR 軟體包?"
|
||||||
|
|
||||||
#: clean.go:95
|
#: clean.go:95
|
||||||
msgid "Do you want to remove ALL untracked AUR files?"
|
msgid "Do you want to remove ALL untracked AUR files?"
|
||||||
@ -209,7 +193,7 @@ msgstr "您是否要刪除所有未使用的 AUR 檔案?"
|
|||||||
|
|
||||||
#: clean.go:80
|
#: clean.go:80
|
||||||
msgid "Do you want to remove all other AUR packages from cache?"
|
msgid "Do you want to remove all other AUR packages from cache?"
|
||||||
msgstr "您是否要從快取中刪除所有其他 AUR 套件包?"
|
msgstr "您是否要從快取中刪除所有其他 AUR 軟體包?"
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:61
|
#: pkg/menus/edit_menu.go:61
|
||||||
msgid "Edit PKGBUILD with?"
|
msgid "Edit PKGBUILD with?"
|
||||||
@ -219,9 +203,9 @@ msgstr "使用什麼來編輯 PKGBUILD?"
|
|||||||
msgid "Error during AUR search: %s\n"
|
msgid "Error during AUR search: %s\n"
|
||||||
msgstr "搜尋 AUR 時出錯: %s\n"
|
msgstr "搜尋 AUR 時出錯: %s\n"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:295
|
#: pkg/upgrade/service.go:296
|
||||||
msgid "Excluding packages may cause partial upgrades and break systems"
|
msgid "Excluding packages may cause partial upgrades and break systems"
|
||||||
msgstr "排除套件包則會造成部分功能更新而使系統無法正常運作"
|
msgstr "排除軟體包可能會造成部分更新而使系統無法正常運作"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:60
|
#: pkg/dep/dep_graph.go:60
|
||||||
msgid "Explicit"
|
msgid "Explicit"
|
||||||
@ -229,11 +213,11 @@ msgstr "單獨指定安裝"
|
|||||||
|
|
||||||
#: print.go:91
|
#: print.go:91
|
||||||
msgid "Explicitly installed packages: %s"
|
msgid "Explicitly installed packages: %s"
|
||||||
msgstr "單獨指定安装的套件包: %s"
|
msgstr "單獨指定安装的軟體包: %s"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:437 pkg/dep/dep_graph.go:535
|
#: pkg/dep/dep_graph.go:437 pkg/dep/dep_graph.go:535
|
||||||
msgid "Failed to find AUR package for"
|
msgid "Failed to find AUR package for"
|
||||||
msgstr "尋找 AUR 套件包時失敗"
|
msgstr "尋找 AUR 軟體包時失敗"
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:120
|
#: pkg/sync/build/installer.go:120
|
||||||
msgid "Failed to install layer, rolling up to next layer."
|
msgid "Failed to install layer, rolling up to next layer."
|
||||||
@ -242,31 +226,31 @@ msgstr "層級安裝失敗,將合併到下一個層級。"
|
|||||||
#: pkg/sync/build/errors.go:16
|
#: pkg/sync/build/errors.go:16
|
||||||
msgid ""
|
msgid ""
|
||||||
"Failed to install the following packages. Manual intervention is required:"
|
"Failed to install the following packages. Manual intervention is required:"
|
||||||
msgstr "無法安裝以下的套件包。需要自行手動處理:"
|
msgstr "無法安裝以下軟體包。需要手動處理:"
|
||||||
|
|
||||||
#: print.go:45
|
#: print.go:45
|
||||||
msgid "First Submitted"
|
msgid "First Submitted"
|
||||||
msgstr "首次提交"
|
msgstr "首次提交"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:83
|
#: pkg/query/aur_warnings.go:79
|
||||||
msgid "Flagged Out Of Date AUR Packages:"
|
msgid "Flagged Out Of Date AUR Packages:"
|
||||||
msgstr "標記為過期的 AUR 套件包:"
|
msgstr "標記為過期的 AUR 軟體包:"
|
||||||
|
|
||||||
#: print.go:90
|
#: print.go:90
|
||||||
msgid "Foreign installed packages: %s"
|
msgid "Foreign installed packages: %s"
|
||||||
msgstr "已安裝的外部套件包: %s"
|
msgstr "已安裝的外部軟體包: %s"
|
||||||
|
|
||||||
#: pkg/vcs/vcs.go:144
|
#: pkg/vcs/vcs.go:144
|
||||||
msgid "Found git repo: %s"
|
msgid "Found git repo: %s"
|
||||||
msgstr "已找到 git 倉庫源: %s"
|
msgstr "已找到 git 軟體源: %s"
|
||||||
|
|
||||||
#: vcs.go:72
|
#: vcs.go:72
|
||||||
msgid "GenDB finished. No packages were installed"
|
msgid "GenDB finished. No packages were installed"
|
||||||
msgstr "GenDB 完成。沒有安裝任何套件包"
|
msgstr "GenDB 完成。沒有安裝任何軟體包"
|
||||||
|
|
||||||
#: print.go:36
|
#: print.go:36
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr "群組別"
|
msgstr "組別"
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:88
|
#: pkg/sync/srcinfo/pgp/keys.go:88
|
||||||
msgid "Import?"
|
msgid "Import?"
|
||||||
@ -304,37 +288,38 @@ msgstr "作為編譯依賴安裝"
|
|||||||
msgid "Make Deps"
|
msgid "Make Deps"
|
||||||
msgstr "編譯依賴"
|
msgstr "編譯依賴"
|
||||||
|
|
||||||
|
#: pkg/query/aur_warnings.go:71
|
||||||
|
msgid "Missing AUR Debug Packages:"
|
||||||
|
msgstr "缺少 AUR 除錯軟體包:"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:79
|
#: pkg/dep/dep_graph.go:79
|
||||||
msgid "Missing"
|
msgid "Missing"
|
||||||
msgstr "缺少"
|
msgstr "缺少"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:75
|
|
||||||
msgid "Missing AUR Debug Packages:"
|
|
||||||
msgstr "缺少 AUR 除錯套件包:"
|
|
||||||
|
|
||||||
#: print.go:31
|
#: print.go:31
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "名稱"
|
msgstr "名稱"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:442 pkg/dep/dep_graph.go:548
|
#: pkg/dep/dep_graph.go:442 pkg/dep/dep_graph.go:548
|
||||||
msgid "No AUR package found for"
|
msgid "No AUR package found for"
|
||||||
msgstr "沒有找到 AUR 套件包"
|
msgstr "沒有找到 AUR 軟體包"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:182
|
#: pkg/dep/dep_graph.go:182
|
||||||
|
#, fuzzy
|
||||||
msgid "No package found for"
|
msgid "No package found for"
|
||||||
msgstr "未找到套件包"
|
msgstr "沒有找到 AUR 軟體包"
|
||||||
|
|
||||||
#: print.go:225
|
#: print.go:225
|
||||||
msgid "None"
|
msgid "None"
|
||||||
msgstr "不做任何動作"
|
msgstr "沒有"
|
||||||
|
|
||||||
#: print.go:39
|
#: print.go:39
|
||||||
msgid "Optional Deps"
|
msgid "Optional Deps"
|
||||||
msgstr "可選擇的依賴選項"
|
msgstr "可選依賴"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:79
|
#: pkg/query/aur_warnings.go:75
|
||||||
msgid "Orphan (unmaintained) AUR Packages:"
|
msgid "Orphan (unmaintained) AUR Packages:"
|
||||||
msgstr "孤立 (不受維護) 的 AUR 套件:"
|
msgstr "孤立 (不受維護) 的 AUR 軟體包:"
|
||||||
|
|
||||||
#: print.go:53 print.go:55
|
#: print.go:53 print.go:55
|
||||||
msgid "Out-of-date"
|
msgid "Out-of-date"
|
||||||
@ -352,33 +337,33 @@ msgstr "PKGBUILD 是最新的,跳過下載: %s"
|
|||||||
msgid "PKGBUILDs to edit?"
|
msgid "PKGBUILDs to edit?"
|
||||||
msgstr "要編輯哪些 PKGBUILD 檔案?"
|
msgstr "要編輯哪些 PKGBUILD 檔案?"
|
||||||
|
|
||||||
#: print.go:61
|
|
||||||
msgid "Package Base"
|
|
||||||
msgstr "套件包基礎"
|
|
||||||
|
|
||||||
#: print.go:60
|
#: print.go:60
|
||||||
msgid "Package Base ID"
|
msgid "Package Base ID"
|
||||||
msgstr "套件包基礎編號"
|
msgstr "軟體包構造編號"
|
||||||
|
|
||||||
#: pkg/query/aur_warnings.go:71
|
#: print.go:61
|
||||||
|
msgid "Package Base"
|
||||||
|
msgstr "軟體包構造"
|
||||||
|
|
||||||
|
#: pkg/query/aur_warnings.go:67
|
||||||
msgid "Packages not in AUR:"
|
msgid "Packages not in AUR:"
|
||||||
msgstr "不在 AUR 裡的套件包:"
|
msgstr "不在 AUR 裡的軟體包:"
|
||||||
|
|
||||||
#: pkg/menus/clean_menu.go:54
|
#: pkg/menus/clean_menu.go:54
|
||||||
msgid "Packages to cleanBuild?"
|
msgid "Packages to cleanBuild?"
|
||||||
msgstr "清理哪些套件包的編譯檔案?"
|
msgstr "清理哪些軟體包的編譯檔案?"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:202
|
#: pkg/dep/dep_graph.go:202
|
||||||
msgid "Packages to exclude"
|
msgid "Packages to exclude"
|
||||||
msgstr "要排除的套件包"
|
msgstr "要排除的軟體包"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:294
|
#: pkg/upgrade/service.go:295
|
||||||
msgid "Packages to exclude: (eg: \"1 2 3\", \"1-3\", \"^4\" or repo name)"
|
msgid "Packages to exclude: (eg: \"1 2 3\", \"1-3\", \"^4\" or repo name)"
|
||||||
msgstr "要排除的套件包:(例如: \"1 2 3\", \"1-3\", \"^4\" 或倉庫源名稱)"
|
msgstr "要排除的軟體包: (例如: \"1 2 3\", \"1-3\", \"^4\" 或軟體源名稱)"
|
||||||
|
|
||||||
#: cmd.go:392
|
#: cmd.go:392
|
||||||
msgid "Packages to install (eg: 1 2 3, 1-3 or ^4)"
|
msgid "Packages to install (eg: 1 2 3, 1-3 or ^4)"
|
||||||
msgstr "要安裝的套件包 (例如: 1 2 3, 1-3 或 ^4)"
|
msgstr "要安裝的軟體包 (例如: 1 2 3, 1-3 或 ^4)"
|
||||||
|
|
||||||
#: print.go:49
|
#: print.go:49
|
||||||
msgid "Popularity"
|
msgid "Popularity"
|
||||||
@ -398,31 +383,31 @@ msgstr "安裝後刪除編譯依賴?"
|
|||||||
|
|
||||||
#: print.go:43
|
#: print.go:43
|
||||||
msgid "Replaces"
|
msgid "Replaces"
|
||||||
msgstr "替換"
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:191 print.go:30
|
|
||||||
msgid "Repository"
|
|
||||||
msgstr "軟體源"
|
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:730
|
#: pkg/dep/dep_graph.go:730
|
||||||
msgid "Repository AUR"
|
msgid "Repository AUR"
|
||||||
msgstr "AUR 軟體源"
|
msgstr "AUR 軟體源"
|
||||||
|
|
||||||
|
#: print.go:30 pkg/db/ialpm/alpm.go:191
|
||||||
|
msgid "Repository"
|
||||||
|
msgstr "軟體源"
|
||||||
|
|
||||||
#: pkg/dep/dep_graph.go:78
|
#: pkg/dep/dep_graph.go:78
|
||||||
msgid "SRCINFO"
|
msgid "SRCINFO"
|
||||||
msgstr "SRCINFO"
|
msgstr "SRCINFO"
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:71
|
#: pkg/upgrade/service.go:72
|
||||||
msgid "Searching AUR for updates..."
|
msgid "Searching AUR for updates..."
|
||||||
msgstr "搜尋 AUR 來獲取更新..."
|
msgstr "搜尋 AUR 來獲取更新..."
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:159
|
#: pkg/upgrade/service.go:160
|
||||||
msgid "Searching databases for updates..."
|
msgid "Searching databases for updates..."
|
||||||
msgstr "搜尋資料庫來獲取更新..."
|
msgstr "搜尋資料庫來獲取更新..."
|
||||||
|
|
||||||
#: pkg/query/query_builder.go:214
|
#: pkg/query/query_builder.go:214
|
||||||
msgid "Showing repo packages only"
|
msgid "Showing repo packages only"
|
||||||
msgstr "僅顯示軟體源中的套件包"
|
msgstr "僅顯示軟體源中的軟體包"
|
||||||
|
|
||||||
#: print.go:95
|
#: print.go:95
|
||||||
msgid "Size of pacman cache %s: %s"
|
msgid "Size of pacman cache %s: %s"
|
||||||
@ -442,27 +427,27 @@ msgstr "同步"
|
|||||||
|
|
||||||
#: print.go:100
|
#: print.go:100
|
||||||
msgid "Ten biggest packages:"
|
msgid "Ten biggest packages:"
|
||||||
msgstr "前十大的套件包:"
|
msgstr "前十大的軟體包:"
|
||||||
|
|
||||||
#: pkg/sync/sync.go:124
|
#: pkg/sync/sync.go:124
|
||||||
msgid "The following packages are not compatible with your architecture:"
|
msgid "The following packages are not compatible with your architecture:"
|
||||||
msgstr "以下套件不支援您的系統架構:"
|
msgstr "以下軟體包不支援您的系統架構:"
|
||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:179 pkg/dep/dep_graph.go:726
|
#: pkg/db/ialpm/alpm.go:179 pkg/dep/dep_graph.go:726
|
||||||
msgid "There are %[1]d providers available for %[2]s:"
|
msgid "There are %d providers available for %s:"
|
||||||
msgstr "對於 %[2] 有 %[1]d 個結果:"
|
msgstr "有 %d 個提供者可用於 %s:"
|
||||||
|
|
||||||
#: pkg/settings/exe/cmd_builder.go:258
|
#: pkg/settings/exe/cmd_builder.go:258
|
||||||
msgid "There may be another Pacman instance running. Waiting..."
|
msgid "There may be another Pacman instance running. Waiting..."
|
||||||
msgstr "可能還有另一個 pacman 程序正在執行。等待中..."
|
msgstr "可能還有另一個 Pacman 正在執行。等待中..."
|
||||||
|
|
||||||
#: print.go:92
|
#: print.go:92
|
||||||
msgid "Total Size occupied by packages: %s"
|
msgid "Total Size occupied by packages: %s"
|
||||||
msgstr "套件包佔用的空間: %s"
|
msgstr "軟體包佔用的空間: %s"
|
||||||
|
|
||||||
#: print.go:89
|
#: print.go:89
|
||||||
msgid "Total installed packages: %s"
|
msgid "Total installed packages: %s"
|
||||||
msgstr "已安裝的套件包總數: %s"
|
msgstr "已安裝的軟體包總數: %s"
|
||||||
|
|
||||||
#: pkg/sync/sync.go:132
|
#: pkg/sync/sync.go:132
|
||||||
msgid "Try to build them anyway?"
|
msgid "Try to build them anyway?"
|
||||||
@ -478,11 +463,11 @@ msgstr "無法清理:"
|
|||||||
|
|
||||||
#: get.go:42 get.go:74
|
#: get.go:42 get.go:74
|
||||||
msgid "Unable to find the following packages:"
|
msgid "Unable to find the following packages:"
|
||||||
msgstr "找不到下列套件包:"
|
msgstr "找不到下列軟體包:"
|
||||||
|
|
||||||
#: vote.go:20
|
#: vote.go:20
|
||||||
msgid "Unable to handle package vote for: %s. err: %s"
|
msgid "Unable to handle package vote for: %s. err: %s"
|
||||||
msgstr "無法處理套件包的投票: %s。錯誤: %s"
|
msgstr "無法處理軟體包的投票: %s。錯誤: %s"
|
||||||
|
|
||||||
#: clean.go:170
|
#: clean.go:170
|
||||||
msgid "Unable to remove %s: %s"
|
msgid "Unable to remove %s: %s"
|
||||||
@ -494,7 +479,7 @@ msgstr "版本"
|
|||||||
|
|
||||||
#: print.go:50
|
#: print.go:50
|
||||||
msgid "Votes"
|
msgid "Votes"
|
||||||
msgstr "得到票數"
|
msgstr "得票"
|
||||||
|
|
||||||
#: print.go:87
|
#: print.go:87
|
||||||
msgid "Yay version v%s"
|
msgid "Yay version v%s"
|
||||||
@ -502,15 +487,31 @@ msgstr "Yay 版本 v%s"
|
|||||||
|
|
||||||
#: pkg/menus/menu.go:49
|
#: pkg/menus/menu.go:49
|
||||||
msgid "[N]one"
|
msgid "[N]one"
|
||||||
msgstr "[N]不做任何動作"
|
msgstr "[N]沒有"
|
||||||
|
|
||||||
|
#: clean.go:83
|
||||||
|
msgid ""
|
||||||
|
"\n"
|
||||||
|
"Build directory:"
|
||||||
|
msgstr ""
|
||||||
|
"\n"
|
||||||
|
"編譯資料夾:"
|
||||||
|
|
||||||
|
#: pkg/db/ialpm/alpm.go:201 pkg/dep/dep_graph.go:740
|
||||||
|
msgid ""
|
||||||
|
"\n"
|
||||||
|
"Enter a number (default=1): "
|
||||||
|
msgstr ""
|
||||||
|
"\n"
|
||||||
|
"輸入數字 (預設=1): "
|
||||||
|
|
||||||
#: pkg/settings/errors.go:29
|
#: pkg/settings/errors.go:29
|
||||||
msgid "aborting due to user"
|
msgid "aborting due to user"
|
||||||
msgstr "使用者已自行中止 yay"
|
msgstr "由於使用者而中止"
|
||||||
|
|
||||||
#: pkg/settings/parser/parser.go:608
|
#: pkg/settings/parser/parser.go:608
|
||||||
msgid "argument '-' specified without input on stdin"
|
msgid "argument '-' specified without input on stdin"
|
||||||
msgstr "指定了參數 '-' 但沒有 stdin 或其他輸入值"
|
msgstr "指定了引數 '-' 但標準輸入沒有輸入值"
|
||||||
|
|
||||||
#: local_install.go:26
|
#: local_install.go:26
|
||||||
msgid "cannot find PKGBUILD and .SRCINFO in directory"
|
msgid "cannot find PKGBUILD and .SRCINFO in directory"
|
||||||
@ -518,43 +519,43 @@ msgstr "目錄內找不到 PKGBUILD 與 .SRCINFO 檔案"
|
|||||||
|
|
||||||
#: pkg/sync/build/pkg_archive.go:148
|
#: pkg/sync/build/pkg_archive.go:148
|
||||||
msgid "cannot find package name: %v"
|
msgid "cannot find package name: %v"
|
||||||
msgstr "找不到套件名稱:%v"
|
msgstr "找不到軟體包名稱: %v"
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:30
|
#: pkg/sync/build/errors.go:30
|
||||||
msgid "could not find PKGDEST for: %s"
|
msgid "could not find PKGDEST for: %s"
|
||||||
msgstr "找不到 PKGDEST:%s"
|
msgstr "找不到 PKGDEST: %s"
|
||||||
|
|
||||||
#: errors.go:9
|
#: errors.go:9
|
||||||
msgid "could not find all required packages"
|
msgid "could not find all required packages"
|
||||||
msgstr "找不到所有需要的套件包"
|
msgstr "找不到所有需要的軟體包"
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:61
|
#: pkg/sync/build/errors.go:61
|
||||||
msgid "could not find any package archives listed in %s"
|
msgid "could not find any package archives listed in %s"
|
||||||
msgstr "找不到任何 %s 中列舉的套件封存檔"
|
msgstr "找不到任何 %s 中列舉的軟體包封存檔"
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:50 pkg/upgrade/service.go:286
|
#: pkg/sync/build/errors.go:50 pkg/upgrade/service.go:287
|
||||||
msgid "dependency"
|
msgid "dependency"
|
||||||
msgstr "作為依賴安裝"
|
msgstr "作為依賴安裝"
|
||||||
|
|
||||||
#: pkg/vcs/vcs.go:100 pkg/vcs/vcs.go:96
|
#: pkg/vcs/vcs.go:96 pkg/vcs/vcs.go:100
|
||||||
msgid "devel check for package failed: '%s' encountered an error"
|
msgid "devel check for package failed: '%s' encountered an error"
|
||||||
msgstr "開發套件包檢查失敗:「%s」 遇到了錯誤"
|
msgstr "軟體包開發檢查失敗: '%s' 遇到了錯誤"
|
||||||
|
|
||||||
#: pkg/menus/edit_menu.go:110
|
#: pkg/menus/edit_menu.go:110
|
||||||
msgid "editor did not exit successfully, aborting: %s"
|
msgid "editor did not exit successfully, aborting: %s"
|
||||||
msgstr "編輯器未成功退出,正在中止:%s"
|
msgstr "編輯器未成功退出,正在中止: %s"
|
||||||
|
|
||||||
#: pkg/sync/workdir/aur_source.go:24
|
#: pkg/sync/workdir/aur_source.go:24
|
||||||
msgid "error downloading sources: %s"
|
msgid "error downloading sources: %s"
|
||||||
msgstr "下載套件包檔案時出錯:%s"
|
msgstr "下載套件檔案時出錯: %s"
|
||||||
|
|
||||||
#: pkg/download/errors.go:25
|
#: pkg/download/errors.go:25
|
||||||
msgid "error fetching %s: %s"
|
msgid "error fetching %s: %s"
|
||||||
msgstr "取得 %s 時出錯:%s"
|
msgstr "取得 %s 時出錯: %s"
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:9
|
#: pkg/sync/build/errors.go:9
|
||||||
msgid "error installing repo packages"
|
msgid "error installing repo packages"
|
||||||
msgstr "安裝套件包時出錯"
|
msgstr "安裝軟體包時出錯"
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:266 pkg/sync/build/installer.go:270
|
#: pkg/sync/build/installer.go:266 pkg/sync/build/installer.go:270
|
||||||
msgid "error installing:"
|
msgid "error installing:"
|
||||||
@ -562,11 +563,11 @@ msgstr "安裝時出錯:"
|
|||||||
|
|
||||||
#: pkg/sync/build/installer.go:233 pkg/sync/build/installer.go:237
|
#: pkg/sync/build/installer.go:233 pkg/sync/build/installer.go:237
|
||||||
msgid "error making: %s"
|
msgid "error making: %s"
|
||||||
msgstr "編譯時出錯:%s"
|
msgstr "編譯時出錯: %s"
|
||||||
|
|
||||||
#: pkg/sync/workdir/merge.go:24
|
#: pkg/sync/workdir/merge.go:24
|
||||||
msgid "error merging %s: %s"
|
msgid "error merging %s: %s"
|
||||||
msgstr "合併 %s 時出錯:%s"
|
msgstr "合併 %s 時出錯: %s"
|
||||||
|
|
||||||
#: pkg/download/unified.go:59
|
#: pkg/download/unified.go:59
|
||||||
msgid "error reading %s"
|
msgid "error reading %s"
|
||||||
@ -578,11 +579,11 @@ msgstr "重新整理資料庫時出錯"
|
|||||||
|
|
||||||
#: pkg/sync/workdir/clean.go:51 pkg/sync/workdir/merge.go:17
|
#: pkg/sync/workdir/clean.go:51 pkg/sync/workdir/merge.go:17
|
||||||
msgid "error resetting %s: %s"
|
msgid "error resetting %s: %s"
|
||||||
msgstr "重置 %s 時出錯:%s"
|
msgstr "重置 %s 時出錯: %s"
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:53
|
#: pkg/sync/build/errors.go:53
|
||||||
msgid "error updating package install reason to %s"
|
msgid "error updating package install reason to %s"
|
||||||
msgstr "更新套件安裝原因至 %s 時出錯"
|
msgstr "更新軟體包安裝原因至 %s 時出錯"
|
||||||
|
|
||||||
#: pkg/sync/build/errors.go:48
|
#: pkg/sync/build/errors.go:48
|
||||||
msgid "explicit"
|
msgid "explicit"
|
||||||
@ -590,19 +591,19 @@ msgstr "單獨指定安裝"
|
|||||||
|
|
||||||
#: pkg/settings/errors.go:23
|
#: pkg/settings/errors.go:23
|
||||||
msgid "failed to create directory '%s': %s"
|
msgid "failed to create directory '%s': %s"
|
||||||
msgstr "無法建立資料夾 '%s':%s"
|
msgstr "無法建立資料夾 '%s': %s"
|
||||||
|
|
||||||
#: pkg/settings/config.go:281
|
#: pkg/settings/config.go:281
|
||||||
msgid "failed to open config file '%s': %s"
|
msgid "failed to open config file '%s': %s"
|
||||||
msgstr "無法開啟設定檔案 '%s':%s"
|
msgstr "無法開啟設定檔案 '%s': %s"
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/service.go:114
|
#: pkg/sync/srcinfo/service.go:114
|
||||||
msgid "failed to parse %s -- skipping: %s"
|
msgid "failed to parse %s -- skipping: %s"
|
||||||
msgstr "無法解析 %s -- 跳過:%s"
|
msgstr "無法解析 %s -- 跳過: %s"
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/service.go:118
|
#: pkg/sync/srcinfo/service.go:118
|
||||||
msgid "failed to parse %s: %s"
|
msgid "failed to parse %s: %s"
|
||||||
msgstr "無法解析 %s:%s"
|
msgstr "無法解析 %s: %s"
|
||||||
|
|
||||||
#: local_install.go:77
|
#: local_install.go:77
|
||||||
msgid "failed to parse .SRCINFO"
|
msgid "failed to parse .SRCINFO"
|
||||||
@ -610,7 +611,7 @@ msgstr "無法解析 .SRCINFO"
|
|||||||
|
|
||||||
#: pkg/settings/config.go:291
|
#: pkg/settings/config.go:291
|
||||||
msgid "failed to read config file '%s': %s"
|
msgid "failed to read config file '%s': %s"
|
||||||
msgstr "無法讀取設定檔案 '%s':%s"
|
msgstr "無法讀取設定檔案 '%s': %s"
|
||||||
|
|
||||||
#: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73
|
#: pkg/cmd/graph/main.go:46 pkg/runtime/runtime.go:73
|
||||||
msgid "failed to retrieve aur Cache"
|
msgid "failed to retrieve aur Cache"
|
||||||
@ -618,7 +619,7 @@ msgstr "無法取得 AUR 快取"
|
|||||||
|
|
||||||
#: pkg/upgrade/sources.go:27
|
#: pkg/upgrade/sources.go:27
|
||||||
msgid "ignoring package devel upgrade (no AUR info found):"
|
msgid "ignoring package devel upgrade (no AUR info found):"
|
||||||
msgstr "忽略軟體包開發更新 (未找到 AUR 資訊):"
|
msgstr "忽略軟體包開發更新 (未找到 AUR 資訊):"
|
||||||
|
|
||||||
#: pkg/text/errors.go:8
|
#: pkg/text/errors.go:8
|
||||||
msgid "input too long"
|
msgid "input too long"
|
||||||
@ -626,15 +627,15 @@ msgstr "輸入太長"
|
|||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:222 pkg/dep/dep_graph.go:761
|
#: pkg/db/ialpm/alpm.go:222 pkg/dep/dep_graph.go:761
|
||||||
msgid "invalid number: %s"
|
msgid "invalid number: %s"
|
||||||
msgstr "無效數字:%s"
|
msgstr "無效數字: %s"
|
||||||
|
|
||||||
#: pkg/settings/parser/parser.go:174
|
#: pkg/settings/parser/parser.go:174
|
||||||
msgid "invalid option '%s'"
|
msgid "invalid option '%s'"
|
||||||
msgstr "無效選項「%s」"
|
msgstr "無效選項 '%s'"
|
||||||
|
|
||||||
#: cmd.go:197
|
#: cmd.go:197
|
||||||
msgid "invalid option: '--deps' and '--explicit' may not be used together"
|
msgid "invalid option: '--deps' and '--explicit' may not be used together"
|
||||||
msgstr "無效選項:不能同時指定「--deps」與「--explicit」"
|
msgstr "無效選項: '--deps' 與 '--explicit' 不能同時指定"
|
||||||
|
|
||||||
#: pkg/download/abs.go:22
|
#: pkg/download/abs.go:22
|
||||||
msgid "invalid repository"
|
msgid "invalid repository"
|
||||||
@ -644,22 +645,22 @@ msgstr "無效軟體源"
|
|||||||
msgid "invalid value: %d is not between %d and %d"
|
msgid "invalid value: %d is not between %d and %d"
|
||||||
msgstr "無效值: %d 不在 %d 和 %d 之間"
|
msgstr "無效值: %d 不在 %d 和 %d 之間"
|
||||||
|
|
||||||
#: pkg/text/input.go:48
|
|
||||||
msgid "no"
|
|
||||||
msgstr "否"
|
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:110
|
#: pkg/sync/srcinfo/pgp/keys.go:110
|
||||||
msgid "no keys to import"
|
msgid "no keys to import"
|
||||||
msgstr "沒有要匯入的金鑰"
|
msgstr "沒有要匯入的金鑰"
|
||||||
|
|
||||||
#: pkg/query/errors.go:20
|
#: pkg/query/errors.go:20
|
||||||
msgid "no query was executed"
|
msgid "no query was executed"
|
||||||
msgstr "未進行任何查詢"
|
msgstr "沒有查詢被執行"
|
||||||
|
|
||||||
#: local_install.go:66
|
#: local_install.go:66
|
||||||
msgid "no target directories specified"
|
msgid "no target directories specified"
|
||||||
msgstr "沒有指定目標目錄"
|
msgstr "沒有指定目標目錄"
|
||||||
|
|
||||||
|
#: pkg/text/input.go:48
|
||||||
|
msgid "no"
|
||||||
|
msgstr "否"
|
||||||
|
|
||||||
#: pkg/sync/build/installer.go:242
|
#: pkg/sync/build/installer.go:242
|
||||||
msgid "nothing to install for %s"
|
msgid "nothing to install for %s"
|
||||||
msgstr "沒有要為 %s 安裝的東西"
|
msgstr "沒有要為 %s 安裝的東西"
|
||||||
@ -670,24 +671,25 @@ msgstr "一次只能使用一項操作"
|
|||||||
|
|
||||||
#: pkg/cmd/graph/main.go:70
|
#: pkg/cmd/graph/main.go:70
|
||||||
msgid "only one target is allowed"
|
msgid "only one target is allowed"
|
||||||
msgstr "只能有一個目標"
|
msgstr ""
|
||||||
|
|
||||||
#: pkg/upgrade/service.go:291
|
|
||||||
msgid "package"
|
|
||||||
msgid_plural "packages"
|
|
||||||
msgstr[0] "套件包"
|
|
||||||
|
|
||||||
#: print.go:187
|
#: print.go:187
|
||||||
msgid "package '%s' was not found"
|
msgid "package '%s' was not found"
|
||||||
msgstr "找不到套件包「%s」"
|
msgstr "找不到軟體包 '%s'"
|
||||||
|
|
||||||
#: pkg/download/errors.go:15
|
#: pkg/download/errors.go:15
|
||||||
msgid "package not found in AUR"
|
msgid "package not found in AUR"
|
||||||
msgstr "AUR 中找不到套件包"
|
msgstr "AUR 中找不到軟體包"
|
||||||
|
|
||||||
#: pkg/download/abs.go:23
|
#: pkg/download/abs.go:23
|
||||||
msgid "package not found in repos"
|
msgid "package not found in repos"
|
||||||
msgstr "倉庫源中找不到套件包"
|
msgstr "軟體源中找不到軟體包"
|
||||||
|
|
||||||
|
#: pkg/upgrade/service.go:292
|
||||||
|
#, fuzzy
|
||||||
|
msgid "package"
|
||||||
|
msgid_plural "packages"
|
||||||
|
msgstr[0] "軟體包構造"
|
||||||
|
|
||||||
#: pkg/sync/srcinfo/pgp/keys.go:100
|
#: pkg/sync/srcinfo/pgp/keys.go:100
|
||||||
msgid "problem importing keys"
|
msgid "problem importing keys"
|
||||||
@ -695,7 +697,7 @@ msgstr "匯入金鑰時出錯"
|
|||||||
|
|
||||||
#: clean.go:105
|
#: clean.go:105
|
||||||
msgid "removing AUR packages from cache..."
|
msgid "removing AUR packages from cache..."
|
||||||
msgstr "正在從快取中刪除 AUR 套件包..."
|
msgstr "正在從快取中刪除 AUR 軟體包..."
|
||||||
|
|
||||||
#: clean.go:178 pkg/sync/workdir/clean.go:41
|
#: clean.go:178 pkg/sync/workdir/clean.go:41
|
||||||
msgid "removing untracked AUR files from cache..."
|
msgid "removing untracked AUR files from cache..."
|
||||||
@ -703,7 +705,7 @@ msgstr "正在從暫存中刪除未追蹤的 AUR 檔案..."
|
|||||||
|
|
||||||
#: pkg/sync/build/errors.go:38
|
#: pkg/sync/build/errors.go:38
|
||||||
msgid "the PKGDEST for %s is listed by makepkg but does not exist: %s"
|
msgid "the PKGDEST for %s is listed by makepkg but does not exist: %s"
|
||||||
msgstr "%s 的 PKGDEST 由 makepkg 列出,但不存在:%s"
|
msgstr "%s 的 PKGDEST 由 makepkg 列出,但不存在: %s"
|
||||||
|
|
||||||
#: pkg/sync/sync.go:45
|
#: pkg/sync/sync.go:45
|
||||||
msgid "there is nothing to do"
|
msgid "there is nothing to do"
|
||||||
@ -711,7 +713,7 @@ msgstr "無事可做"
|
|||||||
|
|
||||||
#: pkg/db/ialpm/alpm.go:247
|
#: pkg/db/ialpm/alpm.go:247
|
||||||
msgid "unable to CreateHandle: %s"
|
msgid "unable to CreateHandle: %s"
|
||||||
msgstr "無法 CreateHandle:%s"
|
msgstr "無法 CreateHandle: %s"
|
||||||
|
|
||||||
#: cmd.go:186
|
#: cmd.go:186
|
||||||
msgid "unhandled operation"
|
msgid "unhandled operation"
|
||||||
@ -724,3 +726,48 @@ msgstr "未知版本"
|
|||||||
#: pkg/text/input.go:47
|
#: pkg/text/input.go:47
|
||||||
msgid "yes"
|
msgid "yes"
|
||||||
msgstr "是"
|
msgstr "是"
|
||||||
|
|
||||||
|
#~ msgid " (Target"
|
||||||
|
#~ msgstr " (目標"
|
||||||
|
|
||||||
|
#~ msgid " (Wanted by: "
|
||||||
|
#~ msgstr " (被這些軟體包依賴: "
|
||||||
|
|
||||||
|
#~ msgid "%s not satisfied, flushing install queue"
|
||||||
|
#~ msgstr "%s 未滿足,正在重新整理安裝序列"
|
||||||
|
|
||||||
|
#~ msgid "Checking for conflicts..."
|
||||||
|
#~ msgstr "正在檢查衝突..."
|
||||||
|
|
||||||
|
#~ msgid "Checking for inner conflicts..."
|
||||||
|
#~ msgstr "正在檢查內部衝突..."
|
||||||
|
|
||||||
|
#~ msgid "Conflicting packages will have to be confirmed manually"
|
||||||
|
#~ msgstr "必須手動確認衝突的軟體包"
|
||||||
|
|
||||||
|
#~ msgid "Inner conflicts found:"
|
||||||
|
#~ msgstr "發現內部衝突:"
|
||||||
|
|
||||||
|
#~ msgid "Installing %s will remove:"
|
||||||
|
#~ msgstr "安裝 %s 將刪除:"
|
||||||
|
|
||||||
|
#~ msgid "PKGBUILD up to date, Skipping (%d/%d): %s"
|
||||||
|
#~ msgstr "PKGBUILD 是最新的,跳過 (%d/%d): %s"
|
||||||
|
|
||||||
|
#~ msgid "Package conflicts found:"
|
||||||
|
#~ msgstr "發現軟體包衝突:"
|
||||||
|
|
||||||
|
#~ msgid "Packages to upgrade."
|
||||||
|
#~ msgstr "個要升級的軟體包。"
|
||||||
|
|
||||||
|
#~ msgid "Querying AUR..."
|
||||||
|
#~ msgstr "正在查詢 AUR..."
|
||||||
|
|
||||||
|
#~ msgid "could not find all required packages:"
|
||||||
|
#~ msgstr "找不到所有需要的軟體包:"
|
||||||
|
|
||||||
|
#~ msgid "could not find srcinfo for: %s"
|
||||||
|
#~ msgstr "找不到 srcinfo: %s"
|
||||||
|
|
||||||
|
#~ msgid "package conflicts can not be resolved with noconfirm, aborting"
|
||||||
|
#~ msgstr "軟體包衝突無法透過 noconfirm 解決,正在中止"
|
||||||
|
26
query.go
26
query.go
@ -43,32 +43,8 @@ func syncInfo(ctx context.Context, run *runtime.Runtime,
|
|||||||
)
|
)
|
||||||
|
|
||||||
pkgS = query.RemoveInvalidTargets(run.Logger, pkgS, run.Cfg.Mode)
|
pkgS = query.RemoveInvalidTargets(run.Logger, pkgS, run.Cfg.Mode)
|
||||||
|
|
||||||
expandedPackages := []string{}
|
|
||||||
for _, pkg := range pkgS {
|
|
||||||
groupPackages := dbExecutor.PackagesFromGroup(pkg)
|
|
||||||
if len(groupPackages) > 0 {
|
|
||||||
for _, p := range groupPackages {
|
|
||||||
expandedPackages = append(expandedPackages, p.Name())
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
expandedPackages = append(expandedPackages, pkg)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
pkgS = expandedPackages
|
|
||||||
|
|
||||||
aurS, repoS := packageSlices(pkgS, run.Cfg, dbExecutor)
|
aurS, repoS := packageSlices(pkgS, run.Cfg, dbExecutor)
|
||||||
|
|
||||||
if len(repoS) == 0 && len(aurS) == 0 {
|
|
||||||
if run.Cfg.Mode != parser.ModeRepo {
|
|
||||||
aurS = dbExecutor.InstalledRemotePackageNames()
|
|
||||||
}
|
|
||||||
|
|
||||||
if run.Cfg.Mode != parser.ModeAUR {
|
|
||||||
repoS = dbExecutor.InstalledSyncPackageNames()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if len(aurS) != 0 {
|
if len(aurS) != 0 {
|
||||||
noDB := make([]string, 0, len(aurS))
|
noDB := make([]string, 0, len(aurS))
|
||||||
|
|
||||||
@ -88,7 +64,7 @@ func syncInfo(ctx context.Context, run *runtime.Runtime,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if len(repoS) != 0 || (len(aurS) == 0 && len(repoS) == 0) {
|
if len(repoS) != 0 {
|
||||||
arguments := cmdArgs.Copy()
|
arguments := cmdArgs.Copy()
|
||||||
arguments.ClearTargets()
|
arguments.ClearTargets()
|
||||||
arguments.AddTarget(repoS...)
|
arguments.AddTarget(repoS...)
|
||||||
|
@ -84,12 +84,6 @@ func TestSyncInfo(t *testing.T) {
|
|||||||
wantShow: []string{},
|
wantShow: []string{},
|
||||||
wantErr: true,
|
wantErr: true,
|
||||||
},
|
},
|
||||||
{
|
|
||||||
name: "Si arduino",
|
|
||||||
args: []string{"S", "i"},
|
|
||||||
targets: []string{"arduino"},
|
|
||||||
wantShow: []string{"pacman", "-S", "-i", "--config", "/etc/pacman.conf", "--", "arduino-cli"},
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
|
||||||
dbExc := &mock.DBExecutor{
|
dbExc := &mock.DBExecutor{
|
||||||
@ -100,20 +94,9 @@ func TestSyncInfo(t *testing.T) {
|
|||||||
PBase: "linux",
|
PBase: "linux",
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if s == "arduino-cli" {
|
|
||||||
return &mock.Package{
|
|
||||||
PName: "arduino-cli",
|
|
||||||
PBase: "arduino-cli",
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return nil
|
return nil
|
||||||
},
|
},
|
||||||
PackagesFromGroupFn: func(s string) []mock.IPackage {
|
PackagesFromGroupFn: func(s string) []mock.IPackage {
|
||||||
if s == "arduino" {
|
|
||||||
return []mock.IPackage{
|
|
||||||
&mock.Package{PName: "arduino-cli"},
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return nil
|
return nil
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
@ -547,7 +547,7 @@ pkgname = python-vosk
|
|||||||
wantCapture := []string{
|
wantCapture := []string{
|
||||||
"/usr/bin/git -C /testdir/vosk-api reset --hard HEAD",
|
"/usr/bin/git -C /testdir/vosk-api reset --hard HEAD",
|
||||||
"/usr/bin/git -C /testdir/vosk-api merge --no-edit --ff",
|
"/usr/bin/git -C /testdir/vosk-api merge --no-edit --ff",
|
||||||
"makepkg --packagelist",
|
"makepkg --packagelist", "makepkg --packagelist",
|
||||||
"makepkg --packagelist",
|
"makepkg --packagelist",
|
||||||
}
|
}
|
||||||
wantShow := []string{
|
wantShow := []string{
|
||||||
@ -556,6 +556,7 @@ pkgname = python-vosk
|
|||||||
"makepkg -c --nobuild --noextract --ignorearch",
|
"makepkg -c --nobuild --noextract --ignorearch",
|
||||||
"pacman -U --config /etc/pacman.conf -- /testdir/vosk-api-0.3.45-1-x86_64.pkg.tar.zst",
|
"pacman -U --config /etc/pacman.conf -- /testdir/vosk-api-0.3.45-1-x86_64.pkg.tar.zst",
|
||||||
"makepkg --nobuild -f -C --ignorearch", "makepkg -c --nobuild --noextract --ignorearch",
|
"makepkg --nobuild -f -C --ignorearch", "makepkg -c --nobuild --noextract --ignorearch",
|
||||||
|
"makepkg --nobuild -f -C --ignorearch", "makepkg -c --nobuild --noextract --ignorearch",
|
||||||
"pacman -U --config /etc/pacman.conf -- /testdir/vosk-api-0.3.45-1-x86_64.pkg.tar.zst /testdir/python-vosk-0.3.45-1-x86_64.pkg.tar.zst",
|
"pacman -U --config /etc/pacman.conf -- /testdir/vosk-api-0.3.45-1-x86_64.pkg.tar.zst /testdir/python-vosk-0.3.45-1-x86_64.pkg.tar.zst",
|
||||||
"pacman -D -q --asdeps --config /etc/pacman.conf -- vosk-api",
|
"pacman -D -q --asdeps --config /etc/pacman.conf -- vosk-api",
|
||||||
"pacman -D -q --asexplicit --config /etc/pacman.conf -- python-vosk",
|
"pacman -D -q --asexplicit --config /etc/pacman.conf -- python-vosk",
|
||||||
|
6
vcs.go
6
vcs.go
@ -61,8 +61,8 @@ func createDevelDB(ctx context.Context, run *runtime.Runtime, dbExecutor db.Exec
|
|||||||
for iP := range srcinfos[i].Packages {
|
for iP := range srcinfos[i].Packages {
|
||||||
wg.Add(1)
|
wg.Add(1)
|
||||||
|
|
||||||
go func(baseIndex string, packageIndex int) {
|
go func(i string, iP int) {
|
||||||
run.VCSStore.Update(ctx, srcinfos[baseIndex].Packages[packageIndex].Pkgname, srcinfos[baseIndex].Source)
|
run.VCSStore.Update(ctx, srcinfos[i].Packages[iP].Pkgname, srcinfos[i].Source)
|
||||||
wg.Done()
|
wg.Done()
|
||||||
}(i, iP)
|
}(i, iP)
|
||||||
}
|
}
|
||||||
@ -71,5 +71,5 @@ func createDevelDB(ctx context.Context, run *runtime.Runtime, dbExecutor db.Exec
|
|||||||
wg.Wait()
|
wg.Wait()
|
||||||
run.Logger.OperationInfoln(gotext.Get("GenDB finished. No packages were installed"))
|
run.Logger.OperationInfoln(gotext.Get("GenDB finished. No packages were installed"))
|
||||||
|
|
||||||
return nil
|
return err
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user